repzo 1.0.183 → 1.0.184

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.
@@ -2728,6 +2728,9 @@ export declare namespace Service {
2728
2728
  name: string;
2729
2729
  username: string;
2730
2730
  password: string;
2731
+ [key: `integration_meta.${string}`]: any;
2732
+ [key: `customFields.${string}`]: any;
2733
+ [key: `settings.${string}`]: any;
2731
2734
  }
2732
2735
  type Result = RepSchema;
2733
2736
  }
@@ -2738,6 +2741,9 @@ export declare namespace Service {
2738
2741
  createdAt?: string;
2739
2742
  updatedAt?: string;
2740
2743
  __v?: number;
2744
+ [key: `integration_meta.${string}`]: any;
2745
+ [key: `customFields.${string}`]: any;
2746
+ [key: `settings.${string}`]: any;
2741
2747
  }
2742
2748
  type Result = RepSchema;
2743
2749
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "repzo",
3
- "version": "1.0.183",
3
+ "version": "1.0.184",
4
4
  "description": "Repzo TypeScript SDK",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",
@@ -3148,6 +3148,9 @@ export namespace Service {
3148
3148
  name: string;
3149
3149
  username: string;
3150
3150
  password: string;
3151
+ [key: `integration_meta.${string}`]: any;
3152
+ [key: `customFields.${string}`]: any;
3153
+ [key: `settings.${string}`]: any;
3151
3154
  }
3152
3155
  export type Result = RepSchema;
3153
3156
  }
@@ -3159,6 +3162,9 @@ export namespace Service {
3159
3162
  createdAt?: string;
3160
3163
  updatedAt?: string;
3161
3164
  __v?: number;
3165
+ [key: `integration_meta.${string}`]: any;
3166
+ [key: `customFields.${string}`]: any;
3167
+ [key: `settings.${string}`]: any;
3162
3168
  }
3163
3169
  export type Result = RepSchema;
3164
3170
  }