@flowio/api-internal-factories 0.0.109 → 0.0.111

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',
@@ -100,6 +111,9 @@ const factories = {
100
111
  'ebanking_FI',
101
112
  'gcash',
102
113
  'giropay',
114
+ 'grabpay_MY',
115
+ 'grabpay_PH',
116
+ 'grabpay_SG',
103
117
  'ideal',
104
118
  'interac',
105
119
  'jcb',
@@ -121,6 +135,7 @@ const factories = {
121
135
  'trustpay',
122
136
  'twint',
123
137
  'unionpay',
138
+ 'vipps',
124
139
  'visa',
125
140
  'wechatpay',
126
141
  'unknowncard',
@@ -293,6 +308,8 @@ const factories = {
293
308
  modificationMerchantReferences: factories.string(),
294
309
  chargebackSchemeCode: factories.string(),
295
310
  defensePeriodEndsAt: factories.date_time_iso_8601(),
311
+ disputeStatus: factories['io.flow.adyen.v0.enums.dispute_status'](),
312
+ defendable: factories.string(),
296
313
  }),
297
314
 
298
315
  'io.flow.adyen.v0.models.error': (): io.flow.adyen.v0.models.Error => ({
@@ -698,6 +715,8 @@ const factories = {
698
715
  'waiting_for_next_payout_date',
699
716
  'waiting_for_tracking_info',
700
717
  'waiting_for_positive_account_balance',
718
+ 'unfulfilled_amount_greater_than_negative_balance',
719
+ 'account_payment_hold',
701
720
  ]),
702
721
 
703
722
  'io.flow.billing.v0.enums.statement_attachment_type': (): io.flow.billing.v0.enums.StatementAttachmentType => faker.helpers.arrayElement(['csv']),
@@ -728,6 +747,7 @@ const factories = {
728
747
  'virtual_card_capture',
729
748
  'virtual_card_refund',
730
749
  'failed_payout',
750
+ 'tax_refund',
731
751
  ]),
732
752
 
733
753
  'io.flow.billing.v0.enums.trueup_source': (): io.flow.billing.v0.enums.TrueupSource => faker.helpers.arrayElement(['flow', 'channel', 'dhl-parcel', 'dhl', 'ups']),
@@ -1718,6 +1738,7 @@ const factories = {
1718
1738
  local: factories['io.flow.catalog.v0.models.local'](),
1719
1739
  created_at: factories.date_time_iso_8601(),
1720
1740
  updated_at: factories.date_time_iso_8601(),
1741
+ deleted_at: factories.date_time_iso_8601(),
1721
1742
  }),
1722
1743
 
