@flowio/api-internal-factories 0.0.125 → 0.0.127

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.
@@ -680,6 +680,15 @@ var factories = {
680
680
  'account_payment_hold',
681
681
  ]); },
682
682
  'io.flow.billing.v0.enums.statement_attachment_type': function () { return faker.helpers.arrayElement(['csv']); },
683
+ 'io.flow.billing.v0.enums.tax_duty_transaction_reason_code': function () { return faker.helpers.arrayElement([
684
+ 'order_edit',
685
+ 'order_acceptance',
686
+ 'mixed_fulfilment_non_lvg',
687
+ 'lvg_refund',
688
+ 'order_cancellation_above_de_min',
689
+ 'wyol_shipment_above_de_min',
690
+ 'full_refund_without_shipment',
691
+ ]); },
683
692
  'io.flow.billing.v0.enums.transaction_source': function () { return faker.helpers.arrayElement([
684
693
  'capture',
685
694
  'refund',
@@ -1011,8 +1020,13 @@ var factories = {
1011
1020
  }); },
1012
1021
  'io.flow.billing.v0.models.transaction_metadata_shipping_label_carrier': function () { return ({
1013
1022
  id: factories.string(),
1023
+ service_id: factories.string(),
1014
1024
  tracking_number: factories.string(),
1015
1025
  }); },
1026
+ 'io.flow.billing.v0.models.transaction_metadata_tax_duty': function () { return ({
1027
+ discriminator: 'transaction_tax_duty',
1028
+ reason_code: factories['io.flow.billing.v0.enums.tax_duty_transaction_reason_code'](),
1029
+ }); },
1016
1030
  'io.flow.billing.v0.models.transaction_metadata_trueup': function () { return ({
1017
1031
  discriminator: 'trueup',
1018
1032
  original: factories['io.flow.billing.v0.models.transaction_metadata_original_transaction'](),
@@ -1123,6 +1137,7 @@ var factories = {
1123
1137
  function () { return factories['io.flow.billing.v0.models.transaction_metadata_manual'](); },
1124
1138
  function () { return factories['io.flow.billing.v0.models.transaction_metadata_failed_payout'](); },
1125
1139
  function () { return factories['io.flow.billing.v0.models.transaction_metadata_payment_transaction'](); },
1140
+ function () { return factories['io.flow.billing.v0.models.transaction_metadata_tax_duty'](); },
1126
1141
  ]);
1127
1142
  return f();
1128
1143
  },
@@ -1825,6 +1840,7 @@ var factories = {
1825
1840
  order_created_at: factories.date_time_iso_8601(),
1826
1841
  order_updated_at: factories.date_time_iso_8601(),
1827
1842
  order_edit_summary: factories['io.flow.channel.internal.v0.models.order_edit_summary'](),
1843
+ payment_source: factories['io.flow.experience.v0.enums.order_payment_source_type'](),
1828
1844
  }); },
