@wix/stores 1.0.271 → 1.0.273

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/stores",
3
- "version": "1.0.271",
3
+ "version": "1.0.273",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/",
6
6
  "access": "public"
@@ -18,19 +18,19 @@
18
18
  "type-bundles"
19
19
  ],
20
20
  "dependencies": {
21
- "@wix/stores_brands-v-3": "1.0.15",
22
- "@wix/stores_catalog-versioning": "1.0.7",
23
- "@wix/stores_collections": "1.0.41",
24
- "@wix/stores_customizations-v-3": "1.0.16",
25
- "@wix/stores_info-sections-v-3": "1.0.17",
26
- "@wix/stores_inventory": "1.0.53",
27
- "@wix/stores_inventory-items-v-3": "1.0.20",
28
- "@wix/stores_products": "1.0.76",
29
- "@wix/stores_products-v-3": "1.0.57",
30
- "@wix/stores_ribbons-v-3": "1.0.16",
31
- "@wix/stores_stores-locations-v-3": "1.0.17",
32
- "@wix/stores_subscription-options": "1.0.40",
33
- "@wix/stores_wishlist": "1.0.33"
21
+ "@wix/stores_brands-v-3": "1.0.16",
22
+ "@wix/stores_catalog-versioning": "1.0.8",
23
+ "@wix/stores_collections": "1.0.42",
24
+ "@wix/stores_customizations-v-3": "1.0.17",
25
+ "@wix/stores_info-sections-v-3": "1.0.18",
26
+ "@wix/stores_inventory": "1.0.54",
27
+ "@wix/stores_inventory-items-v-3": "1.0.21",
28
+ "@wix/stores_products": "1.0.78",
29
+ "@wix/stores_products-v-3": "1.0.58",
30
+ "@wix/stores_ribbons-v-3": "1.0.17",
31
+ "@wix/stores_stores-locations-v-3": "1.0.18",
32
+ "@wix/stores_subscription-options": "1.0.41",
33
+ "@wix/stores_wishlist": "1.0.34"
34
34
  },
35
35
  "devDependencies": {
36
36
  "glob": "^10.4.1",
@@ -55,5 +55,5 @@
55
55
  "fqdn": ""
56
56
  }
57
57
  },
58
- "falconPackageHash": "d7b3f7fb8b27b89f42ed1088b3a7dadabc75ac12dc4538c948039eba"
58
+ "falconPackageHash": "c480893d9054d7e6c8f300c3aad64126361cbc31437e588f3a722d8e"
59
59
  }