1723
1744
  'io.flow.catalog.v0.models.item_attributes_patch_form': (): io.flow.catalog.v0.models.ItemAttributesPatchForm => ({
@@ -1735,6 +1756,7 @@ const factories = {
1735
1756
  attributes: objectOf(() => factories.string()),
1736
1757
  dimensions: factories['io.flow.common.v0.models.dimensions'](),
1737
1758
  images: arrayOf(() => factories['io.flow.catalog.v0.models.image_form']()),
1759
+ deleted_at: factories.date_time_iso_8601(),
1738
1760
  }),
1739
1761
 
1740
1762
  'io.flow.catalog.v0.models.item_form_overlay': (): io.flow.catalog.v0.models.ItemFormOverlay => ({
@@ -1748,6 +1770,7 @@ const factories = {
1748
1770
  attributes: objectOf(() => factories.string()),
1749
1771
  dimensions: factories['io.flow.common.v0.models.dimensions'](),
1750
1772
  images: arrayOf(() => factories['io.flow.catalog.v0.models.image_form']()),
1773
+ deleted_at: factories.date_time_iso_8601(),
1751
1774
  }),
1752
1775
 
1753
1776
  'io.flow.catalog.v0.models.item_form_overlay_form': (): io.flow.catalog.v0.models.ItemFormOverlayForm => ({
@@ -1760,6 +1783,7 @@ const factories = {
1760
1783
  attributes: objectOf(() => factories.string()),
1761
1784
  dimensions: factories['io.flow.common.v0.models.dimensions'](),
1762
1785
  images: arrayOf(() => factories['io.flow.catalog.v0.models.image_form']()),
1786
+ deleted_at: factories.date_time_iso_8601(),
1763
1787
  }),
1764
1788
 
1765
1789
  'io.flow.catalog.v0.models.item_price_update_form': (): io.flow.catalog.v0.models.ItemPriceUpdateForm => ({
@@ -3244,6 +3268,12 @@ const factories = {
3244
3268
  display: factories['io.flow.experience.v0.enums.delivered_duty_display_type'](),
3245
3269
  }),
3246
3270
 
3271
+ 'io.flow.experience.v0.models.destination_contact_detail': (): io.flow.experience.v0.models.DestinationContactDetail => ({
3272
+ title: factories.string(),
3273
+ country: factories.string(),
3274
+ import_identifier: factories.string(),
3275
+ }),
3276
+
3247
3277
  'io.flow.experience.v0.models.discount': (): io.flow.experience.v0.models.Discount => ({
3248
3278
  discriminator: 'discount',
3249
3279
  id: factories.string(),
@@ -3623,6 +3653,10 @@ const factories = {
3623
3653
  tax_registration: factories['io.flow.harmonization.v0.models.tax_registration'](),
3624
3654
  geo: factories['io.flow.experience.v0.models.order_geo'](),
3625
3655
  device_details: factories['io.flow.payment.v0.unions.device_details'](),
3656
+
3657
+ destination_contact_details: arrayOf(
3658
+ () => factories['io.flow.experience.v0.models.destination_contact_detail'](),
3659
+ ),
3626
3660
  }),
3627
3661
 
3628
3662
  'io.flow.experience.v0.models.order_address': (): io.flow.experience.v0.models.OrderAddress => ({
@@ -5079,7 +5113,7 @@ const factories = {
5079
5113
  }),
5080
5114
 
5081
5115
  'io.flow.external.paypal.v1.models.canceled_recurring_billing': (): io.flow.external.paypal.v1.models.CanceledRecurringBilling => ({
5082
- expected_refund: factories['io.flow.external.paypal.v1.models.money'](),
5116
+ expected_refund: factories['io.flow.external.paypal.v1.models.dispute_money'](),
5083
5117
  cancellation_details: factories['io.flow.external.paypal.v1.models.cancellation_details'](),
5084
5118
  }),
5085
5119
 
@@ -5098,7 +5132,7 @@ const factories = {
5098
5132
 
5099
5133
  'io.flow.external.paypal.v1.models.credit_not_processed': (): io.flow.external.paypal.v1.models.CreditNotProcessed => ({
5100
5134
  issue_type: factories['io.flow.external.paypal.v1.enums.issue_type'](),
5101
- expected_refund: factories['io.flow.external.paypal.v1.models.money'](),
5135
+ expected_refund: factories['io.flow.external.paypal.v1.models.dispute_money'](),
5102
5136
  cancellation_details: factories['io.flow.external.paypal.v1.models.cancellation_details'](),
5103
5137
  product_details: factories['io.flow.external.paypal.v1.models.product_details'](),
5104
5138
  service_details: factories['io.flow.external.paypal.v1.models.service_details'](),
@@ -5112,7 +5146,7 @@ const factories = {
5112
5146
  disputed_transactions: arrayOf(() => factories['io.flow.external.paypal.v1.models.transaction_info']()),
5113
5147
  reason: factories['io.flow.external.paypal.v1.enums.dispute_reason'](),
5114
5148
  status: factories['io.flow.external.paypal.v1.enums.dispute_status'](),
5115
- dispute_amount: factories['io.flow.external.paypal.v1.models.money'](),
5149
+ dispute_amount: factories['io.flow.external.paypal.v1.models.dispute_money'](),
5116
5150
  fee_policy: factories.object(),
5117
5151
  external_reason_code: factories.string(),
5118
5152
  dispute_outcome: factories['io.flow.external.paypal.v1.models.dispute_outcome'](),
@@ -5131,6 +5165,7 @@ const factories = {
5131
5165
  supporting_info: factories['io.flow.external.paypal.v1.models.supporting_info'](),
5132
5166
  allowed_response_options: factories['io.flow.external.paypal.v1.models.allowed_response_options'](),
5133
5167
  links: arrayOf(() => factories['io.flow.external.paypal.v1.models.link']()),
5168
+ previous_status: factories['io.flow.external.paypal.v1.enums.dispute_status'](),
5134
5169
  }),
5135
5170
 
5136
5171
  'io.flow.external.paypal.v1.models.dispute_extension': (): io.flow.external.paypal.v1.models.DisputeExtension => ({
@@ -5149,9 +5184,14 @@ const factories = {
5149
5184
  links: arrayOf(() => factories['io.flow.external.paypal.v1.models.link']()),
5150
5185
  }),
5151
5186
 
5187
+ 'io.flow.external.paypal.v1.models.dispute_money': (): io.flow.external.paypal.v1.models.DisputeMoney => ({
5188
+ currency_code: factories.string(),
5189
+ value: factories.string(),
5190
+ }),
5191
+
5152
5192
  'io.flow.external.paypal.v1.models.dispute_outcome': (): io.flow.external.paypal.v1.models.DisputeOutcome => ({
5153
5193
  outcome_code: factories['io.flow.external.paypal.v1.enums.dispute_outcome_code'](),
5154
- amount_refunded: factories['io.flow.external.paypal.v1.models.money'](),
5194
+ amount_refunded: factories['io.flow.external.paypal.v1.models.dispute_money'](),
5155
5195
  }),
5156
5196
 
5157
5197
  'io.flow.external.paypal.v1.models.dispute_summary': (): io.flow.external.paypal.v1.models.DisputeSummary => ({
@@ -5160,7 +5200,7 @@ const factories = {
5160
5200
  update_time: factories.date_time_iso_8601(),
5161
5201
  reason: factories['io.flow.external.paypal.v1.enums.dispute_reason'](),
5162
5202
  status: factories['io.flow.external.paypal.v1.enums.dispute_status'](),
5163
- dispute_amount: factories['io.flow.external.paypal.v1.models.money'](),
5203
+ dispute_amount: factories['io.flow.external.paypal.v1.models.dispute_money'](),
5164
5204
  dispute_life_cycle_stage: factories['io.flow.external.paypal.v1.enums.dispute_life_cycle_stage'](),
5165
5205
  links: arrayOf(() => factories['io.flow.external.paypal.v1.models.link']()),
5166
5206
  }),
@@ -5209,7 +5249,7 @@ const factories = {
5209
5249
  }),
5210
5250
 
5211
5251
  'io.flow.external.paypal.v1.models.incorrect_transaction_amount': (): io.flow.external.paypal.v1.models.IncorrectTransactionAmount => ({
5212
- correct_transaction_amount: factories['io.flow.external.paypal.v1.models.money'](),
5252
+ correct_transaction_amount: factories['io.flow.external.paypal.v1.models.dispute_money'](),
5213
5253
  correct_transaction_time: factories.date_time_iso_8601(),
5214
5254
  }),
5215
5255
 
@@ -5229,7 +5269,7 @@ const factories = {
5229
5269
  item_quantity: factories.string(),
5230
5270
  partner_transaction_id: factories.string(),
5231
5271
  reason: factories['io.flow.external.paypal.v1.enums.dispute_reason'](),
5232
- dispute_amount: factories['io.flow.external.paypal.v1.models.money'](),
5272
+ dispute_amount: factories['io.flow.external.paypal.v1.models.dispute_money'](),
5233
5273
  notes: factories.string(),
5234
5274
  }),
5235
5275
 
@@ -5268,15 +5308,15 @@ const factories = {
5268
5308
 
5269
5309
  'io.flow.external.paypal.v1.models.money_movement': (): io.flow.external.paypal.v1.models.MoneyMovement => ({
5270
5310
  affected_party: factories['io.flow.external.paypal.v1.enums.affected_party'](),
5271
- amount: factories['io.flow.external.paypal.v1.models.money'](),
5311
+ amount: factories['io.flow.external.paypal.v1.models.dispute_money'](),
5272
5312
  initiated_time: factories.date_time_iso_8601(),
5273
5313
  type: factories['io.flow.external.paypal.v1.enums.money_movement_type'](),
5274
5314
  reason: factories['io.flow.external.paypal.v1.enums.money_movement_reason'](),
5275
5315
  }),
5276
5316
 
5277
5317
  'io.flow.external.paypal.v1.models.offer': (): io.flow.external.paypal.v1.models.Offer => ({
5278
- buyer_requested_amount: factories['io.flow.external.paypal.v1.models.money'](),
5279
- seller_offered_amount: factories['io.flow.external.paypal.v1.models.money'](),
5318
+ buyer_requested_amount: factories['io.flow.external.paypal.v1.models.dispute_money'](),
5319
+ seller_offered_amount: factories['io.flow.external.paypal.v1.models.dispute_money'](),
5280
5320
  offer_type: factories['io.flow.external.paypal.v1.enums.offer_type'](),
5281
5321
  }),
5282
5322
 
@@ -5380,7 +5420,7 @@ const factories = {
5380
5420
  }),
5381
5421
 
5382
5422
  'io.flow.external.paypal.v1.models.refund_details': (): io.flow.external.paypal.v1.models.RefundDetails => ({
5383
- allowed_refund_amount: factories['io.flow.external.paypal.v1.models.money'](),
5423
+ allowed_refund_amount: factories['io.flow.external.paypal.v1.models.dispute_money'](),
5384
5424
  }),
5385
5425
 
5386
5426
  'io.flow.external.paypal.v1.models.refund_id': (): io.flow.external.paypal.v1.models.RefundId => ({
@@ -5515,7 +5555,7 @@ const factories = {
5515
5555
  reference_id: factories.string(),
5516
5556
  create_time: factories.date_time_iso_8601(),
5517
5557
  transaction_status: factories['io.flow.external.paypal.v1.enums.transaction_status'](),
5518
- gross_amount: factories['io.flow.external.paypal.v1.models.money'](),
5558
+ gross_amount: factories['io.flow.external.paypal.v1.models.dispute_money'](),
5519
5559
  invoice_number: factories.string(),
5520
5560
  custom: factories.string(),
5521
5561
  buyer: factories['io.flow.external.paypal.v1.models.buyer'](),
@@ -7155,11 +7195,12 @@ const factories = {
7155
7195
  'accounts_with_final_statements_pending_transaction_total',
7156
7196
  'edited_order_tax_amount_exceeding_transaction',
7157
7197
  'edited_order_duty_amount_exceeding_transaction',
7198
+ 'negative_balance_scheduled_count',
7158
7199
  'negative_balance_scheduled_total',
7159
- 'negative_balance_debited_total',
7160
- 'negative_balance_failed_to_be_debited_total',
7161
- 'number_of_orgs_eligible_to_negative_balance_debit',
7162
- 'number_of_orgs_with_failed_negative_debit',
7200
+ 'negative_balance_sent_count',
7201
+ 'negative_balance_sent_total',
7202
+ 'negative_balance_failed_count',
7203
+ 'negative_balance_failed_total',
7163
7204
  'negative_debit_success_rate',
7164
7205
  ]),
7165
7206
 
@@ -7208,6 +7249,7 @@ const factories = {
7208
7249
  'duty',
7209
7250
  'trueup',
7210
7251
  'carrier_charge',
7252
+ 'tax_refund',
7211
7253
  ]),
7212
7254
 
7213
7255
  'io.flow.internal.v0.enums.browser_bundle_error_code': (): io.flow.internal.v0.enums.BrowserBundleErrorCode => faker.helpers.arrayElement(['generic_error', 'country_invalid']),
@@ -7346,11 +7388,12 @@ const factories = {
7346
7388
  'io.flow.internal.v0.enums.discount_request_order_entitlement_key': (): io.flow.internal.v0.enums.DiscountRequestOrderEntitlementKey => faker.helpers.arrayElement(['subtotal']),
7347
7389
  'io.flow.internal.v0.enums.dispute_billable': (): io.flow.internal.v0.enums.DisputeBillable => faker.helpers.arrayElement(['flow', 'organization']),
7348
7390
  'io.flow.internal.v0.enums.dispute_category': (): io.flow.internal.v0.enums.DisputeCategory => faker.helpers.arrayElement(['friendly_fraud', 'true_fraud', 'processing_error']),
7391
+ 'io.flow.internal.v0.enums.dispute_defense_outcome': (): io.flow.internal.v0.enums.DisputeDefenseOutcome => faker.helpers.arrayElement(['defended', 'undefended', 'undefendable']),
7349
7392
  'io.flow.internal.v0.enums.dispute_evidence': (): io.flow.internal.v0.enums.DisputeEvidence => faker.helpers.arrayElement(['proof_of_delivery', 'proof_of_fulfillment', 'other']),
7350
7393
  'io.flow.internal.v0.enums.dispute_import_status': (): io.flow.internal.v0.enums.DisputeImportStatus => faker.helpers.arrayElement(['new', 'processing', 'completed', 'failed']),
7351
7394
  'io.flow.internal.v0.enums.dispute_import_type': (): io.flow.internal.v0.enums.DisputeImportType => faker.helpers.arrayElement(['adyen_dispute', 'paypal_dispute']),
7352
7395
  'io.flow.internal.v0.enums.dispute_liability': (): io.flow.internal.v0.enums.DisputeLiability => faker.helpers.arrayElement(['flow', 'organization']),
7353
- 'io.flow.internal.v0.enums.dispute_processor': (): io.flow.internal.v0.enums.DisputeProcessor => faker.helpers.arrayElement(['adyen', 'paypal']),
7396
+ 'io.flow.internal.v0.enums.dispute_processor': (): io.flow.internal.v0.enums.DisputeProcessor => faker.helpers.arrayElement(['adyen', 'paypal', 'stripe']),
7354
7397
  'io.flow.internal.v0.enums.dispute_reporting_category': (): io.flow.internal.v0.enums.DisputeReportingCategory => faker.helpers.arrayElement(['charge_issues', 'delivery', 'fraud', 'general', 'product', 'returns']),
7355
7398
  'io.flow.internal.v0.enums.dispute_status': (): io.flow.internal.v0.enums.DisputeStatus => faker.helpers.arrayElement(['pending', 'won', 'lost', 'expired']),
7356
7399
  'io.flow.internal.v0.enums.dispute_transaction_type': (): io.flow.internal.v0.enums.DisputeTransactionType => faker.helpers.arrayElement(['adjustment', 'dispute']),
@@ -7377,10 +7420,13 @@ const factories = {
7377
7420
 
7378
7421
  'io.flow.internal.v0.enums.duty_simple_expression_type': (): io.flow.internal.v0.enums.DutySimpleExpressionType => faker.helpers.arrayElement(['free', 'percent', 'per_uom', 'flat']),
7379
7422
  'io.flow.internal.v0.enums.duty_transaction_type': (): io.flow.internal.v0.enums.DutyTransactionType => faker.helpers.arrayElement(['adjustment', 'reversal', 'duty']),
7423
+ 'io.flow.internal.v0.enums.eldar_item_type': (): io.flow.internal.v0.enums.EldarItemType => faker.helpers.arrayElement(['digital', 'physical']),
7380
7424
  'io.flow.internal.v0.enums.empty_attribute': (): io.flow.internal.v0.enums.EmptyAttribute => faker.helpers.arrayElement(['irrelevant']),
7381
7425
  'io.flow.internal.v0.enums.erp_file_type': (): io.flow.internal.v0.enums.ErpFileType => faker.helpers.arrayElement(['vendor']),
7382
7426
 
7383
7427
  'io.flow.internal.v0.enums.event_type': (): io.flow.internal.v0.enums.EventType => faker.helpers.arrayElement([
7428
+ 'adjusted_estimates_upserted',
7429
+ 'adjusted_estimates_deleted',
7384
7430
  'adyen_authorization_deleted',
7385
7431
  'adyen_authorization_upserted',
7386
7432
  'adyen_cancel_deleted',
@@ -7554,6 +7600,8 @@ const factories = {
7554
7600
  'ftp_file_to_process_uploaded',
7555
7601
  'center_defaults_upserted',
7556
7602
  'center_defaults_deleted',
7603
+ 'fulfillment_fallbacks_upserted',
7604
+ 'fulfillment_fallbacks_deleted',
7557
7605
  'pregenerated_request_event',
7558
7606
  'quote_upserted',
7559
7607
  'quote_deleted',
@@ -7721,6 +7769,8 @@ const factories = {
7721
7769
  'svitlana_item_deleted',
7722
7770
  'colm_item_upserted',
7723
7771
  'colm_item_deleted',
7772
+ 'eldar_item_upserted',
7773
+ 'eldar_item_deleted',
7724
7774
  'harinath_item_upserted',
7725
7775
  'harinath_item_deleted',
7726
7776
  'konstantin_item_upserted',
@@ -7747,6 +7797,10 @@ const factories = {
7747
7797
  'tracking_deleted',
7748
7798
  'tracking_assurance_analysis_upserted',
7749
7799
  'tracking_assurance_analysis_deleted',
7800
+ 'tracking_assurance_job_upserted',
7801
+ 'tracking_assurance_job_deleted',
7802
+ 'tracking_label_dimensions_upserted',
7803
+ 'tracking_label_dimensions_deleted',
7750
7804
  'tracking_request_upserted',
7751
7805
  'tracking_response_upserted',
7752
7806
  'user_upserted_v2',
@@ -7832,6 +7886,8 @@ const factories = {
7832
7886
  'globale_system',
7833
7887
  ]),
7834
7888
 
7889
+ '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']),
7890
+ 'io.flow.internal.v0.enums.label_request_result_state': (): io.flow.internal.v0.enums.LabelRequestResultState => faker.helpers.arrayElement(['success', 'failure']),
7835
7891
  'io.flow.internal.v0.enums.label_transaction_type': (): io.flow.internal.v0.enums.LabelTransactionType => faker.helpers.arrayElement(['adjustment', 'reversal', 'billable_label', 'fee', 'revenue_share']),
7836
7892
 
7837
7893
  'io.flow.internal.v0.enums.liability_type': (): io.flow.internal.v0.enums.LiabilityType => faker.helpers.arrayElement(
@@ -8182,6 +8238,7 @@ const factories = {
8182
8238
  'webhook_registrations',
8183
8239
  'channel_organization_identifier',
8184
8240
  'bulk_product_ingestion',
8241
+ 'bulk_duty_update',
8185
8242
  ]),
8186
8243
 
8187
8244
  'io.flow.internal.v0.enums.shopify_markets_trade_sector': (): io.flow.internal.v0.enums.ShopifyMarketsTradeSector => faker.helpers.arrayElement([
@@ -8251,9 +8308,10 @@ const factories = {
8251
8308
 
8252
8309
  'io.flow.internal.v0.enums.tax_calculation_error_code': (): io.flow.internal.v0.enums.TaxCalculationErrorCode => faker.helpers.arrayElement(['generic_error', 'outside_of_jurisdiction']),
8253
8310
  'io.flow.internal.v0.enums.tax_party': (): io.flow.internal.v0.enums.TaxParty => faker.helpers.arrayElement(['consumer', 'organization', 'flow', 'carrier']),
8254
- 'io.flow.internal.v0.enums.tax_transaction_type': (): io.flow.internal.v0.enums.TaxTransactionType => faker.helpers.arrayElement(['adjustment', 'reversal', 'tax']),
8311
+ 'io.flow.internal.v0.enums.tax_transaction_type': (): io.flow.internal.v0.enums.TaxTransactionType => faker.helpers.arrayElement(['adjustment', 'reversal', 'tax', 'refund']),
8255
8312
  'io.flow.internal.v0.enums.thiago_item_type': (): io.flow.internal.v0.enums.ThiagoItemType => faker.helpers.arrayElement(['digital', 'physical']),
8256
8313
  'io.flow.internal.v0.enums.tracking_integration_type': (): io.flow.internal.v0.enums.TrackingIntegrationType => faker.helpers.arrayElement(['api', 'bulk', 'aftership']),
8314
+ 'io.flow.internal.v0.enums.tracking_label_dimensions_source': (): io.flow.internal.v0.enums.TrackingLabelDimensionsSource => faker.helpers.arrayElement(['aftership', 'carrier_api']),
8257
8315
 
8258
8316
  'io.flow.internal.v0.enums.tracking_processing_failure_classification': (): io.flow.internal.v0.enums.TrackingProcessingFailureClassification => faker.helpers.arrayElement([
8259
8317
  'tracking_expired',
@@ -8537,6 +8595,29 @@ const factories = {
8537
8595
  province_code: factories['io.flow.internal.v0.enums.address_configuration_setting_province_code'](),
8538
8596
  }),
8539
8597
 
8598
+ 'io.flow.internal.v0.models.adjusted_estimates': (): io.flow.internal.v0.models.AdjustedEstimates => ({
8599
+ id: factories.string(),
8600
+ organization_id: factories.string(),
8601
+ label_id: factories.string(),
8602
+ estimates: arrayOf(() => factories['io.flow.label.v0.models.shipping_label_hop_summary']()),
8603
+ }),
8604
+
8605
+ 'io.flow.internal.v0.models.adjusted_estimates_deleted': (): io.flow.internal.v0.models.AdjustedEstimatesDeleted => ({
8606
+ discriminator: 'adjusted_estimates_deleted',
8607
+ event_id: factories.string(),
8608
+ timestamp: factories.date_time_iso_8601(),
8609
+ organization: factories.string(),
8610
+ id: factories.string(),
8611
+ }),
8612
+
8613
+ 'io.flow.internal.v0.models.adjusted_estimates_upserted': (): io.flow.internal.v0.models.AdjustedEstimatesUpserted => ({
8614
+ discriminator: 'adjusted_estimates_upserted',
8615
+ event_id: factories.string(),
8616
+ timestamp: factories.date_time_iso_8601(),
8617
+ organization: factories.string(),
8618
+ adjusted_estimates: factories['io.flow.internal.v0.models.adjusted_estimates'](),
8619
+ }),
8620
+
8540
8621
  'io.flow.internal.v0.models.adjustment_amount_fixed': (): io.flow.internal.v0.models.AdjustmentAmountFixed => ({
8541
8622
  discriminator: 'fixed',
8542
8623
  amount: factories['io.flow.common.v0.models.money'](),
@@ -8999,6 +9080,14 @@ const factories = {
8999
9080
  value: factories.date_time_iso_8601(),
9000
9081
  }),
9001
9082
 
9083
+ 'io.flow.internal.v0.models.attempt_statistics': (): io.flow.internal.v0.models.AttemptStatistics => ({
9084
+ merchant_count: factories.long(),
9085
+ amount: factories.decimal(),
9086
+ failed_merchant_count: factories.long(),
9087
+ failed_amount: factories.decimal(),
9088
+ success_ratio: factories.double(),
9089
+ }),
9090
+
9002
9091
  'io.flow.internal.v0.models.attribute_label': (): io.flow.internal.v0.models.AttributeLabel => ({
9003
9092
  value: factories.string(),
9004
9093
  unverified: factories.boolean(),
@@ -9358,6 +9447,7 @@ const factories = {
9358
9447
  trueup: factories['io.flow.common.v0.models.price'](),
9359
9448
  carrier_charge: factories['io.flow.common.v0.models.price'](),
9360
9449
  ending_balance: factories['io.flow.common.v0.models.price'](),
9450
+ tax_refund: factories['io.flow.common.v0.models.price'](),
9361
9451
  }),
9362
9452
 
9363
9453
  'io.flow.internal.v0.models.billing_statement_upserted': (): io.flow.internal.v0.models.BillingStatementUpserted => ({
@@ -9520,6 +9610,12 @@ const factories = {
9520
9610
  ),
9521
9611
  }),
9522
9612
 
9613
+ 'io.flow.internal.v0.models.bulk_duty_update_validation_error': (): io.flow.internal.v0.models.BulkDutyUpdateValidationError => ({
9614
+ message: factories.string(),
9615
+ reason: factories.string(),
9616
+ next_action_from: factories['io.flow.internal.v0.enums.channel_order_acceptance_next_action_from'](),
9617
+ }),
9618
+
9523
9619
  'io.flow.internal.v0.models.calculated_tax_amount': (): io.flow.internal.v0.models.CalculatedTaxAmount => ({
9524
9620
  discriminator: 'calculated_tax_amount',
9525
9621
  amount: factories.decimal(),
@@ -10648,6 +10744,19 @@ const factories = {
10648
10744
  ),
10649
10745
  }),
10650
10746
 
10747
+ 'io.flow.internal.v0.models.classification_merchant': (): io.flow.internal.v0.models.ClassificationMerchant => ({
10748
+ MerchantId: factories.string(),
10749
+ PlatformId: factories['io.flow.internal.v0.enums.classification_platform'](),
10750
+ Name: factories.string(),
10751
+ DateLastUpdated: factories.date_time_iso_8601(),
10752
+ Order: factories.integer(),
10753
+ }),
10754
+
10755
+ 'io.flow.internal.v0.models.classification_merchant_envelope': (): io.flow.internal.v0.models.ClassificationMerchantEnvelope => ({
10756
+ messageType: arrayOf(() => factories.string()),
10757
+ message: factories['io.flow.internal.v0.models.classification_merchant'](),
10758
+ }),
10759
+
10651
10760
  'io.flow.internal.v0.models.classification_product': (): io.flow.internal.v0.models.ClassificationProduct => ({
10652
10761
  organization_id: factories.string(),
10653
10762
  product_id: factories.string(),
@@ -10824,11 +10933,13 @@ const factories = {
10824
10933
  transaction_date: factories.string(),
10825
10934
  origin: factories['io.flow.fulfillment.v0.models.shipping_address'](),
10826
10935
  destination: factories['io.flow.fulfillment.v0.models.shipping_address'](),
10936
+ billing_address: factories['io.flow.fulfillment.v0.models.shipping_address'](),
10827
10937
  service: factories.string(),
10828
10938
  flow_tracking_number: factories.string(),
10829
10939
  rex_number: factories.string(),
10830
10940
  wee_number: factories.string(),
10831
10941
  business_gst_numbers: arrayOf(() => factories.string()),
10942
+ destination_gst_numbers: arrayOf(() => factories.string()),
10832
10943
  vat_name: factories.string(),
10833
10944
  shipping_price: factories.string(),
10834
10945
  shipment_recipient: factories.string(),
@@ -10851,6 +10962,7 @@ const factories = {
10851
10962
  show_us_outbound_signature: factories.boolean(),
10852
10963
  show_us_outbound_stamp: factories.boolean(),
10853
10964
  invoice_url: factories.string(),
10965
+ invoice_number: factories.string(),
10854
10966
  }),
10855
10967
 
10856
10968
  'io.flow.internal.v0.models.commercial_invoice_internal_deleted': (): io.flow.internal.v0.models.CommercialInvoiceInternalDeleted => ({
@@ -11488,9 +11600,11 @@ const factories = {
11488
11600
  category: factories['io.flow.internal.v0.enums.dispute_category'](),
11489
11601
  reporting_category: factories['io.flow.internal.v0.enums.dispute_reporting_category'](),
11490
11602
  reason: factories.string(),
11603
+ code: factories.string(),
11491
11604
  status: factories['io.flow.internal.v0.enums.dispute_status'](),
11492
11605
  liability: factories['io.flow.internal.v0.enums.dispute_liability'](),
11493
11606
  billable: factories['io.flow.internal.v0.enums.dispute_billable'](),
11607
+ defense_outcome: factories['io.flow.internal.v0.enums.dispute_defense_outcome'](),
11494
11608
  details: factories['io.flow.internal.v0.unions.dispute_details'](),
11495
11609
  issued_at: factories.date_time_iso_8601(),
11496
11610
  expires_at: factories.date_time_iso_8601(),
@@ -11510,6 +11624,11 @@ const factories = {
11510
11624
  id: factories.string(),
11511
11625
  }),
11512
11626
 
11627
+ 'io.flow.internal.v0.models.dispute_detail': (): io.flow.internal.v0.models.DisputeDetail => ({
11628
+ authorization: factories['io.flow.internal.v0.models.search_authorization'](),
11629
+ dispute: factories['io.flow.internal.v0.models.dispute'](),
11630
+ }),
11631
+
11513
11632
  'io.flow.internal.v0.models.dispute_details_adyen': (): io.flow.internal.v0.models.DisputeDetailsAdyen => ({
11514
11633
  discriminator: 'adyen',
11515
11634
  psp_reference: factories.string(),
@@ -11521,6 +11640,7 @@ const factories = {
11521
11640
  original_transaction_id: factories.string(),
11522
11641
  transaction_invoice_id: factories.string(),
11523
11642
  case_id: factories.string(),
11643
+ dispute_channel: factories.string(),
11524
11644
  }),
11525
11645
 
11526
11646
  'io.flow.internal.v0.models.dispute_details_stripe': (): io.flow.internal.v0.models.DisputeDetailsStripe => ({
@@ -11560,6 +11680,13 @@ const factories = {
11560
11680
  id: factories.string(),
11561
11681
  }),
11562
11682
 
11683
+ 'io.flow.internal.v0.models.dispute_override_update_form': (): io.flow.internal.v0.models.DisputeOverrideUpdateForm => ({
11684
+ billable: factories['io.flow.internal.v0.enums.dispute_billable'](),
11685
+ reporting_category: factories['io.flow.internal.v0.enums.dispute_reporting_category'](),
11686
+ category: factories['io.flow.internal.v0.enums.dispute_category'](),
11687
+ status: factories['io.flow.internal.v0.enums.dispute_status'](),
11688
+ }),
11689
+
11563
11690
  'io.flow.internal.v0.models.dispute_status_form': (): io.flow.internal.v0.models.DisputeStatusForm => ({
11564
11691
  status: factories['io.flow.internal.v0.enums.dispute_status'](),
11565
11692
  }),
@@ -11768,6 +11895,37 @@ const factories = {
11768
11895
  duty_transaction: factories['io.flow.internal.v0.models.duty_transaction'](),
11769
11896
  }),
11770
11897
 
11898
+ 'io.flow.internal.v0.models.eldar_item': (): io.flow.internal.v0.models.EldarItem => ({
11899
+ id: factories.string(),
11900
+ number: factories.string(),
11901
+ amount: factories['io.flow.common.v0.models.price'](),
11902
+ description: factories.string(),
11903
+ type: factories['io.flow.internal.v0.enums.eldar_item_type'](),
11904
+ added_on: factories.date_time_iso_8601(),
11905
+ }),
11906
+
11907
+ 'io.flow.internal.v0.models.eldar_item_deleted': (): io.flow.internal.v0.models.EldarItemDeleted => ({
11908
+ discriminator: 'eldar_item_deleted',
11909
+ event_id: factories.string(),
11910
+ timestamp: factories.date_time_iso_8601(),
11911
+ id: factories.string(),
11912
+ }),
11913
+
11914
+ 'io.flow.internal.v0.models.eldar_item_form': (): io.flow.internal.v0.models.EldarItemForm => ({
11915
+ number: factories.string(),
11916
+ amount: factories['io.flow.common.v0.models.price'](),
11917
+ description: factories.string(),
11918
+ type: factories['io.flow.internal.v0.enums.eldar_item_type'](),
11919
+ added_on: factories.date_time_iso_8601(),
11920
+ }),
11921
+
11922
+ 'io.flow.internal.v0.models.eldar_item_upserted': (): io.flow.internal.v0.models.EldarItemUpserted => ({
11923
+ discriminator: 'eldar_item_upserted',
11924
+ event_id: factories.string(),
11925
+ timestamp: factories.date_time_iso_8601(),
11926
+ item: factories['io.flow.internal.v0.models.eldar_item'](),
11927
+ }),
11928
+
11771
11929
  'io.flow.internal.v0.models.email_form': (): io.flow.internal.v0.models.EmailForm => ({
11772
11930
  to: arrayOf(() => factories.string()),
11773
11931
  cc: arrayOf(() => factories.string()),
@@ -12113,6 +12271,7 @@ const factories = {
12113
12271
  description: factories.string(),
12114
12272
  order_number: factories.string(),
12115
12273
  raw_carrier_event_code: factories.string(),
12274
+ aggregator_status_code: factories.string(),
12116
12275
  created_at: factories.date_time_iso_8601(),
12117
12276
  }),
12118
12277
 
@@ -12882,6 +13041,29 @@ const factories = {
12882
13041
  id: factories.string(),
12883
13042
  }),
12884
13043
 
13044
+ 'io.flow.internal.v0.models.fulfillment_fallbacks': (): io.flow.internal.v0.models.FulfillmentFallbacks => ({
13045
+ id: factories.string(),
13046
+ packaging: arrayOf(() => factories['io.flow.fulfillment.v0.models.packaging']()),
13047
+ contact: factories['io.flow.common.v0.models.contact'](),
13048
+ location: factories['io.flow.common.v0.models.address'](),
13049
+ }),
13050
+
13051
+ 'io.flow.internal.v0.models.fulfillment_fallbacks_deleted': (): io.flow.internal.v0.models.FulfillmentFallbacksDeleted => ({
13052
+ discriminator: 'fulfillment_fallbacks_deleted',
13053
+ event_id: factories.string(),
13054
+ timestamp: factories.date_time_iso_8601(),
13055
+ organization: factories.string(),
13056
+ id: factories.string(),
13057
+ }),
13058
+
13059
+ 'io.flow.internal.v0.models.fulfillment_fallbacks_upserted': (): io.flow.internal.v0.models.FulfillmentFallbacksUpserted => ({
13060
+ discriminator: 'fulfillment_fallbacks_upserted',
13061
+ event_id: factories.string(),
13062
+ timestamp: factories.date_time_iso_8601(),
13063
+ organization: factories.string(),
13064
+ fulfillment_fallbacks: factories['io.flow.internal.v0.models.fulfillment_fallbacks'](),
13065
+ }),
13066
+
12885
13067
  'io.flow.internal.v0.models.fulfillment_internal_experience_reference': (): io.flow.internal.v0.models.FulfillmentInternalExperienceReference => ({
12886
13068
  id: factories.string(),
12887
13069
  key: factories.string(),
@@ -14035,6 +14217,22 @@ const factories = {
14035
14217
  label_request_error: factories['io.flow.internal.v0.models.label_request_error'](),
14036
14218
  }),
14037
14219
 
14220
+ 'io.flow.internal.v0.models.label_request_result': (): io.flow.internal.v0.models.LabelRequestResult => ({
14221
+ id: factories.string(),
14222
+ created_at: factories.date_time_iso_8601(),
14223
+ state: factories['io.flow.internal.v0.enums.label_request_result_state'](),
14224
+ organization_id: factories.string(),
14225
+ order_number: factories.string(),
14226
+ label_request_method: factories['io.flow.label.v0.enums.label_request_method'](),
14227
+ carrier_id: factories.string(),
14228
+ carrier_tracking_number: factories.string(),
14229
+ url: factories.string(),
14230
+ error: factories.string(),
14231
+ suggested_responsibility: factories['io.flow.internal.v0.enums.label_request_error_handling_responsibility'](),
14232
+ origin_country: factories.string(),
14233
+ destination_country: factories.string(),
14234
+ }),
14235
+
14038
14236
  'io.flow.internal.v0.models.label_summary': (): io.flow.internal.v0.models.LabelSummary => ({
14039
14237
  id: factories.string(),
14040
14238
  commercial_invoice: factories.string(),
@@ -15045,6 +15243,7 @@ const factories = {
15045
15243
  duty: factories.decimal(),
15046
15244
  freight: factories.decimal(),
15047
15245
  total: factories.decimal(),
15246
+ tax_refund: factories.decimal(),
15048
15247
  }),
15049
15248
 
15050
15249
  'io.flow.internal.v0.models.merchant_upserted': (): io.flow.internal.v0.models.MerchantUpserted => ({
@@ -15136,6 +15335,12 @@ const factories = {
15136
15335
  percent: factories.decimal(),
15137
15336
  }),
15138
15337
 
15338
+ 'io.flow.internal.v0.models.negative_debit_metrics': (): io.flow.internal.v0.models.NegativeDebitMetrics => ({
15339
+ current_attempt: factories['io.flow.internal.v0.models.attempt_statistics'](),
15340
+ second_attempt: factories['io.flow.internal.v0.models.attempt_statistics'](),
15341
+ third_attempt: factories['io.flow.internal.v0.models.attempt_statistics'](),
15342
+ }),
15343
+
15139
15344
  'io.flow.internal.v0.models.next_billing_statement': (): io.flow.internal.v0.models.NextBillingStatement => ({
15140
15345
  date: factories.date_time_iso_8601(),
15141
15346
  amount: factories['io.flow.common.v0.models.price'](),
@@ -15422,6 +15627,7 @@ const factories = {
15422
15627
  created_at: factories.date_time_iso_8601(),
15423
15628
  updated_at: factories.date_time_iso_8601(),
15424
15629
  shopify_order_id: factories.string(),
15630
+ disputes: arrayOf(() => factories['io.flow.internal.v0.models.dispute_detail']()),
15425
15631
  }),
15426
15632
 
15427
15633
  'io.flow.internal.v0.models.order_fulfillment_deleted': (): io.flow.internal.v0.models.OrderFulfillmentDeleted => ({
@@ -15624,6 +15830,8 @@ const factories = {
15624
15830
  resolved_at: factories.date_time_iso_8601(),
15625
15831
  last_failure: factories['io.flow.internal.v0.models.last_failure_summary'](),
15626
15832
  sla_breach_at: factories.date_time_iso_8601(),
15833
+ capabilities_at_creation: arrayOf(() => factories['io.flow.internal.v0.enums.logistics_capability']()),
15834
+ first_globale_address_repair_failure_at: factories.date_time_iso_8601(),
15627
15835
  }),
15628
15836
 
15629
15837
  'io.flow.internal.v0.models.order_validation_deleted': (): io.flow.internal.v0.models.OrderValidationDeleted => ({
@@ -17680,6 +17888,8 @@ const factories = {
17680
17888
  tax_inclusive: factories.boolean(),
17681
17889
  duty_inclusive: factories.boolean(),
17682
17890
  manual_payment: factories.boolean(),
17891
+ partial_fulfillment: factories.boolean(),
17892
+ partial_refund: factories.boolean(),
17683
17893
  }),
17684
17894
 
17685
17895
  'io.flow.internal.v0.models.reporting_fx': (): io.flow.internal.v0.models.ReportingFx => ({
@@ -17725,6 +17935,7 @@ const factories = {
17725
17935
  freight: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
17726
17936
  discount: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
17727
17937
  total: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
17938
+ tax_refund: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
17728
17939
  }),
17729
17940
 
17730
17941
  'io.flow.internal.v0.models.reporting_monetary_value': (): io.flow.internal.v0.models.ReportingMonetaryValue => ({
@@ -19952,6 +20163,25 @@ const factories = {
19952
20163
  analysis: factories['io.flow.internal.v0.models.tracking_assurance_analysis'](),
19953
20164
  }),
19954
20165
 
20166
+ 'io.flow.internal.v0.models.tracking_assurance_job': (): io.flow.internal.v0.models.TrackingAssuranceJob => ({
20167
+ id: factories.string(),
20168
+ created_at: factories.date_time_iso_8601(),
20169
+ }),
20170
+
20171
+ 'io.flow.internal.v0.models.tracking_assurance_job_deleted': (): io.flow.internal.v0.models.TrackingAssuranceJobDeleted => ({
20172
+ discriminator: 'tracking_assurance_job_deleted',
20173
+ event_id: factories.string(),
20174
+ timestamp: factories.date_time_iso_8601(),
20175
+ id: factories.string(),
20176
+ }),
20177
+
20178
+ 'io.flow.internal.v0.models.tracking_assurance_job_upserted': (): io.flow.internal.v0.models.TrackingAssuranceJobUpserted => ({
20179
+ discriminator: 'tracking_assurance_job_upserted',
20180
+ event_id: factories.string(),
20181
+ timestamp: factories.date_time_iso_8601(),
20182
+ job: factories['io.flow.internal.v0.models.tracking_assurance_job'](),
20183
+ }),
20184
+
19955
20185
  'io.flow.internal.v0.models.tracking_debug_force_transit_form': (): io.flow.internal.v0.models.TrackingDebugForceTransitForm => ({
19956
20186
  description: factories.string(),
19957
20187
  }),
@@ -19995,6 +20225,31 @@ const factories = {
19995
20225
  tracking_label: factories['io.flow.internal.v0.models.export_tracking_label'](),
19996
20226
  }),
19997
20227
 
20228
+ 'io.flow.internal.v0.models.tracking_label_dimensions': (): io.flow.internal.v0.models.TrackingLabelDimensions => ({
20229
+ id: factories.string(),
20230
+ organization_id: factories.string(),
20231
+ tracking_label_id: factories.string(),
20232
+ source: factories['io.flow.internal.v0.enums.tracking_label_dimensions_source'](),
20233
+ created_at: factories.date_time_iso_8601(),
20234
+ dimensions: factories['io.flow.common.v0.models.dimensions'](),
20235
+ }),
20236
+
20237
+ 'io.flow.internal.v0.models.tracking_label_dimensions_deleted': (): io.flow.internal.v0.models.TrackingLabelDimensionsDeleted => ({
20238
+ discriminator: 'tracking_label_dimensions_deleted',
20239
+ event_id: factories.string(),
20240
+ timestamp: factories.date_time_iso_8601(),
20241
+ organization: factories.string(),
20242
+ id: factories.string(),
20243
+ }),
20244
+
20245
+ 'io.flow.internal.v0.models.tracking_label_dimensions_upserted': (): io.flow.internal.v0.models.TrackingLabelDimensionsUpserted => ({
20246
+ discriminator: 'tracking_label_dimensions_upserted',
20247
+ event_id: factories.string(),
20248
+ timestamp: factories.date_time_iso_8601(),
20249
+ organization: factories.string(),
20250
+ tracking_label_dimensions: factories['io.flow.internal.v0.models.tracking_label_dimensions'](),
20251
+ }),
20252
+
19998
20253
  'io.flow.internal.v0.models.tracking_label_event_deleted_v2': (): io.flow.internal.v0.models.TrackingLabelEventDeletedV2 => ({
19999
20254
  discriminator: 'tracking_label_event_deleted_v2',
20000
20255
  event_id: factories.string(),
@@ -20621,6 +20876,8 @@ const factories = {
20621
20876
 
20622
20877
  'io.flow.internal.v0.unions.event': (): io.flow.internal.v0.unions.Event => {
20623
20878
  const f = faker.helpers.arrayElement([
20879
+ () => factories['io.flow.internal.v0.models.adjusted_estimates_upserted'](),
20880
+ () => factories['io.flow.internal.v0.models.adjusted_estimates_deleted'](),
20624
20881
  () => factories['io.flow.internal.v0.models.adyen_authorization_deleted'](),
20625
20882
  () => factories['io.flow.internal.v0.models.adyen_authorization_upserted'](),
20626
20883
  () => factories['io.flow.internal.v0.models.adyen_cancel_deleted'](),
@@ -20794,6 +21051,8 @@ const factories = {
20794
21051
  () => factories['io.flow.internal.v0.models.ftp_file_to_process_uploaded'](),
20795
21052
  () => factories['io.flow.internal.v0.models.center_defaults_upserted'](),
20796
21053
  () => factories['io.flow.internal.v0.models.center_defaults_deleted'](),
21054
+ () => factories['io.flow.internal.v0.models.fulfillment_fallbacks_upserted'](),
21055
+ () => factories['io.flow.internal.v0.models.fulfillment_fallbacks_deleted'](),
20797
21056
  () => factories['io.flow.internal.v0.models.pregenerated_request_event'](),
20798
21057
  () => factories['io.flow.internal.v0.models.quote_upserted'](),
20799
21058
  () => factories['io.flow.internal.v0.models.quote_deleted'](),
@@ -20961,6 +21220,8 @@ const factories = {
20961
21220
  () => factories['io.flow.internal.v0.models.svitlana_item_deleted'](),
20962
21221
  () => factories['io.flow.internal.v0.models.colm_item_upserted'](),
20963
21222
  () => factories['io.flow.internal.v0.models.colm_item_deleted'](),
21223
+ () => factories['io.flow.internal.v0.models.eldar_item_upserted'](),
21224
+ () => factories['io.flow.internal.v0.models.eldar_item_deleted'](),
20964
21225
  () => factories['io.flow.internal.v0.models.harinath_item_upserted'](),
20965
21226
  () => factories['io.flow.internal.v0.models.harinath_item_deleted'](),
20966
21227
  () => factories['io.flow.internal.v0.models.konstantin_item_upserted'](),
@@ -20987,6 +21248,10 @@ const factories = {
20987
21248
  () => factories['io.flow.internal.v0.models.tracking_deleted'](),
20988
21249
  () => factories['io.flow.internal.v0.models.tracking_assurance_analysis_upserted'](),
20989
21250
  () => factories['io.flow.internal.v0.models.tracking_assurance_analysis_deleted'](),
21251
+ () => factories['io.flow.internal.v0.models.tracking_assurance_job_upserted'](),
21252
+ () => factories['io.flow.internal.v0.models.tracking_assurance_job_deleted'](),
21253
+ () => factories['io.flow.internal.v0.models.tracking_label_dimensions_upserted'](),
21254
+ () => factories['io.flow.internal.v0.models.tracking_label_dimensions_deleted'](),
20990
21255
  () => factories['io.flow.internal.v0.models.tracking_request_upserted'](),
20991
21256
  () => factories['io.flow.internal.v0.models.tracking_response_upserted'](),
20992
21257
  () => factories['io.flow.internal.v0.models.user_upserted_v2'](),
@@ -23008,6 +23273,9 @@ const factories = {
23008
23273
  'twint',
23009
23274
  'przelewy24',
23010
23275
  'mobilepay',
23276
+ 'grabpay',
23277
+ 'vipps',
23278
+ 'kcp_creditcard',
23011
23279
  ]),
23012
23280
 
23013
23281
  'io.flow.payment.gateway.v0.models.action_display_inline_window': (): io.flow.payment.gateway.v0.models.ActionDisplayInlineWindow => ({
@@ -23394,12 +23662,22 @@ const factories = {
23394
23662
  reference: factories.string(),
23395
23663
  }),
23396
23664
 
23665
+ 'io.flow.payment.gateway.v0.models.payment_method_data_init_grabpay': (): io.flow.payment.gateway.v0.models.PaymentMethodDataInitGrabpay => ({
23666
+ type: 'init_grabpay',
23667
+ reference: factories.string(),
23668
+ }),
23669
+
23397
23670
  'io.flow.payment.gateway.v0.models.payment_method_data_init_ideal': (): io.flow.payment.gateway.v0.models.PaymentMethodDataInitIdeal => ({
23398
23671
  type: 'init_ideal',
23399
23672
  issuer: factories.string(),
23400
23673
  reference: factories.string(),
23401
23674
  }),
23402
23675
 
23676
+ 'io.flow.payment.gateway.v0.models.payment_method_data_init_kcp_creditcard': (): io.flow.payment.gateway.v0.models.PaymentMethodDataInitKcpCreditcard => ({
23677
+ type: 'init_kcp_creditcard',
23678
+ reference: factories.string(),
23679
+ }),
23680
+
23403
23681
  'io.flow.payment.gateway.v0.models.payment_method_data_init_klarna': (): io.flow.payment.gateway.v0.models.PaymentMethodDataInitKlarna => ({
23404
23682
  type: 'init_klarna',
23405
23683
  reference: factories.string(),
@@ -23430,6 +23708,11 @@ const factories = {
23430
23708
  reference: factories.string(),
23431
23709
  }),
23432
23710
 
23711
+ 'io.flow.payment.gateway.v0.models.payment_method_data_init_vipps': (): io.flow.payment.gateway.v0.models.PaymentMethodDataInitVipps => ({
23712
+ type: 'init_vipps',
23713
+ reference: factories.string(),
23714
+ }),
23715
+
23433
23716
  'io.flow.payment.gateway.v0.models.payment_method_data_option_logo_svg': (): io.flow.payment.gateway.v0.models.PaymentMethodDataOptionLogoSvg => ({
23434
23717
  type: 'svg',
23435
23718
  url: factories.string(),
@@ -23495,12 +23778,22 @@ const factories = {
23495
23778
  merchant_of_record: factories['io.flow.common.v0.enums.merchant_of_record'](),
23496
23779
  }),
23497
23780
 
23781
+ 'io.flow.payment.gateway.v0.models.payment_method_summary_grabpay': (): io.flow.payment.gateway.v0.models.PaymentMethodSummaryGrabpay => ({
23782
+ type: 'grabpay',
23783
+ merchant_of_record: factories['io.flow.common.v0.enums.merchant_of_record'](),
23784
+ }),
23785
+
23498
23786
  'io.flow.payment.gateway.v0.models.payment_method_summary_ideal': (): io.flow.payment.gateway.v0.models.PaymentMethodSummaryIdeal => ({
23499
23787
  type: 'ideal',
23500
23788
  merchant_of_record: factories['io.flow.common.v0.enums.merchant_of_record'](),
23501
23789
  issuer: factories.string(),
23502
23790
  }),
23503
23791
 
23792
+ 'io.flow.payment.gateway.v0.models.payment_method_summary_kcp_creditcard': (): io.flow.payment.gateway.v0.models.PaymentMethodSummaryKcpCreditcard => ({
23793
+ type: 'kcp_creditcard',
23794
+ merchant_of_record: factories['io.flow.common.v0.enums.merchant_of_record'](),
23795
+ }),
23796
+
23504
23797
  'io.flow.payment.gateway.v0.models.payment_method_summary_klarna': (): io.flow.payment.gateway.v0.models.PaymentMethodSummaryKlarna => ({
23505
23798
  type: 'klarna',
23506
23799
  merchant_of_record: factories['io.flow.common.v0.enums.merchant_of_record'](),
@@ -23531,6 +23824,11 @@ const factories = {
23531
23824
  merchant_of_record: factories['io.flow.common.v0.enums.merchant_of_record'](),
23532
23825
  }),
23533
23826
 
23827
+ 'io.flow.payment.gateway.v0.models.payment_method_summary_vipps': (): io.flow.payment.gateway.v0.models.PaymentMethodSummaryVipps => ({
23828
+ type: 'vipps',
23829
+ merchant_of_record: factories['io.flow.common.v0.enums.merchant_of_record'](),
23830
+ }),
23831
+
23534
23832
  'io.flow.payment.gateway.v0.models.payment_order_details_line_item': (): io.flow.payment.gateway.v0.models.PaymentOrderDetailsLineItem => ({
23535
23833
  id: factories.string(),
23536
23834
  description: factories.string(),
@@ -23767,7 +24065,10 @@ const factories = {
23767
24065
  () => factories['io.flow.payment.gateway.v0.models.payment_method_data_init_twint'](),
23768
24066
  () => factories['io.flow.payment.gateway.v0.models.payment_method_data_init_przelewy24'](),
23769
24067
  () => factories['io.flow.payment.gateway.v0.models.payment_method_data_init_mobilepay'](),
24068
+ () => factories['io.flow.payment.gateway.v0.models.payment_method_data_init_kcp_creditcard'](),
23770
24069
  () => factories['io.flow.payment.gateway.v0.models.payment_method_data_init_bancontact'](),
24070
+ () => factories['io.flow.payment.gateway.v0.models.payment_method_data_init_grabpay'](),
24071
+ () => factories['io.flow.payment.gateway.v0.models.payment_method_data_init_vipps'](),
23771
24072
  () => factories['io.flow.payment.gateway.v0.models.payment_method_data_validate_applepay'](),
23772
24073
  () => factories['io.flow.payment.gateway.v0.models.payment_method_data_authorize_card'](),
23773
24074
  () => factories['io.flow.payment.gateway.v0.models.payment_method_data_authorize_googlepay'](),
@@ -23826,10 +24127,13 @@ const factories = {
23826
24127
  () => factories['io.flow.payment.gateway.v0.models.payment_method_summary_paypal'](),
23827
24128
  () => factories['io.flow.payment.gateway.v0.models.payment_method_summary_ideal'](),
23828
24129
  () => factories['io.flow.payment.gateway.v0.models.payment_method_summary_twint'](),
24130
+ () => factories['io.flow.payment.gateway.v0.models.payment_method_summary_vipps'](),
23829
24131
  () => factories['io.flow.payment.gateway.v0.models.payment_method_summary_przelewy24'](),
23830
24132
  () => factories['io.flow.payment.gateway.v0.models.payment_method_summary_mobilepay'](),
24133
+ () => factories['io.flow.payment.gateway.v0.models.payment_method_summary_kcp_creditcard'](),
23831
24134
  () => factories['io.flow.payment.gateway.v0.models.payment_method_summary_sofort'](),
23832
24135
  () => factories['io.flow.payment.gateway.v0.models.payment_method_summary_bancontact'](),
24136
+ () => factories['io.flow.payment.gateway.v0.models.payment_method_summary_grabpay'](),
23833
24137
  ]);
23834
24138
 
23835
24139
  return f();
@@ -23956,6 +24260,22 @@ const factories = {
23956
24260
 
23957
24261
  'io.flow.payment.v0.enums.payment_source_confirmation_action_type': (): io.flow.payment.v0.enums.PaymentSourceConfirmationActionType => faker.helpers.arrayElement(['cvv', 'billing_address', 'number']),
23958
24262
  'io.flow.payment.v0.enums.refund_decline_code': (): io.flow.payment.v0.enums.RefundDeclineCode => faker.helpers.arrayElement(['expired', 'insufficient_funds', 'unknown']),
24263
+
24264
+ 'io.flow.payment.v0.enums.refund_failure_category': (): io.flow.payment.v0.enums.RefundFailureCategory => faker.helpers.arrayElement([
24265
+ 'amount_too_high',
24266
+ 'amount_too_low',
24267
+ 'not_enough_balance',
24268
+ 'insufficient_funds',
24269
+ 'refund_period_expired',
24270
+ 'dispute',
24271
+ 'not_captured',
24272
+ 'unsupported_payment_method',
24273
+ 'unsupported_partial_refund',
24274
+ 'invalid_currency',
24275
+ 'card_no_longer_valid',
24276
+ 'general',
24277
+ ]),
24278
+
23959
24279
  'io.flow.payment.v0.enums.refund_status': (): io.flow.payment.v0.enums.RefundStatus => faker.helpers.arrayElement(['pending', 'succeeded', 'failed', 'canceled']),
23960
24280
 
23961
24281
  'io.flow.payment.v0.enums.reversal_error_code': (): io.flow.payment.v0.enums.ReversalErrorCode => faker.helpers.arrayElement([
@@ -24677,6 +24997,8 @@ const factories = {
24677
24997
  attributes: objectOf(() => factories.string()),
24678
24998
  status: factories['io.flow.payment.v0.enums.refund_status'](),
24679
24999
  base: factories['io.flow.common.v0.models.money'](),
25000
+ failure_category: factories['io.flow.payment.v0.enums.refund_failure_category'](),
25001
+ failure_psp_reason: factories.string(),
24680
25002
  }),
24681
25003
 
24682
25004
  'io.flow.payment.v0.models.refund_capture': (): io.flow.payment.v0.models.RefundCapture => ({
@@ -27854,6 +28176,12 @@ const factories = {
27854
28176
  'duty_inclusive_tax_inclusive',
27855
28177
  ]),
27856
28178
 
28179
+ 'io.flow.shopify.markets.internal.v0.models.bulk_duty_update_validation_error': (): io.flow.shopify.markets.internal.v0.models.BulkDutyUpdateValidationError => ({
28180
+ message: factories.string(),
28181
+ reason: factories.string(),
28182
+ next_action_from: factories['io.flow.channel.internal.v0.enums.channel_order_acceptance_next_action_from'](),
28183
+ }),
28184
+
27857
28185
  'io.flow.shopify.markets.internal.v0.models.catalog_publication_sync_validation_error': (): io.flow.shopify.markets.internal.v0.models.CatalogPublicationSyncValidationError => ({
27858
28186
  message: factories.string(),
27859
28187
  reason: factories.string(),
@@ -28767,6 +29095,7 @@ const factories = {
28767
29095
  }),
28768
29096
 
28769
29097
  'io.flow.shopify.markets.v0.models.shopify_order_line_item': (): io.flow.shopify.markets.v0.models.ShopifyOrderLineItem => ({
29098
+ current_quantity: factories.long(),
28770
29099
  fulfillable_quantity: factories.long(),
28771
29100
  fulfillment_status: factories['io.flow.shopify.markets.v0.enums.shopify_order_fulfillment_status_type'](),
28772
29101
  grams: factories.double(),
@@ -28890,6 +29219,7 @@ const factories = {
28890
29219
  location_id: factories.long(),
28891
29220
  subtotal: factories.decimal(),
28892
29221
  total_tax: factories.decimal(),
29222
+ total_tax_set: factories['io.flow.shopify.markets.v0.models.shopify_order_money_set'](),
28893
29223
  }),
28894
29224
 
28895
29225
  'io.flow.shopify.markets.v0.models.shopify_order_shipping_line': (): io.flow.shopify.markets.v0.models.ShopifyOrderShippingLine => ({
@@ -28968,6 +29298,16 @@ const factories = {
28968
29298
  payment_schedules: factories['io.flow.shopify.markets.v0.models.shopify_payment_schedules'](),
28969
29299
  }),
28970
29300
 
29301
+ 'io.flow.shopify.markets.v0.models.shopify_product_variant_inventory_item_wrapper': (): io.flow.shopify.markets.v0.models.ShopifyProductVariantInventoryItemWrapper => ({
29302
+ product_id: factories.long(),
29303
+ variant_id: factories.long(),
29304
+ harmonized_system_code: factories.string(),
29305
+
29306
+ country_harmonized_system_codes: arrayOf(
29307
+ () => factories['io.flow.shopify.markets.v0.models.shopify_country_harmonized_system_code'](),
29308
+ ),
29309
+ }),
29310
+
28971
29311
  'io.flow.shopify.markets.v0.models.shopify_refund': (): io.flow.shopify.markets.v0.models.ShopifyRefund => ({
28972
29312
  notify_x: factories.boolean(),
28973
29313
  note: factories.string(),
@@ -29857,7 +30197,16 @@ const factories = {
29857
30197
  'en-CH',
29858
30198
  ]),
29859
30199
 
29860
- 'io.flow.stripe.v0.enums.refund_failure_reason': (): io.flow.stripe.v0.enums.RefundFailureReason => faker.helpers.arrayElement(['lost_or_stolen_card', 'expired_or_canceled_card', 'unknown']),
30200
+ 'io.flow.stripe.v0.enums.refund_failure_reason': (): io.flow.stripe.v0.enums.RefundFailureReason => faker.helpers.arrayElement([
30201
+ 'charge_for_pending_refund_disputed',
30202
+ 'declined',
30203
+ 'expired_or_canceled_card',
30204
+ 'insufficient_funds',
30205
+ 'lost_or_stolen_card',
30206
+ 'merchant_request',
30207
+ 'unknown',
30208
+ ]),
30209
+
29861
30210
  'io.flow.stripe.v0.enums.refund_reason': (): io.flow.stripe.v0.enums.RefundReason => faker.helpers.arrayElement(['duplicate', 'fraudulent', 'requested_by_customer']),
29862
30211
  'io.flow.stripe.v0.enums.refund_status': (): io.flow.stripe.v0.enums.RefundStatus => faker.helpers.arrayElement(['succeeded', 'failed', 'pending', 'canceled']),
29863
30212
  'io.flow.stripe.v0.enums.request_three_d_secure_type': (): io.flow.stripe.v0.enums.RequestThreeDSecureType => faker.helpers.arrayElement(['automatic', 'any']),
@@ -31254,6 +31603,7 @@ const factories = {
31254
31603
  in_transit: factories['io.flow.tracking.v0.models.label_tracking_summary_update'](),
31255
31604
  delivered: factories['io.flow.tracking.v0.models.label_tracking_summary_update'](),
31256
31605
  rejected: factories['io.flow.tracking.v0.models.label_tracking_summary_update'](),
31606
+ returned: factories['io.flow.tracking.v0.models.label_tracking_summary_update'](),
31257
31607
  }),
31258
31608
 
31259
31609
  'io.flow.tracking.v0.models.label_tracking_summary_update': (): io.flow.tracking.v0.models.LabelTrackingSummaryUpdate => ({
@@ -31478,6 +31828,9 @@ export const makeAddressConfigurationProvinceSetting = () => factories['io.flow.
31478
31828
  export const makeAddressConfigurationSetting = () => factories['io.flow.internal.v0.models.address_configuration_setting']();
31479
31829
  export const makeAddressConfigurationSettingForm = () => factories['io.flow.internal.v0.models.address_configuration_setting_form']();
31480
31830
  export const makeAddressConfigurationSettingProvinceCode = () => factories['io.flow.internal.v0.enums.address_configuration_setting_province_code']();
31831
+ export const makeAdjustedEstimates = () => factories['io.flow.internal.v0.models.adjusted_estimates']();
31832
+ export const makeAdjustedEstimatesDeleted = () => factories['io.flow.internal.v0.models.adjusted_estimates_deleted']();
31833
+ export const makeAdjustedEstimatesUpserted = () => factories['io.flow.internal.v0.models.adjusted_estimates_upserted']();
31481
31834
  export const makeAdjustmentAmount = () => factories['io.flow.internal.v0.unions.adjustment_amount']();
31482
31835
  export const makeAdjustmentAmountFixed = () => factories['io.flow.internal.v0.models.adjustment_amount_fixed']();
31483
31836
  export const makeAdjustmentAmountPercentage = () => factories['io.flow.internal.v0.models.adjustment_amount_percentage']();
@@ -31545,6 +31898,7 @@ export const makeApiCallReferenceId = () => factories['io.flow.internal.v0.enums
31545
31898
  export const makeApmContent = () => factories['io.flow.internal.v0.models.apm_content']();
31546
31899
  export const makeApplePayAuthorizationPayload = () => factories['io.flow.internal.v0.models.apple_pay_authorization_payload']();
31547
31900
  export const makeApplyAtValueForm = () => factories['io.flow.internal.v0.models.apply_at_value_form']();
31901
+ export const makeAttemptStatistics = () => factories['io.flow.internal.v0.models.attempt_statistics']();
31548
31902
  export const makeAttributeLabel = () => factories['io.flow.internal.v0.models.attribute_label']();
31549
31903
  export const makeAuthenticationForm = () => factories['io.flow.internal.v0.models.authentication_form']();
31550
31904
  export const makeAuthorizationBundle = () => factories['io.flow.internal.v0.models.authorization_bundle']();
@@ -31629,6 +31983,7 @@ export const makeBrowserBundlePaymentMethod = () => factories['io.flow.internal.
31629
31983
  export const makeBrowserBundlePaymentMethodForm = () => factories['io.flow.internal.v0.models.browser_bundle_payment_method_form']();
31630
31984
  export const makeBrowserBundlePaymentMethods = () => factories['io.flow.internal.v0.models.browser_bundle_payment_methods']();
31631
31985
  export const makeBulkClassificationAction = () => factories['io.flow.internal.v0.models.bulk_classification_action']();
31986
+ export const makeBulkDutyUpdateValidationError = () => factories['io.flow.internal.v0.models.bulk_duty_update_validation_error']();
31632
31987
  export const makeCalculatedTaxAmount = () => factories['io.flow.internal.v0.models.calculated_tax_amount']();
31633
31988
  export const makeCalculationStampingLineItem = () => factories['io.flow.internal.v0.models.calculation_stamping_line_item']();
31634
31989
  export const makeCalculationStampingShippingLine = () => factories['io.flow.internal.v0.models.calculation_stamping_shipping_line']();
@@ -31809,6 +32164,8 @@ export const makeClassificationFormWrapper = () => factories['io.flow.internal.v
31809
32164
  export const makeClassificationItem = () => factories['io.flow.internal.v0.models.classification_item']();
31810
32165
  export const makeClassificationJudgementForm = () => factories['io.flow.internal.v0.unions.classification_judgement_form']();
31811
32166
  export const makeClassificationLabelAttribute = () => factories['io.flow.internal.v0.unions.classification_label_attribute']();
32167
+ export const makeClassificationMerchant = () => factories['io.flow.internal.v0.models.classification_merchant']();
32168
+ export const makeClassificationMerchantEnvelope = () => factories['io.flow.internal.v0.models.classification_merchant_envelope']();
31812
32169
  export const makeClassificationPlatform = () => factories['io.flow.internal.v0.enums.classification_platform']();
31813
32170
  export const makeClassificationProduct = () => factories['io.flow.internal.v0.models.classification_product']();
31814
32171
  export const makeClassificationProductHarmonization = () => factories['io.flow.internal.v0.models.classification_product_harmonization']();
@@ -31946,7 +32303,9 @@ export const makeDispute = () => factories['io.flow.internal.v0.models.dispute']
31946
32303
  export const makeDisputeAuthorizationReference = () => factories['io.flow.internal.v0.models.dispute_authorization_reference']();
31947
32304
  export const makeDisputeBillable = () => factories['io.flow.internal.v0.enums.dispute_billable']();
31948
32305
  export const makeDisputeCategory = () => factories['io.flow.internal.v0.enums.dispute_category']();
32306
+ export const makeDisputeDefenseOutcome = () => factories['io.flow.internal.v0.enums.dispute_defense_outcome']();
31949
32307
  export const makeDisputeDeleted = () => factories['io.flow.internal.v0.models.dispute_deleted']();
32308
+ export const makeDisputeDetail = () => factories['io.flow.internal.v0.models.dispute_detail']();
31950
32309
  export const makeDisputeDetails = () => factories['io.flow.internal.v0.unions.dispute_details']();
31951
32310
  export const makeDisputeDetailsAdyen = () => factories['io.flow.internal.v0.models.dispute_details_adyen']();
31952
32311
  export const makeDisputeDetailsPaypal = () => factories['io.flow.internal.v0.models.dispute_details_paypal']();
@@ -31961,6 +32320,7 @@ export const makeDisputeImportType = () => factories['io.flow.internal.v0.enums.
31961
32320
  export const makeDisputeLiability = () => factories['io.flow.internal.v0.enums.dispute_liability']();
31962
32321
  export const makeDisputeOrderReference = () => factories['io.flow.internal.v0.models.dispute_order_reference']();
31963
32322
  export const makeDisputeOrganizationReference = () => factories['io.flow.internal.v0.models.dispute_organization_reference']();
32323
+ export const makeDisputeOverrideUpdateForm = () => factories['io.flow.internal.v0.models.dispute_override_update_form']();
31964
32324
  export const makeDisputeProcessor = () => factories['io.flow.internal.v0.enums.dispute_processor']();
31965
32325
  export const makeDisputeReportingCategory = () => factories['io.flow.internal.v0.enums.dispute_reporting_category']();
31966
32326
  export const makeDisputeStatus = () => factories['io.flow.internal.v0.enums.dispute_status']();
@@ -31999,6 +32359,11 @@ export const makeDutyTransaction = () => factories['io.flow.internal.v0.models.d
31999
32359
  export const makeDutyTransactionDeleted = () => factories['io.flow.internal.v0.models.duty_transaction_deleted']();
32000
32360
  export const makeDutyTransactionType = () => factories['io.flow.internal.v0.enums.duty_transaction_type']();
32001
32361
  export const makeDutyTransactionUpserted = () => factories['io.flow.internal.v0.models.duty_transaction_upserted']();
32362
+ export const makeEldarItem = () => factories['io.flow.internal.v0.models.eldar_item']();
32363
+ export const makeEldarItemDeleted = () => factories['io.flow.internal.v0.models.eldar_item_deleted']();
32364
+ export const makeEldarItemForm = () => factories['io.flow.internal.v0.models.eldar_item_form']();
32365
+ export const makeEldarItemType = () => factories['io.flow.internal.v0.enums.eldar_item_type']();
32366
+ export const makeEldarItemUpserted = () => factories['io.flow.internal.v0.models.eldar_item_upserted']();
32002
32367
  export const makeEmailForm = () => factories['io.flow.internal.v0.models.email_form']();
32003
32368
  export const makeEmailModificationForm = () => factories['io.flow.internal.v0.models.email_modification_form']();
32004
32369
  export const makeEmptyAttribute = () => factories['io.flow.internal.v0.enums.empty_attribute']();
@@ -32156,6 +32521,9 @@ export const makeFulfillmentBusiness = () => factories['io.flow.internal.v0.mode
32156
32521
  export const makeFulfillmentCancel = () => factories['io.flow.internal.v0.models.fulfillment_cancel']();
32157
32522
  export const makeFulfillmentCarrier = () => factories['io.flow.internal.v0.models.fulfillment_carrier']();
32158
32523
  export const makeFulfillmentDeleted = () => factories['io.flow.internal.v0.models.fulfillment_deleted']();
32524
+ export const makeFulfillmentFallbacks = () => factories['io.flow.internal.v0.models.fulfillment_fallbacks']();
32525
+ export const makeFulfillmentFallbacksDeleted = () => factories['io.flow.internal.v0.models.fulfillment_fallbacks_deleted']();
32526
+ export const makeFulfillmentFallbacksUpserted = () => factories['io.flow.internal.v0.models.fulfillment_fallbacks_upserted']();
32159
32527
  export const makeFulfillmentInternalExperienceReference = () => factories['io.flow.internal.v0.models.fulfillment_internal_experience_reference']();
32160
32528
  export const makeFulfillmentOrigin = () => factories['io.flow.internal.v0.models.fulfillment_origin']();
32161
32529
  export const makeFulfillmentProof = () => factories['io.flow.internal.v0.unions.fulfillment_proof']();
@@ -32341,6 +32709,9 @@ export const makeLabelRequestError = () => factories['io.flow.internal.v0.models
32341
32709
  export const makeLabelRequestErrorDeleted = () => factories['io.flow.internal.v0.models.label_request_error_deleted']();
32342
32710
  export const makeLabelRequestErrorHandlingResponsibility = () => factories['io.flow.internal.v0.enums.label_request_error_handling_responsibility']();
32343
32711
  export const makeLabelRequestErrorUpserted = () => factories['io.flow.internal.v0.models.label_request_error_upserted']();
32712
+ export const makeLabelRequestResult = () => factories['io.flow.internal.v0.models.label_request_result']();
32713
+ export const makeLabelRequestResultOrganizationType = () => factories['io.flow.internal.v0.enums.label_request_result_organization_type']();
32714
+ export const makeLabelRequestResultState = () => factories['io.flow.internal.v0.enums.label_request_result_state']();
32344
32715
  export const makeLabelSummary = () => factories['io.flow.internal.v0.models.label_summary']();
32345
32716
  export const makeLabelSurchargeForm = () => factories['io.flow.internal.v0.models.label_surcharge_form']();
32346
32717
  export const makeLabelSurchargeSingleForm = () => factories['io.flow.internal.v0.models.label_surcharge_single_form']();
@@ -32512,6 +32883,7 @@ export const makeMixedBagWeight = () => factories['io.flow.internal.v0.enums.mix
32512
32883
  export const makeMoneyPercentage = () => factories['io.flow.internal.v0.models.money_percentage']();
32513
32884
  export const makeMoneyRule = () => factories['io.flow.internal.v0.unions.money_rule']();
32514
32885
  export const makeNatureOfSale = () => factories['io.flow.internal.v0.enums.nature_of_sale']();
32886
+ export const makeNegativeDebitMetrics = () => factories['io.flow.internal.v0.models.negative_debit_metrics']();
32515
32887
  export const makeNextBillingStatement = () => factories['io.flow.internal.v0.models.next_billing_statement']();
32516
32888
  export const makeNoCalculatedTaxAmount = () => factories['io.flow.internal.v0.models.no_calculated_tax_amount']();
32517
32889
  export const makeNoClassificationForm = () => factories['io.flow.internal.v0.models.no_classification_form']();
@@ -33272,6 +33644,9 @@ export const makeTracker = () => factories['io.flow.internal.v0.unions.tracker']
33272
33644
  export const makeTrackingAssuranceAnalysis = () => factories['io.flow.internal.v0.models.tracking_assurance_analysis']();
33273
33645
  export const makeTrackingAssuranceAnalysisDeleted = () => factories['io.flow.internal.v0.models.tracking_assurance_analysis_deleted']();
33274
33646
  export const makeTrackingAssuranceAnalysisUpserted = () => factories['io.flow.internal.v0.models.tracking_assurance_analysis_upserted']();
33647
+ export const makeTrackingAssuranceJob = () => factories['io.flow.internal.v0.models.tracking_assurance_job']();
33648
+ export const makeTrackingAssuranceJobDeleted = () => factories['io.flow.internal.v0.models.tracking_assurance_job_deleted']();
33649
+ export const makeTrackingAssuranceJobUpserted = () => factories['io.flow.internal.v0.models.tracking_assurance_job_upserted']();
33275
33650
  export const makeTrackingDebugForceTransitForm = () => factories['io.flow.internal.v0.models.tracking_debug_force_transit_form']();
33276
33651
  export const makeTrackingDebugLabel = () => factories['io.flow.internal.v0.models.tracking_debug_label']();
33277
33652
  export const makeTrackingDebugLabelEvent = () => factories['io.flow.internal.v0.models.tracking_debug_label_event']();
@@ -33280,6 +33655,10 @@ export const makeTrackingDeleted = () => factories['io.flow.internal.v0.models.t
33280
33655
  export const makeTrackingEvent = () => factories['io.flow.internal.v0.models.tracking_event']();
33281
33656
  export const makeTrackingIntegrationType = () => factories['io.flow.internal.v0.enums.tracking_integration_type']();
33282
33657
  export const makeTrackingLabelDeleted = () => factories['io.flow.internal.v0.models.tracking_label_deleted']();
33658
+ export const makeTrackingLabelDimensions = () => factories['io.flow.internal.v0.models.tracking_label_dimensions']();
33659
+ export const makeTrackingLabelDimensionsDeleted = () => factories['io.flow.internal.v0.models.tracking_label_dimensions_deleted']();
33660
+ export const makeTrackingLabelDimensionsSource = () => factories['io.flow.internal.v0.enums.tracking_label_dimensions_source']();
33661
+ export const makeTrackingLabelDimensionsUpserted = () => factories['io.flow.internal.v0.models.tracking_label_dimensions_upserted']();
33283
33662
  export const makeTrackingLabelEventDeletedV2 = () => factories['io.flow.internal.v0.models.tracking_label_event_deleted_v2']();
33284
33663
  export const makeTrackingLabelEventUpsertedV2 = () => factories['io.flow.internal.v0.models.tracking_label_event_upserted_v2']();
33285
33664
  export const makeTrackingLabelUpserted = () => factories['io.flow.internal.v0.models.tracking_label_upserted']();