@flowio/api-internal-factories 0.0.110 → 0.0.112

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.
@@ -34,6 +34,17 @@ const factories = {
34
34
  'io.flow.adyen.v0.enums.contract': (): io.flow.adyen.v0.enums.Contract => faker.helpers.arrayElement(['RECURRING']),
35
35
  'io.flow.adyen.v0.enums.device_channel': (): io.flow.adyen.v0.enums.DeviceChannel => faker.helpers.arrayElement(['app', 'browser']),
36
36
 
37
+ 'io.flow.adyen.v0.enums.dispute_status': (): io.flow.adyen.v0.enums.DisputeStatus => faker.helpers.arrayElement([
38
+ 'Accepted',
39
+ 'Expired',
40
+ 'Lost',
41
+ 'Pending',
42
+ 'Responded',
43
+ 'Undefended',
44
+ 'Unresponded',
45
+ 'Won',
46
+ ]),
47
+
37
48
  'io.flow.adyen.v0.enums.event_code': (): io.flow.adyen.v0.enums.EventCode => faker.helpers.arrayElement([
38
49
  'AUTHORISATION',
39
50
  'CANCELLATION',
@@ -297,6 +308,8 @@ const factories = {
297
308
  modificationMerchantReferences: factories.string(),
298
309
  chargebackSchemeCode: factories.string(),
299
310
  defensePeriodEndsAt: factories.date_time_iso_8601(),
311
+ disputeStatus: factories['io.flow.adyen.v0.enums.dispute_status'](),
312
+ defendable: factories.string(),
300
313
  }),
301
314
 
302
315
  'io.flow.adyen.v0.models.error': (): io.flow.adyen.v0.models.Error => ({
@@ -702,6 +715,8 @@ const factories = {
702
715
  'waiting_for_next_payout_date',
703
716
  'waiting_for_tracking_info',
704
717
  'waiting_for_positive_account_balance',
718
+ 'unfulfilled_amount_greater_than_negative_balance',
719
+ 'account_payment_hold',
705
720
  ]),
706
721
 
707
722
  'io.flow.billing.v0.enums.statement_attachment_type': (): io.flow.billing.v0.enums.StatementAttachmentType => faker.helpers.arrayElement(['csv']),
@@ -1723,6 +1738,7 @@ const factories = {
1723
1738
  local: factories['io.flow.catalog.v0.models.local'](),
1724
1739
  created_at: factories.date_time_iso_8601(),
1725
1740
  updated_at: factories.date_time_iso_8601(),
1741
+ deleted_at: factories.date_time_iso_8601(),
1726
1742
  }),
1727
1743
 
1728
1744
  'io.flow.catalog.v0.models.item_attributes_patch_form': (): io.flow.catalog.v0.models.ItemAttributesPatchForm => ({
@@ -1740,6 +1756,7 @@ const factories = {
1740
1756
  attributes: objectOf(() => factories.string()),
1741
1757
  dimensions: factories['io.flow.common.v0.models.dimensions'](),
1742
1758
  images: arrayOf(() => factories['io.flow.catalog.v0.models.image_form']()),
1759
+ deleted_at: factories.date_time_iso_8601(),
1743
1760
  }),
1744
1761
 
1745
1762
  'io.flow.catalog.v0.models.item_form_overlay': (): io.flow.catalog.v0.models.ItemFormOverlay => ({
@@ -1753,6 +1770,7 @@ const factories = {
1753
1770
  attributes: objectOf(() => factories.string()),
1754
1771
  dimensions: factories['io.flow.common.v0.models.dimensions'](),
1755
1772
  images: arrayOf(() => factories['io.flow.catalog.v0.models.image_form']()),
1773
+ deleted_at: factories.date_time_iso_8601(),
1756
1774
  }),
1757
1775
 
1758
1776
  'io.flow.catalog.v0.models.item_form_overlay_form': (): io.flow.catalog.v0.models.ItemFormOverlayForm => ({
@@ -1765,6 +1783,7 @@ const factories = {
1765
1783
  attributes: objectOf(() => factories.string()),
1766
1784
  dimensions: factories['io.flow.common.v0.models.dimensions'](),
1767
1785
  images: arrayOf(() => factories['io.flow.catalog.v0.models.image_form']()),
1786
+ deleted_at: factories.date_time_iso_8601(),
1768
1787
  }),
1769
1788
 
1770
1789
  'io.flow.catalog.v0.models.item_price_update_form': (): io.flow.catalog.v0.models.ItemPriceUpdateForm => ({
@@ -1928,6 +1947,7 @@ const factories = {
1928
1947
  },
1929
1948
 
1930
1949
  'io.flow.channel.internal.v0.enums.channel_order_acceptance_error_action': (): io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceErrorAction => faker.helpers.arrayElement(['auto_reject', 'auto_accept']),
1950
+ 'io.flow.channel.internal.v0.enums.channel_order_acceptance_failure_reason_code': (): io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceFailureReasonCode => faker.helpers.arrayElement(['channel_order_mor_invalid', 'channel_order_does_not_exist']),
1931
1951
 
1932
1952
  'io.flow.channel.internal.v0.enums.channel_order_acceptance_next_action_from': (): io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom => faker.helpers.arrayElement([
1933
1953
  'cx_team',
@@ -2014,6 +2034,15 @@ const factories = {
2014
2034
  external_order: factories.object(),
2015
2035
  }),
2016
2036
 
2037
+ 'io.flow.channel.internal.v0.models.channel_order_acceptance_failure': (): io.flow.channel.internal.v0.models.ChannelOrderAcceptanceFailure => ({
2038
+ id: factories.string(),
2039
+ organization_id: factories.string(),
2040
+ channel_id: factories.string(),
2041
+ payment_request_id: factories.string(),
2042
+ code: factories['io.flow.channel.internal.v0.enums.channel_order_acceptance_failure_reason_code'](),
2043
+ reason: factories.string(),
2044
+ }),
2045
+
2017
2046
  'io.flow.channel.internal.v0.models.channel_order_acceptance_form': (): io.flow.channel.internal.v0.models.ChannelOrderAcceptanceForm => ({
2018
2047
  status: factories['io.flow.channel.internal.v0.enums.channel_order_acceptance_status'](),
2019
2048
  }),
@@ -3249,6 +3278,12 @@ const factories = {
3249
3278
  display: factories['io.flow.experience.v0.enums.delivered_duty_display_type'](),
3250
3279
  }),
3251
3280
 
3281
+ 'io.flow.experience.v0.models.destination_contact_detail': (): io.flow.experience.v0.models.DestinationContactDetail => ({
3282
+ title: factories.string(),
3283
+ country: factories.string(),
3284
+ import_identifier: factories.string(),
3285
+ }),
3286
+
3252
3287
  'io.flow.experience.v0.models.discount': (): io.flow.experience.v0.models.Discount => ({
3253
3288
  discriminator: 'discount',
3254
3289
  id: factories.string(),
@@ -3628,6 +3663,10 @@ const factories = {
3628
3663
  tax_registration: factories['io.flow.harmonization.v0.models.tax_registration'](),
3629
3664
  geo: factories['io.flow.experience.v0.models.order_geo'](),
3630
3665
  device_details: factories['io.flow.payment.v0.unions.device_details'](),
3666
+
3667
+ destination_contact_details: arrayOf(
3668
+ () => factories['io.flow.experience.v0.models.destination_contact_detail'](),
3669
+ ),
3631
3670
  }),
3632
3671
 
3633
3672
  'io.flow.experience.v0.models.order_address': (): io.flow.experience.v0.models.OrderAddress => ({
@@ -5136,6 +5175,7 @@ const factories = {
5136
5175
  supporting_info: factories['io.flow.external.paypal.v1.models.supporting_info'](),
5137
5176
  allowed_response_options: factories['io.flow.external.paypal.v1.models.allowed_response_options'](),
5138
5177
  links: arrayOf(() => factories['io.flow.external.paypal.v1.models.link']()),
5178
+ previous_status: factories['io.flow.external.paypal.v1.enums.dispute_status'](),
5139
5179
  }),
5140
5180
 
5141
5181
  'io.flow.external.paypal.v1.models.dispute_extension': (): io.flow.external.paypal.v1.models.DisputeExtension => ({
@@ -7249,6 +7289,7 @@ const factories = {
7249
7289
 
7250
7290
  'io.flow.internal.v0.enums.channel_billed_transaction_type': (): io.flow.internal.v0.enums.ChannelBilledTransactionType => faker.helpers.arrayElement(['adjustment', 'reversal', 'channel_initiated']),
7251
7291
  'io.flow.internal.v0.enums.channel_order_acceptance_error_action': (): io.flow.internal.v0.enums.ChannelOrderAcceptanceErrorAction => faker.helpers.arrayElement(['auto_reject', 'auto_accept']),
7292
+ 'io.flow.internal.v0.enums.channel_order_acceptance_failure_reason_code': (): io.flow.internal.v0.enums.ChannelOrderAcceptanceFailureReasonCode => faker.helpers.arrayElement(['channel_order_mor_invalid', 'channel_order_does_not_exist']),
7252
7293
 
7253
7294
  'io.flow.internal.v0.enums.channel_order_acceptance_next_action_from': (): io.flow.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom => faker.helpers.arrayElement([
7254
7295
  'cx_team',
@@ -7358,6 +7399,7 @@ const factories = {
7358
7399
  'io.flow.internal.v0.enums.discount_request_order_entitlement_key': (): io.flow.internal.v0.enums.DiscountRequestOrderEntitlementKey => faker.helpers.arrayElement(['subtotal']),
7359
7400
  'io.flow.internal.v0.enums.dispute_billable': (): io.flow.internal.v0.enums.DisputeBillable => faker.helpers.arrayElement(['flow', 'organization']),
7360
7401
  'io.flow.internal.v0.enums.dispute_category': (): io.flow.internal.v0.enums.DisputeCategory => faker.helpers.arrayElement(['friendly_fraud', 'true_fraud', 'processing_error']),
7402
+ 'io.flow.internal.v0.enums.dispute_defense_outcome': (): io.flow.internal.v0.enums.DisputeDefenseOutcome => faker.helpers.arrayElement(['defended', 'undefended', 'undefendable']),
7361
7403
  'io.flow.internal.v0.enums.dispute_evidence': (): io.flow.internal.v0.enums.DisputeEvidence => faker.helpers.arrayElement(['proof_of_delivery', 'proof_of_fulfillment', 'other']),
7362
7404
  'io.flow.internal.v0.enums.dispute_import_status': (): io.flow.internal.v0.enums.DisputeImportStatus => faker.helpers.arrayElement(['new', 'processing', 'completed', 'failed']),
7363
7405
  'io.flow.internal.v0.enums.dispute_import_type': (): io.flow.internal.v0.enums.DisputeImportType => faker.helpers.arrayElement(['adyen_dispute', 'paypal_dispute']),
@@ -7394,6 +7436,8 @@ const factories = {
7394
7436
  'io.flow.internal.v0.enums.erp_file_type': (): io.flow.internal.v0.enums.ErpFileType => faker.helpers.arrayElement(['vendor']),
7395
7437
 
7396
7438
  'io.flow.internal.v0.enums.event_type': (): io.flow.internal.v0.enums.EventType => faker.helpers.arrayElement([
7439
+ 'adjusted_estimates_upserted',
7440
+ 'adjusted_estimates_deleted',
7397
7441
  'adyen_authorization_deleted',
7398
7442
  'adyen_authorization_upserted',
7399
7443
  'adyen_cancel_deleted',
@@ -7402,6 +7446,8 @@ const factories = {
7402
7446
  'adyen_capture_upserted',
7403
7447
  'adyen_refund_deleted',
7404
7448
  'adyen_refund_upserted',
7449
+ 'adyen_dispute_upserted',
7450
+ 'adyen_dispute_deleted',
7405
7451
  'index_assignment_upserted',
7406
7452
  'index_assignment_deleted',
7407
7453
  'fulfillment_upserted',
@@ -7475,6 +7521,7 @@ const factories = {
7475
7521
  'catalog_settings_deleted',
7476
7522
  'channel_order_acceptance_upserted',
7477
7523
  'channel_order_acceptance_deleted',
7524
+ 'channel_order_acceptance_failed',
7478
7525
  'checkout_configuration_upserted',
7479
7526
  'checkout_configuration_deleted',
7480
7527
  'commercial_invoice_internal_upserted',
@@ -7567,6 +7614,8 @@ const factories = {
7567
7614
  'ftp_file_to_process_uploaded',
7568
7615
  'center_defaults_upserted',
7569
7616
  'center_defaults_deleted',
7617
+ 'fulfillment_fallbacks_upserted',
7618
+ 'fulfillment_fallbacks_deleted',
7570
7619
  'pregenerated_request_event',
7571
7620
  'quote_upserted',
7572
7621
  'quote_deleted',
@@ -7764,6 +7813,8 @@ const factories = {
7764
7813
  'tracking_assurance_analysis_deleted',
7765
7814
  'tracking_assurance_job_upserted',
7766
7815
  'tracking_assurance_job_deleted',
7816
+ 'tracking_label_dimensions_upserted',
7817
+ 'tracking_label_dimensions_deleted',
7767
7818
  'tracking_request_upserted',
7768
7819
  'tracking_response_upserted',
7769
7820
  'user_upserted_v2',
@@ -7849,6 +7900,8 @@ const factories = {
7849
7900
  'globale_system',
7850
7901
  ]),
7851
7902
 
7903
+ 'io.flow.internal.v0.enums.label_request_result_organization_type': (): io.flow.internal.v0.enums.LabelRequestResultOrganizationType => faker.helpers.arrayElement(['all', 'legacy_production', 'managed_markets_production', 'sandbox']),
7904
+ 'io.flow.internal.v0.enums.label_request_result_state': (): io.flow.internal.v0.enums.LabelRequestResultState => faker.helpers.arrayElement(['success', 'failure']),
7852
7905
  'io.flow.internal.v0.enums.label_transaction_type': (): io.flow.internal.v0.enums.LabelTransactionType => faker.helpers.arrayElement(['adjustment', 'reversal', 'billable_label', 'fee', 'revenue_share']),
7853
7906
 
7854
7907
  'io.flow.internal.v0.enums.liability_type': (): io.flow.internal.v0.enums.LiabilityType => faker.helpers.arrayElement(
@@ -8134,6 +8187,8 @@ const factories = {
8134
8187
  'account_quarterly_balances',
8135
8188
  'invariants',
8136
8189
  'payments',
8190
+ 'reconcile_not_recorded',
8191
+ 'products_record',
8137
8192
  ]),
8138
8193
 
8139
8194
  'io.flow.internal.v0.enums.reporting_fulfillment_is_virtual': (): io.flow.internal.v0.enums.ReportingFulfillmentIsVirtual => faker.helpers.arrayElement(['all', 'mixed', 'none']),
@@ -8272,6 +8327,7 @@ const factories = {
8272
8327
  'io.flow.internal.v0.enums.tax_transaction_type': (): io.flow.internal.v0.enums.TaxTransactionType => faker.helpers.arrayElement(['adjustment', 'reversal', 'tax', 'refund']),
8273
8328
  'io.flow.internal.v0.enums.thiago_item_type': (): io.flow.internal.v0.enums.ThiagoItemType => faker.helpers.arrayElement(['digital', 'physical']),
8274
8329
  'io.flow.internal.v0.enums.tracking_integration_type': (): io.flow.internal.v0.enums.TrackingIntegrationType => faker.helpers.arrayElement(['api', 'bulk', 'aftership']),
8330
+ 'io.flow.internal.v0.enums.tracking_label_dimensions_source': (): io.flow.internal.v0.enums.TrackingLabelDimensionsSource => faker.helpers.arrayElement(['aftership', 'carrier_api']),
8275
8331
 
8276
8332
  'io.flow.internal.v0.enums.tracking_processing_failure_classification': (): io.flow.internal.v0.enums.TrackingProcessingFailureClassification => faker.helpers.arrayElement([
8277
8333
  'tracking_expired',
@@ -8555,6 +8611,29 @@ const factories = {
8555
8611
  province_code: factories['io.flow.internal.v0.enums.address_configuration_setting_province_code'](),
8556
8612
  }),
8557
8613
 
8614
+ 'io.flow.internal.v0.models.adjusted_estimates': (): io.flow.internal.v0.models.AdjustedEstimates => ({
8615
+ id: factories.string(),
8616
+ organization_id: factories.string(),
8617
+ label_id: factories.string(),
8618
+ estimates: arrayOf(() => factories['io.flow.label.v0.models.shipping_label_hop_summary']()),
8619
+ }),
8620
+
8621
+ 'io.flow.internal.v0.models.adjusted_estimates_deleted': (): io.flow.internal.v0.models.AdjustedEstimatesDeleted => ({
8622
+ discriminator: 'adjusted_estimates_deleted',
8623
+ event_id: factories.string(),
8624
+ timestamp: factories.date_time_iso_8601(),
8625
+ organization: factories.string(),
8626
+ id: factories.string(),
8627
+ }),
8628
+
8629
+ 'io.flow.internal.v0.models.adjusted_estimates_upserted': (): io.flow.internal.v0.models.AdjustedEstimatesUpserted => ({
8630
+ discriminator: 'adjusted_estimates_upserted',
8631
+ event_id: factories.string(),
8632
+ timestamp: factories.date_time_iso_8601(),
8633
+ organization: factories.string(),
8634
+ adjusted_estimates: factories['io.flow.internal.v0.models.adjusted_estimates'](),
8635
+ }),
8636
+
8558
8637
  'io.flow.internal.v0.models.adjustment_amount_fixed': (): io.flow.internal.v0.models.AdjustmentAmountFixed => ({
8559
8638
  discriminator: 'fixed',
8560
8639
  amount: factories['io.flow.common.v0.models.money'](),
@@ -8692,6 +8771,20 @@ const factories = {
8692
8771
  capture: factories['io.flow.internal.v0.models.adyen_internal_capture'](),
8693
8772
  }),
8694
8773
 
8774
+ 'io.flow.internal.v0.models.adyen_dispute_deleted': (): io.flow.internal.v0.models.AdyenDisputeDeleted => ({
8775
+ discriminator: 'adyen_dispute_deleted',
8776
+ event_id: factories.string(),
8777
+ timestamp: factories.date_time_iso_8601(),
8778
+ id: factories.string(),
8779
+ }),
8780
+
8781
+ 'io.flow.internal.v0.models.adyen_dispute_upserted': (): io.flow.internal.v0.models.AdyenDisputeUpserted => ({
8782
+ discriminator: 'adyen_dispute_upserted',
8783
+ event_id: factories.string(),
8784
+ timestamp: factories.date_time_iso_8601(),
8785
+ dispute: factories['io.flow.internal.v0.models.adyen_internal_dispute'](),
8786
+ }),
8787
+
8695
8788
  'io.flow.internal.v0.models.adyen_internal_authorization': (): io.flow.internal.v0.models.AdyenInternalAuthorization => ({
8696
8789
  id: factories.string(),
8697
8790
  flow_authorization_id: factories.string(),
@@ -8733,6 +8826,32 @@ const factories = {
8733
8826
  response: factories.string(),
8734
8827
  }),
8735
8828
 
8829
+ 'io.flow.internal.v0.models.adyen_internal_dispute': (): io.flow.internal.v0.models.AdyenInternalDispute => ({
8830
+ id: factories.string(),
8831
+ amount: factories.long(),
8832
+ currency: factories.string(),
8833
+ psp_reference: factories.string(),
8834
+ original_reference: factories.string(),
8835
+ event_code: factories.string(),
8836
+ event_date: factories.date_time_iso_8601(),
8837
+ chargeback_reason_code: factories.string(),
8838
+ modification_merchant_references: factories.string(),
8839
+ chargeback_scheme_code: factories.string(),
8840
+ defense_period_ends_at: factories.date_time_iso_8601(),
8841
+ dispute_status: factories.string(),
8842
+ defendable: factories.string(),
8843
+ merchant_account_code: factories.string(),
8844
+ operations: arrayOf(() => factories.string()),
8845
+ merchant_reference: factories.string(),
8846
+ payment_method: factories.string(),
8847
+ reason: factories.string(),
8848
+ success: factories.string(),
8849
+ livemode: factories.boolean(),
8850
+ updated_by_user_id: factories.string(),
8851
+ created_at: factories.date_time_iso_8601(),
8852
+ updated_at: factories.date_time_iso_8601(),
8853
+ }),
8854
+
8736
8855
  'io.flow.internal.v0.models.adyen_internal_refund': (): io.flow.internal.v0.models.AdyenInternalRefund => ({
8737
8856
  id: factories.string(),
8738
8857
  flow_refund_id: factories.string(),
@@ -9017,6 +9136,14 @@ const factories = {
9017
9136
  value: factories.date_time_iso_8601(),
9018
9137
  }),
9019
9138
 
9139
+ 'io.flow.internal.v0.models.attempt_statistics': (): io.flow.internal.v0.models.AttemptStatistics => ({
9140
+ merchant_count: factories.long(),
9141
+ amount: factories.decimal(),
9142
+ failed_merchant_count: factories.long(),
9143
+ failed_amount: factories.decimal(),
9144
+ success_ratio: factories.double(),
9145
+ }),
9146
+
9020
9147
  'io.flow.internal.v0.models.attribute_label': (): io.flow.internal.v0.models.AttributeLabel => ({
9021
9148
  value: factories.string(),
9022
9149
  unverified: factories.boolean(),
@@ -10156,6 +10283,24 @@ const factories = {
10156
10283
  external_order: factories.object(),
10157
10284
  }),
10158
10285
 
10286
+ 'io.flow.internal.v0.models.channel_order_acceptance_failed': (): io.flow.internal.v0.models.ChannelOrderAcceptanceFailed => ({
10287
+ discriminator: 'channel_order_acceptance_failed',
10288
+ event_id: factories.string(),
10289
+ timestamp: factories.date_time_iso_8601(),
10290
+ organization: factories.string(),
10291
+ channel_id: factories.string(),
10292
+ channel_order_acceptance_failure: factories['io.flow.internal.v0.models.channel_order_acceptance_failure'](),
10293
+ }),
10294
+
10295
+ 'io.flow.internal.v0.models.channel_order_acceptance_failure': (): io.flow.internal.v0.models.ChannelOrderAcceptanceFailure => ({
10296
+ id: factories.string(),
10297
+ organization_id: factories.string(),
10298
+ channel_id: factories.string(),
10299
+ payment_request_id: factories.string(),
10300
+ code: factories['io.flow.internal.v0.enums.channel_order_acceptance_failure_reason_code'](),
10301
+ reason: factories.string(),
10302
+ }),
10303
+
10159
10304
  'io.flow.internal.v0.models.channel_order_acceptance_form': (): io.flow.internal.v0.models.ChannelOrderAcceptanceForm => ({
10160
10305
  status: factories['io.flow.internal.v0.enums.channel_order_acceptance_status'](),
10161
10306
  }),
@@ -10673,6 +10818,19 @@ const factories = {
10673
10818
  ),
10674
10819
  }),
10675
10820
 
10821
+ 'io.flow.internal.v0.models.classification_merchant': (): io.flow.internal.v0.models.ClassificationMerchant => ({
10822
+ MerchantId: factories.string(),
10823
+ PlatformId: factories['io.flow.internal.v0.enums.classification_platform'](),
10824
+ Name: factories.string(),
10825
+ DateLastUpdated: factories.date_time_iso_8601(),
10826
+ Order: factories.integer(),
10827
+ }),
10828
+
10829
+ 'io.flow.internal.v0.models.classification_merchant_envelope': (): io.flow.internal.v0.models.ClassificationMerchantEnvelope => ({
10830
+ messageType: arrayOf(() => factories.string()),
10831
+ message: factories['io.flow.internal.v0.models.classification_merchant'](),
10832
+ }),
10833
+
10676
10834
  'io.flow.internal.v0.models.classification_product': (): io.flow.internal.v0.models.ClassificationProduct => ({
10677
10835
  organization_id: factories.string(),
10678
10836
  product_id: factories.string(),
@@ -10855,6 +11013,7 @@ const factories = {
10855
11013
  rex_number: factories.string(),
10856
11014
  wee_number: factories.string(),
10857
11015
  business_gst_numbers: arrayOf(() => factories.string()),
11016
+ destination_gst_numbers: arrayOf(() => factories.string()),
10858
11017
  vat_name: factories.string(),
10859
11018
  shipping_price: factories.string(),
10860
11019
  shipment_recipient: factories.string(),
@@ -11519,10 +11678,12 @@ const factories = {
11519
11678
  status: factories['io.flow.internal.v0.enums.dispute_status'](),
11520
11679
  liability: factories['io.flow.internal.v0.enums.dispute_liability'](),
11521
11680
  billable: factories['io.flow.internal.v0.enums.dispute_billable'](),
11681
+ defense_outcome: factories['io.flow.internal.v0.enums.dispute_defense_outcome'](),
11522
11682
  details: factories['io.flow.internal.v0.unions.dispute_details'](),
11523
11683
  issued_at: factories.date_time_iso_8601(),
11524
11684
  expires_at: factories.date_time_iso_8601(),
11525
11685
  created_at: factories.date_time_iso_8601(),
11686
+ updated_at: factories.date_time_iso_8601(),
11526
11687
  }),
11527
11688
 
11528
11689
  'io.flow.internal.v0.models.dispute_authorization_reference': (): io.flow.internal.v0.models.DisputeAuthorizationReference => ({
@@ -11538,6 +11699,11 @@ const factories = {
11538
11699
  id: factories.string(),
11539
11700
  }),
11540
11701
 
11702
+ 'io.flow.internal.v0.models.dispute_detail': (): io.flow.internal.v0.models.DisputeDetail => ({
11703
+ authorization: factories['io.flow.internal.v0.models.search_authorization'](),
11704
+ dispute: factories['io.flow.internal.v0.models.dispute'](),
11705
+ }),
11706
+
11541
11707
  'io.flow.internal.v0.models.dispute_details_adyen': (): io.flow.internal.v0.models.DisputeDetailsAdyen => ({
11542
11708
  discriminator: 'adyen',
11543
11709
  psp_reference: factories.string(),
@@ -11589,6 +11755,13 @@ const factories = {
11589
11755
  id: factories.string(),
11590
11756
  }),
11591
11757
 
11758
+ 'io.flow.internal.v0.models.dispute_override_update_form': (): io.flow.internal.v0.models.DisputeOverrideUpdateForm => ({
11759
+ billable: factories['io.flow.internal.v0.enums.dispute_billable'](),
11760
+ reporting_category: factories['io.flow.internal.v0.enums.dispute_reporting_category'](),
11761
+ category: factories['io.flow.internal.v0.enums.dispute_category'](),
11762
+ status: factories['io.flow.internal.v0.enums.dispute_status'](),
11763
+ }),
11764
+
11592
11765
  'io.flow.internal.v0.models.dispute_status_form': (): io.flow.internal.v0.models.DisputeStatusForm => ({
11593
11766
  status: factories['io.flow.internal.v0.enums.dispute_status'](),
11594
11767
  }),
@@ -12173,6 +12346,7 @@ const factories = {
12173
12346
  description: factories.string(),
12174
12347
  order_number: factories.string(),
12175
12348
  raw_carrier_event_code: factories.string(),
12349
+ aggregator_status_code: factories.string(),
12176
12350
  created_at: factories.date_time_iso_8601(),
12177
12351
  }),
12178
12352
 
@@ -12942,6 +13116,29 @@ const factories = {
12942
13116
  id: factories.string(),
12943
13117
  }),
12944
13118
 
13119
+ 'io.flow.internal.v0.models.fulfillment_fallbacks': (): io.flow.internal.v0.models.FulfillmentFallbacks => ({
13120
+ id: factories.string(),
13121
+ packaging: arrayOf(() => factories['io.flow.fulfillment.v0.models.packaging']()),
13122
+ contact: factories['io.flow.common.v0.models.contact'](),
13123
+ location: factories['io.flow.common.v0.models.address'](),
13124
+ }),
13125
+
13126
+ 'io.flow.internal.v0.models.fulfillment_fallbacks_deleted': (): io.flow.internal.v0.models.FulfillmentFallbacksDeleted => ({
13127
+ discriminator: 'fulfillment_fallbacks_deleted',
13128
+ event_id: factories.string(),
13129
+ timestamp: factories.date_time_iso_8601(),
13130
+ organization: factories.string(),
13131
+ id: factories.string(),
13132
+ }),
13133
+
13134
+ 'io.flow.internal.v0.models.fulfillment_fallbacks_upserted': (): io.flow.internal.v0.models.FulfillmentFallbacksUpserted => ({
13135
+ discriminator: 'fulfillment_fallbacks_upserted',
13136
+ event_id: factories.string(),
13137
+ timestamp: factories.date_time_iso_8601(),
13138
+ organization: factories.string(),
13139
+ fulfillment_fallbacks: factories['io.flow.internal.v0.models.fulfillment_fallbacks'](),
13140
+ }),
13141
+
12945
13142
  'io.flow.internal.v0.models.fulfillment_internal_experience_reference': (): io.flow.internal.v0.models.FulfillmentInternalExperienceReference => ({
12946
13143
  id: factories.string(),
12947
13144
  key: factories.string(),
@@ -14095,6 +14292,24 @@ const factories = {
14095
14292
  label_request_error: factories['io.flow.internal.v0.models.label_request_error'](),
14096
14293
  }),
14097
14294
 
14295
+ 'io.flow.internal.v0.models.label_request_result': (): io.flow.internal.v0.models.LabelRequestResult => ({
14296
+ id: factories.string(),
14297
+ created_at: factories.date_time_iso_8601(),
14298
+ state: factories['io.flow.internal.v0.enums.label_request_result_state'](),
14299
+ organization_id: factories.string(),
14300
+ order_number: factories.string(),
14301
+ label_request_method: factories['io.flow.label.v0.enums.label_request_method'](),
14302
+ carrier_id: factories.string(),
14303
+ carrier_tracking_number: factories.string(),
14304
+ url: factories.string(),
14305
+ error: factories.string(),
14306
+ suggested_responsibility: factories['io.flow.internal.v0.enums.label_request_error_handling_responsibility'](),
14307
+ origin_country: factories.string(),
14308
+ destination_country: factories.string(),
14309
+ reference_id: factories.string(),
14310
+ logistics_integration_provider: factories.string(),
14311
+ }),
14312
+
14098
14313
  'io.flow.internal.v0.models.label_summary': (): io.flow.internal.v0.models.LabelSummary => ({
14099
14314
  id: factories.string(),
14100
14315
  commercial_invoice: factories.string(),
@@ -15050,6 +15265,20 @@ const factories = {
15050
15265
  merchant_guid_assignment: factories['io.flow.internal.v0.models.merchant_guid_assignment'](),
15051
15266
  }),
15052
15267
 
15268
+ 'io.flow.internal.v0.models.merchant_hub_override': (): io.flow.internal.v0.models.MerchantHubOverride => ({
15269
+ id: factories.string(),
15270
+ organization_id: factories.string(),
15271
+ code: factories.string(),
15272
+ contact: factories['io.flow.common.v0.models.contact'](),
15273
+ location: factories['io.flow.common.v0.models.address'](),
15274
+ }),
15275
+
15276
+ 'io.flow.internal.v0.models.merchant_hub_override_form': (): io.flow.internal.v0.models.MerchantHubOverrideForm => ({
15277
+ code: factories.string(),
15278
+ contact: factories['io.flow.common.v0.models.contact'](),
15279
+ location: factories['io.flow.common.v0.models.address'](),
15280
+ }),
15281
+
15053
15282
  'io.flow.internal.v0.models.merchant_of_record_entity_settings': (): io.flow.internal.v0.models.MerchantOfRecordEntitySettings => ({
15054
15283
  id: factories.string(),
15055
15284
  merchant_of_record_entity: factories['io.flow.common.v0.models.merchant_of_record_entity'](),
@@ -15197,6 +15426,12 @@ const factories = {
15197
15426
  percent: factories.decimal(),
15198
15427
  }),
15199
15428
 
15429
+ 'io.flow.internal.v0.models.negative_debit_metrics': (): io.flow.internal.v0.models.NegativeDebitMetrics => ({
15430
+ current_attempt: factories['io.flow.internal.v0.models.attempt_statistics'](),
15431
+ second_attempt: factories['io.flow.internal.v0.models.attempt_statistics'](),
15432
+ third_attempt: factories['io.flow.internal.v0.models.attempt_statistics'](),
15433
+ }),
15434
+
15200
15435
  'io.flow.internal.v0.models.next_billing_statement': (): io.flow.internal.v0.models.NextBillingStatement => ({
15201
15436
  date: factories.date_time_iso_8601(),
15202
15437
  amount: factories['io.flow.common.v0.models.price'](),
@@ -15483,6 +15718,7 @@ const factories = {
15483
15718
  created_at: factories.date_time_iso_8601(),
15484
15719
  updated_at: factories.date_time_iso_8601(),
15485
15720
  shopify_order_id: factories.string(),
15721
+ disputes: arrayOf(() => factories['io.flow.internal.v0.models.dispute_detail']()),
15486
15722
  }),
15487
15723
 
15488
15724
  'io.flow.internal.v0.models.order_fulfillment_deleted': (): io.flow.internal.v0.models.OrderFulfillmentDeleted => ({
@@ -16373,6 +16609,13 @@ const factories = {
16373
16609
  partner_organization_settings: factories['io.flow.internal.v0.models.partner_organization_settings'](),
16374
16610
  }),
16375
16611
 
16612
+ 'io.flow.internal.v0.models.partner_request': (): io.flow.internal.v0.models.PartnerRequest => ({
16613
+ id: factories.string(),
16614
+ partner_id: factories.string(),
16615
+ organization_id: factories.string(),
16616
+ request_body: factories.json(),
16617
+ }),
16618
+
16376
16619
  'io.flow.internal.v0.models.passphrase': (): io.flow.internal.v0.models.Passphrase => ({
16377
16620
  id: factories.string(),
16378
16621
  tribe: factories['io.flow.internal.v0.models.tribe'](),
@@ -16945,6 +17188,11 @@ const factories = {
16945
17188
  next_product: factories['io.flow.internal.v0.models.classification_product_id'](),
16946
17189
  }),
16947
17190
 
17191
+ 'io.flow.internal.v0.models.product_currencies': (): io.flow.internal.v0.models.ProductCurrencies => ({
17192
+ transaction: factories.string(),
17193
+ destination: factories.string(),
17194
+ }),
17195
+
16948
17196
  'io.flow.internal.v0.models.product_detail_settings_form': (): io.flow.internal.v0.models.ProductDetailSettingsForm => ({
16949
17197
  keys: arrayOf(() => factories.string()),
16950
17198
  }),
@@ -16974,6 +17222,14 @@ const factories = {
16974
17222
  ),
16975
17223
  }),
16976
17224
 
17225
+ 'io.flow.internal.v0.models.product_record': (): io.flow.internal.v0.models.ProductRecord => ({
17226
+ organization_id: factories.string(),
17227
+ order_number: factories.string(),
17228
+ fulfillment_id: factories.string(),
17229
+ currencies: factories['io.flow.internal.v0.models.product_currencies'](),
17230
+ products: arrayOf(() => factories['io.flow.internal.v0.models.product_transaction']()),
17231
+ }),
17232
+
16977
17233
  'io.flow.internal.v0.models.product_restriction_result_validation_error': (): io.flow.internal.v0.models.ProductRestrictionResultValidationError => ({
16978
17234
  message: factories.string(),
16979
17235
  reason: factories.string(),
@@ -17022,6 +17278,12 @@ const factories = {
17022
17278
  ),
17023
17279
  }),
17024
17280
 
17281
+ 'io.flow.internal.v0.models.product_transaction': (): io.flow.internal.v0.models.ProductTransaction => ({
17282
+ transaction_amount: factories.decimal(),
17283
+ destination_amount: factories.decimal(),
17284
+ quantity: factories.long(),
17285
+ }),
17286
+
17025
17287
  'io.flow.internal.v0.models.profit': (): io.flow.internal.v0.models.Profit => ({
17026
17288
  key: factories['io.flow.internal.v0.enums.profit_stream_key'](),
17027
17289
  principal: factories['io.flow.internal.v0.models.principal'](),
@@ -17096,6 +17358,21 @@ const factories = {
17096
17358
  created_at: factories.date_time_iso_8601(),
17097
17359
  }),
17098
17360
 
17361
+ 'io.flow.internal.v0.models.public_hub': (): io.flow.internal.v0.models.PublicHub => ({
17362
+ id: factories.string(),
17363
+ code: factories.string(),
17364
+ third_party_logistics_reference: factories.string(),
17365
+ contact: factories['io.flow.common.v0.models.contact'](),
17366
+ location: factories['io.flow.common.v0.models.address'](),
17367
+ }),
17368
+
17369
+ 'io.flow.internal.v0.models.public_hub_form': (): io.flow.internal.v0.models.PublicHubForm => ({
17370
+ code: factories.string(),
17371
+ third_party_logistics_reference: factories.string(),
17372
+ contact: factories['io.flow.common.v0.models.contact'](),
17373
+ location: factories['io.flow.common.v0.models.address'](),
17374
+ }),
17375
+
17099
17376
  'io.flow.internal.v0.models.quote': (): io.flow.internal.v0.models.Quote => ({
17100
17377
  id: factories.string(),
17101
17378
  base: factories.string(),
@@ -17663,6 +17940,7 @@ const factories = {
17663
17940
  'io.flow.internal.v0.models.reporting_conversion_rates': (): io.flow.internal.v0.models.ReportingConversionRates => ({
17664
17941
  merchant: factories.decimal(),
17665
17942
  entity: factories.decimal(),
17943
+ destination_country: factories.decimal(),
17666
17944
  usd: factories.decimal(),
17667
17945
  eur: factories.decimal(),
17668
17946
  }),
@@ -17676,6 +17954,7 @@ const factories = {
17676
17954
  transaction: factories.string(),
17677
17955
  merchant: factories.string(),
17678
17956
  entity: factories.string(),
17957
+ destination_country: factories.string(),
17679
17958
  }),
17680
17959
 
17681
17960
  'io.flow.internal.v0.models.reporting_debug': (): io.flow.internal.v0.models.ReportingDebug => ({
@@ -17797,6 +18076,7 @@ const factories = {
17797
18076
  transaction: factories.decimal(),
17798
18077
  merchant: factories.decimal(),
17799
18078
  entity: factories.decimal(),
18079
+ destination_country: factories.decimal(),
17800
18080
  usd: factories.decimal(),
17801
18081
  eur: factories.decimal(),
17802
18082
  }),
@@ -20080,6 +20360,31 @@ const factories = {
20080
20360
  tracking_label: factories['io.flow.internal.v0.models.export_tracking_label'](),
20081
20361
  }),
20082
20362
 
20363
+ 'io.flow.internal.v0.models.tracking_label_dimensions': (): io.flow.internal.v0.models.TrackingLabelDimensions => ({
20364
+ id: factories.string(),
20365
+ organization_id: factories.string(),
20366
+ tracking_label_id: factories.string(),
20367
+ source: factories['io.flow.internal.v0.enums.tracking_label_dimensions_source'](),
20368
+ created_at: factories.date_time_iso_8601(),
20369
+ dimensions: factories['io.flow.common.v0.models.dimensions'](),
20370
+ }),
20371
+
20372
+ 'io.flow.internal.v0.models.tracking_label_dimensions_deleted': (): io.flow.internal.v0.models.TrackingLabelDimensionsDeleted => ({
20373
+ discriminator: 'tracking_label_dimensions_deleted',
20374
+ event_id: factories.string(),
20375
+ timestamp: factories.date_time_iso_8601(),
20376
+ organization: factories.string(),
20377
+ id: factories.string(),
20378
+ }),
20379
+
20380
+ 'io.flow.internal.v0.models.tracking_label_dimensions_upserted': (): io.flow.internal.v0.models.TrackingLabelDimensionsUpserted => ({
20381
+ discriminator: 'tracking_label_dimensions_upserted',
20382
+ event_id: factories.string(),
20383
+ timestamp: factories.date_time_iso_8601(),
20384
+ organization: factories.string(),
20385
+ tracking_label_dimensions: factories['io.flow.internal.v0.models.tracking_label_dimensions'](),
20386
+ }),
20387
+
20083
20388
  'io.flow.internal.v0.models.tracking_label_event_deleted_v2': (): io.flow.internal.v0.models.TrackingLabelEventDeletedV2 => ({
20084
20389
  discriminator: 'tracking_label_event_deleted_v2',
20085
20390
  event_id: factories.string(),
@@ -20706,6 +21011,8 @@ const factories = {
20706
21011
 
20707
21012
  'io.flow.internal.v0.unions.event': (): io.flow.internal.v0.unions.Event => {
20708
21013
  const f = faker.helpers.arrayElement([
21014
+ () => factories['io.flow.internal.v0.models.adjusted_estimates_upserted'](),
21015
+ () => factories['io.flow.internal.v0.models.adjusted_estimates_deleted'](),
20709
21016
  () => factories['io.flow.internal.v0.models.adyen_authorization_deleted'](),
20710
21017
  () => factories['io.flow.internal.v0.models.adyen_authorization_upserted'](),
20711
21018
  () => factories['io.flow.internal.v0.models.adyen_cancel_deleted'](),
@@ -20714,6 +21021,8 @@ const factories = {
20714
21021
  () => factories['io.flow.internal.v0.models.adyen_capture_upserted'](),
20715
21022
  () => factories['io.flow.internal.v0.models.adyen_refund_deleted'](),
20716
21023
  () => factories['io.flow.internal.v0.models.adyen_refund_upserted'](),
21024
+ () => factories['io.flow.internal.v0.models.adyen_dispute_upserted'](),
21025
+ () => factories['io.flow.internal.v0.models.adyen_dispute_deleted'](),
20717
21026
  () => factories['io.flow.internal.v0.models.index_assignment_upserted'](),
20718
21027
  () => factories['io.flow.internal.v0.models.index_assignment_deleted'](),
20719
21028
  () => factories['io.flow.internal.v0.models.fulfillment_upserted'](),
@@ -20787,6 +21096,7 @@ const factories = {
20787
21096
  () => factories['io.flow.internal.v0.models.catalog_settings_deleted'](),
20788
21097
  () => factories['io.flow.internal.v0.models.channel_order_acceptance_upserted'](),
20789
21098
  () => factories['io.flow.internal.v0.models.channel_order_acceptance_deleted'](),
21099
+ () => factories['io.flow.internal.v0.models.channel_order_acceptance_failed'](),
20790
21100
  () => factories['io.flow.internal.v0.models.checkout_configuration_upserted'](),
20791
21101
  () => factories['io.flow.internal.v0.models.checkout_configuration_deleted'](),
20792
21102
  () => factories['io.flow.internal.v0.models.commercial_invoice_internal_upserted'](),
@@ -20879,6 +21189,8 @@ const factories = {
20879
21189
  () => factories['io.flow.internal.v0.models.ftp_file_to_process_uploaded'](),
20880
21190
  () => factories['io.flow.internal.v0.models.center_defaults_upserted'](),
20881
21191
  () => factories['io.flow.internal.v0.models.center_defaults_deleted'](),
21192
+ () => factories['io.flow.internal.v0.models.fulfillment_fallbacks_upserted'](),
21193
+ () => factories['io.flow.internal.v0.models.fulfillment_fallbacks_deleted'](),
20882
21194
  () => factories['io.flow.internal.v0.models.pregenerated_request_event'](),
20883
21195
  () => factories['io.flow.internal.v0.models.quote_upserted'](),
20884
21196
  () => factories['io.flow.internal.v0.models.quote_deleted'](),
@@ -21076,6 +21388,8 @@ const factories = {
21076
21388
  () => factories['io.flow.internal.v0.models.tracking_assurance_analysis_deleted'](),
21077
21389
  () => factories['io.flow.internal.v0.models.tracking_assurance_job_upserted'](),
21078
21390
  () => factories['io.flow.internal.v0.models.tracking_assurance_job_deleted'](),
21391
+ () => factories['io.flow.internal.v0.models.tracking_label_dimensions_upserted'](),
21392
+ () => factories['io.flow.internal.v0.models.tracking_label_dimensions_deleted'](),
21079
21393
  () => factories['io.flow.internal.v0.models.tracking_request_upserted'](),
21080
21394
  () => factories['io.flow.internal.v0.models.tracking_response_upserted'](),
21081
21395
  () => factories['io.flow.internal.v0.models.user_upserted_v2'](),
@@ -21938,6 +22252,8 @@ const factories = {
21938
22252
  'package': factories['io.flow.label.v0.models.shipping_label_package'](),
21939
22253
  origin: factories['io.flow.fulfillment.v0.models.shipping_address'](),
21940
22254
  direction: factories['io.flow.label.v0.enums.direction'](),
22255
+ reference_id: factories.string(),
22256
+ hub_code: factories.string(),
21941
22257
  }),
21942
22258
 
21943
22259
  'io.flow.label.v0.models.crossdock_shipment': (): io.flow.label.v0.models.CrossdockShipment => ({
@@ -21960,6 +22276,7 @@ const factories = {
21960
22276
  service: factories.string(),
21961
22277
  shipment_recipient: factories['io.flow.label.v0.enums.shipment_recipient'](),
21962
22278
  package_dimensions_source: factories['io.flow.label.v0.enums.package_dimensions_source'](),
22279
+ reference_id: factories.string(),
21963
22280
  }),
21964
22281
 
21965
22282
  'io.flow.label.v0.models.detailed_shipping_notification_form': (): io.flow.label.v0.models.DetailedShippingNotificationForm => ({
@@ -22138,6 +22455,7 @@ const factories = {
22138
22455
  items: arrayOf(() => factories['io.flow.common.v0.models.line_item_form']()),
22139
22456
  center_key: factories.string(),
22140
22457
  direction: factories['io.flow.label.v0.enums.direction'](),
22458
+ reference_id: factories.string(),
22141
22459
  }),
22142
22460
 
22143
22461
  'io.flow.label.v0.models.summary_shipping_notification_form': (): io.flow.label.v0.models.SummaryShippingNotificationForm => ({
@@ -29043,6 +29361,7 @@ const factories = {
29043
29361
  location_id: factories.long(),
29044
29362
  subtotal: factories.decimal(),
29045
29363
  total_tax: factories.decimal(),
29364
+ total_tax_set: factories['io.flow.shopify.markets.v0.models.shopify_order_money_set'](),
29046
29365
  }),
29047
29366
 
29048
29367
  'io.flow.shopify.markets.v0.models.shopify_order_shipping_line': (): io.flow.shopify.markets.v0.models.ShopifyOrderShippingLine => ({
@@ -31426,6 +31745,10 @@ const factories = {
31426
31745
  in_transit: factories['io.flow.tracking.v0.models.label_tracking_summary_update'](),
31427
31746
  delivered: factories['io.flow.tracking.v0.models.label_tracking_summary_update'](),
31428
31747
  rejected: factories['io.flow.tracking.v0.models.label_tracking_summary_update'](),
31748
+ returned: factories['io.flow.tracking.v0.models.label_tracking_summary_update'](),
31749
+ crossed_border: factories['io.flow.tracking.v0.models.label_tracking_summary_update'](),
31750
+ destroyed: factories['io.flow.tracking.v0.models.label_tracking_summary_update'](),
31751
+ return_reversal: factories['io.flow.tracking.v0.models.label_tracking_summary_update'](),
31429
31752
  }),
31430
31753
 
31431
31754
  'io.flow.tracking.v0.models.label_tracking_summary_update': (): io.flow.tracking.v0.models.LabelTrackingSummaryUpdate => ({
@@ -31650,6 +31973,9 @@ export const makeAddressConfigurationProvinceSetting = () => factories['io.flow.
31650
31973
  export const makeAddressConfigurationSetting = () => factories['io.flow.internal.v0.models.address_configuration_setting']();
31651
31974
  export const makeAddressConfigurationSettingForm = () => factories['io.flow.internal.v0.models.address_configuration_setting_form']();
31652
31975
  export const makeAddressConfigurationSettingProvinceCode = () => factories['io.flow.internal.v0.enums.address_configuration_setting_province_code']();
31976
+ export const makeAdjustedEstimates = () => factories['io.flow.internal.v0.models.adjusted_estimates']();
31977
+ export const makeAdjustedEstimatesDeleted = () => factories['io.flow.internal.v0.models.adjusted_estimates_deleted']();
31978
+ export const makeAdjustedEstimatesUpserted = () => factories['io.flow.internal.v0.models.adjusted_estimates_upserted']();
31653
31979
  export const makeAdjustmentAmount = () => factories['io.flow.internal.v0.unions.adjustment_amount']();
31654
31980
  export const makeAdjustmentAmountFixed = () => factories['io.flow.internal.v0.models.adjustment_amount_fixed']();
31655
31981
  export const makeAdjustmentAmountPercentage = () => factories['io.flow.internal.v0.models.adjustment_amount_percentage']();
@@ -31672,10 +31998,13 @@ export const makeAdyenCancelDeleted = () => factories['io.flow.internal.v0.model
31672
31998
  export const makeAdyenCancelUpserted = () => factories['io.flow.internal.v0.models.adyen_cancel_upserted']();
31673
31999
  export const makeAdyenCaptureDeleted = () => factories['io.flow.internal.v0.models.adyen_capture_deleted']();
31674
32000
  export const makeAdyenCaptureUpserted = () => factories['io.flow.internal.v0.models.adyen_capture_upserted']();
32001
+ export const makeAdyenDisputeDeleted = () => factories['io.flow.internal.v0.models.adyen_dispute_deleted']();
32002
+ export const makeAdyenDisputeUpserted = () => factories['io.flow.internal.v0.models.adyen_dispute_upserted']();
31675
32003
  export const makeAdyenIntegrationType = () => factories['io.flow.internal.v0.enums.adyen_integration_type']();
31676
32004
  export const makeAdyenInternalAuthorization = () => factories['io.flow.internal.v0.models.adyen_internal_authorization']();
31677
32005
  export const makeAdyenInternalCancel = () => factories['io.flow.internal.v0.models.adyen_internal_cancel']();
31678
32006
  export const makeAdyenInternalCapture = () => factories['io.flow.internal.v0.models.adyen_internal_capture']();
32007
+ export const makeAdyenInternalDispute = () => factories['io.flow.internal.v0.models.adyen_internal_dispute']();
31679
32008
  export const makeAdyenInternalRefund = () => factories['io.flow.internal.v0.models.adyen_internal_refund']();
31680
32009
  export const makeAdyenMerchant = () => factories['io.flow.internal.v0.models.adyen_merchant']();
31681
32010
  export const makeAdyenMerchantAccount = () => factories['io.flow.internal.v0.models.adyen_merchant_account']();
@@ -31717,6 +32046,7 @@ export const makeApiCallReferenceId = () => factories['io.flow.internal.v0.enums
31717
32046
  export const makeApmContent = () => factories['io.flow.internal.v0.models.apm_content']();
31718
32047
  export const makeApplePayAuthorizationPayload = () => factories['io.flow.internal.v0.models.apple_pay_authorization_payload']();
31719
32048
  export const makeApplyAtValueForm = () => factories['io.flow.internal.v0.models.apply_at_value_form']();
32049
+ export const makeAttemptStatistics = () => factories['io.flow.internal.v0.models.attempt_statistics']();
31720
32050
  export const makeAttributeLabel = () => factories['io.flow.internal.v0.models.attribute_label']();
31721
32051
  export const makeAuthenticationForm = () => factories['io.flow.internal.v0.models.authentication_form']();
31722
32052
  export const makeAuthorizationBundle = () => factories['io.flow.internal.v0.models.authorization_bundle']();
@@ -31887,6 +32217,9 @@ export const makeChannelOrderAcceptance = () => factories['io.flow.internal.v0.m
31887
32217
  export const makeChannelOrderAcceptanceDeleted = () => factories['io.flow.internal.v0.models.channel_order_acceptance_deleted']();
31888
32218
  export const makeChannelOrderAcceptanceDetails = () => factories['io.flow.internal.v0.models.channel_order_acceptance_details']();
31889
32219
  export const makeChannelOrderAcceptanceErrorAction = () => factories['io.flow.internal.v0.enums.channel_order_acceptance_error_action']();
32220
+ export const makeChannelOrderAcceptanceFailed = () => factories['io.flow.internal.v0.models.channel_order_acceptance_failed']();
32221
+ export const makeChannelOrderAcceptanceFailure = () => factories['io.flow.internal.v0.models.channel_order_acceptance_failure']();
32222
+ export const makeChannelOrderAcceptanceFailureReasonCode = () => factories['io.flow.internal.v0.enums.channel_order_acceptance_failure_reason_code']();
31890
32223
  export const makeChannelOrderAcceptanceForm = () => factories['io.flow.internal.v0.models.channel_order_acceptance_form']();
31891
32224
  export const makeChannelOrderAcceptanceNextActionFrom = () => factories['io.flow.internal.v0.enums.channel_order_acceptance_next_action_from']();
31892
32225
  export const makeChannelOrderAcceptanceReason = () => factories['io.flow.internal.v0.models.channel_order_acceptance_reason']();
@@ -31982,6 +32315,8 @@ export const makeClassificationFormWrapper = () => factories['io.flow.internal.v
31982
32315
  export const makeClassificationItem = () => factories['io.flow.internal.v0.models.classification_item']();
31983
32316
  export const makeClassificationJudgementForm = () => factories['io.flow.internal.v0.unions.classification_judgement_form']();
31984
32317
  export const makeClassificationLabelAttribute = () => factories['io.flow.internal.v0.unions.classification_label_attribute']();
32318
+ export const makeClassificationMerchant = () => factories['io.flow.internal.v0.models.classification_merchant']();
32319
+ export const makeClassificationMerchantEnvelope = () => factories['io.flow.internal.v0.models.classification_merchant_envelope']();
31985
32320
  export const makeClassificationPlatform = () => factories['io.flow.internal.v0.enums.classification_platform']();
31986
32321
  export const makeClassificationProduct = () => factories['io.flow.internal.v0.models.classification_product']();
31987
32322
  export const makeClassificationProductHarmonization = () => factories['io.flow.internal.v0.models.classification_product_harmonization']();
@@ -32119,7 +32454,9 @@ export const makeDispute = () => factories['io.flow.internal.v0.models.dispute']
32119
32454
  export const makeDisputeAuthorizationReference = () => factories['io.flow.internal.v0.models.dispute_authorization_reference']();
32120
32455
  export const makeDisputeBillable = () => factories['io.flow.internal.v0.enums.dispute_billable']();
32121
32456
  export const makeDisputeCategory = () => factories['io.flow.internal.v0.enums.dispute_category']();
32457
+ export const makeDisputeDefenseOutcome = () => factories['io.flow.internal.v0.enums.dispute_defense_outcome']();
32122
32458
  export const makeDisputeDeleted = () => factories['io.flow.internal.v0.models.dispute_deleted']();
32459
+ export const makeDisputeDetail = () => factories['io.flow.internal.v0.models.dispute_detail']();
32123
32460
  export const makeDisputeDetails = () => factories['io.flow.internal.v0.unions.dispute_details']();
32124
32461
  export const makeDisputeDetailsAdyen = () => factories['io.flow.internal.v0.models.dispute_details_adyen']();
32125
32462
  export const makeDisputeDetailsPaypal = () => factories['io.flow.internal.v0.models.dispute_details_paypal']();
@@ -32134,6 +32471,7 @@ export const makeDisputeImportType = () => factories['io.flow.internal.v0.enums.
32134
32471
  export const makeDisputeLiability = () => factories['io.flow.internal.v0.enums.dispute_liability']();
32135
32472
  export const makeDisputeOrderReference = () => factories['io.flow.internal.v0.models.dispute_order_reference']();
32136
32473
  export const makeDisputeOrganizationReference = () => factories['io.flow.internal.v0.models.dispute_organization_reference']();
32474
+ export const makeDisputeOverrideUpdateForm = () => factories['io.flow.internal.v0.models.dispute_override_update_form']();
32137
32475
  export const makeDisputeProcessor = () => factories['io.flow.internal.v0.enums.dispute_processor']();
32138
32476
  export const makeDisputeReportingCategory = () => factories['io.flow.internal.v0.enums.dispute_reporting_category']();
32139
32477
  export const makeDisputeStatus = () => factories['io.flow.internal.v0.enums.dispute_status']();
@@ -32334,6 +32672,9 @@ export const makeFulfillmentBusiness = () => factories['io.flow.internal.v0.mode
32334
32672
  export const makeFulfillmentCancel = () => factories['io.flow.internal.v0.models.fulfillment_cancel']();
32335
32673
  export const makeFulfillmentCarrier = () => factories['io.flow.internal.v0.models.fulfillment_carrier']();
32336
32674
  export const makeFulfillmentDeleted = () => factories['io.flow.internal.v0.models.fulfillment_deleted']();
32675
+ export const makeFulfillmentFallbacks = () => factories['io.flow.internal.v0.models.fulfillment_fallbacks']();
32676
+ export const makeFulfillmentFallbacksDeleted = () => factories['io.flow.internal.v0.models.fulfillment_fallbacks_deleted']();
32677
+ export const makeFulfillmentFallbacksUpserted = () => factories['io.flow.internal.v0.models.fulfillment_fallbacks_upserted']();
32337
32678
  export const makeFulfillmentInternalExperienceReference = () => factories['io.flow.internal.v0.models.fulfillment_internal_experience_reference']();
32338
32679
  export const makeFulfillmentOrigin = () => factories['io.flow.internal.v0.models.fulfillment_origin']();
32339
32680
  export const makeFulfillmentProof = () => factories['io.flow.internal.v0.unions.fulfillment_proof']();
@@ -32519,6 +32860,9 @@ export const makeLabelRequestError = () => factories['io.flow.internal.v0.models
32519
32860
  export const makeLabelRequestErrorDeleted = () => factories['io.flow.internal.v0.models.label_request_error_deleted']();
32520
32861
  export const makeLabelRequestErrorHandlingResponsibility = () => factories['io.flow.internal.v0.enums.label_request_error_handling_responsibility']();
32521
32862
  export const makeLabelRequestErrorUpserted = () => factories['io.flow.internal.v0.models.label_request_error_upserted']();
32863
+ export const makeLabelRequestResult = () => factories['io.flow.internal.v0.models.label_request_result']();
32864
+ export const makeLabelRequestResultOrganizationType = () => factories['io.flow.internal.v0.enums.label_request_result_organization_type']();
32865
+ export const makeLabelRequestResultState = () => factories['io.flow.internal.v0.enums.label_request_result_state']();
32522
32866
  export const makeLabelSummary = () => factories['io.flow.internal.v0.models.label_summary']();
32523
32867
  export const makeLabelSurchargeForm = () => factories['io.flow.internal.v0.models.label_surcharge_form']();
32524
32868
  export const makeLabelSurchargeSingleForm = () => factories['io.flow.internal.v0.models.label_surcharge_single_form']();
@@ -32666,6 +33010,8 @@ export const makeMerchantFees = () => factories['io.flow.internal.v0.models.merc
32666
33010
  export const makeMerchantGuidAssignment = () => factories['io.flow.internal.v0.models.merchant_guid_assignment']();
32667
33011
  export const makeMerchantGuidAssignmentDeleted = () => factories['io.flow.internal.v0.models.merchant_guid_assignment_deleted']();
32668
33012
  export const makeMerchantGuidAssignmentUpserted = () => factories['io.flow.internal.v0.models.merchant_guid_assignment_upserted']();
33013
+ export const makeMerchantHubOverride = () => factories['io.flow.internal.v0.models.merchant_hub_override']();
33014
+ export const makeMerchantHubOverrideForm = () => factories['io.flow.internal.v0.models.merchant_hub_override_form']();
32669
33015
  export const makeMerchantOfRecordEntitySettings = () => factories['io.flow.internal.v0.models.merchant_of_record_entity_settings']();
32670
33016
  export const makeMerchantOfRecordEntitySettingsForm = () => factories['io.flow.internal.v0.models.merchant_of_record_entity_settings_form']();
32671
33017
  export const makeMerchantSearchResult = () => factories['io.flow.internal.v0.models.merchant_search_result']();
@@ -32690,6 +33036,7 @@ export const makeMixedBagWeight = () => factories['io.flow.internal.v0.enums.mix
32690
33036
  export const makeMoneyPercentage = () => factories['io.flow.internal.v0.models.money_percentage']();
32691
33037
  export const makeMoneyRule = () => factories['io.flow.internal.v0.unions.money_rule']();
32692
33038
  export const makeNatureOfSale = () => factories['io.flow.internal.v0.enums.nature_of_sale']();
33039
+ export const makeNegativeDebitMetrics = () => factories['io.flow.internal.v0.models.negative_debit_metrics']();
32693
33040
  export const makeNextBillingStatement = () => factories['io.flow.internal.v0.models.next_billing_statement']();
32694
33041
  export const makeNoCalculatedTaxAmount = () => factories['io.flow.internal.v0.models.no_calculated_tax_amount']();
32695
33042
  export const makeNoClassificationForm = () => factories['io.flow.internal.v0.models.no_classification_form']();
@@ -32870,6 +33217,7 @@ export const makePartnerOrganizationSettings = () => factories['io.flow.internal
32870
33217
  export const makePartnerOrganizationSettingsDeleted = () => factories['io.flow.internal.v0.models.partner_organization_settings_deleted']();
32871
33218
  export const makePartnerOrganizationSettingsForm = () => factories['io.flow.internal.v0.models.partner_organization_settings_form']();
32872
33219
  export const makePartnerOrganizationSettingsUpserted = () => factories['io.flow.internal.v0.models.partner_organization_settings_upserted']();
33220
+ export const makePartnerRequest = () => factories['io.flow.internal.v0.models.partner_request']();
32873
33221
  export const makeParty = () => factories['io.flow.internal.v0.enums.party']();
32874
33222
  export const makePassphrase = () => factories['io.flow.internal.v0.models.passphrase']();
32875
33223
  export const makePassphraseForm = () => factories['io.flow.internal.v0.models.passphrase_form']();
@@ -32957,17 +33305,20 @@ export const makeProductClassification = () => factories['io.flow.internal.v0.mo
32957
33305
  export const makeProductClassificationForm = () => factories['io.flow.internal.v0.models.product_classification_form']();
32958
33306
  export const makeProductClassificationJudgementForm = () => factories['io.flow.internal.v0.models.product_classification_judgement_form']();
32959
33307
  export const makeProductClassificationResult = () => factories['io.flow.internal.v0.models.product_classification_result']();
33308
+ export const makeProductCurrencies = () => factories['io.flow.internal.v0.models.product_currencies']();
32960
33309
  export const makeProductDetailSettingsForm = () => factories['io.flow.internal.v0.models.product_detail_settings_form']();
32961
33310
  export const makeProductHarmonization = () => factories['io.flow.internal.v0.models.product_harmonization']();
32962
33311
  export const makeProductHarmonizationForm = () => factories['io.flow.internal.v0.models.product_harmonization_form']();
32963
33312
  export const makeProductLabels = () => factories['io.flow.internal.v0.models.product_labels']();
32964
33313
  export const makeProductListSettingsForm = () => factories['io.flow.internal.v0.models.product_list_settings_form']();
33314
+ export const makeProductRecord = () => factories['io.flow.internal.v0.models.product_record']();
32965
33315
  export const makeProductRestrictionResultValidationError = () => factories['io.flow.internal.v0.models.product_restriction_result_validation_error']();
32966
33316
  export const makeProductRestrictionRuleDecision = () => factories['io.flow.internal.v0.models.product_restriction_rule_decision']();
32967
33317
  export const makeProductRestrictionRuleDecisionDeleted = () => factories['io.flow.internal.v0.models.product_restriction_rule_decision_deleted']();
32968
33318
  export const makeProductRestrictionRuleDecisionUpserted = () => factories['io.flow.internal.v0.models.product_restriction_rule_decision_upserted']();
32969
33319
  export const makeProductReviewHistory = () => factories['io.flow.internal.v0.models.product_review_history']();
32970
33320
  export const makeProductStatus = () => factories['io.flow.internal.v0.enums.product_status']();
33321
+ export const makeProductTransaction = () => factories['io.flow.internal.v0.models.product_transaction']();
32971
33322
  export const makeProfit = () => factories['io.flow.internal.v0.models.profit']();
32972
33323
  export const makeProfitShare = () => factories['io.flow.internal.v0.models.profit_share']();
32973
33324
  export const makeProfitShareOrderReference = () => factories['io.flow.internal.v0.models.profit_share_order_reference']();
@@ -32987,6 +33338,8 @@ export const makeProofOfPostingOrderCancellation = () => factories['io.flow.inte
32987
33338
  export const makeProofOfPostingOrderCombinedShipment = () => factories['io.flow.internal.v0.models.proof_of_posting_order_combined_shipment']();
32988
33339
  export const makeProofOfPostingShippingNotification = () => factories['io.flow.internal.v0.models.proof_of_posting_shipping_notification']();
32989
33340
  export const makeProofOfPostingTimeElapsed = () => factories['io.flow.internal.v0.models.proof_of_posting_time_elapsed']();
33341
+ export const makePublicHub = () => factories['io.flow.internal.v0.models.public_hub']();
33342
+ export const makePublicHubForm = () => factories['io.flow.internal.v0.models.public_hub_form']();
32990
33343
  export const makeQuote = () => factories['io.flow.internal.v0.models.quote']();
32991
33344
  export const makeQuoteDeleted = () => factories['io.flow.internal.v0.models.quote_deleted']();
32992
33345
  export const makeQuoteRequest = () => factories['io.flow.internal.v0.models.quote_request']();
@@ -33461,6 +33814,10 @@ export const makeTrackingDeleted = () => factories['io.flow.internal.v0.models.t
33461
33814
  export const makeTrackingEvent = () => factories['io.flow.internal.v0.models.tracking_event']();
33462
33815
  export const makeTrackingIntegrationType = () => factories['io.flow.internal.v0.enums.tracking_integration_type']();
33463
33816
  export const makeTrackingLabelDeleted = () => factories['io.flow.internal.v0.models.tracking_label_deleted']();
33817
+ export const makeTrackingLabelDimensions = () => factories['io.flow.internal.v0.models.tracking_label_dimensions']();
33818
+ export const makeTrackingLabelDimensionsDeleted = () => factories['io.flow.internal.v0.models.tracking_label_dimensions_deleted']();
33819
+ export const makeTrackingLabelDimensionsSource = () => factories['io.flow.internal.v0.enums.tracking_label_dimensions_source']();
33820
+ export const makeTrackingLabelDimensionsUpserted = () => factories['io.flow.internal.v0.models.tracking_label_dimensions_upserted']();
33464
33821
  export const makeTrackingLabelEventDeletedV2 = () => factories['io.flow.internal.v0.models.tracking_label_event_deleted_v2']();
33465
33822
  export const makeTrackingLabelEventUpsertedV2 = () => factories['io.flow.internal.v0.models.tracking_label_event_upserted_v2']();
33466
33823
  export const makeTrackingLabelUpserted = () => factories['io.flow.internal.v0.models.tracking_label_upserted']();