1829
1845
  'io.flow.channel.internal.v0.models.channel_order_acceptance_details': function () { return ({
1830
1846
  order_acceptance: factories['io.flow.channel.internal.v0.models.channel_order_acceptance'](),
@@ -6068,7 +6084,6 @@ var factories = {
6068
6084
  'organization_currency_setting_deleted',
6069
6085
  'channel_currency_setting_upserted',
6070
6086
  'channel_currency_setting_deleted',
6071
- 'customer_purge_upserted',
6072
6087
  'customs_description_import',
6073
6088
  'customs_description_tariffs_import',
6074
6089
  'dispute_upserted',
@@ -6624,7 +6639,7 @@ var factories = {
6624
6639
  'io.flow.internal.v0.enums.revenue_record_type': function () { return faker.helpers.arrayElement(['pending', 'sales', 'refund']); },
6625
6640
  'io.flow.internal.v0.enums.risk_check': function () { return faker.helpers.arrayElement(['three_d_secure']); },
6626
6641
  'io.flow.internal.v0.enums.risk_evaluation': function () { return faker.helpers.arrayElement(['Pending', 'High-Risk', 'Low-Risk', 'Restricted-Party', 'none']); },
6627
- 'io.flow.internal.v0.enums.session_country_status': function () { return faker.helpers.arrayElement(['enabled', 'disabled']); },
6642
+ 'io.flow.internal.v0.enums.rohan_item_type': function () { return faker.helpers.arrayElement(['physical', 'digital']); },
6628
6643
  'io.flow.internal.v0.enums.shopify_check_inventory_error_code': function () { return faker.helpers.arrayElement(['inventory_out_of_stock']); },
6629
6644
  'io.flow.internal.v0.enums.shopify_grant_status': function () { return faker.helpers.arrayElement(['pass', 'fail']); },
6630
6645
  'io.flow.internal.v0.enums.shopify_incoterm_configuration': function () { return faker.helpers.arrayElement(['DDP', 'DAP', 'DDU', 'UNSUPPORTED']); },
@@ -8370,6 +8385,7 @@ var factories = {
8370
8385
  order_created_at: factories.date_time_iso_8601(),
8371
8386
  order_updated_at: factories.date_time_iso_8601(),
8372
8387
  order_edit_summary: factories['io.flow.internal.v0.models.order_edit_summary'](),
8388
+ payment_source: factories['io.flow.experience.v0.enums.order_payment_source_type'](),
8373
8389
  }); },
8374
8390
  'io.flow.internal.v0.models.channel_order_acceptance_deleted': function () { return ({
8375
8391
  discriminator: 'channel_order_acceptance_deleted',
@@ -9106,17 +9122,6 @@ var factories = {
9106
9122
  updated_at: factories.date_time_iso_8601(),
9107
9123
  updated_by_user_id: factories.string(),
9108
9124
  }); },
9109
- 'io.flow.internal.v0.models.customer_purge_upserted': function () { return ({
9110
- discriminator: 'customer_purge_upserted',
9111
- event_id: factories.string(),
9112
- timestamp: factories.date_time_iso_8601(),
9113
- organization: factories.string(),
9114
- customer: factories['io.flow.customer.v0.models.customer'](),
9115
- }); },
9116
- 'io.flow.internal.v0.models.customer_secret': function () { return ({
9117
- id: factories.string(),
9118
- secret: factories.string(),
9119
- }); },
9120
9125
  'io.flow.internal.v0.models.customs_description_import': function () { return ({
9121
9126
  discriminator: 'customs_description_import',
9122
9127
  event_id: factories.string(),
@@ -14544,6 +14549,7 @@ var factories = {
14544
14549
  id: factories.string(),
14545
14550
  number: factories.string(),
14546
14551
  submitted_at: factories.date_time_iso_8601(),
14552
+ payment_source: factories.string(),
14547
14553
  }); },
14548
14554
  'io.flow.internal.v0.models.reporting_organization_summary': function () { return ({
14549
14555
  id: factories.string(),
@@ -14678,11 +14684,6 @@ var factories = {
14678
14684
  status: factories['io.flow.internal.v0.enums.restriction_status'](),
14679
14685
  updated_at: factories.date_time_iso_8601(),
14680
14686
  }); },
14681
- 'io.flow.internal.v0.models.restriction_keyword_metadata': function () { return ({
14682
- keyword: factories.string(),
14683
- type: factories['io.flow.internal.v0.enums.keyword_type'](),
14684
- count: factories.long(),
14685
- }); },
14686
14687
  'io.flow.internal.v0.models.restriction_keywords': function () { return ({
14687
14688
  positive_keywords: arrayOf(function () { return factories.string(); }),
14688
14689
  negative_keywords: arrayOf(function () { return factories.string(); }),
@@ -14707,8 +14708,7 @@ var factories = {
14707
14708
  earliest_pending_date: factories.date_time_iso_8601(),
14708
14709
  priority_score: factories.decimal(),
14709
14710
  date: factories.date_time_iso_8601(),
14710
- statuses: arrayOf(function () { return factories['io.flow.internal.v0.models.restriction_status_metadata'](); }),
14711
- count: factories.long(),
14711
+ counts: factories['io.flow.internal.v0.models.restriction_summary_counts'](),
14712
14712
  }); },
14713
14713
  'io.flow.internal.v0.models.restriction_organization_status': function () { return ({
14714
14714
  id: factories.string(),
@@ -14741,10 +14741,6 @@ var factories = {
14741
14741
  environment: factories['io.flow.common.v0.enums.environment'](),
14742
14742
  source: factories['io.flow.internal.v0.enums.organization_source'](),
14743
14743
  }); },
14744
- 'io.flow.internal.v0.models.restriction_pending': function () { return ({
14745
- rule: factories['io.flow.internal.v0.models.restriction_rule_summary'](),
14746
- count: factories.long(),
14747
- }); },
14748
14744
  'io.flow.internal.v0.models.restriction_product': function () { return ({
14749
14745
  id: factories.string(),
14750
14746
  organization_id: factories.string(),
@@ -14793,6 +14789,7 @@ var factories = {
14793
14789
  value_threshold_usd: factories.decimal(),
14794
14790
  auto_review_criteria: arrayOf(function () { return factories['io.flow.internal.v0.models.auto_review_criteria'](); }),
14795
14791
  source: factories['io.flow.internal.v0.enums.restriction_organization_source'](),
14792
+ sellability_positive_keywords: arrayOf(function () { return factories.string(); }),
14796
14793
  }); },
14797
14794
  'io.flow.internal.v0.models.restriction_rule_decision_form': function () { return ({
14798
14795
  rule_id: factories.string(),
@@ -14840,11 +14837,14 @@ var factories = {
14840
14837
  value_threshold_usd: factories.decimal(),
14841
14838
  auto_review_criteria: arrayOf(function () { return factories['io.flow.internal.v0.models.auto_review_criteria'](); }),
14842
14839
  source: factories['io.flow.internal.v0.enums.restriction_organization_source'](),
14840
+ sellability_positive_keywords: arrayOf(function () { return factories.string(); }),
14843
14841
  }); },
14844
- 'io.flow.internal.v0.models.restriction_rule_metadata': function () { return ({
14845
- rule: factories['io.flow.internal.v0.models.restriction_rule_summary'](),
14846
- statuses: arrayOf(function () { return factories['io.flow.internal.v0.models.restriction_status_metadata'](); }),
14847
- count: factories.long(),
14842
+ 'io.flow.internal.v0.models.restriction_rule_lane_exemption': function () { return ({
14843
+ id: factories.string(),
14844
+ rule_id: factories.string(),
14845
+ description: factories.string(),
14846
+ origin_countries: arrayOf(function () { return factories.string(); }),
14847
+ destination_countries: arrayOf(function () { return factories.string(); }),
14848
14848
  }); },
14849
14849
  'io.flow.internal.v0.models.restriction_rule_override': function () { return ({
14850
14850
  id: factories.string(),
@@ -14863,9 +14863,9 @@ var factories = {
14863
14863
  timestamp: factories.date_time_iso_8601(),
14864
14864
  restriction_rule: factories['io.flow.internal.v0.models.restriction_rule'](),
14865
14865
  }); },
14866
- 'io.flow.internal.v0.models.restriction_status_metadata': function () { return ({
14867
- status: factories['io.flow.internal.v0.enums.restriction_status'](),
14868
- count: factories.long(),
14866
+ 'io.flow.internal.v0.models.restriction_summary_counts': function () { return ({
14867
+ pending_restriction_count: factories.long(),
14868
+ pending_verification_count: factories.long(),
14869
14869
  }); },
14870
14870
  'io.flow.internal.v0.models.restrictions_dailyops': function () { return ({
14871
14871
  id: factories.string(),
@@ -15012,6 +15012,21 @@ var factories = {
15012
15012
  organization: factories.string(),
15013
15013
  revenue_record: factories['io.flow.internal.v0.models.revenue_record'](),
15014
15014
  }); },
15015
+ 'io.flow.internal.v0.models.rohan_item': function () { return ({
15016
+ id: factories.string(),
15017
+ number: factories.string(),
15018
+ amount: factories['io.flow.common.v0.models.price'](),
15019
+ description: factories.string(),
15020
+ type: factories['io.flow.internal.v0.enums.rohan_item_type'](),
15021
+ added_on: factories.date_iso_8601(),
15022
+ }); },
15023
+ 'io.flow.internal.v0.models.rohan_item_form': function () { return ({
15024
+ number: factories.string(),
15025
+ amount: factories['io.flow.common.v0.models.price'](),
15026
+ description: factories.string(),
15027
+ type: factories['io.flow.internal.v0.enums.rohan_item_type'](),
15028
+ added_on: factories.date_iso_8601(),
15029
+ }); },
15015
15030
  'io.flow.internal.v0.models.routing_account': function () { return ({
15016
15031
  discriminator: 'routing_account',
15017
15032
  processor: factories['io.flow.internal.v0.enums.processor'](),
@@ -15115,16 +15130,6 @@ var factories = {
15115
15130
  status: factories['io.flow.tracking.v0.enums.tracking_status'](),
15116
15131
  label: factories['io.flow.internal.v0.models.label_summary'](),
15117
15132
  }); },
15118
- 'io.flow.internal.v0.models.session_countries': function () { return ({
15119
- countries: arrayOf(function () { return factories['io.flow.internal.v0.models.session_country'](); }),
15120
- }); },
15121
- 'io.flow.internal.v0.models.session_country': function () { return ({
15122
- country: factories.string(),
15123
- status: factories['io.flow.internal.v0.enums.session_country_status'](),
15124
- }); },
15125
- 'io.flow.internal.v0.models.session_country_form': function () { return ({
15126
- status: factories['io.flow.internal.v0.enums.session_country_status'](),
15127
- }); },
15128
15133
  'io.flow.internal.v0.models.session_order_data': function () { return ({
15129
15134
  id: factories.string(),
15130
15135
  session: factories['io.flow.common.v0.models.session_reference'](),
@@ -15132,13 +15137,6 @@ var factories = {
15132
15137
  customer: factories['io.flow.common.v0.models.order_customer'](),
15133
15138
  destination: factories['io.flow.experience.v0.models.order_address'](),
15134
15139
  }); },
15135
- 'io.flow.internal.v0.models.session_rollout': function () { return ({
15136
- id: factories.string(),
15137
- percent: factories.integer(),
15138
- }); },
15139
- 'io.flow.internal.v0.models.session_rollout_form': function () { return ({
15140
- percent: factories.integer(),
15141
- }); },
15142
15140
  'io.flow.internal.v0.models.setup_block_put_form': function () { return ({
15143
15141
  reasons: arrayOf(function () { return factories['io.flow.organization.onboarding.state.v0.enums.onboarding_blocked_reason'](); }),
15144
15142
  }); },
@@ -17457,7 +17455,6 @@ var factories = {
17457
17455
  function () { return factories['io.flow.internal.v0.models.organization_currency_setting_deleted'](); },
17458
17456
  function () { return factories['io.flow.internal.v0.models.channel_currency_setting_upserted'](); },
17459
17457
  function () { return factories['io.flow.internal.v0.models.channel_currency_setting_deleted'](); },
17460
- function () { return factories['io.flow.internal.v0.models.customer_purge_upserted'](); },
17461
17458
  function () { return factories['io.flow.internal.v0.models.customs_description_import'](); },
17462
17459
  function () { return factories['io.flow.internal.v0.models.customs_description_tariffs_import'](); },
17463
17460
  function () { return factories['io.flow.internal.v0.models.dispute_upserted'](); },
@@ -22271,7 +22268,12 @@ var factories = {
22271
22268
  return f();
22272
22269
  },
22273
22270
  'io.flow.sellability.v0.enums.rule_effect_type': function () { return faker.helpers.arrayElement(['market', 'dhl', 'dhl_ecommerce', 'ups']); },
22274
- 'io.flow.sellability.v0.enums.sellability_error_code': function () { return faker.helpers.arrayElement(['insufficient_details', 'ineligible_category', 'wait_for_high_fidelity']); },
22271
+ 'io.flow.sellability.v0.enums.sellability_error_code': function () { return faker.helpers.arrayElement([
22272
+ 'insufficient_details',
22273
+ 'ineligible_category',
22274
+ 'wait_for_high_fidelity',
22275
+ 'external_service_unavailable',
22276
+ ]); },
22275
22277
  'io.flow.sellability.v0.enums.sellability_request_status': function () { return faker.helpers.arrayElement(['commit']); },
22276
22278
  'io.flow.sellability.v0.models.product_sellability': function () { return ({
22277
22279
  shop_id: factories.string(),
@@ -22288,6 +22290,7 @@ var factories = {
22288
22290
  description: factories.string(),
22289
22291
  taxonomy_category: factories['io.flow.product.v0.models.product_taxonomy_category'](),
22290
22292
  status: factories['io.flow.sellability.v0.enums.sellability_request_status'](),
22293
+ dry_run: factories.boolean(),
22291
22294
  }); },
22292
22295
  'io.flow.sellability.v0.models.product_sellability_price': function () { return ({
22293
22296
  currency: factories.string(),
@@ -27449,8 +27452,6 @@ export var makeCryptoAuthentication = function () { return factories['io.flow.in
27449
27452
  export var makeCryptoAuthenticationForm = function () { return factories['io.flow.internal.v0.models.crypto_authentication_form'](); };
27450
27453
  export var makeCsvTransaction = function () { return factories['io.flow.internal.v0.models.csv_transaction'](); };
27451
27454
  export var makeCurrencyInternalRate = function () { return factories['io.flow.internal.v0.models.currency_internal_rate'](); };
27452
- export var makeCustomerPurgeUpserted = function () { return factories['io.flow.internal.v0.models.customer_purge_upserted'](); };
27453
- export var makeCustomerSecret = function () { return factories['io.flow.internal.v0.models.customer_secret'](); };
27454
27455
  export var makeCustomsDescriptionImport = function () { return factories['io.flow.internal.v0.models.customs_description_import'](); };
27455
27456
  export var makeCustomsDescriptionStatistics = function () { return factories['io.flow.internal.v0.models.customs_description_statistics'](); };
27456
27457
  export var makeCustomsDescriptionSuggestion = function () { return factories['io.flow.internal.v0.models.customs_description_suggestion'](); };
@@ -28439,7 +28440,6 @@ export var makeRestrictionItemRequestForm = function () { return factories['io.f
28439
28440
  export var makeRestrictionItemReview = function () { return factories['io.flow.internal.v0.models.restriction_item_review'](); };
28440
28441
  export var makeRestrictionItemReviewDecisionForm = function () { return factories['io.flow.internal.v0.models.restriction_item_review_decision_form'](); };
28441
28442
  export var makeRestrictionItemReviewSummary = function () { return factories['io.flow.internal.v0.models.restriction_item_review_summary'](); };
28442
- export var makeRestrictionKeywordMetadata = function () { return factories['io.flow.internal.v0.models.restriction_keyword_metadata'](); };
28443
28443
  export var makeRestrictionKeywords = function () { return factories['io.flow.internal.v0.models.restriction_keywords'](); };
28444
28444
  export var makeRestrictionOrganization = function () { return factories['io.flow.internal.v0.models.restriction_organization'](); };
28445
28445
  export var makeRestrictionOrganizationChannel = function () { return factories['io.flow.internal.v0.enums.restriction_organization_channel'](); };
@@ -28449,7 +28449,6 @@ export var makeRestrictionOrganizationStatus = function () { return factories['i
28449
28449
  export var makeRestrictionOrganizationStatusDeleted = function () { return factories['io.flow.internal.v0.models.restriction_organization_status_deleted'](); };
28450
28450
  export var makeRestrictionOrganizationStatusUpserted = function () { return factories['io.flow.internal.v0.models.restriction_organization_status_upserted'](); };
28451
28451
  export var makeRestrictionOrganizationSummary = function () { return factories['io.flow.internal.v0.models.restriction_organization_summary'](); };
28452
- export var makeRestrictionPending = function () { return factories['io.flow.internal.v0.models.restriction_pending'](); };
28453
28452
  export var makeRestrictionProduct = function () { return factories['io.flow.internal.v0.models.restriction_product'](); };
28454
28453
  export var makeRestrictionProductDecisionForm = function () { return factories['io.flow.internal.v0.models.restriction_product_decision_form'](); };
28455
28454
  export var makeRestrictionProductRequestForm = function () { return factories['io.flow.internal.v0.models.restriction_product_request_form'](); };
@@ -28463,13 +28462,13 @@ export var makeRestrictionRuleEffectForm = function () { return factories['io.fl
28463
28462
  export var makeRestrictionRuleEffectUpserted = function () { return factories['io.flow.internal.v0.models.restriction_rule_effect_upserted'](); };
28464
28463
  export var makeRestrictionRuleExceptionAction = function () { return factories['io.flow.internal.v0.enums.restriction_rule_exception_action'](); };
28465
28464
  export var makeRestrictionRuleForm = function () { return factories['io.flow.internal.v0.models.restriction_rule_form'](); };
28466
- export var makeRestrictionRuleMetadata = function () { return factories['io.flow.internal.v0.models.restriction_rule_metadata'](); };
28465
+ export var makeRestrictionRuleLaneExemption = function () { return factories['io.flow.internal.v0.models.restriction_rule_lane_exemption'](); };
28467
28466
  export var makeRestrictionRuleOverride = function () { return factories['io.flow.internal.v0.models.restriction_rule_override'](); };
28468
28467
  export var makeRestrictionRuleSummary = function () { return factories['io.flow.internal.v0.models.restriction_rule_summary'](); };
28469
28468
  export var makeRestrictionRuleUpserted = function () { return factories['io.flow.internal.v0.models.restriction_rule_upserted'](); };
28470
28469
  export var makeRestrictionStateReviewStatus = function () { return factories['io.flow.internal.v0.enums.restriction_state_review_status'](); };
28471
28470
  export var makeRestrictionStatus = function () { return factories['io.flow.internal.v0.enums.restriction_status'](); };
28472
- export var makeRestrictionStatusMetadata = function () { return factories['io.flow.internal.v0.models.restriction_status_metadata'](); };
28471
+ export var makeRestrictionSummaryCounts = function () { return factories['io.flow.internal.v0.models.restriction_summary_counts'](); };
28473
28472
  export var makeRestrictionsDailyops = function () { return factories['io.flow.internal.v0.models.restrictions_dailyops'](); };
28474
28473
  export var makeRestrictionsDailyopsDeleted = function () { return factories['io.flow.internal.v0.models.restrictions_dailyops_deleted'](); };
28475
28474
  export var makeRestrictionsDailyopsUpserted = function () { return factories['io.flow.internal.v0.models.restrictions_dailyops_upserted'](); };
@@ -28493,6 +28492,9 @@ export var makeRevenueRecordType = function () { return factories['io.flow.inter
28493
28492
  export var makeRevenueRecordUpserted = function () { return factories['io.flow.internal.v0.models.revenue_record_upserted'](); };
28494
28493
  export var makeRiskCheck = function () { return factories['io.flow.internal.v0.enums.risk_check'](); };
28495
28494
  export var makeRiskEvaluation = function () { return factories['io.flow.internal.v0.enums.risk_evaluation'](); };
28495
+ export var makeRohanItem = function () { return factories['io.flow.internal.v0.models.rohan_item'](); };
28496
+ export var makeRohanItemForm = function () { return factories['io.flow.internal.v0.models.rohan_item_form'](); };
28497
+ export var makeRohanItemType = function () { return factories['io.flow.internal.v0.enums.rohan_item_type'](); };
28496
28498
  export var makeRoutingAccount = function () { return factories['io.flow.internal.v0.models.routing_account'](); };
28497
28499
  export var makeRoutingEntity = function () { return factories['io.flow.internal.v0.unions.routing_entity'](); };
28498
28500
  export var makeRoutingMerchant = function () { return factories['io.flow.internal.v0.models.routing_merchant'](); };
@@ -28512,13 +28514,7 @@ export var makeSearchItemSummary = function () { return factories['io.flow.inter
28512
28514
  export var makeSearchOrderSummary = function () { return factories['io.flow.internal.v0.models.search_order_summary'](); };
28513
28515
  export var makeSearchProviderExport = function () { return factories['io.flow.internal.v0.models.search_provider_export'](); };
28514
28516
  export var makeSearchTrackingSummary = function () { return factories['io.flow.internal.v0.models.search_tracking_summary'](); };
28515
- export var makeSessionCountries = function () { return factories['io.flow.internal.v0.models.session_countries'](); };
28516
- export var makeSessionCountry = function () { return factories['io.flow.internal.v0.models.session_country'](); };
28517
- export var makeSessionCountryForm = function () { return factories['io.flow.internal.v0.models.session_country_form'](); };
28518
- export var makeSessionCountryStatus = function () { return factories['io.flow.internal.v0.enums.session_country_status'](); };
28519
28517
  export var makeSessionOrderData = function () { return factories['io.flow.internal.v0.models.session_order_data'](); };
28520
- export var makeSessionRollout = function () { return factories['io.flow.internal.v0.models.session_rollout'](); };
28521
- export var makeSessionRolloutForm = function () { return factories['io.flow.internal.v0.models.session_rollout_form'](); };
28522
28518
  export var makeSetupBlockPutForm = function () { return factories['io.flow.internal.v0.models.setup_block_put_form'](); };
28523
28519
  export var makeSfExpress = function () { return factories['io.flow.internal.v0.models.sf_express'](); };
28524
28520
  export var makeShipmentCostSummary = function () { return factories['io.flow.internal.v0.models.shipment_cost_summary'](); };
@@ -433,8 +433,6 @@ export declare const makeCryptoAuthentication: () => io.flow.internal.v0.models.
433
433
  export declare const makeCryptoAuthenticationForm: () => io.flow.internal.v0.models.CryptoAuthenticationForm;
434
434
  export declare const makeCsvTransaction: () => io.flow.internal.v0.models.CsvTransaction;
435
435
  export declare const makeCurrencyInternalRate: () => io.flow.internal.v0.models.CurrencyInternalRate;
436
- export declare const makeCustomerPurgeUpserted: () => io.flow.internal.v0.models.CustomerPurgeUpserted;
437
- export declare const makeCustomerSecret: () => io.flow.internal.v0.models.CustomerSecret;
438
436
  export declare const makeCustomsDescriptionImport: () => io.flow.internal.v0.models.CustomsDescriptionImport;
439
437
  export declare const makeCustomsDescriptionStatistics: () => io.flow.internal.v0.models.CustomsDescriptionStatistics;
440
438
  export declare const makeCustomsDescriptionSuggestion: () => io.flow.internal.v0.models.CustomsDescriptionSuggestion;
@@ -1423,7 +1421,6 @@ export declare const makeRestrictionItemRequestForm: () => io.flow.internal.v0.m
1423
1421
  export declare const makeRestrictionItemReview: () => io.flow.internal.v0.models.RestrictionItemReview;
1424
1422
  export declare const makeRestrictionItemReviewDecisionForm: () => io.flow.internal.v0.models.RestrictionItemReviewDecisionForm;
1425
1423
  export declare const makeRestrictionItemReviewSummary: () => io.flow.internal.v0.models.RestrictionItemReviewSummary;
1426
- export declare const makeRestrictionKeywordMetadata: () => io.flow.internal.v0.models.RestrictionKeywordMetadata;
1427
1424
  export declare const makeRestrictionKeywords: () => io.flow.internal.v0.models.RestrictionKeywords;
1428
1425
  export declare const makeRestrictionOrganization: () => io.flow.internal.v0.models.RestrictionOrganization;
1429
1426
  export declare const makeRestrictionOrganizationChannel: () => io.flow.internal.v0.enums.RestrictionOrganizationChannel;
@@ -1433,7 +1430,6 @@ export declare const makeRestrictionOrganizationStatus: () => io.flow.internal.v
1433
1430
  export declare const makeRestrictionOrganizationStatusDeleted: () => io.flow.internal.v0.models.RestrictionOrganizationStatusDeleted;
1434
1431
  export declare const makeRestrictionOrganizationStatusUpserted: () => io.flow.internal.v0.models.RestrictionOrganizationStatusUpserted;
1435
1432
  export declare const makeRestrictionOrganizationSummary: () => io.flow.internal.v0.models.RestrictionOrganizationSummary;
1436
- export declare const makeRestrictionPending: () => io.flow.internal.v0.models.RestrictionPending;
1437
1433
  export declare const makeRestrictionProduct: () => io.flow.internal.v0.models.RestrictionProduct;
1438
1434
  export declare const makeRestrictionProductDecisionForm: () => io.flow.internal.v0.models.RestrictionProductDecisionForm;
1439
1435
  export declare const makeRestrictionProductRequestForm: () => io.flow.internal.v0.models.RestrictionProductRequestForm;
@@ -1447,13 +1443,13 @@ export declare const makeRestrictionRuleEffectForm: () => io.flow.internal.v0.mo
1447
1443
  export declare const makeRestrictionRuleEffectUpserted: () => io.flow.internal.v0.models.RestrictionRuleEffectUpserted;
1448
1444
  export declare const makeRestrictionRuleExceptionAction: () => io.flow.internal.v0.enums.RestrictionRuleExceptionAction;
1449
1445
  export declare const makeRestrictionRuleForm: () => io.flow.internal.v0.models.RestrictionRuleForm;
1450
- export declare const makeRestrictionRuleMetadata: () => io.flow.internal.v0.models.RestrictionRuleMetadata;
1446
+ export declare const makeRestrictionRuleLaneExemption: () => io.flow.internal.v0.models.RestrictionRuleLaneExemption;
1451
1447
  export declare const makeRestrictionRuleOverride: () => io.flow.internal.v0.models.RestrictionRuleOverride;
1452
1448
  export declare const makeRestrictionRuleSummary: () => io.flow.internal.v0.models.RestrictionRuleSummary;
1453
1449
  export declare const makeRestrictionRuleUpserted: () => io.flow.internal.v0.models.RestrictionRuleUpserted;
1454
1450
  export declare const makeRestrictionStateReviewStatus: () => io.flow.internal.v0.enums.RestrictionStateReviewStatus;
1455
1451
  export declare const makeRestrictionStatus: () => io.flow.internal.v0.enums.RestrictionStatus;
1456
- export declare const makeRestrictionStatusMetadata: () => io.flow.internal.v0.models.RestrictionStatusMetadata;
1452
+ export declare const makeRestrictionSummaryCounts: () => io.flow.internal.v0.models.RestrictionSummaryCounts;
1457
1453
  export declare const makeRestrictionsDailyops: () => io.flow.internal.v0.models.RestrictionsDailyops;
1458
1454
  export declare const makeRestrictionsDailyopsDeleted: () => io.flow.internal.v0.models.RestrictionsDailyopsDeleted;
1459
1455
  export declare const makeRestrictionsDailyopsUpserted: () => io.flow.internal.v0.models.RestrictionsDailyopsUpserted;
@@ -1477,6 +1473,9 @@ export declare const makeRevenueRecordType: () => io.flow.internal.v0.enums.Reve
1477
1473
  export declare const makeRevenueRecordUpserted: () => io.flow.internal.v0.models.RevenueRecordUpserted;
1478
1474
  export declare const makeRiskCheck: () => "three_d_secure";
1479
1475
  export declare const makeRiskEvaluation: () => io.flow.internal.v0.enums.RiskEvaluation;
1476
+ export declare const makeRohanItem: () => io.flow.internal.v0.models.RohanItem;
1477
+ export declare const makeRohanItemForm: () => io.flow.internal.v0.models.RohanItemForm;
1478
+ export declare const makeRohanItemType: () => io.flow.internal.v0.enums.RohanItemType;
1480
1479
  export declare const makeRoutingAccount: () => io.flow.internal.v0.models.RoutingAccount;
1481
1480
  export declare const makeRoutingEntity: () => io.flow.internal.v0.unions.RoutingEntity;
1482
1481
  export declare const makeRoutingMerchant: () => io.flow.internal.v0.models.RoutingMerchant;
@@ -1496,13 +1495,7 @@ export declare const makeSearchItemSummary: () => io.flow.internal.v0.models.Sea
1496
1495
  export declare const makeSearchOrderSummary: () => io.flow.internal.v0.models.SearchOrderSummary;
1497
1496
  export declare const makeSearchProviderExport: () => io.flow.internal.v0.models.SearchProviderExport;
1498
1497
  export declare const makeSearchTrackingSummary: () => io.flow.internal.v0.models.SearchTrackingSummary;
1499
- export declare const makeSessionCountries: () => io.flow.internal.v0.models.SessionCountries;
1500
- export declare const makeSessionCountry: () => io.flow.internal.v0.models.SessionCountry;
1501
- export declare const makeSessionCountryForm: () => io.flow.internal.v0.models.SessionCountryForm;
1502
- export declare const makeSessionCountryStatus: () => io.flow.internal.v0.enums.SessionCountryStatus;
1503
1498
  export declare const makeSessionOrderData: () => io.flow.internal.v0.models.SessionOrderData;
1504
- export declare const makeSessionRollout: () => io.flow.internal.v0.models.SessionRollout;
1505
- export declare const makeSessionRolloutForm: () => io.flow.internal.v0.models.SessionRolloutForm;
1506
1499
  export declare const makeSetupBlockPutForm: () => io.flow.internal.v0.models.SetupBlockPutForm;
1507
1500
  export declare const makeSfExpress: () => io.flow.internal.v0.models.SfExpress;
1508
1501
  export declare const makeShipmentCostSummary: () => io.flow.internal.v0.models.ShipmentCostSummary;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flowio/api-internal-factories",
3
- "version": "0.0.125",
3
+ "version": "0.0.127",
4
4
  "description": "Flow API internal mock data factories",
5
5
  "keywords": [
6
6
  "flow",
@@ -37,5 +37,5 @@
37
37
  "@faker-js/faker": "^6.2.0",
38
38
  "@flowio/api-types": "*"
39
39
  },
40
- "gitHead": "6fade17e2dbfb3e45d3ec2e8c19f9aadd6993746"
40
+ "gitHead": "811085cd356c5e70a8ab69509323e6909a48a92b"
41
41
  }