repzo 1.0.113 → 1.0.114
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 +3 -1
- package/package.json +1 -1
- package/src/types/index.ts +3 -1
package/lib/types/index.d.ts
CHANGED
|
@@ -5216,9 +5216,11 @@ export declare namespace Service {
|
|
|
5216
5216
|
| "failed";
|
|
5217
5217
|
content?: string;
|
|
5218
5218
|
sync_id: string;
|
|
5219
|
+
createdAt: string;
|
|
5220
|
+
updatedAt: string;
|
|
5219
5221
|
}
|
|
5220
5222
|
export interface CreateBody {
|
|
5221
|
-
document_id
|
|
5223
|
+
document_id: string[];
|
|
5222
5224
|
document_type: PrintTypes;
|
|
5223
5225
|
sync_id: string;
|
|
5224
5226
|
}
|
package/package.json
CHANGED
package/src/types/index.ts
CHANGED
|
@@ -5237,9 +5237,11 @@ export namespace Service {
|
|
|
5237
5237
|
| "failed";
|
|
5238
5238
|
content?: string;
|
|
5239
5239
|
sync_id: string;
|
|
5240
|
+
createdAt: string;
|
|
5241
|
+
updatedAt: string;
|
|
5240
5242
|
}
|
|
5241
5243
|
export interface CreateBody {
|
|
5242
|
-
document_id
|
|
5244
|
+
document_id: string[];
|
|
5243
5245
|
document_type: PrintTypes;
|
|
5244
5246
|
sync_id: string;
|
|
5245
5247
|
}
|