@flowio/api-factories 0.0.119 → 0.0.122

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.
package/dist/esm/api.js CHANGED
@@ -96,6 +96,11 @@ var factories = {
96
96
  organization_ids: arrayOf(function () { return factories.string(); }),
97
97
  num_events: factories.long(),
98
98
  }); },
99
+ 'io.flow.ben.test.internal.v0.models.generate_load_rate': function () { return ({
100
+ organization_ids: arrayOf(function () { return factories.string(); }),
101
+ events_per_second: factories.long(),
102
+ duration_seconds: factories.long(),
103
+ }); },
99
104
  'io.flow.ben.test.internal.v0.models.generate_load_single_org': function () { return ({
100
105
  discriminator: 'generate_load_single_org',
101
106
  organization_id: factories.string(),
@@ -146,6 +151,7 @@ var factories = {
146
151
  'unsupported_order_edit',
147
152
  'order_allocation_duties_mismatch',
148
153
  'order_missing',
154
+ 'organization_deactivated',
149
155
  ]); },
150
156
  'io.flow.channel.internal.v0.enums.channel_order_acceptance_status': function () { return faker.helpers.arrayElement(['accepted', 'rejected', 'review', 'edit_review', 'edit_accepted']); },
151
157
  'io.flow.channel.internal.v0.enums.channel_service': function () { return faker.helpers.arrayElement(['payment', 'duty_tax_calculator', 'sellability', 'all']); },
@@ -522,6 +528,7 @@ var factories = {
522
528
  'io.flow.common.v0.models.line_item_form': function () { return ({
523
529
  number: factories.string(),
524
530
  quantity: factories.long(),
531
+ line_item_identifier: factories.string(),
525
532
  shipment_estimate: factories['io.flow.common.v0.models.datetime_range'](),
526
533
  price: factories['io.flow.common.v0.models.money'](),
527
534
  attributes: objectOf(function () { return factories.string(); }),
@@ -3638,6 +3645,89 @@ var factories = {
3638
3645
  ]);
3639
3646
  return f();
3640
3647
  },
3648
+ 'io.flow.tech.onboarding.playground.v0.enums.amrutha_item_type': function () { return faker.helpers.arrayElement(['physical', 'digital']); },
3649
+ 'io.flow.tech.onboarding.playground.v0.enums.bojana_item_type': function () { return faker.helpers.arrayElement(['physical', 'digital']); },
3650
+ 'io.flow.tech.onboarding.playground.v0.enums.chenglin_item_type': function () { return faker.helpers.arrayElement(['physical', 'digital']); },
3651
+ 'io.flow.tech.onboarding.playground.v0.enums.gabriel_item_type': function () { return faker.helpers.arrayElement(['physical', 'digital']); },
3652
+ 'io.flow.tech.onboarding.playground.v0.enums.raveena_item_type': function () { return faker.helpers.arrayElement(['physical', 'digital']); },
3653
+ 'io.flow.tech.onboarding.playground.v0.models.amrutha_item': function () { return ({
3654
+ id: factories.string(),
3655
+ number: factories.string(),
3656
+ amount: factories['io.flow.common.v0.models.price'](),
3657
+ description: factories.string(),
3658
+ type: factories['io.flow.tech.onboarding.playground.v0.enums.amrutha_item_type'](),
3659
+ added_on: factories.date_time_iso_8601(),
3660
+ }); },
3661
+ 'io.flow.tech.onboarding.playground.v0.models.amrutha_item_form': function () { return ({
3662
+ number: factories.string(),
3663
+ amount: factories['io.flow.common.v0.models.price'](),
3664
+ description: factories.string(),
3665
+ type: factories['io.flow.tech.onboarding.playground.v0.enums.amrutha_item_type'](),
3666
+ added_on: factories.date_time_iso_8601(),
3667
+ }); },
3668
+ 'io.flow.tech.onboarding.playground.v0.models.bojana_item': function () { return ({
3669
+ id: factories.string(),
3670
+ number: factories.string(),
3671
+ amount: factories['io.flow.common.v0.models.price'](),
3672
+ description: factories.string(),
3673
+ type: factories['io.flow.tech.onboarding.playground.v0.enums.bojana_item_type'](),
3674
+ added_on: factories.date_time_iso_8601(),
3675
+ }); },
3676
+ 'io.flow.tech.onboarding.playground.v0.models.bojana_item_form': function () { return ({
3677
+ number: factories.string(),
3678
+ amount: factories['io.flow.common.v0.models.price'](),
3679
+ description: factories.string(),
3680
+ type: factories['io.flow.tech.onboarding.playground.v0.enums.bojana_item_type'](),
3681
+ added_on: factories.date_time_iso_8601(),
3682
+ }); },
3683
+ 'io.flow.tech.onboarding.playground.v0.models.chenglin_item': function () { return ({
3684
+ id: factories.string(),
3685
+ number: factories.string(),
3686
+ amount: factories['io.flow.common.v0.models.price'](),
3687
+ description: factories.string(),
3688
+ type: factories['io.flow.tech.onboarding.playground.v0.enums.gabriel_item_type'](),
3689
+ added_on: factories.date_iso_8601(),
3690
+ }); },
3691
+ 'io.flow.tech.onboarding.playground.v0.models.chenglin_item_form': function () { return ({
3692
+ number: factories.string(),
3693
+ amount: factories['io.flow.common.v0.models.price'](),
3694
+ description: factories.string(),
3695
+ type: factories['io.flow.tech.onboarding.playground.v0.enums.gabriel_item_type'](),
3696
+ added_on: factories.date_iso_8601(),
3697
+ }); },
3698
+ 'io.flow.tech.onboarding.playground.v0.models.gabriel_item': function () { return ({
3699
+ id: factories.string(),
3700
+ number: factories.string(),
3701
+ amount: factories['io.flow.common.v0.models.price'](),
3702
+ description: factories.string(),
3703
+ type: factories['io.flow.tech.onboarding.playground.v0.enums.gabriel_item_type'](),
3704
+ added_on: factories.date_iso_8601(),
3705
+ }); },
3706
+ 'io.flow.tech.onboarding.playground.v0.models.gabriel_item_form': function () { return ({
3707
+ number: factories.string(),
3708
+ amount: factories['io.flow.common.v0.models.price'](),
3709
+ description: factories.string(),
3710
+ type: factories['io.flow.tech.onboarding.playground.v0.enums.gabriel_item_type'](),
3711
+ added_on: factories.date_iso_8601(),
3712
+ }); },
3713
+ 'io.flow.tech.onboarding.playground.v0.models.raveena_item': function () { return ({
3714
+ id: factories.string(),
3715
+ number: factories.string(),
3716
+ amount: factories['io.flow.common.v0.models.price'](),
3717
+ description: factories.string(),
3718
+ type: factories['io.flow.tech.onboarding.playground.v0.enums.raveena_item_type'](),
3719
+ added_on: factories.date_time_iso_8601(),
3720
+ }); },
3721
+ 'io.flow.tech.onboarding.playground.v0.models.raveena_item_form': function () { return ({
3722
+ number: factories.string(),
3723
+ amount: factories['io.flow.common.v0.models.price'](),
3724
+ description: factories.string(),
3725
+ type: factories['io.flow.tech.onboarding.playground.v0.enums.raveena_item_type'](),
3726
+ added_on: factories.date_time_iso_8601(),
3727
+ }); },
3728
+ 'io.flow.tech.onboarding.playground.v0.models.tech_onboarding_description': function () { return ({
3729
+ description: factories.string(),
3730
+ }); },
3641
3731
  'io.flow.v0.enums.abandoned_order_promotion_status': function () { return faker.helpers.arrayElement(['active', 'inactive']); },
3642
3732
  'io.flow.v0.enums.abandoned_order_setting_status': function () { return faker.helpers.arrayElement(['active', 'inactive']); },
3643
3733
  'io.flow.v0.enums.address_field_name': function () { return faker.helpers.arrayElement([
@@ -3825,6 +3915,8 @@ var factories = {
3825
3915
  'io.flow.v0.enums.event_type': function () { return faker.helpers.arrayElement([
3826
3916
  'test_upserted',
3827
3917
  'generate_load',
3918
+ 'amrutha_item_upserted',
3919
+ 'amrutha_item_deleted',
3828
3920
  'transaction_upserted',
3829
3921
  'organization_transaction_upserted',
3830
3922
  'organization_transaction_deleted',
@@ -3874,6 +3966,8 @@ var factories = {
3874
3966
  'consumer_invoice_deleted',
3875
3967
  'credit_memo_upserted',
3876
3968
  'credit_memo_deleted',
3969
+ 'fee_invoice_upserted',
3970
+ 'fee_invoice_deleted',
3877
3971
  'crossdock_shipment_upserted',
3878
3972
  'rate_deleted',
3879
3973
  'rate_upserted',
@@ -3885,6 +3979,8 @@ var factories = {
3885
3979
  'order_upserted_v2',
3886
3980
  'order_identifier_deleted_v2',
3887
3981
  'order_identifier_upserted_v3',
3982
+ 'order_state_upserted',
3983
+ 'order_state_deleted',
3888
3984
  'fraud_status_changed',
3889
3985
  'center_upserted',
3890
3986
  'center_deleted',
@@ -3909,6 +4005,8 @@ var factories = {
3909
4005
  'item_origin_deleted',
3910
4006
  'harmonized_landed_cost_upserted',
3911
4007
  'fully_harmonized_item_upserted',
4008
+ 'tariff_codes_upserted',
4009
+ 'tariff_codes_deleted',
3912
4010
  'label_deleted_v2',
3913
4011
  'label_upserted_v2',
3914
4012
  'notification_upserted_v2',
@@ -4010,9 +4108,20 @@ var factories = {
4010
4108
  'transfer',
4011
4109
  'negative_balance_guarantee',
4012
4110
  'sp',
4111
+ 'rev_share',
4013
4112
  ]); },
4113
+ 'io.flow.v0.enums.fee_invoice_type': function () { return faker.helpers.arrayElement(['mor_invoice', 'label_invoice', 'mor_credit_memo', 'label_credit_memo']); },
4014
4114
  'io.flow.v0.enums.flow_behavior': function () { return faker.helpers.arrayElement(['view_consumer_data']); },
4015
- 'io.flow.v0.enums.flow_entity': function () { return faker.helpers.arrayElement(['flow-usa', 'flow-irl', 'flow-can', 'ge-usa', 'ge-can', 'ge-gbr', 'ge-irl']); },
4115
+ 'io.flow.v0.enums.flow_entity': function () { return faker.helpers.arrayElement([
4116
+ 'flow-usa',
4117
+ 'flow-irl',
4118
+ 'flow-can',
4119
+ 'ge-usa',
4120
+ 'ge-can',
4121
+ 'ge-can-ship',
4122
+ 'ge-gbr',
4123
+ 'ge-irl',
4124
+ ]); },
4016
4125
  'io.flow.v0.enums.flow_role': function () { return faker.helpers.arrayElement([
4017
4126
  'organization_admin',
4018
4127
  'organization_merchant',
@@ -4087,6 +4196,7 @@ var factories = {
4087
4196
  'notification_requiring_crossdock',
4088
4197
  'flow_simulation_sync',
4089
4198
  'autogenerated',
4199
+ 'legacy_shopify_graphql_server',
4090
4200
  ]); },
4091
4201
  'io.flow.v0.enums.label_trigger_method': function () { return faker.helpers.arrayElement(['autogenerated', 'on_demand']); },
4092
4202
  'io.flow.v0.enums.lane_direction': function () { return faker.helpers.arrayElement(['outbound', 'return']); },
@@ -4226,9 +4336,10 @@ var factories = {
4226
4336
  'surcharges',
4227
4337
  'tip',
4228
4338
  ]); },
4229
- 'io.flow.v0.enums.order_price_fee_type': function () { return faker.helpers.arrayElement(['service', 'fx', 'tax', 'duties', 'tax_and_duties', 'product']); },
4339
+ 'io.flow.v0.enums.order_price_fee_type': function () { return faker.helpers.arrayElement(['service', 'fx', 'tax', 'duties', 'tax_and_duties', 'product', 'mor_tax']); },
4230
4340
  'io.flow.v0.enums.order_refund_summary_includes': function () { return faker.helpers.arrayElement(['duties', 'vat', 'shipping']); },
4231
4341
  'io.flow.v0.enums.order_refund_summary_partial_charged': function () { return faker.helpers.arrayElement(['per_item', 'for_order', 'by_value_percentage', 'by_quantity_percentage']); },
4342
+ 'io.flow.v0.enums.order_state_status': function () { return faker.helpers.arrayElement(['pending', 'accepted', 'rejected']); },
4232
4343
  'io.flow.v0.enums.order_status': function () { return faker.helpers.arrayElement(['open', 'submitted']); },
4233
4344
  'io.flow.v0.enums.order_storage': function () { return faker.helpers.arrayElement(['do_not_persist', 'persist']); },
4234
4345
  'io.flow.v0.enums.order_type': function () { return faker.helpers.arrayElement(['standard', 'replacement', 'edit']); },
@@ -4472,7 +4583,14 @@ var factories = {
4472
4583
  'external_service_unavailable',
4473
4584
  ]); },
4474
4585
  'io.flow.v0.enums.sellability_request_status': function () { return faker.helpers.arrayElement(['commit']); },
4475
- 'io.flow.v0.enums.sellability_result_error_code': function () { return faker.helpers.arrayElement(['insufficient_details', 'generic_error']); },
4586
+ 'io.flow.v0.enums.sellability_result_error_code': function () { return faker.helpers.arrayElement([
4587
+ 'insufficient_details',
4588
+ 'ineligible_category',
4589
+ 'wait_for_high_fidelity',
4590
+ 'external_service_unavailable',
4591
+ 'generic_error',
4592
+ 'catalog_processing_threshold',
4593
+ ]); },
4476
4594
  'io.flow.v0.enums.sellability_result_status': function () { return faker.helpers.arrayElement(['in_review', 'succeeded', 'failed']); },
4477
4595
  'io.flow.v0.enums.sellability_screening_mode': function () { return faker.helpers.arrayElement(['pre_onboarding', 'default_on', 'active']); },
4478
4596
  'io.flow.v0.enums.shipment_integration_type': function () { return faker.helpers.arrayElement(['direct', 'information', 'preadvice']); },
@@ -4545,6 +4663,12 @@ var factories = {
4545
4663
  'Expired_001',
4546
4664
  ]); },
4547
4665
  'io.flow.v0.enums.surcharge_responsible_party': function () { return faker.helpers.arrayElement(['organization', 'customer']); },
4666
+ 'io.flow.v0.enums.tax_and_duty_inclusivity_setting': function () { return faker.helpers.arrayElement([
4667
+ 'duty_exclusive_tax_exclusive',
4668
+ 'duty_inclusive_tax_exclusive',
4669
+ 'duty_exclusive_tax_inclusive',
4670
+ 'duty_inclusive_tax_inclusive',
4671
+ ]); },
4548
4672
  'io.flow.v0.enums.tax_applicability': function () { return faker.helpers.arrayElement(['none', 'all']); },
4549
4673
  'io.flow.v0.enums.tax_duty_calculator_validation_error_code': function () { return faker.helpers.arrayElement([
4550
4674
  'generic_error',
@@ -4581,6 +4705,7 @@ var factories = {
4581
4705
  'wyol_shipment_above_de_min',
4582
4706
  'full_refund_without_shipment',
4583
4707
  'unfulfilled_order_above_de_min',
4708
+ 'order_cancellation_without_capture',
4584
4709
  ]); },
4585
4710
  'io.flow.v0.enums.tax_jurisdiction_type': function () { return faker.helpers.arrayElement(['country', 'province']); },
4586
4711
  'io.flow.v0.enums.tax_report_type': function () { return faker.helpers.arrayElement(['consumer', 'b2b']); },
@@ -4647,6 +4772,9 @@ var factories = {
4647
4772
  'merchant_fee',
4648
4773
  'b2b_tax',
4649
4774
  'b2b_tax_refund',
4775
+ 'b2b_fee_mor_tax',
4776
+ 'b2b_fee_shipping_tax',
4777
+ 'flat_rate_label',
4650
4778
  ]); },
4651
4779
  'io.flow.v0.enums.transfer_status': function () { return faker.helpers.arrayElement(['succeeded', 'canceled']); },
4652
4780
  'io.flow.v0.enums.transfer_type': function () { return faker.helpers.arrayElement([
@@ -5094,6 +5222,18 @@ var factories = {
5094
5222
  discriminator: 'amount_margin_form',
5095
5223
  margin: factories['io.flow.v0.models.money'](),
5096
5224
  }); },
5225
+ 'io.flow.v0.models.amrutha_item_deleted': function () { return ({
5226
+ discriminator: 'amrutha_item_deleted',
5227
+ event_id: factories.string(),
5228
+ timestamp: factories.date_time_iso_8601(),
5229
+ id: factories.string(),
5230
+ }); },
5231
+ 'io.flow.v0.models.amrutha_item_upserted': function () { return ({
5232
+ discriminator: 'amrutha_item_upserted',
5233
+ event_id: factories.string(),
5234
+ timestamp: factories.date_time_iso_8601(),
5235
+ item: factories['io.flow.tech.onboarding.playground.v0.models.amrutha_item'](),
5236
+ }); },
5097
5237
  'io.flow.v0.models.analytics_export_type': function () { return ({
5098
5238
  discriminator: 'analytics_export_type',
5099
5239
  from: factories.date_time_iso_8601(),
@@ -5355,6 +5495,7 @@ var factories = {
5355
5495
  b2b_invoice_type: factories['io.flow.v0.enums.b2b_invoice_type'](),
5356
5496
  center: factories['io.flow.v0.models.consumer_invoice_center_reference'](),
5357
5497
  order: factories['io.flow.v0.models.consumer_invoice_order_summary'](),
5498
+ voids_b2b_invoice: factories.boolean(),
5358
5499
  }); },
5359
5500
  'io.flow.v0.models.b2b_credit_memo_deleted': function () { return ({
5360
5501
  discriminator: 'b2b_credit_memo_deleted',
@@ -5441,13 +5582,9 @@ var factories = {
5441
5582
  'io.flow.v0.models.bank_account_info_kor': function () { return ({
5442
5583
  discriminator: 'kor',
5443
5584
  name: factories.string(),
5444
- address: factories['io.flow.v0.models.address'](),
5445
- phone: factories.string(),
5446
- email: factories.string(),
5447
5585
  bank_account_number: factories.string(),
5448
5586
  bank_routing_number: factories.string(),
5449
5587
  bank_name: factories.string(),
5450
- bank_address: factories['io.flow.v0.models.address'](),
5451
5588
  }); },
5452
5589
  'io.flow.v0.models.bank_account_info_usa': function () { return ({
5453
5590
  discriminator: 'usa',
@@ -6296,7 +6433,6 @@ var factories = {
6296
6433
  beneficiary_details: factories['io.flow.v0.models.merchant_onboarding_beneficiary_details'](),
6297
6434
  other_trade_sector: factories.string(),
6298
6435
  center_contact: factories['io.flow.v0.models.operations_contact'](),
6299
- center_address: factories['io.flow.v0.models.address'](),
6300
6436
  average_order_weight: factories.decimal(),
6301
6437
  average_order_weight_unit: factories['io.flow.v0.enums.unit_of_measurement'](),
6302
6438
  package_dimensions: arrayOf(function () { return factories['io.flow.v0.models.dimension'](); }),
@@ -6323,7 +6459,6 @@ var factories = {
6323
6459
  beneficiary_details: factories['io.flow.v0.models.merchant_onboarding_beneficiary_details'](),
6324
6460
  other_trade_sector: factories.string(),
6325
6461
  center_contact: factories['io.flow.v0.models.operations_contact'](),
6326
- center_address: factories['io.flow.v0.models.address'](),
6327
6462
  average_order_weight: factories.decimal(),
6328
6463
  average_order_weight_unit: factories['io.flow.v0.enums.unit_of_measurement'](),
6329
6464
  package_dimensions: arrayOf(function () { return factories['io.flow.v0.models.dimension'](); }),
@@ -7516,6 +7651,34 @@ var factories = {
7516
7651
  amount: factories.decimal(),
7517
7652
  description: factories.string(),
7518
7653
  }); },
7654
+ 'io.flow.v0.models.fee_invoice': function () { return ({
7655
+ id: factories.string(),
7656
+ number: factories.string(),
7657
+ invoice_type: factories['io.flow.v0.enums.fee_invoice_type'](),
7658
+ buyer: factories['io.flow.v0.models.merchant_of_record_entity'](),
7659
+ seller: factories['io.flow.v0.models.merchant_of_record_entity'](),
7660
+ date: factories.date_time_iso_8601(),
7661
+ b2b_tax_transaction_id: factories.string(),
7662
+ order_number: factories.string(),
7663
+ tax: factories['io.flow.v0.models.money'](),
7664
+ tax_lines: arrayOf(function () { return factories['io.flow.v0.models.invoice_tax_line'](); }),
7665
+ lines: arrayOf(function () { return factories['io.flow.v0.unions.consumer_invoice_line'](); }),
7666
+ documents: arrayOf(function () { return factories['io.flow.v0.models.consumer_invoice_document'](); }),
7667
+ }); },
7668
+ 'io.flow.v0.models.fee_invoice_deleted': function () { return ({
7669
+ discriminator: 'fee_invoice_deleted',
7670
+ event_id: factories.string(),
7671
+ timestamp: factories.date_time_iso_8601(),
7672
+ organization: factories.string(),
7673
+ id: factories.string(),
7674
+ }); },
7675
+ 'io.flow.v0.models.fee_invoice_upserted': function () { return ({
7676
+ discriminator: 'fee_invoice_upserted',
7677
+ event_id: factories.string(),
7678
+ timestamp: factories.date_time_iso_8601(),
7679
+ organization: factories.string(),
7680
+ fee_invoice: factories['io.flow.v0.models.fee_invoice'](),
7681
+ }); },
7519
7682
  'io.flow.v0.models.fee_weight': function () { return ({
7520
7683
  weight: factories.decimal(),
7521
7684
  unit: factories['io.flow.v0.enums.unit_of_measurement'](),
@@ -7899,6 +8062,10 @@ var factories = {
7899
8062
  destination: factories.string(),
7900
8063
  sort: factories.string(),
7901
8064
  }); },
8065
+ 'io.flow.v0.models.harmonization_tariff_code': function () { return ({
8066
+ tariff_code: factories.string(),
8067
+ destination: factories.string(),
8068
+ }); },
7902
8069
  'io.flow.v0.models.harmonization_tariff_codes_export_type': function () { return ({
7903
8070
  discriminator: 'harmonization_tariff_codes_export_type',
7904
8071
  sort: factories.string(),
@@ -8594,6 +8761,7 @@ var factories = {
8594
8761
  'io.flow.v0.models.line_item_form': function () { return ({
8595
8762
  number: factories.string(),
8596
8763
  quantity: factories.long(),
8764
+ line_item_identifier: factories.string(),
8597
8765
  shipment_estimate: factories['io.flow.v0.models.datetime_range'](),
8598
8766
  price: factories['io.flow.v0.models.money'](),
8599
8767
  attributes: objectOf(function () { return factories.string(); }),
@@ -9094,6 +9262,7 @@ var factories = {
9094
9262
  company: factories.string(),
9095
9263
  email: factories.string(),
9096
9264
  phone: factories.string(),
9265
+ address: factories['io.flow.v0.models.address'](),
9097
9266
  }); },
9098
9267
  'io.flow.v0.models.option_weight_estimates': function () { return ({
9099
9268
  gravitational: factories['io.flow.v0.models.measurement'](),
@@ -9500,6 +9669,42 @@ var factories = {
9500
9669
  source_url: factories.string(),
9501
9670
  filename: factories.string(),
9502
9671
  }); },
9672
+ 'io.flow.v0.models.order_state': function () { return ({
9673
+ id: factories.string(),
9674
+ order_number: factories.string(),
9675
+ external_order_reference: factories.string(),
9676
+ payment_requests: arrayOf(function () { return factories['io.flow.v0.models.payment_request_reference'](); }),
9677
+ status: factories['io.flow.v0.enums.order_state_status'](),
9678
+ rejection_reasons: arrayOf(function () { return factories['io.flow.v0.unions.order_state_rejection_reason'](); }),
9679
+ }); },
9680
+ 'io.flow.v0.models.order_state_deleted': function () { return ({
9681
+ discriminator: 'order_state_deleted',
9682
+ event_id: factories.string(),
9683
+ timestamp: factories.date_time_iso_8601(),
9684
+ organization: factories.string(),
9685
+ channel_id: factories.string(),
9686
+ id: factories.string(),
9687
+ }); },
9688
+ 'io.flow.v0.models.order_state_rejection_reason_domestic_order': function () { return ({
9689
+ discriminator: 'order_state_rejection_reason_domestic_order',
9690
+ destination_address: factories['io.flow.v0.models.address'](),
9691
+ }); },
9692
+ 'io.flow.v0.models.order_state_rejection_reason_items_empty': function () { return ({
9693
+ discriminator: 'order_state_rejection_reason_items_empty',
9694
+ line_items: arrayOf(function () { return factories.string(); }),
9695
+ }); },
9696
+ 'io.flow.v0.models.order_state_rejection_reason_restricted_item': function () { return ({
9697
+ discriminator: 'order_state_rejection_reason_restricted_item',
9698
+ item_numbers: arrayOf(function () { return factories.string(); }),
9699
+ }); },
9700
+ 'io.flow.v0.models.order_state_upserted': function () { return ({
9701
+ discriminator: 'order_state_upserted',
9702
+ event_id: factories.string(),
9703
+ timestamp: factories.date_time_iso_8601(),
9704
+ organization: factories.string(),
9705
+ channel_id: factories.string(),
9706
+ order_state: factories['io.flow.v0.models.order_state'](),
9707
+ }); },
9503
9708
  'io.flow.v0.models.order_submission_form': function () { return ({
9504
9709
  identifiers: arrayOf(function () { return factories['io.flow.v0.models.order_submission_identifier_form'](); }),
9505
9710
  }); },
@@ -10900,6 +11105,10 @@ var factories = {
10900
11105
  hs_code: factories.string(),
10901
11106
  restricted_regions_by_type: arrayOf(function () { return factories['io.flow.v0.models.sellability_region_result'](); }),
10902
11107
  needs_action_attributes: arrayOf(function () { return factories['io.flow.v0.models.needs_action_attributes'](); }),
11108
+ fingerprint: factories.string(),
11109
+ restriction_created_at: factories.date_time_iso_8601(),
11110
+ first_reviewed_at: factories.date_time_iso_8601(),
11111
+ seconds_to_first_review: factories.long(),
10903
11112
  }); },
10904
11113
  'io.flow.v0.models.product_restriction_result_deleted': function () { return ({
10905
11114
  discriminator: 'product_restriction_result_deleted',
@@ -10935,6 +11144,7 @@ var factories = {
10935
11144
  dry_run: factories.boolean(),
10936
11145
  }); },
10937
11146
  'io.flow.v0.models.product_sellability_result': function () { return ({
11147
+ id: factories.string(),
10938
11148
  merchant_id: factories.string(),
10939
11149
  product_id: factories.string(),
10940
11150
  restricted_regions: arrayOf(function () { return factories['io.flow.v0.models.sellability_restricted_region'](); }),
@@ -10948,6 +11158,8 @@ var factories = {
10948
11158
  event_id: factories.string(),
10949
11159
  timestamp: factories.date_time_iso_8601(),
10950
11160
  organization: factories.string(),
11161
+ merchant: factories.string(),
11162
+ channel_id: factories.string(),
10951
11163
  id: factories.string(),
10952
11164
  }); },
10953
11165
  'io.flow.v0.models.product_sellability_result_upserted': function () { return ({
@@ -10955,6 +11167,8 @@ var factories = {
10955
11167
  event_id: factories.string(),
10956
11168
  timestamp: factories.date_time_iso_8601(),
10957
11169
  organization: factories.string(),
11170
+ merchant: factories.string(),
11171
+ channel_id: factories.string(),
10958
11172
  product_sellability_result: factories['io.flow.v0.models.product_sellability_result'](),
10959
11173
  }); },
10960
11174
  'io.flow.v0.models.product_taxonomy_category': function () { return ({
@@ -11150,6 +11364,11 @@ var factories = {
11150
11364
  id: factories.string(),
11151
11365
  name: factories.string(),
11152
11366
  }); },
11367
+ 'io.flow.v0.models.ratecard_data': function () { return ({
11368
+ dhlParcelDistributionCenter: factories.string(),
11369
+ glbeRatecardMetadataLaneIdentifier: factories.string(),
11370
+ pickupCenter: factories.string(),
11371
+ }); },
11153
11372
  'io.flow.v0.models.ratecard_deleted': function () { return ({
11154
11373
  discriminator: 'ratecard_deleted',
11155
11374
  event_id: factories.string(),
@@ -11174,12 +11393,6 @@ var factories = {
11174
11393
  duties_owed: factories['io.flow.v0.models.money'](),
11175
11394
  commercial_invoice_mode: factories['io.flow.v0.enums.commercial_invoice_mode'](),
11176
11395
  }); },
11177
- 'io.flow.v0.models.ratecard_estimate_summary_form': function () { return ({
11178
- origin: factories.string(),
11179
- destination: factories.string(),
11180
- service: factories.string(),
11181
- center_key: factories.string(),
11182
- }); },
11183
11396
  'io.flow.v0.models.ratecard_estimate_v1': function () { return ({
11184
11397
  discriminator: 'ratecard_estimate_v1',
11185
11398
  service: factories['io.flow.v0.models.ratecard_service_summary'](),
@@ -11242,7 +11455,7 @@ var factories = {
11242
11455
  glbe_shipping_method_id: factories.string(),
11243
11456
  glbe_proposition_name: factories.string(),
11244
11457
  channel_revenue_share_percentage: factories.decimal(),
11245
- data: objectOf(function () { return factories.string(); }),
11458
+ data: factories['io.flow.v0.models.ratecard_data'](),
11246
11459
  }); },
11247
11460
  'io.flow.v0.models.ratecard_lane': function () { return ({
11248
11461
  id: factories.string(),
@@ -11791,11 +12004,13 @@ var factories = {
11791
12004
  'io.flow.v0.models.sellability_needs_action_attributes': function () { return ({
11792
12005
  reason_code: factories.string(),
11793
12006
  category_metafield_handles: arrayOf(function () { return factories.string(); }),
12007
+ category_metafield_ids: arrayOf(function () { return factories.string(); }),
11794
12008
  require_msds: factories.boolean(),
11795
12009
  }); },
11796
12010
  'io.flow.v0.models.sellability_reason_with_regions': function () { return ({
11797
12011
  reason: factories.string(),
11798
12012
  regions: arrayOf(function () { return factories.string(); }),
12013
+ review_status: factories.string(),
11799
12014
  }); },
11800
12015
  'io.flow.v0.models.sellability_region_result': function () { return ({
11801
12016
  type: factories['io.flow.v0.enums.rule_effect_type'](),
@@ -12207,6 +12422,7 @@ var factories = {
12207
12422
  weight_break: factories.decimal(),
12208
12423
  }); },
12209
12424
  'io.flow.v0.models.shipping_rate_estimate_request': function () { return ({
12425
+ carrier_id: factories.string(),
12210
12426
  origin_address: factories['io.flow.v0.models.address'](),
12211
12427
  destination_address: factories['io.flow.v0.models.address'](),
12212
12428
  package_dimensions: factories['io.flow.v0.models.dimension'](),
@@ -12706,6 +12922,26 @@ var factories = {
12706
12922
  key: factories['io.flow.v0.enums.delivery_option_cost_detail_component_key'](),
12707
12923
  available: arrayOf(function () { return factories['io.flow.v0.models.surcharge_responsible_party_display'](); }),
12708
12924
  }); },
12925
+ 'io.flow.v0.models.tariff_codes': function () { return ({
12926
+ item_number: factories.string(),
12927
+ product_id: factories.string(),
12928
+ hs6_code: factories.string(),
12929
+ codes: arrayOf(function () { return factories['io.flow.v0.models.harmonization_tariff_code'](); }),
12930
+ }); },
12931
+ 'io.flow.v0.models.tariff_codes_deleted': function () { return ({
12932
+ discriminator: 'tariff_codes_deleted',
12933
+ event_id: factories.string(),
12934
+ timestamp: factories.date_time_iso_8601(),
12935
+ organization: factories.string(),
12936
+ id: factories.string(),
12937
+ }); },
12938
+ 'io.flow.v0.models.tariff_codes_upserted': function () { return ({
12939
+ discriminator: 'tariff_codes_upserted',
12940
+ event_id: factories.string(),
12941
+ timestamp: factories.date_time_iso_8601(),
12942
+ organization: factories.string(),
12943
+ tariff_codes: factories['io.flow.v0.models.tariff_codes'](),
12944
+ }); },
12709
12945
  'io.flow.v0.models.tax': function () { return ({
12710
12946
  name: factories.string(),
12711
12947
  rate: factories.decimal(),
@@ -12841,6 +13077,8 @@ var factories = {
12841
13077
  discriminator: 'test_upserted',
12842
13078
  event_id: factories.string(),
12843
13079
  timestamp: factories.date_time_iso_8601(),
13080
+ organization: factories.string(),
13081
+ channel_id: factories.string(),
12844
13082
  test: factories['io.flow.ben.test.internal.v0.models.test'](),
12845
13083
  }); },
12846
13084
  'io.flow.v0.models.third_party_logistics_partner': function () { return ({
@@ -13210,11 +13448,27 @@ var factories = {
13210
13448
  'io.flow.v0.models.transaction_metadata_failed_payout_reference': function () { return ({
13211
13449
  id: factories.string(),
13212
13450
  }); },
13451
+ 'io.flow.v0.models.transaction_metadata_flat_rate_label': function () { return ({
13452
+ discriminator: 'flat_rate_label',
13453
+ flat_rate: factories.decimal(),
13454
+ coefficient: factories.decimal(),
13455
+ }); },
13213
13456
  'io.flow.v0.models.transaction_metadata_manual': function () { return ({
13214
13457
  discriminator: 'manual',
13215
13458
  description: factories.string(),
13216
13459
  original: factories['io.flow.v0.models.transaction_metadata_original_transaction'](),
13217
13460
  url: factories.string(),
13461
+ recoup: factories.boolean(),
13462
+ }); },
13463
+ 'io.flow.v0.models.transaction_metadata_merchant_fee': function () { return ({
13464
+ discriminator: 'merchant_fee',
13465
+ items: arrayOf(function () { return factories['io.flow.v0.models.transaction_metadata_merchant_fee_item'](); }),
13466
+ }); },
13467
+ 'io.flow.v0.models.transaction_metadata_merchant_fee_item': function () { return ({
13468
+ type: factories.string(),
13469
+ amount: factories.decimal(),
13470
+ local_amount: factories.decimal(),
13471
+ description: factories.string(),
13218
13472
  }); },
13219
13473
  'io.flow.v0.models.transaction_metadata_original_transaction': function () { return ({
13220
13474
  id: factories.string(),
@@ -13790,6 +14044,8 @@ var factories = {
13790
14044
  var f = faker.helpers.arrayElement([
13791
14045
  function () { return factories['io.flow.v0.models.test_upserted'](); },
13792
14046
  function () { return factories['io.flow.v0.models.generate_load'](); },
14047
+ function () { return factories['io.flow.v0.models.amrutha_item_upserted'](); },
14048
+ function () { return factories['io.flow.v0.models.amrutha_item_deleted'](); },
13793
14049
  function () { return factories['io.flow.v0.models.transaction_upserted'](); },
13794
14050
  function () { return factories['io.flow.v0.models.organization_transaction_upserted'](); },
13795
14051
  function () { return factories['io.flow.v0.models.organization_transaction_deleted'](); },
@@ -13839,6 +14095,8 @@ var factories = {
13839
14095
  function () { return factories['io.flow.v0.models.consumer_invoice_deleted'](); },
13840
14096
  function () { return factories['io.flow.v0.models.credit_memo_upserted'](); },
13841
14097
  function () { return factories['io.flow.v0.models.credit_memo_deleted'](); },
14098
+ function () { return factories['io.flow.v0.models.fee_invoice_upserted'](); },
14099
+ function () { return factories['io.flow.v0.models.fee_invoice_deleted'](); },
13842
14100
  function () { return factories['io.flow.v0.models.crossdock_shipment_upserted'](); },
13843
14101
  function () { return factories['io.flow.v0.models.rate_deleted'](); },
13844
14102
  function () { return factories['io.flow.v0.models.rate_upserted'](); },
@@ -13850,6 +14108,8 @@ var factories = {
13850
14108
  function () { return factories['io.flow.v0.models.order_upserted_v2'](); },
13851
14109
  function () { return factories['io.flow.v0.models.order_identifier_deleted_v2'](); },
13852
14110
  function () { return factories['io.flow.v0.models.order_identifier_upserted_v3'](); },
14111
+ function () { return factories['io.flow.v0.models.order_state_upserted'](); },
14112
+ function () { return factories['io.flow.v0.models.order_state_deleted'](); },
13853
14113
  function () { return factories['io.flow.v0.models.fraud_status_changed'](); },
13854
14114
  function () { return factories['io.flow.v0.models.center_upserted'](); },
13855
14115
  function () { return factories['io.flow.v0.models.center_deleted'](); },
@@ -13874,6 +14134,8 @@ var factories = {
13874
14134
  function () { return factories['io.flow.v0.models.item_origin_deleted'](); },
13875
14135
  function () { return factories['io.flow.v0.models.harmonized_landed_cost_upserted'](); },
13876
14136
  function () { return factories['io.flow.v0.models.fully_harmonized_item_upserted'](); },
14137
+ function () { return factories['io.flow.v0.models.tariff_codes_upserted'](); },
14138
+ function () { return factories['io.flow.v0.models.tariff_codes_deleted'](); },
13877
14139
  function () { return factories['io.flow.v0.models.label_deleted_v2'](); },
13878
14140
  function () { return factories['io.flow.v0.models.label_upserted_v2'](); },
13879
14141
  function () { return factories['io.flow.v0.models.notification_upserted_v2'](); },
@@ -14198,6 +14460,14 @@ var factories = {
14198
14460
  ]);
14199
14461
  return f();
14200
14462
  },
14463
+ 'io.flow.v0.unions.order_state_rejection_reason': function () {
14464
+ var f = faker.helpers.arrayElement([
14465
+ function () { return factories['io.flow.v0.models.order_state_rejection_reason_restricted_item'](); },
14466
+ function () { return factories['io.flow.v0.models.order_state_rejection_reason_domestic_order'](); },
14467
+ function () { return factories['io.flow.v0.models.order_state_rejection_reason_items_empty'](); },
14468
+ ]);
14469
+ return f();
14470
+ },
14201
14471
  'io.flow.v0.unions.partner_center_fee': function () {
14202
14472
  var f = faker.helpers.arrayElement([
14203
14473
  function () { return factories['io.flow.v0.models.commercial_invoice_fee'](); },
@@ -14591,6 +14861,8 @@ var factories = {
14591
14861
  function () { return factories['io.flow.v0.models.transaction_metadata_failed_payout'](); },
14592
14862
  function () { return factories['io.flow.v0.models.transaction_metadata_payment_transaction'](); },
14593
14863
  function () { return factories['io.flow.v0.models.transaction_metadata_tax_duty'](); },
14864
+ function () { return factories['io.flow.v0.models.transaction_metadata_merchant_fee'](); },
14865
+ function () { return factories['io.flow.v0.models.transaction_metadata_flat_rate_label'](); },
14594
14866
  ]);
14595
14867
  return f();
14596
14868
  },
@@ -14670,6 +14942,8 @@ export var makeAllocationUpsertedV2 = function () { return factories['io.flow.v0
14670
14942
  export var makeAllocationV2 = function () { return factories['io.flow.v0.models.allocation_v2'](); };
14671
14943
  export var makeAmountMargin = function () { return factories['io.flow.v0.models.amount_margin'](); };
14672
14944
  export var makeAmountMarginForm = function () { return factories['io.flow.v0.models.amount_margin_form'](); };
14945
+ export var makeAmruthaItemDeleted = function () { return factories['io.flow.v0.models.amrutha_item_deleted'](); };
14946
+ export var makeAmruthaItemUpserted = function () { return factories['io.flow.v0.models.amrutha_item_upserted'](); };
14673
14947
  export var makeAnalyticsExportType = function () { return factories['io.flow.v0.models.analytics_export_type'](); };
14674
14948
  export var makeApplePayMerchantValidationPayload = function () { return factories['io.flow.v0.models.apple_pay_merchant_validation_payload'](); };
14675
14949
  export var makeApplepaySdkCreateResultActionDetails = function () { return factories['io.flow.v0.models.applepay_sdk_create_result_action_details'](); };
@@ -15156,6 +15430,10 @@ export var makeExternalCard = function () { return factories['io.flow.v0.models.
15156
15430
  export var makeExternalOrderSummary = function () { return factories['io.flow.v0.models.external_order_summary'](); };
15157
15431
  export var makeFeeDeduction = function () { return factories['io.flow.v0.models.fee_deduction'](); };
15158
15432
  export var makeFeeDeductionType = function () { return factories['io.flow.v0.enums.fee_deduction_type'](); };
15433
+ export var makeFeeInvoice = function () { return factories['io.flow.v0.models.fee_invoice'](); };
15434
+ export var makeFeeInvoiceDeleted = function () { return factories['io.flow.v0.models.fee_invoice_deleted'](); };
15435
+ export var makeFeeInvoiceType = function () { return factories['io.flow.v0.enums.fee_invoice_type'](); };
15436
+ export var makeFeeInvoiceUpserted = function () { return factories['io.flow.v0.models.fee_invoice_upserted'](); };
15159
15437
  export var makeFeeWeight = function () { return factories['io.flow.v0.models.fee_weight'](); };
15160
15438
  export var makeFieldValidationMax = function () { return factories['io.flow.v0.models.field_validation_max'](); };
15161
15439
  export var makeFieldValidationMin = function () { return factories['io.flow.v0.models.field_validation_min'](); };
@@ -15243,6 +15521,7 @@ export var makeHarmonizationDocument = function () { return factories['io.flow.v
15243
15521
  export var makeHarmonizationHs10ExportType = function () { return factories['io.flow.v0.models.harmonization_hs10_export_type'](); };
15244
15522
  export var makeHarmonizationHs6ExportType = function () { return factories['io.flow.v0.models.harmonization_hs6_export_type'](); };
15245
15523
  export var makeHarmonizationOverviewExportType = function () { return factories['io.flow.v0.models.harmonization_overview_export_type'](); };
15524
+ export var makeHarmonizationTariffCode = function () { return factories['io.flow.v0.models.harmonization_tariff_code'](); };
15246
15525
  export var makeHarmonizationTariffCodesExportType = function () { return factories['io.flow.v0.models.harmonization_tariff_codes_export_type'](); };
15247
15526
  export var makeHarmonizedCategoryReference = function () { return factories['io.flow.v0.models.harmonized_category_reference'](); };
15248
15527
  export var makeHarmonizedItem = function () { return factories['io.flow.v0.models.harmonized_item'](); };
@@ -15559,6 +15838,14 @@ export var makeOrderRulesSummary = function () { return factories['io.flow.v0.mo
15559
15838
  export var makeOrderServiceChange = function () { return factories['io.flow.v0.models.order_service_change'](); };
15560
15839
  export var makeOrderServiceChangeForm = function () { return factories['io.flow.v0.models.order_service_change_form'](); };
15561
15840
  export var makeOrderServiceChangeRequestData = function () { return factories['io.flow.v0.models.order_service_change_request_data'](); };
15841
+ export var makeOrderState = function () { return factories['io.flow.v0.models.order_state'](); };
15842
+ export var makeOrderStateDeleted = function () { return factories['io.flow.v0.models.order_state_deleted'](); };
15843
+ export var makeOrderStateRejectionReason = function () { return factories['io.flow.v0.unions.order_state_rejection_reason'](); };
15844
+ export var makeOrderStateRejectionReasonDomesticOrder = function () { return factories['io.flow.v0.models.order_state_rejection_reason_domestic_order'](); };
15845
+ export var makeOrderStateRejectionReasonItemsEmpty = function () { return factories['io.flow.v0.models.order_state_rejection_reason_items_empty'](); };
15846
+ export var makeOrderStateRejectionReasonRestrictedItem = function () { return factories['io.flow.v0.models.order_state_rejection_reason_restricted_item'](); };
15847
+ export var makeOrderStateStatus = function () { return factories['io.flow.v0.enums.order_state_status'](); };
15848
+ export var makeOrderStateUpserted = function () { return factories['io.flow.v0.models.order_state_upserted'](); };
15562
15849
  export var makeOrderStatus = function () { return factories['io.flow.v0.enums.order_status'](); };
15563
15850
  export var makeOrderStorage = function () { return factories['io.flow.v0.enums.order_storage'](); };
15564
15851
  export var makeOrderSubmissionForm = function () { return factories['io.flow.v0.models.order_submission_form'](); };
@@ -15894,10 +16181,10 @@ export var makeRateUpsertedV3 = function () { return factories['io.flow.v0.model
15894
16181
  export var makeRateVersion = function () { return factories['io.flow.v0.models.rate_version'](); };
15895
16182
  export var makeRatecard = function () { return factories['io.flow.v0.models.ratecard'](); };
15896
16183
  export var makeRatecardCarrierSummary = function () { return factories['io.flow.v0.models.ratecard_carrier_summary'](); };
16184
+ export var makeRatecardData = function () { return factories['io.flow.v0.models.ratecard_data'](); };
15897
16185
  export var makeRatecardDeleted = function () { return factories['io.flow.v0.models.ratecard_deleted'](); };
15898
16186
  export var makeRatecardEstimate = function () { return factories['io.flow.v0.unions.ratecard_estimate'](); };
15899
16187
  export var makeRatecardEstimateForm = function () { return factories['io.flow.v0.models.ratecard_estimate_form'](); };
15900
- export var makeRatecardEstimateSummaryForm = function () { return factories['io.flow.v0.models.ratecard_estimate_summary_form'](); };
15901
16188
  export var makeRatecardEstimateV1 = function () { return factories['io.flow.v0.models.ratecard_estimate_v1'](); };
15902
16189
  export var makeRatecardEstimateV2 = function () { return factories['io.flow.v0.models.ratecard_estimate_v2'](); };
15903
16190
  export var makeRatecardEstimateV3 = function () { return factories['io.flow.v0.models.ratecard_estimate_v3'](); };
@@ -16185,7 +16472,11 @@ export var makeSurchargeResponsibleParty = function () { return factories['io.fl
16185
16472
  export var makeSurchargeResponsiblePartyDisplay = function () { return factories['io.flow.v0.models.surcharge_responsible_party_display'](); };
16186
16473
  export var makeSurchargeSetting = function () { return factories['io.flow.v0.models.surcharge_setting'](); };
16187
16474
  export var makeSurchargeSettingDisplay = function () { return factories['io.flow.v0.models.surcharge_setting_display'](); };
16475
+ export var makeTariffCodes = function () { return factories['io.flow.v0.models.tariff_codes'](); };
16476
+ export var makeTariffCodesDeleted = function () { return factories['io.flow.v0.models.tariff_codes_deleted'](); };
16477
+ export var makeTariffCodesUpserted = function () { return factories['io.flow.v0.models.tariff_codes_upserted'](); };
16188
16478
  export var makeTax = function () { return factories['io.flow.v0.models.tax'](); };
16479
+ export var makeTaxAndDutyInclusivitySetting = function () { return factories['io.flow.v0.enums.tax_and_duty_inclusivity_setting'](); };
16189
16480
  export var makeTaxApplicability = function () { return factories['io.flow.v0.enums.tax_applicability'](); };
16190
16481
  export var makeTaxBreakdown = function () { return factories['io.flow.v0.models.tax_breakdown'](); };
16191
16482
  export var makeTaxDutyCalculatorValidationError = function () { return factories['io.flow.v0.models.tax_duty_calculator_validation_error'](); };
@@ -16286,7 +16577,10 @@ export var makeTransactionMetadataChannelCardMetadataIssuerSummary = function ()
16286
16577
  export var makeTransactionMetadataChannelOrganizationTransaction = function () { return factories['io.flow.v0.models.transaction_metadata_channel_organization_transaction'](); };
16287
16578
  export var makeTransactionMetadataFailedPayout = function () { return factories['io.flow.v0.models.transaction_metadata_failed_payout'](); };
16288
16579
  export var makeTransactionMetadataFailedPayoutReference = function () { return factories['io.flow.v0.models.transaction_metadata_failed_payout_reference'](); };
16580
+ export var makeTransactionMetadataFlatRateLabel = function () { return factories['io.flow.v0.models.transaction_metadata_flat_rate_label'](); };
16289
16581
  export var makeTransactionMetadataManual = function () { return factories['io.flow.v0.models.transaction_metadata_manual'](); };
16582
+ export var makeTransactionMetadataMerchantFee = function () { return factories['io.flow.v0.models.transaction_metadata_merchant_fee'](); };
16583
+ export var makeTransactionMetadataMerchantFeeItem = function () { return factories['io.flow.v0.models.transaction_metadata_merchant_fee_item'](); };
16290
16584
  export var makeTransactionMetadataOriginalTransaction = function () { return factories['io.flow.v0.models.transaction_metadata_original_transaction'](); };
16291
16585
  export var makeTransactionMetadataOutboundTransaction = function () { return factories['io.flow.v0.models.transaction_metadata_outbound_transaction'](); };
16292
16586
  export var makeTransactionMetadataPaymentTransaction = function () { return factories['io.flow.v0.models.transaction_metadata_payment_transaction'](); };