@wix/packages 1.0.15 → 1.0.17
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/context.js +1 -0
- package/build/cjs/context.js.map +1 -0
- package/build/cjs/index.js +1 -0
- package/build/cjs/index.js.map +1 -0
- package/build/cjs/meta.js +1 -0
- package/build/cjs/meta.js.map +1 -0
- package/build/es/context.js +1 -0
- package/build/es/context.js.map +1 -0
- package/build/es/index.js +1 -0
- package/build/es/index.js.map +1 -0
- package/build/es/meta.js +1 -0
- package/build/es/meta.js.map +1 -0
- package/package.json +3 -3
- package/type-bundles/context.bundle.d.ts +481 -37
- package/type-bundles/index.bundle.d.ts +481 -37
- package/type-bundles/meta.bundle.d.ts +10 -10
|
@@ -33,12 +33,12 @@ interface Package$1 {
|
|
|
33
33
|
* Date and time the package was created.
|
|
34
34
|
* @readonly
|
|
35
35
|
*/
|
|
36
|
-
createdDate?: Date;
|
|
36
|
+
createdDate?: Date | null;
|
|
37
37
|
/**
|
|
38
38
|
* Date and time the package was last updated.
|
|
39
39
|
* @readonly
|
|
40
40
|
*/
|
|
41
|
-
updatedDate?: Date;
|
|
41
|
+
updatedDate?: Date | null;
|
|
42
42
|
}
|
|
43
43
|
/**
|
|
44
44
|
* A product instance is a specific instance of a Wix service that a reseller
|
|
@@ -86,12 +86,12 @@ interface ProductInstance$1 extends ProductInstanceContractDetailsOneOf$1 {
|
|
|
86
86
|
* Date and time the product instance was created.
|
|
87
87
|
* @readonly
|
|
88
88
|
*/
|
|
89
|
-
createdDate?: Date;
|
|
89
|
+
createdDate?: Date | null;
|
|
90
90
|
/**
|
|
91
91
|
* Date and time the product instance was last updated.
|
|
92
92
|
* @readonly
|
|
93
93
|
*/
|
|
94
|
-
updatedDate?: Date;
|
|
94
|
+
updatedDate?: Date | null;
|
|
95
95
|
/**
|
|
96
96
|
* Two-letter country code in
|
|
97
97
|
* [ISO-3166 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#Officially_assigned_code_elements)
|
|
@@ -105,7 +105,7 @@ interface ProductInstance$1 extends ProductInstanceContractDetailsOneOf$1 {
|
|
|
105
105
|
* Used only for instances that don't auto renew at the end of the current billing cycle.
|
|
106
106
|
* @readonly
|
|
107
107
|
*/
|
|
108
|
-
expirationDate?: Date;
|
|
108
|
+
expirationDate?: Date | null;
|
|
109
109
|
/**
|
|
110
110
|
* Discount code indicating that the reseller provisioned the product instance
|
|
111
111
|
* during a sale. Wix doesn't guarantee that a discount code reduces the
|
|
@@ -485,12 +485,12 @@ interface Package {
|
|
|
485
485
|
* Date and time the package was created.
|
|
486
486
|
* @readonly
|
|
487
487
|
*/
|
|
488
|
-
_createdDate?: Date;
|
|
488
|
+
_createdDate?: Date | null;
|
|
489
489
|
/**
|
|
490
490
|
* Date and time the package was last updated.
|
|
491
491
|
* @readonly
|
|
492
492
|
*/
|
|
493
|
-
_updatedDate?: Date;
|
|
493
|
+
_updatedDate?: Date | null;
|
|
494
494
|
}
|
|
495
495
|
/**
|
|
496
496
|
* A product instance is a specific instance of a Wix service that a reseller
|
|
@@ -538,12 +538,12 @@ interface ProductInstance extends ProductInstanceContractDetailsOneOf {
|
|
|
538
538
|
* Date and time the product instance was created.
|
|
539
539
|
* @readonly
|
|
540
540
|
*/
|
|
541
|
-
_createdDate?: Date;
|
|
541
|
+
_createdDate?: Date | null;
|
|
542
542
|
/**
|
|
543
543
|
* Date and time the product instance was last updated.
|
|
544
544
|
* @readonly
|
|
545
545
|
*/
|
|
546
|
-
_updatedDate?: Date;
|
|
546
|
+
_updatedDate?: Date | null;
|
|
547
547
|
/**
|
|
548
548
|
* Two-letter country code in
|
|
549
549
|
* [ISO-3166 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#Officially_assigned_code_elements)
|
|
@@ -557,7 +557,7 @@ interface ProductInstance extends ProductInstanceContractDetailsOneOf {
|
|
|
557
557
|
* Used only for instances that don't auto renew at the end of the current billing cycle.
|
|
558
558
|
* @readonly
|
|
559
559
|
*/
|
|
560
|
-
expirationDate?: Date;
|
|
560
|
+
expirationDate?: Date | null;
|
|
561
561
|
/**
|
|
562
562
|
* Discount code indicating that the reseller provisioned the product instance
|
|
563
563
|
* during a sale. Wix doesn't guarantee that a discount code reduces the
|