repzo 1.0.244 → 1.0.246

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.
@@ -4047,6 +4047,7 @@ export declare namespace Service {
4047
4047
  to_to?: number;
4048
4048
  promotions_groups?: StringId | StringId[];
4049
4049
  status?: Data["status"] | Data["status"][];
4050
+ expired?: boolean;
4050
4051
  };
4051
4052
  interface Result extends DefaultPaginationResult {
4052
4053
  data: Data[];
@@ -12069,6 +12070,8 @@ export declare namespace Service {
12069
12070
  local_currency_subunit?: string;
12070
12071
  currency_factor?: 100 | 1000;
12071
12072
  print_payment_allowance_period_in_days?: number;
12073
+ freshness_window_in_minutes: number;
12074
+ bypass_freshness_window_code: string;
12072
12075
  }
12073
12076
  interface WorkorderSettings {
12074
12077
  workorder_teams_follow_assigned_to?: boolean;
@@ -12169,7 +12172,6 @@ export declare namespace Service {
12169
12172
  round_discounted_price: boolean;
12170
12173
  enable_pull_remote_cart: boolean;
12171
12174
  enable_promotion_freshness_window: boolean;
12172
- promotion_freshness_window_in_minutes: number;
12173
12175
  };
12174
12176
  teams_shared_collections: string[];
12175
12177
  days_of_work: "Sunday" | "Monday" | "Tuesday" | "Wednesday" | "Thursday" | "Friday" | "Saturday";
@@ -12354,9 +12356,8 @@ export declare namespace Service {
12354
12356
  manual_discounts_limit_value: number;
12355
12357
  promotions_enabled: boolean;
12356
12358
  round_discounted_price: boolean;
12357
- enable_pull_remote_cart: boolean;
12358
- enable_promotion_freshness_window: boolean;
12359
- promotion_freshness_window_in_minutes: number;
12359
+ enable_pull_remote_cart?: boolean;
12360
+ enable_promotion_freshness_window?: boolean;
12360
12361
  };
12361
12362
  teams_shared_collections?: string[];
12362
12363
  days_of_work?: "Sunday" | "Monday" | "Tuesday" | "Wednesday" | "Thursday" | "Friday" | "Saturday";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "repzo",
3
- "version": "1.0.244",
3
+ "version": "1.0.246",
4
4
  "description": "Repzo TypeScript SDK",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",
@@ -4629,6 +4629,7 @@ export namespace Service {
4629
4629
  to_to?: number;
4630
4630
  promotions_groups?: StringId | StringId[];
4631
4631
  status?: Data["status"] | Data["status"][];
4632
+ expired?: boolean;
4632
4633
  };
4633
4634
  export interface Result extends DefaultPaginationResult {
4634
4635
  data: Data[];
@@ -12888,6 +12889,8 @@ export namespace Service {
12888
12889
  local_currency_subunit?: string;
12889
12890
  currency_factor?: 100 | 1000;
12890
12891
  print_payment_allowance_period_in_days?: number;
12892
+ freshness_window_in_minutes: number;
12893
+ bypass_freshness_window_code: string;
12891
12894
  }
12892
12895
 
12893
12896
  export interface WorkorderSettings {
@@ -12962,7 +12965,6 @@ export namespace Service {
12962
12965
  round_discounted_price: boolean;
12963
12966
  enable_pull_remote_cart: boolean;
12964
12967
  enable_promotion_freshness_window: boolean;
12965
- promotion_freshness_window_in_minutes: number;
12966
12968
  };
12967
12969
  teams_shared_collections: string[];
12968
12970
  days_of_work:
@@ -13120,9 +13122,8 @@ export namespace Service {
13120
13122
  manual_discounts_limit_value: number;
13121
13123
  promotions_enabled: boolean;
13122
13124
  round_discounted_price: boolean;
13123
- enable_pull_remote_cart: boolean;
13124
- enable_promotion_freshness_window: boolean;
13125
- promotion_freshness_window_in_minutes: number;
13125
+ enable_pull_remote_cart?: boolean;
13126
+ enable_promotion_freshness_window?: boolean;
13126
13127
  };
13127
13128
  teams_shared_collections?: string[];
13128
13129
  days_of_work?: