@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.
- package/dist/cjs/api-internal.js +93 -104
- package/dist/esm/api-internal.js +58 -62
- package/dist/types/api-internal.d.ts +5 -12
- package/package.json +2 -2
- package/src/api-internal.ts +64 -79
package/src/api-internal.ts
CHANGED
|
@@ -775,6 +775,16 @@ const factories = {
|
|
|
775
775
|
|
|
776
776
|
'io.flow.billing.v0.enums.statement_attachment_type': (): io.flow.billing.v0.enums.StatementAttachmentType => faker.helpers.arrayElement(['csv']),
|
|
777
777
|
|
|
778
|
+
'io.flow.billing.v0.enums.tax_duty_transaction_reason_code': (): io.flow.billing.v0.enums.TaxDutyTransactionReasonCode => faker.helpers.arrayElement([
|
|
779
|
+
'order_edit',
|
|
780
|
+
'order_acceptance',
|
|
781
|
+
'mixed_fulfilment_non_lvg',
|
|
782
|
+
'lvg_refund',
|
|
783
|
+
'order_cancellation_above_de_min',
|
|
784
|
+
'wyol_shipment_above_de_min',
|
|
785
|
+
'full_refund_without_shipment',
|
|
786
|
+
]),
|
|
787
|
+
|
|
778
788
|
'io.flow.billing.v0.enums.transaction_source': (): io.flow.billing.v0.enums.TransactionSource => faker.helpers.arrayElement([
|
|
779
789
|
'capture',
|
|
780
790
|
'refund',
|
|
@@ -1158,9 +1168,15 @@ const factories = {
|
|
|
1158
1168
|
|
|
1159
1169
|
'io.flow.billing.v0.models.transaction_metadata_shipping_label_carrier': (): io.flow.billing.v0.models.TransactionMetadataShippingLabelCarrier => ({
|
|
1160
1170
|
id: factories.string(),
|
|
1171
|
+
service_id: factories.string(),
|
|
1161
1172
|
tracking_number: factories.string(),
|
|
1162
1173
|
}),
|
|
1163
1174
|
|
|
1175
|
+
'io.flow.billing.v0.models.transaction_metadata_tax_duty': (): io.flow.billing.v0.models.TransactionMetadataTaxDuty => ({
|
|
1176
|
+
discriminator: 'transaction_tax_duty',
|
|
1177
|
+
reason_code: factories['io.flow.billing.v0.enums.tax_duty_transaction_reason_code'](),
|
|
1178
|
+
}),
|
|
1179
|
+
|
|
1164
1180
|
'io.flow.billing.v0.models.transaction_metadata_trueup': (): io.flow.billing.v0.models.TransactionMetadataTrueup => ({
|
|
1165
1181
|
discriminator: 'trueup',
|
|
1166
1182
|
original: factories['io.flow.billing.v0.models.transaction_metadata_original_transaction'](),
|
|
@@ -1292,6 +1308,7 @@ const factories = {
|
|
|
1292
1308
|
() => factories['io.flow.billing.v0.models.transaction_metadata_manual'](),
|
|
1293
1309
|
() => factories['io.flow.billing.v0.models.transaction_metadata_failed_payout'](),
|
|
1294
1310
|
() => factories['io.flow.billing.v0.models.transaction_metadata_payment_transaction'](),
|
|
1311
|
+
() => factories['io.flow.billing.v0.models.transaction_metadata_tax_duty'](),
|
|
1295
1312
|
]);
|
|
1296
1313
|
|
|
1297
1314
|
return f();
|
|
@@ -2102,6 +2119,7 @@ const factories = {
|
|
|
2102
2119
|
order_created_at: factories.date_time_iso_8601(),
|
|
2103
2120
|
order_updated_at: factories.date_time_iso_8601(),
|
|
2104
2121
|
order_edit_summary: factories['io.flow.channel.internal.v0.models.order_edit_summary'](),
|
|
2122
|
+
payment_source: factories['io.flow.experience.v0.enums.order_payment_source_type'](),
|
|
2105
2123
|
}),
|
|
2106
2124
|
|
|
2107
2125
|
'io.flow.channel.internal.v0.models.channel_order_acceptance_details': (): io.flow.channel.internal.v0.models.ChannelOrderAcceptanceDetails => ({
|
|
@@ -7120,7 +7138,6 @@ const factories = {
|
|
|
7120
7138
|
'organization_currency_setting_deleted',
|
|
7121
7139
|
'channel_currency_setting_upserted',
|
|
7122
7140
|
'channel_currency_setting_deleted',
|
|
7123
|
-
'customer_purge_upserted',
|
|
7124
7141
|
'customs_description_import',
|
|
7125
7142
|
'customs_description_tariffs_import',
|
|
7126
7143
|
'dispute_upserted',
|
|
@@ -7719,7 +7736,7 @@ const factories = {
|
|
|
7719
7736
|
'io.flow.internal.v0.enums.revenue_record_type': (): io.flow.internal.v0.enums.RevenueRecordType => faker.helpers.arrayElement(['pending', 'sales', 'refund']),
|
|
7720
7737
|
'io.flow.internal.v0.enums.risk_check': (): io.flow.internal.v0.enums.RiskCheck => faker.helpers.arrayElement(['three_d_secure']),
|
|
7721
7738
|
'io.flow.internal.v0.enums.risk_evaluation': (): io.flow.internal.v0.enums.RiskEvaluation => faker.helpers.arrayElement(['Pending', 'High-Risk', 'Low-Risk', 'Restricted-Party', 'none']),
|
|
7722
|
-
'io.flow.internal.v0.enums.
|
|
7739
|
+
'io.flow.internal.v0.enums.rohan_item_type': (): io.flow.internal.v0.enums.RohanItemType => faker.helpers.arrayElement(['physical', 'digital']),
|
|
7723
7740
|
'io.flow.internal.v0.enums.shopify_check_inventory_error_code': (): io.flow.internal.v0.enums.ShopifyCheckInventoryErrorCode => faker.helpers.arrayElement(['inventory_out_of_stock']),
|
|
7724
7741
|
'io.flow.internal.v0.enums.shopify_grant_status': (): io.flow.internal.v0.enums.ShopifyGrantStatus => faker.helpers.arrayElement(['pass', 'fail']),
|
|
7725
7742
|
'io.flow.internal.v0.enums.shopify_incoterm_configuration': (): io.flow.internal.v0.enums.ShopifyIncotermConfiguration => faker.helpers.arrayElement(['DDP', 'DAP', 'DDU', 'UNSUPPORTED']),
|
|
@@ -9761,6 +9778,7 @@ const factories = {
|
|
|
9761
9778
|
order_created_at: factories.date_time_iso_8601(),
|
|
9762
9779
|
order_updated_at: factories.date_time_iso_8601(),
|
|
9763
9780
|
order_edit_summary: factories['io.flow.internal.v0.models.order_edit_summary'](),
|
|
9781
|
+
payment_source: factories['io.flow.experience.v0.enums.order_payment_source_type'](),
|
|
9764
9782
|
}),
|
|
9765
9783
|
|
|
9766
9784
|
'io.flow.internal.v0.models.channel_order_acceptance_deleted': (): io.flow.internal.v0.models.ChannelOrderAcceptanceDeleted => ({
|
|
@@ -10631,19 +10649,6 @@ const factories = {
|
|
|
10631
10649
|
updated_by_user_id: factories.string(),
|
|
10632
10650
|
}),
|
|
10633
10651
|
|
|
10634
|
-
'io.flow.internal.v0.models.customer_purge_upserted': (): io.flow.internal.v0.models.CustomerPurgeUpserted => ({
|
|
10635
|
-
discriminator: 'customer_purge_upserted',
|
|
10636
|
-
event_id: factories.string(),
|
|
10637
|
-
timestamp: factories.date_time_iso_8601(),
|
|
10638
|
-
organization: factories.string(),
|
|
10639
|
-
customer: factories['io.flow.customer.v0.models.customer'](),
|
|
10640
|
-
}),
|
|
10641
|
-
|
|
10642
|
-
'io.flow.internal.v0.models.customer_secret': (): io.flow.internal.v0.models.CustomerSecret => ({
|
|
10643
|
-
id: factories.string(),
|
|
10644
|
-
secret: factories.string(),
|
|
10645
|
-
}),
|
|
10646
|
-
|
|
10647
10652
|
'io.flow.internal.v0.models.customs_description_import': (): io.flow.internal.v0.models.CustomsDescriptionImport => ({
|
|
10648
10653
|
discriminator: 'customs_description_import',
|
|
10649
10654
|
event_id: factories.string(),
|
|
@@ -16966,6 +16971,7 @@ const factories = {
|
|
|
16966
16971
|
id: factories.string(),
|
|
16967
16972
|
number: factories.string(),
|
|
16968
16973
|
submitted_at: factories.date_time_iso_8601(),
|
|
16974
|
+
payment_source: factories.string(),
|
|
16969
16975
|
}),
|
|
16970
16976
|
|
|
16971
16977
|
'io.flow.internal.v0.models.reporting_organization_summary': (): io.flow.internal.v0.models.ReportingOrganizationSummary => ({
|
|
@@ -17122,12 +17128,6 @@ const factories = {
|
|
|
17122
17128
|
updated_at: factories.date_time_iso_8601(),
|
|
17123
17129
|
}),
|
|
17124
17130
|
|
|
17125
|
-
'io.flow.internal.v0.models.restriction_keyword_metadata': (): io.flow.internal.v0.models.RestrictionKeywordMetadata => ({
|
|
17126
|
-
keyword: factories.string(),
|
|
17127
|
-
type: factories['io.flow.internal.v0.enums.keyword_type'](),
|
|
17128
|
-
count: factories.long(),
|
|
17129
|
-
}),
|
|
17130
|
-
|
|
17131
17131
|
'io.flow.internal.v0.models.restriction_keywords': (): io.flow.internal.v0.models.RestrictionKeywords => ({
|
|
17132
17132
|
positive_keywords: arrayOf(() => factories.string()),
|
|
17133
17133
|
negative_keywords: arrayOf(() => factories.string()),
|
|
@@ -17158,12 +17158,7 @@ const factories = {
|
|
|
17158
17158
|
earliest_pending_date: factories.date_time_iso_8601(),
|
|
17159
17159
|
priority_score: factories.decimal(),
|
|
17160
17160
|
date: factories.date_time_iso_8601(),
|
|
17161
|
-
|
|
17162
|
-
statuses: arrayOf(
|
|
17163
|
-
() => factories['io.flow.internal.v0.models.restriction_status_metadata'](),
|
|
17164
|
-
),
|
|
17165
|
-
|
|
17166
|
-
count: factories.long(),
|
|
17161
|
+
counts: factories['io.flow.internal.v0.models.restriction_summary_counts'](),
|
|
17167
17162
|
}),
|
|
17168
17163
|
|
|
17169
17164
|
'io.flow.internal.v0.models.restriction_organization_status': (): io.flow.internal.v0.models.RestrictionOrganizationStatus => ({
|
|
@@ -17201,11 +17196,6 @@ const factories = {
|
|
|
17201
17196
|
source: factories['io.flow.internal.v0.enums.organization_source'](),
|
|
17202
17197
|
}),
|
|
17203
17198
|
|
|
17204
|
-
'io.flow.internal.v0.models.restriction_pending': (): io.flow.internal.v0.models.RestrictionPending => ({
|
|
17205
|
-
rule: factories['io.flow.internal.v0.models.restriction_rule_summary'](),
|
|
17206
|
-
count: factories.long(),
|
|
17207
|
-
}),
|
|
17208
|
-
|
|
17209
17199
|
'io.flow.internal.v0.models.restriction_product': (): io.flow.internal.v0.models.RestrictionProduct => ({
|
|
17210
17200
|
id: factories.string(),
|
|
17211
17201
|
organization_id: factories.string(),
|
|
@@ -17264,6 +17254,7 @@ const factories = {
|
|
|
17264
17254
|
value_threshold_usd: factories.decimal(),
|
|
17265
17255
|
auto_review_criteria: arrayOf(() => factories['io.flow.internal.v0.models.auto_review_criteria']()),
|
|
17266
17256
|
source: factories['io.flow.internal.v0.enums.restriction_organization_source'](),
|
|
17257
|
+
sellability_positive_keywords: arrayOf(() => factories.string()),
|
|
17267
17258
|
}),
|
|
17268
17259
|
|
|
17269
17260
|
'io.flow.internal.v0.models.restriction_rule_decision_form': (): io.flow.internal.v0.models.RestrictionRuleDecisionForm => ({
|
|
@@ -17318,16 +17309,15 @@ const factories = {
|
|
|
17318
17309
|
value_threshold_usd: factories.decimal(),
|
|
17319
17310
|
auto_review_criteria: arrayOf(() => factories['io.flow.internal.v0.models.auto_review_criteria']()),
|
|
17320
17311
|
source: factories['io.flow.internal.v0.enums.restriction_organization_source'](),
|
|
17312
|
+
sellability_positive_keywords: arrayOf(() => factories.string()),
|
|
17321
17313
|
}),
|
|
17322
17314
|
|
|
17323
|
-
'io.flow.internal.v0.models.
|
|
17324
|
-
|
|
17325
|
-
|
|
17326
|
-
|
|
17327
|
-
|
|
17328
|
-
),
|
|
17329
|
-
|
|
17330
|
-
count: factories.long(),
|
|
17315
|
+
'io.flow.internal.v0.models.restriction_rule_lane_exemption': (): io.flow.internal.v0.models.RestrictionRuleLaneExemption => ({
|
|
17316
|
+
id: factories.string(),
|
|
17317
|
+
rule_id: factories.string(),
|
|
17318
|
+
description: factories.string(),
|
|
17319
|
+
origin_countries: arrayOf(() => factories.string()),
|
|
17320
|
+
destination_countries: arrayOf(() => factories.string()),
|
|
17331
17321
|
}),
|
|
17332
17322
|
|
|
17333
17323
|
'io.flow.internal.v0.models.restriction_rule_override': (): io.flow.internal.v0.models.RestrictionRuleOverride => ({
|
|
@@ -17350,9 +17340,9 @@ const factories = {
|
|
|
17350
17340
|
restriction_rule: factories['io.flow.internal.v0.models.restriction_rule'](),
|
|
17351
17341
|
}),
|
|
17352
17342
|
|
|
17353
|
-
'io.flow.internal.v0.models.
|
|
17354
|
-
|
|
17355
|
-
|
|
17343
|
+
'io.flow.internal.v0.models.restriction_summary_counts': (): io.flow.internal.v0.models.RestrictionSummaryCounts => ({
|
|
17344
|
+
pending_restriction_count: factories.long(),
|
|
17345
|
+
pending_verification_count: factories.long(),
|
|
17356
17346
|
}),
|
|
17357
17347
|
|
|
17358
17348
|
'io.flow.internal.v0.models.restrictions_dailyops': (): io.flow.internal.v0.models.RestrictionsDailyops => ({
|
|
@@ -17519,6 +17509,23 @@ const factories = {
|
|
|
17519
17509
|
revenue_record: factories['io.flow.internal.v0.models.revenue_record'](),
|
|
17520
17510
|
}),
|
|
17521
17511
|
|
|
17512
|
+
'io.flow.internal.v0.models.rohan_item': (): io.flow.internal.v0.models.RohanItem => ({
|
|
17513
|
+
id: factories.string(),
|
|
17514
|
+
number: factories.string(),
|
|
17515
|
+
amount: factories['io.flow.common.v0.models.price'](),
|
|
17516
|
+
description: factories.string(),
|
|
17517
|
+
type: factories['io.flow.internal.v0.enums.rohan_item_type'](),
|
|
17518
|
+
added_on: factories.date_iso_8601(),
|
|
17519
|
+
}),
|
|
17520
|
+
|
|
17521
|
+
'io.flow.internal.v0.models.rohan_item_form': (): io.flow.internal.v0.models.RohanItemForm => ({
|
|
17522
|
+
number: factories.string(),
|
|
17523
|
+
amount: factories['io.flow.common.v0.models.price'](),
|
|
17524
|
+
description: factories.string(),
|
|
17525
|
+
type: factories['io.flow.internal.v0.enums.rohan_item_type'](),
|
|
17526
|
+
added_on: factories.date_iso_8601(),
|
|
17527
|
+
}),
|
|
17528
|
+
|
|
17522
17529
|
'io.flow.internal.v0.models.routing_account': (): io.flow.internal.v0.models.RoutingAccount => ({
|
|
17523
17530
|
discriminator: 'routing_account',
|
|
17524
17531
|
processor: factories['io.flow.internal.v0.enums.processor'](),
|
|
@@ -17640,19 +17647,6 @@ const factories = {
|
|
|
17640
17647
|
label: factories['io.flow.internal.v0.models.label_summary'](),
|
|
17641
17648
|
}),
|
|
17642
17649
|
|
|
17643
|
-
'io.flow.internal.v0.models.session_countries': (): io.flow.internal.v0.models.SessionCountries => ({
|
|
17644
|
-
countries: arrayOf(() => factories['io.flow.internal.v0.models.session_country']()),
|
|
17645
|
-
}),
|
|
17646
|
-
|
|
17647
|
-
'io.flow.internal.v0.models.session_country': (): io.flow.internal.v0.models.SessionCountry => ({
|
|
17648
|
-
country: factories.string(),
|
|
17649
|
-
status: factories['io.flow.internal.v0.enums.session_country_status'](),
|
|
17650
|
-
}),
|
|
17651
|
-
|
|
17652
|
-
'io.flow.internal.v0.models.session_country_form': (): io.flow.internal.v0.models.SessionCountryForm => ({
|
|
17653
|
-
status: factories['io.flow.internal.v0.enums.session_country_status'](),
|
|
17654
|
-
}),
|
|
17655
|
-
|
|
17656
17650
|
'io.flow.internal.v0.models.session_order_data': (): io.flow.internal.v0.models.SessionOrderData => ({
|
|
17657
17651
|
id: factories.string(),
|
|
17658
17652
|
session: factories['io.flow.common.v0.models.session_reference'](),
|
|
@@ -17661,15 +17655,6 @@ const factories = {
|
|
|
17661
17655
|
destination: factories['io.flow.experience.v0.models.order_address'](),
|
|
17662
17656
|
}),
|
|
17663
17657
|
|
|
17664
|
-
'io.flow.internal.v0.models.session_rollout': (): io.flow.internal.v0.models.SessionRollout => ({
|
|
17665
|
-
id: factories.string(),
|
|
17666
|
-
percent: factories.integer(),
|
|
17667
|
-
}),
|
|
17668
|
-
|
|
17669
|
-
'io.flow.internal.v0.models.session_rollout_form': (): io.flow.internal.v0.models.SessionRolloutForm => ({
|
|
17670
|
-
percent: factories.integer(),
|
|
17671
|
-
}),
|
|
17672
|
-
|
|
17673
17658
|
'io.flow.internal.v0.models.setup_block_put_form': (): io.flow.internal.v0.models.SetupBlockPutForm => ({
|
|
17674
17659
|
reasons: arrayOf(
|
|
17675
17660
|
() => factories['io.flow.organization.onboarding.state.v0.enums.onboarding_blocked_reason'](),
|
|
@@ -20396,7 +20381,6 @@ const factories = {
|
|
|
20396
20381
|
() => factories['io.flow.internal.v0.models.organization_currency_setting_deleted'](),
|
|
20397
20382
|
() => factories['io.flow.internal.v0.models.channel_currency_setting_upserted'](),
|
|
20398
20383
|
() => factories['io.flow.internal.v0.models.channel_currency_setting_deleted'](),
|
|
20399
|
-
() => factories['io.flow.internal.v0.models.customer_purge_upserted'](),
|
|
20400
20384
|
() => factories['io.flow.internal.v0.models.customs_description_import'](),
|
|
20401
20385
|
() => factories['io.flow.internal.v0.models.customs_description_tariffs_import'](),
|
|
20402
20386
|
() => factories['io.flow.internal.v0.models.dispute_upserted'](),
|
|
@@ -26080,7 +26064,14 @@ const factories = {
|
|
|
26080
26064
|
},
|
|
26081
26065
|
|
|
26082
26066
|
'io.flow.sellability.v0.enums.rule_effect_type': (): io.flow.sellability.v0.enums.RuleEffectType => faker.helpers.arrayElement(['market', 'dhl', 'dhl_ecommerce', 'ups']),
|
|
26083
|
-
|
|
26067
|
+
|
|
26068
|
+
'io.flow.sellability.v0.enums.sellability_error_code': (): io.flow.sellability.v0.enums.SellabilityErrorCode => faker.helpers.arrayElement([
|
|
26069
|
+
'insufficient_details',
|
|
26070
|
+
'ineligible_category',
|
|
26071
|
+
'wait_for_high_fidelity',
|
|
26072
|
+
'external_service_unavailable',
|
|
26073
|
+
]),
|
|
26074
|
+
|
|
26084
26075
|
'io.flow.sellability.v0.enums.sellability_request_status': (): io.flow.sellability.v0.enums.SellabilityRequestStatus => faker.helpers.arrayElement(['commit']),
|
|
26085
26076
|
|
|
26086
26077
|
'io.flow.sellability.v0.models.product_sellability': (): io.flow.sellability.v0.models.ProductSellability => ({
|
|
@@ -26102,6 +26093,7 @@ const factories = {
|
|
|
26102
26093
|
description: factories.string(),
|
|
26103
26094
|
taxonomy_category: factories['io.flow.product.v0.models.product_taxonomy_category'](),
|
|
26104
26095
|
status: factories['io.flow.sellability.v0.enums.sellability_request_status'](),
|
|
26096
|
+
dry_run: factories.boolean(),
|
|
26105
26097
|
}),
|
|
26106
26098
|
|
|
26107
26099
|
'io.flow.sellability.v0.models.product_sellability_price': (): io.flow.sellability.v0.models.ProductSellabilityPrice => ({
|
|
@@ -32102,8 +32094,6 @@ export const makeCryptoAuthentication = () => factories['io.flow.internal.v0.mod
|
|
|
32102
32094
|
export const makeCryptoAuthenticationForm = () => factories['io.flow.internal.v0.models.crypto_authentication_form']();
|
|
32103
32095
|
export const makeCsvTransaction = () => factories['io.flow.internal.v0.models.csv_transaction']();
|
|
32104
32096
|
export const makeCurrencyInternalRate = () => factories['io.flow.internal.v0.models.currency_internal_rate']();
|
|
32105
|
-
export const makeCustomerPurgeUpserted = () => factories['io.flow.internal.v0.models.customer_purge_upserted']();
|
|
32106
|
-
export const makeCustomerSecret = () => factories['io.flow.internal.v0.models.customer_secret']();
|
|
32107
32097
|
export const makeCustomsDescriptionImport = () => factories['io.flow.internal.v0.models.customs_description_import']();
|
|
32108
32098
|
export const makeCustomsDescriptionStatistics = () => factories['io.flow.internal.v0.models.customs_description_statistics']();
|
|
32109
32099
|
export const makeCustomsDescriptionSuggestion = () => factories['io.flow.internal.v0.models.customs_description_suggestion']();
|
|
@@ -33092,7 +33082,6 @@ export const makeRestrictionItemRequestForm = () => factories['io.flow.internal.
|
|
|
33092
33082
|
export const makeRestrictionItemReview = () => factories['io.flow.internal.v0.models.restriction_item_review']();
|
|
33093
33083
|
export const makeRestrictionItemReviewDecisionForm = () => factories['io.flow.internal.v0.models.restriction_item_review_decision_form']();
|
|
33094
33084
|
export const makeRestrictionItemReviewSummary = () => factories['io.flow.internal.v0.models.restriction_item_review_summary']();
|
|
33095
|
-
export const makeRestrictionKeywordMetadata = () => factories['io.flow.internal.v0.models.restriction_keyword_metadata']();
|
|
33096
33085
|
export const makeRestrictionKeywords = () => factories['io.flow.internal.v0.models.restriction_keywords']();
|
|
33097
33086
|
export const makeRestrictionOrganization = () => factories['io.flow.internal.v0.models.restriction_organization']();
|
|
33098
33087
|
export const makeRestrictionOrganizationChannel = () => factories['io.flow.internal.v0.enums.restriction_organization_channel']();
|
|
@@ -33102,7 +33091,6 @@ export const makeRestrictionOrganizationStatus = () => factories['io.flow.intern
|
|
|
33102
33091
|
export const makeRestrictionOrganizationStatusDeleted = () => factories['io.flow.internal.v0.models.restriction_organization_status_deleted']();
|
|
33103
33092
|
export const makeRestrictionOrganizationStatusUpserted = () => factories['io.flow.internal.v0.models.restriction_organization_status_upserted']();
|
|
33104
33093
|
export const makeRestrictionOrganizationSummary = () => factories['io.flow.internal.v0.models.restriction_organization_summary']();
|
|
33105
|
-
export const makeRestrictionPending = () => factories['io.flow.internal.v0.models.restriction_pending']();
|
|
33106
33094
|
export const makeRestrictionProduct = () => factories['io.flow.internal.v0.models.restriction_product']();
|
|
33107
33095
|
export const makeRestrictionProductDecisionForm = () => factories['io.flow.internal.v0.models.restriction_product_decision_form']();
|
|
33108
33096
|
export const makeRestrictionProductRequestForm = () => factories['io.flow.internal.v0.models.restriction_product_request_form']();
|
|
@@ -33116,13 +33104,13 @@ export const makeRestrictionRuleEffectForm = () => factories['io.flow.internal.v
|
|
|
33116
33104
|
export const makeRestrictionRuleEffectUpserted = () => factories['io.flow.internal.v0.models.restriction_rule_effect_upserted']();
|
|
33117
33105
|
export const makeRestrictionRuleExceptionAction = () => factories['io.flow.internal.v0.enums.restriction_rule_exception_action']();
|
|
33118
33106
|
export const makeRestrictionRuleForm = () => factories['io.flow.internal.v0.models.restriction_rule_form']();
|
|
33119
|
-
export const
|
|
33107
|
+
export const makeRestrictionRuleLaneExemption = () => factories['io.flow.internal.v0.models.restriction_rule_lane_exemption']();
|
|
33120
33108
|
export const makeRestrictionRuleOverride = () => factories['io.flow.internal.v0.models.restriction_rule_override']();
|
|
33121
33109
|
export const makeRestrictionRuleSummary = () => factories['io.flow.internal.v0.models.restriction_rule_summary']();
|
|
33122
33110
|
export const makeRestrictionRuleUpserted = () => factories['io.flow.internal.v0.models.restriction_rule_upserted']();
|
|
33123
33111
|
export const makeRestrictionStateReviewStatus = () => factories['io.flow.internal.v0.enums.restriction_state_review_status']();
|
|
33124
33112
|
export const makeRestrictionStatus = () => factories['io.flow.internal.v0.enums.restriction_status']();
|
|
33125
|
-
export const
|
|
33113
|
+
export const makeRestrictionSummaryCounts = () => factories['io.flow.internal.v0.models.restriction_summary_counts']();
|
|
33126
33114
|
export const makeRestrictionsDailyops = () => factories['io.flow.internal.v0.models.restrictions_dailyops']();
|
|
33127
33115
|
export const makeRestrictionsDailyopsDeleted = () => factories['io.flow.internal.v0.models.restrictions_dailyops_deleted']();
|
|
33128
33116
|
export const makeRestrictionsDailyopsUpserted = () => factories['io.flow.internal.v0.models.restrictions_dailyops_upserted']();
|
|
@@ -33146,6 +33134,9 @@ export const makeRevenueRecordType = () => factories['io.flow.internal.v0.enums.
|
|
|
33146
33134
|
export const makeRevenueRecordUpserted = () => factories['io.flow.internal.v0.models.revenue_record_upserted']();
|
|
33147
33135
|
export const makeRiskCheck = () => factories['io.flow.internal.v0.enums.risk_check']();
|
|
33148
33136
|
export const makeRiskEvaluation = () => factories['io.flow.internal.v0.enums.risk_evaluation']();
|
|
33137
|
+
export const makeRohanItem = () => factories['io.flow.internal.v0.models.rohan_item']();
|
|
33138
|
+
export const makeRohanItemForm = () => factories['io.flow.internal.v0.models.rohan_item_form']();
|
|
33139
|
+
export const makeRohanItemType = () => factories['io.flow.internal.v0.enums.rohan_item_type']();
|
|
33149
33140
|
export const makeRoutingAccount = () => factories['io.flow.internal.v0.models.routing_account']();
|
|
33150
33141
|
export const makeRoutingEntity = () => factories['io.flow.internal.v0.unions.routing_entity']();
|
|
33151
33142
|
export const makeRoutingMerchant = () => factories['io.flow.internal.v0.models.routing_merchant']();
|
|
@@ -33165,13 +33156,7 @@ export const makeSearchItemSummary = () => factories['io.flow.internal.v0.models
|
|
|
33165
33156
|
export const makeSearchOrderSummary = () => factories['io.flow.internal.v0.models.search_order_summary']();
|
|
33166
33157
|
export const makeSearchProviderExport = () => factories['io.flow.internal.v0.models.search_provider_export']();
|
|
33167
33158
|
export const makeSearchTrackingSummary = () => factories['io.flow.internal.v0.models.search_tracking_summary']();
|
|
33168
|
-
export const makeSessionCountries = () => factories['io.flow.internal.v0.models.session_countries']();
|
|
33169
|
-
export const makeSessionCountry = () => factories['io.flow.internal.v0.models.session_country']();
|
|
33170
|
-
export const makeSessionCountryForm = () => factories['io.flow.internal.v0.models.session_country_form']();
|
|
33171
|
-
export const makeSessionCountryStatus = () => factories['io.flow.internal.v0.enums.session_country_status']();
|
|
33172
33159
|
export const makeSessionOrderData = () => factories['io.flow.internal.v0.models.session_order_data']();
|
|
33173
|
-
export const makeSessionRollout = () => factories['io.flow.internal.v0.models.session_rollout']();
|
|
33174
|
-
export const makeSessionRolloutForm = () => factories['io.flow.internal.v0.models.session_rollout_form']();
|
|
33175
33160
|
export const makeSetupBlockPutForm = () => factories['io.flow.internal.v0.models.setup_block_put_form']();
|
|
33176
33161
|
export const makeSfExpress = () => factories['io.flow.internal.v0.models.sf_express']();
|
|
33177
33162
|
export const makeShipmentCostSummary = () => factories['io.flow.internal.v0.models.shipment_cost_summary']();
|