repzo 1.0.198 → 1.0.199
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 +11 -0
- package/package.json +1 -1
- package/src/types/index.ts +11 -0
package/lib/types/index.d.ts
CHANGED
|
@@ -2452,8 +2452,13 @@ export declare namespace Service {
|
|
|
2452
2452
|
watermark_time?: boolean;
|
|
2453
2453
|
watermark_date?: boolean;
|
|
2454
2454
|
watermark_coordinates?: boolean;
|
|
2455
|
+
watermark_font_size?: number;
|
|
2455
2456
|
rep_must_end_day_after: `${number}:${number}`;
|
|
2456
2457
|
treating_invoice_as_proforma_for_etax?: boolean;
|
|
2458
|
+
disable_auto_timezone_enforcement?: boolean;
|
|
2459
|
+
disable_auto_time_date_enforcement?: boolean;
|
|
2460
|
+
start_day_specific_time_frame_start: `${number}:${number}`;
|
|
2461
|
+
start_day_specific_time_frame_end: `${number}:${number}`;
|
|
2457
2462
|
}
|
|
2458
2463
|
type JobOption = 0 | 1 | 2;
|
|
2459
2464
|
export interface RepSchema {
|
|
@@ -2507,6 +2512,9 @@ export declare namespace Service {
|
|
|
2507
2512
|
media?: string[];
|
|
2508
2513
|
cover_photo?: string;
|
|
2509
2514
|
last_login_time?: number;
|
|
2515
|
+
is_locked_device: boolean;
|
|
2516
|
+
handle_credit_limit: boolean;
|
|
2517
|
+
credit_limit?: number;
|
|
2510
2518
|
createdAt: string;
|
|
2511
2519
|
updatedAt: string;
|
|
2512
2520
|
__v: number;
|
|
@@ -2562,6 +2570,9 @@ export declare namespace Service {
|
|
|
2562
2570
|
media?: string[];
|
|
2563
2571
|
cover_photo?: string;
|
|
2564
2572
|
last_login_time?: number;
|
|
2573
|
+
is_locked_device?: boolean;
|
|
2574
|
+
handle_credit_limit?: boolean;
|
|
2575
|
+
credit_limit?: number;
|
|
2565
2576
|
}
|
|
2566
2577
|
type PopulatedKeys = "line" | "lines" | "job_category" | "teams" | "assigned_forms_v2" | "job_category" | "cover_photo" | "assigned_plan" | "assigned_retail_execution_templates" | "warehouse";
|
|
2567
2578
|
export type RepWithPopulatedKeysSchema = RepSchema & {
|
package/package.json
CHANGED
package/src/types/index.ts
CHANGED
|
@@ -2835,8 +2835,13 @@ export namespace Service {
|
|
|
2835
2835
|
watermark_time?: boolean;
|
|
2836
2836
|
watermark_date?: boolean;
|
|
2837
2837
|
watermark_coordinates?: boolean;
|
|
2838
|
+
watermark_font_size?: number;
|
|
2838
2839
|
rep_must_end_day_after: `${number}:${number}`;
|
|
2839
2840
|
treating_invoice_as_proforma_for_etax?: boolean;
|
|
2841
|
+
disable_auto_timezone_enforcement?: boolean;
|
|
2842
|
+
disable_auto_time_date_enforcement?: boolean;
|
|
2843
|
+
start_day_specific_time_frame_start: `${number}:${number}`;
|
|
2844
|
+
start_day_specific_time_frame_end: `${number}:${number}`;
|
|
2840
2845
|
}
|
|
2841
2846
|
type JobOption = 0 | 1 | 2;
|
|
2842
2847
|
export interface RepSchema {
|
|
@@ -2890,6 +2895,9 @@ export namespace Service {
|
|
|
2890
2895
|
media?: string[];
|
|
2891
2896
|
cover_photo?: string;
|
|
2892
2897
|
last_login_time?: number;
|
|
2898
|
+
is_locked_device: boolean;
|
|
2899
|
+
handle_credit_limit: boolean;
|
|
2900
|
+
credit_limit?: number;
|
|
2893
2901
|
createdAt: string;
|
|
2894
2902
|
updatedAt: string;
|
|
2895
2903
|
__v: number;
|
|
@@ -2945,6 +2953,9 @@ export namespace Service {
|
|
|
2945
2953
|
media?: string[];
|
|
2946
2954
|
cover_photo?: string;
|
|
2947
2955
|
last_login_time?: number;
|
|
2956
|
+
is_locked_device?: boolean;
|
|
2957
|
+
handle_credit_limit?: boolean;
|
|
2958
|
+
credit_limit?: number;
|
|
2948
2959
|
}
|
|
2949
2960
|
|
|
2950
2961
|
type PopulatedKeys =
|