repzo 1.0.26 → 1.0.27
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 +2 -3
- package/package.json +1 -1
- package/src/types/index.ts +2 -3
package/lib/types/index.d.ts
CHANGED
|
@@ -2576,8 +2576,7 @@ export declare namespace Service {
|
|
|
2576
2576
|
creator: AdminCreator | RepCreator | ClientCreator;
|
|
2577
2577
|
document_id?: string[];
|
|
2578
2578
|
document_type: PrintTypes;
|
|
2579
|
-
print_media?: string;
|
|
2580
|
-
print_media_populated?: MediaDoc;
|
|
2579
|
+
print_media?: string | MediaDoc;
|
|
2581
2580
|
state?: "queued" | "initiated" | "started" | "delayed" | "completed" | "in_progress" | "failed";
|
|
2582
2581
|
content?: string;
|
|
2583
2582
|
sync_id: string;
|
|
@@ -2592,7 +2591,7 @@ export declare namespace Service {
|
|
|
2592
2591
|
type Params = DefaultPaginationQueryParams & {
|
|
2593
2592
|
document_id?: string;
|
|
2594
2593
|
document_type?: PrintTypes;
|
|
2595
|
-
print_media?: string;
|
|
2594
|
+
print_media?: string | MediaDoc;
|
|
2596
2595
|
disabled?: boolean;
|
|
2597
2596
|
};
|
|
2598
2597
|
interface Result extends DefaultPaginationResult {
|
package/package.json
CHANGED
package/src/types/index.ts
CHANGED
|
@@ -2913,8 +2913,7 @@ export namespace Service {
|
|
|
2913
2913
|
creator: AdminCreator | RepCreator | ClientCreator;
|
|
2914
2914
|
document_id?: string[];
|
|
2915
2915
|
document_type: PrintTypes;
|
|
2916
|
-
print_media?: string;
|
|
2917
|
-
print_media_populated?: MediaDoc;
|
|
2916
|
+
print_media?: string | MediaDoc;
|
|
2918
2917
|
state?:
|
|
2919
2918
|
| "queued"
|
|
2920
2919
|
| "initiated"
|
|
@@ -2937,7 +2936,7 @@ export namespace Service {
|
|
|
2937
2936
|
export type Params = DefaultPaginationQueryParams & {
|
|
2938
2937
|
document_id?: string;
|
|
2939
2938
|
document_type?: PrintTypes;
|
|
2940
|
-
print_media?: string;
|
|
2939
|
+
print_media?: string | MediaDoc;
|
|
2941
2940
|
disabled?: boolean;
|
|
2942
2941
|
};
|
|
2943
2942
|
export interface Result extends DefaultPaginationResult {
|