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.
- package/lib/types/index.d.ts +5 -1
- package/package.json +1 -1
- package/src/types/index.ts +5 -1
package/lib/types/index.d.ts
CHANGED
|
@@ -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
|
|
5225
|
+
document_id: string[];
|
|
5222
5226
|
document_type: PrintTypes;
|
|
5223
5227
|
sync_id: string;
|
|
5224
5228
|
}
|
package/package.json
CHANGED
package/src/types/index.ts
CHANGED
|
@@ -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
|
|
5246
|
+
document_id: string[];
|
|
5243
5247
|
document_type: PrintTypes;
|
|
5244
5248
|
sync_id: string;
|
|
5245
5249
|
}
|