repzo 1.0.244 → 1.0.245
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 +4 -4
- package/package.json +1 -1
- package/src/types/index.ts +4 -4
package/lib/types/index.d.ts
CHANGED
|
@@ -12069,6 +12069,8 @@ export declare namespace Service {
|
|
|
12069
12069
|
local_currency_subunit?: string;
|
|
12070
12070
|
currency_factor?: 100 | 1000;
|
|
12071
12071
|
print_payment_allowance_period_in_days?: number;
|
|
12072
|
+
freshness_window_in_minutes: number;
|
|
12073
|
+
bypass_freshness_window_code: string;
|
|
12072
12074
|
}
|
|
12073
12075
|
interface WorkorderSettings {
|
|
12074
12076
|
workorder_teams_follow_assigned_to?: boolean;
|
|
@@ -12169,7 +12171,6 @@ export declare namespace Service {
|
|
|
12169
12171
|
round_discounted_price: boolean;
|
|
12170
12172
|
enable_pull_remote_cart: boolean;
|
|
12171
12173
|
enable_promotion_freshness_window: boolean;
|
|
12172
|
-
promotion_freshness_window_in_minutes: number;
|
|
12173
12174
|
};
|
|
12174
12175
|
teams_shared_collections: string[];
|
|
12175
12176
|
days_of_work: "Sunday" | "Monday" | "Tuesday" | "Wednesday" | "Thursday" | "Friday" | "Saturday";
|
|
@@ -12354,9 +12355,8 @@ export declare namespace Service {
|
|
|
12354
12355
|
manual_discounts_limit_value: number;
|
|
12355
12356
|
promotions_enabled: boolean;
|
|
12356
12357
|
round_discounted_price: boolean;
|
|
12357
|
-
enable_pull_remote_cart
|
|
12358
|
-
enable_promotion_freshness_window
|
|
12359
|
-
promotion_freshness_window_in_minutes: number;
|
|
12358
|
+
enable_pull_remote_cart?: boolean;
|
|
12359
|
+
enable_promotion_freshness_window?: boolean;
|
|
12360
12360
|
};
|
|
12361
12361
|
teams_shared_collections?: string[];
|
|
12362
12362
|
days_of_work?: "Sunday" | "Monday" | "Tuesday" | "Wednesday" | "Thursday" | "Friday" | "Saturday";
|
package/package.json
CHANGED
package/src/types/index.ts
CHANGED
|
@@ -12888,6 +12888,8 @@ export namespace Service {
|
|
|
12888
12888
|
local_currency_subunit?: string;
|
|
12889
12889
|
currency_factor?: 100 | 1000;
|
|
12890
12890
|
print_payment_allowance_period_in_days?: number;
|
|
12891
|
+
freshness_window_in_minutes: number;
|
|
12892
|
+
bypass_freshness_window_code: string;
|
|
12891
12893
|
}
|
|
12892
12894
|
|
|
12893
12895
|
export interface WorkorderSettings {
|
|
@@ -12962,7 +12964,6 @@ export namespace Service {
|
|
|
12962
12964
|
round_discounted_price: boolean;
|
|
12963
12965
|
enable_pull_remote_cart: boolean;
|
|
12964
12966
|
enable_promotion_freshness_window: boolean;
|
|
12965
|
-
promotion_freshness_window_in_minutes: number;
|
|
12966
12967
|
};
|
|
12967
12968
|
teams_shared_collections: string[];
|
|
12968
12969
|
days_of_work:
|
|
@@ -13120,9 +13121,8 @@ export namespace Service {
|
|
|
13120
13121
|
manual_discounts_limit_value: number;
|
|
13121
13122
|
promotions_enabled: boolean;
|
|
13122
13123
|
round_discounted_price: boolean;
|
|
13123
|
-
enable_pull_remote_cart
|
|
13124
|
-
enable_promotion_freshness_window
|
|
13125
|
-
promotion_freshness_window_in_minutes: number;
|
|
13124
|
+
enable_pull_remote_cart?: boolean;
|
|
13125
|
+
enable_promotion_freshness_window?: boolean;
|
|
13126
13126
|
};
|
|
13127
13127
|
teams_shared_collections?: string[];
|
|
13128
13128
|
days_of_work?:
|