Skip to content

Commit 9a0f7ed

Browse files
[Bot] push changes from Files.com
1 parent e6511d5 commit 9a0f7ed

7 files changed

Lines changed: 73 additions & 129 deletions

File tree

_VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.2.603
1+
1.2.604

docs/models/Sync.md

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,6 @@ await Sync.create({
143143
'description': "example",
144144
'dest_path': "example",
145145
'dest_remote_server_id': 1,
146-
'dest_site_id': 1,
147146
'disabled': true,
148147
'exclude_patterns': ["example"],
149148
'holiday_region': "us_dc",
@@ -157,7 +156,6 @@ await Sync.create({
157156
'schedule_times_of_day': ["06:30","14:30"],
158157
'src_path': "example",
159158
'src_remote_server_id': 1,
160-
'src_site_id': 1,
161159
'sync_interval_minutes': 1,
162160
'trigger': "example",
163161
'trigger_file': "example",
@@ -172,7 +170,6 @@ await Sync.create({
172170
* `description` (string): Description for this sync job
173171
* `dest_path` (string): Absolute destination path for the sync
174172
* `dest_remote_server_id` (int64): Remote server ID for the destination (if remote)
175-
* `dest_site_id` (int64): Destination site ID if syncing to a child or partner site
176173
* `disabled` (boolean): Is this sync disabled?
177174
* `exclude_patterns` (array(string)): Array of glob patterns to exclude
178175
* `holiday_region` (string): If trigger is `custom_schedule`, the sync will check if there is a formal, observed holiday for the region, and if so, it will not run.
@@ -186,7 +183,6 @@ await Sync.create({
186183
* `schedule_times_of_day` (array(string)): If trigger is `custom_schedule`, Custom schedule description for when the sync should be run. Times of day in HH:MM format.
187184
* `src_path` (string): Absolute source path for the sync
188185
* `src_remote_server_id` (int64): Remote server ID for the source (if remote)
189-
* `src_site_id` (int64): Source site ID if syncing from a child or partner site
190186
* `sync_interval_minutes` (int64): Frequency in minutes between syncs. If set, this value must be greater than or equal to the `remote_sync_interval` value for the site's plan. If left blank, the plan's `remote_sync_interval` will be used. This setting is only used if `trigger` is empty.
191187
* `trigger` (string): Trigger type: daily, custom_schedule, or manual
192188
* `trigger_file` (string): Some MFT services request an empty file (known as a trigger file) to signal the sync is complete and they can begin further processing. If trigger_file is set, a zero-byte file will be sent at the end of the sync.
@@ -234,7 +230,6 @@ await sync.update({
234230
'description': "example",
235231
'dest_path': "example",
236232
'dest_remote_server_id': 1,
237-
'dest_site_id': 1,
238233
'disabled': true,
239234
'exclude_patterns': ["example"],
240235
'holiday_region': "us_dc",
@@ -248,7 +243,6 @@ await sync.update({
248243
'schedule_times_of_day': ["06:30","14:30"],
249244
'src_path': "example",
250245
'src_remote_server_id': 1,
251-
'src_site_id': 1,
252246
'sync_interval_minutes': 1,
253247
'trigger': "example",
254248
'trigger_file': "example",
@@ -262,7 +256,6 @@ await sync.update({
262256
* `description` (string): Description for this sync job
263257
* `dest_path` (string): Absolute destination path for the sync
264258
* `dest_remote_server_id` (int64): Remote server ID for the destination (if remote)
265-
* `dest_site_id` (int64): Destination site ID if syncing to a child or partner site
266259
* `disabled` (boolean): Is this sync disabled?
267260
* `exclude_patterns` (array(string)): Array of glob patterns to exclude
268261
* `holiday_region` (string): If trigger is `custom_schedule`, the sync will check if there is a formal, observed holiday for the region, and if so, it will not run.
@@ -276,7 +269,6 @@ await sync.update({
276269
* `schedule_times_of_day` (array(string)): If trigger is `custom_schedule`, Custom schedule description for when the sync should be run. Times of day in HH:MM format.
277270
* `src_path` (string): Absolute source path for the sync
278271
* `src_remote_server_id` (int64): Remote server ID for the source (if remote)
279-
* `src_site_id` (int64): Source site ID if syncing from a child or partner site
280272
* `sync_interval_minutes` (int64): Frequency in minutes between syncs. If set, this value must be greater than or equal to the `remote_sync_interval` value for the site's plan. If left blank, the plan's `remote_sync_interval` will be used. This setting is only used if `trigger` is empty.
281273
* `trigger` (string): Trigger type: daily, custom_schedule, or manual
282274
* `trigger_file` (string): Some MFT services request an empty file (known as a trigger file) to signal the sync is complete and they can begin further processing. If trigger_file is set, a zero-byte file will be sent at the end of the sync.

lib/Files.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ var apiKey;
1212
var baseUrl = 'https://app.files.com';
1313
var sessionId = null;
1414
var language = null;
15-
var version = '1.2.603';
15+
var version = '1.2.604';
1616
var userAgent = "Files.com JavaScript SDK v".concat(version);
1717
var logLevel = _Logger.LogLevel.INFO;
1818
var debugRequest = false;

0 commit comments

Comments
 (0)