@flowio/api-internal-factories 0.0.102 → 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(),
@@ -19722,6 +19933,13 @@ const factories = {
19722
19933
  count: factories.long(),
19723
19934
  }),
19724
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
+
19725
19943
  'io.flow.internal.v0.models.restriction_rule_summary': (): io.flow.internal.v0.models.RestrictionRuleSummary => ({
19726
19944
  id: factories.string(),
19727
19945
  name: factories.string(),
@@ -20263,6 +20481,7 @@ const factories = {
20263
20481
  api_key_masked: factories.string(),
20264
20482
  api_password_masked: factories.string(),
20265
20483
  access_token_masked: factories.string(),
20484
+ shopify_plan_name: factories['io.flow.shopify.external.v0.enums.shopify_plan_name'](),
20266
20485
  }),
20267
20486
 
20268
20487
  'io.flow.internal.v0.models.shopify_markets_shop_deleted': (): io.flow.internal.v0.models.ShopifyMarketsShopDeleted => ({
@@ -20281,6 +20500,7 @@ const factories = {
20281
20500
  api_key: factories.string(),
20282
20501
  api_password: factories.string(),
20283
20502
  access_token: factories.string(),
20503
+ shopify_plan_name: factories['io.flow.shopify.external.v0.enums.shopify_plan_name'](),
20284
20504
  }),
20285
20505
 
20286
20506
  'io.flow.internal.v0.models.shopify_markets_shop_statistics_deleted': (): io.flow.internal.v0.models.ShopifyMarketsShopStatisticsDeleted => ({
@@ -21175,38 +21395,6 @@ const factories = {
21175
21395
  values: arrayOf(() => factories['io.flow.internal.v0.models.label_aliases']()),
21176
21396
  }),
21177
21397
 
21178
- 'io.flow.internal.v0.models.svb_virtual_card_clearing': (): io.flow.internal.v0.models.SvbVirtualCardClearing => ({
21179
- id: factories.string(),
21180
- virtual_card_id: factories.string(),
21181
- number: factories.string(),
21182
- amount: factories.integer(),
21183
- currency: factories.string(),
21184
- date: factories.date_time_iso_8601(),
21185
- clearing_type: factories.string(),
21186
- exchange_rate: factories.string(),
21187
- mcc: factories.string(),
21188
- mcc_description: factories.string(),
21189
- merchant_amount: factories.integer(),
21190
- merchant_currency: factories.string(),
21191
- merchant_id: factories.string(),
21192
- merchant_name: factories.string(),
21193
- settlement_date: factories.date_time_iso_8601(),
21194
- }),
21195
-
21196
- 'io.flow.internal.v0.models.svb_virtual_card_clearing_deleted': (): io.flow.internal.v0.models.SvbVirtualCardClearingDeleted => ({
21197
- discriminator: 'svb_virtual_card_clearing_deleted',
21198
- event_id: factories.string(),
21199
- timestamp: factories.date_time_iso_8601(),
21200
- svb_virtual_card_clearing: factories['io.flow.internal.v0.models.svb_virtual_card_clearing'](),
21201
- }),
21202
-
21203
- 'io.flow.internal.v0.models.svb_virtual_card_clearing_upserted': (): io.flow.internal.v0.models.SvbVirtualCardClearingUpserted => ({
21204
- discriminator: 'svb_virtual_card_clearing_upserted',
21205
- event_id: factories.string(),
21206
- timestamp: factories.date_time_iso_8601(),
21207
- svb_virtual_card_clearing: factories['io.flow.internal.v0.models.svb_virtual_card_clearing'](),
21208
- }),
21209
-
21210
21398
  'io.flow.internal.v0.models.svitlana_item': (): io.flow.internal.v0.models.SvitlanaItem => ({
21211
21399
  id: factories.string(),
21212
21400
  number: factories.string(),
@@ -21935,31 +22123,6 @@ const factories = {
21935
22123
  address: factories.string(),
21936
22124
  }),
21937
22125
 
21938
- 'io.flow.internal.v0.models.virtual_card_provider': (): io.flow.internal.v0.models.VirtualCardProvider => ({
21939
- id: factories.string(),
21940
- organization_id: factories.string(),
21941
- provider: factories.string(),
21942
- attributes: objectOf(() => factories.string()),
21943
- created_at: factories.date_time_iso_8601(),
21944
- updated_at: factories.date_time_iso_8601(),
21945
- }),
21946
-
21947
- 'io.flow.internal.v0.models.virtual_card_provider_deleted': (): io.flow.internal.v0.models.VirtualCardProviderDeleted => ({
21948
- discriminator: 'virtual_card_provider_deleted',
21949
- event_id: factories.string(),
21950
- timestamp: factories.date_time_iso_8601(),
21951
- id: factories.string(),
21952
- provider: factories['io.flow.internal.v0.models.virtual_card_provider'](),
21953
- }),
21954
-
21955
- 'io.flow.internal.v0.models.virtual_card_provider_upserted': (): io.flow.internal.v0.models.VirtualCardProviderUpserted => ({
21956
- discriminator: 'virtual_card_provider_upserted',
21957
- event_id: factories.string(),
21958
- timestamp: factories.date_time_iso_8601(),
21959
- id: factories.string(),
21960
- provider: factories['io.flow.internal.v0.models.virtual_card_provider'](),
21961
- }),
21962
-
21963
22126
  'io.flow.internal.v0.models.virtual_card_transaction': (): io.flow.internal.v0.models.VirtualCardTransaction => ({
21964
22127
  discriminator: 'virtual_card_transaction',
21965
22128
  virtual_card: factories['io.flow.payment.v0.models.virtual_card_reference'](),
@@ -22392,6 +22555,8 @@ const factories = {
22392
22555
  () => factories['io.flow.internal.v0.models.label_invoice_request_deleted'](),
22393
22556
  () => factories['io.flow.internal.v0.models.carrier_charge_upserted'](),
22394
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'](),
22395
22560
  () => factories['io.flow.internal.v0.models.fraud_review_upserted'](),
22396
22561
  () => factories['io.flow.internal.v0.models.fraud_review_deleted'](),
22397
22562
  () => factories['io.flow.internal.v0.models.fraud_pending_review_upserted'](),
@@ -22495,8 +22660,6 @@ const factories = {
22495
22660
  () => factories['io.flow.internal.v0.models.payment_processor_account_deleted'](),
22496
22661
  () => factories['io.flow.internal.v0.models.payment_processor_merchant_upserted'](),
22497
22662
  () => factories['io.flow.internal.v0.models.payment_processor_merchant_deleted'](),
22498
- () => factories['io.flow.internal.v0.models.virtual_card_provider_upserted'](),
22499
- () => factories['io.flow.internal.v0.models.virtual_card_provider_deleted'](),
22500
22663
  () => factories['io.flow.internal.v0.models.authorization_bundle_upserted'](),
22501
22664
  () => factories['io.flow.internal.v0.models.authorization_bundle_deleted'](),
22502
22665
  () => factories['io.flow.internal.v0.models.organization_payment_setting_upserted'](),
@@ -22562,8 +22725,6 @@ const factories = {
22562
22725
  () => factories['io.flow.internal.v0.models.stripe_capture_upserted'](),
22563
22726
  () => factories['io.flow.internal.v0.models.stripe_refund_deleted'](),
22564
22727
  () => factories['io.flow.internal.v0.models.stripe_refund_upserted'](),
22565
- () => factories['io.flow.internal.v0.models.svb_virtual_card_clearing_upserted'](),
22566
- () => factories['io.flow.internal.v0.models.svb_virtual_card_clearing_deleted'](),
22567
22728
  () => factories['io.flow.internal.v0.models.liability_remittance_plan_upserted'](),
22568
22729
  () => factories['io.flow.internal.v0.models.liability_remittance_plan_deleted'](),
22569
22730
  () => factories['io.flow.internal.v0.models.svitlana_item_upserted'](),
@@ -22602,6 +22763,15 @@ const factories = {
22602
22763
  return f();
22603
22764
  },
22604
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
+
22605
22775
  'io.flow.internal.v0.unions.export_schedule': (): io.flow.internal.v0.unions.ExportSchedule => {
22606
22776
  const f = faker.helpers.arrayElement([
22607
22777
  () => factories['io.flow.internal.v0.models.export_schedule_daily'](),
@@ -22973,6 +23143,7 @@ const factories = {
22973
23143
  () => factories['io.flow.internal.v0.models.proof_of_posting_shipping_notification'](),
22974
23144
  () => factories['io.flow.internal.v0.models.proof_of_posting_order_cancellation'](),
22975
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'](),
22976
23147
  ]);
22977
23148
 
22978
23149
  return f();
@@ -23087,6 +23258,7 @@ const factories = {
23087
23258
  const f = faker.helpers.arrayElement([
23088
23259
  () => factories['io.flow.internal.v0.models.statement_creation_metadata'](),
23089
23260
  () => factories['io.flow.internal.v0.models.accounting_fulfillment_metadata'](),
23261
+ () => factories['io.flow.internal.v0.models.accounting_pending_order_metadata'](),
23090
23262
  ]);
23091
23263
 
23092
23264
  return f();
@@ -23131,6 +23303,7 @@ const factories = {
23131
23303
  () => factories['io.flow.internal.v0.models.duty_transaction'](),
23132
23304
  () => factories['io.flow.internal.v0.models.trueup_transaction'](),
23133
23305
  () => factories['io.flow.internal.v0.models.carrier_charge_transaction'](),
23306
+ () => factories['io.flow.internal.v0.models.carrier_fee_transaction'](),
23134
23307
  ]);
23135
23308
 
23136
23309
  return f();
@@ -24158,6 +24331,7 @@ const factories = {
24158
24331
 
24159
24332
  'io.flow.organization.onboarding.state.v0.models.deactivation_put_form': (): io.flow.organization.onboarding.state.v0.models.DeactivationPutForm => ({
24160
24333
  reason: factories.string(),
24334
+ deactivate_at: factories.date_time_iso_8601(),
24161
24335
  }),
24162
24336
 
24163
24337
  'io.flow.organization.onboarding.state.v0.models.in_compliance_review': (): io.flow.organization.onboarding.state.v0.models.InComplianceReview => ({
@@ -24173,6 +24347,7 @@ const factories = {
24173
24347
  'io.flow.organization.onboarding.state.v0.models.merchant_deactivated': (): io.flow.organization.onboarding.state.v0.models.MerchantDeactivated => ({
24174
24348
  discriminator: 'merchant_deactivated',
24175
24349
  reason: factories.string(),
24350
+ deactivate_at: factories.date_time_iso_8601(),
24176
24351
  }),
24177
24352
 
24178
24353
  'io.flow.organization.onboarding.state.v0.models.merchant_disabled': (): io.flow.organization.onboarding.state.v0.models.MerchantDisabled => ({
@@ -24803,6 +24978,7 @@ const factories = {
24803
24978
  currency: factories.string(),
24804
24979
  base_amount: factories.decimal(),
24805
24980
  base_currency: factories.string(),
24981
+ reference: factories.string(),
24806
24982
  }),
24807
24983
 
24808
24984
  'io.flow.payment.gateway.v0.models.payment_authorization_status': (): io.flow.payment.gateway.v0.models.PaymentAuthorizationStatus => ({
@@ -24816,6 +24992,7 @@ const factories = {
24816
24992
  currency: factories.string(),
24817
24993
  base_amount: factories.decimal(),
24818
24994
  base_currency: factories.string(),
24995
+ reference: factories.string(),
24819
24996
  created_at: factories.date_time_iso_8601(),
24820
24997
  updated_at: factories.date_time_iso_8601(),
24821
24998
  status: factories['io.flow.payment.gateway.v0.models.payment_capture_status'](),
@@ -24824,6 +25001,7 @@ const factories = {
24824
25001
  'io.flow.payment.gateway.v0.models.payment_capture_form': (): io.flow.payment.gateway.v0.models.PaymentCaptureForm => ({
24825
25002
  amount: factories.decimal(),
24826
25003
  currency: factories.string(),
25004
+ reference: factories.string(),
24827
25005
  attributes: objectOf(() => factories.string()),
24828
25006
  }),
24829
25007
 
@@ -24942,6 +25120,7 @@ const factories = {
24942
25120
  device_fingerprint_details: factories['io.flow.payment.gateway.v0.unions.device_fingerprint_details'](),
24943
25121
  cvv: factories.string(),
24944
25122
  stored_details_card: factories['io.flow.payment.gateway.v0.unions.payment_method_stored_details_card'](),
25123
+ reference: factories.string(),
24945
25124
  }),
24946
25125
 
24947
25126
  'io.flow.payment.gateway.v0.models.payment_method_data_authorize_googlepay': (): io.flow.payment.gateway.v0.models.PaymentMethodDataAuthorizeGooglepay => ({
@@ -24977,42 +25156,43 @@ const factories = {
24977
25156
 
24978
25157
  'io.flow.payment.gateway.v0.models.payment_method_data_init_afterpay': (): io.flow.payment.gateway.v0.models.PaymentMethodDataInitAfterpay => ({
24979
25158
  type: 'init_afterpay',
24980
- placeholder: factories.string(),
25159
+ reference: factories.string(),
24981
25160
  }),
24982
25161
 
24983
25162
  'io.flow.payment.gateway.v0.models.payment_method_data_init_applepay': (): io.flow.payment.gateway.v0.models.PaymentMethodDataInitApplepay => ({
24984
25163
  type: 'init_applepay',
24985
- placeholder: factories.string(),
25164
+ reference: factories.string(),
24986
25165
  }),
24987
25166
 
24988
25167
  'io.flow.payment.gateway.v0.models.payment_method_data_init_bancontact': (): io.flow.payment.gateway.v0.models.PaymentMethodDataInitBancontact => ({
24989
25168
  type: 'init_bancontact',
24990
- placeholder: factories.string(),
25169
+ reference: factories.string(),
24991
25170
  }),
24992
25171
 
24993
25172
  'io.flow.payment.gateway.v0.models.payment_method_data_init_googlepay': (): io.flow.payment.gateway.v0.models.PaymentMethodDataInitGooglepay => ({
24994
25173
  type: 'init_googlepay',
24995
- placeholder: factories.string(),
25174
+ reference: factories.string(),
24996
25175
  }),
24997
25176
 
24998
25177
  'io.flow.payment.gateway.v0.models.payment_method_data_init_ideal': (): io.flow.payment.gateway.v0.models.PaymentMethodDataInitIdeal => ({
24999
25178
  type: 'init_ideal',
25000
25179
  issuer: factories.string(),
25180
+ reference: factories.string(),
25001
25181
  }),
25002
25182
 
25003
25183
  'io.flow.payment.gateway.v0.models.payment_method_data_init_klarna': (): io.flow.payment.gateway.v0.models.PaymentMethodDataInitKlarna => ({
25004
25184
  type: 'init_klarna',
25005
- placeholder: factories.string(),
25185
+ reference: factories.string(),
25006
25186
  }),
25007
25187
 
25008
25188
  'io.flow.payment.gateway.v0.models.payment_method_data_init_paypal': (): io.flow.payment.gateway.v0.models.PaymentMethodDataInitPaypal => ({
25009
25189
  type: 'init_paypal',
25010
- placeholder: factories.string(),
25190
+ reference: factories.string(),
25011
25191
  }),
25012
25192
 
25013
25193
  'io.flow.payment.gateway.v0.models.payment_method_data_init_sofort': (): io.flow.payment.gateway.v0.models.PaymentMethodDataInitSofort => ({
25014
25194
  type: 'init_sofort',
25015
- placeholder: factories.string(),
25195
+ reference: factories.string(),
25016
25196
  }),
25017
25197
 
25018
25198
  'io.flow.payment.gateway.v0.models.payment_method_data_option_logo_svg': (): io.flow.payment.gateway.v0.models.PaymentMethodDataOptionLogoSvg => ({
@@ -25134,6 +25314,7 @@ const factories = {
25134
25314
  currency: factories.string(),
25135
25315
  base_amount: factories.decimal(),
25136
25316
  base_currency: factories.string(),
25317
+ reference: factories.string(),
25137
25318
  created_at: factories.date_time_iso_8601(),
25138
25319
  updated_at: factories.date_time_iso_8601(),
25139
25320
  status: factories['io.flow.payment.gateway.v0.models.payment_refund_status'](),
@@ -25142,6 +25323,7 @@ const factories = {
25142
25323
  'io.flow.payment.gateway.v0.models.payment_refund_form': (): io.flow.payment.gateway.v0.models.PaymentRefundForm => ({
25143
25324
  amount: factories.decimal(),
25144
25325
  currency: factories.string(),
25326
+ reference: factories.string(),
25145
25327
  }),
25146
25328
 
25147
25329
  'io.flow.payment.gateway.v0.models.payment_refund_status': (): io.flow.payment.gateway.v0.models.PaymentRefundStatus => ({
@@ -25215,6 +25397,7 @@ const factories = {
25215
25397
  currency: factories.string(),
25216
25398
  base_amount: factories.decimal(),
25217
25399
  base_currency: factories.string(),
25400
+ reference: factories.string(),
25218
25401
  created_at: factories.date_time_iso_8601(),
25219
25402
  updated_at: factories.date_time_iso_8601(),
25220
25403
  status: factories['io.flow.payment.gateway.v0.models.payment_reversal_status'](),
@@ -25223,6 +25406,7 @@ const factories = {
25223
25406
  'io.flow.payment.gateway.v0.models.payment_reversal_form': (): io.flow.payment.gateway.v0.models.PaymentReversalForm => ({
25224
25407
  amount: factories.decimal(),
25225
25408
  currency: factories.string(),
25409
+ reference: factories.string(),
25226
25410
  }),
25227
25411
 
25228
25412
  'io.flow.payment.gateway.v0.models.payment_reversal_status': (): io.flow.payment.gateway.v0.models.PaymentReversalStatus => ({
@@ -26249,15 +26433,6 @@ const factories = {
26249
26433
  description: factories.string(),
26250
26434
  }),
26251
26435
 
26252
- 'io.flow.payment.internal.v0.models.virtual_card_provider': (): io.flow.payment.internal.v0.models.VirtualCardProvider => ({
26253
- id: factories.string(),
26254
- organization_id: factories.string(),
26255
- provider: factories.string(),
26256
- attributes: objectOf(() => factories.string()),
26257
- created_at: factories.date_time_iso_8601(),
26258
- updated_at: factories.date_time_iso_8601(),
26259
- }),
26260
-
26261
26436
  'io.flow.payment.internal.v0.unions.authorization_payload': (): io.flow.payment.internal.v0.unions.AuthorizationPayload => {
26262
26437
  const f = faker.helpers.arrayElement([
26263
26438
  () => factories['io.flow.payment.internal.v0.models.apple_pay_authorization_payload'](),
@@ -27429,11 +27604,6 @@ const factories = {
27429
27604
  virtual_card_capture: factories['io.flow.payment.v0.models.virtual_card_capture'](),
27430
27605
  }),
27431
27606
 
27432
- 'io.flow.payment.v0.models.virtual_card_form': (): io.flow.payment.v0.models.VirtualCardForm => ({
27433
- limit: factories['io.flow.common.v0.models.money'](),
27434
- attributes: objectOf(() => factories.string()),
27435
- }),
27436
-
27437
27607
  'io.flow.payment.v0.models.virtual_card_reference': (): io.flow.payment.v0.models.VirtualCardReference => ({
27438
27608
  id: factories.string(),
27439
27609
  }),
@@ -29035,6 +29205,30 @@ const factories = {
29035
29205
  'io.flow.shopify.external.v0.enums.shopify_customer_state': (): io.flow.shopify.external.v0.enums.ShopifyCustomerState => faker.helpers.arrayElement(['disabled', 'invited', 'enabled']),
29036
29206
  'io.flow.shopify.external.v0.enums.shopify_discount_pagination_direction': (): io.flow.shopify.external.v0.enums.ShopifyDiscountPaginationDirection => faker.helpers.arrayElement(['next', 'prev']),
29037
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
+
29038
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']),
29039
29233
 
29040
29234
  'io.flow.shopify.external.v0.enums.shopify_transaction_error_code': (): io.flow.shopify.external.v0.enums.ShopifyTransactionErrorCode => faker.helpers.arrayElement([
@@ -29922,6 +30116,12 @@ const factories = {
29922
30116
  carrier_identifier: factories.string(),
29923
30117
  }),
29924
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
+
29925
30125
  'io.flow.shopify.external.v0.models.shopify_tax_line': (): io.flow.shopify.external.v0.models.ShopifyTaxLine => ({
29926
30126
  price: factories.string(),
29927
30127
  rate: factories.double(),
@@ -30241,6 +30441,10 @@ const factories = {
30241
30441
  flow_authorization: factories['io.flow.payment.v0.unions.authorization'](),
30242
30442
  }),
30243
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
+
30244
30448
  'io.flow.shopify.markets.internal.v0.models.order_validation_error': (): io.flow.shopify.markets.internal.v0.models.OrderValidationError => ({
30245
30449
  message: factories.string(),
30246
30450
  reason: factories['io.flow.channel.internal.v0.enums.channel_order_acceptance_rejection_reason'](),
@@ -30316,6 +30520,7 @@ const factories = {
30316
30520
  api_key_masked: factories.string(),
30317
30521
  api_password_masked: factories.string(),
30318
30522
  access_token_masked: factories.string(),
30523
+ shopify_plan_name: factories['io.flow.shopify.external.v0.enums.shopify_plan_name'](),
30319
30524
  }),
30320
30525
 
30321
30526
  'io.flow.shopify.markets.internal.v0.models.shopify_markets_shop_form': (): io.flow.shopify.markets.internal.v0.models.ShopifyMarketsShopForm => ({
@@ -30326,6 +30531,7 @@ const factories = {
30326
30531
  api_key: factories.string(),
30327
30532
  api_password: factories.string(),
30328
30533
  access_token: factories.string(),
30534
+ shopify_plan_name: factories['io.flow.shopify.external.v0.enums.shopify_plan_name'](),
30329
30535
  }),
30330
30536
 
30331
30537
  'io.flow.shopify.markets.internal.v0.models.shopify_markets_shop_summary': (): io.flow.shopify.markets.internal.v0.models.ShopifyMarketsShopSummary => ({
@@ -30552,6 +30758,7 @@ const factories = {
30552
30758
  'themes/publish',
30553
30759
  'themes/update',
30554
30760
  'bulk_operations/finish',
30761
+ 'shop/update',
30555
30762
  ]),
30556
30763
 
30557
30764
  'io.flow.shopify.markets.v0.models.fulfillment_order_international_duties': (): io.flow.shopify.markets.v0.models.FulfillmentOrderInternationalDuties => ({
@@ -33040,185 +33247,6 @@ const factories = {
33040
33247
  return f();
33041
33248
  },
33042
33249
 
33043
- 'io.flow.svb.v0.enums.clearing_type': (): io.flow.svb.v0.enums.ClearingType => faker.helpers.arrayElement(['Credit', 'Debit']),
33044
-
33045
- 'io.flow.svb.v0.enums.notification_type': (): io.flow.svb.v0.enums.NotificationType => faker.helpers.arrayElement([
33046
- 'virtualcard.clearings',
33047
- 'virtualcard.created',
33048
- 'virtualcard.deleted',
33049
- 'virtualcard.realtime.auths',
33050
- ]),
33051
-
33052
- 'io.flow.svb.v0.enums.transaction_type': (): io.flow.svb.v0.enums.TransactionType => faker.helpers.arrayElement([
33053
- 'Authorization',
33054
- 'Advice',
33055
- 'First Presentment',
33056
- 'Reversal',
33057
- 'Reversal Advice',
33058
- 'Unspecified',
33059
- 'Purchase Return',
33060
- 'Forced Post',
33061
- ]),
33062
-
33063
- 'io.flow.svb.v0.models.authorization': (): io.flow.svb.v0.models.Authorization => ({
33064
- billing_amount: factories.integer(),
33065
- billing_currency: factories.string(),
33066
- issuer_response: factories.string(),
33067
- mcc: factories.string(),
33068
- mcc_description: factories.string(),
33069
- merchant_amount: factories.integer(),
33070
- merchant_currency: factories.string(),
33071
- merchant_id: factories.string(),
33072
- merchant_name: factories.string(),
33073
- transaction_date_time: factories.date_time_iso_8601(),
33074
- transaction_type: factories['io.flow.svb.v0.enums.transaction_type'](),
33075
- }),
33076
-
33077
- 'io.flow.svb.v0.models.clearing': (): io.flow.svb.v0.models.Clearing => ({
33078
- billing_amount: factories.integer(),
33079
- billing_currency: factories.string(),
33080
- clearing_type: factories['io.flow.svb.v0.enums.clearing_type'](),
33081
- authorization_date: factories.date_time_iso_8601(),
33082
- exchange_rate: factories.string(),
33083
- mcc: factories.string(),
33084
- mcc_description: factories.string(),
33085
- merchant_amount: factories.integer(),
33086
- merchant_currency: factories.string(),
33087
- merchant_id: factories.string(),
33088
- merchant_name: factories.string(),
33089
- settlement_date: factories.string(),
33090
- }),
33091
-
33092
- 'io.flow.svb.v0.models.clearing_notification': (): io.flow.svb.v0.models.ClearingNotification => ({
33093
- acquirer_ica: factories.string(),
33094
- approval_code: factories.string(),
33095
- authorization_date: factories.date_time_iso_8601(),
33096
- billing_amount: factories.integer(),
33097
- billing_currency: factories.string(),
33098
- clearing_type: factories['io.flow.svb.v0.enums.clearing_type'](),
33099
- exchange_rate: factories.string(),
33100
- mcc: factories.string(),
33101
- mcc_description: factories.string(),
33102
- merchant_amount: factories.integer(),
33103
- merchant_currency: factories.string(),
33104
- merchant_id: factories.string(),
33105
- merchant_name: factories.string(),
33106
- settlement_date: factories.date_time_iso_8601(),
33107
- vcn_id: factories.long(),
33108
- }),
33109
-
33110
- 'io.flow.svb.v0.models.create_body': (): io.flow.svb.v0.models.CreateBody => ({
33111
- data: factories['io.flow.svb.v0.models.create_virtual_card'](),
33112
- show_card_number: factories.boolean(),
33113
- }),
33114
-
33115
- 'io.flow.svb.v0.models.create_virtual_card': (): io.flow.svb.v0.models.CreateVirtualCard => ({
33116
- emails: arrayOf(() => factories.string()),
33117
- mastercard_data: factories['io.flow.svb.v0.models.mastercard_data'](),
33118
- metadata: factories.object(),
33119
- per_transaction_max: factories.integer(),
33120
- per_transaction_min: factories.integer(),
33121
- rcn_id: factories.integer(),
33122
- rcn_alias: factories.string(),
33123
- supplier_id: factories.integer(),
33124
- total_card_amount: factories.integer(),
33125
- transactions_max: factories.integer(),
33126
- valid_ending_on: factories.date_iso_8601(),
33127
- valid_starting_on: factories.date_iso_8601(),
33128
- }),
33129
-
33130
- 'io.flow.svb.v0.models.email': (): io.flow.svb.v0.models.Email => ({
33131
- email: factories.string(),
33132
- }),
33133
-
33134
- 'io.flow.svb.v0.models.email_body': (): io.flow.svb.v0.models.EmailBody => ({
33135
- data: factories['io.flow.svb.v0.models.email'](),
33136
- }),
33137
-
33138
- 'io.flow.svb.v0.models.email_response': (): io.flow.svb.v0.models.EmailResponse => ({
33139
- id: factories.string(),
33140
- }),
33141
-
33142
- 'io.flow.svb.v0.models.list_data': (): io.flow.svb.v0.models.ListData => ({
33143
- id: factories.string(),
33144
- type: factories.string(),
33145
- url: factories.string(),
33146
- }),
33147
-
33148
- 'io.flow.svb.v0.models.list_links': (): io.flow.svb.v0.models.ListLinks => ({
33149
- first: factories.string(),
33150
- next: factories.string(),
33151
- }),
33152
-
33153
- 'io.flow.svb.v0.models.list_response': (): io.flow.svb.v0.models.ListResponse => ({
33154
- data: arrayOf(() => factories['io.flow.svb.v0.models.list_data']()),
33155
- links: factories['io.flow.svb.v0.models.list_links'](),
33156
- }),
33157
-
33158
- 'io.flow.svb.v0.models.mastercard_data': (): io.flow.svb.v0.models.MastercardData => ({
33159
- id: factories.string(),
33160
- organization: factories.string(),
33161
- order_number: factories.string(),
33162
- authorization_key: factories.string(),
33163
- }),
33164
-
33165
- 'io.flow.svb.v0.models.notification_data': (): io.flow.svb.v0.models.NotificationData => ({
33166
- date: factories.date_time_iso_8601(),
33167
- 'event-id': factories.integer(),
33168
- payload: factories.object(),
33169
- type: factories['io.flow.svb.v0.enums.notification_type'](),
33170
- }),
33171
-
33172
- 'io.flow.svb.v0.models.svb_notification': (): io.flow.svb.v0.models.SvbNotification => ({
33173
- data: factories['io.flow.svb.v0.models.notification_data'](),
33174
- }),
33175
-
33176
- 'io.flow.svb.v0.models.update_body': (): io.flow.svb.v0.models.UpdateBody => ({
33177
- data: factories['io.flow.svb.v0.models.update_virtual_card'](),
33178
- }),
33179
-
33180
- 'io.flow.svb.v0.models.update_virtual_card': (): io.flow.svb.v0.models.UpdateVirtualCard => ({
33181
- emails: arrayOf(() => factories.string()),
33182
- mastercard_data: factories['io.flow.svb.v0.models.mastercard_data'](),
33183
- metadata: factories.object(),
33184
- per_transaction_max: factories.integer(),
33185
- per_transaction_min: factories.integer(),
33186
- total_card_amount: factories.integer(),
33187
- transactions_max: factories.integer(),
33188
- valid_ending_on: factories.date_iso_8601(),
33189
- valid_starting_on: factories.date_iso_8601(),
33190
- }),
33191
-
33192
- 'io.flow.svb.v0.models.virtual_card': (): io.flow.svb.v0.models.VirtualCard => ({
33193
- authorizations: arrayOf(() => factories['io.flow.svb.v0.models.authorization']()),
33194
- available_balance: factories.integer(),
33195
- card_number: factories.string(),
33196
- clearings: arrayOf(() => factories['io.flow.svb.v0.models.clearing']()),
33197
- currency: factories.string(),
33198
- cvc: factories.string(),
33199
- emails: arrayOf(() => factories.string()),
33200
- expiry: factories.string(),
33201
- id: factories.string(),
33202
- last4: factories.string(),
33203
- mastercard_data: factories['io.flow.svb.v0.models.mastercard_data'](),
33204
- metadata: factories.object(),
33205
- notified: factories.boolean(),
33206
- per_transaction_max: factories.integer(),
33207
- per_transaction_min: factories.integer(),
33208
- rcn_alias: factories.string(),
33209
- rcn_id: factories.integer(),
33210
- status: factories.string(),
33211
- supplier_id: factories.integer(),
33212
- total_card_amount: factories.integer(),
33213
- transactions_max: factories.integer(),
33214
- valid_ending_on: factories.date_iso_8601(),
33215
- valid_starting_on: factories.date_iso_8601(),
33216
- }),
33217
-
33218
- 'io.flow.svb.v0.models.virtual_card_response': (): io.flow.svb.v0.models.VirtualCardResponse => ({
33219
- data: factories['io.flow.svb.v0.models.virtual_card'](),
33220
- }),
33221
-
33222
33250
  'io.flow.token.v0.models.channel_token': (): io.flow.token.v0.models.ChannelToken => ({
33223
33251
  discriminator: 'channel_token',
33224
33252
  id: factories.string(),
@@ -33600,6 +33628,7 @@ export const makeAccountType = () => factories['io.flow.internal.v0.enums.accoun
33600
33628
  export const makeAccountUpserted = () => factories['io.flow.internal.v0.models.account_upserted']();
33601
33629
  export const makeAccountUpsertedV2 = () => factories['io.flow.internal.v0.models.account_upserted_v2']();
33602
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']();
33603
33632
  export const makeActionQuantity = () => factories['io.flow.internal.v0.models.action_quantity']();
33604
33633
  export const makeAdditionalImportTax = () => factories['io.flow.internal.v0.models.additional_import_tax']();
33605
33634
  export const makeAddressConfigurationProvinceSetting = () => factories['io.flow.internal.v0.models.address_configuration_province_setting']();
@@ -33694,7 +33723,9 @@ export const makeBankAccountReference = () => factories['io.flow.internal.v0.mod
33694
33723
  export const makeBankPayment = () => factories['io.flow.internal.v0.models.bank_payment']();
33695
33724
  export const makeBankPaymentDeletedV2 = () => factories['io.flow.internal.v0.models.bank_payment_deleted_v2']();
33696
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']();
33697
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']();
33698
33729
  export const makeBankPaymentStatusCode = () => factories['io.flow.internal.v0.enums.bank_payment_status_code']();
33699
33730
  export const makeBankPaymentStatusForm = () => factories['io.flow.internal.v0.models.bank_payment_status_form']();
33700
33731
  export const makeBankPaymentStatusImport = () => factories['io.flow.internal.v0.models.bank_payment_status_import']();
@@ -33776,9 +33807,6 @@ export const makeCarrierAccountUpsertedV2 = () => factories['io.flow.internal.v0
33776
33807
  export const makeCarrierAccountValidation = () => factories['io.flow.internal.v0.models.carrier_account_validation']();
33777
33808
  export const makeCarrierCharge = () => factories['io.flow.internal.v0.models.carrier_charge']();
33778
33809
  export const makeCarrierChargeDeleted = () => factories['io.flow.internal.v0.models.carrier_charge_deleted']();
33779
- export const makeCarrierChargeFile = () => factories['io.flow.internal.v0.models.carrier_charge_file']();
33780
- export const makeCarrierChargeFileForm = () => factories['io.flow.internal.v0.models.carrier_charge_file_form']();
33781
- export const makeCarrierChargeFileResult = () => factories['io.flow.internal.v0.models.carrier_charge_file_result']();
33782
33810
  export const makeCarrierChargeForm = () => factories['io.flow.internal.v0.unions.carrier_charge_form']();
33783
33811
  export const makeCarrierChargeFormLabel = () => factories['io.flow.internal.v0.models.carrier_charge_form_label']();
33784
33812
  export const makeCarrierChargeFormOther = () => factories['io.flow.internal.v0.models.carrier_charge_form_other']();
@@ -33789,6 +33817,18 @@ export const makeCarrierChargeType = () => factories['io.flow.internal.v0.enums.
33789
33817
  export const makeCarrierChargeUnits = () => factories['io.flow.internal.v0.models.carrier_charge_units']();
33790
33818
  export const makeCarrierChargeUpserted = () => factories['io.flow.internal.v0.models.carrier_charge_upserted']();
33791
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']();
33792
33832
  export const makeCarrierInvoice = () => factories['io.flow.internal.v0.models.carrier_invoice']();
33793
33833
  export const makeCarrierLabelGenerationMethod = () => factories['io.flow.internal.v0.enums.carrier_label_generation_method']();
33794
33834
  export const makeCarrierValidationStatus = () => factories['io.flow.internal.v0.enums.carrier_validation_status']();
@@ -34043,6 +34083,7 @@ export const makeDetails = () => factories['io.flow.internal.v0.models.details']
34043
34083
  export const makeDhl = () => factories['io.flow.internal.v0.models.dhl']();
34044
34084
  export const makeDhlEcommerce = () => factories['io.flow.internal.v0.models.dhl_ecommerce']();
34045
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']();
34046
34087
  export const makeDiscount = () => factories['io.flow.internal.v0.models.discount']();
34047
34088
  export const makeDiscountCode = () => factories['io.flow.internal.v0.models.discount_code']();
34048
34089
  export const makeDiscountRequestForm = () => factories['io.flow.internal.v0.models.discount_request_form']();
@@ -34164,7 +34205,9 @@ export const makeExperimentSessionQueryForm = () => factories['io.flow.internal.
34164
34205
  export const makeExperimentUpserted = () => factories['io.flow.internal.v0.models.experiment_upserted']();
34165
34206
  export const makeExperimentVersion = () => factories['io.flow.internal.v0.models.experiment_version']();
34166
34207
  export const makeExplicitStatement = () => factories['io.flow.internal.v0.models.explicit_statement']();
34167
- 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']();
34168
34211
  export const makeExportCompleted = () => factories['io.flow.internal.v0.models.export_completed']();
34169
34212
  export const makeExportContentType = () => factories['io.flow.internal.v0.enums.export_content_type']();
34170
34213
  export const makeExportFailed = () => factories['io.flow.internal.v0.models.export_failed']();
@@ -34397,6 +34440,7 @@ export const makeItemDimensionEstimateUpsertedV2 = () => factories['io.flow.inte
34397
34440
  export const makeItemFilterResponse = () => factories['io.flow.internal.v0.models.item_filter_response']();
34398
34441
  export const makeItemFilterValueResponse = () => factories['io.flow.internal.v0.models.item_filter_value_response']();
34399
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']();
34400
34444
  export const makeItemFormImportRequest = () => factories['io.flow.internal.v0.models.item_form_import_request']();
34401
34445
  export const makeItemHarmonization = () => factories['io.flow.internal.v0.models.item_harmonization']();
34402
34446
  export const makeItemHarmonizationDeleted = () => factories['io.flow.internal.v0.models.item_harmonization_deleted']();
@@ -34497,7 +34541,11 @@ export const makeLocalizedPriceBookItemData = () => factories['io.flow.internal.
34497
34541
  export const makeLocalizedPriceBookItemDeleted = () => factories['io.flow.internal.v0.models.localized_price_book_item_deleted']();
34498
34542
  export const makeLocalizedPriceBookItemUpserted = () => factories['io.flow.internal.v0.models.localized_price_book_item_upserted']();
34499
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']();
34500
34547
  export const makeLogo = () => factories['io.flow.internal.v0.models.logo']();
34548
+ export const makeLostChargeback = () => factories['io.flow.internal.v0.models.lost_chargeback']();
34501
34549
  export const makeLoyaltyProgram = () => factories['io.flow.internal.v0.models.loyalty_program']();
34502
34550
  export const makeLoyaltyProgramMessage = () => factories['io.flow.internal.v0.models.loyalty_program_message']();
34503
34551
  export const makeLoyaltyProgramReward = () => factories['io.flow.internal.v0.models.loyalty_program_reward']();
@@ -34506,7 +34554,6 @@ export const makeMagentoInstallForm = () => factories['io.flow.internal.v0.model
34506
34554
  export const makeMainTransaction = () => factories['io.flow.internal.v0.models.main_transaction']();
34507
34555
  export const makeMainTransactionDeleted = () => factories['io.flow.internal.v0.models.main_transaction_deleted']();
34508
34556
  export const makeMainTransactionDeletedV2 = () => factories['io.flow.internal.v0.models.main_transaction_deleted_v2']();
34509
- export const makeMainTransactionStatus = () => factories['io.flow.internal.v0.enums.main_transaction_status']();
34510
34557
  export const makeMainTransactionUpserted = () => factories['io.flow.internal.v0.models.main_transaction_upserted']();
34511
34558
  export const makeMainTransactionUpsertedV2 = () => factories['io.flow.internal.v0.models.main_transaction_upserted_v2']();
34512
34559
  export const makeManualReviewRule = () => factories['io.flow.internal.v0.models.manual_review_rule']();
@@ -34572,6 +34619,7 @@ export const makeMarketingGatewaySchemaSummary = () => factories['io.flow.intern
34572
34619
  export const makeMarketingGatewaySourceSummary = () => factories['io.flow.internal.v0.unions.marketing_gateway_source_summary']();
34573
34620
  export const makeMarketingGatewaySupportedChannelDetails = () => factories['io.flow.internal.v0.models.marketing_gateway_supported_channel_details']();
34574
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']();
34575
34623
  export const makeMatiasItem = () => factories['io.flow.internal.v0.models.matias_item']();
34576
34624
  export const makeMatiasItemDeleted = () => factories['io.flow.internal.v0.models.matias_item_deleted']();
34577
34625
  export const makeMatiasItemForm = () => factories['io.flow.internal.v0.models.matias_item_form']();
@@ -34857,6 +34905,7 @@ export const makeProofOfPostingFulfilled = () => factories['io.flow.internal.v0.
34857
34905
  export const makeProofOfPostingOrderCancellation = () => factories['io.flow.internal.v0.models.proof_of_posting_order_cancellation']();
34858
34906
  export const makeProofOfPostingOrderCombinedShipment = () => factories['io.flow.internal.v0.models.proof_of_posting_order_combined_shipment']();
34859
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']();
34860
34909
  export const makeQuote = () => factories['io.flow.internal.v0.models.quote']();
34861
34910
  export const makeQuoteDeleted = () => factories['io.flow.internal.v0.models.quote_deleted']();
34862
34911
  export const makeQuoteRequest = () => factories['io.flow.internal.v0.models.quote_request']();
@@ -35003,6 +35052,7 @@ export const makeRestrictionRule = () => factories['io.flow.internal.v0.models.r
35003
35052
  export const makeRestrictionRuleDecisionForm = () => factories['io.flow.internal.v0.models.restriction_rule_decision_form']();
35004
35053
  export const makeRestrictionRuleForm = () => factories['io.flow.internal.v0.models.restriction_rule_form']();
35005
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']();
35006
35056
  export const makeRestrictionRuleSummary = () => factories['io.flow.internal.v0.models.restriction_rule_summary']();
35007
35057
  export const makeRestrictionStatus = () => factories['io.flow.internal.v0.enums.restriction_status']();
35008
35058
  export const makeRestrictionStatusMetadata = () => factories['io.flow.internal.v0.models.restriction_status_metadata']();
@@ -35247,9 +35297,6 @@ export const makeSubscriptionFrequency = () => factories['io.flow.internal.v0.en
35247
35297
  export const makeSubscriptionTransaction = () => factories['io.flow.internal.v0.models.subscription_transaction']();
35248
35298
  export const makeSuggestionAction = () => factories['io.flow.internal.v0.enums.suggestion_action']();
35249
35299
  export const makeSupportedLabels = () => factories['io.flow.internal.v0.models.supported_labels']();
35250
- export const makeSvbVirtualCardClearing = () => factories['io.flow.internal.v0.models.svb_virtual_card_clearing']();
35251
- export const makeSvbVirtualCardClearingDeleted = () => factories['io.flow.internal.v0.models.svb_virtual_card_clearing_deleted']();
35252
- export const makeSvbVirtualCardClearingUpserted = () => factories['io.flow.internal.v0.models.svb_virtual_card_clearing_upserted']();
35253
35300
  export const makeSvitlanaItem = () => factories['io.flow.internal.v0.models.svitlana_item']();
35254
35301
  export const makeSvitlanaItemDeleted = () => factories['io.flow.internal.v0.models.svitlana_item_deleted']();
35255
35302
  export const makeSvitlanaItemForm = () => factories['io.flow.internal.v0.models.svitlana_item_form']();
@@ -35374,9 +35421,6 @@ export const makeValidationRule = () => factories['io.flow.internal.v0.unions.va
35374
35421
  export const makeVariant = () => factories['io.flow.internal.v0.unions.variant']();
35375
35422
  export const makeVariantForm = () => factories['io.flow.internal.v0.unions.variant_form']();
35376
35423
  export const makeViesResult = () => factories['io.flow.internal.v0.models.vies_result']();
35377
- export const makeVirtualCardProvider = () => factories['io.flow.internal.v0.models.virtual_card_provider']();
35378
- export const makeVirtualCardProviderDeleted = () => factories['io.flow.internal.v0.models.virtual_card_provider_deleted']();
35379
- export const makeVirtualCardProviderUpserted = () => factories['io.flow.internal.v0.models.virtual_card_provider_upserted']();
35380
35424
  export const makeVirtualCardTransaction = () => factories['io.flow.internal.v0.models.virtual_card_transaction']();
35381
35425
  export const makeWasteElectricalAndElectronicEquipmentComplianceData = () => factories['io.flow.internal.v0.models.waste_electrical_and_electronic_equipment_compliance_data']();
35382
35426
  export const makeWasteElectricalAndElectronicEquipmentComplianceForm = () => factories['io.flow.internal.v0.models.waste_electrical_and_electronic_equipment_compliance_form']();