@wix/ecom 1.0.864 → 1.0.866

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.
@@ -3159,6 +3159,16 @@ interface Address$g {
3159
3159
  addressLine1?: string | null;
3160
3160
  /** Free text providing more detailed address info. Usually contains apt, suite, floor. */
3161
3161
  addressLine2?: string | null;
3162
+ /**
3163
+ * Country's full name.
3164
+ * @readonly
3165
+ */
3166
+ countryFullname?: string | null;
3167
+ /**
3168
+ * Subdivision full-name.
3169
+ * @readonly
3170
+ */
3171
+ subdivisionFullname?: string | null;
3162
3172
  }
3163
3173
  interface StreetAddress$i {
3164
3174
  /** Street number. */
@@ -3262,6 +3272,16 @@ interface PickupAddress$4 {
3262
3272
  addressLine1?: string | null;
3263
3273
  /** Free text providing more detailed address info. Usually contains apt, suite, floor. */
3264
3274
  addressLine2?: string | null;
3275
+ /**
3276
+ * Country's full name.
3277
+ * @readonly
3278
+ */
3279
+ countryFullname?: string | null;
3280
+ /**
3281
+ * Subdivision full-name.
3282
+ * @readonly
3283
+ */
3284
+ subdivisionFullname?: string | null;
3265
3285
  }
3266
3286
  declare enum PickupMethod$e {
3267
3287
  UNKNOWN_METHOD = "UNKNOWN_METHOD",
@@ -7972,6 +7992,16 @@ interface Address$e {
7972
7992
  addressLine1?: string | null;
7973
7993
  /** Free text providing more detailed address info. Usually contains apt, suite, floor. */
7974
7994
  addressLine2?: string | null;
7995
+ /**
7996
+ * Country's full name.
7997
+ * @readonly
7998
+ */
7999
+ countryFullname?: string | null;
8000
+ /**
8001
+ * Subdivision full-name.
8002
+ * @readonly
8003
+ */
8004
+ subdivisionFullname?: string | null;
7975
8005
  }
7976
8006
  interface StreetAddress$g {
7977
8007
  /** Street number. */
@@ -12044,6 +12074,16 @@ interface Address$c {
12044
12074
  addressLine1?: string | null;
12045
12075
  /** Free text providing more detailed address info. Usually contains apt, suite, floor. */
12046
12076
  addressLine2?: string | null;
12077
+ /**
12078
+ * Country's full name.
12079
+ * @readonly
12080
+ */
12081
+ countryFullname?: string | null;
12082
+ /**
12083
+ * Subdivision full-name.
12084
+ * @readonly
12085
+ */
12086
+ subdivisionFullname?: string | null;
12047
12087
  }
12048
12088
  interface StreetAddress$e {
12049
12089
  /** Street number. */
@@ -16435,6 +16475,16 @@ interface ApiAddress {
16435
16475
  addressLine1?: string | null;
16436
16476
  /** Free text providing more detailed address info. Usually contains apt, suite, floor. */
16437
16477
  addressLine2?: string | null;
16478
+ /**
16479
+ * Country's full name.
16480
+ * @readonly
16481
+ */
16482
+ countryFullname?: string | null;
16483
+ /**
16484
+ * Subdivision full-name.
16485
+ * @readonly
16486
+ */
16487
+ subdivisionFullname?: string | null;
16438
16488
  }
16439
16489
  interface StreetAddress$c {
16440
16490
  /** Street number. */
@@ -22734,11 +22784,20 @@ declare enum PaymentStatus$3 {
22734
22784
  PENDING = "PENDING",
22735
22785
  /** At least one payment was received and approved, covering less than total price amount */
22736
22786
  PARTIALLY_PAID = "PARTIALLY_PAID",
22737
- /** Payment received but not yet confirmed by the payment provider and waits for some user action */
22787
+ /**
22788
+ * Payment received but not yet confirmed by the payment provider and waits for some user action
22789
+ * @documentationMaturity preview
22790
+ */
22738
22791
  PENDING_MERCHANT = "PENDING_MERCHANT",
22739
- /** Payment was canceled by user on payment provider side */
22792
+ /**
22793
+ * Payment was canceled by user on payment provider side
22794
+ * @documentationMaturity preview
22795
+ */
22740
22796
  CANCELED = "CANCELED",
22741
- /** Payment was declined by payment provider */
22797
+ /**
22798
+ * Payment was declined by payment provider
22799
+ * @documentationMaturity preview
22800
+ */
22742
22801
  DECLINED = "DECLINED"
22743
22802
  }
22744
22803
  declare enum FulfillmentStatus$3 {
@@ -22756,7 +22815,9 @@ declare enum OrderStatus$3 {
22756
22815
  INITIALIZED = "INITIALIZED",
22757
22816
  APPROVED = "APPROVED",
22758
22817
  CANCELED = "CANCELED",
22818
+ /** @documentationMaturity preview */
22759
22819
  PENDING = "PENDING",
22820
+ /** @documentationMaturity preview */
22760
22821
  REJECTED = "REJECTED"
22761
22822
  }
22762
22823
  interface Activity$3 extends ActivityContentOneOf$3 {
@@ -22846,10 +22907,15 @@ declare enum ActivityType$3 {
22846
22907
  ORDER_PARTIALLY_PAID = "ORDER_PARTIALLY_PAID",
22847
22908
  DRAFT_ORDER_CHANGES_APPLIED = "DRAFT_ORDER_CHANGES_APPLIED",
22848
22909
  SAVED_PAYMENT_METHOD = "SAVED_PAYMENT_METHOD",
22910
+ /** @documentationMaturity preview */
22849
22911
  PAYMENT_PENDING = "PAYMENT_PENDING",
22912
+ /** @documentationMaturity preview */
22850
22913
  PAYMENT_CANCELED = "PAYMENT_CANCELED",
22914
+ /** @documentationMaturity preview */
22851
22915
  PAYMENT_DECLINED = "PAYMENT_DECLINED",
22916
+ /** @documentationMaturity preview */
22852
22917
  ORDER_PENDING = "ORDER_PENDING",
22918
+ /** @documentationMaturity preview */
22853
22919
  ORDER_REJECTED = "ORDER_REJECTED"
22854
22920
  }
22855
22921
  declare enum AttributionSource$3 {
@@ -24292,6 +24358,16 @@ interface Address$a {
24292
24358
  addressLine1?: string | null;
24293
24359
  /** Free text providing more detailed address info. Usually contains apt, suite, floor. */
24294
24360
  addressLine2?: string | null;
24361
+ /**
24362
+ * Country's full name.
24363
+ * @readonly
24364
+ */
24365
+ countryFullname?: string | null;
24366
+ /**
24367
+ * Subdivision full-name.
24368
+ * @readonly
24369
+ */
24370
+ subdivisionFullname?: string | null;
24295
24371
  }
24296
24372
  interface StreetAddress$a {
24297
24373
  /** Street number. */
@@ -24354,6 +24430,16 @@ interface PickupAddress$2 {
24354
24430
  addressLine1?: string | null;
24355
24431
  /** Free text providing more detailed address info. Usually contains apt, suite, floor. */
24356
24432
  addressLine2?: string | null;
24433
+ /**
24434
+ * Country's full name.
24435
+ * @readonly
24436
+ */
24437
+ countryFullname?: string | null;
24438
+ /**
24439
+ * Subdivision full-name.
24440
+ * @readonly
24441
+ */
24442
+ subdivisionFullname?: string | null;
24357
24443
  }
24358
24444
  declare enum PickupDetailsPickupMethod {
24359
24445
  UNKNOWN_METHOD = "UNKNOWN_METHOD",
@@ -25361,11 +25447,20 @@ declare enum PaymentStatus$2 {
25361
25447
  PENDING = "PENDING",
25362
25448
  /** At least one payment was received and approved, covering less than total price amount */
25363
25449
  PARTIALLY_PAID = "PARTIALLY_PAID",
25364
- /** Payment received but not yet confirmed by the payment provider and waits for some user action */
25450
+ /**
25451
+ * Payment received but not yet confirmed by the payment provider and waits for some user action
25452
+ * @documentationMaturity preview
25453
+ */
25365
25454
  PENDING_MERCHANT = "PENDING_MERCHANT",
25366
- /** Payment was canceled by user on payment provider side */
25455
+ /**
25456
+ * Payment was canceled by user on payment provider side
25457
+ * @documentationMaturity preview
25458
+ */
25367
25459
  CANCELED = "CANCELED",
25368
- /** Payment was declined by payment provider */
25460
+ /**
25461
+ * Payment was declined by payment provider
25462
+ * @documentationMaturity preview
25463
+ */
25369
25464
  DECLINED = "DECLINED"
25370
25465
  }
25371
25466
  declare enum FulfillmentStatus$2 {
@@ -25383,7 +25478,9 @@ declare enum OrderStatus$2 {
25383
25478
  INITIALIZED = "INITIALIZED",
25384
25479
  APPROVED = "APPROVED",
25385
25480
  CANCELED = "CANCELED",
25481
+ /** @documentationMaturity preview */
25386
25482
  PENDING = "PENDING",
25483
+ /** @documentationMaturity preview */
25387
25484
  REJECTED = "REJECTED"
25388
25485
  }
25389
25486
  interface Activity$2 extends ActivityContentOneOf$2 {
@@ -25473,10 +25570,15 @@ declare enum ActivityType$2 {
25473
25570
  ORDER_PARTIALLY_PAID = "ORDER_PARTIALLY_PAID",
25474
25571
  DRAFT_ORDER_CHANGES_APPLIED = "DRAFT_ORDER_CHANGES_APPLIED",
25475
25572
  SAVED_PAYMENT_METHOD = "SAVED_PAYMENT_METHOD",
25573
+ /** @documentationMaturity preview */
25476
25574
  PAYMENT_PENDING = "PAYMENT_PENDING",
25575
+ /** @documentationMaturity preview */
25477
25576
  PAYMENT_CANCELED = "PAYMENT_CANCELED",
25577
+ /** @documentationMaturity preview */
25478
25578
  PAYMENT_DECLINED = "PAYMENT_DECLINED",
25579
+ /** @documentationMaturity preview */
25479
25580
  ORDER_PENDING = "ORDER_PENDING",
25581
+ /** @documentationMaturity preview */
25480
25582
  ORDER_REJECTED = "ORDER_REJECTED"
25481
25583
  }
25482
25584
  declare enum AttributionSource$2 {
@@ -27105,7 +27207,10 @@ interface LocalDeliveryOption$1 extends LocalDeliveryOptionConfigOneOf$1 {
27105
27207
  zipConfig?: ZipCodeConfig$1;
27106
27208
  radiusConfig?: RadiusConfig$1;
27107
27209
  customAreaConfig?: CustomAreaConfig$1;
27108
- /** LocalDeliveryOptionId - unique identifier of local delivery option */
27210
+ /**
27211
+ * LocalDeliveryOptionId - unique identifier of local delivery option
27212
+ * @readonly
27213
+ */
27109
27214
  id?: string | null;
27110
27215
  /** Area name of Local Delivery Option */
27111
27216
  areaName?: string | null;
@@ -27413,6 +27518,7 @@ interface Cursors$f {
27413
27518
  prev?: string | null;
27414
27519
  }
27415
27520
  interface UpdateLocalDeliveryOptionRequest$1 {
27521
+ /** LocalDeliveryOption to be updated, may be partial. */
27416
27522
  localDeliveryOption: LocalDeliveryOption$1;
27417
27523
  }
27418
27524
  interface UpdateLocalDeliveryOptionResponse$1 {
@@ -27547,7 +27653,10 @@ interface LocalDeliveryOption extends LocalDeliveryOptionConfigOneOf {
27547
27653
  zipConfig?: ZipCodeConfig;
27548
27654
  radiusConfig?: RadiusConfig;
27549
27655
  customAreaConfig?: CustomAreaConfig;
27550
- /** LocalDeliveryOptionId - unique identifier of local delivery option */
27656
+ /**
27657
+ * LocalDeliveryOptionId - unique identifier of local delivery option
27658
+ * @readonly
27659
+ */
27551
27660
  _id?: string | null;
27552
27661
  /** Area name of Local Delivery Option */
27553
27662
  areaName?: string | null;
@@ -27855,6 +27964,7 @@ interface Cursors$e {
27855
27964
  prev?: string | null;
27856
27965
  }
27857
27966
  interface UpdateLocalDeliveryOptionRequest {
27967
+ /** LocalDeliveryOption to be updated, may be partial. */
27858
27968
  localDeliveryOption: LocalDeliveryOption;
27859
27969
  }
27860
27970
  interface UpdateLocalDeliveryOptionResponse {
@@ -28588,11 +28698,20 @@ declare enum PaymentStatus$1 {
28588
28698
  PENDING = "PENDING",
28589
28699
  /** At least one payment was received and approved, covering less than total price amount */
28590
28700
  PARTIALLY_PAID = "PARTIALLY_PAID",
28591
- /** Payment received but not yet confirmed by the payment provider and waits for some user action */
28701
+ /**
28702
+ * Payment received but not yet confirmed by the payment provider and waits for some user action
28703
+ * @documentationMaturity preview
28704
+ */
28592
28705
  PENDING_MERCHANT = "PENDING_MERCHANT",
28593
- /** Payment was canceled by user on payment provider side */
28706
+ /**
28707
+ * Payment was canceled by user on payment provider side
28708
+ * @documentationMaturity preview
28709
+ */
28594
28710
  CANCELED = "CANCELED",
28595
- /** Payment was declined by payment provider */
28711
+ /**
28712
+ * Payment was declined by payment provider
28713
+ * @documentationMaturity preview
28714
+ */
28596
28715
  DECLINED = "DECLINED"
28597
28716
  }
28598
28717
  declare enum FulfillmentStatus$1 {
@@ -28815,7 +28934,9 @@ declare enum OrderStatus$1 {
28815
28934
  INITIALIZED = "INITIALIZED",
28816
28935
  APPROVED = "APPROVED",
28817
28936
  CANCELED = "CANCELED",
28937
+ /** @documentationMaturity preview */
28818
28938
  PENDING = "PENDING",
28939
+ /** @documentationMaturity preview */
28819
28940
  REJECTED = "REJECTED"
28820
28941
  }
28821
28942
  interface TaxSummary$3 {
@@ -29033,10 +29154,15 @@ declare enum ActivityType$1 {
29033
29154
  ORDER_PARTIALLY_PAID = "ORDER_PARTIALLY_PAID",
29034
29155
  DRAFT_ORDER_CHANGES_APPLIED = "DRAFT_ORDER_CHANGES_APPLIED",
29035
29156
  SAVED_PAYMENT_METHOD = "SAVED_PAYMENT_METHOD",
29157
+ /** @documentationMaturity preview */
29036
29158
  PAYMENT_PENDING = "PAYMENT_PENDING",
29159
+ /** @documentationMaturity preview */
29037
29160
  PAYMENT_CANCELED = "PAYMENT_CANCELED",
29161
+ /** @documentationMaturity preview */
29038
29162
  PAYMENT_DECLINED = "PAYMENT_DECLINED",
29163
+ /** @documentationMaturity preview */
29039
29164
  ORDER_PENDING = "ORDER_PENDING",
29165
+ /** @documentationMaturity preview */
29040
29166
  ORDER_REJECTED = "ORDER_REJECTED"
29041
29167
  }
29042
29168
  declare enum AttributionSource$1 {
@@ -30907,11 +31033,20 @@ declare enum PaymentStatus {
30907
31033
  PENDING = "PENDING",
30908
31034
  /** At least one payment was received and approved, covering less than total price amount */
30909
31035
  PARTIALLY_PAID = "PARTIALLY_PAID",
30910
- /** Payment received but not yet confirmed by the payment provider and waits for some user action */
31036
+ /**
31037
+ * Payment received but not yet confirmed by the payment provider and waits for some user action
31038
+ * @documentationMaturity preview
31039
+ */
30911
31040
  PENDING_MERCHANT = "PENDING_MERCHANT",
30912
- /** Payment was canceled by user on payment provider side */
31041
+ /**
31042
+ * Payment was canceled by user on payment provider side
31043
+ * @documentationMaturity preview
31044
+ */
30913
31045
  CANCELED = "CANCELED",
30914
- /** Payment was declined by payment provider */
31046
+ /**
31047
+ * Payment was declined by payment provider
31048
+ * @documentationMaturity preview
31049
+ */
30915
31050
  DECLINED = "DECLINED"
30916
31051
  }
30917
31052
  declare enum FulfillmentStatus {
@@ -30970,6 +31105,16 @@ interface Address$8 {
30970
31105
  addressLine1?: string | null;
30971
31106
  /** Free text providing more detailed address info. Usually contains apt, suite, floor. */
30972
31107
  addressLine2?: string | null;
31108
+ /**
31109
+ * Country's full name.
31110
+ * @readonly
31111
+ */
31112
+ countryFullname?: string | null;
31113
+ /**
31114
+ * Subdivision full-name.
31115
+ * @readonly
31116
+ */
31117
+ subdivisionFullname?: string | null;
30973
31118
  }
30974
31119
  interface StreetAddress$8 {
30975
31120
  /** Street number. */
@@ -31073,6 +31218,16 @@ interface PickupAddress {
31073
31218
  addressLine1?: string | null;
31074
31219
  /** Free text providing more detailed address info. Usually contains apt, suite, floor. */
31075
31220
  addressLine2?: string | null;
31221
+ /**
31222
+ * Country's full name.
31223
+ * @readonly
31224
+ */
31225
+ countryFullname?: string | null;
31226
+ /**
31227
+ * Subdivision full-name.
31228
+ * @readonly
31229
+ */
31230
+ subdivisionFullname?: string | null;
31076
31231
  }
31077
31232
  declare enum PickupMethod$4 {
31078
31233
  UNKNOWN_METHOD = "UNKNOWN_METHOD",
@@ -31114,7 +31269,9 @@ declare enum OrderStatus {
31114
31269
  INITIALIZED = "INITIALIZED",
31115
31270
  APPROVED = "APPROVED",
31116
31271
  CANCELED = "CANCELED",
31272
+ /** @documentationMaturity preview */
31117
31273
  PENDING = "PENDING",
31274
+ /** @documentationMaturity preview */
31118
31275
  REJECTED = "REJECTED"
31119
31276
  }
31120
31277
  interface TaxSummary$2 {
@@ -31332,10 +31489,15 @@ declare enum ActivityType {
31332
31489
  ORDER_PARTIALLY_PAID = "ORDER_PARTIALLY_PAID",
31333
31490
  DRAFT_ORDER_CHANGES_APPLIED = "DRAFT_ORDER_CHANGES_APPLIED",
31334
31491
  SAVED_PAYMENT_METHOD = "SAVED_PAYMENT_METHOD",
31492
+ /** @documentationMaturity preview */
31335
31493
  PAYMENT_PENDING = "PAYMENT_PENDING",
31494
+ /** @documentationMaturity preview */
31336
31495
  PAYMENT_CANCELED = "PAYMENT_CANCELED",
31496
+ /** @documentationMaturity preview */
31337
31497
  PAYMENT_DECLINED = "PAYMENT_DECLINED",
31498
+ /** @documentationMaturity preview */
31338
31499
  ORDER_PENDING = "ORDER_PENDING",
31500
+ /** @documentationMaturity preview */
31339
31501
  ORDER_REJECTED = "ORDER_REJECTED"
31340
31502
  }
31341
31503
  declare enum AttributionSource {
@@ -36064,6 +36226,16 @@ interface Address$4 {
36064
36226
  addressLine1?: string | null;
36065
36227
  /** Free text providing more detailed address info. Usually contains apt, suite, floor. */
36066
36228
  addressLine2?: string | null;
36229
+ /**
36230
+ * Country's full name.
36231
+ * @readonly
36232
+ */
36233
+ countryFullname?: string | null;
36234
+ /**
36235
+ * Subdivision full-name.
36236
+ * @readonly
36237
+ */
36238
+ subdivisionFullname?: string | null;
36067
36239
  }
36068
36240
  interface StreetAddress$4 {
36069
36241
  /** Street number. */
@@ -37669,6 +37841,16 @@ interface Address$2 {
37669
37841
  addressLine1?: string | null;
37670
37842
  /** Free text providing more detailed address info. Usually contains apt, suite, floor. */
37671
37843
  addressLine2?: string | null;
37844
+ /**
37845
+ * Country's full name.
37846
+ * @readonly
37847
+ */
37848
+ countryFullname?: string | null;
37849
+ /**
37850
+ * Subdivision full-name.
37851
+ * @readonly
37852
+ */
37853
+ subdivisionFullname?: string | null;
37672
37854
  }
37673
37855
  interface StreetAddress$2 {
37674
37856
  /** Street number. */
@@ -39147,14 +39329,14 @@ interface StreetAddressNonNullableFields$1 {
39147
39329
  name: string;
39148
39330
  apt: string;
39149
39331
  }
39150
- interface SubdivisionNonNullableFields {
39332
+ interface SubdivisionNonNullableFields$1 {
39151
39333
  code: string;
39152
39334
  name: string;
39153
39335
  type: SubdivisionType;
39154
39336
  }
39155
39337
  interface AddressNonNullableFields$1 {
39156
39338
  streetAddress?: StreetAddressNonNullableFields$1;
39157
- subdivisions: SubdivisionNonNullableFields[];
39339
+ subdivisions: SubdivisionNonNullableFields$1[];
39158
39340
  }
39159
39341
  interface PickupDetailsNonNullableFields$1 {
39160
39342
  address?: AddressNonNullableFields$1;
@@ -39568,8 +39750,12 @@ interface StreetAddressNonNullableFields {
39568
39750
  name: string;
39569
39751
  apt: string;
39570
39752
  }
39753
+ interface SubdivisionNonNullableFields {
39754
+ name: string;
39755
+ }
39571
39756
  interface AddressNonNullableFields {
39572
39757
  streetAddress?: StreetAddressNonNullableFields;
39758
+ subdivisions: SubdivisionNonNullableFields[];
39573
39759
  }
39574
39760
  interface PickupDetailsNonNullableFields {
39575
39761
  address?: AddressNonNullableFields;
@@ -1851,6 +1851,16 @@ interface Address$2 {
1851
1851
  addressLine1?: string | null;
1852
1852
  /** Free text providing more detailed address info. Usually contains apt, suite, floor. */
1853
1853
  addressLine2?: string | null;
1854
+ /**
1855
+ * Country's full name.
1856
+ * @readonly
1857
+ */
1858
+ countryFullname?: string | null;
1859
+ /**
1860
+ * Subdivision full-name.
1861
+ * @readonly
1862
+ */
1863
+ subdivisionFullname?: string | null;
1854
1864
  }
1855
1865
  interface StreetAddress$2 {
1856
1866
  /** Street number. */
@@ -3282,11 +3292,20 @@ declare enum PaymentStatus {
3282
3292
  PENDING = "PENDING",
3283
3293
  /** At least one payment was received and approved, covering less than total price amount */
3284
3294
  PARTIALLY_PAID = "PARTIALLY_PAID",
3285
- /** Payment received but not yet confirmed by the payment provider and waits for some user action */
3295
+ /**
3296
+ * Payment received but not yet confirmed by the payment provider and waits for some user action
3297
+ * @documentationMaturity preview
3298
+ */
3286
3299
  PENDING_MERCHANT = "PENDING_MERCHANT",
3287
- /** Payment was canceled by user on payment provider side */
3300
+ /**
3301
+ * Payment was canceled by user on payment provider side
3302
+ * @documentationMaturity preview
3303
+ */
3288
3304
  CANCELED = "CANCELED",
3289
- /** Payment was declined by payment provider */
3305
+ /**
3306
+ * Payment was declined by payment provider
3307
+ * @documentationMaturity preview
3308
+ */
3290
3309
  DECLINED = "DECLINED"
3291
3310
  }
3292
3311
  declare enum FulfillmentStatus {
@@ -3345,6 +3364,16 @@ interface Address$1 {
3345
3364
  addressLine1?: string | null;
3346
3365
  /** Free text providing more detailed address info. Usually contains apt, suite, floor. */
3347
3366
  addressLine2?: string | null;
3367
+ /**
3368
+ * Country's full name.
3369
+ * @readonly
3370
+ */
3371
+ countryFullname?: string | null;
3372
+ /**
3373
+ * Subdivision full-name.
3374
+ * @readonly
3375
+ */
3376
+ subdivisionFullname?: string | null;
3348
3377
  }
3349
3378
  interface StreetAddress$1 {
3350
3379
  /** Street number. */
@@ -3454,6 +3483,16 @@ interface PickupAddress {
3454
3483
  addressLine1?: string | null;
3455
3484
  /** Free text providing more detailed address info. Usually contains apt, suite, floor. */
3456
3485
  addressLine2?: string | null;
3486
+ /**
3487
+ * Country's full name.
3488
+ * @readonly
3489
+ */
3490
+ countryFullname?: string | null;
3491
+ /**
3492
+ * Subdivision full-name.
3493
+ * @readonly
3494
+ */
3495
+ subdivisionFullname?: string | null;
3457
3496
  }
3458
3497
  declare enum PickupMethod {
3459
3498
  UNKNOWN_METHOD = "UNKNOWN_METHOD",
@@ -3495,7 +3534,9 @@ declare enum OrderStatus {
3495
3534
  INITIALIZED = "INITIALIZED",
3496
3535
  APPROVED = "APPROVED",
3497
3536
  CANCELED = "CANCELED",
3537
+ /** @documentationMaturity preview */
3498
3538
  PENDING = "PENDING",
3539
+ /** @documentationMaturity preview */
3499
3540
  REJECTED = "REJECTED"
3500
3541
  }
3501
3542
  interface TaxSummary {
@@ -4006,10 +4047,15 @@ declare enum ActivityType {
4006
4047
  ORDER_PARTIALLY_PAID = "ORDER_PARTIALLY_PAID",
4007
4048
  DRAFT_ORDER_CHANGES_APPLIED = "DRAFT_ORDER_CHANGES_APPLIED",
4008
4049
  SAVED_PAYMENT_METHOD = "SAVED_PAYMENT_METHOD",
4050
+ /** @documentationMaturity preview */
4009
4051
  PAYMENT_PENDING = "PAYMENT_PENDING",
4052
+ /** @documentationMaturity preview */
4010
4053
  PAYMENT_CANCELED = "PAYMENT_CANCELED",
4054
+ /** @documentationMaturity preview */
4011
4055
  PAYMENT_DECLINED = "PAYMENT_DECLINED",
4056
+ /** @documentationMaturity preview */
4012
4057
  ORDER_PENDING = "ORDER_PENDING",
4058
+ /** @documentationMaturity preview */
4013
4059
  ORDER_REJECTED = "ORDER_REJECTED"
4014
4060
  }
4015
4061
  declare enum AttributionSource {
@@ -6174,6 +6220,16 @@ interface Address {
6174
6220
  addressLine1?: string | null;
6175
6221
  /** Free text providing more detailed address info. Usually contains apt, suite, floor. */
6176
6222
  addressLine2?: string | null;
6223
+ /**
6224
+ * Country's full name.
6225
+ * @readonly
6226
+ */
6227
+ countryFullname?: string | null;
6228
+ /**
6229
+ * Subdivision full-name.
6230
+ * @readonly
6231
+ */
6232
+ subdivisionFullname?: string | null;
6177
6233
  }
6178
6234
  interface StreetAddress {
6179
6235
  /** Street number. */
@@ -1851,6 +1851,16 @@ interface Address$2 {
1851
1851
  addressLine1?: string | null;
1852
1852
  /** Free text providing more detailed address info. Usually contains apt, suite, floor. */
1853
1853
  addressLine2?: string | null;
1854
+ /**
1855
+ * Country's full name.
1856
+ * @readonly
1857
+ */
1858
+ countryFullname?: string | null;
1859
+ /**
1860
+ * Subdivision full-name.
1861
+ * @readonly
1862
+ */
1863
+ subdivisionFullname?: string | null;
1854
1864
  }
1855
1865
  interface StreetAddress$2 {
1856
1866
  /** Street number. */
@@ -3282,11 +3292,20 @@ declare enum PaymentStatus {
3282
3292
  PENDING = "PENDING",
3283
3293
  /** At least one payment was received and approved, covering less than total price amount */
3284
3294
  PARTIALLY_PAID = "PARTIALLY_PAID",
3285
- /** Payment received but not yet confirmed by the payment provider and waits for some user action */
3295
+ /**
3296
+ * Payment received but not yet confirmed by the payment provider and waits for some user action
3297
+ * @documentationMaturity preview
3298
+ */
3286
3299
  PENDING_MERCHANT = "PENDING_MERCHANT",
3287
- /** Payment was canceled by user on payment provider side */
3300
+ /**
3301
+ * Payment was canceled by user on payment provider side
3302
+ * @documentationMaturity preview
3303
+ */
3288
3304
  CANCELED = "CANCELED",
3289
- /** Payment was declined by payment provider */
3305
+ /**
3306
+ * Payment was declined by payment provider
3307
+ * @documentationMaturity preview
3308
+ */
3290
3309
  DECLINED = "DECLINED"
3291
3310
  }
3292
3311
  declare enum FulfillmentStatus {
@@ -3345,6 +3364,16 @@ interface Address$1 {
3345
3364
  addressLine1?: string | null;
3346
3365
  /** Free text providing more detailed address info. Usually contains apt, suite, floor. */
3347
3366
  addressLine2?: string | null;
3367
+ /**
3368
+ * Country's full name.
3369
+ * @readonly
3370
+ */
3371
+ countryFullname?: string | null;
3372
+ /**
3373
+ * Subdivision full-name.
3374
+ * @readonly
3375
+ */
3376
+ subdivisionFullname?: string | null;
3348
3377
  }
3349
3378
  interface StreetAddress$1 {
3350
3379
  /** Street number. */
@@ -3454,6 +3483,16 @@ interface PickupAddress {
3454
3483
  addressLine1?: string | null;
3455
3484
  /** Free text providing more detailed address info. Usually contains apt, suite, floor. */
3456
3485
  addressLine2?: string | null;
3486
+ /**
3487
+ * Country's full name.
3488
+ * @readonly
3489
+ */
3490
+ countryFullname?: string | null;
3491
+ /**
3492
+ * Subdivision full-name.
3493
+ * @readonly
3494
+ */
3495
+ subdivisionFullname?: string | null;
3457
3496
  }
3458
3497
  declare enum PickupMethod {
3459
3498
  UNKNOWN_METHOD = "UNKNOWN_METHOD",
@@ -3495,7 +3534,9 @@ declare enum OrderStatus {
3495
3534
  INITIALIZED = "INITIALIZED",
3496
3535
  APPROVED = "APPROVED",
3497
3536
  CANCELED = "CANCELED",
3537
+ /** @documentationMaturity preview */
3498
3538
  PENDING = "PENDING",
3539
+ /** @documentationMaturity preview */
3499
3540
  REJECTED = "REJECTED"
3500
3541
  }
3501
3542
  interface TaxSummary {
@@ -4006,10 +4047,15 @@ declare enum ActivityType {
4006
4047
  ORDER_PARTIALLY_PAID = "ORDER_PARTIALLY_PAID",
4007
4048
  DRAFT_ORDER_CHANGES_APPLIED = "DRAFT_ORDER_CHANGES_APPLIED",
4008
4049
  SAVED_PAYMENT_METHOD = "SAVED_PAYMENT_METHOD",
4050
+ /** @documentationMaturity preview */
4009
4051
  PAYMENT_PENDING = "PAYMENT_PENDING",
4052
+ /** @documentationMaturity preview */
4010
4053
  PAYMENT_CANCELED = "PAYMENT_CANCELED",
4054
+ /** @documentationMaturity preview */
4011
4055
  PAYMENT_DECLINED = "PAYMENT_DECLINED",
4056
+ /** @documentationMaturity preview */
4012
4057
  ORDER_PENDING = "ORDER_PENDING",
4058
+ /** @documentationMaturity preview */
4013
4059
  ORDER_REJECTED = "ORDER_REJECTED"
4014
4060
  }
4015
4061
  declare enum AttributionSource {
@@ -6174,6 +6220,16 @@ interface Address {
6174
6220
  addressLine1?: string | null;
6175
6221
  /** Free text providing more detailed address info. Usually contains apt, suite, floor. */
6176
6222
  addressLine2?: string | null;
6223
+ /**
6224
+ * Country's full name.
6225
+ * @readonly
6226
+ */
6227
+ countryFullname?: string | null;
6228
+ /**
6229
+ * Subdivision full-name.
6230
+ * @readonly
6231
+ */
6232
+ subdivisionFullname?: string | null;
6177
6233
  }
6178
6234
  interface StreetAddress {
6179
6235
  /** Street number. */