@wix/ecom 1.0.787 → 1.0.789

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.
@@ -685,12 +685,12 @@ interface DiscountRule$7 {
685
685
  * Date and time the discount rule was created.
686
686
  * @readonly
687
687
  */
688
- _createdDate?: Date;
688
+ _createdDate?: Date | null;
689
689
  /**
690
690
  * Date and time the discount rule was last updated.
691
691
  * @readonly
692
692
  */
693
- _updatedDate?: Date;
693
+ _updatedDate?: Date | null;
694
694
  /**
695
695
  * Whether the discount rule is active.
696
696
  *
@@ -854,9 +854,9 @@ declare enum TriggerType {
854
854
  }
855
855
  interface ActiveTimeInfo {
856
856
  /** Date and time the discount rule is active **from**, in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#Combined_date_and_time_representations) format. */
857
- start?: Date;
857
+ start?: Date | null;
858
858
  /** Date and time the discount rule is active **till**, in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#Combined_date_and_time_representations) format. */
859
- end?: Date;
859
+ end?: Date | null;
860
860
  }
861
861
  interface Discounts {
862
862
  /** Discounts. */
@@ -1211,7 +1211,7 @@ interface DomainEvent$k extends DomainEventBodyOneOf$k {
1211
1211
  /** ID of the entity associated with the event. */
1212
1212
  entityId?: string;
1213
1213
  /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
1214
- eventTime?: Date;
1214
+ eventTime?: Date | null;
1215
1215
  /**
1216
1216
  * Whether the event was triggered as a result of a privacy regulation application
1217
1217
  * (for example, GDPR).
@@ -1240,7 +1240,7 @@ interface EntityCreatedEvent$k {
1240
1240
  entity?: string;
1241
1241
  }
1242
1242
  interface RestoreInfo$k {
1243
- deletedDate?: Date;
1243
+ deletedDate?: Date | null;
1244
1244
  }
1245
1245
  interface EntityUpdatedEvent$k {
1246
1246
  /**
@@ -1417,7 +1417,7 @@ interface EventMetadata$f extends BaseEventMetadata$f {
1417
1417
  /** ID of the entity associated with the event. */
1418
1418
  entityId?: string;
1419
1419
  /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
1420
- eventTime?: Date;
1420
+ eventTime?: Date | null;
1421
1421
  /**
1422
1422
  * Whether the event was triggered as a result of a privacy regulation application
1423
1423
  * (for example, GDPR).
@@ -1462,12 +1462,12 @@ interface UpdateDiscountRule {
1462
1462
  * Date and time the discount rule was created.
1463
1463
  * @readonly
1464
1464
  */
1465
- _createdDate?: Date;
1465
+ _createdDate?: Date | null;
1466
1466
  /**
1467
1467
  * Date and time the discount rule was last updated.
1468
1468
  * @readonly
1469
1469
  */
1470
- _updatedDate?: Date;
1470
+ _updatedDate?: Date | null;
1471
1471
  /**
1472
1472
  * Whether the discount rule is active.
1473
1473
  *
@@ -1845,7 +1845,7 @@ interface DomainEvent$j extends DomainEventBodyOneOf$j {
1845
1845
  /** ID of the entity associated with the event. */
1846
1846
  entityId?: string;
1847
1847
  /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
1848
- eventTime?: Date;
1848
+ eventTime?: Date | null;
1849
1849
  /**
1850
1850
  * Whether the event was triggered as a result of a privacy regulation application
1851
1851
  * (for example, GDPR).
@@ -1874,7 +1874,7 @@ interface EntityCreatedEvent$j {
1874
1874
  entity?: string;
1875
1875
  }
1876
1876
  interface RestoreInfo$j {
1877
- deletedDate?: Date;
1877
+ deletedDate?: Date | null;
1878
1878
  }
1879
1879
  interface EntityUpdatedEvent$j {
1880
1880
  /**
@@ -1908,7 +1908,7 @@ interface GenerateInvoiceWithNumberRequest {
1908
1908
  orderId?: string;
1909
1909
  invoiceNumber?: string;
1910
1910
  /** Date and time the payment was created in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#Combined_date_and_time_representations) format. Defaults to current time when not provided. */
1911
- issueDate?: Date;
1911
+ issueDate?: Date | null;
1912
1912
  }
1913
1913
  interface GenerateInvoiceWithNumberResponse {
1914
1914
  /** Invoice ID. */
@@ -2220,9 +2220,9 @@ interface AbandonedCheckout {
2220
2220
  /** Abandoned checkout ID. */
2221
2221
  _id?: string;
2222
2222
  /** Date and time the abandoned checkout was created. */
2223
- _createdDate?: Date;
2223
+ _createdDate?: Date | null;
2224
2224
  /** Date and time the abandoned checkout was updated. */
2225
- _updatedDate?: Date;
2225
+ _updatedDate?: Date | null;
2226
2226
  /** The associated checkout ID. */
2227
2227
  checkoutId?: string | null;
2228
2228
  /** The associated cart ID. */
@@ -2250,7 +2250,7 @@ interface AbandonedCheckout {
2250
2250
  */
2251
2251
  activities?: Activity$3[];
2252
2252
  /** Date and time the abandoned checkout was recovered. */
2253
- checkoutRecoveredDate?: Date;
2253
+ checkoutRecoveredDate?: Date | null;
2254
2254
  /** Checkout URL. */
2255
2255
  checkoutUrl?: string;
2256
2256
  /** Subtotal price of all line items, before discounts and before tax. */
@@ -2360,7 +2360,7 @@ interface MultiCurrencyPrice$5 {
2360
2360
  }
2361
2361
  interface Activity$3 {
2362
2362
  /** Date and time the automation activity was created. */
2363
- _createdDate?: Date;
2363
+ _createdDate?: Date | null;
2364
2364
  /**
2365
2365
  * Automation activity type.
2366
2366
  *
@@ -2374,12 +2374,12 @@ interface CartAbandonedEvent {
2374
2374
  * Time the cart was created
2375
2375
  * @readonly
2376
2376
  */
2377
- creationTime?: Date;
2377
+ creationTime?: Date | null;
2378
2378
  /**
2379
2379
  * Time the cart was abandoned
2380
2380
  * @readonly
2381
2381
  */
2382
- abandonTime?: Date;
2382
+ abandonTime?: Date | null;
2383
2383
  /** Buyer information */
2384
2384
  buyerInfo?: BuyerInfo$8;
2385
2385
  /** Amount of items in cart */
@@ -2429,17 +2429,17 @@ interface CartRecoveredEvent {
2429
2429
  * Time the cart was recovered
2430
2430
  * @readonly
2431
2431
  */
2432
- recoveredTime?: Date;
2432
+ recoveredTime?: Date | null;
2433
2433
  /**
2434
2434
  * Time the cart was created
2435
2435
  * @readonly
2436
2436
  */
2437
- creationTime?: Date;
2437
+ creationTime?: Date | null;
2438
2438
  /**
2439
2439
  * Time the cart was abandoned
2440
2440
  * @readonly
2441
2441
  */
2442
- abandonedTime?: Date;
2442
+ abandonedTime?: Date | null;
2443
2443
  }
2444
2444
  interface GetAbandonedCheckoutRequest {
2445
2445
  /** Abandoned checkout ID. */
@@ -2648,7 +2648,7 @@ interface AddAbandonedCheckoutActivityResponse {
2648
2648
  }
2649
2649
  interface Task$1 {
2650
2650
  key?: TaskKey$1;
2651
- executeAt?: Date;
2651
+ executeAt?: Date | null;
2652
2652
  payload?: string | null;
2653
2653
  }
2654
2654
  interface TaskKey$1 {
@@ -2672,7 +2672,7 @@ interface Complete$1 {
2672
2672
  interface Cancel$1 {
2673
2673
  }
2674
2674
  interface Reschedule$1 {
2675
- executeAt?: Date;
2675
+ executeAt?: Date | null;
2676
2676
  payload?: string | null;
2677
2677
  }
2678
2678
  interface RedirectToCheckoutRequest {
@@ -2714,7 +2714,7 @@ interface DomainEvent$i extends DomainEventBodyOneOf$i {
2714
2714
  /** ID of the entity associated with the event. */
2715
2715
  entityId?: string;
2716
2716
  /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
2717
- eventTime?: Date;
2717
+ eventTime?: Date | null;
2718
2718
  /**
2719
2719
  * Whether the event was triggered as a result of a privacy regulation application
2720
2720
  * (for example, GDPR).
@@ -2743,7 +2743,7 @@ interface EntityCreatedEvent$i {
2743
2743
  entity?: string;
2744
2744
  }
2745
2745
  interface RestoreInfo$i {
2746
- deletedDate?: Date;
2746
+ deletedDate?: Date | null;
2747
2747
  }
2748
2748
  interface EntityUpdatedEvent$i {
2749
2749
  /**
@@ -2881,7 +2881,7 @@ interface EventMetadata$e extends BaseEventMetadata$e {
2881
2881
  /** ID of the entity associated with the event. */
2882
2882
  entityId?: string;
2883
2883
  /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
2884
- eventTime?: Date;
2884
+ eventTime?: Date | null;
2885
2885
  /**
2886
2886
  * Whether the event was triggered as a result of a privacy regulation application
2887
2887
  * (for example, GDPR).
@@ -3131,7 +3131,7 @@ interface BackInStockNotificationRequest {
3131
3131
  * Date and time the notification request was created.
3132
3132
  * @readonly
3133
3133
  */
3134
- _createdDate?: Date;
3134
+ _createdDate?: Date | null;
3135
3135
  /** Item URL for this request. */
3136
3136
  itemUrl?: string | null;
3137
3137
  }
@@ -3410,7 +3410,7 @@ interface DomainEvent$h extends DomainEventBodyOneOf$h {
3410
3410
  /** ID of the entity associated with the event. */
3411
3411
  entityId?: string;
3412
3412
  /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
3413
- eventTime?: Date;
3413
+ eventTime?: Date | null;
3414
3414
  /**
3415
3415
  * Whether the event was triggered as a result of a privacy regulation application
3416
3416
  * (for example, GDPR).
@@ -3439,7 +3439,7 @@ interface EntityCreatedEvent$h {
3439
3439
  entity?: string;
3440
3440
  }
3441
3441
  interface RestoreInfo$h {
3442
- deletedDate?: Date;
3442
+ deletedDate?: Date | null;
3443
3443
  }
3444
3444
  interface EntityUpdatedEvent$h {
3445
3445
  /**
@@ -3554,7 +3554,7 @@ interface EventMetadata$d extends BaseEventMetadata$d {
3554
3554
  /** ID of the entity associated with the event. */
3555
3555
  entityId?: string;
3556
3556
  /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
3557
- eventTime?: Date;
3557
+ eventTime?: Date | null;
3558
3558
  /**
3559
3559
  * Whether the event was triggered as a result of a privacy regulation application
3560
3560
  * (for example, GDPR).
@@ -4027,12 +4027,12 @@ interface Cart$1 {
4027
4027
  * Date and time the cart was created.
4028
4028
  * @readonly
4029
4029
  */
4030
- _createdDate?: Date;
4030
+ _createdDate?: Date | null;
4031
4031
  /**
4032
4032
  * Date and time the cart was updated.
4033
4033
  * @readonly
4034
4034
  */
4035
- _updatedDate?: Date;
4035
+ _updatedDate?: Date | null;
4036
4036
  /** Contact info. */
4037
4037
  contactInfo?: AddressWithContact$5;
4038
4038
  /**
@@ -4402,7 +4402,7 @@ declare enum PaymentOptionType$6 {
4402
4402
  }
4403
4403
  interface ServiceProperties$5 {
4404
4404
  /** The date and time for which the service is supposed to be provided. For example, the time of the class. */
4405
- scheduledDate?: Date;
4405
+ scheduledDate?: Date | null;
4406
4406
  /** The number of people participating in this service. For example, the number of people attending the class or the number of people per hotel room. */
4407
4407
  numberOfParticipants?: number | null;
4408
4408
  }
@@ -5124,9 +5124,9 @@ declare enum PickupMethod$7 {
5124
5124
  }
5125
5125
  interface DeliveryTimeSlot$7 {
5126
5126
  /** starting time of the delivery time slot */
5127
- from?: Date;
5127
+ from?: Date | null;
5128
5128
  /** ending time of the delivery time slot */
5129
- to?: Date;
5129
+ to?: Date | null;
5130
5130
  }
5131
5131
  interface SelectedCarrierServiceOptionPrices$4 {
5132
5132
  /** Total shipping price, after discount and after tax. */
@@ -5395,7 +5395,7 @@ interface Membership$4 {
5395
5395
  /** Optional - For a membership that has limited credits, information about credit usage. */
5396
5396
  credits?: MembershipPaymentCredits$4;
5397
5397
  /** Optional - TMembership expiry date. */
5398
- expirationDate?: Date;
5398
+ expirationDate?: Date | null;
5399
5399
  /** Additional data about this membership. */
5400
5400
  additionalData?: Record<string, any> | null;
5401
5401
  }
@@ -5602,7 +5602,7 @@ interface DomainEvent$g extends DomainEventBodyOneOf$g {
5602
5602
  /** ID of the entity associated with the event. */
5603
5603
  entityId?: string;
5604
5604
  /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
5605
- eventTime?: Date;
5605
+ eventTime?: Date | null;
5606
5606
  /**
5607
5607
  * Whether the event was triggered as a result of a privacy regulation application
5608
5608
  * (for example, GDPR).
@@ -5631,7 +5631,7 @@ interface EntityCreatedEvent$g {
5631
5631
  entity?: string;
5632
5632
  }
5633
5633
  interface RestoreInfo$g {
5634
- deletedDate?: Date;
5634
+ deletedDate?: Date | null;
5635
5635
  }
5636
5636
  interface EntityUpdatedEvent$g {
5637
5637
  /**
@@ -6275,7 +6275,7 @@ interface EventMetadata$c extends BaseEventMetadata$c {
6275
6275
  /** ID of the entity associated with the event. */
6276
6276
  entityId?: string;
6277
6277
  /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
6278
- eventTime?: Date;
6278
+ eventTime?: Date | null;
6279
6279
  /**
6280
6280
  * Whether the event was triggered as a result of a privacy regulation application
6281
6281
  * (for example, GDPR).
@@ -6381,12 +6381,12 @@ interface UpdateCartOptions {
6381
6381
  * Date and time the cart was created.
6382
6382
  * @readonly
6383
6383
  */
6384
- _createdDate?: Date;
6384
+ _createdDate?: Date | null;
6385
6385
  /**
6386
6386
  * Date and time the cart was updated.
6387
6387
  * @readonly
6388
6388
  */
6389
- _updatedDate?: Date;
6389
+ _updatedDate?: Date | null;
6390
6390
  /** Contact info. */
6391
6391
  contactInfo?: AddressWithContact$5;
6392
6392
  /**
@@ -6713,12 +6713,12 @@ interface Cart {
6713
6713
  * Date and time the cart was created.
6714
6714
  * @readonly
6715
6715
  */
6716
- _createdDate?: Date;
6716
+ _createdDate?: Date | null;
6717
6717
  /**
6718
6718
  * Date and time the cart was updated.
6719
6719
  * @readonly
6720
6720
  */
6721
- _updatedDate?: Date;
6721
+ _updatedDate?: Date | null;
6722
6722
  /** Contact info. */
6723
6723
  contactInfo?: AddressWithContact$4;
6724
6724
  /**
@@ -7088,7 +7088,7 @@ declare enum PaymentOptionType$5 {
7088
7088
  }
7089
7089
  interface ServiceProperties$4 {
7090
7090
  /** The date and time for which the service is supposed to be provided. For example, the time of the class. */
7091
- scheduledDate?: Date;
7091
+ scheduledDate?: Date | null;
7092
7092
  /** The number of people participating in this service. For example, the number of people attending the class or the number of people per hotel room. */
7093
7093
  numberOfParticipants?: number | null;
7094
7094
  }
@@ -7810,9 +7810,9 @@ declare enum PickupMethod$6 {
7810
7810
  }
7811
7811
  interface DeliveryTimeSlot$6 {
7812
7812
  /** starting time of the delivery time slot */
7813
- from?: Date;
7813
+ from?: Date | null;
7814
7814
  /** ending time of the delivery time slot */
7815
- to?: Date;
7815
+ to?: Date | null;
7816
7816
  }
7817
7817
  interface SelectedCarrierServiceOptionPrices$3 {
7818
7818
  /** Total shipping price, after discount and after tax. */
@@ -8081,7 +8081,7 @@ interface Membership$3 {
8081
8081
  /** Optional - For a membership that has limited credits, information about credit usage. */
8082
8082
  credits?: MembershipPaymentCredits$3;
8083
8083
  /** Optional - TMembership expiry date. */
8084
- expirationDate?: Date;
8084
+ expirationDate?: Date | null;
8085
8085
  /** Additional data about this membership. */
8086
8086
  additionalData?: Record<string, any> | null;
8087
8087
  }
@@ -8288,7 +8288,7 @@ interface DomainEvent$f extends DomainEventBodyOneOf$f {
8288
8288
  /** ID of the entity associated with the event. */
8289
8289
  entityId?: string;
8290
8290
  /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
8291
- eventTime?: Date;
8291
+ eventTime?: Date | null;
8292
8292
  /**
8293
8293
  * Whether the event was triggered as a result of a privacy regulation application
8294
8294
  * (for example, GDPR).
@@ -8317,7 +8317,7 @@ interface EntityCreatedEvent$f {
8317
8317
  entity?: string;
8318
8318
  }
8319
8319
  interface RestoreInfo$f {
8320
- deletedDate?: Date;
8320
+ deletedDate?: Date | null;
8321
8321
  }
8322
8322
  interface EntityUpdatedEvent$f {
8323
8323
  /**
@@ -8961,7 +8961,7 @@ interface EventMetadata$b extends BaseEventMetadata$b {
8961
8961
  /** ID of the entity associated with the event. */
8962
8962
  entityId?: string;
8963
8963
  /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
8964
- eventTime?: Date;
8964
+ eventTime?: Date | null;
8965
8965
  /**
8966
8966
  * Whether the event was triggered as a result of a privacy regulation application
8967
8967
  * (for example, GDPR).
@@ -9375,12 +9375,12 @@ interface Checkout$1 {
9375
9375
  * Date and time the checkout was created.
9376
9376
  * @readonly
9377
9377
  */
9378
- _createdDate?: Date;
9378
+ _createdDate?: Date | null;
9379
9379
  /**
9380
9380
  * Date and time the checkout was updated.
9381
9381
  * @readonly
9382
9382
  */
9383
- _updatedDate?: Date;
9383
+ _updatedDate?: Date | null;
9384
9384
  /**
9385
9385
  * Minimal amount to pay in order to place the order.
9386
9386
  * @readonly
@@ -9887,7 +9887,7 @@ interface ServiceProperties$3 {
9887
9887
  * Date and time the service is to be provided, in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#Combined_date_and_time_representations) format.
9888
9888
  * For example, the start time of a class.
9889
9889
  */
9890
- scheduledDate?: Date;
9890
+ scheduledDate?: Date | null;
9891
9891
  /** The number of people participating in the service. For example, the number of people attending a class or the number of people per hotel room. */
9892
9892
  numberOfParticipants?: number | null;
9893
9893
  }
@@ -10076,9 +10076,9 @@ declare enum PickupMethod$5 {
10076
10076
  }
10077
10077
  interface DeliveryTimeSlot$5 {
10078
10078
  /** starting time of the delivery time slot */
10079
- from?: Date;
10079
+ from?: Date | null;
10080
10080
  /** ending time of the delivery time slot */
10081
- to?: Date;
10081
+ to?: Date | null;
10082
10082
  }
10083
10083
  interface SelectedCarrierServiceOptionPrices$2 {
10084
10084
  /** Total shipping price, after discount and after tax. */
@@ -10574,7 +10574,7 @@ interface Membership$2 {
10574
10574
  /** Optional - For a membership that has limited credits, information about credit usage. */
10575
10575
  credits?: MembershipPaymentCredits$2;
10576
10576
  /** Optional - TMembership expiry date. */
10577
- expirationDate?: Date;
10577
+ expirationDate?: Date | null;
10578
10578
  /** Additional data about this membership. */
10579
10579
  additionalData?: Record<string, any> | null;
10580
10580
  }
@@ -11165,7 +11165,7 @@ interface Subscription {
11165
11165
  * Subscription creation date
11166
11166
  * @readonly
11167
11167
  */
11168
- dateCreated?: Date;
11168
+ dateCreated?: Date | null;
11169
11169
  /** The id of the cart this order was created from */
11170
11170
  cartId?: string | null;
11171
11171
  /** The id of the checkout this subscriptions was created from */
@@ -11553,7 +11553,7 @@ interface DomainEvent$e extends DomainEventBodyOneOf$e {
11553
11553
  /** ID of the entity associated with the event. */
11554
11554
  entityId?: string;
11555
11555
  /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
11556
- eventTime?: Date;
11556
+ eventTime?: Date | null;
11557
11557
  /**
11558
11558
  * Whether the event was triggered as a result of a privacy regulation application
11559
11559
  * (for example, GDPR).
@@ -11582,7 +11582,7 @@ interface EntityCreatedEvent$e {
11582
11582
  entity?: string;
11583
11583
  }
11584
11584
  interface RestoreInfo$e {
11585
- deletedDate?: Date;
11585
+ deletedDate?: Date | null;
11586
11586
  }
11587
11587
  interface EntityUpdatedEvent$e {
11588
11588
  /**
@@ -12133,7 +12133,7 @@ interface EventMetadata$a extends BaseEventMetadata$a {
12133
12133
  /** ID of the entity associated with the event. */
12134
12134
  entityId?: string;
12135
12135
  /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
12136
- eventTime?: Date;
12136
+ eventTime?: Date | null;
12137
12137
  /**
12138
12138
  * Whether the event was triggered as a result of a privacy regulation application
12139
12139
  * (for example, GDPR).
@@ -12308,12 +12308,12 @@ interface UpdateCheckout {
12308
12308
  * Date and time the checkout was created.
12309
12309
  * @readonly
12310
12310
  */
12311
- _createdDate?: Date;
12311
+ _createdDate?: Date | null;
12312
12312
  /**
12313
12313
  * Date and time the checkout was updated.
12314
12314
  * @readonly
12315
12315
  */
12316
- _updatedDate?: Date;
12316
+ _updatedDate?: Date | null;
12317
12317
  /**
12318
12318
  * Minimal amount to pay in order to place the order.
12319
12319
  * @readonly
@@ -12741,12 +12741,12 @@ interface CheckoutSettings {
12741
12741
  * Date and time the checkout settings were created.
12742
12742
  * @readonly
12743
12743
  */
12744
- _createdDate?: Date;
12744
+ _createdDate?: Date | null;
12745
12745
  /**
12746
12746
  * Date and time the checkout settings were updated.
12747
12747
  * @readonly
12748
12748
  */
12749
- _updatedDate?: Date;
12749
+ _updatedDate?: Date | null;
12750
12750
  }
12751
12751
  interface CheckoutPolicies {
12752
12752
  /** Terms and conditions. */
@@ -12962,7 +12962,7 @@ interface DomainEvent$d extends DomainEventBodyOneOf$d {
12962
12962
  /** ID of the entity associated with the event. */
12963
12963
  entityId?: string;
12964
12964
  /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
12965
- eventTime?: Date;
12965
+ eventTime?: Date | null;
12966
12966
  /**
12967
12967
  * Whether the event was triggered as a result of a privacy regulation application
12968
12968
  * (for example, GDPR).
@@ -12991,7 +12991,7 @@ interface EntityCreatedEvent$d {
12991
12991
  entity?: string;
12992
12992
  }
12993
12993
  interface RestoreInfo$d {
12994
- deletedDate?: Date;
12994
+ deletedDate?: Date | null;
12995
12995
  }
12996
12996
  interface EntityUpdatedEvent$d {
12997
12997
  /**
@@ -13096,7 +13096,7 @@ interface EventMetadata$9 extends BaseEventMetadata$9 {
13096
13096
  /** ID of the entity associated with the event. */
13097
13097
  entityId?: string;
13098
13098
  /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
13099
- eventTime?: Date;
13099
+ eventTime?: Date | null;
13100
13100
  /**
13101
13101
  * Whether the event was triggered as a result of a privacy regulation application
13102
13102
  * (for example, GDPR).
@@ -13608,7 +13608,7 @@ interface ServiceProperties$2 {
13608
13608
  * Date and time the service is to be provided, in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#Combined_date_and_time_representations) format.
13609
13609
  * For example, the start time of a class.
13610
13610
  */
13611
- scheduledDate?: Date;
13611
+ scheduledDate?: Date | null;
13612
13612
  /** The number of people participating in the service. For example, the number of people attending a class or the number of people per hotel room. */
13613
13613
  numberOfParticipants?: number | null;
13614
13614
  }
@@ -13885,12 +13885,12 @@ interface Checkout {
13885
13885
  * Date and time the checkout was created.
13886
13886
  * @readonly
13887
13887
  */
13888
- _createdDate?: Date;
13888
+ _createdDate?: Date | null;
13889
13889
  /**
13890
13890
  * Date and time the checkout was updated.
13891
13891
  * @readonly
13892
13892
  */
13893
- _updatedDate?: Date;
13893
+ _updatedDate?: Date | null;
13894
13894
  /**
13895
13895
  * Minimal amount to pay in order to place the order.
13896
13896
  * @readonly
@@ -14351,9 +14351,9 @@ declare enum PickupMethod$4 {
14351
14351
  }
14352
14352
  interface DeliveryTimeSlot$4 {
14353
14353
  /** starting time of the delivery time slot */
14354
- from?: Date;
14354
+ from?: Date | null;
14355
14355
  /** ending time of the delivery time slot */
14356
- to?: Date;
14356
+ to?: Date | null;
14357
14357
  }
14358
14358
  interface SelectedCarrierServiceOptionPrices$1 {
14359
14359
  /** Total shipping price, after discount and after tax. */
@@ -14849,7 +14849,7 @@ interface Membership$1 {
14849
14849
  /** Optional - For a membership that has limited credits, information about credit usage. */
14850
14850
  credits?: MembershipPaymentCredits$1;
14851
14851
  /** Optional - TMembership expiry date. */
14852
- expirationDate?: Date;
14852
+ expirationDate?: Date | null;
14853
14853
  /** Additional data about this membership. */
14854
14854
  additionalData?: Record<string, any> | null;
14855
14855
  }
@@ -15033,7 +15033,7 @@ interface DomainEvent$c extends DomainEventBodyOneOf$c {
15033
15033
  /** ID of the entity associated with the event. */
15034
15034
  entityId?: string;
15035
15035
  /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
15036
- eventTime?: Date;
15036
+ eventTime?: Date | null;
15037
15037
  /**
15038
15038
  * Whether the event was triggered as a result of a privacy regulation application
15039
15039
  * (for example, GDPR).
@@ -15062,7 +15062,7 @@ interface EntityCreatedEvent$c {
15062
15062
  entity?: string;
15063
15063
  }
15064
15064
  interface RestoreInfo$c {
15065
- deletedDate?: Date;
15065
+ deletedDate?: Date | null;
15066
15066
  }
15067
15067
  interface EntityUpdatedEvent$c {
15068
15068
  /**
@@ -15280,7 +15280,7 @@ interface EventMetadata$8 extends BaseEventMetadata$8 {
15280
15280
  /** ID of the entity associated with the event. */
15281
15281
  entityId?: string;
15282
15282
  /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
15283
- eventTime?: Date;
15283
+ eventTime?: Date | null;
15284
15284
  /**
15285
15285
  * Whether the event was triggered as a result of a privacy regulation application
15286
15286
  * (for example, GDPR).
@@ -15659,12 +15659,12 @@ interface DeliveryProfile {
15659
15659
  * Date and time the DeliveryProfile was created.
15660
15660
  * @readonly
15661
15661
  */
15662
- _createdDate?: Date;
15662
+ _createdDate?: Date | null;
15663
15663
  /**
15664
15664
  * Date and time the DeliveryProfile was last updated.
15665
15665
  * @readonly
15666
15666
  */
15667
- _updatedDate?: Date;
15667
+ _updatedDate?: Date | null;
15668
15668
  /** Extended fields. */
15669
15669
  extendedFields?: ExtendedFields$5;
15670
15670
  }
@@ -15690,7 +15690,7 @@ interface DeliveryRegion {
15690
15690
  * Represents the time this Profile was created
15691
15691
  * @readonly
15692
15692
  */
15693
- _createdDate?: Date;
15693
+ _createdDate?: Date | null;
15694
15694
  }
15695
15695
  interface DeliveryCarrier {
15696
15696
  /** AppDefId of the provider as it is registered in Wix Dev Center. Can be fetched by listDeliveryProvider api. */
@@ -15771,7 +15771,7 @@ interface DeliveryRegionAdded {
15771
15771
  * Represents the time this Profile was created
15772
15772
  * @readonly
15773
15773
  */
15774
- _createdDate?: Date;
15774
+ _createdDate?: Date | null;
15775
15775
  }
15776
15776
  interface GetDeliveryProfileRequest {
15777
15777
  /** ID of the DeliveryProfile to retrieve. */
@@ -15927,7 +15927,7 @@ interface DeliveryRegionUpdated {
15927
15927
  * Represents the time this Profile was created
15928
15928
  * @readonly
15929
15929
  */
15930
- _createdDate?: Date;
15930
+ _createdDate?: Date | null;
15931
15931
  }
15932
15932
  interface RemoveDeliveryRegionRequest$1 {
15933
15933
  /** DeliveryProfile id that owns the DeliveryRegion */
@@ -16290,7 +16290,7 @@ interface SiteDeleted {
16290
16290
  }
16291
16291
  interface DeleteContext {
16292
16292
  /** When the meta site was deleted. */
16293
- dateDeleted?: Date;
16293
+ dateDeleted?: Date | null;
16294
16294
  /** A status. */
16295
16295
  deleteStatus?: DeleteStatus;
16296
16296
  /** A reason (flow). */
@@ -16392,7 +16392,7 @@ interface DomainEvent$b extends DomainEventBodyOneOf$b {
16392
16392
  /** ID of the entity associated with the event. */
16393
16393
  entityId?: string;
16394
16394
  /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
16395
- eventTime?: Date;
16395
+ eventTime?: Date | null;
16396
16396
  /**
16397
16397
  * Whether the event was triggered as a result of a privacy regulation application
16398
16398
  * (for example, GDPR).
@@ -16421,7 +16421,7 @@ interface EntityCreatedEvent$b {
16421
16421
  entity?: string;
16422
16422
  }
16423
16423
  interface RestoreInfo$b {
16424
- deletedDate?: Date;
16424
+ deletedDate?: Date | null;
16425
16425
  }
16426
16426
  interface EntityUpdatedEvent$b {
16427
16427
  /**
@@ -16604,7 +16604,7 @@ interface EventMetadata$7 extends BaseEventMetadata$7 {
16604
16604
  /** ID of the entity associated with the event. */
16605
16605
  entityId?: string;
16606
16606
  /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
16607
- eventTime?: Date;
16607
+ eventTime?: Date | null;
16608
16608
  /**
16609
16609
  * Whether the event was triggered as a result of a privacy regulation application
16610
16610
  * (for example, GDPR).
@@ -16670,12 +16670,12 @@ interface UpdateDeliveryProfile {
16670
16670
  * Date and time the DeliveryProfile was created.
16671
16671
  * @readonly
16672
16672
  */
16673
- _createdDate?: Date;
16673
+ _createdDate?: Date | null;
16674
16674
  /**
16675
16675
  * Date and time the DeliveryProfile was last updated.
16676
16676
  * @readonly
16677
16677
  */
16678
- _updatedDate?: Date;
16678
+ _updatedDate?: Date | null;
16679
16679
  /** Extended fields. */
16680
16680
  extendedFields?: ExtendedFields$5;
16681
16681
  }
@@ -16793,7 +16793,7 @@ interface UpdateDeliveryRegion {
16793
16793
  * Represents the time this Profile was created
16794
16794
  * @readonly
16795
16795
  */
16796
- _createdDate?: Date;
16796
+ _createdDate?: Date | null;
16797
16797
  }
16798
16798
  interface UpdateDeliveryRegionOptions {
16799
16799
  /**
@@ -17191,12 +17191,12 @@ interface DraftOrder {
17191
17191
  * Date and time the draft order was created.
17192
17192
  * @readonly
17193
17193
  */
17194
- _createdDate?: Date;
17194
+ _createdDate?: Date | null;
17195
17195
  /**
17196
17196
  * Date and time the draft order was updated.
17197
17197
  * @readonly
17198
17198
  */
17199
- _updatedDate?: Date;
17199
+ _updatedDate?: Date | null;
17200
17200
  /**
17201
17201
  * Identity of the draft order's initiator.
17202
17202
  * @readonly
@@ -17582,7 +17582,7 @@ interface DigitalFile$2 {
17582
17582
  * Link expiration time and date.
17583
17583
  * @readonly
17584
17584
  */
17585
- expirationDate?: Date;
17585
+ expirationDate?: Date | null;
17586
17586
  }
17587
17587
  interface SubscriptionInfo$2 {
17588
17588
  /** Subscription ID. */
@@ -17694,7 +17694,7 @@ interface V1DeliveryLogistics extends V1DeliveryLogisticsAddressOneOf {
17694
17694
  * Deprecated - Latest expected delivery date and time in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#Combined_date_and_time_representations) format.
17695
17695
  * @deprecated
17696
17696
  */
17697
- deliverByDate?: Date;
17697
+ deliverByDate?: Date | null;
17698
17698
  /** Expected delivery time. */
17699
17699
  deliveryTimeSlot?: V1DeliveryTimeSlot;
17700
17700
  }
@@ -17804,9 +17804,9 @@ declare enum PickupDetailsPickupMethod {
17804
17804
  }
17805
17805
  interface V1DeliveryTimeSlot {
17806
17806
  /** Delivery slot starting time. */
17807
- from?: Date;
17807
+ from?: Date | null;
17808
17808
  /** Delivery slot ending time. */
17809
- to?: Date;
17809
+ to?: Date | null;
17810
17810
  }
17811
17811
  interface V1ShippingPrice {
17812
17812
  /** Shipping price for display purposes. */
@@ -18267,9 +18267,9 @@ declare enum PickupMethod$3 {
18267
18267
  }
18268
18268
  interface DeliveryTimeSlot$3 {
18269
18269
  /** starting time of the delivery time slot */
18270
- from?: Date;
18270
+ from?: Date | null;
18271
18271
  /** ending time of the delivery time slot */
18272
- to?: Date;
18272
+ to?: Date | null;
18273
18273
  }
18274
18274
  interface ShippingPrice$2 {
18275
18275
  /** The shipping rate's price. Must align with the [currency's decimal separator](https://en.wikipedia.org/wiki/ISO_4217#Active_codes). */
@@ -18721,12 +18721,12 @@ interface Order$2 {
18721
18721
  * Date and time the order was created in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#Combined_date_and_time_representations) format.
18722
18722
  * @readonly
18723
18723
  */
18724
- _createdDate?: Date;
18724
+ _createdDate?: Date | null;
18725
18725
  /**
18726
18726
  * Date and time the order was last updated in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#Combined_date_and_time_representations) format.
18727
18727
  * @readonly
18728
18728
  */
18729
- _updatedDate?: Date;
18729
+ _updatedDate?: Date | null;
18730
18730
  /**
18731
18731
  * Order line items.
18732
18732
  * @readonly
@@ -18897,7 +18897,7 @@ interface Activity$2 extends ActivityContentOneOf$1 {
18897
18897
  * Activity creation date and time.
18898
18898
  * @readonly
18899
18899
  */
18900
- _createdDate?: Date;
18900
+ _createdDate?: Date | null;
18901
18901
  /** Activity type. */
18902
18902
  type?: ActivityType$2;
18903
18903
  }
@@ -19461,6 +19461,10 @@ interface UpdateExtendedFieldsResponse$3 {
19461
19461
  /** Updated DraftOrder */
19462
19462
  draftOrder?: DraftOrder;
19463
19463
  }
19464
+ interface SetTaxExemptionRequest {
19465
+ }
19466
+ interface SetTaxExemptionResponse {
19467
+ }
19464
19468
  interface DomainEvent$a extends DomainEventBodyOneOf$a {
19465
19469
  createdEvent?: EntityCreatedEvent$a;
19466
19470
  updatedEvent?: EntityUpdatedEvent$a;
@@ -19485,7 +19489,7 @@ interface DomainEvent$a extends DomainEventBodyOneOf$a {
19485
19489
  /** ID of the entity associated with the event. */
19486
19490
  entityId?: string;
19487
19491
  /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
19488
- eventTime?: Date;
19492
+ eventTime?: Date | null;
19489
19493
  /**
19490
19494
  * Whether the event was triggered as a result of a privacy regulation application
19491
19495
  * (for example, GDPR).
@@ -19514,7 +19518,7 @@ interface EntityCreatedEvent$a {
19514
19518
  entity?: string;
19515
19519
  }
19516
19520
  interface RestoreInfo$a {
19517
- deletedDate?: Date;
19521
+ deletedDate?: Date | null;
19518
19522
  }
19519
19523
  interface EntityUpdatedEvent$a {
19520
19524
  /**
@@ -20614,6 +20618,8 @@ type context$d_SetRecipientInfoResponseNonNullableFields = SetRecipientInfoRespo
20614
20618
  type context$d_SetShippingInfoRequest = SetShippingInfoRequest;
20615
20619
  type context$d_SetShippingInfoResponse = SetShippingInfoResponse;
20616
20620
  type context$d_SetShippingInfoResponseNonNullableFields = SetShippingInfoResponseNonNullableFields;
20621
+ type context$d_SetTaxExemptionRequest = SetTaxExemptionRequest;
20622
+ type context$d_SetTaxExemptionResponse = SetTaxExemptionResponse;
20617
20623
  type context$d_ShippingChangedDetails = ShippingChangedDetails;
20618
20624
  type context$d_ShippingDetails = ShippingDetails;
20619
20625
  type context$d_ShippingDetailsChangeTypeOneOf = ShippingDetailsChangeTypeOneOf;
@@ -20652,7 +20658,7 @@ declare const context$d_setRecipientInfo: typeof setRecipientInfo;
20652
20658
  declare const context$d_setShippingInfo: typeof setShippingInfo;
20653
20659
  declare const context$d_updateLineItems: typeof updateLineItems;
20654
20660
  declare namespace context$d {
20655
- export { type ActionEvent$a as ActionEvent, type Activity$2 as Activity, type ActivityContentOneOf$1 as ActivityContentOneOf, ActivityType$2 as ActivityType, type context$d_AddLineItemsToDraftOrderOptions as AddLineItemsToDraftOrderOptions, type context$d_AddLineItemsToDraftOrderRequest as AddLineItemsToDraftOrderRequest, type context$d_AddLineItemsToDraftOrderResponse as AddLineItemsToDraftOrderResponse, type context$d_AddLineItemsToDraftOrderResponseNonNullableFields as AddLineItemsToDraftOrderResponseNonNullableFields, type AdditionalFee$2 as AdditionalFee, type context$d_AdditionalFeeDetails as AdditionalFeeDetails, type context$d_AdditionalFeeOption as AdditionalFeeOption, type Address$6 as Address, type AddressLocation$5 as AddressLocation, type AddressWithContact$1 as AddressWithContact, type ApplicationError$6 as ApplicationError, type AppliedDiscount$2 as AppliedDiscount, type AppliedDiscountDiscountSourceOneOf$2 as AppliedDiscountDiscountSourceOneOf, context$d_AppliedDiscountDiscountType as AppliedDiscountDiscountType, AttributionSource$1 as AttributionSource, type AuthorizedPaymentCaptured$1 as AuthorizedPaymentCaptured, type AuthorizedPaymentCreated$1 as AuthorizedPaymentCreated, type AuthorizedPaymentVoided$1 as AuthorizedPaymentVoided, type Balance$1 as Balance, type BalanceSummary$1 as BalanceSummary, type context$d_BillingChangedDetails as BillingChangedDetails, type context$d_BillingDetails as BillingDetails, type context$d_BillingDetailsChangeTypeOneOf as BillingDetailsChangeTypeOneOf, type context$d_BuyerChangedDetails as BuyerChangedDetails, type BuyerDetails$1 as BuyerDetails, type context$d_BuyerDetailsChangeTypeOneOf as BuyerDetailsChangeTypeOneOf, type BuyerInfo$3 as BuyerInfo, type BuyerInfoIdOneOf$1 as BuyerInfoIdOneOf, type context$d_CalculatedDraftOrder as CalculatedDraftOrder, type CalculationErrors$1 as CalculationErrors, type CalculationErrorsShippingCalculationErrorOneOf$1 as CalculationErrorsShippingCalculationErrorOneOf, type CarrierError$2 as CarrierError, type CarrierErrors$1 as CarrierErrors, type CatalogReference$3 as CatalogReference, type context$d_CatalogReferenceLineItem as CatalogReferenceLineItem, type ChannelInfo$2 as ChannelInfo, ChannelType$2 as ChannelType, type Color$1 as Color, type context$d_CommitDraftOrderOptions as CommitDraftOrderOptions, type context$d_CommitDraftOrderRequest as CommitDraftOrderRequest, type context$d_CommitDraftOrderResponse as CommitDraftOrderResponse, type context$d_CommitDraftOrderResponseNonNullableFields as CommitDraftOrderResponseNonNullableFields, type Coupon$2 as Coupon, type context$d_CreateCustomAdditionalFeesOptions as CreateCustomAdditionalFeesOptions, type context$d_CreateCustomAdditionalFeesRequest as CreateCustomAdditionalFeesRequest, type context$d_CreateCustomAdditionalFeesResponse as CreateCustomAdditionalFeesResponse, type context$d_CreateCustomAdditionalFeesResponseNonNullableFields as CreateCustomAdditionalFeesResponseNonNullableFields, type context$d_CreateCustomDiscountsOptions as CreateCustomDiscountsOptions, type context$d_CreateCustomDiscountsRequest as CreateCustomDiscountsRequest, type context$d_CreateCustomDiscountsResponse as CreateCustomDiscountsResponse, type context$d_CreateCustomDiscountsResponseNonNullableFields as CreateCustomDiscountsResponseNonNullableFields, type context$d_CreateDraftOrderRequest as CreateDraftOrderRequest, type context$d_CreateDraftOrderResponse as CreateDraftOrderResponse, type context$d_CreateDraftOrderResponseNonNullableFields as CreateDraftOrderResponseNonNullableFields, type context$d_CreateEmptyDraftOrderRequest as CreateEmptyDraftOrderRequest, type context$d_CreateEmptyDraftOrderResponse as CreateEmptyDraftOrderResponse, type context$d_CreateEmptyDraftOrderResponseNonNullableFields as CreateEmptyDraftOrderResponseNonNullableFields, type context$d_CreateOrderFromDraftRequest as CreateOrderFromDraftRequest, type context$d_CreateOrderFromDraftResponse as CreateOrderFromDraftResponse, type context$d_CreateOrderFromDraftResponseNonNullableFields as CreateOrderFromDraftResponseNonNullableFields, type CreatedBy$1 as CreatedBy, type CreatedByStringOneOf$1 as CreatedByStringOneOf, type CreditCardDetails$1 as CreditCardDetails, type CursorPaging$6 as CursorPaging, type CursorPagingMetadata$6 as CursorPagingMetadata, type CursorQuery$4 as CursorQuery, type CursorQueryPagingMethodOneOf$4 as CursorQueryPagingMethodOneOf, type Cursors$6 as Cursors, type CustomActivity$1 as CustomActivity, type CustomField$2 as CustomField, type context$d_CustomLineItem as CustomLineItem, type context$d_DeleteCustomAdditionalFeesRequest as DeleteCustomAdditionalFeesRequest, type context$d_DeleteCustomAdditionalFeesResponse as DeleteCustomAdditionalFeesResponse, type context$d_DeleteCustomAdditionalFeesResponseNonNullableFields as DeleteCustomAdditionalFeesResponseNonNullableFields, type context$d_DeleteCustomDiscountsRequest as DeleteCustomDiscountsRequest, type context$d_DeleteCustomDiscountsResponse as DeleteCustomDiscountsResponse, type context$d_DeleteCustomDiscountsResponseNonNullableFields as DeleteCustomDiscountsResponseNonNullableFields, type context$d_DeleteDraftOrderRequest as DeleteDraftOrderRequest, type context$d_DeleteDraftOrderResponse as DeleteDraftOrderResponse, type DeliveryLogistics$3 as DeliveryLogistics, type DeliveryTimeSlot$3 as DeliveryTimeSlot, type DescriptionLine$1 as DescriptionLine, type DescriptionLineDescriptionLineValueOneOf$1 as DescriptionLineDescriptionLineValueOneOf, type DescriptionLineName$1 as DescriptionLineName, DescriptionLineType$1 as DescriptionLineType, type DescriptionLineValueOneOf$1 as DescriptionLineValueOneOf, type Details$2 as Details, type DetailsKindOneOf$2 as DetailsKindOneOf, type DigitalFile$2 as DigitalFile, type context$d_DiscountDetails as DiscountDetails, type context$d_DiscountOption as DiscountOption, type context$d_DiscountOptionDiscountAmountOneOf as DiscountOptionDiscountAmountOneOf, DiscountReason$1 as DiscountReason, type DiscountRule$2 as DiscountRule, type DiscountRuleName$2 as DiscountRuleName, DiscountType$2 as DiscountType, type DomainEvent$a as DomainEvent, type DomainEventBodyOneOf$a as DomainEventBodyOneOf, type context$d_DraftOrder as DraftOrder, type DraftOrderChangesApplied$1 as DraftOrderChangesApplied, type DraftOrderCommitSettings$1 as DraftOrderCommitSettings, type context$d_DraftOrdersQueryBuilder as DraftOrdersQueryBuilder, type context$d_DraftOrdersQueryResult as DraftOrdersQueryResult, context$d_EditingStatus as EditingStatus, type EntityCreatedEvent$a as EntityCreatedEvent, type EntityDeletedEvent$a as EntityDeletedEvent, type EntityUpdatedEvent$a as EntityUpdatedEvent, type ExtendedFields$4 as ExtendedFields, type FieldViolation$2 as FieldViolation, context$d_FileType as FileType, FulfillmentStatus$3 as FulfillmentStatus, type FulfillmentStatusesAggregate$1 as FulfillmentStatusesAggregate, type FullAddressContactDetails$2 as FullAddressContactDetails, type context$d_GetDraftEditabilityStatusRequest as GetDraftEditabilityStatusRequest, type context$d_GetDraftEditabilityStatusResponse as GetDraftEditabilityStatusResponse, type context$d_GetDraftOrderRequest as GetDraftOrderRequest, type context$d_GetDraftOrderResponse as GetDraftOrderResponse, type context$d_GetDraftOrderResponseNonNullableFields as GetDraftOrderResponseNonNullableFields, type context$d_GetOrderDraftabilityStatusRequest as GetOrderDraftabilityStatusRequest, type context$d_GetOrderDraftabilityStatusResponse as GetOrderDraftabilityStatusResponse, type context$d_GetOrderDraftabilityStatusResponseNonNullableFields as GetOrderDraftabilityStatusResponseNonNullableFields, type context$d_IdAndApplied as IdAndApplied, type IdentificationData$9 as IdentificationData, type IdentificationDataIdOneOf$9 as IdentificationDataIdOneOf, type context$d_InventoryUpdate as InventoryUpdate, type ItemChangedDetails$1 as ItemChangedDetails, type context$d_ItemDetails as ItemDetails, type context$d_ItemDetailsChangeTypeOneOf as ItemDetailsChangeTypeOneOf, type ItemTaxFullDetails$2 as ItemTaxFullDetails, type ItemType$2 as ItemType, ItemTypeItemType$2 as ItemTypeItemType, type ItemTypeItemTypeDataOneOf$2 as ItemTypeItemTypeDataOneOf, JurisdictionType$2 as JurisdictionType, type LineItemAmount$1 as LineItemAmount, type context$d_LineItemChangeDetails as LineItemChangeDetails, type LineItemChanges$1 as LineItemChanges, type LineItemDiscount$2 as LineItemDiscount, type LineItemExchangeData$1 as LineItemExchangeData, type LineItemPriceChange$1 as LineItemPriceChange, type LineItemQuantityChange$1 as LineItemQuantityChange, LineItemQuantityChangeType$1 as LineItemQuantityChangeType, type LineItemTaxBreakdown$1 as LineItemTaxBreakdown, type LineItemTaxInfo$1 as LineItemTaxInfo, type LocationAndQuantity$1 as LocationAndQuantity, type ManagedAdditionalFee$1 as ManagedAdditionalFee, type ManagedDiscount$1 as ManagedDiscount, type ManagedLineItem$1 as ManagedLineItem, type MerchantComment$1 as MerchantComment, type MerchantDiscount$2 as MerchantDiscount, type MerchantDiscountMerchantDiscountReasonOneOf$1 as MerchantDiscountMerchantDiscountReasonOneOf, type MessageEnvelope$9 as MessageEnvelope, type NewExchangeOrderCreated$1 as NewExchangeOrderCreated, context$d_NonDraftableReason as NonDraftableReason, type Order$2 as Order, type OrderChange$1 as OrderChange, type OrderChangeValueOneOf$1 as OrderChangeValueOneOf, type OrderCreateNotifications$1 as OrderCreateNotifications, type context$d_OrderCreateSettings as OrderCreateSettings, type OrderCreatedFromExchange$1 as OrderCreatedFromExchange, type OrderLineItem$1 as OrderLineItem, type OrderRefunded$2 as OrderRefunded, OrderStatus$1 as OrderStatus, type OrderTaxBreakdown$1 as OrderTaxBreakdown, type OrderTaxInfo$1 as OrderTaxInfo, type PaymentCanceled$1 as PaymentCanceled, type PaymentCanceledPaymentDetailsOneOf$1 as PaymentCanceledPaymentDetailsOneOf, type PaymentDeclined$1 as PaymentDeclined, type PaymentDeclinedPaymentDetailsOneOf$1 as PaymentDeclinedPaymentDetailsOneOf, PaymentOptionType$2 as PaymentOptionType, type PaymentPending$1 as PaymentPending, type PaymentPendingPaymentDetailsOneOf$1 as PaymentPendingPaymentDetailsOneOf, type PaymentRefundFailed$1 as PaymentRefundFailed, type PaymentRefunded$1 as PaymentRefunded, PaymentStatus$2 as PaymentStatus, type PhysicalProperties$3 as PhysicalProperties, type PickupAddress$2 as PickupAddress, type PickupDetails$4 as PickupDetails, context$d_PickupDetailsPickupMethod as PickupDetailsPickupMethod, PickupMethod$3 as PickupMethod, type PlainTextValue$1 as PlainTextValue, type Price$3 as Price, type PriceDescription$1 as PriceDescription, type PriceSummary$2 as PriceSummary, type ProductName$1 as ProductName, type context$d_QueryDraftOrdersRequest as QueryDraftOrdersRequest, type context$d_QueryDraftOrdersResponse as QueryDraftOrdersResponse, type context$d_QueryDraftOrdersResponseNonNullableFields as QueryDraftOrdersResponseNonNullableFields, type context$d_RecipientInfoChangedDetails as RecipientInfoChangedDetails, type context$d_RecipientInfoDetails as RecipientInfoDetails, type context$d_RecipientInfoDetailsChangeTypeOneOf as RecipientInfoDetailsChangeTypeOneOf, type RefundInitiated$1 as RefundInitiated, type RefundedAsStoreCredit$1 as RefundedAsStoreCredit, type RefundedPayment$1 as RefundedPayment, type RefundedPaymentKindOneOf$1 as RefundedPaymentKindOneOf, type RegularPayment$1 as RegularPayment, type RegularPaymentPaymentMethodDetailsOneOf$1 as RegularPaymentPaymentMethodDetailsOneOf, type RegularPaymentRefund$1 as RegularPaymentRefund, type RestoreInfo$a as RestoreInfo, RuleType$2 as RuleType, type SavedPaymentMethod$1 as SavedPaymentMethod, type context$d_SecuredMedia as SecuredMedia, type context$d_SetAdditionalFeesRequest as SetAdditionalFeesRequest, type context$d_SetAdditionalFeesResponse as SetAdditionalFeesResponse, type context$d_SetAdditionalFeesResponseNonNullableFields as SetAdditionalFeesResponseNonNullableFields, type context$d_SetBillingInfoRequest as SetBillingInfoRequest, type context$d_SetBillingInfoResponse as SetBillingInfoResponse, type context$d_SetBillingInfoResponseNonNullableFields as SetBillingInfoResponseNonNullableFields, type context$d_SetBuyerInfoRequest as SetBuyerInfoRequest, type context$d_SetBuyerInfoResponse as SetBuyerInfoResponse, type context$d_SetBuyerInfoResponseNonNullableFields as SetBuyerInfoResponseNonNullableFields, type context$d_SetDiscountsRequest as SetDiscountsRequest, type context$d_SetDiscountsResponse as SetDiscountsResponse, type context$d_SetDiscountsResponseNonNullableFields as SetDiscountsResponseNonNullableFields, type context$d_SetRecipientInfoRequest as SetRecipientInfoRequest, type context$d_SetRecipientInfoResponse as SetRecipientInfoResponse, type context$d_SetRecipientInfoResponseNonNullableFields as SetRecipientInfoResponseNonNullableFields, type context$d_SetShippingInfoRequest as SetShippingInfoRequest, type context$d_SetShippingInfoResponse as SetShippingInfoResponse, type context$d_SetShippingInfoResponseNonNullableFields as SetShippingInfoResponseNonNullableFields, type context$d_ShippingChangedDetails as ShippingChangedDetails, type context$d_ShippingDetails as ShippingDetails, type context$d_ShippingDetailsChangeTypeOneOf as ShippingDetailsChangeTypeOneOf, type ShippingInformation$2 as ShippingInformation, type ShippingInformationChange$1 as ShippingInformationChange, type ShippingOption$2 as ShippingOption, type ShippingPrice$2 as ShippingPrice, type ShippingRegion$2 as ShippingRegion, SortOrder$6 as SortOrder, type Sorting$6 as Sorting, SourceType$1 as SourceType, type StreetAddress$5 as StreetAddress, SubscriptionFrequency$3 as SubscriptionFrequency, type SubscriptionInfo$2 as SubscriptionInfo, type SubscriptionSettings$3 as SubscriptionSettings, type SystemError$2 as SystemError, type TagList$1 as TagList, type Tags$1 as Tags, type TaxDetails$1 as TaxDetails, type TaxSummary$2 as TaxSummary, type TaxableAddress$2 as TaxableAddress, type TaxableAddressTaxableAddressDataOneOf$2 as TaxableAddressTaxableAddressDataOneOf, TaxableAddressType$2 as TaxableAddressType, type TotalPriceChange$1 as TotalPriceChange, type TranslatedValue$1 as TranslatedValue, type UpdateExtendedFieldsRequest$3 as UpdateExtendedFieldsRequest, type UpdateExtendedFieldsResponse$3 as UpdateExtendedFieldsResponse, type context$d_UpdateLineItemsOptions as UpdateLineItemsOptions, type context$d_UpdateLineItemsRequest as UpdateLineItemsRequest, type context$d_UpdateLineItemsResponse as UpdateLineItemsResponse, type context$d_UpdateLineItemsResponseNonNullableFields as UpdateLineItemsResponseNonNullableFields, type context$d_UpdateShippingInfoRequest as UpdateShippingInfoRequest, type context$d_UpdateShippingInfoResponse as UpdateShippingInfoResponse, type context$d_V1BalanceSummary as V1BalanceSummary, type context$d_V1CreatedBy as V1CreatedBy, type context$d_V1CreatedByStringOneOf as V1CreatedByStringOneOf, type context$d_V1DeliveryLogistics as V1DeliveryLogistics, type context$d_V1DeliveryLogisticsAddressOneOf as V1DeliveryLogisticsAddressOneOf, type context$d_V1DeliveryTimeSlot as V1DeliveryTimeSlot, type context$d_V1PickupDetails as V1PickupDetails, type V1ShippingInformation$1 as V1ShippingInformation, type context$d_V1ShippingPrice as V1ShippingPrice, type ValidationError$2 as ValidationError, type VatId$3 as VatId, VatType$3 as VatType, WebhookIdentityType$9 as WebhookIdentityType, WeightUnit$4 as WeightUnit, context$d_addLineItemsToDraftOrder as addLineItemsToDraftOrder, context$d_commitDraftOrder as commitDraftOrder, context$d_createCustomAdditionalFees as createCustomAdditionalFees, context$d_createCustomDiscounts as createCustomDiscounts, context$d_createDraftOrder as createDraftOrder, context$d_createEmptyDraftOrder as createEmptyDraftOrder, context$d_createOrderFromDraft as createOrderFromDraft, context$d_deleteCustomAdditionalFees as deleteCustomAdditionalFees, context$d_deleteCustomDiscounts as deleteCustomDiscounts, context$d_deleteDraftOrder as deleteDraftOrder, context$d_getDraftOrder as getDraftOrder, context$d_getOrderDraftabilityStatus as getOrderDraftabilityStatus, context$d_queryDraftOrders as queryDraftOrders, context$d_setAdditionalFees as setAdditionalFees, context$d_setBillingInfo as setBillingInfo, context$d_setBuyerInfo as setBuyerInfo, context$d_setDiscounts as setDiscounts, context$d_setRecipientInfo as setRecipientInfo, context$d_setShippingInfo as setShippingInfo, context$d_updateLineItems as updateLineItems };
20661
+ export { type ActionEvent$a as ActionEvent, type Activity$2 as Activity, type ActivityContentOneOf$1 as ActivityContentOneOf, ActivityType$2 as ActivityType, type context$d_AddLineItemsToDraftOrderOptions as AddLineItemsToDraftOrderOptions, type context$d_AddLineItemsToDraftOrderRequest as AddLineItemsToDraftOrderRequest, type context$d_AddLineItemsToDraftOrderResponse as AddLineItemsToDraftOrderResponse, type context$d_AddLineItemsToDraftOrderResponseNonNullableFields as AddLineItemsToDraftOrderResponseNonNullableFields, type AdditionalFee$2 as AdditionalFee, type context$d_AdditionalFeeDetails as AdditionalFeeDetails, type context$d_AdditionalFeeOption as AdditionalFeeOption, type Address$6 as Address, type AddressLocation$5 as AddressLocation, type AddressWithContact$1 as AddressWithContact, type ApplicationError$6 as ApplicationError, type AppliedDiscount$2 as AppliedDiscount, type AppliedDiscountDiscountSourceOneOf$2 as AppliedDiscountDiscountSourceOneOf, context$d_AppliedDiscountDiscountType as AppliedDiscountDiscountType, AttributionSource$1 as AttributionSource, type AuthorizedPaymentCaptured$1 as AuthorizedPaymentCaptured, type AuthorizedPaymentCreated$1 as AuthorizedPaymentCreated, type AuthorizedPaymentVoided$1 as AuthorizedPaymentVoided, type Balance$1 as Balance, type BalanceSummary$1 as BalanceSummary, type context$d_BillingChangedDetails as BillingChangedDetails, type context$d_BillingDetails as BillingDetails, type context$d_BillingDetailsChangeTypeOneOf as BillingDetailsChangeTypeOneOf, type context$d_BuyerChangedDetails as BuyerChangedDetails, type BuyerDetails$1 as BuyerDetails, type context$d_BuyerDetailsChangeTypeOneOf as BuyerDetailsChangeTypeOneOf, type BuyerInfo$3 as BuyerInfo, type BuyerInfoIdOneOf$1 as BuyerInfoIdOneOf, type context$d_CalculatedDraftOrder as CalculatedDraftOrder, type CalculationErrors$1 as CalculationErrors, type CalculationErrorsShippingCalculationErrorOneOf$1 as CalculationErrorsShippingCalculationErrorOneOf, type CarrierError$2 as CarrierError, type CarrierErrors$1 as CarrierErrors, type CatalogReference$3 as CatalogReference, type context$d_CatalogReferenceLineItem as CatalogReferenceLineItem, type ChannelInfo$2 as ChannelInfo, ChannelType$2 as ChannelType, type Color$1 as Color, type context$d_CommitDraftOrderOptions as CommitDraftOrderOptions, type context$d_CommitDraftOrderRequest as CommitDraftOrderRequest, type context$d_CommitDraftOrderResponse as CommitDraftOrderResponse, type context$d_CommitDraftOrderResponseNonNullableFields as CommitDraftOrderResponseNonNullableFields, type Coupon$2 as Coupon, type context$d_CreateCustomAdditionalFeesOptions as CreateCustomAdditionalFeesOptions, type context$d_CreateCustomAdditionalFeesRequest as CreateCustomAdditionalFeesRequest, type context$d_CreateCustomAdditionalFeesResponse as CreateCustomAdditionalFeesResponse, type context$d_CreateCustomAdditionalFeesResponseNonNullableFields as CreateCustomAdditionalFeesResponseNonNullableFields, type context$d_CreateCustomDiscountsOptions as CreateCustomDiscountsOptions, type context$d_CreateCustomDiscountsRequest as CreateCustomDiscountsRequest, type context$d_CreateCustomDiscountsResponse as CreateCustomDiscountsResponse, type context$d_CreateCustomDiscountsResponseNonNullableFields as CreateCustomDiscountsResponseNonNullableFields, type context$d_CreateDraftOrderRequest as CreateDraftOrderRequest, type context$d_CreateDraftOrderResponse as CreateDraftOrderResponse, type context$d_CreateDraftOrderResponseNonNullableFields as CreateDraftOrderResponseNonNullableFields, type context$d_CreateEmptyDraftOrderRequest as CreateEmptyDraftOrderRequest, type context$d_CreateEmptyDraftOrderResponse as CreateEmptyDraftOrderResponse, type context$d_CreateEmptyDraftOrderResponseNonNullableFields as CreateEmptyDraftOrderResponseNonNullableFields, type context$d_CreateOrderFromDraftRequest as CreateOrderFromDraftRequest, type context$d_CreateOrderFromDraftResponse as CreateOrderFromDraftResponse, type context$d_CreateOrderFromDraftResponseNonNullableFields as CreateOrderFromDraftResponseNonNullableFields, type CreatedBy$1 as CreatedBy, type CreatedByStringOneOf$1 as CreatedByStringOneOf, type CreditCardDetails$1 as CreditCardDetails, type CursorPaging$6 as CursorPaging, type CursorPagingMetadata$6 as CursorPagingMetadata, type CursorQuery$4 as CursorQuery, type CursorQueryPagingMethodOneOf$4 as CursorQueryPagingMethodOneOf, type Cursors$6 as Cursors, type CustomActivity$1 as CustomActivity, type CustomField$2 as CustomField, type context$d_CustomLineItem as CustomLineItem, type context$d_DeleteCustomAdditionalFeesRequest as DeleteCustomAdditionalFeesRequest, type context$d_DeleteCustomAdditionalFeesResponse as DeleteCustomAdditionalFeesResponse, type context$d_DeleteCustomAdditionalFeesResponseNonNullableFields as DeleteCustomAdditionalFeesResponseNonNullableFields, type context$d_DeleteCustomDiscountsRequest as DeleteCustomDiscountsRequest, type context$d_DeleteCustomDiscountsResponse as DeleteCustomDiscountsResponse, type context$d_DeleteCustomDiscountsResponseNonNullableFields as DeleteCustomDiscountsResponseNonNullableFields, type context$d_DeleteDraftOrderRequest as DeleteDraftOrderRequest, type context$d_DeleteDraftOrderResponse as DeleteDraftOrderResponse, type DeliveryLogistics$3 as DeliveryLogistics, type DeliveryTimeSlot$3 as DeliveryTimeSlot, type DescriptionLine$1 as DescriptionLine, type DescriptionLineDescriptionLineValueOneOf$1 as DescriptionLineDescriptionLineValueOneOf, type DescriptionLineName$1 as DescriptionLineName, DescriptionLineType$1 as DescriptionLineType, type DescriptionLineValueOneOf$1 as DescriptionLineValueOneOf, type Details$2 as Details, type DetailsKindOneOf$2 as DetailsKindOneOf, type DigitalFile$2 as DigitalFile, type context$d_DiscountDetails as DiscountDetails, type context$d_DiscountOption as DiscountOption, type context$d_DiscountOptionDiscountAmountOneOf as DiscountOptionDiscountAmountOneOf, DiscountReason$1 as DiscountReason, type DiscountRule$2 as DiscountRule, type DiscountRuleName$2 as DiscountRuleName, DiscountType$2 as DiscountType, type DomainEvent$a as DomainEvent, type DomainEventBodyOneOf$a as DomainEventBodyOneOf, type context$d_DraftOrder as DraftOrder, type DraftOrderChangesApplied$1 as DraftOrderChangesApplied, type DraftOrderCommitSettings$1 as DraftOrderCommitSettings, type context$d_DraftOrdersQueryBuilder as DraftOrdersQueryBuilder, type context$d_DraftOrdersQueryResult as DraftOrdersQueryResult, context$d_EditingStatus as EditingStatus, type EntityCreatedEvent$a as EntityCreatedEvent, type EntityDeletedEvent$a as EntityDeletedEvent, type EntityUpdatedEvent$a as EntityUpdatedEvent, type ExtendedFields$4 as ExtendedFields, type FieldViolation$2 as FieldViolation, context$d_FileType as FileType, FulfillmentStatus$3 as FulfillmentStatus, type FulfillmentStatusesAggregate$1 as FulfillmentStatusesAggregate, type FullAddressContactDetails$2 as FullAddressContactDetails, type context$d_GetDraftEditabilityStatusRequest as GetDraftEditabilityStatusRequest, type context$d_GetDraftEditabilityStatusResponse as GetDraftEditabilityStatusResponse, type context$d_GetDraftOrderRequest as GetDraftOrderRequest, type context$d_GetDraftOrderResponse as GetDraftOrderResponse, type context$d_GetDraftOrderResponseNonNullableFields as GetDraftOrderResponseNonNullableFields, type context$d_GetOrderDraftabilityStatusRequest as GetOrderDraftabilityStatusRequest, type context$d_GetOrderDraftabilityStatusResponse as GetOrderDraftabilityStatusResponse, type context$d_GetOrderDraftabilityStatusResponseNonNullableFields as GetOrderDraftabilityStatusResponseNonNullableFields, type context$d_IdAndApplied as IdAndApplied, type IdentificationData$9 as IdentificationData, type IdentificationDataIdOneOf$9 as IdentificationDataIdOneOf, type context$d_InventoryUpdate as InventoryUpdate, type ItemChangedDetails$1 as ItemChangedDetails, type context$d_ItemDetails as ItemDetails, type context$d_ItemDetailsChangeTypeOneOf as ItemDetailsChangeTypeOneOf, type ItemTaxFullDetails$2 as ItemTaxFullDetails, type ItemType$2 as ItemType, ItemTypeItemType$2 as ItemTypeItemType, type ItemTypeItemTypeDataOneOf$2 as ItemTypeItemTypeDataOneOf, JurisdictionType$2 as JurisdictionType, type LineItemAmount$1 as LineItemAmount, type context$d_LineItemChangeDetails as LineItemChangeDetails, type LineItemChanges$1 as LineItemChanges, type LineItemDiscount$2 as LineItemDiscount, type LineItemExchangeData$1 as LineItemExchangeData, type LineItemPriceChange$1 as LineItemPriceChange, type LineItemQuantityChange$1 as LineItemQuantityChange, LineItemQuantityChangeType$1 as LineItemQuantityChangeType, type LineItemTaxBreakdown$1 as LineItemTaxBreakdown, type LineItemTaxInfo$1 as LineItemTaxInfo, type LocationAndQuantity$1 as LocationAndQuantity, type ManagedAdditionalFee$1 as ManagedAdditionalFee, type ManagedDiscount$1 as ManagedDiscount, type ManagedLineItem$1 as ManagedLineItem, type MerchantComment$1 as MerchantComment, type MerchantDiscount$2 as MerchantDiscount, type MerchantDiscountMerchantDiscountReasonOneOf$1 as MerchantDiscountMerchantDiscountReasonOneOf, type MessageEnvelope$9 as MessageEnvelope, type NewExchangeOrderCreated$1 as NewExchangeOrderCreated, context$d_NonDraftableReason as NonDraftableReason, type Order$2 as Order, type OrderChange$1 as OrderChange, type OrderChangeValueOneOf$1 as OrderChangeValueOneOf, type OrderCreateNotifications$1 as OrderCreateNotifications, type context$d_OrderCreateSettings as OrderCreateSettings, type OrderCreatedFromExchange$1 as OrderCreatedFromExchange, type OrderLineItem$1 as OrderLineItem, type OrderRefunded$2 as OrderRefunded, OrderStatus$1 as OrderStatus, type OrderTaxBreakdown$1 as OrderTaxBreakdown, type OrderTaxInfo$1 as OrderTaxInfo, type PaymentCanceled$1 as PaymentCanceled, type PaymentCanceledPaymentDetailsOneOf$1 as PaymentCanceledPaymentDetailsOneOf, type PaymentDeclined$1 as PaymentDeclined, type PaymentDeclinedPaymentDetailsOneOf$1 as PaymentDeclinedPaymentDetailsOneOf, PaymentOptionType$2 as PaymentOptionType, type PaymentPending$1 as PaymentPending, type PaymentPendingPaymentDetailsOneOf$1 as PaymentPendingPaymentDetailsOneOf, type PaymentRefundFailed$1 as PaymentRefundFailed, type PaymentRefunded$1 as PaymentRefunded, PaymentStatus$2 as PaymentStatus, type PhysicalProperties$3 as PhysicalProperties, type PickupAddress$2 as PickupAddress, type PickupDetails$4 as PickupDetails, context$d_PickupDetailsPickupMethod as PickupDetailsPickupMethod, PickupMethod$3 as PickupMethod, type PlainTextValue$1 as PlainTextValue, type Price$3 as Price, type PriceDescription$1 as PriceDescription, type PriceSummary$2 as PriceSummary, type ProductName$1 as ProductName, type context$d_QueryDraftOrdersRequest as QueryDraftOrdersRequest, type context$d_QueryDraftOrdersResponse as QueryDraftOrdersResponse, type context$d_QueryDraftOrdersResponseNonNullableFields as QueryDraftOrdersResponseNonNullableFields, type context$d_RecipientInfoChangedDetails as RecipientInfoChangedDetails, type context$d_RecipientInfoDetails as RecipientInfoDetails, type context$d_RecipientInfoDetailsChangeTypeOneOf as RecipientInfoDetailsChangeTypeOneOf, type RefundInitiated$1 as RefundInitiated, type RefundedAsStoreCredit$1 as RefundedAsStoreCredit, type RefundedPayment$1 as RefundedPayment, type RefundedPaymentKindOneOf$1 as RefundedPaymentKindOneOf, type RegularPayment$1 as RegularPayment, type RegularPaymentPaymentMethodDetailsOneOf$1 as RegularPaymentPaymentMethodDetailsOneOf, type RegularPaymentRefund$1 as RegularPaymentRefund, type RestoreInfo$a as RestoreInfo, RuleType$2 as RuleType, type SavedPaymentMethod$1 as SavedPaymentMethod, type context$d_SecuredMedia as SecuredMedia, type context$d_SetAdditionalFeesRequest as SetAdditionalFeesRequest, type context$d_SetAdditionalFeesResponse as SetAdditionalFeesResponse, type context$d_SetAdditionalFeesResponseNonNullableFields as SetAdditionalFeesResponseNonNullableFields, type context$d_SetBillingInfoRequest as SetBillingInfoRequest, type context$d_SetBillingInfoResponse as SetBillingInfoResponse, type context$d_SetBillingInfoResponseNonNullableFields as SetBillingInfoResponseNonNullableFields, type context$d_SetBuyerInfoRequest as SetBuyerInfoRequest, type context$d_SetBuyerInfoResponse as SetBuyerInfoResponse, type context$d_SetBuyerInfoResponseNonNullableFields as SetBuyerInfoResponseNonNullableFields, type context$d_SetDiscountsRequest as SetDiscountsRequest, type context$d_SetDiscountsResponse as SetDiscountsResponse, type context$d_SetDiscountsResponseNonNullableFields as SetDiscountsResponseNonNullableFields, type context$d_SetRecipientInfoRequest as SetRecipientInfoRequest, type context$d_SetRecipientInfoResponse as SetRecipientInfoResponse, type context$d_SetRecipientInfoResponseNonNullableFields as SetRecipientInfoResponseNonNullableFields, type context$d_SetShippingInfoRequest as SetShippingInfoRequest, type context$d_SetShippingInfoResponse as SetShippingInfoResponse, type context$d_SetShippingInfoResponseNonNullableFields as SetShippingInfoResponseNonNullableFields, type context$d_SetTaxExemptionRequest as SetTaxExemptionRequest, type context$d_SetTaxExemptionResponse as SetTaxExemptionResponse, type context$d_ShippingChangedDetails as ShippingChangedDetails, type context$d_ShippingDetails as ShippingDetails, type context$d_ShippingDetailsChangeTypeOneOf as ShippingDetailsChangeTypeOneOf, type ShippingInformation$2 as ShippingInformation, type ShippingInformationChange$1 as ShippingInformationChange, type ShippingOption$2 as ShippingOption, type ShippingPrice$2 as ShippingPrice, type ShippingRegion$2 as ShippingRegion, SortOrder$6 as SortOrder, type Sorting$6 as Sorting, SourceType$1 as SourceType, type StreetAddress$5 as StreetAddress, SubscriptionFrequency$3 as SubscriptionFrequency, type SubscriptionInfo$2 as SubscriptionInfo, type SubscriptionSettings$3 as SubscriptionSettings, type SystemError$2 as SystemError, type TagList$1 as TagList, type Tags$1 as Tags, type TaxDetails$1 as TaxDetails, type TaxSummary$2 as TaxSummary, type TaxableAddress$2 as TaxableAddress, type TaxableAddressTaxableAddressDataOneOf$2 as TaxableAddressTaxableAddressDataOneOf, TaxableAddressType$2 as TaxableAddressType, type TotalPriceChange$1 as TotalPriceChange, type TranslatedValue$1 as TranslatedValue, type UpdateExtendedFieldsRequest$3 as UpdateExtendedFieldsRequest, type UpdateExtendedFieldsResponse$3 as UpdateExtendedFieldsResponse, type context$d_UpdateLineItemsOptions as UpdateLineItemsOptions, type context$d_UpdateLineItemsRequest as UpdateLineItemsRequest, type context$d_UpdateLineItemsResponse as UpdateLineItemsResponse, type context$d_UpdateLineItemsResponseNonNullableFields as UpdateLineItemsResponseNonNullableFields, type context$d_UpdateShippingInfoRequest as UpdateShippingInfoRequest, type context$d_UpdateShippingInfoResponse as UpdateShippingInfoResponse, type context$d_V1BalanceSummary as V1BalanceSummary, type context$d_V1CreatedBy as V1CreatedBy, type context$d_V1CreatedByStringOneOf as V1CreatedByStringOneOf, type context$d_V1DeliveryLogistics as V1DeliveryLogistics, type context$d_V1DeliveryLogisticsAddressOneOf as V1DeliveryLogisticsAddressOneOf, type context$d_V1DeliveryTimeSlot as V1DeliveryTimeSlot, type context$d_V1PickupDetails as V1PickupDetails, type V1ShippingInformation$1 as V1ShippingInformation, type context$d_V1ShippingPrice as V1ShippingPrice, type ValidationError$2 as ValidationError, type VatId$3 as VatId, VatType$3 as VatType, WebhookIdentityType$9 as WebhookIdentityType, WeightUnit$4 as WeightUnit, context$d_addLineItemsToDraftOrder as addLineItemsToDraftOrder, context$d_commitDraftOrder as commitDraftOrder, context$d_createCustomAdditionalFees as createCustomAdditionalFees, context$d_createCustomDiscounts as createCustomDiscounts, context$d_createDraftOrder as createDraftOrder, context$d_createEmptyDraftOrder as createEmptyDraftOrder, context$d_createOrderFromDraft as createOrderFromDraft, context$d_deleteCustomAdditionalFees as deleteCustomAdditionalFees, context$d_deleteCustomDiscounts as deleteCustomDiscounts, context$d_deleteDraftOrder as deleteDraftOrder, context$d_getDraftOrder as getDraftOrder, context$d_getOrderDraftabilityStatus as getOrderDraftabilityStatus, context$d_queryDraftOrders as queryDraftOrders, context$d_setAdditionalFees as setAdditionalFees, context$d_setBillingInfo as setBillingInfo, context$d_setBuyerInfo as setBuyerInfo, context$d_setDiscounts as setDiscounts, context$d_setRecipientInfo as setRecipientInfo, context$d_setShippingInfo as setShippingInfo, context$d_updateLineItems as updateLineItems };
20656
20662
  }
20657
20663
 
20658
20664
  interface OrderWithFulfillments {
@@ -20676,7 +20682,7 @@ interface Fulfillment$1 extends FulfillmentFulfillmentInfoOneOf {
20676
20682
  * Fulfillment creation date and time in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#Combined_date_and_time_representations) format.
20677
20683
  * @readonly
20678
20684
  */
20679
- _createdDate?: Date;
20685
+ _createdDate?: Date | null;
20680
20686
  /** Line items being fulfilled. */
20681
20687
  lineItems?: FulfillmentLineItem$1[];
20682
20688
  /**
@@ -20738,7 +20744,7 @@ interface FulfillmentCreated {
20738
20744
  /** ID of the newly created fulfillment. */
20739
20745
  fulfillmentId?: string;
20740
20746
  /** Fulfillment creation date and time. */
20741
- dateCreated?: Date;
20747
+ dateCreated?: Date | null;
20742
20748
  /** Buyer information. */
20743
20749
  buyerInfo?: BuyerInfo$2;
20744
20750
  /** Order fulfillment status. */
@@ -20950,7 +20956,7 @@ interface DomainEvent$9 extends DomainEventBodyOneOf$9 {
20950
20956
  /** ID of the entity associated with the event. */
20951
20957
  entityId?: string;
20952
20958
  /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
20953
- eventTime?: Date;
20959
+ eventTime?: Date | null;
20954
20960
  /**
20955
20961
  * Whether the event was triggered as a result of a privacy regulation application
20956
20962
  * (for example, GDPR).
@@ -20979,7 +20985,7 @@ interface EntityCreatedEvent$9 {
20979
20985
  entity?: string;
20980
20986
  }
20981
20987
  interface RestoreInfo$9 {
20982
- deletedDate?: Date;
20988
+ deletedDate?: Date | null;
20983
20989
  }
20984
20990
  interface EntityUpdatedEvent$9 {
20985
20991
  /**
@@ -21112,7 +21118,7 @@ interface EventMetadata$6 extends BaseEventMetadata$6 {
21112
21118
  /** ID of the entity associated with the event. */
21113
21119
  entityId?: string;
21114
21120
  /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
21115
- eventTime?: Date;
21121
+ eventTime?: Date | null;
21116
21122
  /**
21117
21123
  * Whether the event was triggered as a result of a privacy regulation application
21118
21124
  * (for example, GDPR).
@@ -21150,7 +21156,7 @@ interface UpdateFulfillmentOptions {
21150
21156
  * Fulfillment creation date and time in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#Combined_date_and_time_representations) format.
21151
21157
  * @readonly
21152
21158
  */
21153
- _createdDate?: Date;
21159
+ _createdDate?: Date | null;
21154
21160
  /** Line items being fulfilled. */
21155
21161
  lineItems?: FulfillmentLineItem$1[];
21156
21162
  /**
@@ -21517,7 +21523,7 @@ interface LocalDeliveryOption extends LocalDeliveryOptionConfigOneOf {
21517
21523
  * Date and time the LocalDeliveryOption was created.
21518
21524
  * @readonly
21519
21525
  */
21520
- _createdDate?: Date;
21526
+ _createdDate?: Date | null;
21521
21527
  }
21522
21528
  /** @oneof */
21523
21529
  interface LocalDeliveryOptionConfigOneOf {
@@ -21753,7 +21759,7 @@ interface DomainEvent$8 extends DomainEventBodyOneOf$8 {
21753
21759
  /** ID of the entity associated with the event. */
21754
21760
  entityId?: string;
21755
21761
  /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
21756
- eventTime?: Date;
21762
+ eventTime?: Date | null;
21757
21763
  /**
21758
21764
  * Whether the event was triggered as a result of a privacy regulation application
21759
21765
  * (for example, GDPR).
@@ -21782,7 +21788,7 @@ interface EntityCreatedEvent$8 {
21782
21788
  entity?: string;
21783
21789
  }
21784
21790
  interface RestoreInfo$8 {
21785
- deletedDate?: Date;
21791
+ deletedDate?: Date | null;
21786
21792
  }
21787
21793
  interface EntityUpdatedEvent$8 {
21788
21794
  /**
@@ -21930,7 +21936,7 @@ interface EventMetadata$5 extends BaseEventMetadata$5 {
21930
21936
  /** ID of the entity associated with the event. */
21931
21937
  entityId?: string;
21932
21938
  /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
21933
- eventTime?: Date;
21939
+ eventTime?: Date | null;
21934
21940
  /**
21935
21941
  * Whether the event was triggered as a result of a privacy regulation application
21936
21942
  * (for example, GDPR).
@@ -21990,7 +21996,7 @@ interface UpdateLocalDeliveryOption {
21990
21996
  * Date and time the LocalDeliveryOption was created.
21991
21997
  * @readonly
21992
21998
  */
21993
- _createdDate?: Date;
21999
+ _createdDate?: Date | null;
21994
22000
  }
21995
22001
 
21996
22002
  declare function createLocalDeliveryOption$1(httpClient: HttpClient): CreateLocalDeliveryOptionSignature;
@@ -22139,12 +22145,12 @@ interface Order$1 {
22139
22145
  * Date and time the order was created.
22140
22146
  * @readonly
22141
22147
  */
22142
- _createdDate?: Date;
22148
+ _createdDate?: Date | null;
22143
22149
  /**
22144
22150
  * Date and time the order was last updated in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#Combined_date_and_time_representations) format.
22145
22151
  * @readonly
22146
22152
  */
22147
- _updatedDate?: Date;
22153
+ _updatedDate?: Date | null;
22148
22154
  /**
22149
22155
  * Order line items.
22150
22156
  * @readonly
@@ -22570,7 +22576,7 @@ interface DigitalFile$1 {
22570
22576
  * Link expiration time and date.
22571
22577
  * @readonly
22572
22578
  */
22573
- expirationDate?: Date;
22579
+ expirationDate?: Date | null;
22574
22580
  }
22575
22581
  interface SubscriptionInfo$1 {
22576
22582
  /** Subscription ID. */
@@ -22800,7 +22806,7 @@ interface DeliveryLogistics$2 extends DeliveryLogisticsAddressOneOf {
22800
22806
  * Deprecated - Latest expected delivery date and time in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#Combined_date_and_time_representations) format.
22801
22807
  * @deprecated
22802
22808
  */
22803
- deliverByDate?: Date;
22809
+ deliverByDate?: Date | null;
22804
22810
  /** Expected delivery time. */
22805
22811
  deliveryTimeSlot?: DeliveryTimeSlot$2;
22806
22812
  }
@@ -22841,9 +22847,9 @@ declare enum PickupMethod$2 {
22841
22847
  }
22842
22848
  interface DeliveryTimeSlot$2 {
22843
22849
  /** Delivery slot starting time. */
22844
- from?: Date;
22850
+ from?: Date | null;
22845
22851
  /** Delivery slot ending time. */
22846
- to?: Date;
22852
+ to?: Date | null;
22847
22853
  }
22848
22854
  interface ShippingPrice$1 {
22849
22855
  /** Shipping price for display purposes. */
@@ -23023,7 +23029,7 @@ interface Activity$1 extends ActivityContentOneOf {
23023
23029
  * Activity creation date and time.
23024
23030
  * @readonly
23025
23031
  */
23026
- _createdDate?: Date;
23032
+ _createdDate?: Date | null;
23027
23033
  /** Activity type. */
23028
23034
  type?: ActivityType$1;
23029
23035
  }
@@ -23592,12 +23598,12 @@ interface MetaSite {
23592
23598
  * Date and time when meta site was created.
23593
23599
  * @readonly
23594
23600
  */
23595
- dateCreated?: Date;
23601
+ dateCreated?: Date | null;
23596
23602
  /**
23597
23603
  * Date and time when meta site was updated for the last time.
23598
23604
  * @readonly
23599
23605
  */
23600
- dateUpdated?: Date;
23606
+ dateUpdated?: Date | null;
23601
23607
  /**
23602
23608
  * All "applications" of this meta site.
23603
23609
  *
@@ -23962,12 +23968,12 @@ interface Payment$2 extends PaymentPaymentDetailsOneOf$2 {
23962
23968
  */
23963
23969
  _id?: string | null;
23964
23970
  /** Date and time the payment was created in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#Combined_date_and_time_representations) format. Defaults to current time when not provided. */
23965
- _createdDate?: Date;
23971
+ _createdDate?: Date | null;
23966
23972
  /**
23967
23973
  * Date and time the payment was last updated in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#Combined_date_and_time_representations) format.
23968
23974
  * @readonly
23969
23975
  */
23970
- _updatedDate?: Date;
23976
+ _updatedDate?: Date | null;
23971
23977
  /** Payment amount. */
23972
23978
  amount?: Price$2;
23973
23979
  /**
@@ -24040,7 +24046,7 @@ interface AuthorizationDetails$2 {
24040
24046
  */
24041
24047
  delayedCapture?: boolean;
24042
24048
  /** Date and time the payment was authorized in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#Combined_date_and_time_representations) format. */
24043
- authorizedDate?: Date;
24049
+ authorizedDate?: Date | null;
24044
24050
  /**
24045
24051
  * List of captures associated with payment
24046
24052
  * In case of failed it can be replaced with new one with PENDING or SUCCESS statuses
@@ -24062,7 +24068,7 @@ interface AuthorizationCapture$2 {
24062
24068
  /** Amount of this capture */
24063
24069
  amount?: Price$2;
24064
24070
  /** Date and time the capture was initiated in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#Combined_date_and_time_representations) format. */
24065
- _createdDate?: Date;
24071
+ _createdDate?: Date | null;
24066
24072
  /** In case of status is FAILED may contain failure details */
24067
24073
  failureDetails?: AuthorizationActionFailureDetails$2;
24068
24074
  }
@@ -24082,7 +24088,7 @@ interface AuthorizationVoid$2 {
24082
24088
  /** Status of this void action */
24083
24089
  status?: AuthorizationVoidStatus$2;
24084
24090
  /** Date and time the void was initiated in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#Combined_date_and_time_representations) format. */
24085
- voidedDate?: Date;
24091
+ voidedDate?: Date | null;
24086
24092
  /** In case of status is FAILED may contain failure details */
24087
24093
  failureDetails?: AuthorizationActionFailureDetails$2;
24088
24094
  /** Reason of void action */
@@ -24112,7 +24118,7 @@ interface V1ScheduledAction {
24112
24118
  /** type of the action */
24113
24119
  actionType?: ActionType$2;
24114
24120
  /** the date and time of the action */
24115
- executionDate?: Date;
24121
+ executionDate?: Date | null;
24116
24122
  }
24117
24123
  declare enum ActionType$2 {
24118
24124
  UNKNOWN_ACTION_TYPE = "UNKNOWN_ACTION_TYPE",
@@ -24172,7 +24178,7 @@ interface Refund$2 {
24172
24178
  /** Refund business details. */
24173
24179
  details?: RefundDetails$2;
24174
24180
  /** Date and time the refund was created in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#Combined_date_and_time_representations) format. Defaults to current time when not provided. */
24175
- _createdDate?: Date;
24181
+ _createdDate?: Date | null;
24176
24182
  }
24177
24183
  interface RefundTransaction$2 {
24178
24184
  /** ID of the payment associated with this refund. */
@@ -24313,7 +24319,7 @@ interface UpdateInternalDocumentsEvent extends UpdateInternalDocumentsEventOpera
24313
24319
  /** id to pass to processing notification */
24314
24320
  correlationId?: string | null;
24315
24321
  /** when event was created / issued */
24316
- issuedAt?: Date;
24322
+ issuedAt?: Date | null;
24317
24323
  }
24318
24324
  /** @oneof */
24319
24325
  interface UpdateInternalDocumentsEventOperationOneOf {
@@ -24414,7 +24420,7 @@ interface DomainEvent$7 extends DomainEventBodyOneOf$7 {
24414
24420
  /** ID of the entity associated with the event. */
24415
24421
  entityId?: string;
24416
24422
  /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
24417
- eventTime?: Date;
24423
+ eventTime?: Date | null;
24418
24424
  /**
24419
24425
  * Whether the event was triggered as a result of a privacy regulation application
24420
24426
  * (for example, GDPR).
@@ -24443,7 +24449,7 @@ interface EntityCreatedEvent$7 {
24443
24449
  entity?: string;
24444
24450
  }
24445
24451
  interface RestoreInfo$7 {
24446
- deletedDate?: Date;
24452
+ deletedDate?: Date | null;
24447
24453
  }
24448
24454
  interface EntityUpdatedEvent$7 {
24449
24455
  /**
@@ -24860,7 +24866,7 @@ interface ServiceProperties$1 {
24860
24866
  * Date and time the service is to be provided, in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#Combined_date_and_time_representations) format.
24861
24867
  * For example, the start time of a class.
24862
24868
  */
24863
- scheduledDate?: Date;
24869
+ scheduledDate?: Date | null;
24864
24870
  /** The number of people participating in the service. For example, the number of people attending a class or the number of people per hotel room. */
24865
24871
  numberOfParticipants?: number | null;
24866
24872
  }
@@ -25395,7 +25401,7 @@ interface OrderDeltasCommitted {
25395
25401
  * Date and time when order deltas were committed.
25396
25402
  * @readonly
25397
25403
  */
25398
- commitDate?: Date;
25404
+ commitDate?: Date | null;
25399
25405
  }
25400
25406
  interface CommittedDiffs extends CommittedDiffsShippingUpdateInfoOneOf {
25401
25407
  /** Shipping info and selected shipping option details. */
@@ -25631,7 +25637,7 @@ interface InternalActivity extends InternalActivityContentOneOf {
25631
25637
  * Internal activity creation date and time.
25632
25638
  * @readonly
25633
25639
  */
25634
- _createdDate?: Date;
25640
+ _createdDate?: Date | null;
25635
25641
  }
25636
25642
  /** @oneof */
25637
25643
  interface InternalActivityContentOneOf {
@@ -26032,7 +26038,7 @@ interface OrderApproved {
26032
26038
  }
26033
26039
  interface Task {
26034
26040
  key?: TaskKey;
26035
- executeAt?: Date;
26041
+ executeAt?: Date | null;
26036
26042
  payload?: string | null;
26037
26043
  }
26038
26044
  interface TaskKey {
@@ -26056,7 +26062,7 @@ interface Complete {
26056
26062
  interface Cancel {
26057
26063
  }
26058
26064
  interface Reschedule {
26059
- executeAt?: Date;
26065
+ executeAt?: Date | null;
26060
26066
  payload?: string | null;
26061
26067
  }
26062
26068
  interface InvoiceSentEvent {
@@ -26231,16 +26237,16 @@ interface StandardDetails {
26231
26237
  }
26232
26238
  interface InvoiceDates {
26233
26239
  /** use UTC midnight date to set the issue date according to the site time zone */
26234
- issueDate?: Date;
26240
+ issueDate?: Date | null;
26235
26241
  /** use UTC midnight date to set the due date according to the site time zone */
26236
- dueDate?: Date;
26242
+ dueDate?: Date | null;
26237
26243
  /** <a href="http://joda-time.sourceforge.net/timezones.html">Valid time zones</a> */
26238
26244
  timeZoneCode?: string | null;
26239
26245
  /**
26240
26246
  * ignored in request use in response to get the site time zone
26241
26247
  * @readonly
26242
26248
  */
26243
- lastSeenDate?: Date;
26249
+ lastSeenDate?: Date | null;
26244
26250
  }
26245
26251
  interface LineItems {
26246
26252
  lineItems?: LineItem$2[];
@@ -26338,7 +26344,7 @@ interface InvoicesPayment {
26338
26344
  _id?: string;
26339
26345
  type?: string;
26340
26346
  amount?: BigDecimalWrapper;
26341
- date?: Date;
26347
+ date?: Date | null;
26342
26348
  /**
26343
26349
  * The orderId of the order in cashier associated with the payment.
26344
26350
  * This field is populated for external payments that are charged by invoices via AddPayment endpoint.
@@ -27065,7 +27071,7 @@ interface EventMetadata$4 extends BaseEventMetadata$4 {
27065
27071
  /** ID of the entity associated with the event. */
27066
27072
  entityId?: string;
27067
27073
  /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
27068
- eventTime?: Date;
27074
+ eventTime?: Date | null;
27069
27075
  /**
27070
27076
  * Whether the event was triggered as a result of a privacy regulation application
27071
27077
  * (for example, GDPR).
@@ -27141,12 +27147,12 @@ interface UpdateOrder {
27141
27147
  * Date and time the order was created.
27142
27148
  * @readonly
27143
27149
  */
27144
- _createdDate?: Date;
27150
+ _createdDate?: Date | null;
27145
27151
  /**
27146
27152
  * Date and time the order was last updated in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#Combined_date_and_time_representations) format.
27147
27153
  * @readonly
27148
27154
  */
27149
- _updatedDate?: Date;
27155
+ _updatedDate?: Date | null;
27150
27156
  /**
27151
27157
  * Order line items.
27152
27158
  * @readonly
@@ -27993,19 +27999,19 @@ interface OrderPaymentRequest {
27993
27999
  /** Image to be displayed to the customer on the payment page. */
27994
28000
  image?: string;
27995
28001
  /** Time and date the order payment request expires. */
27996
- expirationDate?: Date;
28002
+ expirationDate?: Date | null;
27997
28003
  /** [Extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields) must be configured in the Wix Dev Center before they can be accessed with API calls. */
27998
28004
  extendedFields?: ExtendedFields$2;
27999
28005
  /**
28000
28006
  * Date and time the OrderPaymentRequest was created.
28001
28007
  * @readonly
28002
28008
  */
28003
- _createdDate?: Date;
28009
+ _createdDate?: Date | null;
28004
28010
  /**
28005
28011
  * Date and time the OrderPaymentRequest was last updated.
28006
28012
  * @readonly
28007
28013
  */
28008
- _updatedDate?: Date;
28014
+ _updatedDate?: Date | null;
28009
28015
  }
28010
28016
  interface Source {
28011
28017
  /** App Def ID that created the order payment request. */
@@ -28067,12 +28073,12 @@ interface Payment$1 extends PaymentPaymentDetailsOneOf$1 {
28067
28073
  */
28068
28074
  _id?: string | null;
28069
28075
  /** Date and time the payment was created in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#Combined_date_and_time_representations) format. Defaults to current time when not provided. */
28070
- _createdDate?: Date;
28076
+ _createdDate?: Date | null;
28071
28077
  /**
28072
28078
  * Date and time the payment was last updated in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#Combined_date_and_time_representations) format.
28073
28079
  * @readonly
28074
28080
  */
28075
- _updatedDate?: Date;
28081
+ _updatedDate?: Date | null;
28076
28082
  /** Payment amount. */
28077
28083
  amount?: Price$1;
28078
28084
  /**
@@ -28145,7 +28151,7 @@ interface AuthorizationDetails$1 {
28145
28151
  */
28146
28152
  delayedCapture?: boolean;
28147
28153
  /** Date and time the payment was authorized in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#Combined_date_and_time_representations) format. */
28148
- authorizedDate?: Date;
28154
+ authorizedDate?: Date | null;
28149
28155
  /**
28150
28156
  * List of captures associated with payment
28151
28157
  * In case of failed it can be replaced with new one with PENDING or SUCCESS statuses
@@ -28167,7 +28173,7 @@ interface AuthorizationCapture$1 {
28167
28173
  /** Amount of this capture */
28168
28174
  amount?: Price$1;
28169
28175
  /** Date and time the capture was initiated in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#Combined_date_and_time_representations) format. */
28170
- _createdDate?: Date;
28176
+ _createdDate?: Date | null;
28171
28177
  /** In case of status is FAILED may contain failure details */
28172
28178
  failureDetails?: AuthorizationActionFailureDetails$1;
28173
28179
  }
@@ -28187,7 +28193,7 @@ interface AuthorizationVoid$1 {
28187
28193
  /** Status of this void action */
28188
28194
  status?: AuthorizationVoidStatus$1;
28189
28195
  /** Date and time the void was initiated in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#Combined_date_and_time_representations) format. */
28190
- voidedDate?: Date;
28196
+ voidedDate?: Date | null;
28191
28197
  /** In case of status is FAILED may contain failure details */
28192
28198
  failureDetails?: AuthorizationActionFailureDetails$1;
28193
28199
  /** Reason of void action */
@@ -28217,7 +28223,7 @@ interface ScheduledAction$1 {
28217
28223
  /** type of the action */
28218
28224
  actionType?: ActionType$1;
28219
28225
  /** the date and time of the action */
28220
- executionDate?: Date;
28226
+ executionDate?: Date | null;
28221
28227
  }
28222
28228
  declare enum ActionType$1 {
28223
28229
  UNKNOWN_ACTION_TYPE = "UNKNOWN_ACTION_TYPE",
@@ -28277,7 +28283,7 @@ interface Refund$1 {
28277
28283
  /** Refund business details. */
28278
28284
  details?: RefundDetails$1;
28279
28285
  /** Date and time the refund was created in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#Combined_date_and_time_representations) format. Defaults to current time when not provided. */
28280
- _createdDate?: Date;
28286
+ _createdDate?: Date | null;
28281
28287
  }
28282
28288
  interface RefundTransaction$1 {
28283
28289
  /** ID of the payment associated with this refund. */
@@ -28493,7 +28499,7 @@ interface DomainEvent$6 extends DomainEventBodyOneOf$6 {
28493
28499
  /** ID of the entity associated with the event. */
28494
28500
  entityId?: string;
28495
28501
  /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
28496
- eventTime?: Date;
28502
+ eventTime?: Date | null;
28497
28503
  /**
28498
28504
  * Whether the event was triggered as a result of a privacy regulation application
28499
28505
  * (for example, GDPR).
@@ -28522,7 +28528,7 @@ interface EntityCreatedEvent$6 {
28522
28528
  entity?: string;
28523
28529
  }
28524
28530
  interface RestoreInfo$6 {
28525
- deletedDate?: Date;
28531
+ deletedDate?: Date | null;
28526
28532
  }
28527
28533
  interface EntityUpdatedEvent$6 {
28528
28534
  /**
@@ -28662,19 +28668,19 @@ interface UpdateOrderPaymentRequest {
28662
28668
  /** Image to be displayed to the customer on the payment page. */
28663
28669
  image?: string;
28664
28670
  /** Time and date the order payment request expires. */
28665
- expirationDate?: Date;
28671
+ expirationDate?: Date | null;
28666
28672
  /** [Extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields) must be configured in the Wix Dev Center before they can be accessed with API calls. */
28667
28673
  extendedFields?: ExtendedFields$2;
28668
28674
  /**
28669
28675
  * Date and time the OrderPaymentRequest was created.
28670
28676
  * @readonly
28671
28677
  */
28672
- _createdDate?: Date;
28678
+ _createdDate?: Date | null;
28673
28679
  /**
28674
28680
  * Date and time the OrderPaymentRequest was last updated.
28675
28681
  * @readonly
28676
28682
  */
28677
- _updatedDate?: Date;
28683
+ _updatedDate?: Date | null;
28678
28684
  }
28679
28685
  interface QueryCursorResult$3 {
28680
28686
  cursors: Cursors$4;
@@ -28894,12 +28900,12 @@ interface Payment extends PaymentPaymentDetailsOneOf {
28894
28900
  */
28895
28901
  _id?: string | null;
28896
28902
  /** Date and time the payment was created in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#Combined_date_and_time_representations) format. Defaults to current time when not provided. */
28897
- _createdDate?: Date;
28903
+ _createdDate?: Date | null;
28898
28904
  /**
28899
28905
  * Date and time the payment was last updated in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#Combined_date_and_time_representations) format.
28900
28906
  * @readonly
28901
28907
  */
28902
- _updatedDate?: Date;
28908
+ _updatedDate?: Date | null;
28903
28909
  /** Payment amount. */
28904
28910
  amount?: Price;
28905
28911
  /**
@@ -28972,7 +28978,7 @@ interface AuthorizationDetails {
28972
28978
  */
28973
28979
  delayedCapture?: boolean;
28974
28980
  /** Date and time the payment was authorized in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#Combined_date_and_time_representations) format. */
28975
- authorizedDate?: Date;
28981
+ authorizedDate?: Date | null;
28976
28982
  /**
28977
28983
  * List of captures associated with payment
28978
28984
  * In case of failed it can be replaced with new one with PENDING or SUCCESS statuses
@@ -28994,7 +29000,7 @@ interface AuthorizationCapture {
28994
29000
  /** Amount of this capture */
28995
29001
  amount?: Price;
28996
29002
  /** Date and time the capture was initiated in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#Combined_date_and_time_representations) format. */
28997
- _createdDate?: Date;
29003
+ _createdDate?: Date | null;
28998
29004
  /** In case of status is FAILED may contain failure details */
28999
29005
  failureDetails?: AuthorizationActionFailureDetails;
29000
29006
  }
@@ -29023,7 +29029,7 @@ interface AuthorizationVoid {
29023
29029
  /** Status of this void action */
29024
29030
  status?: AuthorizationVoidStatus;
29025
29031
  /** Date and time the void was initiated in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#Combined_date_and_time_representations) format. */
29026
- voidedDate?: Date;
29032
+ voidedDate?: Date | null;
29027
29033
  /** In case of status is FAILED may contain failure details */
29028
29034
  failureDetails?: AuthorizationActionFailureDetails;
29029
29035
  /** Reason of void action */
@@ -29053,7 +29059,7 @@ interface ScheduledAction {
29053
29059
  /** type of the action */
29054
29060
  actionType?: ActionType;
29055
29061
  /** the date and time of the action */
29056
- executionDate?: Date;
29062
+ executionDate?: Date | null;
29057
29063
  }
29058
29064
  declare enum ActionType {
29059
29065
  UNKNOWN_ACTION_TYPE = "UNKNOWN_ACTION_TYPE",
@@ -29113,7 +29119,7 @@ interface Refund {
29113
29119
  /** Refund business details. */
29114
29120
  details?: RefundDetails;
29115
29121
  /** Date and time the refund was created in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#Combined_date_and_time_representations) format. Defaults to current time when not provided. */
29116
- _createdDate?: Date;
29122
+ _createdDate?: Date | null;
29117
29123
  }
29118
29124
  interface RefundTransaction {
29119
29125
  /** ID of the payment associated with this refund. */
@@ -29217,7 +29223,7 @@ interface Order {
29217
29223
  * Order creation date and time.
29218
29224
  * @readonly
29219
29225
  */
29220
- dateCreated?: Date;
29226
+ dateCreated?: Date | null;
29221
29227
  /** Buyer information. */
29222
29228
  buyerInfo?: BuyerInfo;
29223
29229
  /** Currency used for the pricing of this order in [ISO-4217](https://en.wikipedia.org/wiki/ISO_4217#List_of_ISO_4217_currency_codes) format. */
@@ -29286,7 +29292,7 @@ interface Order {
29286
29292
  * Date and time of latest update.
29287
29293
  * @readonly
29288
29294
  */
29289
- lastUpdated?: Date;
29295
+ lastUpdated?: Date | null;
29290
29296
  /** Subscription information. */
29291
29297
  subscriptionInfo?: SubscriptionInfo;
29292
29298
  /**
@@ -29397,7 +29403,7 @@ interface BillingInfo {
29397
29403
  * Payment date
29398
29404
  * @readonly
29399
29405
  */
29400
- paidDate?: Date;
29406
+ paidDate?: Date | null;
29401
29407
  /** Whether order can be refunded by payment provider (manually or automatic) */
29402
29408
  refundableByPaymentProvider?: boolean | null;
29403
29409
  }
@@ -29478,7 +29484,7 @@ interface ShippingInfo extends ShippingInfoDetailsOneOf {
29478
29484
  * Deprecated - Latest expected delivery date.
29479
29485
  * @deprecated
29480
29486
  */
29481
- deliverByDate?: Date;
29487
+ deliverByDate?: Date | null;
29482
29488
  /** Shipping region. */
29483
29489
  shippingRegion?: string | null;
29484
29490
  /**
@@ -29750,7 +29756,7 @@ interface Activity {
29750
29756
  * Activity item timestamp
29751
29757
  * @readonly
29752
29758
  */
29753
- timestamp?: Date;
29759
+ timestamp?: Date | null;
29754
29760
  }
29755
29761
  declare enum ActivityType {
29756
29762
  /** Activity item type can't be classified, due to an error */
@@ -29814,7 +29820,7 @@ interface Fulfillment {
29814
29820
  * Fulfillment creation date and time.
29815
29821
  * @readonly
29816
29822
  */
29817
- dateCreated?: Date;
29823
+ dateCreated?: Date | null;
29818
29824
  /** Information about the line items in the fulfilled order. */
29819
29825
  lineItems?: FulfillmentLineItem[];
29820
29826
  /** Tracking information. */
@@ -29943,7 +29949,7 @@ interface SubscriptionOptionInfo {
29943
29949
  }
29944
29950
  interface V2Refund {
29945
29951
  /** Refund created timestamp. */
29946
- dateCreated?: Date;
29952
+ dateCreated?: Date | null;
29947
29953
  /** Refund amount. */
29948
29954
  amount?: string;
29949
29955
  /** Reason for refund, given by user (optional). */
@@ -30343,7 +30349,7 @@ interface InvoiceInfo {
30343
30349
  * Invoice creation date and time.
30344
30350
  * @deprecated
30345
30351
  */
30346
- _createdDate?: Date;
30352
+ _createdDate?: Date | null;
30347
30353
  }
30348
30354
  interface ListInvoicesForMultipleOrdersRequest {
30349
30355
  /** Order IDs for which to retrieve invoices. */
@@ -30419,7 +30425,7 @@ interface DomainEvent$5 extends DomainEventBodyOneOf$5 {
30419
30425
  /** ID of the entity associated with the event. */
30420
30426
  entityId?: string;
30421
30427
  /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
30422
- eventTime?: Date;
30428
+ eventTime?: Date | null;
30423
30429
  /**
30424
30430
  * Whether the event was triggered as a result of a privacy regulation application
30425
30431
  * (for example, GDPR).
@@ -30448,7 +30454,7 @@ interface EntityCreatedEvent$5 {
30448
30454
  entity?: string;
30449
30455
  }
30450
30456
  interface RestoreInfo$5 {
30451
- deletedDate?: Date;
30457
+ deletedDate?: Date | null;
30452
30458
  }
30453
30459
  interface EntityUpdatedEvent$5 {
30454
30460
  /**
@@ -30670,7 +30676,7 @@ interface EventMetadata$3 extends BaseEventMetadata$3 {
30670
30676
  /** ID of the entity associated with the event. */
30671
30677
  entityId?: string;
30672
30678
  /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
30673
- eventTime?: Date;
30679
+ eventTime?: Date | null;
30674
30680
  /**
30675
30681
  * Whether the event was triggered as a result of a privacy regulation application
30676
30682
  * (for example, GDPR).
@@ -30969,12 +30975,12 @@ interface OrdersSettings {
30969
30975
  * Date and time the orders settings were created.
30970
30976
  * @readonly
30971
30977
  */
30972
- _createdDate?: Date;
30978
+ _createdDate?: Date | null;
30973
30979
  /**
30974
30980
  * Date and time the orders settings were updated.
30975
30981
  * @readonly
30976
30982
  */
30977
- _updatedDate?: Date;
30983
+ _updatedDate?: Date | null;
30978
30984
  }
30979
30985
  declare enum InventoryUpdateTrigger {
30980
30986
  UNKNOWN_INVENTORY_UPDATE_TRIGGER = "UNKNOWN_INVENTORY_UPDATE_TRIGGER",
@@ -31029,7 +31035,7 @@ interface DomainEvent$4 extends DomainEventBodyOneOf$4 {
31029
31035
  /** ID of the entity associated with the event. */
31030
31036
  entityId?: string;
31031
31037
  /** Event timestamp. */
31032
- eventTime?: Date;
31038
+ eventTime?: Date | null;
31033
31039
  /**
31034
31040
  * Whether the event was triggered as a result of a privacy regulation application
31035
31041
  * (for example, GDPR).
@@ -31058,7 +31064,7 @@ interface EntityCreatedEvent$4 {
31058
31064
  entity?: string;
31059
31065
  }
31060
31066
  interface RestoreInfo$4 {
31061
- deletedDate?: Date;
31067
+ deletedDate?: Date | null;
31062
31068
  }
31063
31069
  interface EntityUpdatedEvent$4 {
31064
31070
  /**
@@ -31152,7 +31158,7 @@ interface EventMetadata$2 extends BaseEventMetadata$2 {
31152
31158
  /** ID of the entity associated with the event. */
31153
31159
  entityId?: string;
31154
31160
  /** Event timestamp. */
31155
- eventTime?: Date;
31161
+ eventTime?: Date | null;
31156
31162
  /**
31157
31163
  * Whether the event was triggered as a result of a privacy regulation application
31158
31164
  * (for example, GDPR).
@@ -31249,12 +31255,12 @@ interface PickupLocation {
31249
31255
  * Represents the time this PickupLocation was created
31250
31256
  * @readonly
31251
31257
  */
31252
- _createdDate?: Date;
31258
+ _createdDate?: Date | null;
31253
31259
  /**
31254
31260
  * Represents the time this PickupLocation was last updated
31255
31261
  * @readonly
31256
31262
  */
31257
- _updatedDate?: Date;
31263
+ _updatedDate?: Date | null;
31258
31264
  /** Pickup Location Name */
31259
31265
  name?: string | null;
31260
31266
  /** Pickup Location Address */
@@ -31535,7 +31541,7 @@ interface DomainEvent$3 extends DomainEventBodyOneOf$3 {
31535
31541
  /** ID of the entity associated with the event. */
31536
31542
  entityId?: string;
31537
31543
  /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
31538
- eventTime?: Date;
31544
+ eventTime?: Date | null;
31539
31545
  /**
31540
31546
  * Whether the event was triggered as a result of a privacy regulation application
31541
31547
  * (for example, GDPR).
@@ -31564,7 +31570,7 @@ interface EntityCreatedEvent$3 {
31564
31570
  entity?: string;
31565
31571
  }
31566
31572
  interface RestoreInfo$3 {
31567
- deletedDate?: Date;
31573
+ deletedDate?: Date | null;
31568
31574
  }
31569
31575
  interface EntityUpdatedEvent$3 {
31570
31576
  /**
@@ -31695,12 +31701,12 @@ interface UpdatePickupLocation {
31695
31701
  * Represents the time this PickupLocation was created
31696
31702
  * @readonly
31697
31703
  */
31698
- _createdDate?: Date;
31704
+ _createdDate?: Date | null;
31699
31705
  /**
31700
31706
  * Represents the time this PickupLocation was last updated
31701
31707
  * @readonly
31702
31708
  */
31703
- _updatedDate?: Date;
31709
+ _updatedDate?: Date | null;
31704
31710
  /** Pickup Location Name */
31705
31711
  name?: string | null;
31706
31712
  /** Pickup Location Address */
@@ -31968,12 +31974,12 @@ interface ShippingOption$1 {
31968
31974
  * Date and time the ShippingOption was created.
31969
31975
  * @readonly
31970
31976
  */
31971
- _createdDate?: Date;
31977
+ _createdDate?: Date | null;
31972
31978
  /**
31973
31979
  * Date and time the ShippingOption was last updated.
31974
31980
  * @readonly
31975
31981
  */
31976
- _updatedDate?: Date;
31982
+ _updatedDate?: Date | null;
31977
31983
  /** Associated delivery region id. */
31978
31984
  deliveryRegionId?: string;
31979
31985
  /** Delivery option configured for the ShippingOption */
@@ -32167,7 +32173,7 @@ interface DomainEvent$2 extends DomainEventBodyOneOf$2 {
32167
32173
  /** ID of the entity associated with the event. */
32168
32174
  entityId?: string;
32169
32175
  /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
32170
- eventTime?: Date;
32176
+ eventTime?: Date | null;
32171
32177
  /**
32172
32178
  * Whether the event was triggered as a result of a privacy regulation application
32173
32179
  * (for example, GDPR).
@@ -32196,7 +32202,7 @@ interface EntityCreatedEvent$2 {
32196
32202
  entity?: string;
32197
32203
  }
32198
32204
  interface RestoreInfo$2 {
32199
- deletedDate?: Date;
32205
+ deletedDate?: Date | null;
32200
32206
  }
32201
32207
  interface EntityUpdatedEvent$2 {
32202
32208
  /**
@@ -32311,7 +32317,7 @@ interface EventMetadata$1 extends BaseEventMetadata$1 {
32311
32317
  /** ID of the entity associated with the event. */
32312
32318
  entityId?: string;
32313
32319
  /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
32314
- eventTime?: Date;
32320
+ eventTime?: Date | null;
32315
32321
  /**
32316
32322
  * Whether the event was triggered as a result of a privacy regulation application
32317
32323
  * (for example, GDPR).
@@ -32360,12 +32366,12 @@ interface UpdateShippingOption {
32360
32366
  * Date and time the ShippingOption was created.
32361
32367
  * @readonly
32362
32368
  */
32363
- _createdDate?: Date;
32369
+ _createdDate?: Date | null;
32364
32370
  /**
32365
32371
  * Date and time the ShippingOption was last updated.
32366
32372
  * @readonly
32367
32373
  */
32368
- _updatedDate?: Date;
32374
+ _updatedDate?: Date | null;
32369
32375
  /** Associated delivery region id. */
32370
32376
  deliveryRegionId?: string;
32371
32377
  /** Delivery option configured for the ShippingOption */
@@ -32584,12 +32590,12 @@ interface ShippoConfiguration {
32584
32590
  * Date and time the ShippoConfiguration was created.
32585
32591
  * @readonly
32586
32592
  */
32587
- _createdDate?: Date;
32593
+ _createdDate?: Date | null;
32588
32594
  /**
32589
32595
  * Date and time the ShippoConfiguration was last updated.
32590
32596
  * @readonly
32591
32597
  */
32592
- _updatedDate?: Date;
32598
+ _updatedDate?: Date | null;
32593
32599
  /** Associated delivery region ID. */
32594
32600
  deliveryRegionId?: string | null;
32595
32601
  /** Settings of USPS domestic services. */
@@ -32873,7 +32879,7 @@ interface DomainEvent$1 extends DomainEventBodyOneOf$1 {
32873
32879
  /** ID of the entity associated with the event. */
32874
32880
  entityId?: string;
32875
32881
  /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
32876
- eventTime?: Date;
32882
+ eventTime?: Date | null;
32877
32883
  /**
32878
32884
  * Whether the event was triggered as a result of a privacy regulation application
32879
32885
  * (for example, GDPR).
@@ -32902,7 +32908,7 @@ interface EntityCreatedEvent$1 {
32902
32908
  entity?: string;
32903
32909
  }
32904
32910
  interface RestoreInfo$1 {
32905
- deletedDate?: Date;
32911
+ deletedDate?: Date | null;
32906
32912
  }
32907
32913
  interface EntityUpdatedEvent$1 {
32908
32914
  /**
@@ -33042,7 +33048,7 @@ interface EventMetadata extends BaseEventMetadata {
33042
33048
  /** ID of the entity associated with the event. */
33043
33049
  entityId?: string;
33044
33050
  /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
33045
- eventTime?: Date;
33051
+ eventTime?: Date | null;
33046
33052
  /**
33047
33053
  * Whether the event was triggered as a result of a privacy regulation application
33048
33054
  * (for example, GDPR).
@@ -33087,12 +33093,12 @@ interface UpdateShippoConfiguration {
33087
33093
  * Date and time the ShippoConfiguration was created.
33088
33094
  * @readonly
33089
33095
  */
33090
- _createdDate?: Date;
33096
+ _createdDate?: Date | null;
33091
33097
  /**
33092
33098
  * Date and time the ShippoConfiguration was last updated.
33093
33099
  * @readonly
33094
33100
  */
33095
- _updatedDate?: Date;
33101
+ _updatedDate?: Date | null;
33096
33102
  /** Associated delivery region ID. */
33097
33103
  deliveryRegionId?: string | null;
33098
33104
  /** Settings of USPS domestic services. */
@@ -33517,7 +33523,7 @@ interface ServiceProperties {
33517
33523
  * Date and time the service is to be provided, in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#Combined_date_and_time_representations) format.
33518
33524
  * For example, the start time of a class.
33519
33525
  */
33520
- scheduledDate?: Date;
33526
+ scheduledDate?: Date | null;
33521
33527
  /** The number of people participating in the service. For example, the number of people attending a class or the number of people per hotel room. */
33522
33528
  numberOfParticipants?: number | null;
33523
33529
  }
@@ -33657,9 +33663,9 @@ declare enum PickupMethod$1 {
33657
33663
  }
33658
33664
  interface DeliveryTimeSlot$1 {
33659
33665
  /** starting time of the delivery time slot */
33660
- from?: Date;
33666
+ from?: Date | null;
33661
33667
  /** ending time of the delivery time slot */
33662
- to?: Date;
33668
+ to?: Date | null;
33663
33669
  }
33664
33670
  interface ShippingPrice {
33665
33671
  /** Shipping price. */
@@ -34296,7 +34302,7 @@ interface Membership {
34296
34302
  /** Optional - For a membership that has limited credits, information about credit usage. */
34297
34303
  credits?: MembershipPaymentCredits;
34298
34304
  /** Optional - TMembership expiry date. */
34299
- expirationDate?: Date;
34305
+ expirationDate?: Date | null;
34300
34306
  /** Additional data about this membership. */
34301
34307
  additionalData?: Record<string, any> | null;
34302
34308
  }
@@ -34784,7 +34790,7 @@ interface ConvertCurrencyResponse {
34784
34790
  /** Converted amounts. */
34785
34791
  amounts?: DecimalValue[];
34786
34792
  /** Date and time the conversion rate was last updated. */
34787
- rateTimestamp?: Date;
34793
+ rateTimestamp?: Date | null;
34788
34794
  }
34789
34795
  interface ConversionRateRequest {
34790
34796
  /** Original currency to get the rate for as a 3-letter [ISO-4217](https://en.wikipedia.org/wiki/ISO_4217) code. The `from` currency code must exist in the array returned by the [`listCurrencies()`](#listcurrencies) function. */
@@ -34796,7 +34802,7 @@ interface ConversionRateResponse {
34796
34802
  /** Conversion rate between 2 currencies. */
34797
34803
  rate?: DecimalValue;
34798
34804
  /** Date and time the conversion rate was last updated. */
34799
- rateTimestamp?: Date;
34805
+ rateTimestamp?: Date | null;
34800
34806
  }
34801
34807
  interface CurrencyNonNullableFields {
34802
34808
  code: string;
@@ -35132,9 +35138,9 @@ declare enum PickupMethod {
35132
35138
  }
35133
35139
  interface DeliveryTimeSlot {
35134
35140
  /** starting time of the delivery time slot */
35135
- from?: Date;
35141
+ from?: Date | null;
35136
35142
  /** ending time of the delivery time slot */
35137
- to?: Date;
35143
+ to?: Date | null;
35138
35144
  }
35139
35145
  interface DeliveryCost {
35140
35146
  /** The shipping rate's price. Must align with the [currency's decimal separator](https://en.wikipedia.org/wiki/ISO_4217#Active_codes). */
@@ -35372,7 +35378,7 @@ interface DomainEvent extends DomainEventBodyOneOf {
35372
35378
  /** ID of the entity associated with the event. */
35373
35379
  entityId?: string;
35374
35380
  /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
35375
- eventTime?: Date;
35381
+ eventTime?: Date | null;
35376
35382
  /**
35377
35383
  * Whether the event was triggered as a result of a privacy regulation application
35378
35384
  * (for example, GDPR).
@@ -35401,7 +35407,7 @@ interface EntityCreatedEvent {
35401
35407
  entity?: string;
35402
35408
  }
35403
35409
  interface RestoreInfo {
35404
- deletedDate?: Date;
35410
+ deletedDate?: Date | null;
35405
35411
  }
35406
35412
  interface EntityUpdatedEvent {
35407
35413
  /**