@@ -493,7 +493,7 @@ interface WishlistItem {
493
493
  * The data the item was save to the list
494
494
  * @readonly
495
495
  */
496
- dateAdded?: Date;
496
+ dateAdded?: Date | null;
497
497
  /** The type of the item. For example "product" */
498
498
  type?: string;
499
499
  /** The origin of the item. Should be the scope the item type is related to. For example "wixstores" */
@@ -1148,12 +1148,12 @@ interface Product$2 {
1148
1148
  * Date and time the product was last updated.
1149
1149
  * @readonly
1150
1150
  */
1151
- lastUpdated?: Date;
1151
+ lastUpdated?: Date | null;
1152
1152
  /**
1153
1153
  * Date and time the product was created.
1154
1154
  * @readonly
1155
1155
  */
1156
- _createdDate?: Date;
1156
+ _createdDate?: Date | null;
1157
1157
  /** Custom SEO data for the product. */
1158
1158
  seoData?: SeoSchema$1;
1159
1159
  /** Product ribbon. Used to highlight relevant information about a product. For example, "Sale", "New Arrival", "Sold Out". */
@@ -2961,12 +2961,12 @@ interface UpdateProduct$1 {
2961
2961
  * Date and time the product was last updated.
2962
2962
  * @readonly
2963
2963
  */
2964
- lastUpdated?: Date;
2964
+ lastUpdated?: Date | null;
2965
2965
  /**
2966
2966
  * Date and time the product was created.
2967
2967
  * @readonly
2968
2968
  */
2969
- _createdDate?: Date;
2969
+ _createdDate?: Date | null;
2970
2970
  /** Custom SEO data for the product. */
2971
2971
  seoData?: SeoSchema$1;
2972
2972
  /** Product ribbon. Used to highlight relevant information about a product. For example, "Sale", "New Arrival", "Sold Out". */
@@ -3627,12 +3627,12 @@ interface Brand$1 {
3627
3627
  * Date and time the brand was created.
3628
3628
  * @readonly
3629
3629
  */
3630
- _createdDate?: Date;
3630
+ _createdDate?: Date | null;
3631
3631
  /**
3632
3632
  * Date and time the brand was updated.
3633
3633
  * @readonly
3634
3634
  */
3635
- _updatedDate?: Date;
3635
+ _updatedDate?: Date | null;
3636
3636
  /**
3637
3637
  * Brand name.
3638
3638
  * >**Note:** `name` must be unique.
@@ -3974,7 +3974,7 @@ interface DomainEvent$6 extends DomainEventBodyOneOf$6 {
3974
3974
  /** ID of the entity associated with the event. */
3975
3975
  entityId?: string;
3976
3976
  /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
3977
- eventTime?: Date;
3977
+ eventTime?: Date | null;
3978
3978
  /**
3979
3979
  * Whether the event was triggered as a result of a privacy regulation application
3980
3980
  * (for example, GDPR).
@@ -4003,7 +4003,7 @@ interface EntityCreatedEvent$6 {
4003
4003
  entity?: string;
4004
4004
  }
4005
4005
  interface RestoreInfo$6 {
4006
- deletedDate?: Date;
4006
+ deletedDate?: Date | null;
4007
4007
  }
4008
4008
  interface EntityUpdatedEvent$6 {
4009
4009
  /**
@@ -4145,7 +4145,7 @@ interface EventMetadata$5 extends BaseEventMetadata$6 {
4145
4145
  /** ID of the entity associated with the event. */
4146
4146
  entityId?: string;
4147
4147
  /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
4148
- eventTime?: Date;
4148
+ eventTime?: Date | null;
4149
4149
  /**
4150
4150
  * Whether the event was triggered as a result of a privacy regulation application
4151
4151
  * (for example, GDPR).
@@ -4201,12 +4201,12 @@ interface UpdateBrand {
4201
4201
  * Date and time the brand was created.
4202
4202
  * @readonly
4203
4203
  */
4204
- _createdDate?: Date;
4204
+ _createdDate?: Date | null;
4205
4205
  /**
4206
4206
  * Date and time the brand was updated.
4207
4207
  * @readonly
4208
4208
  */
4209
- _updatedDate?: Date;
4209
+ _updatedDate?: Date | null;
4210
4210
  /**
4211
4211
  * Brand name.
4212
4212
  * >**Note:** `name` must be unique.
@@ -4597,12 +4597,12 @@ interface Customization extends CustomizationCustomizationSettingsOneOf {
4597
4597
  * Date and time the customization was created.
4598
4598
  * @readonly
4599
4599
  */
4600
- _createdDate?: Date;
4600
+ _createdDate?: Date | null;
4601
4601
  /**
4602
4602
  * Date and time the customization was updated.
4603
4603
  * @readonly
4604
4604
  */
4605
- _updatedDate?: Date;
4605
+ _updatedDate?: Date | null;
4606
4606
  /** Customization name for options (for example, `"color"`, `"size"`) and modifiers (for example, `"greeting card"`). */
4607
4607
  name?: string;
4608
4608
  /** Customization type. */
@@ -5077,7 +5077,7 @@ interface DomainEvent$5 extends DomainEventBodyOneOf$5 {
5077
5077
  /** ID of the entity associated with the event. */
5078
5078
  entityId?: string;
5079
5079
  /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
5080
- eventTime?: Date;
5080
+ eventTime?: Date | null;
5081
5081
  /**
5082
5082
  * Whether the event was triggered as a result of a privacy regulation application
5083
5083
  * (for example, GDPR).
@@ -5106,7 +5106,7 @@ interface EntityCreatedEvent$5 {
5106
5106
  entity?: string;
5107
5107
  }
5108
5108
  interface RestoreInfo$5 {
5109
- deletedDate?: Date;
5109
+ deletedDate?: Date | null;
5110
5110
  }
5111
5111
  interface EntityUpdatedEvent$5 {
5112
5112
  /**
@@ -5271,7 +5271,7 @@ interface EventMetadata$4 extends BaseEventMetadata$5 {
5271
5271
  /** ID of the entity associated with the event. */
5272
5272
  entityId?: string;
5273
5273
  /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
5274
- eventTime?: Date;
5274
+ eventTime?: Date | null;
5275
5275
  /**
5276
5276
  * Whether the event was triggered as a result of a privacy regulation application
5277
5277
  * (for example, GDPR).
@@ -5340,12 +5340,12 @@ interface UpdateCustomization {
5340
5340
  * Date and time the customization was created.
5341
5341
  * @readonly
5342
5342
  */
5343
- _createdDate?: Date;
5343
+ _createdDate?: Date | null;
5344
5344
  /**
5345
5345
  * Date and time the customization was updated.
5346
5346
  * @readonly
5347
5347
  */
5348
- _updatedDate?: Date;
5348
+ _updatedDate?: Date | null;
5349
5349
  /** Customization name for options (for example, `"color"`, `"size"`) and modifiers (for example, `"greeting card"`). */
5350
5350
  name?: string;
5351
5351
  /** Customization type. */
@@ -5780,12 +5780,12 @@ interface InfoSection$1 {
5780
5780
  * Date and time the info section was created.
5781
5781
  * @readonly
5782
5782
  */
5783
- _createdDate?: Date;
5783
+ _createdDate?: Date | null;
5784
5784
  /**
5785
5785
  * Date and time the info section was updated.
5786
5786
  * @readonly
5787
5787
  */
5788
- _updatedDate?: Date;
5788
+ _updatedDate?: Date | null;
5789
5789
  /** Unique name. Used as an identifier. */
5790
5790
  uniqueName?: string;
5791
5791
  /** Info section title. */
@@ -7006,12 +7006,12 @@ interface Metadata$1 {
7006
7006
  * @readonly
7007
7007
  * @deprecated
7008
7008
  */
7009
- createdTimestamp?: Date;
7009
+ createdTimestamp?: Date | null;
7010
7010
  /**
7011
7011
  * When the object was most recently updated.
7012
7012
  * @deprecated
7013
7013
  */
7014
- updatedTimestamp?: Date;
7014
+ updatedTimestamp?: Date | null;
7015
7015
  /** Object ID. */
7016
7016
  _id?: string | null;
7017
7017
  }
@@ -7412,7 +7412,7 @@ interface DomainEvent$4 extends DomainEventBodyOneOf$4 {
7412
7412
  /** ID of the entity associated with the event. */
7413
7413
  entityId?: string;
7414
7414
  /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
7415
- eventTime?: Date;
7415
+ eventTime?: Date | null;
7416
7416
  /**
7417
7417
  * Whether the event was triggered as a result of a privacy regulation application
7418
7418
  * (for example, GDPR).
@@ -7441,7 +7441,7 @@ interface EntityCreatedEvent$4 {
7441
7441
  entity?: string;
7442
7442
  }
7443
7443
  interface RestoreInfo$4 {
7444
- deletedDate?: Date;
7444
+ deletedDate?: Date | null;
7445
7445
  }
7446
7446
  interface EntityUpdatedEvent$4 {
7447
7447
  /**
@@ -7828,7 +7828,7 @@ interface EventMetadata$3 extends BaseEventMetadata$4 {
7828
7828
  /** ID of the entity associated with the event. */
7829
7829
  entityId?: string;
7830
7830
  /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
7831
- eventTime?: Date;
7831
+ eventTime?: Date | null;
7832
7832
  /**
7833
7833
  * Whether the event was triggered as a result of a privacy regulation application
7834
7834
  * (for example, GDPR).
@@ -7904,12 +7904,12 @@ interface UpdateInfoSection {
7904
7904
  * Date and time the info section was created.
7905
7905
  * @readonly
7906
7906
  */
7907
- _createdDate?: Date;
7907
+ _createdDate?: Date | null;
7908
7908
  /**
7909
7909
  * Date and time the info section was updated.
7910
7910
  * @readonly
7911
7911
  */
7912
- _updatedDate?: Date;
7912
+ _updatedDate?: Date | null;
7913
7913
  /** Unique name. Used as an identifier. */
7914
7914
  uniqueName?: string;
7915
7915
  /** Info section title. */
@@ -8298,12 +8298,12 @@ interface InventoryItem$1 extends InventoryItemTrackingMethodOneOf$1 {
8298
8298
  * Date and time the inventory item was created.
8299
8299
  * @readonly
8300
8300
  */
8301
- _createdDate?: Date;
8301
+ _createdDate?: Date | null;
8302
8302
  /**
8303
8303
  * Date and time the inventory item was created.
8304
8304
  * @readonly
8305
8305
  */
8306
- _updatedDate?: Date;
8306
+ _updatedDate?: Date | null;
8307
8307
  /** Variant ID. */
8308
8308
  variantId?: string;
8309
8309
  /** Stores location ID. */
@@ -9425,7 +9425,7 @@ interface DomainEvent$3 extends DomainEventBodyOneOf$3 {
9425
9425
  /** ID of the entity associated with the event. */
9426
9426
  entityId?: string;
9427
9427
  /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
9428
- eventTime?: Date;
9428
+ eventTime?: Date | null;
9429
9429
  /**
9430
9430
  * Whether the event was triggered as a result of a privacy regulation application
9431
9431
  * (for example, GDPR).
@@ -9454,7 +9454,7 @@ interface EntityCreatedEvent$3 {
9454
9454
  entity?: string;
9455
9455
  }
9456
9456
  interface RestoreInfo$3 {
9457
- deletedDate?: Date;
9457
+ deletedDate?: Date | null;
9458
9458
  }
9459
9459
  interface EntityUpdatedEvent$3 {
9460
9460
  /**
@@ -9673,7 +9673,7 @@ interface EventMetadata$2 extends BaseEventMetadata$3 {
9673
9673
  /** ID of the entity associated with the event. */
9674
9674
  entityId?: string;
9675
9675
  /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
9676
- eventTime?: Date;
9676
+ eventTime?: Date | null;
9677
9677
  /**
9678
9678
  * Whether the event was triggered as a result of a privacy regulation application
9679
9679
  * (for example, GDPR).
@@ -9750,12 +9750,12 @@ interface UpdateInventoryItem {
9750
9750
  * Date and time the inventory item was created.
9751
9751
  * @readonly
9752
9752
  */
9753
- _createdDate?: Date;
9753
+ _createdDate?: Date | null;
9754
9754
  /**
9755
9755
  * Date and time the inventory item was created.
9756
9756
  * @readonly
9757
9757
  */
9758
- _updatedDate?: Date;
9758
+ _updatedDate?: Date | null;
9759
9759
  /** Variant ID. */
9760
9760
  variantId?: string;
9761
9761
  /** Stores location ID. */
@@ -10292,12 +10292,12 @@ interface V3Product extends V3ProductTypedPropertiesOneOf {
10292
10292
  * Date and time the product was created.
10293
10293
  * @readonly
10294
10294
  */
10295
- _createdDate?: Date;
10295
+ _createdDate?: Date | null;
10296
10296
  /**
10297
10297
  * Date and time the product was updated.
10298
10298
  * @readonly
10299
10299
  */
10300
- _updatedDate?: Date;
10300
+ _updatedDate?: Date | null;
10301
10301
  /** Product name. Translatable. */
10302
10302
  name?: string | null;
10303
10303
  /**
@@ -11672,12 +11672,12 @@ interface Metadata {
11672
11672
  * @readonly
11673
11673
  * @deprecated
11674
11674
  */
11675
- createdTimestamp?: Date;
11675
+ createdTimestamp?: Date | null;
11676
11676
  /**
11677
11677
  * When the object was most recently updated.
11678
11678
  * @deprecated
11679
11679
  */
11680
- updatedTimestamp?: Date;
11680
+ updatedTimestamp?: Date | null;
11681
11681
  /** Object ID. */
11682
11682
  _id?: string | null;
11683
11683
  }
@@ -12705,7 +12705,7 @@ interface DomainEvent$2 extends DomainEventBodyOneOf$2 {
12705
12705
  /** ID of the entity associated with the event. */
12706
12706
  entityId?: string;
12707
12707
  /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
12708
- eventTime?: Date;
12708
+ eventTime?: Date | null;
12709
12709
  /**
12710
12710
  * Whether the event was triggered as a result of a privacy regulation application
12711
12711
  * (for example, GDPR).
@@ -12734,7 +12734,7 @@ interface EntityCreatedEvent$2 {
12734
12734
  entity?: string;
12735
12735
  }
12736
12736
  interface RestoreInfo$2 {
12737
- deletedDate?: Date;
12737
+ deletedDate?: Date | null;
12738
12738
  }
12739
12739
  interface EntityUpdatedEvent$2 {
12740
12740
  /**
@@ -13220,12 +13220,12 @@ interface InventoryItem extends InventoryItemTrackingMethodOneOf {
13220
13220
  * Date and time the inventory item was created.
13221
13221
  * @readonly
13222
13222
  */
13223
- _createdDate?: Date;
13223
+ _createdDate?: Date | null;
13224
13224
  /**
13225
13225
  * Date and time the inventory item was created.
13226
13226
  * @readonly
13227
13227
  */
13228
- _updatedDate?: Date;
13228
+ _updatedDate?: Date | null;
13229
13229
  /** Variant ID. */
13230
13230
  variantId?: string;
13231
13231
  /** Stores location ID. */
@@ -16258,7 +16258,7 @@ interface EventMetadata$1 extends BaseEventMetadata$2 {
16258
16258
  /** ID of the entity associated with the event. */
16259
16259
  entityId?: string;
16260
16260
  /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
16261
- eventTime?: Date;
16261
+ eventTime?: Date | null;
16262
16262
  /**
16263
16263
  * Whether the event was triggered as a result of a privacy regulation application
16264
16264
  * (for example, GDPR).
@@ -16327,12 +16327,12 @@ interface UpdateProduct {
16327
16327
  * Date and time the product was created.
16328
16328
  * @readonly
16329
16329
  */
16330
- _createdDate?: Date;
16330
+ _createdDate?: Date | null;
16331
16331
  /**
16332
16332
  * Date and time the product was updated.
16333
16333
  * @readonly
16334
16334
  */
16335
- _updatedDate?: Date;
16335
+ _updatedDate?: Date | null;
16336
16336
  /** Product name. Translatable. */
16337
16337
  name?: string | null;
16338
16338
  /**
@@ -17913,12 +17913,12 @@ interface Provision {
17913
17913
  * Date and time the Provision was created.
17914
17914
  * @readonly
17915
17915
  */
17916
- _createdDate?: Date;
17916
+ _createdDate?: Date | null;
17917
17917
  /**
17918
17918
  * Date and time the Provision was last updated.
17919
17919
  * @readonly
17920
17920
  */
17921
- _updatedDate?: Date;
17921
+ _updatedDate?: Date | null;
17922
17922
  /** Version of the catalog this store was provisioned on. DO NOT USE unless part of the install flow */
17923
17923
  catalogVersion?: Version;
17924
17924
  }
@@ -18155,7 +18155,7 @@ interface SiteDeleted {
18155
18155
  }
18156
18156
  interface DeleteContext {
18157
18157
  /** When the meta site was deleted. */
18158
- dateDeleted?: Date;
18158
+ dateDeleted?: Date | null;
18159
18159
  /** A status. */
18160
18160
  deleteStatus?: DeleteStatus;
18161
18161
  /** A reason (flow). */
@@ -18350,12 +18350,12 @@ interface Ribbon {
18350
18350
  * Date and time the ribbon was created.
18351
18351
  * @readonly
18352
18352
  */
18353
- _createdDate?: Date;
18353
+ _createdDate?: Date | null;
18354
18354
  /**
18355
18355
  * Date and time the ribbon was updated.
18356
18356
  * @readonly
18357
18357
  */
18358
- _updatedDate?: Date;
18358
+ _updatedDate?: Date | null;
18359
18359
  /** Ribbon name. */
18360
18360
  name?: string;
18361
18361
  /**
@@ -18694,7 +18694,7 @@ interface DomainEvent$1 extends DomainEventBodyOneOf$1 {
18694
18694
  /** ID of the entity associated with the event. */
18695
18695
  entityId?: string;
18696
18696
  /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
18697
- eventTime?: Date;
18697
+ eventTime?: Date | null;
18698
18698
  /**
18699
18699
  * Whether the event was triggered as a result of a privacy regulation application
18700
18700
  * (for example, GDPR).
@@ -18723,7 +18723,7 @@ interface EntityCreatedEvent$1 {
18723
18723
  entity?: string;
18724
18724
  }
18725
18725
  interface RestoreInfo$1 {
18726
- deletedDate?: Date;
18726
+ deletedDate?: Date | null;
18727
18727
  }
18728
18728
  interface EntityUpdatedEvent$1 {
18729
18729
  /**
@@ -18865,7 +18865,7 @@ interface EventMetadata extends BaseEventMetadata$1 {
18865
18865
  /** ID of the entity associated with the event. */
18866
18866
  entityId?: string;
18867
18867
  /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
18868
- eventTime?: Date;
18868
+ eventTime?: Date | null;
18869
18869
  /**
18870
18870
  * Whether the event was triggered as a result of a privacy regulation application
18871
18871
  * (for example, GDPR).
@@ -18922,12 +18922,12 @@ interface UpdateRibbon {
18922
18922
  * Date and time the ribbon was created.
18923
18923
  * @readonly
18924
18924
  */
18925
- _createdDate?: Date;
18925
+ _createdDate?: Date | null;
18926
18926
  /**
18927
18927
  * Date and time the ribbon was updated.
18928
18928
  * @readonly
18929
18929
  */
18930
- _updatedDate?: Date;
18930
+ _updatedDate?: Date | null;
18931
18931
  /** Ribbon name. */
18932
18932
  name?: string;
18933
18933
  /**
@@ -19301,12 +19301,12 @@ interface StoresLocation {
19301
19301
  * Date and time the Stores location was created.
19302
19302
  * @readonly
19303
19303
  */
19304
- _createdDate?: Date;
19304
+ _createdDate?: Date | null;
19305
19305
  /**
19306
19306
  * Date and time the Stores location was last updated.
19307
19307
  * @readonly
19308
19308
  */
19309
- _updatedDate?: Date;
19309
+ _updatedDate?: Date | null;
19310
19310
  /**
19311
19311
  * Wix location ID.
19312
19312
  * Learn more about the [Locations API](https://dev.wix.com/docs/rest/business-management/locations/introduction).
@@ -19527,7 +19527,7 @@ interface DomainEvent extends DomainEventBodyOneOf {
19527
19527
  /** ID of the entity associated with the event. */
19528
19528
  entityId?: string;
19529
19529
  /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
19530
- eventTime?: Date;
19530
+ eventTime?: Date | null;
19531
19531
  /**
19532
19532
  * Whether the event was triggered as a result of a privacy regulation application
19533
19533
  * (for example, GDPR).
@@ -19556,7 +19556,7 @@ interface EntityCreatedEvent {
19556
19556
  entity?: string;
19557
19557
  }
19558
19558
  interface RestoreInfo {
19559
- deletedDate?: Date;
19559
+ deletedDate?: Date | null;
19560
19560
  }
19561
19561
  interface EntityUpdatedEvent {
19562
19562
  /**
@@ -20437,7 +20437,7 @@ interface InventoryItemV2 {
20437
20437
  * Last updated timestamp.
20438
20438
  * @readonly
20439
20439
  */
20440
- lastUpdated?: Date;
20440
+ lastUpdated?: Date | null;
20441
20441
  /**
20442
20442
  * Inventory’s unique numeric ID (assigned in ascending order).
20443
20443
  * Primarily for sorting and filtering when crawling all inventories.
@@ -20486,7 +20486,7 @@ interface InventoryItemChanged {
20486
20486
  /** Preorder information. */
20487
20487
  preorderInfo?: PreorderInfo;
20488
20488
  /** Date and time the inventory item was last updated. */
20489
- _updatedDate?: Date;
20489
+ _updatedDate?: Date | null;
20490
20490
  }
20491
20491
  interface InventoryVariantsChanged {
20492
20492
  /** Inventory item ID. */
@@ -20504,7 +20504,7 @@ interface InventoryVariantsChanged {
20504
20504
  /** Information about changed variants. */
20505
20505
  variants?: ChangedInventoryVariant[];
20506
20506
  /** Date and time the inventory variant item was last updated. */
20507
- _updatedDate?: Date;
20507
+ _updatedDate?: Date | null;
20508
20508
  }
20509
20509
  interface ChangedInventoryVariant {
20510
20510
  /** Variant ID. */
@@ -20828,7 +20828,7 @@ interface UpdateInventoryVariantsInventoryItem {
20828
20828
  * Last updated timestamp.
20829
20829
  * @readonly
20830
20830
  */
20831
- lastUpdated?: Date;
20831
+ lastUpdated?: Date | null;
20832
20832
  /**
20833
20833
  * Inventory’s unique numeric ID (assigned in ascending order).
20834
20834
  * Primarily for sorting and filtering when crawling all inventories.