@flowio/api-internal-prop-types 9.24.53 → 9.24.55

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.
@@ -169,6 +169,7 @@ T['io.flow.fulfillment.v0.models.quote_error'] = PropTypes.exact({
169
169
  T['io.flow.merchant.of.record.v0.enums.flow_entity'] = PropTypes.oneOf(['flow-usa', 'flow-irl', 'flow-can']);
170
170
  T['io.flow.common.v0.enums.goods_supply'] = PropTypes.oneOf(['export', 'intra_community', 'local']);
171
171
  T['io.flow.fulfillment.v0.enums.physical_delivery_special_serivce'] = PropTypes.oneOf(['cold_storage', 'hazardous', 'perishable']);
172
+ T['io.flow.fulfillment.v0.enums.fulfillment_routing'] = PropTypes.oneOf(['fulfilled_from_center', 'fulfillment_service']);
172
173
  T['io.flow.fulfillment.v0.enums.zero_amount_indicator'] = PropTypes.oneOf(['zero', 'free']);
173
174
  T['io.flow.fulfillment.v0.enums.delivery_window_location'] = PropTypes.oneOf(['center', 'crossdock', 'customer']);
174
175
  T['io.flow.fulfillment.v0.enums.delivery_window_component_source'] = PropTypes.oneOf(['flow', 'organization', 'carrier', 'center', 'mixed']);
@@ -370,15 +371,6 @@ T['io.flow.shopify.v0.unions.shopify_cart_add_form'] = PropTypes.oneOfType([
370
371
  T['io.flow.shopify.v0.models.shopify_cart_add_multiple_form'],
371
372
  ]);
372
373
 
373
- T['io.flow.billing.v0.models.bank_account_reference'] = PropTypes.exact({
374
- id: PropTypes.string.isRequired,
375
- });
376
-
377
- T['io.flow.billing.v0.models.organization_default_bank_account'] = PropTypes.exact({
378
- id: PropTypes.string.isRequired,
379
- bank_account: T['io.flow.billing.v0.models.bank_account_reference'].isRequired,
380
- });
381
-
382
374
  T['io.flow.billing.v0.models.settlement_no_payout'] = PropTypes.exact({
383
375
  discriminator: PropTypes.oneOf(['no_payout']).isRequired,
384
376
  placeholder: PropTypes.string,
@@ -391,21 +383,26 @@ T['io.flow.billing.v0.models.payout_attachment'] = PropTypes.exact({
391
383
  url: PropTypes.string.isRequired,
392
384
  });
393
385
 
394
- T['io.flow.billing.v0.models.billing_channel_organization_summary'] = PropTypes.exact({
386
+ T['io.flow.billing.v0.models.bank_account_summary'] = PropTypes.exact({
387
+ last4: PropTypes.string.isRequired,
388
+ });
389
+
390
+ T['io.flow.billing.v0.models.bank_account_reference'] = PropTypes.exact({
395
391
  id: PropTypes.string.isRequired,
396
392
  });
397
393
 
398
- T['io.flow.billing.bank.account.v0.models.bank_account_info_usa'] = PropTypes.exact({
399
- discriminator: PropTypes.oneOf(['usa']).isRequired,
400
- routing_number: PropTypes.string.isRequired,
401
- account_number: PropTypes.string.isRequired,
394
+ T['io.flow.billing.v0.models.organization_default_bank_account'] = PropTypes.exact({
395
+ id: PropTypes.string.isRequired,
396
+ bank_account: T['io.flow.billing.v0.models.bank_account_reference'].isRequired,
402
397
  });
403
398
 
404
- T['io.flow.billing.bank.account.v0.unions.bank_account_info'] = PropTypes.oneOfType([T['io.flow.billing.bank.account.v0.models.bank_account_info_usa']]);
399
+ T['io.flow.billing.v0.models.channel_default_bank_account'] = PropTypes.exact({
400
+ id: PropTypes.string.isRequired,
401
+ bank_account: T['io.flow.billing.v0.models.bank_account_reference'].isRequired,
402
+ });
405
403
 
406
- T['io.flow.billing.v0.models.bank_account_form'] = PropTypes.exact({
407
- last4: PropTypes.string.isRequired,
408
- info: T['io.flow.billing.bank.account.v0.unions.bank_account_info'].isRequired,
404
+ T['io.flow.billing.v0.models.billing_channel_organization_summary'] = PropTypes.exact({
405
+ id: PropTypes.string.isRequired,
409
406
  });
410
407
 
411
408
  T['io.flow.billing.v0.enums.statement_attachment_type'] = PropTypes.oneOf(['csv']);
@@ -1212,6 +1209,115 @@ T['io.flow.ftp.v0.models.ftp_organization_settings'] = PropTypes.exact({
1212
1209
  account: T['io.flow.ftp.v0.models.ftp_account'],
1213
1210
  });
1214
1211
 
1212
+ T['io.flow.common.v0.enums.holiday_calendar'] = PropTypes.oneOf(['us_bank_holidays', 'jewish_holidays']);
1213
+ T['io.flow.common.v0.enums.calendar'] = PropTypes.oneOf(['weekdays', 'everyday']);
1214
+
1215
+ T['io.flow.common.v0.enums.day_of_week'] = PropTypes.oneOf([
1216
+ 'sunday',
1217
+ 'monday',
1218
+ 'tuesday',
1219
+ 'wednesday',
1220
+ 'thursday',
1221
+ 'friday',
1222
+ 'saturday',
1223
+ ]);
1224
+
1225
+ T['io.flow.fulfillment.v0.models.scheduled_pickup'] = PropTypes.exact({
1226
+ day_of_week: T['io.flow.common.v0.enums.day_of_week'].isRequired,
1227
+ hour_of_day: PropTypes.string.isRequired,
1228
+ minute_of_hour: PropTypes.string.isRequired,
1229
+ });
1230
+
1231
+ T['io.flow.fulfillment.v0.models.available_service'] = PropTypes.exact({
1232
+ service: PropTypes.string.isRequired,
1233
+ scheduled_pickups: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.scheduled_pickup']),
1234
+ lead_days: T['io.flow.fulfillment.v0.models.number_range'],
1235
+ });
1236
+
1237
+ T['io.flow.merchant.onboarding.v0.models.onboarding_merchant_scheduled_pickup'] = PropTypes.exact({
1238
+ day_of_week: T['io.flow.common.v0.enums.day_of_week'].isRequired,
1239
+ window: T['io.flow.merchant.onboarding.v0.models.onboarding_merchant_pickup_window'].isRequired,
1240
+ instructions: PropTypes.string,
1241
+ });
1242
+
1243
+ T['io.flow.merchant.onboarding.v0.models.third_party_logistics_partner'] = PropTypes.exact({
1244
+ warehouse_address: T['io.flow.merchant.onboarding.v0.models.merchant_onboarding_address'].isRequired,
1245
+ warehouse_url: PropTypes.string,
1246
+ location: T['io.flow.merchant.onboarding.v0.models.merchant_onboarding_address'],
1247
+
1248
+ scheduled_pickups: PropTypes.arrayOf(
1249
+ T['io.flow.merchant.onboarding.v0.models.onboarding_merchant_scheduled_pickup'],
1250
+ ),
1251
+
1252
+ operations_contact: T['io.flow.merchant.onboarding.v0.models.operations_contact'].isRequired,
1253
+ center_id: PropTypes.string,
1254
+ });
1255
+
1256
+ T['io.flow.common.v0.models.price_source_price_book_reference'] = PropTypes.exact({
1257
+ id: PropTypes.string.isRequired,
1258
+ key: PropTypes.string.isRequired,
1259
+ });
1260
+
1261
+ T['io.flow.common.v0.enums.margin_type'] = PropTypes.oneOf(['fixed', 'percent']);
1262
+
1263
+ T['io.flow.common.v0.models.margin'] = PropTypes.exact({
1264
+ type: T['io.flow.common.v0.enums.margin_type'].isRequired,
1265
+ value: PropTypes.number.isRequired,
1266
+ });
1267
+
1268
+ T['io.flow.common.v0.models.logo_image_static'] = PropTypes.exact({
1269
+ url: PropTypes.string.isRequired,
1270
+ width: PropTypes.number.isRequired,
1271
+ height: PropTypes.number.isRequired,
1272
+ });
1273
+
1274
+ T['io.flow.common.v0.models.input_specification_limitation_max'] = PropTypes.exact({
1275
+ discriminator: PropTypes.oneOf(['input_specification_limitation_max']).isRequired,
1276
+ max: PropTypes.number.isRequired,
1277
+ });
1278
+
1279
+ T['io.flow.common.v0.unions.input_specification_limitation'] = PropTypes.oneOfType([T['io.flow.common.v0.models.input_specification_limitation_max']]);
1280
+ T['io.flow.common.v0.enums.input_specification_type'] = PropTypes.oneOf(['text', 'number']);
1281
+ T['io.flow.common.v0.enums.exception_type'] = PropTypes.oneOf(['open', 'closed']);
1282
+ T['io.flow.common.v0.enums.entity_identifier_type'] = PropTypes.oneOf(['ioss', 'voec']);
1283
+
1284
+ T['io.flow.common.v0.models.discount_offer_percent'] = PropTypes.exact({
1285
+ discriminator: PropTypes.oneOf(['discount_offer_percent']).isRequired,
1286
+ percent: PropTypes.number.isRequired,
1287
+ });
1288
+
1289
+ T['io.flow.common.v0.enums.discount_target'] = PropTypes.oneOf(['item', 'shipping']);
1290
+
1291
+ T['io.flow.partner.v0.models.partner_order_reference'] = PropTypes.exact({
1292
+ id: PropTypes.string.isRequired,
1293
+ number: PropTypes.string.isRequired,
1294
+ });
1295
+
1296
+ T['io.flow.partner.v0.models.partner_organization_reference'] = PropTypes.exact({
1297
+ id: PropTypes.string.isRequired,
1298
+ });
1299
+
1300
+ T['io.flow.partner.v0.models.partner_order_identifier'] = PropTypes.exact({
1301
+ id: PropTypes.string.isRequired,
1302
+ organization: T['io.flow.partner.v0.models.partner_organization_reference'].isRequired,
1303
+ order: T['io.flow.partner.v0.models.partner_order_reference'].isRequired,
1304
+ number: PropTypes.string.isRequired,
1305
+ });
1306
+
1307
+ T['io.flow.payment.gateway.v0.enums.payment_request_review_check_status'] = PropTypes.oneOf(['passed', 'failed']);
1308
+
1309
+ T['io.flow.payment.gateway.v0.enums.payment_request_review_check_type'] = PropTypes.oneOf([
1310
+ 'restricted_party_screening',
1311
+ 'fraud_suspicious_behavior',
1312
+ 'fraud_suspicious_past_activity',
1313
+ 'fraud_risky_velocity',
1314
+ 'fraud_previous_chargebacks',
1315
+ 'order_restricted_goods',
1316
+ 'order_unsupported_destination',
1317
+ 'order_missing_information',
1318
+ 'order_domestic',
1319
+ ]);
1320
+
1215
1321
  T['io.flow.payment.gateway.v0.models.payment_method_data_selected_payment_option'] = PropTypes.exact({
1216
1322
  type: PropTypes.oneOf(['select_option']).isRequired,
1217
1323
  option_id: PropTypes.string.isRequired,
@@ -1273,12 +1379,26 @@ T['io.flow.payment.gateway.v0.models.payment_method_data_init_klarna'] = PropTyp
1273
1379
  placeholder: PropTypes.string,
1274
1380
  });
1275
1381
 
1382
+ T['io.flow.payment.gateway.v0.models.payment_request_review_check'] = PropTypes.exact({
1383
+ type: T['io.flow.payment.gateway.v0.enums.payment_request_review_check_type'].isRequired,
1384
+ status: T['io.flow.payment.gateway.v0.enums.payment_request_review_check_status'].isRequired,
1385
+ });
1386
+
1387
+ T['io.flow.payment.gateway.v0.enums.payment_request_review_status'] = PropTypes.oneOf(['pending', 'approved', 'rejected']);
1388
+
1276
1389
  T['io.flow.payment.gateway.v0.models.device_details_browser'] = PropTypes.exact({
1277
1390
  type: PropTypes.oneOf(['browser']).isRequired,
1278
1391
  user_agent: PropTypes.string.isRequired,
1279
1392
  origin: PropTypes.string.isRequired,
1280
- accept_language: PropTypes.string.isRequired,
1393
+ accept_language: PropTypes.string,
1281
1394
  ip: PropTypes.string,
1395
+ time_zone_offset: PropTypes.number,
1396
+ date_string: PropTypes.string,
1397
+ navigator_language: PropTypes.string,
1398
+ navigator_hardware_concurrency: PropTypes.number,
1399
+ cookie_created_at: PropTypes.number,
1400
+ session_duration: PropTypes.number,
1401
+ fingerprint: PropTypes.string,
1282
1402
  });
1283
1403
 
1284
1404
  T['io.flow.payment.gateway.v0.enums.payment_type'] = PropTypes.oneOf([
@@ -1364,7 +1484,7 @@ T['io.flow.payment.gateway.v0.unions.device_fingerprint_details'] = PropTypes.on
1364
1484
 
1365
1485
  T['io.flow.payment.gateway.v0.models.payment_method_data_authorize_applepay_result_failure'] = PropTypes.exact({
1366
1486
  type: PropTypes.oneOf(['failure']).isRequired,
1367
- placeholder: PropTypes.string,
1487
+ message: PropTypes.string.isRequired,
1368
1488
  });
1369
1489
 
1370
1490
  T['io.flow.payment.gateway.v0.models.payment_method_data_authorize_applepay_result_success'] = PropTypes.exact({
@@ -1537,7 +1657,7 @@ T['io.flow.apple.pay.v0.models.apple_pay_payment_contact'] = PropTypes.exact({
1537
1657
  country_code: PropTypes.string,
1538
1658
  });
1539
1659
 
1540
- T['io.flow.apple.pay.v0.enums.apple_pay_contact_field'] = PropTypes.oneOf(['email', 'name', 'phone', 'postalAddress', 'phoneticName']);
1660
+ T['io.flow.apple.pay.v0.enums.apple_pay_contact_field'] = PropTypes.oneOf(['email', 'name', 'phone', 'postal_address', 'phonetic_name']);
1541
1661
 
1542
1662
  T['io.flow.apple.pay.v0.enums.apple_pay_supported_networks'] = PropTypes.oneOf([
1543
1663
  'amex',
@@ -1554,7 +1674,7 @@ T['io.flow.apple.pay.v0.enums.apple_pay_shipping_type'] = PropTypes.oneOf(['ship
1554
1674
  T['io.flow.apple.pay.v0.models.apple_pay_shipping_method'] = PropTypes.exact({
1555
1675
  label: PropTypes.string.isRequired,
1556
1676
  detail: PropTypes.string.isRequired,
1557
- amount: PropTypes.string.isRequired,
1677
+ amount: PropTypes.number.isRequired,
1558
1678
  identifier: PropTypes.string.isRequired,
1559
1679
  });
1560
1680
 
@@ -1563,7 +1683,7 @@ T['io.flow.apple.pay.v0.enums.apple_pay_merchant_capability'] = PropTypes.oneOf(
1563
1683
  T['io.flow.apple.pay.v0.models.apple_pay_line_item'] = PropTypes.exact({
1564
1684
  label: PropTypes.string.isRequired,
1565
1685
  type: T['io.flow.apple.pay.v0.enums.apple_pay_line_item_type'].isRequired,
1566
- amount: PropTypes.string.isRequired,
1686
+ amount: PropTypes.number.isRequired,
1567
1687
  });
1568
1688
 
1569
1689
  T['io.flow.apple.pay.v0.models.apple_pay_payment_info'] = PropTypes.exact({
@@ -3004,15 +3124,7 @@ T['io.flow.shopify.external.v0.models.response_product'] = PropTypes.exact({
3004
3124
  });
3005
3125
 
3006
3126
  T['io.flow.order.management.v0.enums.fulfillment_item_quantity_status'] = PropTypes.oneOf(['new', 'shipped', 'cancelled']);
3007
-
3008
- T['io.flow.adyen.v0.models.sdk_v3_on_complete_data'] = PropTypes.exact({
3009
- details: PropTypes.object.isRequired,
3010
- payment_data: PropTypes.string,
3011
- });
3012
-
3013
- T['io.flow.adyen.v0.models.sdk_v3_on_complete_result'] = PropTypes.exact({
3014
- data: T['io.flow.adyen.v0.models.sdk_v3_on_complete_data'].isRequired,
3015
- });
3127
+ T['io.flow.adyen.v0.enums.method'] = PropTypes.oneOf(['GET', 'POST']);
3016
3128
 
3017
3129
  T['io.flow.adyen.v0.models.redirect_data'] = PropTypes.exact({
3018
3130
  PaReq: PropTypes.string,
@@ -3020,6 +3132,12 @@ T['io.flow.adyen.v0.models.redirect_data'] = PropTypes.exact({
3020
3132
  MD: PropTypes.string,
3021
3133
  });
3022
3134
 
3135
+ T['io.flow.adyen.v0.models.redirect'] = PropTypes.exact({
3136
+ data: T['io.flow.adyen.v0.models.redirect_data'],
3137
+ method: T['io.flow.adyen.v0.enums.method'],
3138
+ url: PropTypes.string,
3139
+ });
3140
+
3023
3141
  T['io.flow.adyen.v0.models.authentication'] = PropTypes.exact({
3024
3142
  'threeds2.fingerprintToken': PropTypes.string,
3025
3143
  'threeds2.challengeToken': PropTypes.string,
@@ -3028,55 +3146,12 @@ T['io.flow.adyen.v0.models.authentication'] = PropTypes.exact({
3028
3146
  T['io.flow.adyen.v0.models.payment_response_additional_data'] = PropTypes.exact({
3029
3147
  authCode: PropTypes.string,
3030
3148
  avsResultRaw: PropTypes.string,
3031
- avsResult: PropTypes.string,
3032
3149
  cvcResultRaw: PropTypes.string,
3033
- cvcResult: PropTypes.string,
3034
- refusalReasonRaw: PropTypes.string,
3035
3150
  liabilityShift: PropTypes.string,
3036
3151
  threeDAuthenticated: PropTypes.string,
3037
3152
  threeDAuthenticatedResponse: PropTypes.string,
3038
3153
  threeDOffered: PropTypes.string,
3039
3154
  threeDOfferedResponse: PropTypes.string,
3040
- threeDSVersion: PropTypes.string,
3041
- eci: PropTypes.string,
3042
- scaExemptionRequested: PropTypes.string,
3043
- paymentMethod: PropTypes.string,
3044
- paymentMethodVariant: PropTypes.string,
3045
- tokenTxVariant: PropTypes.string,
3046
- acquirerCode: PropTypes.string,
3047
- acquirerAccountCode: PropTypes.string,
3048
- cardPaymentMethod: PropTypes.string,
3049
- coBrandedWith: PropTypes.string,
3050
- cardIssuingCountry: PropTypes.string,
3051
- cardIssuingCurrency: PropTypes.string,
3052
- cardIssuingBank: PropTypes.string,
3053
- cardBin: PropTypes.string,
3054
- issuerBin: PropTypes.string,
3055
- cardSummary: PropTypes.string,
3056
- untokenisedCardSummary: PropTypes.string,
3057
- ownerName: PropTypes.string,
3058
- bankName: PropTypes.string,
3059
- issuerCountry: PropTypes.string,
3060
- iban: PropTypes.string,
3061
- bic: PropTypes.string,
3062
- iDealConsumerAccountNumber: PropTypes.string,
3063
- iDealConsumerBIC: PropTypes.string,
3064
- iDealConsumerCity: PropTypes.string,
3065
- iDealConsumerIBAN: PropTypes.string,
3066
- iDealConsumerName: PropTypes.string,
3067
- iDealTransactionId: PropTypes.string,
3068
- 'recurring.recurringDetailReference': PropTypes.string,
3069
- 'recurring.shopperReference': PropTypes.string,
3070
- networkTxReference: PropTypes.string,
3071
- PaymentAccountReference: PropTypes.string,
3072
- 'networkToken.available': PropTypes.string,
3073
- 'networkToken.bin': PropTypes.string,
3074
- 'networkToken.tokenSummary': PropTypes.string,
3075
- });
3076
-
3077
- T['io.flow.adyen.v0.models.applepay'] = PropTypes.exact({
3078
- type: PropTypes.oneOf(['applepay']).isRequired,
3079
- applePayToken: PropTypes.string.isRequired,
3080
3155
  });
3081
3156
 
3082
3157
  T['io.flow.adyen.v0.models.scheme'] = PropTypes.exact({
@@ -3086,16 +3161,6 @@ T['io.flow.adyen.v0.models.scheme'] = PropTypes.exact({
3086
3161
  holderName: PropTypes.string.isRequired,
3087
3162
  number: PropTypes.string.isRequired,
3088
3163
  cvc: PropTypes.string,
3089
- storedPaymentMethodId: PropTypes.string,
3090
- networkPaymentReference: PropTypes.string,
3091
- });
3092
-
3093
- T['io.flow.adyen.v0.enums.http_redirect_method'] = PropTypes.oneOf(['GET', 'POST']);
3094
-
3095
- T['io.flow.adyen.v0.models.redirect'] = PropTypes.exact({
3096
- data: T['io.flow.adyen.v0.models.redirect_data'],
3097
- method: T['io.flow.adyen.v0.enums.http_redirect_method'],
3098
- url: PropTypes.string,
3099
3164
  });
3100
3165
 
3101
3166
  T['io.flow.adyen.v0.enums.channel'] = PropTypes.oneOf(['web']);
@@ -3105,20 +3170,15 @@ T['io.flow.adyen.v0.models.threeds_additional_data'] = PropTypes.exact({
3105
3170
  allow3DS2: PropTypes.bool,
3106
3171
  });
3107
3172
 
3108
- T['io.flow.adyen.v0.unions.payment_method_data'] = PropTypes.oneOfType(
3109
- [T['io.flow.adyen.v0.models.scheme'], T['io.flow.adyen.v0.models.applepay']],
3110
- );
3173
+ T['io.flow.adyen.v0.unions.payment_method_data'] = PropTypes.oneOfType([T['io.flow.adyen.v0.models.scheme']]);
3111
3174
 
3112
3175
  T['io.flow.adyen.v0.enums.payment_method'] = PropTypes.oneOf([
3113
3176
  'ach',
3114
3177
  'alipay',
3115
- 'alipay_hk',
3116
3178
  'alipay_wap',
3117
3179
  'amex',
3118
3180
  'bankTransfer_IBAN',
3119
3181
  'bcmc',
3120
- 'bcmc_mobile',
3121
- 'blik',
3122
3182
  'cartebancaire',
3123
3183
  'cup',
3124
3184
  'diners',
@@ -3129,27 +3189,21 @@ T['io.flow.adyen.v0.enums.payment_method'] = PropTypes.oneOf([
3129
3189
  'dragonpay_gcash',
3130
3190
  'dragonpay_otc_banking',
3131
3191
  'ebanking_FI',
3132
- 'gcash',
3133
3192
  'giropay',
3134
3193
  'ideal',
3135
3194
  'interac',
3136
3195
  'jcb',
3137
- 'kakaopay',
3138
3196
  'kcp_banktransfer',
3139
3197
  'kcp_creditcard',
3140
3198
  'kcp_payco',
3141
3199
  'maestro',
3142
- 'mbway',
3143
3200
  'mc',
3144
- 'mobilepay',
3145
3201
  'molpay_points',
3146
3202
  'multibanco',
3147
- 'onlineBanking_PL',
3148
3203
  'qiwiwallet',
3149
3204
  'sepadirectdebit',
3150
3205
  'trustly',
3151
3206
  'trustpay',
3152
- 'twint',
3153
3207
  'unionpay',
3154
3208
  'visa',
3155
3209
  'wechatpay',
@@ -3348,12 +3402,7 @@ T['io.flow.adyen.v0.models.payment_request'] = PropTypes.exact({
3348
3402
  browserInfo: T['io.flow.adyen.v0.unions.browser_info'],
3349
3403
  origin: PropTypes.string,
3350
3404
  channel: T['io.flow.adyen.v0.enums.channel'],
3351
- returnUrl: PropTypes.string,
3352
- mcc: PropTypes.string,
3353
- metadata: PropTypes.object,
3354
- redirectToIssuerMethod: T['io.flow.adyen.v0.enums.http_redirect_method'],
3355
- redirectFromIssuerMethod: T['io.flow.adyen.v0.enums.http_redirect_method'],
3356
- storePaymentMethod: PropTypes.bool,
3405
+ returnURL: PropTypes.string,
3357
3406
  });
3358
3407
 
3359
3408
  T['io.flow.adyen.v0.models.modification_request'] = PropTypes.exact({
@@ -3409,8 +3458,6 @@ T['io.flow.adyen.v0.models.authorize_request'] = PropTypes.exact({
3409
3458
  browserInfo: T['io.flow.adyen.v0.unions.browser_info'],
3410
3459
  threeDS2RequestData: T['io.flow.adyen.v0.models.threeds2_request_data'],
3411
3460
  recurringProcessingModel: T['io.flow.adyen.v0.enums.recurring_processing_model'],
3412
- mcc: PropTypes.string,
3413
- metadata: PropTypes.object,
3414
3461
  });
3415
3462
 
3416
3463
  T['io.flow.brickftp.v0.models.file_summary'] = PropTypes.exact({
@@ -4196,7 +4243,7 @@ T['io.flow.external.paypal.v1.models.money'] = PropTypes.exact({
4196
4243
  });
4197
4244
 
4198
4245
  T['io.flow.external.paypal.v1.models.item_info'] = PropTypes.exact({
4199
- item_id: PropTypes.string.isRequired,
4246
+ item_id: PropTypes.string,
4200
4247
  item_description: PropTypes.string,
4201
4248
  item_quantity: PropTypes.string,
4202
4249
  partner_transaction_id: PropTypes.string,
@@ -4229,7 +4276,7 @@ T['io.flow.external.paypal.v1.models.dispute_outcome'] = PropTypes.exact({
4229
4276
  });
4230
4277
 
4231
4278
  T['io.flow.external.paypal.v1.models.transaction_info'] = PropTypes.exact({
4232
- buyer_transaction_id: PropTypes.string.isRequired,
4279
+ buyer_transaction_id: PropTypes.string,
4233
4280
  seller_transaction_id: PropTypes.string,
4234
4281
  reference_id: PropTypes.string,
4235
4282
  create_time: PropTypes.string,
@@ -4444,7 +4491,7 @@ T['io.flow.external.paypal.v1.models.dispute'] = PropTypes.exact({
4444
4491
  communication_details: T['io.flow.external.paypal.v1.models.communication_details'],
4445
4492
  supporting_info: T['io.flow.external.paypal.v1.models.supporting_info'],
4446
4493
  allowed_response_options: T['io.flow.external.paypal.v1.models.allowed_response_options'],
4447
- links: PropTypes.arrayOf(T['io.flow.external.paypal.v1.models.link']).isRequired,
4494
+ links: PropTypes.arrayOf(T['io.flow.external.paypal.v1.models.link']),
4448
4495
  });
4449
4496
 
4450
4497
  T['io.flow.fulfillment.v0.models.service_unknown'] = PropTypes.exact({
@@ -5452,6 +5499,17 @@ T['io.flow.payment.v0.models.klarna_sdk_authorization_result_action_details'] =
5452
5499
  payment_method_categories: PropTypes.arrayOf(T['io.flow.payment.v0.models.klarna_payment_method_category']).isRequired,
5453
5500
  });
5454
5501
 
5502
+ T['io.flow.payment.v0.models.applepay_sdk_validate_result_action_details'] = PropTypes.exact({
5503
+ discriminator: PropTypes.oneOf(['applepay_sdk_validate_result_action_details']).isRequired,
5504
+ payment_session: PropTypes.object.isRequired,
5505
+ });
5506
+
5507
+ T['io.flow.payment.v0.models.applepay_sdk_create_result_action_details'] = PropTypes.exact({
5508
+ discriminator: PropTypes.oneOf(['applepay_sdk_create_result_action_details']).isRequired,
5509
+ merchant_identifier: PropTypes.string.isRequired,
5510
+ payment_data_request: PropTypes.object.isRequired,
5511
+ });
5512
+
5455
5513
  T['io.flow.payment.v0.models.threeds_challenge_action_details'] = PropTypes.exact({
5456
5514
  discriminator: PropTypes.oneOf(['threeds_challenge_action_details']).isRequired,
5457
5515
  threeds_challenge_action: T['io.flow.payment.v0.unions.threeds_challenge_action'].isRequired,
@@ -5993,8 +6051,30 @@ T['io.flow.price.v0.models.price_book_reference'] = PropTypes.exact({
5993
6051
  key: PropTypes.string.isRequired,
5994
6052
  });
5995
6053
 
6054
+ T['io.flow.common.v0.enums.included_levy_key'] = PropTypes.oneOf(['duty', 'vat', 'vat_and_duty', 'none']);
5996
6055
  T['io.flow.common.v0.enums.price_book_status'] = PropTypes.oneOf(['draft', 'published', 'archived']);
5997
6056
 
6057
+ T['io.flow.price.v0.models.price_book_form'] = PropTypes.exact({
6058
+ currency: PropTypes.string.isRequired,
6059
+ name: PropTypes.string.isRequired,
6060
+ includes: T['io.flow.common.v0.enums.included_levy_key'].isRequired,
6061
+ status: T['io.flow.common.v0.enums.price_book_status'],
6062
+ });
6063
+
6064
+ T['io.flow.common.v0.models.included_levies'] = PropTypes.exact({
6065
+ key: T['io.flow.common.v0.enums.included_levy_key'].isRequired,
6066
+ label: PropTypes.string.isRequired,
6067
+ });
6068
+
6069
+ T['io.flow.price.v0.models.price_book'] = PropTypes.exact({
6070
+ id: PropTypes.string.isRequired,
6071
+ key: PropTypes.string.isRequired,
6072
+ currency: PropTypes.string.isRequired,
6073
+ name: PropTypes.string.isRequired,
6074
+ includes: T['io.flow.common.v0.models.included_levies'].isRequired,
6075
+ status: T['io.flow.common.v0.enums.price_book_status'].isRequired,
6076
+ });
6077
+
5998
6078
  T['io.flow.price.v0.models.price_detail_component'] = PropTypes.exact({
5999
6079
  key: T['io.flow.price.v0.enums.price_detail_component_key'].isRequired,
6000
6080
  amount: PropTypes.number.isRequired,
@@ -6020,156 +6100,54 @@ T['io.flow.price.v0.models.deminimis_per_item'] = PropTypes.exact({
6020
6100
  maximum: PropTypes.number,
6021
6101
  });
6022
6102
 
6023
- T['io.flow.common.v0.enums.holiday_calendar'] = PropTypes.oneOf(['us_bank_holidays', 'jewish_holidays']);
6024
- T['io.flow.common.v0.enums.calendar'] = PropTypes.oneOf(['weekdays', 'everyday']);
6103
+ T['io.flow.order.price.v0.enums.order_price_detail_component_key'] = PropTypes.oneOf([
6104
+ 'adjustment',
6105
+ 'vat_deminimis',
6106
+ 'duty_deminimis',
6107
+ 'duties_item_price',
6108
+ 'duties_freight',
6109
+ 'duties_insurance',
6110
+ 'vat_item_price',
6111
+ 'vat_freight',
6112
+ 'vat_insurance',
6113
+ 'vat_duties_item_price',
6114
+ 'vat_duties_freight',
6115
+ 'vat_duties_insurance',
6116
+ 'item_price',
6117
+ 'item_discount',
6118
+ 'rounding',
6119
+ 'insurance',
6120
+ 'shipping',
6121
+ 'shipping_discount',
6122
+ 'order_discount',
6123
+ 'subtotal_percent_sales_margin',
6124
+ 'subtotal_vat_percent_sales_margin',
6125
+ 'subtotal_duty_percent_sales_margin',
6126
+ 'vat_subsidy',
6127
+ 'duty_subsidy',
6128
+ 'remote_area_surcharge',
6129
+ 'fuel_surcharge',
6130
+ 'emergency_situation_surcharge',
6131
+ 'peak_surcharge',
6132
+ 'duties_taxes_paid_surcharge',
6133
+ ]);
6025
6134
 
6026
- T['io.flow.common.v0.enums.day_of_week'] = PropTypes.oneOf([
6027
- 'sunday',
6028
- 'monday',
6029
- 'tuesday',
6030
- 'wednesday',
6031
- 'thursday',
6032
- 'friday',
6033
- 'saturday',
6135
+ T['io.flow.price.v0.enums.price_accuracy'] = PropTypes.oneOf(['calculated', 'estimated_from_partial_destination']);
6136
+
6137
+ T['io.flow.order.price.v0.enums.order_price_detail_key'] = PropTypes.oneOf([
6138
+ 'adjustment',
6139
+ 'subtotal',
6140
+ 'vat',
6141
+ 'duty',
6142
+ 'shipping',
6143
+ 'insurance',
6144
+ 'discount',
6145
+ 'surcharges',
6034
6146
  ]);
6035
6147
 
6036
- T['io.flow.fulfillment.v0.models.scheduled_pickup'] = PropTypes.exact({
6037
- day_of_week: T['io.flow.common.v0.enums.day_of_week'].isRequired,
6038
- hour_of_day: PropTypes.string.isRequired,
6039
- minute_of_hour: PropTypes.string.isRequired,
6040
- });
6041
-
6042
- T['io.flow.fulfillment.v0.models.available_service'] = PropTypes.exact({
6043
- service: PropTypes.string.isRequired,
6044
- scheduled_pickups: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.scheduled_pickup']),
6045
- lead_days: T['io.flow.fulfillment.v0.models.number_range'],
6046
- });
6047
-
6048
- T['io.flow.merchant.onboarding.v0.models.onboarding_merchant_scheduled_pickup'] = PropTypes.exact({
6049
- day_of_week: T['io.flow.common.v0.enums.day_of_week'].isRequired,
6050
- window: T['io.flow.merchant.onboarding.v0.models.onboarding_merchant_pickup_window'].isRequired,
6051
- instructions: PropTypes.string,
6052
- });
6053
-
6054
- T['io.flow.merchant.onboarding.v0.models.third_party_logistics_partner'] = PropTypes.exact({
6055
- warehouse_address: T['io.flow.merchant.onboarding.v0.models.merchant_onboarding_address'].isRequired,
6056
- warehouse_url: PropTypes.string,
6057
- location: T['io.flow.merchant.onboarding.v0.models.merchant_onboarding_address'],
6058
-
6059
- scheduled_pickups: PropTypes.arrayOf(
6060
- T['io.flow.merchant.onboarding.v0.models.onboarding_merchant_scheduled_pickup'],
6061
- ),
6062
-
6063
- operations_contact: T['io.flow.merchant.onboarding.v0.models.operations_contact'].isRequired,
6064
- center_id: PropTypes.string,
6065
- });
6066
-
6067
- T['io.flow.common.v0.models.price_source_price_book_reference'] = PropTypes.exact({
6068
- id: PropTypes.string.isRequired,
6069
- key: PropTypes.string.isRequired,
6070
- });
6071
-
6072
- T['io.flow.common.v0.enums.margin_type'] = PropTypes.oneOf(['fixed', 'percent']);
6073
-
6074
- T['io.flow.common.v0.models.margin'] = PropTypes.exact({
6075
- type: T['io.flow.common.v0.enums.margin_type'].isRequired,
6076
- value: PropTypes.number.isRequired,
6077
- });
6078
-
6079
- T['io.flow.common.v0.models.logo_image_static'] = PropTypes.exact({
6080
- url: PropTypes.string.isRequired,
6081
- width: PropTypes.number.isRequired,
6082
- height: PropTypes.number.isRequired,
6083
- });
6084
-
6085
- T['io.flow.common.v0.models.input_specification_limitation_max'] = PropTypes.exact({
6086
- discriminator: PropTypes.oneOf(['input_specification_limitation_max']).isRequired,
6087
- max: PropTypes.number.isRequired,
6088
- });
6089
-
6090
- T['io.flow.common.v0.unions.input_specification_limitation'] = PropTypes.oneOfType([T['io.flow.common.v0.models.input_specification_limitation_max']]);
6091
- T['io.flow.common.v0.enums.input_specification_type'] = PropTypes.oneOf(['text', 'number']);
6092
- T['io.flow.common.v0.enums.included_levy_key'] = PropTypes.oneOf(['duty', 'vat', 'vat_and_duty', 'none']);
6093
-
6094
- T['io.flow.price.v0.models.price_book_form'] = PropTypes.exact({
6095
- currency: PropTypes.string.isRequired,
6096
- name: PropTypes.string.isRequired,
6097
- includes: T['io.flow.common.v0.enums.included_levy_key'].isRequired,
6098
- status: T['io.flow.common.v0.enums.price_book_status'],
6099
- });
6100
-
6101
- T['io.flow.common.v0.models.included_levies'] = PropTypes.exact({
6102
- key: T['io.flow.common.v0.enums.included_levy_key'].isRequired,
6103
- label: PropTypes.string.isRequired,
6104
- });
6105
-
6106
- T['io.flow.price.v0.models.price_book'] = PropTypes.exact({
6107
- id: PropTypes.string.isRequired,
6108
- key: PropTypes.string.isRequired,
6109
- currency: PropTypes.string.isRequired,
6110
- name: PropTypes.string.isRequired,
6111
- includes: T['io.flow.common.v0.models.included_levies'].isRequired,
6112
- status: T['io.flow.common.v0.enums.price_book_status'].isRequired,
6113
- });
6114
-
6115
- T['io.flow.common.v0.enums.exception_type'] = PropTypes.oneOf(['open', 'closed']);
6116
- T['io.flow.common.v0.enums.entity_identifier_type'] = PropTypes.oneOf(['ioss', 'voec']);
6117
-
6118
- T['io.flow.common.v0.models.discount_offer_percent'] = PropTypes.exact({
6119
- discriminator: PropTypes.oneOf(['discount_offer_percent']).isRequired,
6120
- percent: PropTypes.number.isRequired,
6121
- });
6122
-
6123
- T['io.flow.common.v0.enums.discount_target'] = PropTypes.oneOf(['item', 'shipping']);
6124
-
6125
- T['io.flow.order.price.v0.enums.order_price_detail_component_key'] = PropTypes.oneOf([
6126
- 'adjustment',
6127
- 'vat_deminimis',
6128
- 'duty_deminimis',
6129
- 'duties_item_price',
6130
- 'duties_freight',
6131
- 'duties_insurance',
6132
- 'vat_item_price',
6133
- 'vat_freight',
6134
- 'vat_insurance',
6135
- 'vat_duties_item_price',
6136
- 'vat_duties_freight',
6137
- 'vat_duties_insurance',
6138
- 'item_price',
6139
- 'item_discount',
6140
- 'rounding',
6141
- 'insurance',
6142
- 'shipping',
6143
- 'shipping_discount',
6144
- 'order_discount',
6145
- 'subtotal_percent_sales_margin',
6146
- 'subtotal_vat_percent_sales_margin',
6147
- 'subtotal_duty_percent_sales_margin',
6148
- 'vat_subsidy',
6149
- 'duty_subsidy',
6150
- 'remote_area_surcharge',
6151
- 'fuel_surcharge',
6152
- 'emergency_situation_surcharge',
6153
- 'peak_surcharge',
6154
- 'duties_taxes_paid_surcharge',
6155
- ]);
6156
-
6157
- T['io.flow.price.v0.enums.price_accuracy'] = PropTypes.oneOf(['calculated', 'estimated_from_partial_destination']);
6158
-
6159
- T['io.flow.order.price.v0.enums.order_price_detail_key'] = PropTypes.oneOf([
6160
- 'adjustment',
6161
- 'subtotal',
6162
- 'vat',
6163
- 'duty',
6164
- 'shipping',
6165
- 'insurance',
6166
- 'discount',
6167
- 'surcharges',
6168
- ]);
6169
-
6170
- T['io.flow.return.v0.models.return_source_external_vendor'] = PropTypes.exact({
6171
- discriminator: PropTypes.oneOf(['return_source_external_vendor']).isRequired,
6172
- key: PropTypes.string.isRequired,
6148
+ T['io.flow.return.v0.models.return_source_external_vendor'] = PropTypes.exact({
6149
+ discriminator: PropTypes.oneOf(['return_source_external_vendor']).isRequired,
6150
+ key: PropTypes.string.isRequired,
6173
6151
  });
6174
6152
 
6175
6153
  T['io.flow.return.v0.models.return_source_flow'] = PropTypes.exact({
@@ -6586,7 +6564,7 @@ T['io.flow.internal.v0.models.spot_rate_metadata_rate'] = PropTypes.exact({
6586
6564
  base: PropTypes.string.isRequired,
6587
6565
  target: PropTypes.string.isRequired,
6588
6566
  value: PropTypes.number.isRequired,
6589
- journal_id: PropTypes.string.isRequired,
6567
+ journal_id: PropTypes.string,
6590
6568
  effective_at: PropTypes.string.isRequired,
6591
6569
  timestamp: PropTypes.string,
6592
6570
  });
@@ -7312,6 +7290,23 @@ T['io.flow.internal.v0.models.search_item_summary'] = PropTypes.exact({
7312
7290
  name: PropTypes.string.isRequired,
7313
7291
  });
7314
7292
 
7293
+ T['io.flow.internal.v0.models.generate_load_multiple_orgs'] = PropTypes.exact({
7294
+ discriminator: PropTypes.oneOf(['generate_load_multiple_orgs']).isRequired,
7295
+ organization_ids: PropTypes.arrayOf(PropTypes.string).isRequired,
7296
+ num_events: PropTypes.number.isRequired,
7297
+ });
7298
+
7299
+ T['io.flow.internal.v0.models.generate_load_single_org'] = PropTypes.exact({
7300
+ discriminator: PropTypes.oneOf(['generate_load_single_org']).isRequired,
7301
+ organization_id: PropTypes.string.isRequired,
7302
+ num_events: PropTypes.number.isRequired,
7303
+ });
7304
+
7305
+ T['io.flow.internal.v0.unions.generate_load'] = PropTypes.oneOfType([
7306
+ T['io.flow.internal.v0.models.generate_load_single_org'],
7307
+ T['io.flow.internal.v0.models.generate_load_multiple_orgs'],
7308
+ ]);
7309
+
7315
7310
  T['io.flow.internal.v0.models.fuel_surcharge_service_fee_percent_put_form'] = PropTypes.exact({
7316
7311
  discriminator: PropTypes.oneOf(['fuel_surcharge_service_fee_percent_put_form']).isRequired,
7317
7312
  percent: PropTypes.number.isRequired,
@@ -7371,6 +7366,13 @@ T['io.flow.internal.v0.models.authorization_bundle_deleted'] = PropTypes.exact({
7371
7366
  id: PropTypes.string.isRequired,
7372
7367
  });
7373
7368
 
7369
+ T['io.flow.internal.v0.models.organization_status_change_deleted'] = PropTypes.exact({
7370
+ discriminator: PropTypes.oneOf(['organization_status_change_deleted']).isRequired,
7371
+ event_id: PropTypes.string.isRequired,
7372
+ timestamp: PropTypes.string.isRequired,
7373
+ id: PropTypes.string.isRequired,
7374
+ });
7375
+
7374
7376
  T['io.flow.internal.v0.models.order_fulfillment_deleted'] = PropTypes.exact({
7375
7377
  discriminator: PropTypes.oneOf(['order_fulfillment_deleted']).isRequired,
7376
7378
  event_id: PropTypes.string.isRequired,
@@ -7805,6 +7807,14 @@ T['io.flow.internal.v0.models.localized_content_upserted'] = PropTypes.exact({
7805
7807
  source_localization_id: PropTypes.string.isRequired,
7806
7808
  });
7807
7809
 
7810
+ T['io.flow.internal.v0.models.catalog_settings_deleted'] = PropTypes.exact({
7811
+ discriminator: PropTypes.oneOf(['catalog_settings_deleted']).isRequired,
7812
+ event_id: PropTypes.string.isRequired,
7813
+ timestamp: PropTypes.string.isRequired,
7814
+ organization: PropTypes.string.isRequired,
7815
+ id: PropTypes.string.isRequired,
7816
+ });
7817
+
7808
7818
  T['io.flow.internal.v0.models.carrier_account_deleted'] = PropTypes.exact({
7809
7819
  discriminator: PropTypes.oneOf(['carrier_account_deleted']).isRequired,
7810
7820
  event_id: PropTypes.string.isRequired,
@@ -7927,14 +7937,6 @@ T['io.flow.internal.v0.models.account_deleted_v2'] = PropTypes.exact({
7927
7937
  id: PropTypes.string.isRequired,
7928
7938
  });
7929
7939
 
7930
- T['io.flow.internal.v0.models.test_deleted'] = PropTypes.exact({
7931
- discriminator: PropTypes.oneOf(['test_deleted']).isRequired,
7932
- event_id: PropTypes.string.isRequired,
7933
- timestamp: PropTypes.string.isRequired,
7934
- organization: PropTypes.string.isRequired,
7935
- id: PropTypes.string.isRequired,
7936
- });
7937
-
7938
7940
  T['io.flow.internal.v0.models.waste_electrical_and_electronic_equipment_compliance_form'] = PropTypes.exact({
7939
7941
  discriminator: PropTypes.oneOf(['weee']).isRequired,
7940
7942
  label: PropTypes.string.isRequired,
@@ -8008,7 +8010,7 @@ T['io.flow.internal.v0.models.channel_rate_metadata_rate'] = PropTypes.exact({
8008
8010
  spot_rate: PropTypes.number.isRequired,
8009
8011
  flow_margin: PropTypes.number.isRequired,
8010
8012
  flow_rate: PropTypes.number.isRequired,
8011
- journal_id: PropTypes.string.isRequired,
8013
+ journal_id: PropTypes.string,
8012
8014
  effective_at: PropTypes.string.isRequired,
8013
8015
  timestamp: PropTypes.string,
8014
8016
  });
@@ -8240,19 +8242,6 @@ T['io.flow.internal.v0.models.time_to_classify_aggregated_deleted'] = PropTypes.
8240
8242
  time_to_classify_aggregated: T['io.flow.internal.v0.models.time_to_classify_aggregated'].isRequired,
8241
8243
  });
8242
8244
 
8243
- T['io.flow.internal.v0.models.test'] = PropTypes.exact({
8244
- id: PropTypes.string.isRequired,
8245
- name: PropTypes.string.isRequired,
8246
- });
8247
-
8248
- T['io.flow.internal.v0.models.test_upserted'] = PropTypes.exact({
8249
- discriminator: PropTypes.oneOf(['test_upserted']).isRequired,
8250
- event_id: PropTypes.string.isRequired,
8251
- timestamp: PropTypes.string.isRequired,
8252
- organization: PropTypes.string.isRequired,
8253
- test: T['io.flow.internal.v0.models.test'].isRequired,
8254
- });
8255
-
8256
8245
  T['io.flow.internal.v0.models.taxonomy_node'] = PropTypes.exact({
8257
8246
  id: PropTypes.string.isRequired,
8258
8247
  children: PropTypes.arrayOf(PropTypes.any),
@@ -8731,6 +8720,26 @@ T['io.flow.internal.v0.models.shopify_promo_form'] = PropTypes.exact({
8731
8720
  behaviors: PropTypes.arrayOf(T['io.flow.internal.v0.enums.shopify_promotion_behavior']),
8732
8721
  });
8733
8722
 
8723
+ T['io.flow.internal.v0.models.fulfillment_snapshot'] = PropTypes.exact({
8724
+ tracking_source: PropTypes.string.isRequired,
8725
+ fulfillment_status: PropTypes.string,
8726
+ is_fulfillment_fulfilled: PropTypes.bool,
8727
+ in_transit_created_at: PropTypes.string,
8728
+ has_shipping_notification: PropTypes.bool.isRequired,
8729
+ fulfillment_created_at: PropTypes.string,
8730
+ fulfillment_updated_at: PropTypes.string,
8731
+ });
8732
+
8733
+ T['io.flow.internal.v0.models.shopify_order_fulfillments_snapshot'] = PropTypes.exact({
8734
+ id: PropTypes.string.isRequired,
8735
+ organization_id: PropTypes.string.isRequired,
8736
+ order_number: PropTypes.number.isRequired,
8737
+ order_created_at: PropTypes.string.isRequired,
8738
+ is_order_fulfilled: PropTypes.bool.isRequired,
8739
+ should_be_fulfilled: PropTypes.bool.isRequired,
8740
+ fulfillment_snapshots: PropTypes.arrayOf(T['io.flow.internal.v0.models.fulfillment_snapshot']).isRequired,
8741
+ });
8742
+
8734
8743
  T['io.flow.internal.v0.models.shopify_order_line_attribute'] = PropTypes.exact({
8735
8744
  key: PropTypes.string.isRequired,
8736
8745
  name: PropTypes.string.isRequired,
@@ -9592,6 +9601,18 @@ T['io.flow.internal.v0.models.passphrase'] = PropTypes.exact({
9592
9601
  challenge_text: PropTypes.string.isRequired,
9593
9602
  });
9594
9603
 
9604
+ T['io.flow.partner.v0.enums.label_format'] = PropTypes.oneOf(['pdf', 'zpl', 'all']);
9605
+
9606
+ T['io.flow.internal.v0.models.partner_organization_settings_form'] = PropTypes.exact({
9607
+ label_format: T['io.flow.partner.v0.enums.label_format'].isRequired,
9608
+ glbe_merchant_guid: PropTypes.string,
9609
+ });
9610
+
9611
+ T['io.flow.internal.v0.models.partner_organization_settings'] = PropTypes.exact({
9612
+ label_format: T['io.flow.partner.v0.enums.label_format'].isRequired,
9613
+ glbe_merchant_guid: PropTypes.string.isRequired,
9614
+ });
9615
+
9595
9616
  T['io.flow.common.v0.enums.currency_label_formatter'] = PropTypes.oneOf(['strip_trailing_zeros', 'symbol_prefix', 'symbol_suffix']);
9596
9617
  T['io.flow.common.v0.enums.currency_symbol_format'] = PropTypes.oneOf(['narrow', 'primary']);
9597
9618
 
@@ -9676,6 +9697,7 @@ T['io.flow.internal.v0.models.restriction_organization_status'] = PropTypes.exac
9676
9697
  full_review_start_date: PropTypes.string,
9677
9698
  full_review_end_date: PropTypes.string,
9678
9699
  reason: PropTypes.string,
9700
+ updated_at: PropTypes.string.isRequired,
9679
9701
  });
9680
9702
 
9681
9703
  T['io.flow.internal.v0.models.restriction_organization_status_upserted'] = PropTypes.exact({
@@ -9899,7 +9921,7 @@ T['io.flow.organization.onboarding.state.v0.models.merchant_activated'] = PropTy
9899
9921
 
9900
9922
  T['io.flow.organization.onboarding.state.v0.models.setup_completed'] = PropTypes.exact({
9901
9923
  discriminator: PropTypes.oneOf(['setup_completed']).isRequired,
9902
- third_party_logistics_guid: PropTypes.string.isRequired,
9924
+ third_party_logistics_guid: PropTypes.string,
9903
9925
  });
9904
9926
 
9905
9927
  T['io.flow.organization.onboarding.state.v0.models.setup_blocked'] = PropTypes.exact({
@@ -9951,6 +9973,7 @@ T['io.flow.internal.v0.models.onboarding_organization'] = PropTypes.exact({
9951
9973
  onboarding_current_state: T['io.flow.organization.onboarding.state.v0.unions.onboarding_state'].isRequired,
9952
9974
  setup_completed_at: PropTypes.string,
9953
9975
  gmv: PropTypes.number.isRequired,
9976
+ health_score: PropTypes.number.isRequired,
9954
9977
  });
9955
9978
 
9956
9979
  T['io.flow.common.v0.enums.user_status'] = PropTypes.oneOf(['pending', 'active', 'inactive']);
@@ -10028,6 +10051,21 @@ T['io.flow.merchant.onboarding.v0.models.onboarding_organization_reference'] = P
10028
10051
  status: T['io.flow.common.v0.enums.organization_status'].isRequired,
10029
10052
  });
10030
10053
 
10054
+ T['io.flow.internal.v0.models.organization_status_change'] = PropTypes.exact({
10055
+ id: PropTypes.string.isRequired,
10056
+ organization: PropTypes.string.isRequired,
10057
+ previous_status: T['io.flow.common.v0.enums.organization_status'],
10058
+ status: T['io.flow.common.v0.enums.organization_status'].isRequired,
10059
+ status_set_at: PropTypes.string.isRequired,
10060
+ });
10061
+
10062
+ T['io.flow.internal.v0.models.organization_status_change_upserted'] = PropTypes.exact({
10063
+ discriminator: PropTypes.oneOf(['organization_status_change_upserted']).isRequired,
10064
+ event_id: PropTypes.string.isRequired,
10065
+ timestamp: PropTypes.string.isRequired,
10066
+ organization_status_change: T['io.flow.internal.v0.models.organization_status_change'].isRequired,
10067
+ });
10068
+
10031
10069
  T['io.flow.shopify.markets.v0.models.shopify_order_metafield'] = PropTypes.exact({
10032
10070
  id: PropTypes.number.isRequired,
10033
10071
  key: PropTypes.string.isRequired,
@@ -10661,7 +10699,6 @@ T['io.flow.internal.v0.models.manual_transaction_form'] = PropTypes.exact({
10661
10699
  });
10662
10700
 
10663
10701
  T['io.flow.internal.v0.enums.manual_review_rule_status'] = PropTypes.oneOf(['active', 'archived']);
10664
- T['io.flow.internal.v0.enums.billing_statement_review_status'] = PropTypes.oneOf(['approved', 'pending']);
10665
10702
 
10666
10703
  T['io.flow.internal.v0.models.loyalty_program_reward'] = PropTypes.exact({
10667
10704
  id: PropTypes.string.isRequired,
@@ -10964,6 +11001,7 @@ T['io.flow.experience.v0.models.order_service_change'] = PropTypes.exact({
10964
11001
 
10965
11002
  T['io.flow.label.v0.models.shipping_label_document'] = PropTypes.exact({
10966
11003
  zpl: PropTypes.string,
11004
+ zpl_url: PropTypes.string,
10967
11005
  pdf: PropTypes.string,
10968
11006
  pdf_data: PropTypes.string,
10969
11007
  png: PropTypes.string,
@@ -11330,6 +11368,11 @@ T['io.flow.payment.gateway.v0.models.action_redirect'] = PropTypes.exact({
11330
11368
  data: PropTypes.object,
11331
11369
  });
11332
11370
 
11371
+ T['io.flow.payment.gateway.v0.models.payment_request_review'] = PropTypes.exact({
11372
+ status: T['io.flow.payment.gateway.v0.enums.payment_request_review_status'].isRequired,
11373
+ checks: PropTypes.arrayOf(T['io.flow.payment.gateway.v0.models.payment_request_review_check']).isRequired,
11374
+ });
11375
+
11333
11376
  T['io.flow.payment.gateway.v0.unions.payment_capture_option'] = PropTypes.oneOfType([
11334
11377
  T['io.flow.payment.gateway.v0.models.payment_capture_option_automatic_immediate'],
11335
11378
  T['io.flow.payment.gateway.v0.models.payment_capture_option_manual'],
@@ -11678,6 +11721,17 @@ T['io.flow.order.management.v0.models.fulfillment_line_cancel_form'] = PropTypes
11678
11721
  T['io.flow.order.management.v0.enums.cancel_reason'] = PropTypes.oneOf(['out_of_stock', 'consumer_requested', 'flow_cancel']);
11679
11722
  T['io.flow.order.management.v0.enums.order_change_source'] = PropTypes.oneOf(['consumer', 'retailer', 'fulfillment', 'flow', 'carrier']);
11680
11723
 
11724
+ T['io.flow.partner.v0.models.partner_fulfillment_complete_cancellation_form'] = PropTypes.exact({
11725
+ change_source: T['io.flow.order.management.v0.enums.order_change_source'].isRequired,
11726
+ reason: T['io.flow.order.management.v0.enums.cancel_reason'].isRequired,
11727
+ });
11728
+
11729
+ T['io.flow.partner.v0.models.partner_fulfillment_cancellation_form'] = PropTypes.exact({
11730
+ change_source: T['io.flow.order.management.v0.enums.order_change_source'].isRequired,
11731
+ reason: T['io.flow.order.management.v0.enums.cancel_reason'].isRequired,
11732
+ lines: PropTypes.arrayOf(T['io.flow.order.management.v0.models.fulfillment_line_cancel_form']).isRequired,
11733
+ });
11734
+
11681
11735
  T['io.flow.order.management.v0.models.fulfillment_complete_cancellation_form'] = PropTypes.exact({
11682
11736
  change_source: T['io.flow.order.management.v0.enums.order_change_source'].isRequired,
11683
11737
  reason: T['io.flow.order.management.v0.enums.cancel_reason'].isRequired,
@@ -11964,6 +12018,22 @@ T['io.flow.internal.v0.models.financial_reporting_statement'] = PropTypes.exact(
11964
12018
  adjustments_url: PropTypes.string,
11965
12019
  });
11966
12020
 
12021
+ T['io.flow.billing.bank.account.v0.models.bank_account_info_usa'] = PropTypes.exact({
12022
+ discriminator: PropTypes.oneOf(['usa']).isRequired,
12023
+ routing_number: PropTypes.string.isRequired,
12024
+ account_number: PropTypes.string.isRequired,
12025
+ });
12026
+
12027
+ T['io.flow.internal.v0.models.finance_bank_account_owner'] = PropTypes.exact({
12028
+ name: PropTypes.string.isRequired,
12029
+ });
12030
+
12031
+ T['io.flow.billing.bank.account.v0.unions.bank_account_info'] = PropTypes.oneOfType([T['io.flow.billing.bank.account.v0.models.bank_account_info_usa']]);
12032
+
12033
+ T['io.flow.billing.v0.models.bank_account_form'] = PropTypes.exact({
12034
+ info: T['io.flow.billing.bank.account.v0.unions.bank_account_info'].isRequired,
12035
+ });
12036
+
11967
12037
  T['io.flow.internal.v0.models.file_metadata_counts'] = PropTypes.exact({
11968
12038
  transactions: PropTypes.number.isRequired,
11969
12039
  statements: PropTypes.number.isRequired,
@@ -13420,6 +13490,18 @@ T['io.flow.internal.v0.models.classification_statistics'] = PropTypes.exact({
13420
13490
  number_of_items: PropTypes.number.isRequired,
13421
13491
  });
13422
13492
 
13493
+ T['io.flow.internal.v0.models.harmonization_classification_statistics_data'] = PropTypes.exact({
13494
+ statistics: T['io.flow.internal.v0.models.classification_statistics'].isRequired,
13495
+ });
13496
+
13497
+ T['io.flow.internal.v0.models.harmonization_classification_statistics_published'] = PropTypes.exact({
13498
+ discriminator: PropTypes.oneOf(['harmonization_classification_statistics_published']).isRequired,
13499
+ event_id: PropTypes.string.isRequired,
13500
+ timestamp: PropTypes.string.isRequired,
13501
+ organization: PropTypes.string.isRequired,
13502
+ data: T['io.flow.internal.v0.models.harmonization_classification_statistics_data'].isRequired,
13503
+ });
13504
+
13423
13505
  T['io.flow.internal.v0.models.attribute_label'] = PropTypes.exact({
13424
13506
  value: PropTypes.string.isRequired,
13425
13507
  unverified: PropTypes.bool.isRequired,
@@ -14243,6 +14325,7 @@ T['io.flow.payment.gateway.v0.models.payment_request'] = PropTypes.exact({
14243
14325
  payment_information: T['io.flow.payment.gateway.v0.models.payment_information'].isRequired,
14244
14326
  supported_actions: PropTypes.arrayOf(T['io.flow.payment.gateway.v0.enums.payment_action_type']).isRequired,
14245
14327
  payment_capture_option: T['io.flow.payment.gateway.v0.unions.payment_capture_option'],
14328
+ review: T['io.flow.payment.gateway.v0.models.payment_request_review'],
14246
14329
  });
14247
14330
 
14248
14331
  T['io.flow.internal.v0.models.internal_payment_request'] = PropTypes.exact({
@@ -14471,6 +14554,8 @@ T['io.flow.payment.v0.unions.authorization_result_action_details'] = PropTypes.o
14471
14554
  T['io.flow.payment.v0.models.stripe_authorization_result_action_details'],
14472
14555
  T['io.flow.payment.v0.models.threeds_identify_action_details'],
14473
14556
  T['io.flow.payment.v0.models.threeds_challenge_action_details'],
14557
+ T['io.flow.payment.v0.models.applepay_sdk_create_result_action_details'],
14558
+ T['io.flow.payment.v0.models.applepay_sdk_validate_result_action_details'],
14474
14559
  T['io.flow.payment.v0.models.klarna_sdk_authorization_result_action_details'],
14475
14560
  T['io.flow.payment.v0.models.select_issuer_option_action_details'],
14476
14561
  ]);
@@ -17059,6 +17144,7 @@ T['io.flow.internal.v0.enums.channel_order_acceptance_rejection_reason'] = PropT
17059
17144
  'shipping_estimation_failed',
17060
17145
  'payment_authorization_failed',
17061
17146
  'unsupported_subsidized_order',
17147
+ 'unsupported_virtual_goods',
17062
17148
  ]);
17063
17149
 
17064
17150
  T['io.flow.internal.v0.models.channel_order_acceptance_reason'] = PropTypes.exact({
@@ -17639,9 +17725,18 @@ T['io.flow.internal.v0.models.catalog_settings_put_form'] = PropTypes.exact({
17639
17725
  });
17640
17726
 
17641
17727
  T['io.flow.internal.v0.models.catalog_settings'] = PropTypes.exact({
17728
+ id: PropTypes.string.isRequired,
17642
17729
  mixed_bag_weight: T['io.flow.internal.v0.enums.mixed_bag_weight'].isRequired,
17643
17730
  });
17644
17731
 
17732
+ T['io.flow.internal.v0.models.catalog_settings_upserted'] = PropTypes.exact({
17733
+ discriminator: PropTypes.oneOf(['catalog_settings_upserted']).isRequired,
17734
+ event_id: PropTypes.string.isRequired,
17735
+ timestamp: PropTypes.string.isRequired,
17736
+ organization: PropTypes.string.isRequired,
17737
+ catalog_settings: T['io.flow.internal.v0.models.catalog_settings'].isRequired,
17738
+ });
17739
+
17645
17740
  T['io.flow.catalog.v0.enums.subcatalog_item_status'] = PropTypes.oneOf(['excluded', 'included', 'restricted']);
17646
17741
 
17647
17742
  T['io.flow.shopify.v0.models.shopify_variant_flow_metafield'] = PropTypes.exact({
@@ -17830,6 +17925,23 @@ T['io.flow.fulfillment.v0.models.service_summary'] = PropTypes.exact({
17830
17925
  center_code: PropTypes.string,
17831
17926
  });
17832
17927
 
17928
+ T['io.flow.partner.v0.models.partner_manifest'] = PropTypes.exact({
17929
+ id: PropTypes.string.isRequired,
17930
+ organization: T['io.flow.partner.v0.models.partner_organization_reference'].isRequired,
17931
+ service: T['io.flow.fulfillment.v0.models.service_summary'],
17932
+ timestamp: PropTypes.string.isRequired,
17933
+ shipping_labels: PropTypes.arrayOf(T['io.flow.label.v0.models.shipping_label_summary']).isRequired,
17934
+ pdf: PropTypes.string,
17935
+ });
17936
+
17937
+ T['io.flow.partner.v0.models.partner_bridge_manifest'] = PropTypes.exact({
17938
+ id: PropTypes.string.isRequired,
17939
+ organization: T['io.flow.partner.v0.models.partner_organization_reference'].isRequired,
17940
+ service: T['io.flow.fulfillment.v0.models.service_summary'].isRequired,
17941
+ pdf: PropTypes.string.isRequired,
17942
+ data: PropTypes.string.isRequired,
17943
+ });
17944
+
17833
17945
  T['io.flow.fulfillment.v0.unions.service_description'] = PropTypes.oneOfType([
17834
17946
  T['io.flow.fulfillment.v0.models.service_summary'],
17835
17947
  T['io.flow.fulfillment.v0.models.service_unknown'],
@@ -18678,7 +18790,7 @@ T['io.flow.internal.v0.models.billing_order_summary'] = PropTypes.exact({
18678
18790
  });
18679
18791
 
18680
18792
  T['io.flow.billing.v0.enums.payout_status_failure_code'] = PropTypes.oneOf(['invalid_account_number', 'could_not_process']);
18681
- T['io.flow.internal.v0.enums.bank_payment_status_code'] = PropTypes.oneOf(['sent', 'failed']);
18793
+ T['io.flow.internal.v0.enums.bank_payment_status_code'] = PropTypes.oneOf(['scheduled', 'sent', 'failed']);
18682
18794
 
18683
18795
  T['io.flow.internal.v0.models.bank_payment_status_form'] = PropTypes.exact({
18684
18796
  code: T['io.flow.internal.v0.enums.bank_payment_status_code'].isRequired,
@@ -18737,6 +18849,7 @@ T['io.flow.billing.v0.models.organization_payout'] = PropTypes.exact({
18737
18849
  id: PropTypes.string.isRequired,
18738
18850
  account: T['io.flow.billing.v0.models.account_reference'].isRequired,
18739
18851
  status: T['io.flow.billing.v0.unions.payout_status'].isRequired,
18852
+ bank_account: T['io.flow.billing.v0.models.bank_account_summary'],
18740
18853
  amount: PropTypes.number.isRequired,
18741
18854
  attachments: PropTypes.arrayOf(T['io.flow.billing.v0.models.payout_attachment']).isRequired,
18742
18855
  created_at: PropTypes.string.isRequired,
@@ -18756,6 +18869,7 @@ T['io.flow.billing.v0.models.channel_payout'] = PropTypes.exact({
18756
18869
  id: PropTypes.string.isRequired,
18757
18870
  account: T['io.flow.billing.v0.models.account_reference'].isRequired,
18758
18871
  status: T['io.flow.billing.v0.unions.payout_status'].isRequired,
18872
+ bank_account: T['io.flow.billing.v0.models.bank_account_summary'],
18759
18873
  amount: PropTypes.number.isRequired,
18760
18874
  attachments: PropTypes.arrayOf(T['io.flow.billing.v0.models.payout_attachment']).isRequired,
18761
18875
  created_at: PropTypes.string.isRequired,
@@ -19001,6 +19115,14 @@ T['io.flow.fulfillment.v0.models.center_summary'] = PropTypes.exact({
19001
19115
  address: T['io.flow.fulfillment.v0.models.shipping_address'],
19002
19116
  });
19003
19117
 
19118
+ T['io.flow.partner.v0.models.partner_fulfillment'] = PropTypes.exact({
19119
+ organization: PropTypes.string.isRequired,
19120
+ key: PropTypes.string.isRequired,
19121
+ number: PropTypes.string.isRequired,
19122
+ items: PropTypes.arrayOf(T['io.flow.order.management.v0.models.fulfillment_item']).isRequired,
19123
+ center: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.center_summary']),
19124
+ });
19125
+
19004
19126
  T['io.flow.internal.v0.models.order_fulfillment_upserted'] = PropTypes.exact({
19005
19127
  discriminator: PropTypes.oneOf(['order_fulfillment_upserted']).isRequired,
19006
19128
  event_id: PropTypes.string.isRequired,
@@ -19075,15 +19197,32 @@ T['io.flow.experience.v0.models.order_builder_customer_invoice_address_form'] =
19075
19197
  address: T['io.flow.common.v0.models.billing_address'].isRequired,
19076
19198
  });
19077
19199
 
19078
- T['io.flow.payment.v0.models.inline_authorization_form'] = PropTypes.exact({
19079
- discriminator: PropTypes.oneOf(['inline_authorization_form']).isRequired,
19080
- method: PropTypes.string.isRequired,
19081
- issuer: T['io.flow.payment.v0.models.issuer_reference'],
19082
- order_number: PropTypes.string.isRequired,
19083
- amount: PropTypes.number.isRequired,
19084
- currency: PropTypes.string.isRequired,
19085
- billing_address: T['io.flow.common.v0.models.billing_address'],
19086
- key: PropTypes.string,
19200
+ T['io.flow.common.v0.models.customer_invoice'] = PropTypes.exact({
19201
+ address: T['io.flow.common.v0.models.billing_address'],
19202
+ });
19203
+
19204
+ T['io.flow.common.v0.models.order_customer_form'] = PropTypes.exact({
19205
+ name: T['io.flow.common.v0.models.name'],
19206
+ number: PropTypes.string,
19207
+ phone: PropTypes.string,
19208
+ email: PropTypes.string,
19209
+ address: T['io.flow.common.v0.models.billing_address'],
19210
+ invoice: T['io.flow.common.v0.models.customer_invoice'],
19211
+ });
19212
+
19213
+ T['io.flow.experience.v0.models.order_builder_customer_form'] = PropTypes.exact({
19214
+ customer: T['io.flow.common.v0.models.order_customer_form'].isRequired,
19215
+ });
19216
+
19217
+ T['io.flow.payment.v0.models.inline_authorization_form'] = PropTypes.exact({
19218
+ discriminator: PropTypes.oneOf(['inline_authorization_form']).isRequired,
19219
+ method: PropTypes.string.isRequired,
19220
+ issuer: T['io.flow.payment.v0.models.issuer_reference'],
19221
+ order_number: PropTypes.string.isRequired,
19222
+ amount: PropTypes.number.isRequired,
19223
+ currency: PropTypes.string.isRequired,
19224
+ billing_address: T['io.flow.common.v0.models.billing_address'],
19225
+ key: PropTypes.string,
19087
19226
  attributes: PropTypes.objectOf(PropTypes.string),
19088
19227
  ip: PropTypes.string,
19089
19228
  payload: T['io.flow.payment.v0.models.authorization_payload'],
@@ -19182,23 +19321,6 @@ T['io.flow.payment.v0.models.ach_authorization_form'] = PropTypes.exact({
19182
19321
  ip: PropTypes.string,
19183
19322
  });
19184
19323
 
19185
- T['io.flow.common.v0.models.customer_invoice'] = PropTypes.exact({
19186
- address: T['io.flow.common.v0.models.billing_address'],
19187
- });
19188
-
19189
- T['io.flow.common.v0.models.order_customer_form'] = PropTypes.exact({
19190
- name: T['io.flow.common.v0.models.name'],
19191
- number: PropTypes.string,
19192
- phone: PropTypes.string,
19193
- email: PropTypes.string,
19194
- address: T['io.flow.common.v0.models.billing_address'],
19195
- invoice: T['io.flow.common.v0.models.customer_invoice'],
19196
- });
19197
-
19198
- T['io.flow.experience.v0.models.order_builder_customer_form'] = PropTypes.exact({
19199
- customer: T['io.flow.common.v0.models.order_customer_form'].isRequired,
19200
- });
19201
-
19202
19324
  T['io.flow.internal.v0.models.ups_registration_form'] = PropTypes.exact({
19203
19325
  username: PropTypes.string.isRequired,
19204
19326
  password: PropTypes.string.isRequired,
@@ -21146,168 +21268,6 @@ T['io.flow.internal.v0.models.ratecard_lane_aggregate_deleted'] = PropTypes.exac
21146
21268
  ratecard_aggregate: T['io.flow.internal.v0.models.ratecard_lane_aggregate'].isRequired,
21147
21269
  });
21148
21270
 
21149
- T['io.flow.label.v0.models.shipping_label_hop_summary'] = PropTypes.exact({
21150
- lane: T['io.flow.label.v0.models.shipping_label_lane_summary'].isRequired,
21151
- cost: T['io.flow.common.v0.models.money'].isRequired,
21152
- });
21153
-
21154
- T['io.flow.payment.v0.models.virtual_card_form'] = PropTypes.exact({
21155
- limit: T['io.flow.common.v0.models.money'].isRequired,
21156
- attributes: PropTypes.objectOf(PropTypes.string),
21157
- });
21158
-
21159
- T['io.flow.payment.v0.models.reversal'] = PropTypes.exact({
21160
- id: PropTypes.string.isRequired,
21161
- key: PropTypes.string.isRequired,
21162
- authorization: T['io.flow.payment.v0.models.authorization_reference'].isRequired,
21163
- status: T['io.flow.payment.v0.enums.reversal_status'].isRequired,
21164
- amount: PropTypes.number.isRequired,
21165
- currency: PropTypes.string.isRequired,
21166
- requested: T['io.flow.common.v0.models.money'].isRequired,
21167
- created_at: PropTypes.string.isRequired,
21168
- attributes: PropTypes.objectOf(PropTypes.string).isRequired,
21169
- base: T['io.flow.common.v0.models.money'],
21170
- });
21171
-
21172
- T['io.flow.payment.v0.models.reversal_version'] = PropTypes.exact({
21173
- id: PropTypes.string.isRequired,
21174
- timestamp: PropTypes.string.isRequired,
21175
- type: T['io.flow.common.v0.enums.change_type'].isRequired,
21176
- reversal: T['io.flow.payment.v0.models.reversal'].isRequired,
21177
- });
21178
-
21179
- T['io.flow.payment.v0.models.online_authorization'] = PropTypes.exact({
21180
- discriminator: PropTypes.oneOf(['online_authorization']).isRequired,
21181
- id: PropTypes.string.isRequired,
21182
- key: PropTypes.string.isRequired,
21183
- method: T['io.flow.reference.v0.models.payment_method'],
21184
- merchant_of_record: T['io.flow.common.v0.enums.merchant_of_record'],
21185
- details: T['io.flow.payment.v0.unions.online_authorization_details'],
21186
- payment: PropTypes.object,
21187
- amount: PropTypes.number.isRequired,
21188
- currency: PropTypes.string.isRequired,
21189
- requested: T['io.flow.common.v0.models.money'],
21190
- customer: T['io.flow.common.v0.models.order_customer'].isRequired,
21191
- attributes: PropTypes.objectOf(PropTypes.string).isRequired,
21192
- destination: T['io.flow.common.v0.models.address'],
21193
- billing_address: T['io.flow.common.v0.models.billing_address'],
21194
- order: T['io.flow.payment.v0.models.authorization_order_reference'],
21195
- payment_order_reference: T['io.flow.payment.v0.unions.payment_order_reference'],
21196
- ip: PropTypes.string,
21197
- result: T['io.flow.payment.v0.models.authorization_result'].isRequired,
21198
- created_at: PropTypes.string.isRequired,
21199
- expires_at: PropTypes.string,
21200
- base: T['io.flow.common.v0.models.money'],
21201
- processor: T['io.flow.payment.v0.unions.expandable_payment_processor'],
21202
- confirmation_details: T['io.flow.payment.v0.unions.confirmation_details'],
21203
- });
21204
-
21205
- T['io.flow.payment.v0.models.card_authorization'] = PropTypes.exact({
21206
- discriminator: PropTypes.oneOf(['card_authorization']).isRequired,
21207
- id: PropTypes.string.isRequired,
21208
- key: PropTypes.string.isRequired,
21209
- merchant_of_record: T['io.flow.common.v0.enums.merchant_of_record'],
21210
- method: T['io.flow.reference.v0.models.payment_method'],
21211
- card: T['io.flow.payment.v0.unions.expandable_card'].isRequired,
21212
- amount: PropTypes.number.isRequired,
21213
- currency: PropTypes.string.isRequired,
21214
- requested: T['io.flow.common.v0.models.money'],
21215
- customer: T['io.flow.common.v0.models.order_customer'].isRequired,
21216
- attributes: PropTypes.objectOf(PropTypes.string).isRequired,
21217
- destination: T['io.flow.common.v0.models.address'],
21218
- billing_address: T['io.flow.common.v0.models.billing_address'],
21219
- order: T['io.flow.payment.v0.models.authorization_order_reference'],
21220
- payment_order_reference: T['io.flow.payment.v0.unions.payment_order_reference'],
21221
- ip: PropTypes.string,
21222
- result: T['io.flow.payment.v0.models.authorization_result'].isRequired,
21223
- created_at: PropTypes.string.isRequired,
21224
- expires_at: PropTypes.string,
21225
- base: T['io.flow.common.v0.models.money'],
21226
- processor: T['io.flow.payment.v0.unions.expandable_payment_processor'],
21227
- });
21228
-
21229
- T['io.flow.payment.v0.unions.authorization'] = PropTypes.oneOfType([
21230
- T['io.flow.payment.v0.models.card_authorization'],
21231
- T['io.flow.payment.v0.models.online_authorization'],
21232
- ]);
21233
-
21234
- T['io.flow.payment.v0.models.authorization_version'] = PropTypes.exact({
21235
- id: PropTypes.string.isRequired,
21236
- timestamp: PropTypes.string.isRequired,
21237
- type: T['io.flow.common.v0.enums.change_type'].isRequired,
21238
- authorization: T['io.flow.payment.v0.unions.authorization'].isRequired,
21239
- });
21240
-
21241
- T['io.flow.internal.v0.models.markets_order'] = PropTypes.exact({
21242
- shopify_order: T['io.flow.shopify.markets.v0.models.shopify_order'].isRequired,
21243
- flow_authorization: T['io.flow.payment.v0.unions.authorization'],
21244
- });
21245
-
21246
- T['io.flow.internal.v0.models.checkout_payment'] = PropTypes.exact({
21247
- authorizations: PropTypes.arrayOf(T['io.flow.payment.v0.unions.authorization']).isRequired,
21248
- sources: PropTypes.arrayOf(T['io.flow.payment.v0.unions.payment_source']).isRequired,
21249
- public_key: T['io.flow.payment.v0.models.public_key'].isRequired,
21250
- method_types: PropTypes.arrayOf(T['io.flow.reference.v0.enums.payment_method_type']).isRequired,
21251
- method_rules: PropTypes.arrayOf(T['io.flow.experience.v0.models.payment_method_rule']).isRequired,
21252
- authorization_parameters: PropTypes.arrayOf(T['io.flow.internal.v0.models.authorization_parameters']).isRequired,
21253
- });
21254
-
21255
- T['io.flow.payment.v0.models.capture'] = PropTypes.exact({
21256
- id: PropTypes.string.isRequired,
21257
- key: PropTypes.string.isRequired,
21258
- authorization: T['io.flow.payment.v0.models.authorization_reference'].isRequired,
21259
- amount: PropTypes.number.isRequired,
21260
- currency: PropTypes.string.isRequired,
21261
- requested: T['io.flow.common.v0.models.money'],
21262
- created_at: PropTypes.string.isRequired,
21263
- attributes: PropTypes.objectOf(PropTypes.string),
21264
- status: T['io.flow.payment.v0.enums.capture_status'],
21265
- base: T['io.flow.common.v0.models.money'],
21266
- });
21267
-
21268
- T['io.flow.payment.v0.models.refund_capture_summary'] = PropTypes.exact({
21269
- capture: T['io.flow.payment.v0.models.capture'].isRequired,
21270
- amount: PropTypes.number.isRequired,
21271
- });
21272
-
21273
- T['io.flow.payment.v0.models.refund'] = PropTypes.exact({
21274
- id: PropTypes.string.isRequired,
21275
- key: PropTypes.string.isRequired,
21276
- authorization: T['io.flow.payment.v0.models.authorization_reference'].isRequired,
21277
- amount: PropTypes.number.isRequired,
21278
- currency: PropTypes.string.isRequired,
21279
- requested: T['io.flow.common.v0.models.money'],
21280
- captures: PropTypes.arrayOf(T['io.flow.payment.v0.models.refund_capture_summary']).isRequired,
21281
- created_at: PropTypes.string.isRequired,
21282
- attributes: PropTypes.objectOf(PropTypes.string),
21283
- status: T['io.flow.payment.v0.enums.refund_status'],
21284
- base: T['io.flow.common.v0.models.money'],
21285
- });
21286
-
21287
- T['io.flow.payment.v0.models.refund_version'] = PropTypes.exact({
21288
- id: PropTypes.string.isRequired,
21289
- timestamp: PropTypes.string.isRequired,
21290
- type: T['io.flow.common.v0.enums.change_type'].isRequired,
21291
- refund: T['io.flow.payment.v0.models.refund'].isRequired,
21292
- });
21293
-
21294
- T['io.flow.payment.v0.models.refund_capture'] = PropTypes.exact({
21295
- id: PropTypes.string.isRequired,
21296
- refund: T['io.flow.payment.v0.models.refund'].isRequired,
21297
- capture: T['io.flow.payment.v0.models.capture'].isRequired,
21298
- amount: PropTypes.number.isRequired,
21299
- currency: PropTypes.string.isRequired,
21300
- base: T['io.flow.common.v0.models.money'].isRequired,
21301
- status: T['io.flow.payment.v0.enums.refund_status'],
21302
- });
21303
-
21304
- T['io.flow.payment.v0.models.capture_version'] = PropTypes.exact({
21305
- id: PropTypes.string.isRequired,
21306
- timestamp: PropTypes.string.isRequired,
21307
- type: T['io.flow.common.v0.enums.change_type'].isRequired,
21308
- capture: T['io.flow.payment.v0.models.capture'].isRequired,
21309
- });
21310
-
21311
21271
  T['io.flow.common.v0.models.price_source_provided'] = PropTypes.exact({
21312
21272
  discriminator: PropTypes.oneOf(['provided']).isRequired,
21313
21273
  price: T['io.flow.common.v0.models.money'].isRequired,
@@ -21542,95 +21502,282 @@ T['io.flow.label.v0.models.shipping_label_package'] = PropTypes.exact({
21542
21502
  reference_number: PropTypes.string,
21543
21503
  });
21544
21504
 
21545
- T['io.flow.label.v0.models.shipping_notification'] = PropTypes.exact({
21546
- id: PropTypes.string.isRequired,
21547
- key: PropTypes.string.isRequired,
21548
- attributes: PropTypes.objectOf(PropTypes.string).isRequired,
21549
- carrier_tracking_number: PropTypes.string.isRequired,
21550
- destination: T['io.flow.fulfillment.v0.models.shipping_address'].isRequired,
21551
- flow_tracking_number: PropTypes.string.isRequired,
21552
- origin: T['io.flow.fulfillment.v0.models.shipping_address'].isRequired,
21553
- 'package': T['io.flow.label.v0.models.shipping_label_package'],
21554
- service: T['io.flow.fulfillment.v0.unions.service_description'].isRequired,
21555
- window: T['io.flow.common.v0.models.datetime_range'],
21556
- order: T['io.flow.label.v0.models.label_order_summary'],
21557
- order_identifier: PropTypes.string,
21558
- fulfillment_key: PropTypes.string,
21559
- shipment_recipient: T['io.flow.label.v0.enums.shipment_recipient'],
21560
- updated_at: PropTypes.string.isRequired,
21561
- });
21505
+ T['io.flow.partner.v0.models.summary_label_form'] = PropTypes.exact({
21506
+ discriminator: PropTypes.oneOf(['summary_label_form']).isRequired,
21507
+ organization: PropTypes.string.isRequired,
21508
+ order_number: PropTypes.string.isRequired,
21509
+ items: PropTypes.arrayOf(T['io.flow.common.v0.models.line_item_form']),
21510
+ 'package': T['io.flow.label.v0.models.shipping_label_package'],
21511
+ center_key: PropTypes.string,
21512
+ });
21513
+
21514
+ T['io.flow.partner.v0.models.detailed_label_form'] = PropTypes.exact({
21515
+ discriminator: PropTypes.oneOf(['detailed_label_form']).isRequired,
21516
+ organization: PropTypes.string.isRequired,
21517
+ destination: T['io.flow.fulfillment.v0.models.shipping_address'].isRequired,
21518
+ order_number: PropTypes.string.isRequired,
21519
+ origin: T['io.flow.fulfillment.v0.models.shipping_address'].isRequired,
21520
+ 'package': T['io.flow.label.v0.models.shipping_label_package'].isRequired,
21521
+ service: PropTypes.string,
21522
+ references: PropTypes.arrayOf(PropTypes.string),
21523
+ });
21524
+
21525
+ T['io.flow.partner.v0.unions.label_form'] = PropTypes.oneOfType([
21526
+ T['io.flow.partner.v0.models.detailed_label_form'],
21527
+ T['io.flow.partner.v0.models.summary_label_form'],
21528
+ ]);
21529
+
21530
+ T['io.flow.label.v0.models.shipping_notification'] = PropTypes.exact({
21531
+ id: PropTypes.string.isRequired,
21532
+ key: PropTypes.string.isRequired,
21533
+ attributes: PropTypes.objectOf(PropTypes.string).isRequired,
21534
+ carrier_tracking_number: PropTypes.string.isRequired,
21535
+ destination: T['io.flow.fulfillment.v0.models.shipping_address'].isRequired,
21536
+ flow_tracking_number: PropTypes.string.isRequired,
21537
+ origin: T['io.flow.fulfillment.v0.models.shipping_address'].isRequired,
21538
+ 'package': T['io.flow.label.v0.models.shipping_label_package'],
21539
+ service: T['io.flow.fulfillment.v0.unions.service_description'].isRequired,
21540
+ window: T['io.flow.common.v0.models.datetime_range'],
21541
+ order: T['io.flow.label.v0.models.label_order_summary'],
21542
+ order_identifier: PropTypes.string,
21543
+ fulfillment_key: PropTypes.string,
21544
+ shipment_recipient: T['io.flow.label.v0.enums.shipment_recipient'],
21545
+ updated_at: PropTypes.string.isRequired,
21546
+ });
21547
+
21548
+ T['io.flow.label.v0.models.shipping_notification_version'] = PropTypes.exact({
21549
+ id: PropTypes.string.isRequired,
21550
+ timestamp: PropTypes.string.isRequired,
21551
+ type: T['io.flow.common.v0.enums.change_type'].isRequired,
21552
+ shipping_notification: T['io.flow.label.v0.models.shipping_notification'].isRequired,
21553
+ });
21554
+
21555
+ T['io.flow.label.v0.models.detailed_shipping_notification_form'] = PropTypes.exact({
21556
+ discriminator: PropTypes.oneOf(['detailed_shipping_notification_form']).isRequired,
21557
+ key: PropTypes.string,
21558
+ attributes: PropTypes.objectOf(PropTypes.string),
21559
+ carrier_tracking_number: PropTypes.string.isRequired,
21560
+ destination: T['io.flow.fulfillment.v0.models.shipping_address'].isRequired,
21561
+ order_number: PropTypes.string.isRequired,
21562
+ 'package': T['io.flow.label.v0.models.shipping_label_package'].isRequired,
21563
+ service: PropTypes.string.isRequired,
21564
+ origin: T['io.flow.fulfillment.v0.models.shipping_address'],
21565
+ shipment_recipient: T['io.flow.label.v0.enums.shipment_recipient'],
21566
+ });
21567
+
21568
+ T['io.flow.label.v0.unions.shipping_notification_form'] = PropTypes.oneOfType([
21569
+ T['io.flow.label.v0.models.detailed_shipping_notification_form'],
21570
+ T['io.flow.label.v0.models.single_package_shipping_notification_form'],
21571
+ T['io.flow.label.v0.models.summary_shipping_notification_form'],
21572
+ ]);
21573
+
21574
+ T['io.flow.label.v0.models.detailed_shipping_label_form'] = PropTypes.exact({
21575
+ discriminator: PropTypes.oneOf(['detailed_shipping_label_form']).isRequired,
21576
+ destination: T['io.flow.fulfillment.v0.models.shipping_address'].isRequired,
21577
+ origin: T['io.flow.fulfillment.v0.models.shipping_address'].isRequired,
21578
+ 'package': T['io.flow.label.v0.models.shipping_label_package'].isRequired,
21579
+ attributes: PropTypes.objectOf(PropTypes.string),
21580
+ delivered_duty: T['io.flow.common.v0.enums.delivered_duty'],
21581
+ direction: T['io.flow.label.v0.enums.direction'],
21582
+ order_number: PropTypes.string,
21583
+ service: PropTypes.string,
21584
+ shipment_recipient: T['io.flow.label.v0.enums.shipment_recipient'],
21585
+ });
21586
+
21587
+ T['io.flow.label.v0.unions.shipping_label_form'] = PropTypes.oneOfType([
21588
+ T['io.flow.label.v0.models.detailed_shipping_label_form'],
21589
+ T['io.flow.label.v0.models.summary_shipping_label_form'],
21590
+ ]);
21591
+
21592
+ T['io.flow.internal.v0.models.label_summary'] = PropTypes.exact({
21593
+ id: PropTypes.string.isRequired,
21594
+ commercial_invoice: PropTypes.string,
21595
+ pdf: PropTypes.string,
21596
+ png: PropTypes.string,
21597
+ recipient: T['io.flow.label.v0.enums.shipment_recipient'],
21598
+ 'package': T['io.flow.label.v0.models.shipping_label_package'],
21599
+ label: T['io.flow.label.v0.models.shipping_label_document'],
21600
+ invoice: T['io.flow.label.v0.models.shipping_label_document'],
21601
+ carrier_tracking_number: PropTypes.string,
21602
+ carrier_tracking_number_url: PropTypes.string,
21603
+ service: T['io.flow.reference.v0.models.carrier_service'],
21604
+ });
21605
+
21606
+ T['io.flow.internal.v0.models.search_tracking_summary'] = PropTypes.exact({
21607
+ timestamp: PropTypes.string.isRequired,
21608
+ description: PropTypes.string.isRequired,
21609
+ number: PropTypes.string.isRequired,
21610
+ status: T['io.flow.tracking.v0.enums.tracking_status'].isRequired,
21611
+ label: T['io.flow.internal.v0.models.label_summary'].isRequired,
21612
+ });
21613
+
21614
+ T['io.flow.internal.v0.models.return_summary'] = PropTypes.exact({
21615
+ id: PropTypes.string.isRequired,
21616
+ items: PropTypes.arrayOf(T['io.flow.return.v0.models.return_line_item']).isRequired,
21617
+ key: PropTypes.string.isRequired,
21618
+ tracking_summary: T['io.flow.internal.v0.models.search_tracking_summary'],
21619
+ });
21620
+
21621
+ T['io.flow.label.v0.models.shipping_label_hop_summary'] = PropTypes.exact({
21622
+ lane: T['io.flow.label.v0.models.shipping_label_lane_summary'].isRequired,
21623
+ cost: T['io.flow.common.v0.models.money'].isRequired,
21624
+ });
21625
+
21626
+ T['io.flow.payment.v0.models.virtual_card_form'] = PropTypes.exact({
21627
+ limit: T['io.flow.common.v0.models.money'].isRequired,
21628
+ attributes: PropTypes.objectOf(PropTypes.string),
21629
+ });
21630
+
21631
+ T['io.flow.payment.v0.models.reversal'] = PropTypes.exact({
21632
+ id: PropTypes.string.isRequired,
21633
+ key: PropTypes.string.isRequired,
21634
+ authorization: T['io.flow.payment.v0.models.authorization_reference'].isRequired,
21635
+ status: T['io.flow.payment.v0.enums.reversal_status'].isRequired,
21636
+ amount: PropTypes.number.isRequired,
21637
+ currency: PropTypes.string.isRequired,
21638
+ requested: T['io.flow.common.v0.models.money'].isRequired,
21639
+ created_at: PropTypes.string.isRequired,
21640
+ attributes: PropTypes.objectOf(PropTypes.string).isRequired,
21641
+ base: T['io.flow.common.v0.models.money'],
21642
+ });
21643
+
21644
+ T['io.flow.payment.v0.models.reversal_version'] = PropTypes.exact({
21645
+ id: PropTypes.string.isRequired,
21646
+ timestamp: PropTypes.string.isRequired,
21647
+ type: T['io.flow.common.v0.enums.change_type'].isRequired,
21648
+ reversal: T['io.flow.payment.v0.models.reversal'].isRequired,
21649
+ });
21650
+
21651
+ T['io.flow.payment.v0.models.online_authorization'] = PropTypes.exact({
21652
+ discriminator: PropTypes.oneOf(['online_authorization']).isRequired,
21653
+ id: PropTypes.string.isRequired,
21654
+ key: PropTypes.string.isRequired,
21655
+ method: T['io.flow.reference.v0.models.payment_method'],
21656
+ merchant_of_record: T['io.flow.common.v0.enums.merchant_of_record'],
21657
+ details: T['io.flow.payment.v0.unions.online_authorization_details'],
21658
+ payment: PropTypes.object,
21659
+ amount: PropTypes.number.isRequired,
21660
+ currency: PropTypes.string.isRequired,
21661
+ requested: T['io.flow.common.v0.models.money'],
21662
+ customer: T['io.flow.common.v0.models.order_customer'].isRequired,
21663
+ attributes: PropTypes.objectOf(PropTypes.string).isRequired,
21664
+ destination: T['io.flow.common.v0.models.address'],
21665
+ billing_address: T['io.flow.common.v0.models.billing_address'],
21666
+ order: T['io.flow.payment.v0.models.authorization_order_reference'],
21667
+ payment_order_reference: T['io.flow.payment.v0.unions.payment_order_reference'],
21668
+ ip: PropTypes.string,
21669
+ result: T['io.flow.payment.v0.models.authorization_result'].isRequired,
21670
+ created_at: PropTypes.string.isRequired,
21671
+ expires_at: PropTypes.string,
21672
+ base: T['io.flow.common.v0.models.money'],
21673
+ processor: T['io.flow.payment.v0.unions.expandable_payment_processor'],
21674
+ confirmation_details: T['io.flow.payment.v0.unions.confirmation_details'],
21675
+ });
21676
+
21677
+ T['io.flow.payment.v0.models.card_authorization'] = PropTypes.exact({
21678
+ discriminator: PropTypes.oneOf(['card_authorization']).isRequired,
21679
+ id: PropTypes.string.isRequired,
21680
+ key: PropTypes.string.isRequired,
21681
+ merchant_of_record: T['io.flow.common.v0.enums.merchant_of_record'],
21682
+ method: T['io.flow.reference.v0.models.payment_method'],
21683
+ card: T['io.flow.payment.v0.unions.expandable_card'].isRequired,
21684
+ amount: PropTypes.number.isRequired,
21685
+ currency: PropTypes.string.isRequired,
21686
+ requested: T['io.flow.common.v0.models.money'],
21687
+ customer: T['io.flow.common.v0.models.order_customer'].isRequired,
21688
+ attributes: PropTypes.objectOf(PropTypes.string).isRequired,
21689
+ destination: T['io.flow.common.v0.models.address'],
21690
+ billing_address: T['io.flow.common.v0.models.billing_address'],
21691
+ order: T['io.flow.payment.v0.models.authorization_order_reference'],
21692
+ payment_order_reference: T['io.flow.payment.v0.unions.payment_order_reference'],
21693
+ ip: PropTypes.string,
21694
+ result: T['io.flow.payment.v0.models.authorization_result'].isRequired,
21695
+ created_at: PropTypes.string.isRequired,
21696
+ expires_at: PropTypes.string,
21697
+ base: T['io.flow.common.v0.models.money'],
21698
+ processor: T['io.flow.payment.v0.unions.expandable_payment_processor'],
21699
+ });
21700
+
21701
+ T['io.flow.payment.v0.unions.authorization'] = PropTypes.oneOfType([
21702
+ T['io.flow.payment.v0.models.card_authorization'],
21703
+ T['io.flow.payment.v0.models.online_authorization'],
21704
+ ]);
21562
21705
 
21563
- T['io.flow.label.v0.models.shipping_notification_version'] = PropTypes.exact({
21706
+ T['io.flow.payment.v0.models.authorization_version'] = PropTypes.exact({
21564
21707
  id: PropTypes.string.isRequired,
21565
21708
  timestamp: PropTypes.string.isRequired,
21566
21709
  type: T['io.flow.common.v0.enums.change_type'].isRequired,
21567
- shipping_notification: T['io.flow.label.v0.models.shipping_notification'].isRequired,
21710
+ authorization: T['io.flow.payment.v0.unions.authorization'].isRequired,
21568
21711
  });
21569
21712
 
21570
- T['io.flow.label.v0.models.detailed_shipping_notification_form'] = PropTypes.exact({
21571
- discriminator: PropTypes.oneOf(['detailed_shipping_notification_form']).isRequired,
21572
- key: PropTypes.string,
21573
- attributes: PropTypes.objectOf(PropTypes.string),
21574
- carrier_tracking_number: PropTypes.string.isRequired,
21575
- destination: T['io.flow.fulfillment.v0.models.shipping_address'].isRequired,
21576
- order_number: PropTypes.string.isRequired,
21577
- 'package': T['io.flow.label.v0.models.shipping_label_package'].isRequired,
21578
- service: PropTypes.string.isRequired,
21579
- origin: T['io.flow.fulfillment.v0.models.shipping_address'],
21580
- shipment_recipient: T['io.flow.label.v0.enums.shipment_recipient'],
21713
+ T['io.flow.internal.v0.models.markets_order'] = PropTypes.exact({
21714
+ shopify_order: T['io.flow.shopify.markets.v0.models.shopify_order'].isRequired,
21715
+ flow_authorization: T['io.flow.payment.v0.unions.authorization'],
21581
21716
  });
21582
21717
 
21583
- T['io.flow.label.v0.unions.shipping_notification_form'] = PropTypes.oneOfType([
21584
- T['io.flow.label.v0.models.detailed_shipping_notification_form'],
21585
- T['io.flow.label.v0.models.single_package_shipping_notification_form'],
21586
- T['io.flow.label.v0.models.summary_shipping_notification_form'],
21587
- ]);
21718
+ T['io.flow.internal.v0.models.checkout_payment'] = PropTypes.exact({
21719
+ authorizations: PropTypes.arrayOf(T['io.flow.payment.v0.unions.authorization']).isRequired,
21720
+ sources: PropTypes.arrayOf(T['io.flow.payment.v0.unions.payment_source']).isRequired,
21721
+ public_key: T['io.flow.payment.v0.models.public_key'].isRequired,
21722
+ method_types: PropTypes.arrayOf(T['io.flow.reference.v0.enums.payment_method_type']).isRequired,
21723
+ method_rules: PropTypes.arrayOf(T['io.flow.experience.v0.models.payment_method_rule']).isRequired,
21724
+ authorization_parameters: PropTypes.arrayOf(T['io.flow.internal.v0.models.authorization_parameters']).isRequired,
21725
+ });
21588
21726
 
21589
- T['io.flow.label.v0.models.detailed_shipping_label_form'] = PropTypes.exact({
21590
- discriminator: PropTypes.oneOf(['detailed_shipping_label_form']).isRequired,
21591
- destination: T['io.flow.fulfillment.v0.models.shipping_address'].isRequired,
21592
- origin: T['io.flow.fulfillment.v0.models.shipping_address'].isRequired,
21593
- 'package': T['io.flow.label.v0.models.shipping_label_package'].isRequired,
21727
+ T['io.flow.payment.v0.models.capture'] = PropTypes.exact({
21728
+ id: PropTypes.string.isRequired,
21729
+ key: PropTypes.string.isRequired,
21730
+ authorization: T['io.flow.payment.v0.models.authorization_reference'].isRequired,
21731
+ amount: PropTypes.number.isRequired,
21732
+ currency: PropTypes.string.isRequired,
21733
+ requested: T['io.flow.common.v0.models.money'],
21734
+ created_at: PropTypes.string.isRequired,
21594
21735
  attributes: PropTypes.objectOf(PropTypes.string),
21595
- delivered_duty: T['io.flow.common.v0.enums.delivered_duty'],
21596
- direction: T['io.flow.label.v0.enums.direction'],
21597
- order_number: PropTypes.string,
21598
- service: PropTypes.string,
21599
- shipment_recipient: T['io.flow.label.v0.enums.shipment_recipient'],
21736
+ status: T['io.flow.payment.v0.enums.capture_status'],
21737
+ base: T['io.flow.common.v0.models.money'],
21600
21738
  });
21601
21739
 
21602
- T['io.flow.label.v0.unions.shipping_label_form'] = PropTypes.oneOfType([
21603
- T['io.flow.label.v0.models.detailed_shipping_label_form'],
21604
- T['io.flow.label.v0.models.summary_shipping_label_form'],
21605
- ]);
21740
+ T['io.flow.payment.v0.models.refund_capture_summary'] = PropTypes.exact({
21741
+ capture: T['io.flow.payment.v0.models.capture'].isRequired,
21742
+ amount: PropTypes.number.isRequired,
21743
+ });
21606
21744
 
21607
- T['io.flow.internal.v0.models.label_summary'] = PropTypes.exact({
21745
+ T['io.flow.payment.v0.models.refund'] = PropTypes.exact({
21608
21746
  id: PropTypes.string.isRequired,
21609
- commercial_invoice: PropTypes.string,
21610
- pdf: PropTypes.string,
21611
- png: PropTypes.string,
21612
- recipient: T['io.flow.label.v0.enums.shipment_recipient'],
21613
- 'package': T['io.flow.label.v0.models.shipping_label_package'],
21614
- label: T['io.flow.label.v0.models.shipping_label_document'],
21615
- invoice: T['io.flow.label.v0.models.shipping_label_document'],
21616
- carrier_tracking_number: PropTypes.string,
21617
- carrier_tracking_number_url: PropTypes.string,
21618
- service: T['io.flow.reference.v0.models.carrier_service'],
21747
+ key: PropTypes.string.isRequired,
21748
+ authorization: T['io.flow.payment.v0.models.authorization_reference'].isRequired,
21749
+ amount: PropTypes.number.isRequired,
21750
+ currency: PropTypes.string.isRequired,
21751
+ requested: T['io.flow.common.v0.models.money'],
21752
+ captures: PropTypes.arrayOf(T['io.flow.payment.v0.models.refund_capture_summary']).isRequired,
21753
+ created_at: PropTypes.string.isRequired,
21754
+ attributes: PropTypes.objectOf(PropTypes.string),
21755
+ status: T['io.flow.payment.v0.enums.refund_status'],
21756
+ base: T['io.flow.common.v0.models.money'],
21619
21757
  });
21620
21758
 
21621
- T['io.flow.internal.v0.models.search_tracking_summary'] = PropTypes.exact({
21759
+ T['io.flow.payment.v0.models.refund_version'] = PropTypes.exact({
21760
+ id: PropTypes.string.isRequired,
21622
21761
  timestamp: PropTypes.string.isRequired,
21623
- description: PropTypes.string.isRequired,
21624
- number: PropTypes.string.isRequired,
21625
- status: T['io.flow.tracking.v0.enums.tracking_status'].isRequired,
21626
- label: T['io.flow.internal.v0.models.label_summary'].isRequired,
21762
+ type: T['io.flow.common.v0.enums.change_type'].isRequired,
21763
+ refund: T['io.flow.payment.v0.models.refund'].isRequired,
21627
21764
  });
21628
21765
 
21629
- T['io.flow.internal.v0.models.return_summary'] = PropTypes.exact({
21766
+ T['io.flow.payment.v0.models.refund_capture'] = PropTypes.exact({
21630
21767
  id: PropTypes.string.isRequired,
21631
- items: PropTypes.arrayOf(T['io.flow.return.v0.models.return_line_item']).isRequired,
21632
- key: PropTypes.string.isRequired,
21633
- tracking_summary: T['io.flow.internal.v0.models.search_tracking_summary'],
21768
+ refund: T['io.flow.payment.v0.models.refund'].isRequired,
21769
+ capture: T['io.flow.payment.v0.models.capture'].isRequired,
21770
+ amount: PropTypes.number.isRequired,
21771
+ currency: PropTypes.string.isRequired,
21772
+ base: T['io.flow.common.v0.models.money'].isRequired,
21773
+ status: T['io.flow.payment.v0.enums.refund_status'],
21774
+ });
21775
+
21776
+ T['io.flow.payment.v0.models.capture_version'] = PropTypes.exact({
21777
+ id: PropTypes.string.isRequired,
21778
+ timestamp: PropTypes.string.isRequired,
21779
+ type: T['io.flow.common.v0.enums.change_type'].isRequired,
21780
+ capture: T['io.flow.payment.v0.models.capture'].isRequired,
21634
21781
  });
21635
21782
 
21636
21783
  T['io.flow.internal.v0.models.shopify_promotion_attribute_value'] = PropTypes.exact({
@@ -22756,6 +22903,30 @@ T['io.flow.experience.v0.models.original_prices'] = PropTypes.exact({
22756
22903
  max: T['io.flow.common.v0.models.price'].isRequired,
22757
22904
  });
22758
22905
 
22906
+ T['io.flow.partner.v0.models.label'] = PropTypes.exact({
22907
+ id: PropTypes.string.isRequired,
22908
+ organization: T['io.flow.partner.v0.models.partner_organization_reference'].isRequired,
22909
+ order_number: PropTypes.string.isRequired,
22910
+ 'package': T['io.flow.label.v0.models.shipping_label_package'].isRequired,
22911
+ carrier_tracking_number: PropTypes.string.isRequired,
22912
+ carrier_tracking_number_url: PropTypes.string.isRequired,
22913
+ destination: T['io.flow.fulfillment.v0.models.shipping_address'].isRequired,
22914
+ flow_tracking_number: PropTypes.string.isRequired,
22915
+ flow_tracking_number_url: PropTypes.string.isRequired,
22916
+ origin: T['io.flow.fulfillment.v0.models.shipping_address'].isRequired,
22917
+ service: T['io.flow.fulfillment.v0.models.service_summary'].isRequired,
22918
+ window: T['io.flow.common.v0.models.datetime_range'].isRequired,
22919
+ zpl: PropTypes.string,
22920
+ pdf: PropTypes.string,
22921
+ png: PropTypes.string,
22922
+ commercial_invoice: PropTypes.string,
22923
+ references: PropTypes.arrayOf(PropTypes.string),
22924
+ label: T['io.flow.label.v0.models.shipping_label_document'],
22925
+ invoice: T['io.flow.label.v0.models.shipping_label_document'],
22926
+ cost: T['io.flow.common.v0.models.price'],
22927
+ shipment_recipient: T['io.flow.label.v0.enums.shipment_recipient'],
22928
+ });
22929
+
22759
22930
  T['io.flow.payment.v0.models.virtual_card'] = PropTypes.exact({
22760
22931
  id: PropTypes.string.isRequired,
22761
22932
  key: PropTypes.string.isRequired,
@@ -23021,6 +23192,8 @@ T['io.flow.fulfillment.v0.models.physical_delivery'] = PropTypes.exact({
23021
23192
  id: PropTypes.string.isRequired,
23022
23193
  key: PropTypes.string,
23023
23194
  center: T['io.flow.fulfillment.v0.models.center_summary'],
23195
+ fulfillment_routing: T['io.flow.fulfillment.v0.enums.fulfillment_routing'],
23196
+ ship_from_country: PropTypes.string,
23024
23197
  items: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.delivery_item']).isRequired,
23025
23198
  options: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.delivery_option']).isRequired,
23026
23199
  special_services: PropTypes.arrayOf(T['io.flow.fulfillment.v0.enums.physical_delivery_special_serivce']),
@@ -23441,9 +23614,9 @@ T['io.flow.internal.v0.models.bank_payment'] = PropTypes.exact({
23441
23614
  key: PropTypes.string.isRequired,
23442
23615
  account: T['io.flow.billing.v0.models.account_reference'].isRequired,
23443
23616
  reference: PropTypes.string,
23444
- sent_on: PropTypes.string.isRequired,
23617
+ sent_on: PropTypes.string,
23445
23618
  status: T['io.flow.billing.v0.unions.payout_status'].isRequired,
23446
- expected_delivery_by: PropTypes.string.isRequired,
23619
+ expected_delivery_by: PropTypes.string,
23447
23620
  total: T['io.flow.common.v0.models.price'].isRequired,
23448
23621
  });
23449
23622
 
@@ -24314,17 +24487,33 @@ T['io.flow.internal.v0.models.account_source'] = PropTypes.exact({
24314
24487
  type: T['io.flow.internal.v0.enums.account_type'].isRequired,
24315
24488
  });
24316
24489
 
24317
- T['io.flow.internal.v0.models.pending_bank_payment'] = PropTypes.exact({
24490
+ T['io.flow.internal.v0.models.account_summary'] = PropTypes.exact({
24491
+ id: PropTypes.string.isRequired,
24492
+ currency: PropTypes.string.isRequired,
24318
24493
  source: T['io.flow.internal.v0.models.account_source'].isRequired,
24319
- account: T['io.flow.billing.v0.models.account_reference'].isRequired,
24320
- recommended_reference: PropTypes.string.isRequired,
24494
+ });
24495
+
24496
+ T['io.flow.internal.v0.models.pending_bank_payment'] = PropTypes.exact({
24497
+ id: PropTypes.string.isRequired,
24498
+ account: T['io.flow.internal.v0.models.account_summary'].isRequired,
24321
24499
  total: T['io.flow.common.v0.models.price'].isRequired,
24322
24500
  details: PropTypes.arrayOf(T['io.flow.internal.v0.models.pending_bank_payment_detail']).isRequired,
24323
24501
  });
24324
24502
 
24325
- T['io.flow.internal.v0.models.billing_statement_pending_review'] = PropTypes.exact({
24326
- source: T['io.flow.internal.v0.models.account_source'].isRequired,
24327
- statement: T['io.flow.internal.v0.models.billing_statement_summary'].isRequired,
24503
+ T['io.flow.internal.v0.models.finance_bank_payment'] = PropTypes.exact({
24504
+ id: PropTypes.string.isRequired,
24505
+ account: T['io.flow.internal.v0.models.account_summary'].isRequired,
24506
+ last4: PropTypes.string,
24507
+ info: T['io.flow.billing.bank.account.v0.unions.bank_account_info'],
24508
+ owner: T['io.flow.internal.v0.models.finance_bank_account_owner'],
24509
+ });
24510
+
24511
+ T['io.flow.internal.v0.models.finance_bank_account'] = PropTypes.exact({
24512
+ id: PropTypes.string.isRequired,
24513
+ account: T['io.flow.internal.v0.models.account_summary'].isRequired,
24514
+ last4: PropTypes.string.isRequired,
24515
+ info: T['io.flow.billing.bank.account.v0.unions.bank_account_info'].isRequired,
24516
+ owner: T['io.flow.internal.v0.models.finance_bank_account_owner'],
24328
24517
  });
24329
24518
 
24330
24519
  T['io.flow.internal.v0.enums.account_setting_liabilities_method'] = PropTypes.oneOf(['withholding', 'transaction']);
@@ -24634,7 +24823,6 @@ T['io.flow.internal.v0.models.processing_transaction'] = PropTypes.exact({
24634
24823
  flow_rate: PropTypes.number.isRequired,
24635
24824
  flow_margin: PropTypes.number.isRequired,
24636
24825
  revenue_share: T['io.flow.common.v0.models.price'],
24637
- disposition: T['io.flow.internal.v0.enums.billing_statement_review_status'],
24638
24826
  id: PropTypes.string.isRequired,
24639
24827
  type: T['io.flow.internal.v0.enums.billing_transaction_type'].isRequired,
24640
24828
  status: T['io.flow.internal.v0.enums.billing_transaction_status'].isRequired,
@@ -24706,7 +24894,6 @@ T['io.flow.internal.v0.models.main_transaction'] = PropTypes.exact({
24706
24894
  statement: T['io.flow.internal.v0.models.billing_statement_reference'],
24707
24895
  created_at: PropTypes.string.isRequired,
24708
24896
  original_at: PropTypes.string,
24709
- disposition: T['io.flow.internal.v0.enums.billing_statement_review_status'],
24710
24897
  });
24711
24898
 
24712
24899
  T['io.flow.internal.v0.models.main_transaction_upserted_v2'] = PropTypes.exact({
@@ -25038,8 +25225,6 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
25038
25225
  T['io.flow.internal.v0.models.adyen_capture_upserted'],
25039
25226
  T['io.flow.internal.v0.models.adyen_refund_deleted'],
25040
25227
  T['io.flow.internal.v0.models.adyen_refund_upserted'],
25041
- T['io.flow.internal.v0.models.test_upserted'],
25042
- T['io.flow.internal.v0.models.test_deleted'],
25043
25228
  T['io.flow.internal.v0.models.account_upserted'],
25044
25229
  T['io.flow.internal.v0.models.account_upserted_v2'],
25045
25230
  T['io.flow.internal.v0.models.account_deleted_v2'],
@@ -25094,6 +25279,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
25094
25279
  T['io.flow.internal.v0.models.return_policy_deleted'],
25095
25280
  T['io.flow.internal.v0.models.return_policy_item_result_upserted'],
25096
25281
  T['io.flow.internal.v0.models.return_policy_item_result_deleted'],
25282
+ T['io.flow.internal.v0.models.catalog_settings_upserted'],
25283
+ T['io.flow.internal.v0.models.catalog_settings_deleted'],
25097
25284
  T['io.flow.internal.v0.models.channel_order_acceptance_upserted'],
25098
25285
  T['io.flow.internal.v0.models.channel_order_acceptance_deleted'],
25099
25286
  T['io.flow.internal.v0.models.checkout_configuration_upserted'],
@@ -25201,6 +25388,7 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
25201
25388
  T['io.flow.internal.v0.models.item_harmonization_deleted'],
25202
25389
  T['io.flow.internal.v0.models.harmonization_item_classification_upserted'],
25203
25390
  T['io.flow.internal.v0.models.harmonization_item_classification_deleted'],
25391
+ T['io.flow.internal.v0.models.harmonization_classification_statistics_published'],
25204
25392
  T['io.flow.internal.v0.models.issuer_upserted'],
25205
25393
  T['io.flow.internal.v0.models.issuer_deleted'],
25206
25394
  T['io.flow.internal.v0.models.item_form_import_request'],
@@ -25227,6 +25415,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
25227
25415
  T['io.flow.internal.v0.models.items_shipped'],
25228
25416
  T['io.flow.internal.v0.models.organization_business_entity_deleted'],
25229
25417
  T['io.flow.internal.v0.models.organization_business_entity_upserted'],
25418
+ T['io.flow.internal.v0.models.organization_status_change_upserted'],
25419
+ T['io.flow.internal.v0.models.organization_status_change_deleted'],
25230
25420
  T['io.flow.internal.v0.models.organization_restriction_approval_upserted'],
25231
25421
  T['io.flow.internal.v0.models.organization_restriction_approval_deleted'],
25232
25422
  T['io.flow.internal.v0.models.internal_authorization_upserted'],
@@ -25468,13 +25658,6 @@ T['io.flow.internal.v0.models.channel_membership'] = PropTypes.exact({
25468
25658
  role: T['io.flow.common.v0.enums.role'],
25469
25659
  });
25470
25660
 
25471
- T['io.flow.internal.v0.models.billing_statement_review'] = PropTypes.exact({
25472
- id: PropTypes.string.isRequired,
25473
- billing_statement: T['io.flow.internal.v0.models.billing_statement_reference'].isRequired,
25474
- reviewed_by: T['io.flow.common.v0.models.user_reference'].isRequired,
25475
- reviewed_at: PropTypes.string.isRequired,
25476
- });
25477
-
25478
25661
  T['io.flow.internal.v0.models.acceptance'] = PropTypes.exact({
25479
25662
  accepted_by: T['io.flow.common.v0.models.user_reference'].isRequired,
25480
25663
  accepted_at: PropTypes.string.isRequired,
@@ -25549,8 +25732,6 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
25549
25732
  'adyen_capture_upserted',
25550
25733
  'adyen_refund_deleted',
25551
25734
  'adyen_refund_upserted',
25552
- 'test_upserted',
25553
- 'test_deleted',
25554
25735
  'account_upserted',
25555
25736
  'account_upserted_v2',
25556
25737
  'account_deleted_v2',
@@ -25605,6 +25786,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
25605
25786
  'return_policy_deleted',
25606
25787
  'return_policy_item_result_upserted',
25607
25788
  'return_policy_item_result_deleted',
25789
+ 'catalog_settings_upserted',
25790
+ 'catalog_settings_deleted',
25608
25791
  'channel_order_acceptance_upserted',
25609
25792
  'channel_order_acceptance_deleted',
25610
25793
  'checkout_configuration_upserted',
@@ -25712,6 +25895,7 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
25712
25895
  'item_harmonization_deleted',
25713
25896
  'harmonization_item_classification_upserted',
25714
25897
  'harmonization_item_classification_deleted',
25898
+ 'harmonization_classification_statistics_published',
25715
25899
  'issuer_upserted',
25716
25900
  'issuer_deleted',
25717
25901
  'item_form_import_request',
@@ -25738,6 +25922,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
25738
25922
  'items_shipped',
25739
25923
  'organization_business_entity_deleted',
25740
25924
  'organization_business_entity_upserted',
25925
+ 'organization_status_change_upserted',
25926
+ 'organization_status_change_deleted',
25741
25927
  'organization_restriction_approval_upserted',
25742
25928
  'organization_restriction_approval_deleted',
25743
25929
  'internal_authorization_upserted',
@@ -25922,6 +26108,8 @@ T['io.flow.internal.v0.enums.task_processor_key'] = PropTypes.oneOf([
25922
26108
  'payment',
25923
26109
  'label_generation_settings',
25924
26110
  'ratecard',
26111
+ 'logistics_center',
26112
+ 'center_defaults',
25925
26113
  ]);
25926
26114
 
25927
26115
  T['io.flow.internal.v0.enums.tax_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'tax']);
@@ -25987,8 +26175,8 @@ T['io.flow.internal.v0.models.backfill_form'] = PropTypes.exact({
25987
26175
  T['io.flow.internal.v0.models.bank_payment_form'] = PropTypes.exact({
25988
26176
  account_id: PropTypes.string.isRequired,
25989
26177
  reference: PropTypes.string,
25990
- sent_on: PropTypes.string.isRequired,
25991
- expected_delivery_by: PropTypes.string.isRequired,
26178
+ sent_on: PropTypes.string,
26179
+ expected_delivery_by: PropTypes.string,
25992
26180
  amount: PropTypes.number.isRequired,
25993
26181
  currency: PropTypes.string.isRequired,
25994
26182
  transfer_transaction_ids: PropTypes.arrayOf(PropTypes.string).isRequired,
@@ -25998,11 +26186,6 @@ T['io.flow.internal.v0.models.billing_authorization_reference'] = PropTypes.exac
25998
26186
  id: PropTypes.string.isRequired,
25999
26187
  });
26000
26188
 
26001
- T['io.flow.internal.v0.models.billing_statement_review_form'] = PropTypes.exact({
26002
- reviewed_by_id: PropTypes.string.isRequired,
26003
- reviewed_at: PropTypes.string.isRequired,
26004
- });
26005
-
26006
26189
  T['io.flow.internal.v0.models.brick_webhook_event_response'] = PropTypes.exact({
26007
26190
  status: PropTypes.string.isRequired,
26008
26191
  });
@@ -26257,11 +26440,6 @@ T['io.flow.internal.v0.models.flow_label_setting_form'] = PropTypes.exact({
26257
26440
  default_contents: PropTypes.string.isRequired,
26258
26441
  });
26259
26442
 
26260
- T['io.flow.internal.v0.models.generate_load'] = PropTypes.exact({
26261
- organization_id: PropTypes.string.isRequired,
26262
- num_events: PropTypes.number.isRequired,
26263
- });
26264
-
26265
26443
  T['io.flow.internal.v0.models.gift_card_form'] = PropTypes.exact({
26266
26444
  number: PropTypes.string.isRequired,
26267
26445
  pin: PropTypes.string,
@@ -26366,6 +26544,11 @@ T['io.flow.internal.v0.models.landed_cost_item'] = PropTypes.exact({
26366
26544
  destination: PropTypes.string.isRequired,
26367
26545
  });
26368
26546
 
26547
+ T['io.flow.internal.v0.models.logistics_center_check'] = PropTypes.exact({
26548
+ issues: PropTypes.arrayOf(PropTypes.string),
26549
+ is_valid: PropTypes.bool.isRequired,
26550
+ });
26551
+
26369
26552
  T['io.flow.internal.v0.models.magento_install_form'] = PropTypes.exact({
26370
26553
  token: PropTypes.string.isRequired,
26371
26554
  });
@@ -26460,14 +26643,6 @@ T['io.flow.internal.v0.models.partner_organization_authorization_form'] = PropTy
26460
26643
  partner: PropTypes.string.isRequired,
26461
26644
  });
26462
26645
 
26463
- T['io.flow.internal.v0.models.partner_organization_settings'] = PropTypes.exact({
26464
- glbe_merchant_guid: PropTypes.string.isRequired,
26465
- });
26466
-
26467
- T['io.flow.internal.v0.models.partner_organization_settings_form'] = PropTypes.exact({
26468
- glbe_merchant_guid: PropTypes.string.isRequired,
26469
- });
26470
-
26471
26646
  T['io.flow.internal.v0.models.passphrase_form'] = PropTypes.exact({
26472
26647
  tribe: PropTypes.string.isRequired,
26473
26648
  current_password: PropTypes.string,
@@ -26731,6 +26906,11 @@ T['io.flow.internal.v0.models.task_count'] = PropTypes.exact({
26731
26906
  count: PropTypes.number.isRequired,
26732
26907
  });
26733
26908
 
26909
+ T['io.flow.internal.v0.models.test'] = PropTypes.exact({
26910
+ id: PropTypes.string.isRequired,
26911
+ name: PropTypes.string.isRequired,
26912
+ });
26913
+
26734
26914
  T['io.flow.internal.v0.models.test_form'] = PropTypes.exact({
26735
26915
  name: PropTypes.string.isRequired,
26736
26916
  });
@@ -26793,23 +26973,6 @@ T['io.flow.return.v0.models.return_reason_put_form'] = PropTypes.exact({
26793
26973
  name: PropTypes.string,
26794
26974
  });
26795
26975
 
26796
- T['io.flow.common.v0.enums.capability'] = PropTypes.oneOf(['crossdock']);
26797
- T['io.flow.common.v0.enums.schedule_exception_status'] = PropTypes.oneOf(['Open', 'Closed']);
26798
- T['io.flow.common.v0.enums.sort_direction'] = PropTypes.oneOf(['ascending', 'descending']);
26799
- T['io.flow.common.v0.enums.value_added_service'] = PropTypes.oneOf(['Hazardous Material']);
26800
-
26801
- T['io.flow.common.v0.models.input_form'] = PropTypes.exact({
26802
- values: PropTypes.objectOf(PropTypes.string),
26803
- });
26804
-
26805
- T['io.flow.common.v0.models.line_item_attributes_form'] = PropTypes.exact({
26806
- attributes: PropTypes.objectOf(PropTypes.string).isRequired,
26807
- });
26808
-
26809
- T['io.flow.common.v0.models.line_item_quantity_form'] = PropTypes.exact({
26810
- quantity: PropTypes.number.isRequired,
26811
- });
26812
-
26813
26976
  T['io.flow.price.v0.enums.levy_strategy'] = PropTypes.oneOf(['minimum', 'average', 'maximum']);
26814
26977
 
26815
26978
  T['io.flow.channel.v0.models.channel_authorization'] = PropTypes.exact({
@@ -27139,14 +27302,6 @@ T['io.flow.adyen.v0.models.payment_details'] = PropTypes.exact({
27139
27302
  paymentData: PropTypes.string,
27140
27303
  });
27141
27304
 
27142
- T['io.flow.adyen.v0.models.payment_details_v66_3ds2_challenge'] = PropTypes.exact({
27143
- 'threeds2.challengeResult': PropTypes.string.isRequired,
27144
- });
27145
-
27146
- T['io.flow.adyen.v0.models.payment_details_v66_3ds2_fingerprint'] = PropTypes.exact({
27147
- 'threeds2.fingerprint': PropTypes.string.isRequired,
27148
- });
27149
-
27150
27305
  T['io.flow.adyen.v0.models.request_for_information_additional_data'] = PropTypes.exact({
27151
27306
  rfiSchemeCode: PropTypes.string.isRequired,
27152
27307
  modificationMerchantReferences: PropTypes.string.isRequired,
@@ -27325,6 +27480,41 @@ T['io.flow.payment.gateway.v0.models.payment_reversal_form'] = PropTypes.exact({
27325
27480
  currency: PropTypes.string,
27326
27481
  });
27327
27482
 
27483
+ T['io.flow.partner.v0.models.partner_bridge_manifest_form'] = PropTypes.exact({
27484
+ order_numbers: PropTypes.arrayOf(PropTypes.string).isRequired,
27485
+ });
27486
+
27487
+ T['io.flow.partner.v0.models.partner_manifest_form'] = PropTypes.exact({
27488
+ tracking_numbers: PropTypes.arrayOf(PropTypes.string).isRequired,
27489
+ service: PropTypes.string,
27490
+ });
27491
+
27492
+ T['io.flow.partner.v0.models.partner_order_identifier_form'] = PropTypes.exact({
27493
+ number: PropTypes.string.isRequired,
27494
+ order_number: PropTypes.string.isRequired,
27495
+ });
27496
+
27497
+ T['io.flow.partner.v0.models.partner_order_identifier_put_form'] = PropTypes.exact({
27498
+ order_number: PropTypes.string.isRequired,
27499
+ });
27500
+
27501
+ T['io.flow.common.v0.enums.capability'] = PropTypes.oneOf(['crossdock']);
27502
+ T['io.flow.common.v0.enums.schedule_exception_status'] = PropTypes.oneOf(['Open', 'Closed']);
27503
+ T['io.flow.common.v0.enums.sort_direction'] = PropTypes.oneOf(['ascending', 'descending']);
27504
+ T['io.flow.common.v0.enums.value_added_service'] = PropTypes.oneOf(['Hazardous Material']);
27505
+
27506
+ T['io.flow.common.v0.models.input_form'] = PropTypes.exact({
27507
+ values: PropTypes.objectOf(PropTypes.string),
27508
+ });
27509
+
27510
+ T['io.flow.common.v0.models.line_item_attributes_form'] = PropTypes.exact({
27511
+ attributes: PropTypes.objectOf(PropTypes.string).isRequired,
27512
+ });
27513
+
27514
+ T['io.flow.common.v0.models.line_item_quantity_form'] = PropTypes.exact({
27515
+ quantity: PropTypes.number.isRequired,
27516
+ });
27517
+
27328
27518
  T['io.flow.ftp.v0.models.ftp_file_form'] = PropTypes.exact({
27329
27519
  url: PropTypes.string.isRequired,
27330
27520
  directory: PropTypes.string.isRequired,
@@ -27537,12 +27727,19 @@ T['io.flow.inventory.v0.models.pfs_inventory_status'] = PropTypes.exact({
27537
27727
  status: PropTypes.string.isRequired,
27538
27728
  });
27539
27729
 
27730
+ T['io.flow.billing.v0.models.channel_bank_account'] = PropTypes.exact({
27731
+ id: PropTypes.string.isRequired,
27732
+ key: PropTypes.string.isRequired,
27733
+ last4: PropTypes.string.isRequired,
27734
+ });
27735
+
27540
27736
  T['io.flow.billing.v0.models.default_bank_account_form'] = PropTypes.exact({
27541
27737
  bank_account_id: PropTypes.string.isRequired,
27542
27738
  });
27543
27739
 
27544
27740
  T['io.flow.billing.v0.models.organization_bank_account'] = PropTypes.exact({
27545
27741
  id: PropTypes.string.isRequired,
27742
+ key: PropTypes.string.isRequired,
27546
27743
  last4: PropTypes.string.isRequired,
27547
27744
  });
27548
27745
 
@@ -27724,6 +27921,7 @@ export const accountSettingsDeleted = T['io.flow.internal.v0.models.account_sett
27724
27921
  export const accountSettingsUpserted = T['io.flow.internal.v0.models.account_settings_upserted'];
27725
27922
  export const accountSource = T['io.flow.internal.v0.models.account_source'];
27726
27923
  export const accountStatistics = T['io.flow.internal.v0.models.account_statistics'];
27924
+ export const accountSummary = T['io.flow.internal.v0.models.account_summary'];
27727
27925
  export const accountTransactionsExportRequest = T['io.flow.internal.v0.models.account_transactions_export_request'];
27728
27926
  export const accountType = T['io.flow.internal.v0.enums.account_type'];
27729
27927
  export const accountUpserted = T['io.flow.internal.v0.models.account_upserted'];
@@ -27847,11 +28045,7 @@ export const billingStatementBatchStatementDeleted = T['io.flow.internal.v0.mode
27847
28045
  export const billingStatementBatchStatementUpserted = T['io.flow.internal.v0.models.billing_statement_batch_statement_upserted'];
27848
28046
  export const billingStatementBatchUpserted = T['io.flow.internal.v0.models.billing_statement_batch_upserted'];
27849
28047
  export const billingStatementDeleted = T['io.flow.internal.v0.models.billing_statement_deleted'];
27850
- export const billingStatementPendingReview = T['io.flow.internal.v0.models.billing_statement_pending_review'];
27851
28048
  export const billingStatementReference = T['io.flow.internal.v0.models.billing_statement_reference'];
27852
- export const billingStatementReview = T['io.flow.internal.v0.models.billing_statement_review'];
27853
- export const billingStatementReviewForm = T['io.flow.internal.v0.models.billing_statement_review_form'];
27854
- export const billingStatementReviewStatus = T['io.flow.internal.v0.enums.billing_statement_review_status'];
27855
28049
  export const billingStatementSummary = T['io.flow.internal.v0.models.billing_statement_summary'];
27856
28050
  export const billingStatementTotals = T['io.flow.internal.v0.models.billing_statement_totals'];
27857
28051
  export const billingStatementUpserted = T['io.flow.internal.v0.models.billing_statement_upserted'];
@@ -27932,7 +28126,9 @@ export const catalogItemRegionAvailabilities = T['io.flow.internal.v0.models.cat
27932
28126
  export const catalogItemRegionAvailabilitiesData = T['io.flow.internal.v0.models.catalog_item_region_availabilities_data'];
27933
28127
  export const catalogItemRegionAvailabilitiesPublished = T['io.flow.internal.v0.models.catalog_item_region_availabilities_published'];
27934
28128
  export const catalogSettings = T['io.flow.internal.v0.models.catalog_settings'];
28129
+ export const catalogSettingsDeleted = T['io.flow.internal.v0.models.catalog_settings_deleted'];
27935
28130
  export const catalogSettingsPutForm = T['io.flow.internal.v0.models.catalog_settings_put_form'];
28131
+ export const catalogSettingsUpserted = T['io.flow.internal.v0.models.catalog_settings_upserted'];
27936
28132
  export const centerDefaults = T['io.flow.internal.v0.models.center_defaults'];
27937
28133
  export const centerDefaultsForm = T['io.flow.internal.v0.models.center_defaults_form'];
27938
28134
  export const centerQueryBuilder = T['io.flow.internal.v0.models.center_query_builder'];
@@ -28785,6 +28981,9 @@ export const fileConfirmation = T['io.flow.internal.v0.models.file_confirmation'
28785
28981
  export const fileConfirmationForm = T['io.flow.internal.v0.models.file_confirmation_form'];
28786
28982
  export const fileMetadata = T['io.flow.internal.v0.models.file_metadata'];
28787
28983
  export const fileMetadataCounts = T['io.flow.internal.v0.models.file_metadata_counts'];
28984
+ export const financeBankAccount = T['io.flow.internal.v0.models.finance_bank_account'];
28985
+ export const financeBankAccountOwner = T['io.flow.internal.v0.models.finance_bank_account_owner'];
28986
+ export const financeBankPayment = T['io.flow.internal.v0.models.finance_bank_payment'];
28788
28987
  export const financialMerchantCategory = T['io.flow.internal.v0.models.financial_merchant_category'];
28789
28988
  export const financialReportingResponsibleParty = T['io.flow.internal.v0.enums.financial_reporting_responsible_party'];
28790
28989
  export const financialReportingStatement = T['io.flow.internal.v0.models.financial_reporting_statement'];
@@ -28845,6 +29044,7 @@ export const fulfillmentActionForm = T['io.flow.internal.v0.models.fulfillment_a
28845
29044
  export const fulfillmentCancel = T['io.flow.internal.v0.models.fulfillment_cancel'];
28846
29045
  export const fulfillmentInternalExperienceReference = T['io.flow.internal.v0.models.fulfillment_internal_experience_reference'];
28847
29046
  export const fulfillmentShipmentTracking = T['io.flow.internal.v0.models.fulfillment_shipment_tracking'];
29047
+ export const fulfillmentSnapshot = T['io.flow.internal.v0.models.fulfillment_snapshot'];
28848
29048
  export const fxFee = T['io.flow.internal.v0.models.fx_fee'];
28849
29049
  export const fxRevenueRecognition = T['io.flow.internal.v0.models.fx_revenue_recognition'];
28850
29050
  export const fxRevenueRecognitionAccount = T['io.flow.internal.v0.models.fx_revenue_recognition_account'];
@@ -28853,7 +29053,9 @@ export const fxRevenueRecognitionOrder = T['io.flow.internal.v0.models.fx_revenu
28853
29053
  export const fxRevenueRecognitionOrganization = T['io.flow.internal.v0.models.fx_revenue_recognition_organization'];
28854
29054
  export const fxRevenueRecognitionRate = T['io.flow.internal.v0.models.fx_revenue_recognition_rate'];
28855
29055
  export const fxRevenueRecognitionSource = T['io.flow.internal.v0.models.fx_revenue_recognition_source'];
28856
- export const generateLoad = T['io.flow.internal.v0.models.generate_load'];
29056
+ export const generateLoad = T['io.flow.internal.v0.unions.generate_load'];
29057
+ export const generateLoadMultipleOrgs = T['io.flow.internal.v0.models.generate_load_multiple_orgs'];
29058
+ export const generateLoadSingleOrg = T['io.flow.internal.v0.models.generate_load_single_org'];
28857
29059
  export const giftCard = T['io.flow.internal.v0.models.gift_card'];
28858
29060
  export const giftCardAuthorizationError = T['io.flow.internal.v0.models.gift_card_authorization_error'];
28859
29061
  export const giftCardForm = T['io.flow.internal.v0.models.gift_card_form'];
@@ -28866,6 +29068,8 @@ export const googleLinker = T['io.flow.internal.v0.models.google_linker'];
28866
29068
  export const googleShoppingAccountParameters = T['io.flow.internal.v0.models.google_shopping_account_parameters'];
28867
29069
  export const googleShoppingSetting = T['io.flow.internal.v0.models.google_shopping_setting'];
28868
29070
  export const googleTagManager = T['io.flow.internal.v0.models.google_tag_manager'];
29071
+ export const harmonizationClassificationStatisticsData = T['io.flow.internal.v0.models.harmonization_classification_statistics_data'];
29072
+ export const harmonizationClassificationStatisticsPublished = T['io.flow.internal.v0.models.harmonization_classification_statistics_published'];
28869
29073
  export const harmonizationCodesImport = T['io.flow.internal.v0.models.harmonization_codes_import'];
28870
29074
  export const harmonizationColumnSetting = T['io.flow.internal.v0.models.harmonization_column_setting'];
28871
29075
  export const harmonizationItemClassification = T['io.flow.internal.v0.models.harmonization_item_classification'];
@@ -29076,6 +29280,7 @@ export const localizedPriceBookItemData = T['io.flow.internal.v0.models.localize
29076
29280
  export const localizedPriceBookItemDeleted = T['io.flow.internal.v0.models.localized_price_book_item_deleted'];
29077
29281
  export const localizedPriceBookItemUpserted = T['io.flow.internal.v0.models.localized_price_book_item_upserted'];
29078
29282
  export const location = T['io.flow.internal.v0.models.location'];
29283
+ export const logisticsCenterCheck = T['io.flow.internal.v0.models.logistics_center_check'];
29079
29284
  export const logo = T['io.flow.internal.v0.models.logo'];
29080
29285
  export const loyaltyProgram = T['io.flow.internal.v0.models.loyalty_program'];
29081
29286
  export const loyaltyProgramMessage = T['io.flow.internal.v0.models.loyalty_program_message'];
@@ -29259,6 +29464,9 @@ export const organizationRestrictionStatus = T['io.flow.internal.v0.models.organ
29259
29464
  export const organizationRestrictionStatusNote = T['io.flow.internal.v0.models.organization_restriction_status_note'];
29260
29465
  export const organizationSettings = T['io.flow.internal.v0.models.organization_settings'];
29261
29466
  export const organizationSettingsForm = T['io.flow.internal.v0.models.organization_settings_form'];
29467
+ export const organizationStatusChange = T['io.flow.internal.v0.models.organization_status_change'];
29468
+ export const organizationStatusChangeDeleted = T['io.flow.internal.v0.models.organization_status_change_deleted'];
29469
+ export const organizationStatusChangeUpserted = T['io.flow.internal.v0.models.organization_status_change_upserted'];
29262
29470
  export const outputStyle = T['io.flow.internal.v0.enums.output_style'];
29263
29471
  export const owner = T['io.flow.internal.v0.enums.owner'];
29264
29472
  export const partner = T['io.flow.internal.v0.models.partner'];
@@ -29558,6 +29766,7 @@ export const shopifyOrderContent = T['io.flow.internal.v0.models.shopify_order_c
29558
29766
  export const shopifyOrderDestinationForm = T['io.flow.internal.v0.models.shopify_order_destination_form'];
29559
29767
  export const shopifyOrderDetail = T['io.flow.internal.v0.models.shopify_order_detail'];
29560
29768
  export const shopifyOrderDiscountContent = T['io.flow.internal.v0.models.shopify_order_discount_content'];
29769
+ export const shopifyOrderFulfillmentsSnapshot = T['io.flow.internal.v0.models.shopify_order_fulfillments_snapshot'];
29561
29770
  export const shopifyOrderInventoryCheck = T['io.flow.internal.v0.models.shopify_order_inventory_check'];
29562
29771
  export const shopifyOrderLineAttribute = T['io.flow.internal.v0.models.shopify_order_line_attribute'];
29563
29772
  export const shopifyOrderLineContent = T['io.flow.internal.v0.models.shopify_order_line_content'];
@@ -29690,9 +29899,7 @@ export const taxTransactionUpserted = T['io.flow.internal.v0.models.tax_transact
29690
29899
  export const taxonomyCategory = PropTypes.any;
29691
29900
  export const taxonomyNode = PropTypes.any;
29692
29901
  export const test = T['io.flow.internal.v0.models.test'];
29693
- export const testDeleted = T['io.flow.internal.v0.models.test_deleted'];
29694
29902
  export const testForm = T['io.flow.internal.v0.models.test_form'];
29695
- export const testUpserted = T['io.flow.internal.v0.models.test_upserted'];
29696
29903
  export const thirdPartyLogisticsPartner = T['io.flow.internal.v0.models.third_party_logistics_partner'];
29697
29904
  export const thirdPartyLogisticsPickUpTimeWindow = T['io.flow.internal.v0.models.third_party_logistics_pick_up_time_window'];
29698
29905
  export const tieredFee = T['io.flow.internal.v0.models.tiered_fee'];