@nangohq/runner-sdk 0.52.0 → 0.52.2

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.
Files changed (2) hide show
  1. package/models.d.ts +0 -5
  2. package/package.json +4 -4
package/models.d.ts CHANGED
@@ -212,9 +212,6 @@ interface RunArgs {
212
212
  optionalEnvironment?: string;
213
213
  optionalProviderConfigKey?: string;
214
214
  }
215
- export interface DryRunServiceInterface {
216
- run: (options: RunArgs, debug?: boolean) => Promise<string | void>;
217
- }
218
215
  export interface NangoProps {
219
216
  scriptType: 'sync' | 'action' | 'webhook' | 'on-event';
220
217
  host?: string;
@@ -247,7 +244,6 @@ export interface NangoProps {
247
244
  rawDeleteOutput?: Map<string, unknown[]> | undefined;
248
245
  stubbedMetadata?: Metadata | undefined;
249
246
  abortSignal?: AbortSignal;
250
- dryRunService?: DryRunServiceInterface;
251
247
  syncConfig: DBSyncConfig;
252
248
  runnerFlags: RunnerFlags;
253
249
  debug: boolean;
@@ -282,7 +278,6 @@ export declare class NangoAction {
282
278
  syncJobId?: number;
283
279
  dryRun?: boolean;
284
280
  abortSignal?: AbortSignal;
285
- dryRunService?: DryRunServiceInterface;
286
281
  syncConfig?: DBSyncConfig;
287
282
  runnerFlags: RunnerFlags;
288
283
  connectionId: string;
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@nangohq/runner-sdk",
3
- "version": "0.52.0",
3
+ "version": "0.52.2",
4
4
  "description": "Nango's Runner SDK",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
7
7
  "dependencies": {
8
- "@nangohq/node": "0.52.0",
9
- "@nangohq/providers": "0.52.0",
8
+ "@nangohq/node": "0.52.2",
9
+ "@nangohq/providers": "0.52.2",
10
10
  "ajv": "8.17.1",
11
11
  "ajv-formats": "3.0.1",
12
12
  "axios": "1.7.9",
@@ -14,7 +14,7 @@
14
14
  "parse-link-header": "2.0.0"
15
15
  },
16
16
  "devDependencies": {
17
- "@nangohq/types": "0.52.0",
17
+ "@nangohq/types": "0.52.2",
18
18
  "@types/json-schema": "7.0.15",
19
19
  "json-schema": "0.4.0",
20
20
  "vitest": "2.1.8"