@juhuu/sdk-ts 1.3.28 → 1.3.30
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/dist/index.d.mts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +2 -0
- package/dist/index.mjs +2 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -2868,6 +2868,7 @@ declare namespace JUHUU {
|
|
|
2868
2868
|
acceptedTermIdArray: string[];
|
|
2869
2869
|
languageCode: LanguageCode | null;
|
|
2870
2870
|
billingAddress: DeepNullable<Address>;
|
|
2871
|
+
billingAddressVerified: boolean;
|
|
2871
2872
|
billingEmail: string | null;
|
|
2872
2873
|
billingEmailVerified: boolean;
|
|
2873
2874
|
billingPhone: string | null;
|
package/dist/index.d.ts
CHANGED
|
@@ -2868,6 +2868,7 @@ declare namespace JUHUU {
|
|
|
2868
2868
|
acceptedTermIdArray: string[];
|
|
2869
2869
|
languageCode: LanguageCode | null;
|
|
2870
2870
|
billingAddress: DeepNullable<Address>;
|
|
2871
|
+
billingAddressVerified: boolean;
|
|
2871
2872
|
billingEmail: string | null;
|
|
2872
2873
|
billingEmailVerified: boolean;
|
|
2873
2874
|
billingPhone: string | null;
|
package/dist/index.js
CHANGED
|
@@ -4120,6 +4120,8 @@ var EmzService = class extends Service {
|
|
|
4120
4120
|
|
|
4121
4121
|
// src/flows/flows.service.ts
|
|
4122
4122
|
var import_json_logic_js = __toESM(require("json-logic-js"));
|
|
4123
|
+
import_json_logic_js.default.add_operation("isNull", (value) => value === null || value === void 0);
|
|
4124
|
+
import_json_logic_js.default.add_operation("isNotNull", (value) => value !== null && value !== void 0);
|
|
4123
4125
|
var FlowsService = class extends Service {
|
|
4124
4126
|
constructor(config) {
|
|
4125
4127
|
super(config);
|
package/dist/index.mjs
CHANGED
|
@@ -4076,6 +4076,8 @@ var EmzService = class extends Service {
|
|
|
4076
4076
|
|
|
4077
4077
|
// src/flows/flows.service.ts
|
|
4078
4078
|
import jsonLogic from "json-logic-js";
|
|
4079
|
+
jsonLogic.add_operation("isNull", (value) => value === null || value === void 0);
|
|
4080
|
+
jsonLogic.add_operation("isNotNull", (value) => value !== null && value !== void 0);
|
|
4079
4081
|
var FlowsService = class extends Service {
|
|
4080
4082
|
constructor(config) {
|
|
4081
4083
|
super(config);
|