@nangohq/node 0.42.5 → 0.42.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.cjs CHANGED
@@ -46,7 +46,7 @@ var import_node_https = __toESM(require("https"), 1);
46
46
  var import_os = __toESM(require("os"), 1);
47
47
 
48
48
  // lib/version.ts
49
- var NANGO_VERSION = "0.42.5";
49
+ var NANGO_VERSION = "0.42.6";
50
50
 
51
51
  // lib/utils.ts
52
52
  var validateProxyConfiguration = (config) => {
@@ -452,7 +452,7 @@ var Nango = class {
452
452
  return this.http.post(url, body, { headers: this.enrichHeaders() });
453
453
  }
454
454
  /**
455
- * Starts the schedule of specified sync(s) for a given connection or all applicable connections if no connection is specified
455
+ * Starts the schedule of specified sync(s) for a given connection or all applicable connections if no connection is specified. Upon starting the schedule, the sync will execute immediately and then continue to run at the specified frequency. If the schedule was already started, this will have no effect.
456
456
  * @param providerConfigKey - The key identifying the provider configuration on Nango
457
457
  * @param syncs - An optional array of sync names to start. If empty, all applicable syncs will be started
458
458
  * @param connectionId - An optional ID of the connection for which to start the syncs. If not provided, syncs will be started for all applicable connections
package/dist/index.d.ts CHANGED
@@ -219,7 +219,7 @@ export declare class Nango {
219
219
  */
220
220
  triggerSync(providerConfigKey: string, syncs?: string[], connectionId?: string, fullResync?: boolean): Promise<void>;
221
221
  /**
222
- * Starts the schedule of specified sync(s) for a given connection or all applicable connections if no connection is specified
222
+ * Starts the schedule of specified sync(s) for a given connection or all applicable connections if no connection is specified. Upon starting the schedule, the sync will execute immediately and then continue to run at the specified frequency. If the schedule was already started, this will have no effect.
223
223
  * @param providerConfigKey - The key identifying the provider configuration on Nango
224
224
  * @param syncs - An optional array of sync names to start. If empty, all applicable syncs will be started
225
225
  * @param connectionId - An optional ID of the connection for which to start the syncs. If not provided, syncs will be started for all applicable connections
package/dist/index.js CHANGED
@@ -375,7 +375,7 @@ export class Nango {
375
375
  return this.http.post(url, body, { headers: this.enrichHeaders() });
376
376
  }
377
377
  /**
378
- * Starts the schedule of specified sync(s) for a given connection or all applicable connections if no connection is specified
378
+ * Starts the schedule of specified sync(s) for a given connection or all applicable connections if no connection is specified. Upon starting the schedule, the sync will execute immediately and then continue to run at the specified frequency. If the schedule was already started, this will have no effect.
379
379
  * @param providerConfigKey - The key identifying the provider configuration on Nango
380
380
  * @param syncs - An optional array of sync names to start. If empty, all applicable syncs will be started
381
381
  * @param connectionId - An optional ID of the connection for which to start the syncs. If not provided, syncs will be started for all applicable connections
package/dist/version.d.ts CHANGED
@@ -1 +1 @@
1
- export declare const NANGO_VERSION = "0.42.5";
1
+ export declare const NANGO_VERSION = "0.42.6";
package/dist/version.js CHANGED
@@ -1,2 +1,2 @@
1
- export const NANGO_VERSION = '0.42.5';
1
+ export const NANGO_VERSION = '0.42.6';
2
2
  //# sourceMappingURL=version.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nangohq/node",
3
- "version": "0.42.5",
3
+ "version": "0.42.6",
4
4
  "description": "Nango's Node client.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -36,8 +36,8 @@
36
36
  "README.md"
37
37
  ],
38
38
  "devDependencies": {
39
- "@nangohq/types": "^0.42.5",
40
- "tsup": "^8.0.2",
39
+ "@nangohq/types": "^0.42.6",
40
+ "tsup": "^8.2.4",
41
41
  "vitest": "1.6.0"
42
42
  }
43
43
  }