repzo 1.0.113 → 1.0.115

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.
@@ -2222,6 +2222,8 @@ export declare namespace Service {
2222
2222
  job_start_time?: number;
2223
2223
  job_end_time?: number;
2224
2224
  job_duration?: number;
2225
+ createdAt: string;
2226
+ updatedAt: string;
2225
2227
  }
2226
2228
  export interface CreateBody {
2227
2229
  company_namespace: string[];
@@ -5216,9 +5218,11 @@ export declare namespace Service {
5216
5218
  | "failed";
5217
5219
  content?: string;
5218
5220
  sync_id: string;
5221
+ createdAt: string;
5222
+ updatedAt: string;
5219
5223
  }
5220
5224
  export interface CreateBody {
5221
- document_id?: string[];
5225
+ document_id: string[];
5222
5226
  document_type: PrintTypes;
5223
5227
  sync_id: string;
5224
5228
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "repzo",
3
- "version": "1.0.113",
3
+ "version": "1.0.115",
4
4
  "description": "Repzo TypeScript SDK",
5
5
  "main": "./lib/index.js",
6
6
  "type": "module",
@@ -2254,6 +2254,8 @@ export namespace Service {
2254
2254
  job_start_time?: number;
2255
2255
  job_end_time?: number;
2256
2256
  job_duration?: number;
2257
+ createdAt: string;
2258
+ updatedAt: string;
2257
2259
  }
2258
2260
 
2259
2261
  export interface CreateBody {
@@ -5237,9 +5239,11 @@ export namespace Service {
5237
5239
  | "failed";
5238
5240
  content?: string;
5239
5241
  sync_id: string;
5242
+ createdAt: string;
5243
+ updatedAt: string;
5240
5244
  }
5241
5245
  export interface CreateBody {
5242
- document_id?: string[];
5246
+ document_id: string[];
5243
5247
  document_type: PrintTypes;
5244
5248
  sync_id: string;
5245
5249
  }