repzo 1.0.148 → 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.
@@ -2411,6 +2411,8 @@ export declare namespace Service {
2411
2411
  rep_to_create_invoice_variant_batch_from_assigned_warehouse?: boolean;
2412
2412
  rep_to_create_sales_order_variant_batch_assigned_main_warehouse?: boolean;
2413
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;
2414
2416
  }
2415
2417
  interface TargetResults {
2416
2418
  totalPoints: number;
@@ -2432,6 +2434,7 @@ export declare namespace Service {
2432
2434
  watermark_time?: boolean;
2433
2435
  watermark_date?: boolean;
2434
2436
  watermark_coordinates?: boolean;
2437
+ rep_must_end_day_after: `${number}:${number}`;
2435
2438
  }
2436
2439
  type JobOption = 0 | 1 | 2;
2437
2440
  export interface RepSchema {
@@ -2634,6 +2637,9 @@ export declare namespace Service {
2634
2637
  "permissions.rep_to_create_invoice_variant_batch_from_assigned_warehouse"?: boolean;
2635
2638
  "permissions.rep_to_create_sales_order_variant_batch_assigned_main_warehouse"?: boolean;
2636
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}`;
2637
2643
  "settings.allowable_accuracy"?: number;
2638
2644
  "settings.is_item_status_per_visit_limited"?: boolean;
2639
2645
  "settings.item_status_per_visit_limit"?: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "repzo",
3
- "version": "1.0.148",
3
+ "version": "1.0.149",
4
4
  "description": "Repzo TypeScript SDK",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",
@@ -2786,6 +2786,8 @@ export namespace Service {
2786
2786
  rep_to_create_invoice_variant_batch_from_assigned_warehouse?: boolean;
2787
2787
  rep_to_create_sales_order_variant_batch_assigned_main_warehouse?: boolean;
2788
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;
2789
2791
  }
2790
2792
  interface TargetResults {
2791
2793
  totalPoints: number;
@@ -2807,6 +2809,7 @@ export namespace Service {
2807
2809
  watermark_time?: boolean;
2808
2810
  watermark_date?: boolean;
2809
2811
  watermark_coordinates?: boolean;
2812
+ rep_must_end_day_after: `${number}:${number}`;
2810
2813
  }
2811
2814
  type JobOption = 0 | 1 | 2;
2812
2815
  export interface RepSchema {
@@ -3032,6 +3035,9 @@ export namespace Service {
3032
3035
  "permissions.rep_to_create_invoice_variant_batch_from_assigned_warehouse"?: boolean;
3033
3036
  "permissions.rep_to_create_sales_order_variant_batch_assigned_main_warehouse"?: boolean;
3034
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}`;
3035
3041
  "settings.allowable_accuracy"?: number;
3036
3042
  "settings.is_item_status_per_visit_limited"?: boolean;
3037
3043
  "settings.item_status_per_visit_limit"?: number;