@flowio/api-internal-factories 0.0.101 → 0.0.103

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.
@@ -1284,6 +1284,7 @@ const factories = {
1284
1284
  shipping_label_revenue_share: factories['io.flow.billing.csv.v0.models.billing_csv_transaction_metadata_shipping_label_revenue_share'](),
1285
1285
  trueup: factories['io.flow.billing.csv.v0.models.billing_csv_transaction_metadata_trueup'](),
1286
1286
  carrier_charge: factories['io.flow.billing.csv.v0.models.billing_csv_transaction_metadata_carrier_charge'](),
1287
+ carrier_fee: factories['io.flow.billing.csv.v0.models.billing_csv_transaction_metadata_carrier_fee'](),
1287
1288
  manual: factories['io.flow.billing.csv.v0.models.billing_csv_transaction_metadata_manual'](),
1288
1289
  }),
1289
1290
 
@@ -1296,6 +1297,14 @@ const factories = {
1296
1297
  outbound_transaction_id: factories.string(),
1297
1298
  }),
1298
1299
 
1300
+ 'io.flow.billing.csv.v0.models.billing_csv_transaction_metadata_carrier_fee': (): io.flow.billing.csv.v0.models.BillingCsvTransactionMetadataCarrierFee => ({
1301
+ outbound_transaction_id: factories.string(),
1302
+ estimate_fixed_ddp: factories.decimal(),
1303
+ estimate_fixed_currency_conversion: factories.decimal(),
1304
+ actual_fixed_ddp: factories.decimal(),
1305
+ actual_fixed_currency_conversion: factories.decimal(),
1306
+ }),
1307
+
1299
1308
  'io.flow.billing.csv.v0.models.billing_csv_transaction_metadata_channel': (): io.flow.billing.csv.v0.models.BillingCsvTransactionMetadataChannel => ({
1300
1309
  method: factories.string(),
1301
1310
  card: factories['io.flow.billing.v0.models.transaction_metadata_channel_card_metadata'](),
@@ -1414,10 +1423,11 @@ const factories = {
1414
1423
  'duty',
1415
1424
  'trueup',
1416
1425
  'carrier_charge',
1426
+ 'carrier_fee',
1417
1427
  'all',
1418
1428
  ]),
1419
1429
 
1420
- 'io.flow.billing.internal.v0.enums.billing_transaction_status': (): io.flow.billing.internal.v0.enums.BillingTransactionStatus => faker.helpers.arrayElement(['pending', 'pending_proof', 'posted']),
1430
+ 'io.flow.billing.internal.v0.enums.billing_transaction_status': (): io.flow.billing.internal.v0.enums.BillingTransactionStatus => faker.helpers.arrayElement(['pending_proof', 'posted']),
1421
1431
 
1422
1432
  'io.flow.billing.internal.v0.enums.billing_transaction_type': (): io.flow.billing.internal.v0.enums.BillingTransactionType => faker.helpers.arrayElement([
1423
1433
  'manual',
@@ -1442,16 +1452,17 @@ const factories = {
1442
1452
  'duty',
1443
1453
  'trueup',
1444
1454
  'carrier_charge',
1455
+ 'carrier_fee',
1445
1456
  ]),
1446
1457
 
1447
1458
  'io.flow.billing.internal.v0.enums.carrier_charge_transaction_type': (): io.flow.billing.internal.v0.enums.CarrierChargeTransactionType => faker.helpers.arrayElement(['adjustment', 'reversal', 'charge', 'revenue_share']),
1459
+ 'io.flow.billing.internal.v0.enums.carrier_fee_transaction_type': (): io.flow.billing.internal.v0.enums.CarrierFeeTransactionType => faker.helpers.arrayElement(['adjustment', 'reversal', 'fee']),
1448
1460
  'io.flow.billing.internal.v0.enums.channel_billed_transaction_type': (): io.flow.billing.internal.v0.enums.ChannelBilledTransactionType => faker.helpers.arrayElement(['adjustment', 'reversal', 'channel_initiated']),
1449
1461
  'io.flow.billing.internal.v0.enums.channel_transaction_type': (): io.flow.billing.internal.v0.enums.ChannelTransactionType => faker.helpers.arrayElement(['adjustment', 'reversal', 'processing']),
1450
1462
  'io.flow.billing.internal.v0.enums.dispute_transaction_type': (): io.flow.billing.internal.v0.enums.DisputeTransactionType => faker.helpers.arrayElement(['adjustment', 'dispute']),
1451
1463
  'io.flow.billing.internal.v0.enums.duty_transaction_type': (): io.flow.billing.internal.v0.enums.DutyTransactionType => faker.helpers.arrayElement(['adjustment', 'reversal', 'duty']),
1452
1464
  'io.flow.billing.internal.v0.enums.fees_source': (): io.flow.billing.internal.v0.enums.FeesSource => faker.helpers.arrayElement(['settings', 'authorization_bundle']),
1453
1465
  'io.flow.billing.internal.v0.enums.label_transaction_type': (): io.flow.billing.internal.v0.enums.LabelTransactionType => faker.helpers.arrayElement(['adjustment', 'reversal', 'billable_label', 'fee', 'revenue_share']),
1454
- 'io.flow.billing.internal.v0.enums.main_transaction_status': (): io.flow.billing.internal.v0.enums.MainTransactionStatus => faker.helpers.arrayElement(['scheduled', 'pending_proof']),
1455
1466
 
1456
1467
  'io.flow.billing.internal.v0.enums.manual_transaction_category': (): io.flow.billing.internal.v0.enums.ManualTransactionCategory => faker.helpers.arrayElement([
1457
1468
  'cancelled_order_refund',
@@ -1816,6 +1827,7 @@ const factories = {
1816
1827
  duty: factories['io.flow.common.v0.models.price'](),
1817
1828
  trueup: factories['io.flow.common.v0.models.price'](),
1818
1829
  carrier_charge: factories['io.flow.common.v0.models.price'](),
1830
+ carrier_fee: factories['io.flow.common.v0.models.price'](),
1819
1831
  ending_balance: factories['io.flow.common.v0.models.price'](),
1820
1832
  }),
1821
1833
 
@@ -1849,6 +1861,23 @@ const factories = {
1849
1861
  created_at: factories.date_time_iso_8601(),
1850
1862
  }),
1851
1863
 
1864
+ 'io.flow.billing.internal.v0.models.carrier_fee_transaction': (): io.flow.billing.internal.v0.models.CarrierFeeTransaction => ({
1865
+ discriminator: 'carrier_fee_transaction',
1866
+ label_reference: factories['io.flow.billing.internal.v0.models.carrier_fee_transaction_label_reference'](),
1867
+ id: factories.string(),
1868
+ type: factories['io.flow.billing.internal.v0.enums.billing_transaction_type'](),
1869
+ status: factories['io.flow.billing.internal.v0.enums.billing_transaction_status'](),
1870
+ posted_at: factories.date_time_iso_8601(),
1871
+ value: factories['io.flow.common.v0.models.price'](),
1872
+ description: factories.string(),
1873
+ statement: factories['io.flow.billing.internal.v0.models.billing_statement_reference'](),
1874
+ created_at: factories.date_time_iso_8601(),
1875
+ }),
1876
+
1877
+ 'io.flow.billing.internal.v0.models.carrier_fee_transaction_label_reference': (): io.flow.billing.internal.v0.models.CarrierFeeTransactionLabelReference => ({
1878
+ id: factories.string(),
1879
+ }),
1880
+
1852
1881
  'io.flow.billing.internal.v0.models.channel_account': (): io.flow.billing.internal.v0.models.ChannelAccount => ({
1853
1882
  channel: factories['io.flow.common.v0.models.channel_reference'](),
1854
1883
  id: factories.string(),
@@ -2002,7 +2031,14 @@ const factories = {
2002
2031
  reason: factories.string(),
2003
2032
  }),
2004
2033
 
2005
- 'io.flow.billing.internal.v0.models.explicit_statement_form': (): io.flow.billing.internal.v0.models.ExplicitStatementForm => ({
2034
+ 'io.flow.billing.internal.v0.models.explicit_statement_form_all_pending_posted_transactions': (): io.flow.billing.internal.v0.models.ExplicitStatementFormAllPendingPostedTransactions => ({
2035
+ discriminator: 'all_pending_posted_transactions',
2036
+ account_id: factories.string(),
2037
+ reason: factories.string(),
2038
+ }),
2039
+
2040
+ 'io.flow.billing.internal.v0.models.explicit_statement_form_transaction_ids': (): io.flow.billing.internal.v0.models.ExplicitStatementFormTransactionIds => ({
2041
+ discriminator: 'transaction_ids',
2006
2042
  account_id: factories.string(),
2007
2043
  reason: factories.string(),
2008
2044
  transaction_ids: arrayOf(() => factories.string()),
@@ -2182,6 +2218,11 @@ const factories = {
2182
2218
  created_at: factories.date_time_iso_8601(),
2183
2219
  }),
2184
2220
 
2221
+ 'io.flow.billing.internal.v0.models.lost_chargeback': (): io.flow.billing.internal.v0.models.LostChargeback => ({
2222
+ id: factories.string(),
2223
+ order: factories['io.flow.billing.internal.v0.models.billing_order_transaction_order_reference'](),
2224
+ }),
2225
+
2185
2226
  'io.flow.billing.internal.v0.models.main_transaction': (): io.flow.billing.internal.v0.models.MainTransaction => ({
2186
2227
  id: factories.string(),
2187
2228
  account: factories['io.flow.billing.v0.models.account_reference'](),
@@ -2215,7 +2256,6 @@ const factories = {
2215
2256
  currency: factories.string(),
2216
2257
  description: factories.string(),
2217
2258
  category: factories['io.flow.billing.internal.v0.enums.manual_transaction_category'](),
2218
- posted_at: factories.date_time_iso_8601(),
2219
2259
  order: factories['io.flow.billing.internal.v0.models.manual_transaction_form_order'](),
2220
2260
  original_transaction_id: factories.string(),
2221
2261
  attributes: objectOf(() => factories.string()),
@@ -2423,6 +2463,12 @@ const factories = {
2423
2463
  shipping_notification_id: factories.string(),
2424
2464
  }),
2425
2465
 
2466
+ 'io.flow.billing.internal.v0.models.proof_of_posting_time_elapsed': (): io.flow.billing.internal.v0.models.ProofOfPostingTimeElapsed => ({
2467
+ discriminator: 'time_elapsed',
2468
+ order: factories['io.flow.billing.internal.v0.models.billing_order_transaction_order_reference'](),
2469
+ created_at: factories.date_time_iso_8601(),
2470
+ }),
2471
+
2426
2472
  'io.flow.billing.internal.v0.models.simple_account_reference': (): io.flow.billing.internal.v0.models.SimpleAccountReference => ({
2427
2473
  id: factories.string(),
2428
2474
  }),
@@ -2604,6 +2650,15 @@ const factories = {
2604
2650
  return f();
2605
2651
  },
2606
2652
 
2653
+ 'io.flow.billing.internal.v0.unions.explicit_statement_form': (): io.flow.billing.internal.v0.unions.ExplicitStatementForm => {
2654
+ const f = faker.helpers.arrayElement([
2655
+ () => factories['io.flow.billing.internal.v0.models.explicit_statement_form_transaction_ids'](),
2656
+ () => factories['io.flow.billing.internal.v0.models.explicit_statement_form_all_pending_posted_transactions'](),
2657
+ ]);
2658
+
2659
+ return f();
2660
+ },
2661
+
2607
2662
  'io.flow.billing.internal.v0.unions.order_cancellation_evidence': (): io.flow.billing.internal.v0.unions.OrderCancellationEvidence => {
2608
2663
  const f = faker.helpers.arrayElement([
2609
2664
  () => factories['io.flow.billing.internal.v0.models.order_cancellation_evidence_manual'](),
@@ -2632,6 +2687,7 @@ const factories = {
2632
2687
  () => factories['io.flow.billing.internal.v0.models.proof_of_posting_shipping_notification'](),
2633
2688
  () => factories['io.flow.billing.internal.v0.models.proof_of_posting_order_cancellation'](),
2634
2689
  () => factories['io.flow.billing.internal.v0.models.proof_of_posting_order_combined_shipment'](),
2690
+ () => factories['io.flow.billing.internal.v0.models.proof_of_posting_time_elapsed'](),
2635
2691
  ]);
2636
2692
 
2637
2693
  return f();
@@ -2664,6 +2720,7 @@ const factories = {
2664
2720
  () => factories['io.flow.billing.internal.v0.models.duty_transaction'](),
2665
2721
  () => factories['io.flow.billing.internal.v0.models.trueup_transaction'](),
2666
2722
  () => factories['io.flow.billing.internal.v0.models.carrier_charge_transaction'](),
2723
+ () => factories['io.flow.billing.internal.v0.models.carrier_fee_transaction'](),
2667
2724
  ]);
2668
2725
 
2669
2726
  return f();
@@ -2711,6 +2768,7 @@ const factories = {
2711
2768
  'trueup_overview',
2712
2769
  'non_channel_payment_bank_account',
2713
2770
  'scheduled_payment',
2771
+ 'account_quarterly_balances',
2714
2772
  ]),
2715
2773
 
2716
2774
  'io.flow.billing.reporting.v0.enums.reporting_fulfillment_is_virtual': (): io.flow.billing.reporting.v0.enums.ReportingFulfillmentIsVirtual => faker.helpers.arrayElement(['all', 'mixed', 'none']),
@@ -3055,6 +3113,7 @@ const factories = {
3055
3113
  'trueup',
3056
3114
  'carrier_charge',
3057
3115
  'carrier_charge_revenue_share',
3116
+ 'carrier_fee',
3058
3117
  'platform_fee',
3059
3118
  'tax',
3060
3119
  'duty',
@@ -3355,11 +3414,18 @@ const factories = {
3355
3414
  carrier_id: factories.string(),
3356
3415
  carrier_tracking_number: factories.string(),
3357
3416
  revenue_share_percentage: factories.decimal(),
3358
- outbound: factories['io.flow.billing.v0.models.transaction_metadata_carrier_charge_outbound'](),
3417
+ outbound: factories['io.flow.billing.v0.models.transaction_metadata_outbound_transaction'](),
3359
3418
  }),
3360
3419
 
3361
- 'io.flow.billing.v0.models.transaction_metadata_carrier_charge_outbound': (): io.flow.billing.v0.models.TransactionMetadataCarrierChargeOutbound => ({
3362
- transaction_id: factories.string(),
3420
+ 'io.flow.billing.v0.models.transaction_metadata_carrier_fee': (): io.flow.billing.v0.models.TransactionMetadataCarrierFee => ({
3421
+ discriminator: 'carrier_fee',
3422
+ outbound: factories['io.flow.billing.v0.models.transaction_metadata_outbound_transaction'](),
3423
+ estimate: factories['io.flow.billing.v0.models.transaction_metadata_carrier_fee_data'](),
3424
+ actual: factories['io.flow.billing.v0.models.transaction_metadata_carrier_fee_data'](),
3425
+ }),
3426
+
3427
+ 'io.flow.billing.v0.models.transaction_metadata_carrier_fee_data': (): io.flow.billing.v0.models.TransactionMetadataCarrierFeeData => ({
3428
+ surcharges: arrayOf(() => factories['io.flow.billing.v0.models.trueup_label_surcharge']()),
3363
3429
  }),
3364
3430
 
3365
3431
  'io.flow.billing.v0.models.transaction_metadata_channel': (): io.flow.billing.v0.models.TransactionMetadataChannel => ({
@@ -3389,6 +3455,15 @@ const factories = {
3389
3455
  id: factories.string(),
3390
3456
  }),
3391
3457
 
3458
+ 'io.flow.billing.v0.models.transaction_metadata_outbound_transaction': (): io.flow.billing.v0.models.TransactionMetadataOutboundTransaction => ({
3459
+ transaction_id: factories.string(),
3460
+ }),
3461
+
3462
+ 'io.flow.billing.v0.models.transaction_metadata_payment_transaction': (): io.flow.billing.v0.models.TransactionMetadataPaymentTransaction => ({
3463
+ discriminator: 'payment_transaction',
3464
+ key: factories.string(),
3465
+ }),
3466
+
3392
3467
  'io.flow.billing.v0.models.transaction_metadata_shipping_label': (): io.flow.billing.v0.models.TransactionMetadataShippingLabel => ({
3393
3468
  discriminator: 'shipping_label',
3394
3469
  request_method: factories['io.flow.label.v0.enums.label_request_method'](),
@@ -3479,7 +3554,9 @@ const factories = {
3479
3554
  () => factories['io.flow.billing.v0.models.transaction_metadata_channel'](),
3480
3555
  () => factories['io.flow.billing.v0.models.transaction_metadata_trueup'](),
3481
3556
  () => factories['io.flow.billing.v0.models.transaction_metadata_carrier_charge'](),
3557
+ () => factories['io.flow.billing.v0.models.transaction_metadata_carrier_fee'](),
3482
3558
  () => factories['io.flow.billing.v0.models.transaction_metadata_manual'](),
3559
+ () => factories['io.flow.billing.v0.models.transaction_metadata_payment_transaction'](),
3483
3560
  ]);
3484
3561
 
3485
3562
  return f();
@@ -9334,6 +9411,8 @@ const factories = {
9334
9411
  'capture_transactions_total',
9335
9412
  'carrier_charge_transactions_count',
9336
9413
  'carrier_charge_transactions_total',
9414
+ 'carrier_fee_transactions_count',
9415
+ 'carrier_fee_transactions_total',
9337
9416
  'channel_transactions_processing_count',
9338
9417
  'channel_transactions_processing_total',
9339
9418
  'channel_transactions_adjustment_count',
@@ -9350,6 +9429,8 @@ const factories = {
9350
9429
  'fully_subsidized_order_transactions_total',
9351
9430
  'billable_label_transactions_count',
9352
9431
  'billable_label_transactions_count_for_unique_orders',
9432
+ 'billable_label_transactions_count_with_revenue_share',
9433
+ 'billable_label_transactions_count_without_revenue_share',
9353
9434
  'billable_label_transactions_total',
9354
9435
  'revenue_share_label_transactions_count',
9355
9436
  'revenue_share_label_transactions_count_for_unique_orders',
@@ -9426,6 +9507,9 @@ const factories = {
9426
9507
  'accounts_with_final_statements_count',
9427
9508
  'accounts_with_final_statements_pending_transaction_count',
9428
9509
  'accounts_with_final_statements_pending_transaction_total',
9510
+ 'orders_wyol_then_label_count',
9511
+ 'orders_wyol_then_label_tax_subsidized_total',
9512
+ 'orders_wyol_then_label_duty_subsidized_total',
9429
9513
  ]),
9430
9514
 
9431
9515
  'io.flow.internal.v0.enums.billing_statement_attachment_key': (): io.flow.internal.v0.enums.BillingStatementAttachmentKey => faker.helpers.arrayElement([
@@ -9445,10 +9529,11 @@ const factories = {
9445
9529
  'duty',
9446
9530
  'trueup',
9447
9531
  'carrier_charge',
9532
+ 'carrier_fee',
9448
9533
  'all',
9449
9534
  ]),
9450
9535
 
9451
- 'io.flow.internal.v0.enums.billing_transaction_status': (): io.flow.internal.v0.enums.BillingTransactionStatus => faker.helpers.arrayElement(['pending', 'pending_proof', 'posted']),
9536
+ 'io.flow.internal.v0.enums.billing_transaction_status': (): io.flow.internal.v0.enums.BillingTransactionStatus => faker.helpers.arrayElement(['pending_proof', 'posted']),
9452
9537
 
9453
9538
  'io.flow.internal.v0.enums.billing_transaction_type': (): io.flow.internal.v0.enums.BillingTransactionType => faker.helpers.arrayElement([
9454
9539
  'manual',
@@ -9473,6 +9558,7 @@ const factories = {
9473
9558
  'duty',
9474
9559
  'trueup',
9475
9560
  'carrier_charge',
9561
+ 'carrier_fee',
9476
9562
  ]),
9477
9563
 
9478
9564
  'io.flow.internal.v0.enums.browser_bundle_error_code': (): io.flow.internal.v0.enums.BrowserBundleErrorCode => faker.helpers.arrayElement(['generic_error', 'country_invalid']),
@@ -9488,6 +9574,8 @@ const factories = {
9488
9574
 
9489
9575
  'io.flow.internal.v0.enums.carrier_charge_transaction_type': (): io.flow.internal.v0.enums.CarrierChargeTransactionType => faker.helpers.arrayElement(['adjustment', 'reversal', 'charge', 'revenue_share']),
9490
9576
  'io.flow.internal.v0.enums.carrier_charge_type': (): io.flow.internal.v0.enums.CarrierChargeType => faker.helpers.arrayElement(['label', 'other']),
9577
+ 'io.flow.internal.v0.enums.carrier_fee_transaction_type': (): io.flow.internal.v0.enums.CarrierFeeTransactionType => faker.helpers.arrayElement(['adjustment', 'reversal', 'fee']),
9578
+ 'io.flow.internal.v0.enums.carrier_file_type': (): io.flow.internal.v0.enums.CarrierFileType => faker.helpers.arrayElement(['charge', 'fee']),
9491
9579
  'io.flow.internal.v0.enums.carrier_label_generation_method': (): io.flow.internal.v0.enums.CarrierLabelGenerationMethod => faker.helpers.arrayElement(['direct', 'easypost']),
9492
9580
  'io.flow.internal.v0.enums.carrier_validation_status': (): io.flow.internal.v0.enums.CarrierValidationStatus => faker.helpers.arrayElement(['success', 'error']),
9493
9581
 
@@ -9551,6 +9639,7 @@ const factories = {
9551
9639
  'customs_clearance_surcharge',
9552
9640
  'security_surcharge',
9553
9641
  'duties_fx_surcharge',
9642
+ 'electronic_export_information_surcharge',
9554
9643
  ]),
9555
9644
 
9556
9645
  'io.flow.internal.v0.enums.chargeback_payment_status': (): io.flow.internal.v0.enums.ChargebackPaymentStatus => faker.helpers.arrayElement(['captured', 'refunded']),
@@ -9781,6 +9870,8 @@ const factories = {
9781
9870
  'label_invoice_request_deleted',
9782
9871
  'carrier_charge_upserted',
9783
9872
  'carrier_charge_deleted',
9873
+ 'carrier_fee_upserted',
9874
+ 'carrier_fee_deleted',
9784
9875
  'fraud_review_upserted',
9785
9876
  'fraud_review_deleted',
9786
9877
  'fraud_pending_review_upserted',
@@ -9884,8 +9975,6 @@ const factories = {
9884
9975
  'payment_processor_account_deleted',
9885
9976
  'payment_processor_merchant_upserted',
9886
9977
  'payment_processor_merchant_deleted',
9887
- 'virtual_card_provider_upserted',
9888
- 'virtual_card_provider_deleted',
9889
9978
  'authorization_bundle_upserted',
9890
9979
  'authorization_bundle_deleted',
9891
9980
  'organization_payment_setting_upserted',
@@ -9951,8 +10040,6 @@ const factories = {
9951
10040
  'stripe_capture_upserted',
9952
10041
  'stripe_refund_deleted',
9953
10042
  'stripe_refund_upserted',
9954
- 'svb_virtual_card_clearing_upserted',
9955
- 'svb_virtual_card_clearing_deleted',
9956
10043
  'liability_remittance_plan_upserted',
9957
10044
  'liability_remittance_plan_deleted',
9958
10045
  'svitlana_item_upserted',
@@ -10047,7 +10134,7 @@ const factories = {
10047
10134
  ['full_value_tax', 'low_value_goods_tax', 'high_value_goods_tax', 'duties'],
10048
10135
  ),
10049
10136
 
10050
- 'io.flow.internal.v0.enums.main_transaction_status': (): io.flow.internal.v0.enums.MainTransactionStatus => faker.helpers.arrayElement(['scheduled', 'pending_proof']),
10137
+ 'io.flow.internal.v0.enums.logistics_capability': (): io.flow.internal.v0.enums.LogisticsCapability => faker.helpers.arrayElement(['logistics_address_correction']),
10051
10138
  'io.flow.internal.v0.enums.manual_review_rule_status': (): io.flow.internal.v0.enums.ManualReviewRuleStatus => faker.helpers.arrayElement(['active', 'archived']),
10052
10139
 
10053
10140
  'io.flow.internal.v0.enums.manual_transaction_category': (): io.flow.internal.v0.enums.ManualTransactionCategory => faker.helpers.arrayElement([
@@ -10282,6 +10369,7 @@ const factories = {
10282
10369
  'trueup_overview',
10283
10370
  'non_channel_payment_bank_account',
10284
10371
  'scheduled_payment',
10372
+ 'account_quarterly_balances',
10285
10373
  ]),
10286
10374
 
10287
10375
  'io.flow.internal.v0.enums.reporting_fulfillment_is_virtual': (): io.flow.internal.v0.enums.ReportingFulfillmentIsVirtual => faker.helpers.arrayElement(['all', 'mixed', 'none']),
@@ -10370,7 +10458,7 @@ const factories = {
10370
10458
  'io.flow.internal.v0.enums.significance_action': (): io.flow.internal.v0.enums.SignificanceAction => faker.helpers.arrayElement(['end_and_implement_winner', 'end_and_revert', 'do_nothing']),
10371
10459
  'io.flow.internal.v0.enums.simple_rounding_strategy': (): io.flow.internal.v0.enums.SimpleRoundingStrategy => faker.helpers.arrayElement(['no_rounding', 'currency_precision']),
10372
10460
  'io.flow.internal.v0.enums.snooze_next_action_with': (): io.flow.internal.v0.enums.SnoozeNextActionWith => faker.helpers.arrayElement(['customer_service', 'engineering']),
10373
- 'io.flow.internal.v0.enums.snooze_source_type': (): io.flow.internal.v0.enums.SnoozeSourceType => faker.helpers.arrayElement(['task']),
10461
+ 'io.flow.internal.v0.enums.snooze_source_type': (): io.flow.internal.v0.enums.SnoozeSourceType => faker.helpers.arrayElement(['task', 'invariant']),
10374
10462
 
10375
10463
  'io.flow.internal.v0.enums.statement_status': (): io.flow.internal.v0.enums.StatementStatus => faker.helpers.arrayElement([
10376
10464
  'created',
@@ -10669,6 +10757,12 @@ const factories = {
10669
10757
  posting_cutoff: factories.date_time_iso_8601(),
10670
10758
  }),
10671
10759
 
10760
+ 'io.flow.internal.v0.models.accounting_pending_order_metadata': (): io.flow.internal.v0.models.AccountingPendingOrderMetadata => ({
10761
+ discriminator: 'accounting_pending_order_metadata',
10762
+ order: factories['io.flow.internal.v0.models.order_reference'](),
10763
+ fulfillment_id: factories.string(),
10764
+ }),
10765
+
10672
10766
  'io.flow.internal.v0.models.action_quantity': (): io.flow.internal.v0.models.ActionQuantity => ({
10673
10767
  action: factories['io.flow.internal.v0.enums.item_quantity_action'](),
10674
10768
  quantity: factories.long(),
@@ -11283,6 +11377,16 @@ const factories = {
11283
11377
  attributes: objectOf(() => factories.string()),
11284
11378
  }),
11285
11379
 
11380
+ 'io.flow.internal.v0.models.bank_payment_order': (): io.flow.internal.v0.models.BankPaymentOrder => ({
11381
+ id: factories.string(),
11382
+ payment: factories['io.flow.internal.v0.models.bank_payment_reference'](),
11383
+ order: factories['io.flow.internal.v0.models.billing_order_transaction_order_reference'](),
11384
+ }),
11385
+
11386
+ 'io.flow.internal.v0.models.bank_payment_reference': (): io.flow.internal.v0.models.BankPaymentReference => ({
11387
+ id: factories.string(),
11388
+ }),
11389
+
11286
11390
  'io.flow.internal.v0.models.bank_payment_status_form': (): io.flow.internal.v0.models.BankPaymentStatusForm => ({
11287
11391
  code: factories['io.flow.internal.v0.enums.bank_payment_status_code'](),
11288
11392
  failure_reason: factories['io.flow.billing.v0.enums.payout_status_failure_code'](),
@@ -11500,6 +11604,7 @@ const factories = {
11500
11604
  duty: factories['io.flow.common.v0.models.price'](),
11501
11605
  trueup: factories['io.flow.common.v0.models.price'](),
11502
11606
  carrier_charge: factories['io.flow.common.v0.models.price'](),
11607
+ carrier_fee: factories['io.flow.common.v0.models.price'](),
11503
11608
  ending_balance: factories['io.flow.common.v0.models.price'](),
11504
11609
  }),
11505
11610
 
@@ -11844,26 +11949,6 @@ const factories = {
11844
11949
  id: factories.string(),
11845
11950
  }),
11846
11951
 
11847
- 'io.flow.internal.v0.models.carrier_charge_file': (): io.flow.internal.v0.models.CarrierChargeFile => ({
11848
- id: factories.string(),
11849
- url: factories.string(),
11850
- attributes: objectOf(() => factories.string()),
11851
- created_at: factories.date_time_iso_8601(),
11852
- result: factories['io.flow.internal.v0.models.carrier_charge_file_result'](),
11853
- }),
11854
-
11855
- 'io.flow.internal.v0.models.carrier_charge_file_form': (): io.flow.internal.v0.models.CarrierChargeFileForm => ({
11856
- url: factories.string(),
11857
- attributes: objectOf(() => factories.string()),
11858
- }),
11859
-
11860
- 'io.flow.internal.v0.models.carrier_charge_file_result': (): io.flow.internal.v0.models.CarrierChargeFileResult => ({
11861
- processed_at: factories.date_time_iso_8601(),
11862
- number_lines_successful: factories.long(),
11863
- number_lines_with_errors: factories.long(),
11864
- errors_url: factories.string(),
11865
- }),
11866
-
11867
11952
  'io.flow.internal.v0.models.carrier_charge_form_label': (): io.flow.internal.v0.models.CarrierChargeFormLabel => ({
11868
11953
  discriminator: 'label',
11869
11954
  id: factories.string(),
@@ -11930,6 +12015,83 @@ const factories = {
11930
12015
  carrier_charge: factories['io.flow.internal.v0.models.carrier_charge'](),
11931
12016
  }),
11932
12017
 
12018
+ 'io.flow.internal.v0.models.carrier_fee': (): io.flow.internal.v0.models.CarrierFee => ({
12019
+ id: factories.string(),
12020
+ label_invoice_request_id: factories.string(),
12021
+ units: factories['io.flow.internal.v0.models.carrier_fee_units'](),
12022
+ surcharges: factories['io.flow.internal.v0.models.label_surcharge_form'](),
12023
+ total: factories.decimal(),
12024
+ attributes: objectOf(() => factories.string()),
12025
+ }),
12026
+
12027
+ 'io.flow.internal.v0.models.carrier_fee_deleted': (): io.flow.internal.v0.models.CarrierFeeDeleted => ({
12028
+ discriminator: 'carrier_fee_deleted',
12029
+ event_id: factories.string(),
12030
+ timestamp: factories.date_time_iso_8601(),
12031
+ organization: factories.string(),
12032
+ id: factories.string(),
12033
+ }),
12034
+
12035
+ 'io.flow.internal.v0.models.carrier_fee_form': (): io.flow.internal.v0.models.CarrierFeeForm => ({
12036
+ id: factories.string(),
12037
+ label_invoice_request_id: factories.string(),
12038
+ units: factories['io.flow.internal.v0.models.carrier_fee_units'](),
12039
+ surcharges: factories['io.flow.internal.v0.models.label_surcharge_form'](),
12040
+ total: factories.decimal(),
12041
+ attributes: objectOf(() => factories.string()),
12042
+ }),
12043
+
12044
+ 'io.flow.internal.v0.models.carrier_fee_transaction': (): io.flow.internal.v0.models.CarrierFeeTransaction => ({
12045
+ discriminator: 'carrier_fee_transaction',
12046
+ label_reference: factories['io.flow.internal.v0.models.carrier_fee_transaction_label_reference'](),
12047
+ id: factories.string(),
12048
+ type: factories['io.flow.internal.v0.enums.billing_transaction_type'](),
12049
+ status: factories['io.flow.internal.v0.enums.billing_transaction_status'](),
12050
+ posted_at: factories.date_time_iso_8601(),
12051
+ value: factories['io.flow.common.v0.models.price'](),
12052
+ description: factories.string(),
12053
+ statement: factories['io.flow.internal.v0.models.billing_statement_reference'](),
12054
+ created_at: factories.date_time_iso_8601(),
12055
+ }),
12056
+
12057
+ 'io.flow.internal.v0.models.carrier_fee_transaction_label_reference': (): io.flow.internal.v0.models.CarrierFeeTransactionLabelReference => ({
12058
+ id: factories.string(),
12059
+ }),
12060
+
12061
+ 'io.flow.internal.v0.models.carrier_fee_units': (): io.flow.internal.v0.models.CarrierFeeUnits => ({
12062
+ currency: factories.string(),
12063
+ }),
12064
+
12065
+ 'io.flow.internal.v0.models.carrier_fee_upserted': (): io.flow.internal.v0.models.CarrierFeeUpserted => ({
12066
+ discriminator: 'carrier_fee_upserted',
12067
+ event_id: factories.string(),
12068
+ timestamp: factories.date_time_iso_8601(),
12069
+ organization: factories.string(),
12070
+ carrier_fee: factories['io.flow.internal.v0.models.carrier_fee'](),
12071
+ }),
12072
+
12073
+ 'io.flow.internal.v0.models.carrier_file': (): io.flow.internal.v0.models.CarrierFile => ({
12074
+ id: factories.string(),
12075
+ type: factories['io.flow.internal.v0.enums.carrier_file_type'](),
12076
+ url: factories.string(),
12077
+ attributes: objectOf(() => factories.string()),
12078
+ created_at: factories.date_time_iso_8601(),
12079
+ result: factories['io.flow.internal.v0.models.carrier_file_result'](),
12080
+ }),
12081
+
12082
+ 'io.flow.internal.v0.models.carrier_file_form': (): io.flow.internal.v0.models.CarrierFileForm => ({
12083
+ url: factories.string(),
12084
+ type: factories['io.flow.internal.v0.enums.carrier_file_type'](),
12085
+ attributes: objectOf(() => factories.string()),
12086
+ }),
12087
+
12088
+ 'io.flow.internal.v0.models.carrier_file_result': (): io.flow.internal.v0.models.CarrierFileResult => ({
12089
+ processed_at: factories.date_time_iso_8601(),
12090
+ number_lines_successful: factories.long(),
12091
+ number_lines_with_errors: factories.long(),
12092
+ errors_url: factories.string(),
12093
+ }),
12094
+
11933
12095
  'io.flow.internal.v0.models.carrier_invoice': (): io.flow.internal.v0.models.CarrierInvoice => ({
11934
12096
  number: factories.string(),
11935
12097
  timestamp: factories.date_time_iso_8601(),
@@ -12962,6 +13124,7 @@ const factories = {
12962
13124
  order_number: factories.string(),
12963
13125
  destination: factories['io.flow.fulfillment.v0.models.shipping_address'](),
12964
13126
  service: factories.string(),
13127
+ bypass_house_number_validation: factories.boolean(),
12965
13128
  }),
12966
13129
 
12967
13130
  'io.flow.internal.v0.models.console_mark_unresolvable_form': (): io.flow.internal.v0.models.ConsoleMarkUnresolvableForm => ({
@@ -13378,7 +13541,7 @@ const factories = {
13378
13541
  }),
13379
13542
 
13380
13543
  'io.flow.internal.v0.models.debug_transaction_details_status': (): io.flow.internal.v0.models.DebugTransactionDetailsStatus => ({
13381
- status: factories['io.flow.internal.v0.enums.main_transaction_status'](),
13544
+ status: factories['io.flow.internal.v0.enums.billing_transaction_status'](),
13382
13545
  description: factories.string(),
13383
13546
  }),
13384
13547
 
@@ -13513,6 +13676,18 @@ const factories = {
13513
13676
  description: factories['io.flow.internal.v0.models.content_label'](),
13514
13677
  }),
13515
13678
 
13679
+ 'io.flow.internal.v0.models.dimension_estimate_ops_input': (): io.flow.internal.v0.models.DimensionEstimateOpsInput => ({
13680
+ organization_id: factories.string(),
13681
+ length_unit: factories['io.flow.common.v0.enums.unit_of_measurement'](),
13682
+ length_val: factories.string(),
13683
+ width_unit: factories['io.flow.common.v0.enums.unit_of_measurement'](),
13684
+ width_val: factories.string(),
13685
+ depth_unit: factories['io.flow.common.v0.enums.unit_of_measurement'](),
13686
+ depth_val: factories.string(),
13687
+ weight_unit: factories['io.flow.common.v0.enums.unit_of_measurement'](),
13688
+ weight_val: factories.string(),
13689
+ }),
13690
+
13516
13691
  'io.flow.internal.v0.models.discount': (): io.flow.internal.v0.models.Discount => ({
13517
13692
  amount: factories.decimal(),
13518
13693
  description: factories.string(),
@@ -14288,7 +14463,14 @@ const factories = {
14288
14463
  reason: factories.string(),
14289
14464
  }),
14290
14465
 
14291
- 'io.flow.internal.v0.models.explicit_statement_form': (): io.flow.internal.v0.models.ExplicitStatementForm => ({
14466
+ 'io.flow.internal.v0.models.explicit_statement_form_all_pending_posted_transactions': (): io.flow.internal.v0.models.ExplicitStatementFormAllPendingPostedTransactions => ({
14467
+ discriminator: 'all_pending_posted_transactions',
14468
+ account_id: factories.string(),
14469
+ reason: factories.string(),
14470
+ }),
14471
+
14472
+ 'io.flow.internal.v0.models.explicit_statement_form_transaction_ids': (): io.flow.internal.v0.models.ExplicitStatementFormTransactionIds => ({
14473
+ discriminator: 'transaction_ids',
14292
14474
  account_id: factories.string(),
14293
14475
  reason: factories.string(),
14294
14476
  transaction_ids: arrayOf(() => factories.string()),
@@ -15764,6 +15946,10 @@ const factories = {
15764
15946
  values: arrayOf(() => factories.string()),
15765
15947
  }),
15766
15948
 
15949
+ 'io.flow.internal.v0.models.item_form': (): io.flow.internal.v0.models.ItemForm => ({
15950
+ amount: factories.decimal(),
15951
+ }),
15952
+
15767
15953
  'io.flow.internal.v0.models.item_form_import_request': (): io.flow.internal.v0.models.ItemFormImportRequest => ({
15768
15954
  discriminator: 'item_form_import_request',
15769
15955
  event_id: factories.string(),
@@ -16483,10 +16669,23 @@ const factories = {
16483
16669
  url: factories.string(),
16484
16670
  }),
16485
16671
 
16672
+ 'io.flow.internal.v0.models.logistics_capabilities': (): io.flow.internal.v0.models.LogisticsCapabilities => ({
16673
+ capabilities: arrayOf(() => factories['io.flow.internal.v0.enums.logistics_capability']()),
16674
+ }),
16675
+
16676
+ 'io.flow.internal.v0.models.logistics_capabilities_form': (): io.flow.internal.v0.models.LogisticsCapabilitiesForm => ({
16677
+ capabilities: arrayOf(() => factories['io.flow.internal.v0.enums.logistics_capability']()),
16678
+ }),
16679
+
16486
16680
  'io.flow.internal.v0.models.logo': (): io.flow.internal.v0.models.Logo => ({
16487
16681
  url: factories.string(),
16488
16682
  }),
16489
16683
 
16684
+ 'io.flow.internal.v0.models.lost_chargeback': (): io.flow.internal.v0.models.LostChargeback => ({
16685
+ id: factories.string(),
16686
+ order: factories['io.flow.internal.v0.models.billing_order_transaction_order_reference'](),
16687
+ }),
16688
+
16490
16689
  'io.flow.internal.v0.models.loyalty_program': (): io.flow.internal.v0.models.LoyaltyProgram => ({
16491
16690
  title: factories.string(),
16492
16691
  message: factories['io.flow.internal.v0.models.loyalty_program_message'](),
@@ -16604,7 +16803,6 @@ const factories = {
16604
16803
  currency: factories.string(),
16605
16804
  description: factories.string(),
16606
16805
  category: factories['io.flow.internal.v0.enums.manual_transaction_category'](),
16607
- posted_at: factories.date_time_iso_8601(),
16608
16806
  order: factories['io.flow.internal.v0.models.manual_transaction_form_order'](),
16609
16807
  original_transaction_id: factories.string(),
16610
16808
  attributes: objectOf(() => factories.string()),
@@ -16898,6 +17096,10 @@ const factories = {
16898
17096
  flow_authorization: factories['io.flow.payment.v0.unions.authorization'](),
16899
17097
  }),
16900
17098
 
17099
+ 'io.flow.internal.v0.models.markets_order_summary': (): io.flow.internal.v0.models.MarketsOrderSummary => ({
17100
+ id: factories.string(),
17101
+ }),
17102
+
16901
17103
  'io.flow.internal.v0.models.matias_item': (): io.flow.internal.v0.models.MatiasItem => ({
16902
17104
  id: factories.string(),
16903
17105
  number: factories.string(),
@@ -17575,6 +17777,7 @@ const factories = {
17575
17777
  destination: factories['io.flow.fulfillment.v0.models.shipping_address'](),
17576
17778
  error: factories.string(),
17577
17779
  created_at: factories.string(),
17780
+ cancelled_at: factories.date_time_iso_8601(),
17578
17781
  }),
17579
17782
 
17580
17783
  'io.flow.internal.v0.models.order_validation_failure_upserted': (): io.flow.internal.v0.models.OrderValidationFailureUpserted => ({
@@ -18665,6 +18868,8 @@ const factories = {
18665
18868
  updated_by_user_id: factories.string(),
18666
18869
  flagged_for_keywords_at: factories.date_time_iso_8601(),
18667
18870
  automatically_restricted_at: factories.date_time_iso_8601(),
18871
+ auto_reviewed_at: factories.date_time_iso_8601(),
18872
+ auto_review_status: factories['io.flow.internal.v0.enums.restriction_status'](),
18668
18873
  manually_reviewed_at: factories.date_time_iso_8601(),
18669
18874
  manually_reviewed_by: factories.string(),
18670
18875
  }),
@@ -18718,6 +18923,12 @@ const factories = {
18718
18923
  shipping_notification_id: factories.string(),
18719
18924
  }),
18720
18925
 
18926
+ 'io.flow.internal.v0.models.proof_of_posting_time_elapsed': (): io.flow.internal.v0.models.ProofOfPostingTimeElapsed => ({
18927
+ discriminator: 'time_elapsed',
18928
+ order: factories['io.flow.internal.v0.models.billing_order_transaction_order_reference'](),
18929
+ created_at: factories.date_time_iso_8601(),
18930
+ }),
18931
+
18721
18932
  'io.flow.internal.v0.models.quote': (): io.flow.internal.v0.models.Quote => ({
18722
18933
  id: factories.string(),
18723
18934
  base: factories.string(),
@@ -19649,6 +19860,7 @@ const factories = {
19649
19860
  categories: arrayOf(() => factories.string()),
19650
19861
  images: arrayOf(() => factories['io.flow.catalog.v0.models.image']()),
19651
19862
  thumbnails: arrayOf(() => factories['io.flow.catalog.v0.models.image']()),
19863
+ hs_code: factories.string(),
19652
19864
  url: factories.string(),
19653
19865
  reviews: arrayOf(() => factories['io.flow.internal.v0.models.restriction_item_review']()),
19654
19866
  created_at: factories.date_time_iso_8601(),
@@ -19721,6 +19933,13 @@ const factories = {
19721
19933
  count: factories.long(),
19722
19934
  }),
19723
19935
 
19936
+ 'io.flow.internal.v0.models.restriction_rule_override': (): io.flow.internal.v0.models.RestrictionRuleOverride => ({
19937
+ id: factories.string(),
19938
+ organization_id: factories.string(),
19939
+ rule_id: factories.string(),
19940
+ value_threshold_usd: factories.decimal(),
19941
+ }),
19942
+
19724
19943
  'io.flow.internal.v0.models.restriction_rule_summary': (): io.flow.internal.v0.models.RestrictionRuleSummary => ({
19725
19944
  id: factories.string(),
19726
19945
  name: factories.string(),
@@ -20262,6 +20481,7 @@ const factories = {
20262
20481
  api_key_masked: factories.string(),
20263
20482
  api_password_masked: factories.string(),
20264
20483
  access_token_masked: factories.string(),
20484
+ shopify_plan_name: factories['io.flow.shopify.external.v0.enums.shopify_plan_name'](),
20265
20485
  }),
20266
20486
 
20267
20487
  'io.flow.internal.v0.models.shopify_markets_shop_deleted': (): io.flow.internal.v0.models.ShopifyMarketsShopDeleted => ({
@@ -20280,6 +20500,7 @@ const factories = {
20280
20500
  api_key: factories.string(),
20281
20501
  api_password: factories.string(),
20282
20502
  access_token: factories.string(),
20503
+ shopify_plan_name: factories['io.flow.shopify.external.v0.enums.shopify_plan_name'](),
20283
20504
  }),
20284
20505
 
20285
20506
  'io.flow.internal.v0.models.shopify_markets_shop_statistics_deleted': (): io.flow.internal.v0.models.ShopifyMarketsShopStatisticsDeleted => ({
@@ -21174,38 +21395,6 @@ const factories = {
21174
21395
  values: arrayOf(() => factories['io.flow.internal.v0.models.label_aliases']()),
21175
21396
  }),
21176
21397
 
21177
- 'io.flow.internal.v0.models.svb_virtual_card_clearing': (): io.flow.internal.v0.models.SvbVirtualCardClearing => ({
21178
- id: factories.string(),
21179
- virtual_card_id: factories.string(),
21180
- number: factories.string(),
21181
- amount: factories.integer(),
21182
- currency: factories.string(),
21183
- date: factories.date_time_iso_8601(),
21184
- clearing_type: factories.string(),
21185
- exchange_rate: factories.string(),
21186
- mcc: factories.string(),
21187
- mcc_description: factories.string(),
21188
- merchant_amount: factories.integer(),
21189
- merchant_currency: factories.string(),
21190
- merchant_id: factories.string(),
21191
- merchant_name: factories.string(),
21192
- settlement_date: factories.date_time_iso_8601(),
21193
- }),
21194
-
21195
- 'io.flow.internal.v0.models.svb_virtual_card_clearing_deleted': (): io.flow.internal.v0.models.SvbVirtualCardClearingDeleted => ({
21196
- discriminator: 'svb_virtual_card_clearing_deleted',
21197
- event_id: factories.string(),
21198
- timestamp: factories.date_time_iso_8601(),
21199
- svb_virtual_card_clearing: factories['io.flow.internal.v0.models.svb_virtual_card_clearing'](),
21200
- }),
21201
-
21202
- 'io.flow.internal.v0.models.svb_virtual_card_clearing_upserted': (): io.flow.internal.v0.models.SvbVirtualCardClearingUpserted => ({
21203
- discriminator: 'svb_virtual_card_clearing_upserted',
21204
- event_id: factories.string(),
21205
- timestamp: factories.date_time_iso_8601(),
21206
- svb_virtual_card_clearing: factories['io.flow.internal.v0.models.svb_virtual_card_clearing'](),
21207
- }),
21208
-
21209
21398
  'io.flow.internal.v0.models.svitlana_item': (): io.flow.internal.v0.models.SvitlanaItem => ({
21210
21399
  id: factories.string(),
21211
21400
  number: factories.string(),
@@ -21934,31 +22123,6 @@ const factories = {
21934
22123
  address: factories.string(),
21935
22124
  }),
21936
22125
 
21937
- 'io.flow.internal.v0.models.virtual_card_provider': (): io.flow.internal.v0.models.VirtualCardProvider => ({
21938
- id: factories.string(),
21939
- organization_id: factories.string(),
21940
- provider: factories.string(),
21941
- attributes: objectOf(() => factories.string()),
21942
- created_at: factories.date_time_iso_8601(),
21943
- updated_at: factories.date_time_iso_8601(),
21944
- }),
21945
-
21946
- 'io.flow.internal.v0.models.virtual_card_provider_deleted': (): io.flow.internal.v0.models.VirtualCardProviderDeleted => ({
21947
- discriminator: 'virtual_card_provider_deleted',
21948
- event_id: factories.string(),
21949
- timestamp: factories.date_time_iso_8601(),
21950
- id: factories.string(),
21951
- provider: factories['io.flow.internal.v0.models.virtual_card_provider'](),
21952
- }),
21953
-
21954
- 'io.flow.internal.v0.models.virtual_card_provider_upserted': (): io.flow.internal.v0.models.VirtualCardProviderUpserted => ({
21955
- discriminator: 'virtual_card_provider_upserted',
21956
- event_id: factories.string(),
21957
- timestamp: factories.date_time_iso_8601(),
21958
- id: factories.string(),
21959
- provider: factories['io.flow.internal.v0.models.virtual_card_provider'](),
21960
- }),
21961
-
21962
22126
  'io.flow.internal.v0.models.virtual_card_transaction': (): io.flow.internal.v0.models.VirtualCardTransaction => ({
21963
22127
  discriminator: 'virtual_card_transaction',
21964
22128
  virtual_card: factories['io.flow.payment.v0.models.virtual_card_reference'](),
@@ -22391,6 +22555,8 @@ const factories = {
22391
22555
  () => factories['io.flow.internal.v0.models.label_invoice_request_deleted'](),
22392
22556
  () => factories['io.flow.internal.v0.models.carrier_charge_upserted'](),
22393
22557
  () => factories['io.flow.internal.v0.models.carrier_charge_deleted'](),
22558
+ () => factories['io.flow.internal.v0.models.carrier_fee_upserted'](),
22559
+ () => factories['io.flow.internal.v0.models.carrier_fee_deleted'](),
22394
22560
  () => factories['io.flow.internal.v0.models.fraud_review_upserted'](),
22395
22561
  () => factories['io.flow.internal.v0.models.fraud_review_deleted'](),
22396
22562
  () => factories['io.flow.internal.v0.models.fraud_pending_review_upserted'](),
@@ -22494,8 +22660,6 @@ const factories = {
22494
22660
  () => factories['io.flow.internal.v0.models.payment_processor_account_deleted'](),
22495
22661
  () => factories['io.flow.internal.v0.models.payment_processor_merchant_upserted'](),
22496
22662
  () => factories['io.flow.internal.v0.models.payment_processor_merchant_deleted'](),
22497
- () => factories['io.flow.internal.v0.models.virtual_card_provider_upserted'](),
22498
- () => factories['io.flow.internal.v0.models.virtual_card_provider_deleted'](),
22499
22663
  () => factories['io.flow.internal.v0.models.authorization_bundle_upserted'](),
22500
22664
  () => factories['io.flow.internal.v0.models.authorization_bundle_deleted'](),
22501
22665
  () => factories['io.flow.internal.v0.models.organization_payment_setting_upserted'](),
@@ -22561,8 +22725,6 @@ const factories = {
22561
22725
  () => factories['io.flow.internal.v0.models.stripe_capture_upserted'](),
22562
22726
  () => factories['io.flow.internal.v0.models.stripe_refund_deleted'](),
22563
22727
  () => factories['io.flow.internal.v0.models.stripe_refund_upserted'](),
22564
- () => factories['io.flow.internal.v0.models.svb_virtual_card_clearing_upserted'](),
22565
- () => factories['io.flow.internal.v0.models.svb_virtual_card_clearing_deleted'](),
22566
22728
  () => factories['io.flow.internal.v0.models.liability_remittance_plan_upserted'](),
22567
22729
  () => factories['io.flow.internal.v0.models.liability_remittance_plan_deleted'](),
22568
22730
  () => factories['io.flow.internal.v0.models.svitlana_item_upserted'](),
@@ -22601,6 +22763,15 @@ const factories = {
22601
22763
  return f();
22602
22764
  },
22603
22765
 
22766
+ 'io.flow.internal.v0.unions.explicit_statement_form': (): io.flow.internal.v0.unions.ExplicitStatementForm => {
22767
+ const f = faker.helpers.arrayElement([
22768
+ () => factories['io.flow.internal.v0.models.explicit_statement_form_transaction_ids'](),
22769
+ () => factories['io.flow.internal.v0.models.explicit_statement_form_all_pending_posted_transactions'](),
22770
+ ]);
22771
+
22772
+ return f();
22773
+ },
22774
+
22604
22775
  'io.flow.internal.v0.unions.export_schedule': (): io.flow.internal.v0.unions.ExportSchedule => {
22605
22776
  const f = faker.helpers.arrayElement([
22606
22777
  () => factories['io.flow.internal.v0.models.export_schedule_daily'](),
@@ -22972,6 +23143,7 @@ const factories = {
22972
23143
  () => factories['io.flow.internal.v0.models.proof_of_posting_shipping_notification'](),
22973
23144
  () => factories['io.flow.internal.v0.models.proof_of_posting_order_cancellation'](),
22974
23145
  () => factories['io.flow.internal.v0.models.proof_of_posting_order_combined_shipment'](),
23146
+ () => factories['io.flow.internal.v0.models.proof_of_posting_time_elapsed'](),
22975
23147
  ]);
22976
23148
 
22977
23149
  return f();
@@ -23086,6 +23258,7 @@ const factories = {
23086
23258
  const f = faker.helpers.arrayElement([
23087
23259
  () => factories['io.flow.internal.v0.models.statement_creation_metadata'](),
23088
23260
  () => factories['io.flow.internal.v0.models.accounting_fulfillment_metadata'](),
23261
+ () => factories['io.flow.internal.v0.models.accounting_pending_order_metadata'](),
23089
23262
  ]);
23090
23263
 
23091
23264
  return f();
@@ -23130,6 +23303,7 @@ const factories = {
23130
23303
  () => factories['io.flow.internal.v0.models.duty_transaction'](),
23131
23304
  () => factories['io.flow.internal.v0.models.trueup_transaction'](),
23132
23305
  () => factories['io.flow.internal.v0.models.carrier_charge_transaction'](),
23306
+ () => factories['io.flow.internal.v0.models.carrier_fee_transaction'](),
23133
23307
  ]);
23134
23308
 
23135
23309
  return f();
@@ -24157,6 +24331,7 @@ const factories = {
24157
24331
 
24158
24332
  'io.flow.organization.onboarding.state.v0.models.deactivation_put_form': (): io.flow.organization.onboarding.state.v0.models.DeactivationPutForm => ({
24159
24333
  reason: factories.string(),
24334
+ deactivate_at: factories.date_time_iso_8601(),
24160
24335
  }),
24161
24336
 
24162
24337
  'io.flow.organization.onboarding.state.v0.models.in_compliance_review': (): io.flow.organization.onboarding.state.v0.models.InComplianceReview => ({
@@ -24172,6 +24347,7 @@ const factories = {
24172
24347
  'io.flow.organization.onboarding.state.v0.models.merchant_deactivated': (): io.flow.organization.onboarding.state.v0.models.MerchantDeactivated => ({
24173
24348
  discriminator: 'merchant_deactivated',
24174
24349
  reason: factories.string(),
24350
+ deactivate_at: factories.date_time_iso_8601(),
24175
24351
  }),
24176
24352
 
24177
24353
  'io.flow.organization.onboarding.state.v0.models.merchant_disabled': (): io.flow.organization.onboarding.state.v0.models.MerchantDisabled => ({
@@ -24802,6 +24978,7 @@ const factories = {
24802
24978
  currency: factories.string(),
24803
24979
  base_amount: factories.decimal(),
24804
24980
  base_currency: factories.string(),
24981
+ reference: factories.string(),
24805
24982
  }),
24806
24983
 
24807
24984
  'io.flow.payment.gateway.v0.models.payment_authorization_status': (): io.flow.payment.gateway.v0.models.PaymentAuthorizationStatus => ({
@@ -24815,6 +24992,7 @@ const factories = {
24815
24992
  currency: factories.string(),
24816
24993
  base_amount: factories.decimal(),
24817
24994
  base_currency: factories.string(),
24995
+ reference: factories.string(),
24818
24996
  created_at: factories.date_time_iso_8601(),
24819
24997
  updated_at: factories.date_time_iso_8601(),
24820
24998
  status: factories['io.flow.payment.gateway.v0.models.payment_capture_status'](),
@@ -24823,6 +25001,7 @@ const factories = {
24823
25001
  'io.flow.payment.gateway.v0.models.payment_capture_form': (): io.flow.payment.gateway.v0.models.PaymentCaptureForm => ({
24824
25002
  amount: factories.decimal(),
24825
25003
  currency: factories.string(),
25004
+ reference: factories.string(),
24826
25005
  attributes: objectOf(() => factories.string()),
24827
25006
  }),
24828
25007
 
@@ -24941,6 +25120,7 @@ const factories = {
24941
25120
  device_fingerprint_details: factories['io.flow.payment.gateway.v0.unions.device_fingerprint_details'](),
24942
25121
  cvv: factories.string(),
24943
25122
  stored_details_card: factories['io.flow.payment.gateway.v0.unions.payment_method_stored_details_card'](),
25123
+ reference: factories.string(),
24944
25124
  }),
24945
25125
 
24946
25126
  'io.flow.payment.gateway.v0.models.payment_method_data_authorize_googlepay': (): io.flow.payment.gateway.v0.models.PaymentMethodDataAuthorizeGooglepay => ({
@@ -24976,42 +25156,43 @@ const factories = {
24976
25156
 
24977
25157
  'io.flow.payment.gateway.v0.models.payment_method_data_init_afterpay': (): io.flow.payment.gateway.v0.models.PaymentMethodDataInitAfterpay => ({
24978
25158
  type: 'init_afterpay',
24979
- placeholder: factories.string(),
25159
+ reference: factories.string(),
24980
25160
  }),
24981
25161
 
24982
25162
  'io.flow.payment.gateway.v0.models.payment_method_data_init_applepay': (): io.flow.payment.gateway.v0.models.PaymentMethodDataInitApplepay => ({
24983
25163
  type: 'init_applepay',
24984
- placeholder: factories.string(),
25164
+ reference: factories.string(),
24985
25165
  }),
24986
25166
 
24987
25167
  'io.flow.payment.gateway.v0.models.payment_method_data_init_bancontact': (): io.flow.payment.gateway.v0.models.PaymentMethodDataInitBancontact => ({
24988
25168
  type: 'init_bancontact',
24989
- placeholder: factories.string(),
25169
+ reference: factories.string(),
24990
25170
  }),
24991
25171
 
24992
25172
  'io.flow.payment.gateway.v0.models.payment_method_data_init_googlepay': (): io.flow.payment.gateway.v0.models.PaymentMethodDataInitGooglepay => ({
24993
25173
  type: 'init_googlepay',
24994
- placeholder: factories.string(),
25174
+ reference: factories.string(),
24995
25175
  }),
24996
25176
 
24997
25177
  'io.flow.payment.gateway.v0.models.payment_method_data_init_ideal': (): io.flow.payment.gateway.v0.models.PaymentMethodDataInitIdeal => ({
24998
25178
  type: 'init_ideal',
24999
25179
  issuer: factories.string(),
25180
+ reference: factories.string(),
25000
25181
  }),
25001
25182
 
25002
25183
  'io.flow.payment.gateway.v0.models.payment_method_data_init_klarna': (): io.flow.payment.gateway.v0.models.PaymentMethodDataInitKlarna => ({
25003
25184
  type: 'init_klarna',
25004
- placeholder: factories.string(),
25185
+ reference: factories.string(),
25005
25186
  }),
25006
25187
 
25007
25188
  'io.flow.payment.gateway.v0.models.payment_method_data_init_paypal': (): io.flow.payment.gateway.v0.models.PaymentMethodDataInitPaypal => ({
25008
25189
  type: 'init_paypal',
25009
- placeholder: factories.string(),
25190
+ reference: factories.string(),
25010
25191
  }),
25011
25192
 
25012
25193
  'io.flow.payment.gateway.v0.models.payment_method_data_init_sofort': (): io.flow.payment.gateway.v0.models.PaymentMethodDataInitSofort => ({
25013
25194
  type: 'init_sofort',
25014
- placeholder: factories.string(),
25195
+ reference: factories.string(),
25015
25196
  }),
25016
25197
 
25017
25198
  'io.flow.payment.gateway.v0.models.payment_method_data_option_logo_svg': (): io.flow.payment.gateway.v0.models.PaymentMethodDataOptionLogoSvg => ({
@@ -25133,6 +25314,7 @@ const factories = {
25133
25314
  currency: factories.string(),
25134
25315
  base_amount: factories.decimal(),
25135
25316
  base_currency: factories.string(),
25317
+ reference: factories.string(),
25136
25318
  created_at: factories.date_time_iso_8601(),
25137
25319
  updated_at: factories.date_time_iso_8601(),
25138
25320
  status: factories['io.flow.payment.gateway.v0.models.payment_refund_status'](),
@@ -25141,6 +25323,7 @@ const factories = {
25141
25323
  'io.flow.payment.gateway.v0.models.payment_refund_form': (): io.flow.payment.gateway.v0.models.PaymentRefundForm => ({
25142
25324
  amount: factories.decimal(),
25143
25325
  currency: factories.string(),
25326
+ reference: factories.string(),
25144
25327
  }),
25145
25328
 
25146
25329
  'io.flow.payment.gateway.v0.models.payment_refund_status': (): io.flow.payment.gateway.v0.models.PaymentRefundStatus => ({
@@ -25214,6 +25397,7 @@ const factories = {
25214
25397
  currency: factories.string(),
25215
25398
  base_amount: factories.decimal(),
25216
25399
  base_currency: factories.string(),
25400
+ reference: factories.string(),
25217
25401
  created_at: factories.date_time_iso_8601(),
25218
25402
  updated_at: factories.date_time_iso_8601(),
25219
25403
  status: factories['io.flow.payment.gateway.v0.models.payment_reversal_status'](),
@@ -25222,6 +25406,7 @@ const factories = {
25222
25406
  'io.flow.payment.gateway.v0.models.payment_reversal_form': (): io.flow.payment.gateway.v0.models.PaymentReversalForm => ({
25223
25407
  amount: factories.decimal(),
25224
25408
  currency: factories.string(),
25409
+ reference: factories.string(),
25225
25410
  }),
25226
25411
 
25227
25412
  'io.flow.payment.gateway.v0.models.payment_reversal_status': (): io.flow.payment.gateway.v0.models.PaymentReversalStatus => ({
@@ -26248,15 +26433,6 @@ const factories = {
26248
26433
  description: factories.string(),
26249
26434
  }),
26250
26435
 
26251
- 'io.flow.payment.internal.v0.models.virtual_card_provider': (): io.flow.payment.internal.v0.models.VirtualCardProvider => ({
26252
- id: factories.string(),
26253
- organization_id: factories.string(),
26254
- provider: factories.string(),
26255
- attributes: objectOf(() => factories.string()),
26256
- created_at: factories.date_time_iso_8601(),
26257
- updated_at: factories.date_time_iso_8601(),
26258
- }),
26259
-
26260
26436
  'io.flow.payment.internal.v0.unions.authorization_payload': (): io.flow.payment.internal.v0.unions.AuthorizationPayload => {
26261
26437
  const f = faker.helpers.arrayElement([
26262
26438
  () => factories['io.flow.payment.internal.v0.models.apple_pay_authorization_payload'](),
@@ -27428,11 +27604,6 @@ const factories = {
27428
27604
  virtual_card_capture: factories['io.flow.payment.v0.models.virtual_card_capture'](),
27429
27605
  }),
27430
27606
 
27431
- 'io.flow.payment.v0.models.virtual_card_form': (): io.flow.payment.v0.models.VirtualCardForm => ({
27432
- limit: factories['io.flow.common.v0.models.money'](),
27433
- attributes: objectOf(() => factories.string()),
27434
- }),
27435
-
27436
27607
  'io.flow.payment.v0.models.virtual_card_reference': (): io.flow.payment.v0.models.VirtualCardReference => ({
27437
27608
  id: factories.string(),
27438
27609
  }),
@@ -29034,6 +29205,30 @@ const factories = {
29034
29205
  'io.flow.shopify.external.v0.enums.shopify_customer_state': (): io.flow.shopify.external.v0.enums.ShopifyCustomerState => faker.helpers.arrayElement(['disabled', 'invited', 'enabled']),
29035
29206
  'io.flow.shopify.external.v0.enums.shopify_discount_pagination_direction': (): io.flow.shopify.external.v0.enums.ShopifyDiscountPaginationDirection => faker.helpers.arrayElement(['next', 'prev']),
29036
29207
  'io.flow.shopify.external.v0.enums.shopify_gift_card_status': (): io.flow.shopify.external.v0.enums.ShopifyGiftCardStatus => faker.helpers.arrayElement(['any', 'enabled', 'disabled']),
29208
+
29209
+ 'io.flow.shopify.external.v0.enums.shopify_plan_name': (): io.flow.shopify.external.v0.enums.ShopifyPlanName => faker.helpers.arrayElement([
29210
+ 'basic',
29211
+ 'business',
29212
+ 'cancelled',
29213
+ 'dormant',
29214
+ 'enterprise',
29215
+ 'fraudulent',
29216
+ 'frozen',
29217
+ 'npo_full',
29218
+ 'npo_lite',
29219
+ 'open_learning',
29220
+ 'paid_trial',
29221
+ 'professional',
29222
+ 'retail',
29223
+ 'shopify_alumni',
29224
+ 'shopify_plus',
29225
+ 'staff',
29226
+ 'staff_business',
29227
+ 'starter',
29228
+ 'starter_2022',
29229
+ 'unlimited',
29230
+ ]),
29231
+
29037
29232
  'io.flow.shopify.external.v0.enums.shopify_processing_method_type': (): io.flow.shopify.external.v0.enums.ShopifyProcessingMethodType => faker.helpers.arrayElement(['checkout', 'direct', 'manual', 'offsite', 'express']),
29038
29233
 
29039
29234
  'io.flow.shopify.external.v0.enums.shopify_transaction_error_code': (): io.flow.shopify.external.v0.enums.ShopifyTransactionErrorCode => faker.helpers.arrayElement([
@@ -29921,6 +30116,12 @@ const factories = {
29921
30116
  carrier_identifier: factories.string(),
29922
30117
  }),
29923
30118
 
30119
+ 'io.flow.shopify.external.v0.models.shopify_shop_update': (): io.flow.shopify.external.v0.models.ShopifyShopUpdate => ({
30120
+ id: factories.long(),
30121
+ plan_display_name: factories.string(),
30122
+ plan_name: factories['io.flow.shopify.external.v0.enums.shopify_plan_name'](),
30123
+ }),
30124
+
29924
30125
  'io.flow.shopify.external.v0.models.shopify_tax_line': (): io.flow.shopify.external.v0.models.ShopifyTaxLine => ({
29925
30126
  price: factories.string(),
29926
30127
  rate: factories.double(),
@@ -30240,6 +30441,10 @@ const factories = {
30240
30441
  flow_authorization: factories['io.flow.payment.v0.unions.authorization'](),
30241
30442
  }),
30242
30443
 
30444
+ 'io.flow.shopify.markets.internal.v0.models.markets_order_summary': (): io.flow.shopify.markets.internal.v0.models.MarketsOrderSummary => ({
30445
+ id: factories.string(),
30446
+ }),
30447
+
30243
30448
  'io.flow.shopify.markets.internal.v0.models.order_validation_error': (): io.flow.shopify.markets.internal.v0.models.OrderValidationError => ({
30244
30449
  message: factories.string(),
30245
30450
  reason: factories['io.flow.channel.internal.v0.enums.channel_order_acceptance_rejection_reason'](),
@@ -30315,6 +30520,7 @@ const factories = {
30315
30520
  api_key_masked: factories.string(),
30316
30521
  api_password_masked: factories.string(),
30317
30522
  access_token_masked: factories.string(),
30523
+ shopify_plan_name: factories['io.flow.shopify.external.v0.enums.shopify_plan_name'](),
30318
30524
  }),
30319
30525
 
30320
30526
  'io.flow.shopify.markets.internal.v0.models.shopify_markets_shop_form': (): io.flow.shopify.markets.internal.v0.models.ShopifyMarketsShopForm => ({
@@ -30325,6 +30531,7 @@ const factories = {
30325
30531
  api_key: factories.string(),
30326
30532
  api_password: factories.string(),
30327
30533
  access_token: factories.string(),
30534
+ shopify_plan_name: factories['io.flow.shopify.external.v0.enums.shopify_plan_name'](),
30328
30535
  }),
30329
30536
 
30330
30537
  'io.flow.shopify.markets.internal.v0.models.shopify_markets_shop_summary': (): io.flow.shopify.markets.internal.v0.models.ShopifyMarketsShopSummary => ({
@@ -30551,6 +30758,7 @@ const factories = {
30551
30758
  'themes/publish',
30552
30759
  'themes/update',
30553
30760
  'bulk_operations/finish',
30761
+ 'shop/update',
30554
30762
  ]),
30555
30763
 
30556
30764
  'io.flow.shopify.markets.v0.models.fulfillment_order_international_duties': (): io.flow.shopify.markets.v0.models.FulfillmentOrderInternationalDuties => ({
@@ -33039,185 +33247,6 @@ const factories = {
33039
33247
  return f();
33040
33248
  },
33041
33249
 
33042
- 'io.flow.svb.v0.enums.clearing_type': (): io.flow.svb.v0.enums.ClearingType => faker.helpers.arrayElement(['Credit', 'Debit']),
33043
-
33044
- 'io.flow.svb.v0.enums.notification_type': (): io.flow.svb.v0.enums.NotificationType => faker.helpers.arrayElement([
33045
- 'virtualcard.clearings',
33046
- 'virtualcard.created',
33047
- 'virtualcard.deleted',
33048
- 'virtualcard.realtime.auths',
33049
- ]),
33050
-
33051
- 'io.flow.svb.v0.enums.transaction_type': (): io.flow.svb.v0.enums.TransactionType => faker.helpers.arrayElement([
33052
- 'Authorization',
33053
- 'Advice',
33054
- 'First Presentment',
33055
- 'Reversal',
33056
- 'Reversal Advice',
33057
- 'Unspecified',
33058
- 'Purchase Return',
33059
- 'Forced Post',
33060
- ]),
33061
-
33062
- 'io.flow.svb.v0.models.authorization': (): io.flow.svb.v0.models.Authorization => ({
33063
- billing_amount: factories.integer(),
33064
- billing_currency: factories.string(),
33065
- issuer_response: factories.string(),
33066
- mcc: factories.string(),
33067
- mcc_description: factories.string(),
33068
- merchant_amount: factories.integer(),
33069
- merchant_currency: factories.string(),
33070
- merchant_id: factories.string(),
33071
- merchant_name: factories.string(),
33072
- transaction_date_time: factories.date_time_iso_8601(),
33073
- transaction_type: factories['io.flow.svb.v0.enums.transaction_type'](),
33074
- }),
33075
-
33076
- 'io.flow.svb.v0.models.clearing': (): io.flow.svb.v0.models.Clearing => ({
33077
- billing_amount: factories.integer(),
33078
- billing_currency: factories.string(),
33079
- clearing_type: factories['io.flow.svb.v0.enums.clearing_type'](),
33080
- authorization_date: factories.date_time_iso_8601(),
33081
- exchange_rate: factories.string(),
33082
- mcc: factories.string(),
33083
- mcc_description: factories.string(),
33084
- merchant_amount: factories.integer(),
33085
- merchant_currency: factories.string(),
33086
- merchant_id: factories.string(),
33087
- merchant_name: factories.string(),
33088
- settlement_date: factories.string(),
33089
- }),
33090
-
33091
- 'io.flow.svb.v0.models.clearing_notification': (): io.flow.svb.v0.models.ClearingNotification => ({
33092
- acquirer_ica: factories.string(),
33093
- approval_code: factories.string(),
33094
- authorization_date: factories.date_time_iso_8601(),
33095
- billing_amount: factories.integer(),
33096
- billing_currency: factories.string(),
33097
- clearing_type: factories['io.flow.svb.v0.enums.clearing_type'](),
33098
- exchange_rate: factories.string(),
33099
- mcc: factories.string(),
33100
- mcc_description: factories.string(),
33101
- merchant_amount: factories.integer(),
33102
- merchant_currency: factories.string(),
33103
- merchant_id: factories.string(),
33104
- merchant_name: factories.string(),
33105
- settlement_date: factories.date_time_iso_8601(),
33106
- vcn_id: factories.long(),
33107
- }),
33108
-
33109
- 'io.flow.svb.v0.models.create_body': (): io.flow.svb.v0.models.CreateBody => ({
33110
- data: factories['io.flow.svb.v0.models.create_virtual_card'](),
33111
- show_card_number: factories.boolean(),
33112
- }),
33113
-
33114
- 'io.flow.svb.v0.models.create_virtual_card': (): io.flow.svb.v0.models.CreateVirtualCard => ({
33115
- emails: arrayOf(() => factories.string()),
33116
- mastercard_data: factories['io.flow.svb.v0.models.mastercard_data'](),
33117
- metadata: factories.object(),
33118
- per_transaction_max: factories.integer(),
33119
- per_transaction_min: factories.integer(),
33120
- rcn_id: factories.integer(),
33121
- rcn_alias: factories.string(),
33122
- supplier_id: factories.integer(),
33123
- total_card_amount: factories.integer(),
33124
- transactions_max: factories.integer(),
33125
- valid_ending_on: factories.date_iso_8601(),
33126
- valid_starting_on: factories.date_iso_8601(),
33127
- }),
33128
-
33129
- 'io.flow.svb.v0.models.email': (): io.flow.svb.v0.models.Email => ({
33130
- email: factories.string(),
33131
- }),
33132
-
33133
- 'io.flow.svb.v0.models.email_body': (): io.flow.svb.v0.models.EmailBody => ({
33134
- data: factories['io.flow.svb.v0.models.email'](),
33135
- }),
33136
-
33137
- 'io.flow.svb.v0.models.email_response': (): io.flow.svb.v0.models.EmailResponse => ({
33138
- id: factories.string(),
33139
- }),
33140
-
33141
- 'io.flow.svb.v0.models.list_data': (): io.flow.svb.v0.models.ListData => ({
33142
- id: factories.string(),
33143
- type: factories.string(),
33144
- url: factories.string(),
33145
- }),
33146
-
33147
- 'io.flow.svb.v0.models.list_links': (): io.flow.svb.v0.models.ListLinks => ({
33148
- first: factories.string(),
33149
- next: factories.string(),
33150
- }),
33151
-
33152
- 'io.flow.svb.v0.models.list_response': (): io.flow.svb.v0.models.ListResponse => ({
33153
- data: arrayOf(() => factories['io.flow.svb.v0.models.list_data']()),
33154
- links: factories['io.flow.svb.v0.models.list_links'](),
33155
- }),
33156
-
33157
- 'io.flow.svb.v0.models.mastercard_data': (): io.flow.svb.v0.models.MastercardData => ({
33158
- id: factories.string(),
33159
- organization: factories.string(),
33160
- order_number: factories.string(),
33161
- authorization_key: factories.string(),
33162
- }),
33163
-
33164
- 'io.flow.svb.v0.models.notification_data': (): io.flow.svb.v0.models.NotificationData => ({
33165
- date: factories.date_time_iso_8601(),
33166
- 'event-id': factories.integer(),
33167
- payload: factories.object(),
33168
- type: factories['io.flow.svb.v0.enums.notification_type'](),
33169
- }),
33170
-
33171
- 'io.flow.svb.v0.models.svb_notification': (): io.flow.svb.v0.models.SvbNotification => ({
33172
- data: factories['io.flow.svb.v0.models.notification_data'](),
33173
- }),
33174
-
33175
- 'io.flow.svb.v0.models.update_body': (): io.flow.svb.v0.models.UpdateBody => ({
33176
- data: factories['io.flow.svb.v0.models.update_virtual_card'](),
33177
- }),
33178
-
33179
- 'io.flow.svb.v0.models.update_virtual_card': (): io.flow.svb.v0.models.UpdateVirtualCard => ({
33180
- emails: arrayOf(() => factories.string()),
33181
- mastercard_data: factories['io.flow.svb.v0.models.mastercard_data'](),
33182
- metadata: factories.object(),
33183
- per_transaction_max: factories.integer(),
33184
- per_transaction_min: factories.integer(),
33185
- total_card_amount: factories.integer(),
33186
- transactions_max: factories.integer(),
33187
- valid_ending_on: factories.date_iso_8601(),
33188
- valid_starting_on: factories.date_iso_8601(),
33189
- }),
33190
-
33191
- 'io.flow.svb.v0.models.virtual_card': (): io.flow.svb.v0.models.VirtualCard => ({
33192
- authorizations: arrayOf(() => factories['io.flow.svb.v0.models.authorization']()),
33193
- available_balance: factories.integer(),
33194
- card_number: factories.string(),
33195
- clearings: arrayOf(() => factories['io.flow.svb.v0.models.clearing']()),
33196
- currency: factories.string(),
33197
- cvc: factories.string(),
33198
- emails: arrayOf(() => factories.string()),
33199
- expiry: factories.string(),
33200
- id: factories.string(),
33201
- last4: factories.string(),
33202
- mastercard_data: factories['io.flow.svb.v0.models.mastercard_data'](),
33203
- metadata: factories.object(),
33204
- notified: factories.boolean(),
33205
- per_transaction_max: factories.integer(),
33206
- per_transaction_min: factories.integer(),
33207
- rcn_alias: factories.string(),
33208
- rcn_id: factories.integer(),
33209
- status: factories.string(),
33210
- supplier_id: factories.integer(),
33211
- total_card_amount: factories.integer(),
33212
- transactions_max: factories.integer(),
33213
- valid_ending_on: factories.date_iso_8601(),
33214
- valid_starting_on: factories.date_iso_8601(),
33215
- }),
33216
-
33217
- 'io.flow.svb.v0.models.virtual_card_response': (): io.flow.svb.v0.models.VirtualCardResponse => ({
33218
- data: factories['io.flow.svb.v0.models.virtual_card'](),
33219
- }),
33220
-
33221
33250
  'io.flow.token.v0.models.channel_token': (): io.flow.token.v0.models.ChannelToken => ({
33222
33251
  discriminator: 'channel_token',
33223
33252
  id: factories.string(),
@@ -33599,6 +33628,7 @@ export const makeAccountType = () => factories['io.flow.internal.v0.enums.accoun
33599
33628
  export const makeAccountUpserted = () => factories['io.flow.internal.v0.models.account_upserted']();
33600
33629
  export const makeAccountUpsertedV2 = () => factories['io.flow.internal.v0.models.account_upserted_v2']();
33601
33630
  export const makeAccountingFulfillmentMetadata = () => factories['io.flow.internal.v0.models.accounting_fulfillment_metadata']();
33631
+ export const makeAccountingPendingOrderMetadata = () => factories['io.flow.internal.v0.models.accounting_pending_order_metadata']();
33602
33632
  export const makeActionQuantity = () => factories['io.flow.internal.v0.models.action_quantity']();
33603
33633
  export const makeAdditionalImportTax = () => factories['io.flow.internal.v0.models.additional_import_tax']();
33604
33634
  export const makeAddressConfigurationProvinceSetting = () => factories['io.flow.internal.v0.models.address_configuration_province_setting']();
@@ -33693,7 +33723,9 @@ export const makeBankAccountReference = () => factories['io.flow.internal.v0.mod
33693
33723
  export const makeBankPayment = () => factories['io.flow.internal.v0.models.bank_payment']();
33694
33724
  export const makeBankPaymentDeletedV2 = () => factories['io.flow.internal.v0.models.bank_payment_deleted_v2']();
33695
33725
  export const makeBankPaymentForm = () => factories['io.flow.internal.v0.models.bank_payment_form']();
33726
+ export const makeBankPaymentOrder = () => factories['io.flow.internal.v0.models.bank_payment_order']();
33696
33727
  export const makeBankPaymentPromiseCompletedMethod = () => factories['io.flow.internal.v0.enums.bank_payment_promise_completed_method']();
33728
+ export const makeBankPaymentReference = () => factories['io.flow.internal.v0.models.bank_payment_reference']();
33697
33729
  export const makeBankPaymentStatusCode = () => factories['io.flow.internal.v0.enums.bank_payment_status_code']();
33698
33730
  export const makeBankPaymentStatusForm = () => factories['io.flow.internal.v0.models.bank_payment_status_form']();
33699
33731
  export const makeBankPaymentStatusImport = () => factories['io.flow.internal.v0.models.bank_payment_status_import']();
@@ -33775,9 +33807,6 @@ export const makeCarrierAccountUpsertedV2 = () => factories['io.flow.internal.v0
33775
33807
  export const makeCarrierAccountValidation = () => factories['io.flow.internal.v0.models.carrier_account_validation']();
33776
33808
  export const makeCarrierCharge = () => factories['io.flow.internal.v0.models.carrier_charge']();
33777
33809
  export const makeCarrierChargeDeleted = () => factories['io.flow.internal.v0.models.carrier_charge_deleted']();
33778
- export const makeCarrierChargeFile = () => factories['io.flow.internal.v0.models.carrier_charge_file']();
33779
- export const makeCarrierChargeFileForm = () => factories['io.flow.internal.v0.models.carrier_charge_file_form']();
33780
- export const makeCarrierChargeFileResult = () => factories['io.flow.internal.v0.models.carrier_charge_file_result']();
33781
33810
  export const makeCarrierChargeForm = () => factories['io.flow.internal.v0.unions.carrier_charge_form']();
33782
33811
  export const makeCarrierChargeFormLabel = () => factories['io.flow.internal.v0.models.carrier_charge_form_label']();
33783
33812
  export const makeCarrierChargeFormOther = () => factories['io.flow.internal.v0.models.carrier_charge_form_other']();
@@ -33788,6 +33817,18 @@ export const makeCarrierChargeType = () => factories['io.flow.internal.v0.enums.
33788
33817
  export const makeCarrierChargeUnits = () => factories['io.flow.internal.v0.models.carrier_charge_units']();
33789
33818
  export const makeCarrierChargeUpserted = () => factories['io.flow.internal.v0.models.carrier_charge_upserted']();
33790
33819
  export const makeCarrierCredentials = () => factories['io.flow.internal.v0.unions.carrier_credentials']();
33820
+ export const makeCarrierFee = () => factories['io.flow.internal.v0.models.carrier_fee']();
33821
+ export const makeCarrierFeeDeleted = () => factories['io.flow.internal.v0.models.carrier_fee_deleted']();
33822
+ export const makeCarrierFeeForm = () => factories['io.flow.internal.v0.models.carrier_fee_form']();
33823
+ export const makeCarrierFeeTransaction = () => factories['io.flow.internal.v0.models.carrier_fee_transaction']();
33824
+ export const makeCarrierFeeTransactionLabelReference = () => factories['io.flow.internal.v0.models.carrier_fee_transaction_label_reference']();
33825
+ export const makeCarrierFeeTransactionType = () => factories['io.flow.internal.v0.enums.carrier_fee_transaction_type']();
33826
+ export const makeCarrierFeeUnits = () => factories['io.flow.internal.v0.models.carrier_fee_units']();
33827
+ export const makeCarrierFeeUpserted = () => factories['io.flow.internal.v0.models.carrier_fee_upserted']();
33828
+ export const makeCarrierFile = () => factories['io.flow.internal.v0.models.carrier_file']();
33829
+ export const makeCarrierFileForm = () => factories['io.flow.internal.v0.models.carrier_file_form']();
33830
+ export const makeCarrierFileResult = () => factories['io.flow.internal.v0.models.carrier_file_result']();
33831
+ export const makeCarrierFileType = () => factories['io.flow.internal.v0.enums.carrier_file_type']();
33791
33832
  export const makeCarrierInvoice = () => factories['io.flow.internal.v0.models.carrier_invoice']();
33792
33833
  export const makeCarrierLabelGenerationMethod = () => factories['io.flow.internal.v0.enums.carrier_label_generation_method']();
33793
33834
  export const makeCarrierValidationStatus = () => factories['io.flow.internal.v0.enums.carrier_validation_status']();
@@ -34042,6 +34083,7 @@ export const makeDetails = () => factories['io.flow.internal.v0.models.details']
34042
34083
  export const makeDhl = () => factories['io.flow.internal.v0.models.dhl']();
34043
34084
  export const makeDhlEcommerce = () => factories['io.flow.internal.v0.models.dhl_ecommerce']();
34044
34085
  export const makeDict = () => factories['io.flow.internal.v0.models.dict']();
34086
+ export const makeDimensionEstimateOpsInput = () => factories['io.flow.internal.v0.models.dimension_estimate_ops_input']();
34045
34087
  export const makeDiscount = () => factories['io.flow.internal.v0.models.discount']();
34046
34088
  export const makeDiscountCode = () => factories['io.flow.internal.v0.models.discount_code']();
34047
34089
  export const makeDiscountRequestForm = () => factories['io.flow.internal.v0.models.discount_request_form']();
@@ -34163,7 +34205,9 @@ export const makeExperimentSessionQueryForm = () => factories['io.flow.internal.
34163
34205
  export const makeExperimentUpserted = () => factories['io.flow.internal.v0.models.experiment_upserted']();
34164
34206
  export const makeExperimentVersion = () => factories['io.flow.internal.v0.models.experiment_version']();
34165
34207
  export const makeExplicitStatement = () => factories['io.flow.internal.v0.models.explicit_statement']();
34166
- export const makeExplicitStatementForm = () => factories['io.flow.internal.v0.models.explicit_statement_form']();
34208
+ export const makeExplicitStatementForm = () => factories['io.flow.internal.v0.unions.explicit_statement_form']();
34209
+ export const makeExplicitStatementFormAllPendingPostedTransactions = () => factories['io.flow.internal.v0.models.explicit_statement_form_all_pending_posted_transactions']();
34210
+ export const makeExplicitStatementFormTransactionIds = () => factories['io.flow.internal.v0.models.explicit_statement_form_transaction_ids']();
34167
34211
  export const makeExportCompleted = () => factories['io.flow.internal.v0.models.export_completed']();
34168
34212
  export const makeExportContentType = () => factories['io.flow.internal.v0.enums.export_content_type']();
34169
34213
  export const makeExportFailed = () => factories['io.flow.internal.v0.models.export_failed']();
@@ -34396,6 +34440,7 @@ export const makeItemDimensionEstimateUpsertedV2 = () => factories['io.flow.inte
34396
34440
  export const makeItemFilterResponse = () => factories['io.flow.internal.v0.models.item_filter_response']();
34397
34441
  export const makeItemFilterValueResponse = () => factories['io.flow.internal.v0.models.item_filter_value_response']();
34398
34442
  export const makeItemFilterValuesForm = () => factories['io.flow.internal.v0.models.item_filter_values_form']();
34443
+ export const makeItemForm = () => factories['io.flow.internal.v0.models.item_form']();
34399
34444
  export const makeItemFormImportRequest = () => factories['io.flow.internal.v0.models.item_form_import_request']();
34400
34445
  export const makeItemHarmonization = () => factories['io.flow.internal.v0.models.item_harmonization']();
34401
34446
  export const makeItemHarmonizationDeleted = () => factories['io.flow.internal.v0.models.item_harmonization_deleted']();
@@ -34496,7 +34541,11 @@ export const makeLocalizedPriceBookItemData = () => factories['io.flow.internal.
34496
34541
  export const makeLocalizedPriceBookItemDeleted = () => factories['io.flow.internal.v0.models.localized_price_book_item_deleted']();
34497
34542
  export const makeLocalizedPriceBookItemUpserted = () => factories['io.flow.internal.v0.models.localized_price_book_item_upserted']();
34498
34543
  export const makeLocation = () => factories['io.flow.internal.v0.models.location']();
34544
+ export const makeLogisticsCapabilities = () => factories['io.flow.internal.v0.models.logistics_capabilities']();
34545
+ export const makeLogisticsCapabilitiesForm = () => factories['io.flow.internal.v0.models.logistics_capabilities_form']();
34546
+ export const makeLogisticsCapability = () => factories['io.flow.internal.v0.enums.logistics_capability']();
34499
34547
  export const makeLogo = () => factories['io.flow.internal.v0.models.logo']();
34548
+ export const makeLostChargeback = () => factories['io.flow.internal.v0.models.lost_chargeback']();
34500
34549
  export const makeLoyaltyProgram = () => factories['io.flow.internal.v0.models.loyalty_program']();
34501
34550
  export const makeLoyaltyProgramMessage = () => factories['io.flow.internal.v0.models.loyalty_program_message']();
34502
34551
  export const makeLoyaltyProgramReward = () => factories['io.flow.internal.v0.models.loyalty_program_reward']();
@@ -34505,7 +34554,6 @@ export const makeMagentoInstallForm = () => factories['io.flow.internal.v0.model
34505
34554
  export const makeMainTransaction = () => factories['io.flow.internal.v0.models.main_transaction']();
34506
34555
  export const makeMainTransactionDeleted = () => factories['io.flow.internal.v0.models.main_transaction_deleted']();
34507
34556
  export const makeMainTransactionDeletedV2 = () => factories['io.flow.internal.v0.models.main_transaction_deleted_v2']();
34508
- export const makeMainTransactionStatus = () => factories['io.flow.internal.v0.enums.main_transaction_status']();
34509
34557
  export const makeMainTransactionUpserted = () => factories['io.flow.internal.v0.models.main_transaction_upserted']();
34510
34558
  export const makeMainTransactionUpsertedV2 = () => factories['io.flow.internal.v0.models.main_transaction_upserted_v2']();
34511
34559
  export const makeManualReviewRule = () => factories['io.flow.internal.v0.models.manual_review_rule']();
@@ -34571,6 +34619,7 @@ export const makeMarketingGatewaySchemaSummary = () => factories['io.flow.intern
34571
34619
  export const makeMarketingGatewaySourceSummary = () => factories['io.flow.internal.v0.unions.marketing_gateway_source_summary']();
34572
34620
  export const makeMarketingGatewaySupportedChannelDetails = () => factories['io.flow.internal.v0.models.marketing_gateway_supported_channel_details']();
34573
34621
  export const makeMarketsOrder = () => factories['io.flow.internal.v0.models.markets_order']();
34622
+ export const makeMarketsOrderSummary = () => factories['io.flow.internal.v0.models.markets_order_summary']();
34574
34623
  export const makeMatiasItem = () => factories['io.flow.internal.v0.models.matias_item']();
34575
34624
  export const makeMatiasItemDeleted = () => factories['io.flow.internal.v0.models.matias_item_deleted']();
34576
34625
  export const makeMatiasItemForm = () => factories['io.flow.internal.v0.models.matias_item_form']();
@@ -34856,6 +34905,7 @@ export const makeProofOfPostingFulfilled = () => factories['io.flow.internal.v0.
34856
34905
  export const makeProofOfPostingOrderCancellation = () => factories['io.flow.internal.v0.models.proof_of_posting_order_cancellation']();
34857
34906
  export const makeProofOfPostingOrderCombinedShipment = () => factories['io.flow.internal.v0.models.proof_of_posting_order_combined_shipment']();
34858
34907
  export const makeProofOfPostingShippingNotification = () => factories['io.flow.internal.v0.models.proof_of_posting_shipping_notification']();
34908
+ export const makeProofOfPostingTimeElapsed = () => factories['io.flow.internal.v0.models.proof_of_posting_time_elapsed']();
34859
34909
  export const makeQuote = () => factories['io.flow.internal.v0.models.quote']();
34860
34910
  export const makeQuoteDeleted = () => factories['io.flow.internal.v0.models.quote_deleted']();
34861
34911
  export const makeQuoteRequest = () => factories['io.flow.internal.v0.models.quote_request']();
@@ -35002,6 +35052,7 @@ export const makeRestrictionRule = () => factories['io.flow.internal.v0.models.r
35002
35052
  export const makeRestrictionRuleDecisionForm = () => factories['io.flow.internal.v0.models.restriction_rule_decision_form']();
35003
35053
  export const makeRestrictionRuleForm = () => factories['io.flow.internal.v0.models.restriction_rule_form']();
35004
35054
  export const makeRestrictionRuleMetadata = () => factories['io.flow.internal.v0.models.restriction_rule_metadata']();
35055
+ export const makeRestrictionRuleOverride = () => factories['io.flow.internal.v0.models.restriction_rule_override']();
35005
35056
  export const makeRestrictionRuleSummary = () => factories['io.flow.internal.v0.models.restriction_rule_summary']();
35006
35057
  export const makeRestrictionStatus = () => factories['io.flow.internal.v0.enums.restriction_status']();
35007
35058
  export const makeRestrictionStatusMetadata = () => factories['io.flow.internal.v0.models.restriction_status_metadata']();
@@ -35246,9 +35297,6 @@ export const makeSubscriptionFrequency = () => factories['io.flow.internal.v0.en
35246
35297
  export const makeSubscriptionTransaction = () => factories['io.flow.internal.v0.models.subscription_transaction']();
35247
35298
  export const makeSuggestionAction = () => factories['io.flow.internal.v0.enums.suggestion_action']();
35248
35299
  export const makeSupportedLabels = () => factories['io.flow.internal.v0.models.supported_labels']();
35249
- export const makeSvbVirtualCardClearing = () => factories['io.flow.internal.v0.models.svb_virtual_card_clearing']();
35250
- export const makeSvbVirtualCardClearingDeleted = () => factories['io.flow.internal.v0.models.svb_virtual_card_clearing_deleted']();
35251
- export const makeSvbVirtualCardClearingUpserted = () => factories['io.flow.internal.v0.models.svb_virtual_card_clearing_upserted']();
35252
35300
  export const makeSvitlanaItem = () => factories['io.flow.internal.v0.models.svitlana_item']();
35253
35301
  export const makeSvitlanaItemDeleted = () => factories['io.flow.internal.v0.models.svitlana_item_deleted']();
35254
35302
  export const makeSvitlanaItemForm = () => factories['io.flow.internal.v0.models.svitlana_item_form']();
@@ -35373,9 +35421,6 @@ export const makeValidationRule = () => factories['io.flow.internal.v0.unions.va
35373
35421
  export const makeVariant = () => factories['io.flow.internal.v0.unions.variant']();
35374
35422
  export const makeVariantForm = () => factories['io.flow.internal.v0.unions.variant_form']();
35375
35423
  export const makeViesResult = () => factories['io.flow.internal.v0.models.vies_result']();
35376
- export const makeVirtualCardProvider = () => factories['io.flow.internal.v0.models.virtual_card_provider']();
35377
- export const makeVirtualCardProviderDeleted = () => factories['io.flow.internal.v0.models.virtual_card_provider_deleted']();
35378
- export const makeVirtualCardProviderUpserted = () => factories['io.flow.internal.v0.models.virtual_card_provider_upserted']();
35379
35424
  export const makeVirtualCardTransaction = () => factories['io.flow.internal.v0.models.virtual_card_transaction']();
35380
35425
  export const makeWasteElectricalAndElectronicEquipmentComplianceData = () => factories['io.flow.internal.v0.models.waste_electrical_and_electronic_equipment_compliance_data']();
35381
35426
  export const makeWasteElectricalAndElectronicEquipmentComplianceForm = () => factories['io.flow.internal.v0.models.waste_electrical_and_electronic_equipment_compliance_form']();