repzo 1.0.147 → 1.0.149
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 +7 -0
- package/package.json +1 -1
- package/src/types/index.ts +7 -0
package/lib/types/index.d.ts
CHANGED
|
@@ -852,6 +852,7 @@ export declare namespace Service {
|
|
|
852
852
|
productGroup?: string[] | string;
|
|
853
853
|
teams?: string[] | string;
|
|
854
854
|
withProduct?: boolean;
|
|
855
|
+
withDisabled?: boolean;
|
|
855
856
|
populatedKeys?: PopulatedKeys[];
|
|
856
857
|
[key: string]: any;
|
|
857
858
|
};
|
|
@@ -2410,6 +2411,8 @@ export declare namespace Service {
|
|
|
2410
2411
|
rep_to_create_invoice_variant_batch_from_assigned_warehouse?: boolean;
|
|
2411
2412
|
rep_to_create_sales_order_variant_batch_assigned_main_warehouse?: boolean;
|
|
2412
2413
|
rep_can_create_pull_from_client_assigned_to_approval_request?: boolean;
|
|
2414
|
+
rep_must_end_day_after_specific_time?: boolean;
|
|
2415
|
+
rep_can_create_negative_invoice?: boolean;
|
|
2413
2416
|
}
|
|
2414
2417
|
interface TargetResults {
|
|
2415
2418
|
totalPoints: number;
|
|
@@ -2431,6 +2434,7 @@ export declare namespace Service {
|
|
|
2431
2434
|
watermark_time?: boolean;
|
|
2432
2435
|
watermark_date?: boolean;
|
|
2433
2436
|
watermark_coordinates?: boolean;
|
|
2437
|
+
rep_must_end_day_after: `${number}:${number}`;
|
|
2434
2438
|
}
|
|
2435
2439
|
type JobOption = 0 | 1 | 2;
|
|
2436
2440
|
export interface RepSchema {
|
|
@@ -2633,6 +2637,9 @@ export declare namespace Service {
|
|
|
2633
2637
|
"permissions.rep_to_create_invoice_variant_batch_from_assigned_warehouse"?: boolean;
|
|
2634
2638
|
"permissions.rep_to_create_sales_order_variant_batch_assigned_main_warehouse"?: boolean;
|
|
2635
2639
|
"permissions.rep_can_create_pull_from_client_assigned_to_approval_request"?: boolean;
|
|
2640
|
+
"permissions.rep_must_end_day_after_specific_time"?: boolean;
|
|
2641
|
+
"permissions.rep_can_create_negative_invoice"?: boolean;
|
|
2642
|
+
"settings.rep_must_end_day_after"?: `${number}:${number}`;
|
|
2636
2643
|
"settings.allowable_accuracy"?: number;
|
|
2637
2644
|
"settings.is_item_status_per_visit_limited"?: boolean;
|
|
2638
2645
|
"settings.item_status_per_visit_limit"?: number;
|
package/package.json
CHANGED
package/src/types/index.ts
CHANGED
|
@@ -1068,6 +1068,7 @@ export namespace Service {
|
|
|
1068
1068
|
productGroup?: string[] | string;
|
|
1069
1069
|
teams?: string[] | string;
|
|
1070
1070
|
withProduct?: boolean;
|
|
1071
|
+
withDisabled?: boolean;
|
|
1071
1072
|
populatedKeys?: PopulatedKeys[];
|
|
1072
1073
|
[key: string]: any; // integration_meta.
|
|
1073
1074
|
};
|
|
@@ -2785,6 +2786,8 @@ export namespace Service {
|
|
|
2785
2786
|
rep_to_create_invoice_variant_batch_from_assigned_warehouse?: boolean;
|
|
2786
2787
|
rep_to_create_sales_order_variant_batch_assigned_main_warehouse?: boolean;
|
|
2787
2788
|
rep_can_create_pull_from_client_assigned_to_approval_request?: boolean;
|
|
2789
|
+
rep_must_end_day_after_specific_time?: boolean;
|
|
2790
|
+
rep_can_create_negative_invoice?: boolean;
|
|
2788
2791
|
}
|
|
2789
2792
|
interface TargetResults {
|
|
2790
2793
|
totalPoints: number;
|
|
@@ -2806,6 +2809,7 @@ export namespace Service {
|
|
|
2806
2809
|
watermark_time?: boolean;
|
|
2807
2810
|
watermark_date?: boolean;
|
|
2808
2811
|
watermark_coordinates?: boolean;
|
|
2812
|
+
rep_must_end_day_after: `${number}:${number}`;
|
|
2809
2813
|
}
|
|
2810
2814
|
type JobOption = 0 | 1 | 2;
|
|
2811
2815
|
export interface RepSchema {
|
|
@@ -3031,6 +3035,9 @@ export namespace Service {
|
|
|
3031
3035
|
"permissions.rep_to_create_invoice_variant_batch_from_assigned_warehouse"?: boolean;
|
|
3032
3036
|
"permissions.rep_to_create_sales_order_variant_batch_assigned_main_warehouse"?: boolean;
|
|
3033
3037
|
"permissions.rep_can_create_pull_from_client_assigned_to_approval_request"?: boolean;
|
|
3038
|
+
"permissions.rep_must_end_day_after_specific_time"?: boolean;
|
|
3039
|
+
"permissions.rep_can_create_negative_invoice"?: boolean;
|
|
3040
|
+
"settings.rep_must_end_day_after"?: `${number}:${number}`;
|
|
3034
3041
|
"settings.allowable_accuracy"?: number;
|
|
3035
3042
|
"settings.is_item_status_per_visit_limited"?: boolean;
|
|
3036
3043
|
"settings.item_status_per_visit_limit"?: number;
|