@wix/pricing-plans 1.0.78 → 1.0.79
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/build/cjs/index.d.ts +3 -2
- package/build/cjs/index.js +4 -2
- package/build/cjs/index.js.map +1 -1
- package/build/es/index.d.ts +3 -2
- package/build/es/index.js +3 -2
- package/build/es/index.js.map +1 -1
- package/package.json +3 -3
- package/type-bundles/context.bundle.d.ts +0 -1
- package/type-bundles/index.bundle.d.ts +0 -1
- package/type-bundles/meta.bundle.d.ts +0 -2
package/build/cjs/index.d.ts
CHANGED
@@ -1,2 +1,3 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
import * as orders from '@wix/pricing-plans_orders';
|
2
|
+
import * as plans from '@wix/pricing-plans_plans';
|
3
|
+
export { orders, plans };
|
package/build/cjs/index.js
CHANGED
@@ -24,6 +24,8 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
24
24
|
};
|
25
25
|
Object.defineProperty(exports, "__esModule", { value: true });
|
26
26
|
exports.plans = exports.orders = void 0;
|
27
|
-
|
28
|
-
exports.
|
27
|
+
const orders = __importStar(require("@wix/pricing-plans_orders"));
|
28
|
+
exports.orders = orders;
|
29
|
+
const plans = __importStar(require("@wix/pricing-plans_plans"));
|
30
|
+
exports.plans = plans;
|
29
31
|
//# sourceMappingURL=index.js.map
|
package/build/cjs/index.js.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,kEAAoD;AAG3C,wBAAM;AAFf,gEAAkD;AAEjC,sBAAK"}
|
package/build/es/index.d.ts
CHANGED
@@ -1,2 +1,3 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
import * as orders from '@wix/pricing-plans_orders';
|
2
|
+
import * as plans from '@wix/pricing-plans_plans';
|
3
|
+
export { orders, plans };
|
package/build/es/index.js
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
import * as orders from '@wix/pricing-plans_orders';
|
2
|
+
import * as plans from '@wix/pricing-plans_plans';
|
3
|
+
export { orders, plans };
|
3
4
|
//# sourceMappingURL=index.js.map
|
package/build/es/index.js.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,MAAM,2BAA2B,CAAC;AACpD,OAAO,KAAK,KAAK,MAAM,0BAA0B,CAAC"}
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,MAAM,2BAA2B,CAAC;AACpD,OAAO,KAAK,KAAK,MAAM,0BAA0B,CAAC;AAElD,OAAO,EAAE,MAAM,EAAE,KAAK,EAAE,CAAC"}
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@wix/pricing-plans",
|
3
|
-
"version": "1.0.
|
3
|
+
"version": "1.0.79",
|
4
4
|
"publishConfig": {
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
6
6
|
"access": "public"
|
@@ -19,7 +19,7 @@
|
|
19
19
|
],
|
20
20
|
"dependencies": {
|
21
21
|
"@wix/pricing-plans_orders": "1.0.29",
|
22
|
-
"@wix/pricing-plans_plans": "1.0.
|
22
|
+
"@wix/pricing-plans_plans": "1.0.34"
|
23
23
|
},
|
24
24
|
"devDependencies": {
|
25
25
|
"glob": "^10.4.1",
|
@@ -44,5 +44,5 @@
|
|
44
44
|
"fqdn": ""
|
45
45
|
}
|
46
46
|
},
|
47
|
-
"falconPackageHash": "
|
47
|
+
"falconPackageHash": "f880b5ca257fcb664d3705393eea9aa110e77470589eea682eb33d82"
|
48
48
|
}
|
@@ -2020,7 +2020,6 @@ interface Plan {
|
|
2020
2020
|
}
|
2021
2021
|
/** This wrapper type exist in order to distinguish an empty string list from no list at all in update requests. */
|
2022
2022
|
interface StringList {
|
2023
|
-
/** List of strings */
|
2024
2023
|
values?: string[];
|
2025
2024
|
}
|
2026
2025
|
/** Plan pricing information. Includes the price of the plan and payment details. */
|
@@ -2020,7 +2020,6 @@ interface Plan {
|
|
2020
2020
|
}
|
2021
2021
|
/** This wrapper type exist in order to distinguish an empty string list from no list at all in update requests. */
|
2022
2022
|
interface StringList {
|
2023
|
-
/** List of strings */
|
2024
2023
|
values?: string[];
|
2025
2024
|
}
|
2026
2025
|
/** Plan pricing information. Includes the price of the plan and payment details. */
|
@@ -1844,7 +1844,6 @@ interface Plan$1 {
|
|
1844
1844
|
}
|
1845
1845
|
/** This wrapper type exist in order to distinguish an empty string list from no list at all in update requests. */
|
1846
1846
|
interface StringList$1 {
|
1847
|
-
/** List of strings */
|
1848
1847
|
values?: string[];
|
1849
1848
|
}
|
1850
1849
|
/** Plan pricing information. Includes the price of the plan and payment details. */
|
@@ -2260,7 +2259,6 @@ interface Plan {
|
|
2260
2259
|
}
|
2261
2260
|
/** This wrapper type exist in order to distinguish an empty string list from no list at all in update requests. */
|
2262
2261
|
interface StringList {
|
2263
|
-
/** List of strings */
|
2264
2262
|
values?: string[];
|
2265
2263
|
}
|
2266
2264
|
/** Plan pricing information. Includes the price of the plan and payment details. */
|