repzo 1.0.197 → 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 +15 -0
- package/package.json +1 -1
- package/src/types/index.ts +15 -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 & {
|
|
@@ -16296,6 +16307,7 @@ export declare namespace Service {
|
|
|
16296
16307
|
static_data?: StaticData[];
|
|
16297
16308
|
group_data: GroupData[];
|
|
16298
16309
|
filter_group: StringId;
|
|
16310
|
+
is_popular?: boolean;
|
|
16299
16311
|
createdAt?: Date;
|
|
16300
16312
|
updatedAt?: Date;
|
|
16301
16313
|
}
|
|
@@ -16316,6 +16328,7 @@ export declare namespace Service {
|
|
|
16316
16328
|
endpoint?: string;
|
|
16317
16329
|
static_data?: StaticData[];
|
|
16318
16330
|
group_data: GroupData[];
|
|
16331
|
+
is_popular?: boolean;
|
|
16319
16332
|
}
|
|
16320
16333
|
interface UpdateBody {
|
|
16321
16334
|
label?: string;
|
|
@@ -16334,6 +16347,7 @@ export declare namespace Service {
|
|
|
16334
16347
|
endpoint?: string;
|
|
16335
16348
|
static_data?: StaticData[];
|
|
16336
16349
|
group_data: GroupData[];
|
|
16350
|
+
is_popular?: boolean;
|
|
16337
16351
|
}
|
|
16338
16352
|
namespace Find {
|
|
16339
16353
|
type Params = DefaultPaginationQueryParams & {
|
|
@@ -16341,6 +16355,7 @@ export declare namespace Service {
|
|
|
16341
16355
|
from_createdAt?: Date;
|
|
16342
16356
|
to_updatedAt?: Date;
|
|
16343
16357
|
search?: string;
|
|
16358
|
+
is_popular?: boolean;
|
|
16344
16359
|
populatedKeys?: ["filter_group"];
|
|
16345
16360
|
};
|
|
16346
16361
|
interface Result extends DefaultPaginationResult {
|
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 =
|
|
@@ -18526,6 +18537,7 @@ export namespace Service {
|
|
|
18526
18537
|
static_data?: StaticData[];
|
|
18527
18538
|
group_data: GroupData[];
|
|
18528
18539
|
filter_group: StringId;
|
|
18540
|
+
is_popular?: boolean;
|
|
18529
18541
|
createdAt?: Date;
|
|
18530
18542
|
updatedAt?: Date;
|
|
18531
18543
|
}
|
|
@@ -18547,6 +18559,7 @@ export namespace Service {
|
|
|
18547
18559
|
endpoint?: string;
|
|
18548
18560
|
static_data?: StaticData[];
|
|
18549
18561
|
group_data: GroupData[];
|
|
18562
|
+
is_popular?: boolean;
|
|
18550
18563
|
}
|
|
18551
18564
|
|
|
18552
18565
|
export interface UpdateBody {
|
|
@@ -18566,6 +18579,7 @@ export namespace Service {
|
|
|
18566
18579
|
endpoint?: string;
|
|
18567
18580
|
static_data?: StaticData[];
|
|
18568
18581
|
group_data: GroupData[];
|
|
18582
|
+
is_popular?: boolean;
|
|
18569
18583
|
}
|
|
18570
18584
|
|
|
18571
18585
|
export namespace Find {
|
|
@@ -18574,6 +18588,7 @@ export namespace Service {
|
|
|
18574
18588
|
from_createdAt?: Date;
|
|
18575
18589
|
to_updatedAt?: Date;
|
|
18576
18590
|
search?: string;
|
|
18591
|
+
is_popular?: boolean;
|
|
18577
18592
|
populatedKeys?: ["filter_group"];
|
|
18578
18593
|
};
|
|
18579
18594
|
|