@wix/packages 1.0.17 → 1.0.18
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/packages",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.18",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"type-bundles"
|
|
22
22
|
],
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"@wix/packages_packages": "1.0.
|
|
24
|
+
"@wix/packages_packages": "1.0.17"
|
|
25
25
|
},
|
|
26
26
|
"devDependencies": {
|
|
27
27
|
"glob": "^10.4.1",
|
|
@@ -46,5 +46,5 @@
|
|
|
46
46
|
"fqdn": ""
|
|
47
47
|
}
|
|
48
48
|
},
|
|
49
|
-
"falconPackageHash": "
|
|
49
|
+
"falconPackageHash": "43fe7fe4917d663dfb1fb28da036b4f84f2b1025ff1d631905448dc8"
|
|
50
50
|
}
|
|
@@ -667,6 +667,17 @@ interface ProductInstanceCycle {
|
|
|
667
667
|
/** Duration of the billing cycle. Available only for `RECURRING` payments. */
|
|
668
668
|
cycleDuration?: CycleInterval;
|
|
669
669
|
}
|
|
670
|
+
interface MigrateSubscriptionToPackagesRequest {
|
|
671
|
+
/** Created package. */
|
|
672
|
+
productInstance?: ProductInstance;
|
|
673
|
+
/** Existing subscriptionId to migrate */
|
|
674
|
+
subscriptionId?: string | null;
|
|
675
|
+
/** User id of the migration - only for Immigrator */
|
|
676
|
+
userId?: string | null;
|
|
677
|
+
}
|
|
678
|
+
interface MigrateSubscriptionToPackagesResponse {
|
|
679
|
+
package?: Package;
|
|
680
|
+
}
|
|
670
681
|
interface CreatePackageRequest {
|
|
671
682
|
/** Idempotency key. */
|
|
672
683
|
idempotencyKey?: string | null;
|
|
@@ -1650,17 +1661,6 @@ declare enum WebhookIdentityType {
|
|
|
1650
1661
|
WIX_USER = "WIX_USER",
|
|
1651
1662
|
APP = "APP"
|
|
1652
1663
|
}
|
|
1653
|
-
interface MigrateSubscriptionToPackagesRequest {
|
|
1654
|
-
/** Created package. */
|
|
1655
|
-
productInstance?: ProductInstance;
|
|
1656
|
-
/** Existing subscriptionId to migrate */
|
|
1657
|
-
subscriptionId?: string | null;
|
|
1658
|
-
/** User id of the migration - only for Immigrator */
|
|
1659
|
-
userId?: string | null;
|
|
1660
|
-
}
|
|
1661
|
-
interface MigrateSubscriptionToPackagesResponse {
|
|
1662
|
-
package?: Package;
|
|
1663
|
-
}
|
|
1664
1664
|
interface CycleIntervalNonNullableFields {
|
|
1665
1665
|
unit: IntervalIntervalUnit;
|
|
1666
1666
|
count: number;
|
|
@@ -667,6 +667,17 @@ interface ProductInstanceCycle {
|
|
|
667
667
|
/** Duration of the billing cycle. Available only for `RECURRING` payments. */
|
|
668
668
|
cycleDuration?: CycleInterval;
|
|
669
669
|
}
|
|
670
|
+
interface MigrateSubscriptionToPackagesRequest {
|
|
671
|
+
/** Created package. */
|
|
672
|
+
productInstance?: ProductInstance;
|
|
673
|
+
/** Existing subscriptionId to migrate */
|
|
674
|
+
subscriptionId?: string | null;
|
|
675
|
+
/** User id of the migration - only for Immigrator */
|
|
676
|
+
userId?: string | null;
|
|
677
|
+
}
|
|
678
|
+
interface MigrateSubscriptionToPackagesResponse {
|
|
679
|
+
package?: Package;
|
|
680
|
+
}
|
|
670
681
|
interface CreatePackageRequest {
|
|
671
682
|
/** Idempotency key. */
|
|
672
683
|
idempotencyKey?: string | null;
|
|
@@ -1650,17 +1661,6 @@ declare enum WebhookIdentityType {
|
|
|
1650
1661
|
WIX_USER = "WIX_USER",
|
|
1651
1662
|
APP = "APP"
|
|
1652
1663
|
}
|
|
1653
|
-
interface MigrateSubscriptionToPackagesRequest {
|
|
1654
|
-
/** Created package. */
|
|
1655
|
-
productInstance?: ProductInstance;
|
|
1656
|
-
/** Existing subscriptionId to migrate */
|
|
1657
|
-
subscriptionId?: string | null;
|
|
1658
|
-
/** User id of the migration - only for Immigrator */
|
|
1659
|
-
userId?: string | null;
|
|
1660
|
-
}
|
|
1661
|
-
interface MigrateSubscriptionToPackagesResponse {
|
|
1662
|
-
package?: Package;
|
|
1663
|
-
}
|
|
1664
1664
|
interface CycleIntervalNonNullableFields {
|
|
1665
1665
|
unit: IntervalIntervalUnit;
|
|
1666
1666
|
count: number;
|