repzo 1.0.261 → 1.0.263
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 +3 -2
- package/package.json +1 -1
- package/src/types/index.ts +7 -2
package/lib/types/index.d.ts
CHANGED
|
@@ -3918,8 +3918,8 @@ export declare namespace Service {
|
|
|
3918
3918
|
value: string[];
|
|
3919
3919
|
operator: "lte" | "lt" | "gte" | "gt" | "eq";
|
|
3920
3920
|
reject_if_pass: boolean;
|
|
3921
|
-
limit_type
|
|
3922
|
-
limit_value
|
|
3921
|
+
limit_type?: "count" | "price_amount";
|
|
3922
|
+
limit_value?: number;
|
|
3923
3923
|
exclude_additional_items_taxable_subtotal?: boolean;
|
|
3924
3924
|
variants?: StringId[];
|
|
3925
3925
|
}
|
|
@@ -14556,6 +14556,7 @@ export declare namespace Service {
|
|
|
14556
14556
|
}
|
|
14557
14557
|
}
|
|
14558
14558
|
namespace AuthenticateAdmin {
|
|
14559
|
+
export type MfaMethod = "email" | "whatsapp" | "authenticator" | "recovery_codes";
|
|
14559
14560
|
interface Subscription_data {
|
|
14560
14561
|
name_space: string;
|
|
14561
14562
|
grace_until: number;
|
package/package.json
CHANGED
package/src/types/index.ts
CHANGED
|
@@ -4468,8 +4468,8 @@ export namespace Service {
|
|
|
4468
4468
|
value: string[];
|
|
4469
4469
|
operator: "lte" | "lt" | "gte" | "gt" | "eq";
|
|
4470
4470
|
reject_if_pass: boolean;
|
|
4471
|
-
limit_type
|
|
4472
|
-
limit_value
|
|
4471
|
+
limit_type?: "count" | "price_amount";
|
|
4472
|
+
limit_value?: number;
|
|
4473
4473
|
exclude_additional_items_taxable_subtotal?: boolean;
|
|
4474
4474
|
variants?: StringId[];
|
|
4475
4475
|
}
|
|
@@ -15626,6 +15626,11 @@ export namespace Service {
|
|
|
15626
15626
|
}
|
|
15627
15627
|
|
|
15628
15628
|
export namespace AuthenticateAdmin {
|
|
15629
|
+
export type MfaMethod =
|
|
15630
|
+
| "email"
|
|
15631
|
+
| "whatsapp"
|
|
15632
|
+
| "authenticator"
|
|
15633
|
+
| "recovery_codes";
|
|
15629
15634
|
interface Subscription_data {
|
|
15630
15635
|
name_space: string;
|
|
15631
15636
|
grace_until: number;
|