@flowio/api-internal-factories 0.0.123 → 0.0.125
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 +478 -85
- package/dist/esm/api-internal.js +404 -46
- package/dist/types/api-internal.d.ts +38 -4
- package/package.json +2 -2
- package/src/api-internal.ts +437 -52
package/src/api-internal.ts
CHANGED
|
@@ -6605,6 +6605,7 @@ const factories = {
|
|
|
6605
6605
|
'io.flow.internal.v0.enums.ansh_item_type': (): io.flow.internal.v0.enums.AnshItemType => faker.helpers.arrayElement(['physical', 'digital']),
|
|
6606
6606
|
'io.flow.internal.v0.enums.any_dangerous_goods': (): io.flow.internal.v0.enums.AnyDangerousGoods => faker.helpers.arrayElement(['yes', 'no', 'i_dont_know']),
|
|
6607
6607
|
'io.flow.internal.v0.enums.api_call_reference_id': (): io.flow.internal.v0.enums.ApiCallReferenceId => faker.helpers.arrayElement(['duty_rates_data_event', 'integration_test', 'unit_test']),
|
|
6608
|
+
'io.flow.internal.v0.enums.applicable_preferential_rate': (): io.flow.internal.v0.enums.ApplicablePreferentialRate => faker.helpers.arrayElement(['baby', 'children']),
|
|
6608
6609
|
|
|
6609
6610
|
'io.flow.internal.v0.enums.auto_restrict_rule': (): io.flow.internal.v0.enums.AutoRestrictRule => faker.helpers.arrayElement([
|
|
6610
6611
|
'prr-3ce7d556f2464314ab0a3e8eee33e0ce',
|
|
@@ -6954,13 +6955,17 @@ const factories = {
|
|
|
6954
6955
|
'io.flow.internal.v0.enums.classification_platform': (): io.flow.internal.v0.enums.ClassificationPlatform => faker.helpers.arrayElement(['GlobalE', 'Flow', 'Borderfree']),
|
|
6955
6956
|
'io.flow.internal.v0.enums.classification_type': (): io.flow.internal.v0.enums.ClassificationType => faker.helpers.arrayElement(['None', 'Manual', 'ML', 'System']),
|
|
6956
6957
|
'io.flow.internal.v0.enums.clothing_age_classification': (): io.flow.internal.v0.enums.ClothingAgeClassification => faker.helpers.arrayElement(['None', 'AgeKidsGeneral', 'Age0_10', 'Age10_13', 'Age13_14']),
|
|
6958
|
+
'io.flow.internal.v0.enums.commercial_invoice_version': (): io.flow.internal.v0.enums.CommercialInvoiceVersion => faker.helpers.arrayElement(['v2_2_1']),
|
|
6957
6959
|
'io.flow.internal.v0.enums.company': (): io.flow.internal.v0.enums.Company => faker.helpers.arrayElement(['globale', 'flow']),
|
|
6958
6960
|
'io.flow.internal.v0.enums.compliance_type': (): io.flow.internal.v0.enums.ComplianceType => faker.helpers.arrayElement(['weee']),
|
|
6959
6961
|
|
|
6960
|
-
'io.flow.internal.v0.enums.
|
|
6962
|
+
'io.flow.internal.v0.enums.connect_report_payment_transfer_type': (): io.flow.internal.v0.enums.ConnectReportPaymentTransferType => faker.helpers.arrayElement([
|
|
6961
6963
|
'ManagedMarketsRefundDebit',
|
|
6962
6964
|
'ManagedMarketsDutiesAndTaxesAdjustmentDebit',
|
|
6963
6965
|
'ManagedMarketsDisputedAmountDebit',
|
|
6966
|
+
]),
|
|
6967
|
+
|
|
6968
|
+
'io.flow.internal.v0.enums.connect_report_transfer_transfer_type': (): io.flow.internal.v0.enums.ConnectReportTransferTransferType => faker.helpers.arrayElement([
|
|
6964
6969
|
'ManagedMarketsChargeCredit',
|
|
6965
6970
|
'ManagedMarketsDisputeWonAmountCredit',
|
|
6966
6971
|
'ManagedMarketsDutiesAndTaxesAdjustmentCredit',
|
|
@@ -7238,8 +7243,6 @@ const factories = {
|
|
|
7238
7243
|
'unassigned_merchant_guid_deleted',
|
|
7239
7244
|
'partner_tracking_subscription_upserted',
|
|
7240
7245
|
'partner_tracking_subscription_deleted',
|
|
7241
|
-
'spp_tracker_update_request_upserted',
|
|
7242
|
-
'spp_tracker_update_request_deleted',
|
|
7243
7246
|
'partner_request_upserted',
|
|
7244
7247
|
'partner_request_deleted',
|
|
7245
7248
|
'internal_authorization_upserted',
|
|
@@ -7272,6 +7275,9 @@ const factories = {
|
|
|
7272
7275
|
'paypal_dispute_deleted',
|
|
7273
7276
|
'product_restriction_rule_decision_upserted',
|
|
7274
7277
|
'product_restriction_rule_decision_deleted',
|
|
7278
|
+
'product_restriction_state_inserted',
|
|
7279
|
+
'product_restriction_state_updated',
|
|
7280
|
+
'product_restriction_state_deleted',
|
|
7275
7281
|
'order_rates_published_v3',
|
|
7276
7282
|
'ratecard_dimension_estimate_upserted',
|
|
7277
7283
|
'ratecard_dimension_estimate_deleted',
|
|
@@ -7323,6 +7329,8 @@ const factories = {
|
|
|
7323
7329
|
'shopify_incoterm_summary_error_published',
|
|
7324
7330
|
'shopify_markets_best_selling_product_upserted',
|
|
7325
7331
|
'shopify_markets_best_selling_product_deleted',
|
|
7332
|
+
'shopify_order_risk_assessment_upserted',
|
|
7333
|
+
'shopify_order_risk_assessment_deleted',
|
|
7326
7334
|
'shopify_product_create_upserted',
|
|
7327
7335
|
'shopify_product_create_deleted',
|
|
7328
7336
|
'shopify_product_update_upserted',
|
|
@@ -7403,6 +7411,7 @@ const factories = {
|
|
|
7403
7411
|
]),
|
|
7404
7412
|
|
|
7405
7413
|
'io.flow.internal.v0.enums.ftp_protocol': (): io.flow.internal.v0.enums.FtpProtocol => faker.helpers.arrayElement(['sftp', 'ftp']),
|
|
7414
|
+
'io.flow.internal.v0.enums.ge_ingestion_file_status': (): io.flow.internal.v0.enums.GeIngestionFileStatus => faker.helpers.arrayElement(['pending', 'processed']),
|
|
7406
7415
|
'io.flow.internal.v0.enums.google_analytics_plugin': (): io.flow.internal.v0.enums.GoogleAnalyticsPlugin => faker.helpers.arrayElement(['ec']),
|
|
7407
7416
|
|
|
7408
7417
|
'io.flow.internal.v0.enums.graphql_service_types': (): io.flow.internal.v0.enums.GraphqlServiceTypes => faker.helpers.arrayElement([
|
|
@@ -7507,6 +7516,8 @@ const factories = {
|
|
|
7507
7516
|
'flash_title',
|
|
7508
7517
|
]),
|
|
7509
7518
|
|
|
7519
|
+
'io.flow.internal.v0.enums.niall_item_type': (): io.flow.internal.v0.enums.NiallItemType => faker.helpers.arrayElement(['physical', 'digital']),
|
|
7520
|
+
|
|
7510
7521
|
'io.flow.internal.v0.enums.no_liability_reason_code': (): io.flow.internal.v0.enums.NoLiabilityReasonCode => faker.helpers.arrayElement([
|
|
7511
7522
|
'zero_basis',
|
|
7512
7523
|
'zero_rate_on_goods',
|
|
@@ -7521,6 +7532,7 @@ const factories = {
|
|
|
7521
7532
|
'duty_free_by_trade_agreement',
|
|
7522
7533
|
]),
|
|
7523
7534
|
|
|
7535
|
+
'io.flow.internal.v0.enums.non_l4l_tax_duty_fx_transaction_type': (): io.flow.internal.v0.enums.NonL4LTaxDutyFxTransactionType => faker.helpers.arrayElement(['adjustment', 'reversal', 'fee']),
|
|
7524
7536
|
'io.flow.internal.v0.enums.onboarding_audit_message_level': (): io.flow.internal.v0.enums.OnboardingAuditMessageLevel => faker.helpers.arrayElement(['info', 'warning', 'error']),
|
|
7525
7537
|
'io.flow.internal.v0.enums.onboarding_audit_result': (): io.flow.internal.v0.enums.OnboardingAuditResult => faker.helpers.arrayElement(['pass', 'warning', 'fail']),
|
|
7526
7538
|
|
|
@@ -7594,6 +7606,7 @@ const factories = {
|
|
|
7594
7606
|
'io.flow.internal.v0.enums.organization_restriction_review_type': (): io.flow.internal.v0.enums.OrganizationRestrictionReviewType => faker.helpers.arrayElement(['all_pending', 'pending_verification']),
|
|
7595
7607
|
'io.flow.internal.v0.enums.organization_restriction_risk_level': (): io.flow.internal.v0.enums.OrganizationRestrictionRiskLevel => faker.helpers.arrayElement(['5', '15']),
|
|
7596
7608
|
'io.flow.internal.v0.enums.organization_restriction_screening_status': (): io.flow.internal.v0.enums.OrganizationRestrictionScreeningStatus => faker.helpers.arrayElement(['in_review', 'fully_reviewed', 'rejected', 'unscreened']),
|
|
7609
|
+
'io.flow.internal.v0.enums.organization_source': (): io.flow.internal.v0.enums.OrganizationSource => faker.helpers.arrayElement(['shopify', 'enterprise']),
|
|
7597
7610
|
'io.flow.internal.v0.enums.output_style': (): io.flow.internal.v0.enums.OutputStyle => faker.helpers.arrayElement(['flow', 'shopify_p1']),
|
|
7598
7611
|
'io.flow.internal.v0.enums.owner': (): io.flow.internal.v0.enums.Owner => faker.helpers.arrayElement(['flow', 'organization']),
|
|
7599
7612
|
'io.flow.internal.v0.enums.payment_short_url_discriminator': (): io.flow.internal.v0.enums.PaymentShortUrlDiscriminator => faker.helpers.arrayElement(['adyen_3ds2']),
|
|
@@ -7613,6 +7626,7 @@ const factories = {
|
|
|
7613
7626
|
|
|
7614
7627
|
'io.flow.internal.v0.enums.payment_summary_type': (): io.flow.internal.v0.enums.PaymentSummaryType => faker.helpers.arrayElement(['authorization', 'capture', 'refund', 'reversal', 'credit']),
|
|
7615
7628
|
'io.flow.internal.v0.enums.payment_term': (): io.flow.internal.v0.enums.PaymentTerm => faker.helpers.arrayElement(['net7', 'net15', 'net30']),
|
|
7629
|
+
'io.flow.internal.v0.enums.prateek_item_type': (): io.flow.internal.v0.enums.PrateekItemType => faker.helpers.arrayElement(['physical', 'digital']),
|
|
7616
7630
|
'io.flow.internal.v0.enums.preferred_billing_schedule': (): io.flow.internal.v0.enums.PreferredBillingSchedule => faker.helpers.arrayElement(['monthly', 'bi-monthly']),
|
|
7617
7631
|
'io.flow.internal.v0.enums.price_selector': (): io.flow.internal.v0.enums.PriceSelector => faker.helpers.arrayElement(['minimum', 'maximum']),
|
|
7618
7632
|
|
|
@@ -7697,6 +7711,10 @@ const factories = {
|
|
|
7697
7711
|
'io.flow.internal.v0.enums.responsible_party': (): io.flow.internal.v0.enums.ResponsibleParty => faker.helpers.arrayElement(['flow', 'organization']),
|
|
7698
7712
|
'io.flow.internal.v0.enums.restriction_action': (): io.flow.internal.v0.enums.RestrictionAction => faker.helpers.arrayElement(['prohibited', 'restricted']),
|
|
7699
7713
|
'io.flow.internal.v0.enums.restriction_decision': (): io.flow.internal.v0.enums.RestrictionDecision => faker.helpers.arrayElement(['accept', 'escalate', 'reject', 'review']),
|
|
7714
|
+
'io.flow.internal.v0.enums.restriction_organization_channel': (): io.flow.internal.v0.enums.RestrictionOrganizationChannel => faker.helpers.arrayElement(['shopify', 'enterprise', 'shopify-sandbox', 'enterprise-sandbox']),
|
|
7715
|
+
'io.flow.internal.v0.enums.restriction_organization_source': (): io.flow.internal.v0.enums.RestrictionOrganizationSource => faker.helpers.arrayElement(['shopify', 'enterprise']),
|
|
7716
|
+
'io.flow.internal.v0.enums.restriction_rule_exception_action': (): io.flow.internal.v0.enums.RestrictionRuleExceptionAction => faker.helpers.arrayElement(['allow', 'deny']),
|
|
7717
|
+
'io.flow.internal.v0.enums.restriction_state_review_status': (): io.flow.internal.v0.enums.RestrictionStateReviewStatus => faker.helpers.arrayElement(['reviewed', 'in_review']),
|
|
7700
7718
|
'io.flow.internal.v0.enums.restriction_status': (): io.flow.internal.v0.enums.RestrictionStatus => faker.helpers.arrayElement(['pending', 'in_review', 'escalated', 'accepted', 'restricted']),
|
|
7701
7719
|
'io.flow.internal.v0.enums.revenue_record_type': (): io.flow.internal.v0.enums.RevenueRecordType => faker.helpers.arrayElement(['pending', 'sales', 'refund']),
|
|
7702
7720
|
'io.flow.internal.v0.enums.risk_check': (): io.flow.internal.v0.enums.RiskCheck => faker.helpers.arrayElement(['three_d_secure']),
|
|
@@ -9011,6 +9029,9 @@ const factories = {
|
|
|
9011
9029
|
duty: factories['io.flow.common.v0.models.price'](),
|
|
9012
9030
|
trueup: factories['io.flow.common.v0.models.price'](),
|
|
9013
9031
|
carrier_charge: factories['io.flow.common.v0.models.price'](),
|
|
9032
|
+
duty_refund: factories['io.flow.common.v0.models.price'](),
|
|
9033
|
+
ge_revenue_share: factories['io.flow.common.v0.models.price'](),
|
|
9034
|
+
non_l4l_tax_duty_fx: factories['io.flow.common.v0.models.price'](),
|
|
9014
9035
|
ending_balance: factories['io.flow.common.v0.models.price'](),
|
|
9015
9036
|
tax_refund: factories['io.flow.common.v0.models.price'](),
|
|
9016
9037
|
}),
|
|
@@ -11297,10 +11318,40 @@ const factories = {
|
|
|
11297
11318
|
passphrase_ids: arrayOf(() => factories.string()),
|
|
11298
11319
|
}),
|
|
11299
11320
|
|
|
11321
|
+
'io.flow.internal.v0.models.enriched_line_item_form': (): io.flow.internal.v0.models.EnrichedLineItemForm => ({
|
|
11322
|
+
form: factories['io.flow.common.v0.models.line_item_form'](),
|
|
11323
|
+
customs_product_name: factories.string(),
|
|
11324
|
+
tariff_code: factories.string(),
|
|
11325
|
+
customs_description: factories.string(),
|
|
11326
|
+
hs_description: factories.string(),
|
|
11327
|
+
country_of_origin: factories.string(),
|
|
11328
|
+
price_composition_rate: factories.decimal(),
|
|
11329
|
+
duty_composition_rate: factories.decimal(),
|
|
11330
|
+
export_control_classification_number: factories.string(),
|
|
11331
|
+
sub_item_number: factories.string(),
|
|
11332
|
+
item_type: factories.string(),
|
|
11333
|
+
material: factories.string(),
|
|
11334
|
+
construction: factories.string(),
|
|
11335
|
+
gender: factories.string(),
|
|
11336
|
+
}),
|
|
11337
|
+
|
|
11338
|
+
'io.flow.internal.v0.models.enriched_shipping_label_package': (): io.flow.internal.v0.models.EnrichedShippingLabelPackage => ({
|
|
11339
|
+
dimensions: factories['io.flow.common.v0.models.dimension'](),
|
|
11340
|
+
items: arrayOf(() => factories['io.flow.internal.v0.models.enriched_line_item_form']()),
|
|
11341
|
+
reference_number: factories.string(),
|
|
11342
|
+
}),
|
|
11343
|
+
|
|
11300
11344
|
'io.flow.internal.v0.models.entity_reference': (): io.flow.internal.v0.models.EntityReference => ({
|
|
11301
11345
|
id: factories.string(),
|
|
11302
11346
|
}),
|
|
11303
11347
|
|
|
11348
|
+
'io.flow.internal.v0.models.entity_reference_number': (): io.flow.internal.v0.models.EntityReferenceNumber => ({
|
|
11349
|
+
short_name: factories.string(),
|
|
11350
|
+
number: factories.string(),
|
|
11351
|
+
issuing_country: factories['io.flow.reference.v0.models.country'](),
|
|
11352
|
+
display_name: factories.string(),
|
|
11353
|
+
}),
|
|
11354
|
+
|
|
11304
11355
|
'io.flow.internal.v0.models.erp_flow_file': (): io.flow.internal.v0.models.ErpFlowFile => ({
|
|
11305
11356
|
id: factories.string(),
|
|
11306
11357
|
type: factories['io.flow.internal.v0.enums.erp_file_type'](),
|
|
@@ -12826,6 +12877,20 @@ const factories = {
|
|
|
12826
12877
|
fiserv_authentication_data: factories['io.flow.internal.v0.models.fiserv_authentication_data_reference'](),
|
|
12827
12878
|
}),
|
|
12828
12879
|
|
|
12880
|
+
'io.flow.internal.v0.models.internal_item': (): io.flow.internal.v0.models.InternalItem => ({
|
|
12881
|
+
id: factories.string(),
|
|
12882
|
+
organization: factories.string(),
|
|
12883
|
+
catalog: factories.string(),
|
|
12884
|
+
name: factories.string(),
|
|
12885
|
+
number: factories.string(),
|
|
12886
|
+
currency: factories.string(),
|
|
12887
|
+
price: factories.double(),
|
|
12888
|
+
categories: arrayOf(() => factories.string()),
|
|
12889
|
+
attributes: objectOf(() => factories.string()),
|
|
12890
|
+
sku: factories.string(),
|
|
12891
|
+
barcode: factories.string(),
|
|
12892
|
+
}),
|
|
12893
|
+
|
|
12829
12894
|
'io.flow.internal.v0.models.internal_item_form': (): io.flow.internal.v0.models.InternalItemForm => ({
|
|
12830
12895
|
id: factories.string(),
|
|
12831
12896
|
item_form: factories['io.flow.catalog.v0.models.item_form'](),
|
|
@@ -12889,6 +12954,78 @@ const factories = {
|
|
|
12889
12954
|
total: factories['io.flow.common.v0.models.price'](),
|
|
12890
12955
|
}),
|
|
12891
12956
|
|
|
12957
|
+
'io.flow.internal.v0.models.invoice_data': (): io.flow.internal.v0.models.InvoiceData => ({
|
|
12958
|
+
organization_id: factories.string(),
|
|
12959
|
+
order_number: factories.string(),
|
|
12960
|
+
invoice_reference: factories.string(),
|
|
12961
|
+
signature_url: factories.string(),
|
|
12962
|
+
signature_date: factories.string(),
|
|
12963
|
+
signature_name: factories.string(),
|
|
12964
|
+
line_items: arrayOf(() => factories['io.flow.internal.v0.models.invoice_data_line_item']()),
|
|
12965
|
+
currency: factories['io.flow.reference.v0.models.currency'](),
|
|
12966
|
+
delivered_duty: factories['io.flow.common.v0.enums.delivered_duty'](),
|
|
12967
|
+
delivered_duty_text: factories.string(),
|
|
12968
|
+
transaction_date: factories.string(),
|
|
12969
|
+
origin: factories['io.flow.internal.v0.models.validated_address'](),
|
|
12970
|
+
destination: factories['io.flow.internal.v0.models.validated_address'](),
|
|
12971
|
+
billing_address: factories['io.flow.internal.v0.models.validated_address'](),
|
|
12972
|
+
service: factories['io.flow.reference.v0.models.carrier_service'](),
|
|
12973
|
+
flow_tracking_number: factories.string(),
|
|
12974
|
+
rex_number: factories.string(),
|
|
12975
|
+
weee_number: factories.string(),
|
|
12976
|
+
business_gst_numbers: arrayOf(() => factories['io.flow.internal.v0.models.entity_reference_number']()),
|
|
12977
|
+
destination_identification_numbers: arrayOf(() => factories['io.flow.internal.v0.models.entity_reference_number']()),
|
|
12978
|
+
vat_name: factories.string(),
|
|
12979
|
+
item_identifier_column_name: factories.string(),
|
|
12980
|
+
feature_show_merchant_id: factories.boolean(),
|
|
12981
|
+
shipping_pricing: factories['io.flow.internal.v0.models.shipping_pricing'](),
|
|
12982
|
+
shipment_recipient: factories['io.flow.label.v0.enums.shipment_recipient'](),
|
|
12983
|
+
eu_preferential_origin: factories.string(),
|
|
12984
|
+
customs_master_file_number: factories.string(),
|
|
12985
|
+
merchant_of_record_entity: factories['io.flow.common.v0.models.merchant_of_record_entity'](),
|
|
12986
|
+
weight_measured: factories.string(),
|
|
12987
|
+
notes_export_declaration: factories.string(),
|
|
12988
|
+
notes_import_duty_taxes_due: factories.string(),
|
|
12989
|
+
invoice_id: factories.string(),
|
|
12990
|
+
invoice_date: factories.string(),
|
|
12991
|
+
invoice_number: factories.string(),
|
|
12992
|
+
invoice_version: factories['io.flow.internal.v0.enums.commercial_invoice_version'](),
|
|
12993
|
+
shipping_price: factories.decimal(),
|
|
12994
|
+
goods_value: factories.decimal(),
|
|
12995
|
+
total_taxes: factories.decimal(),
|
|
12996
|
+
total_duties: factories.decimal(),
|
|
12997
|
+
customs_value: factories.decimal(),
|
|
12998
|
+
total_value: factories.decimal(),
|
|
12999
|
+
usa_exporter_identifier_number_if_value_over_threshold: factories.string(),
|
|
13000
|
+
feature_israel_notes_import_duty_and_taxes_due: factories.boolean(),
|
|
13001
|
+
feature_new_export_declaration: factories.boolean(),
|
|
13002
|
+
}),
|
|
13003
|
+
|
|
13004
|
+
'io.flow.internal.v0.models.invoice_data_line_item': (): io.flow.internal.v0.models.InvoiceDataLineItem => ({
|
|
13005
|
+
i: factories.integer(),
|
|
13006
|
+
number: factories.string(),
|
|
13007
|
+
quantity: factories.long(),
|
|
13008
|
+
description: factories.string(),
|
|
13009
|
+
tariff_code: factories.string(),
|
|
13010
|
+
country_of_origin: factories.string(),
|
|
13011
|
+
display_country_of_origin: factories.string(),
|
|
13012
|
+
gst_paid: factories.boolean(),
|
|
13013
|
+
gst_paid_text: factories.string(),
|
|
13014
|
+
unit_price: factories.decimal(),
|
|
13015
|
+
vat_price: factories.decimal(),
|
|
13016
|
+
duty_price: factories.decimal(),
|
|
13017
|
+
discount_price: factories.decimal(),
|
|
13018
|
+
total_price: factories.decimal(),
|
|
13019
|
+
export_control_classification_number: factories.string(),
|
|
13020
|
+
manufacturer_id: factories.string(),
|
|
13021
|
+
display_number: factories.string(),
|
|
13022
|
+
item_type: factories.string(),
|
|
13023
|
+
construction: factories.string(),
|
|
13024
|
+
gender: factories.string(),
|
|
13025
|
+
material: factories.string(),
|
|
13026
|
+
url: factories.string(),
|
|
13027
|
+
}),
|
|
13028
|
+
|
|
12892
13029
|
'io.flow.internal.v0.models.invoice_info_form': (): io.flow.internal.v0.models.InvoiceInfoForm => ({
|
|
12893
13030
|
invoice_number: factories.string(),
|
|
12894
13031
|
invoice_date: factories.string(),
|
|
@@ -13008,6 +13145,7 @@ const factories = {
|
|
|
13008
13145
|
duty_composition_rate: factories.decimal(),
|
|
13009
13146
|
export_control_classification_number: factories.string(),
|
|
13010
13147
|
labels: factories['io.flow.internal.v0.models.customs_product_labels'](),
|
|
13148
|
+
applicable_preferential_rate: factories['io.flow.internal.v0.enums.applicable_preferential_rate'](),
|
|
13011
13149
|
}),
|
|
13012
13150
|
|
|
13013
13151
|
'io.flow.internal.v0.models.item_dimension_estimate': (): io.flow.internal.v0.models.ItemDimensionEstimate => ({
|
|
@@ -14113,6 +14251,23 @@ const factories = {
|
|
|
14113
14251
|
conditions: factories.string(),
|
|
14114
14252
|
}),
|
|
14115
14253
|
|
|
14254
|
+
'io.flow.internal.v0.models.niall_item': (): io.flow.internal.v0.models.NiallItem => ({
|
|
14255
|
+
id: factories.string(),
|
|
14256
|
+
number: factories.string(),
|
|
14257
|
+
amount: factories['io.flow.common.v0.models.price'](),
|
|
14258
|
+
description: factories.string(),
|
|
14259
|
+
type: factories['io.flow.internal.v0.enums.niall_item_type'](),
|
|
14260
|
+
added_on: factories.date_time_iso_8601(),
|
|
14261
|
+
}),
|
|
14262
|
+
|
|
14263
|
+
'io.flow.internal.v0.models.niall_item_form': (): io.flow.internal.v0.models.NiallItemForm => ({
|
|
14264
|
+
number: factories.string(),
|
|
14265
|
+
amount: factories['io.flow.common.v0.models.price'](),
|
|
14266
|
+
description: factories.string(),
|
|
14267
|
+
type: factories['io.flow.internal.v0.enums.niall_item_type'](),
|
|
14268
|
+
added_on: factories.date_time_iso_8601(),
|
|
14269
|
+
}),
|
|
14270
|
+
|
|
14116
14271
|
'io.flow.internal.v0.models.no_calculated_tax_amount': (): io.flow.internal.v0.models.NoCalculatedTaxAmount => ({
|
|
14117
14272
|
discriminator: 'no_calculated_tax_amount',
|
|
14118
14273
|
amount: factories.decimal(),
|
|
@@ -15759,6 +15914,23 @@ const factories = {
|
|
|
15759
15914
|
rate: factories.decimal(),
|
|
15760
15915
|
}),
|
|
15761
15916
|
|
|
15917
|
+
'io.flow.internal.v0.models.prateek_item': (): io.flow.internal.v0.models.PrateekItem => ({
|
|
15918
|
+
id: factories.string(),
|
|
15919
|
+
number: factories.string(),
|
|
15920
|
+
amount: factories['io.flow.common.v0.models.price'](),
|
|
15921
|
+
description: factories.string(),
|
|
15922
|
+
type: factories['io.flow.internal.v0.enums.prateek_item_type'](),
|
|
15923
|
+
added_on: factories.date_iso_8601(),
|
|
15924
|
+
}),
|
|
15925
|
+
|
|
15926
|
+
'io.flow.internal.v0.models.prateek_item_form': (): io.flow.internal.v0.models.PrateekItemForm => ({
|
|
15927
|
+
number: factories.string(),
|
|
15928
|
+
amount: factories['io.flow.common.v0.models.price'](),
|
|
15929
|
+
description: factories.string(),
|
|
15930
|
+
type: factories['io.flow.internal.v0.enums.prateek_item_type'](),
|
|
15931
|
+
added_on: factories.date_iso_8601(),
|
|
15932
|
+
}),
|
|
15933
|
+
|
|
15762
15934
|
'io.flow.internal.v0.models.prediction': (): io.flow.internal.v0.models.Prediction => ({
|
|
15763
15935
|
main_material: factories.string(),
|
|
15764
15936
|
gender: factories.string(),
|
|
@@ -15967,6 +16139,42 @@ const factories = {
|
|
|
15967
16139
|
product_restriction_rule_decision: factories['io.flow.internal.v0.models.product_restriction_rule_decision'](),
|
|
15968
16140
|
}),
|
|
15969
16141
|
|
|
16142
|
+
'io.flow.internal.v0.models.product_restriction_state': (): io.flow.internal.v0.models.ProductRestrictionState => ({
|
|
16143
|
+
id: factories.string(),
|
|
16144
|
+
organization_id: factories.string(),
|
|
16145
|
+
product_number: factories.string(),
|
|
16146
|
+
review_status: factories['io.flow.internal.v0.enums.restriction_state_review_status'](),
|
|
16147
|
+
pending_restriction_count: factories.long(),
|
|
16148
|
+
pending_verification_count: factories.long(),
|
|
16149
|
+
oldest_pending_restriction_date: factories.date_time_iso_8601(),
|
|
16150
|
+
oldest_pending_verification_date: factories.date_time_iso_8601(),
|
|
16151
|
+
}),
|
|
16152
|
+
|
|
16153
|
+
'io.flow.internal.v0.models.product_restriction_state_deleted': (): io.flow.internal.v0.models.ProductRestrictionStateDeleted => ({
|
|
16154
|
+
discriminator: 'product_restriction_state_deleted',
|
|
16155
|
+
event_id: factories.string(),
|
|
16156
|
+
timestamp: factories.date_time_iso_8601(),
|
|
16157
|
+
organization: factories.string(),
|
|
16158
|
+
product_restriction_state: factories['io.flow.internal.v0.models.product_restriction_state'](),
|
|
16159
|
+
}),
|
|
16160
|
+
|
|
16161
|
+
'io.flow.internal.v0.models.product_restriction_state_inserted': (): io.flow.internal.v0.models.ProductRestrictionStateInserted => ({
|
|
16162
|
+
discriminator: 'product_restriction_state_inserted',
|
|
16163
|
+
event_id: factories.string(),
|
|
16164
|
+
timestamp: factories.date_time_iso_8601(),
|
|
16165
|
+
organization: factories.string(),
|
|
16166
|
+
product_restriction_state: factories['io.flow.internal.v0.models.product_restriction_state'](),
|
|
16167
|
+
}),
|
|
16168
|
+
|
|
16169
|
+
'io.flow.internal.v0.models.product_restriction_state_updated': (): io.flow.internal.v0.models.ProductRestrictionStateUpdated => ({
|
|
16170
|
+
discriminator: 'product_restriction_state_updated',
|
|
16171
|
+
event_id: factories.string(),
|
|
16172
|
+
timestamp: factories.date_time_iso_8601(),
|
|
16173
|
+
organization: factories.string(),
|
|
16174
|
+
previous_product_restriction_state: factories['io.flow.internal.v0.models.product_restriction_state'](),
|
|
16175
|
+
product_restriction_state: factories['io.flow.internal.v0.models.product_restriction_state'](),
|
|
16176
|
+
}),
|
|
16177
|
+
|
|
15970
16178
|
'io.flow.internal.v0.models.product_review_history': (): io.flow.internal.v0.models.ProductReviewHistory => ({
|
|
15971
16179
|
product_id: factories.string(),
|
|
15972
16180
|
|
|
@@ -15975,6 +16183,14 @@ const factories = {
|
|
|
15975
16183
|
),
|
|
15976
16184
|
}),
|
|
15977
16185
|
|
|
16186
|
+
'io.flow.internal.v0.models.product_sellability_result': (): io.flow.internal.v0.models.ProductSellabilityResult => ({
|
|
16187
|
+
shop_id: factories.string(),
|
|
16188
|
+
product_number: factories.string(),
|
|
16189
|
+
request_id: factories.string(),
|
|
16190
|
+
hs6_code: factories.string(),
|
|
16191
|
+
restricted_regions: arrayOf(() => factories.string()),
|
|
16192
|
+
}),
|
|
16193
|
+
|
|
15978
16194
|
'io.flow.internal.v0.models.product_transaction': (): io.flow.internal.v0.models.ProductTransaction => ({
|
|
15979
16195
|
transaction_amount: factories.decimal(),
|
|
15980
16196
|
destination_amount: factories.decimal(),
|
|
@@ -16685,6 +16901,7 @@ const factories = {
|
|
|
16685
16901
|
tax_inclusive: factories.boolean(),
|
|
16686
16902
|
duty_inclusive: factories.boolean(),
|
|
16687
16903
|
manual_payment: factories.boolean(),
|
|
16904
|
+
manual_capture: factories.boolean(),
|
|
16688
16905
|
partial_fulfillment: factories.boolean(),
|
|
16689
16906
|
partial_refund: factories.boolean(),
|
|
16690
16907
|
}),
|
|
@@ -16977,6 +17194,13 @@ const factories = {
|
|
|
16977
17194
|
restriction_organization_status: factories['io.flow.internal.v0.models.restriction_organization_status'](),
|
|
16978
17195
|
}),
|
|
16979
17196
|
|
|
17197
|
+
'io.flow.internal.v0.models.restriction_organization_summary': (): io.flow.internal.v0.models.RestrictionOrganizationSummary => ({
|
|
17198
|
+
id: factories.string(),
|
|
17199
|
+
name: factories.string(),
|
|
17200
|
+
environment: factories['io.flow.common.v0.enums.environment'](),
|
|
17201
|
+
source: factories['io.flow.internal.v0.enums.organization_source'](),
|
|
17202
|
+
}),
|
|
17203
|
+
|
|
16980
17204
|
'io.flow.internal.v0.models.restriction_pending': (): io.flow.internal.v0.models.RestrictionPending => ({
|
|
16981
17205
|
rule: factories['io.flow.internal.v0.models.restriction_rule_summary'](),
|
|
16982
17206
|
count: factories.long(),
|
|
@@ -17039,6 +17263,7 @@ const factories = {
|
|
|
17039
17263
|
negative_keywords: arrayOf(() => factories.string()),
|
|
17040
17264
|
value_threshold_usd: factories.decimal(),
|
|
17041
17265
|
auto_review_criteria: arrayOf(() => factories['io.flow.internal.v0.models.auto_review_criteria']()),
|
|
17266
|
+
source: factories['io.flow.internal.v0.enums.restriction_organization_source'](),
|
|
17042
17267
|
}),
|
|
17043
17268
|
|
|
17044
17269
|
'io.flow.internal.v0.models.restriction_rule_decision_form': (): io.flow.internal.v0.models.RestrictionRuleDecisionForm => ({
|
|
@@ -17092,6 +17317,7 @@ const factories = {
|
|
|
17092
17317
|
negative_keywords: arrayOf(() => factories.string()),
|
|
17093
17318
|
value_threshold_usd: factories.decimal(),
|
|
17094
17319
|
auto_review_criteria: arrayOf(() => factories['io.flow.internal.v0.models.auto_review_criteria']()),
|
|
17320
|
+
source: factories['io.flow.internal.v0.enums.restriction_organization_source'](),
|
|
17095
17321
|
}),
|
|
17096
17322
|
|
|
17097
17323
|
'io.flow.internal.v0.models.restriction_rule_metadata': (): io.flow.internal.v0.models.RestrictionRuleMetadata => ({
|
|
@@ -17458,6 +17684,19 @@ const factories = {
|
|
|
17458
17684
|
customer_id: factories.string(),
|
|
17459
17685
|
}),
|
|
17460
17686
|
|
|
17687
|
+
'io.flow.internal.v0.models.shipment_cost_summary': (): io.flow.internal.v0.models.ShipmentCostSummary => ({
|
|
17688
|
+
lane_id: factories.string(),
|
|
17689
|
+
ratecard_id: factories.string(),
|
|
17690
|
+
ratecard_owner: factories['io.flow.fulfillment.v0.enums.ratecard_owner'](),
|
|
17691
|
+
glbe_shipping_method_id: factories.string(),
|
|
17692
|
+
glbe_proposition_name: factories.string(),
|
|
17693
|
+
weight_break: factories.decimal(),
|
|
17694
|
+
channel_revenue_share_percentage: factories.decimal(),
|
|
17695
|
+
rate_level_key: factories.string(),
|
|
17696
|
+
cost_estimate_source: factories['io.flow.label.v0.enums.cost_estimate_source'](),
|
|
17697
|
+
cost: factories['io.flow.common.v0.models.money'](),
|
|
17698
|
+
}),
|
|
17699
|
+
|
|
17461
17700
|
'io.flow.internal.v0.models.shipping_lane': (): io.flow.internal.v0.models.ShippingLane => ({
|
|
17462
17701
|
origin: factories.string(),
|
|
17463
17702
|
destination: factories.string(),
|
|
@@ -17467,6 +17706,11 @@ const factories = {
|
|
|
17467
17706
|
id: factories.string(),
|
|
17468
17707
|
}),
|
|
17469
17708
|
|
|
17709
|
+
'io.flow.internal.v0.models.shipping_pricing': (): io.flow.internal.v0.models.ShippingPricing => ({
|
|
17710
|
+
freight_cost: factories.decimal(),
|
|
17711
|
+
customer_price: factories.decimal(),
|
|
17712
|
+
}),
|
|
17713
|
+
|
|
17470
17714
|
'io.flow.internal.v0.models.shop': (): io.flow.internal.v0.models.Shop => ({
|
|
17471
17715
|
id: factories.string(),
|
|
17472
17716
|
organization: factories['io.flow.common.v0.models.organization_reference'](),
|
|
@@ -18082,6 +18326,28 @@ const factories = {
|
|
|
18082
18326
|
),
|
|
18083
18327
|
}),
|
|
18084
18328
|
|
|
18329
|
+
'io.flow.internal.v0.models.shopify_order_risk_assessment': (): io.flow.internal.v0.models.ShopifyOrderRiskAssessment => ({
|
|
18330
|
+
id: factories.string(),
|
|
18331
|
+
risk_level: factories.string(),
|
|
18332
|
+
assessment_created_at: factories.date_time_iso_8601(),
|
|
18333
|
+
}),
|
|
18334
|
+
|
|
18335
|
+
'io.flow.internal.v0.models.shopify_order_risk_assessment_deleted': (): io.flow.internal.v0.models.ShopifyOrderRiskAssessmentDeleted => ({
|
|
18336
|
+
discriminator: 'shopify_order_risk_assessment_deleted',
|
|
18337
|
+
event_id: factories.string(),
|
|
18338
|
+
timestamp: factories.date_time_iso_8601(),
|
|
18339
|
+
organization: factories.string(),
|
|
18340
|
+
id: factories.string(),
|
|
18341
|
+
}),
|
|
18342
|
+
|
|
18343
|
+
'io.flow.internal.v0.models.shopify_order_risk_assessment_upserted': (): io.flow.internal.v0.models.ShopifyOrderRiskAssessmentUpserted => ({
|
|
18344
|
+
discriminator: 'shopify_order_risk_assessment_upserted',
|
|
18345
|
+
event_id: factories.string(),
|
|
18346
|
+
timestamp: factories.date_time_iso_8601(),
|
|
18347
|
+
organization: factories.string(),
|
|
18348
|
+
assessment: factories['io.flow.internal.v0.models.shopify_order_risk_assessment'](),
|
|
18349
|
+
}),
|
|
18350
|
+
|
|
18085
18351
|
'io.flow.internal.v0.models.shopify_organization_settings': (): io.flow.internal.v0.models.ShopifyOrganizationSettings => ({
|
|
18086
18352
|
id: factories.string(),
|
|
18087
18353
|
process_label: factories.boolean(),
|
|
@@ -18530,26 +18796,6 @@ const factories = {
|
|
|
18530
18796
|
spot_rate: factories['io.flow.internal.v0.models.spot_rate'](),
|
|
18531
18797
|
}),
|
|
18532
18798
|
|
|
18533
|
-
'io.flow.internal.v0.models.spp_tracker_update_request': (): io.flow.internal.v0.models.SppTrackerUpdateRequest => ({
|
|
18534
|
-
id: factories.string(),
|
|
18535
|
-
tracking_subscription: factories['io.flow.internal.v0.models.tracking_subscription'](),
|
|
18536
|
-
created_at: factories.date_time_iso_8601(),
|
|
18537
|
-
}),
|
|
18538
|
-
|
|
18539
|
-
'io.flow.internal.v0.models.spp_tracker_update_request_deleted': (): io.flow.internal.v0.models.SppTrackerUpdateRequestDeleted => ({
|
|
18540
|
-
discriminator: 'spp_tracker_update_request_deleted',
|
|
18541
|
-
event_id: factories.string(),
|
|
18542
|
-
timestamp: factories.date_time_iso_8601(),
|
|
18543
|
-
id: factories.string(),
|
|
18544
|
-
}),
|
|
18545
|
-
|
|
18546
|
-
'io.flow.internal.v0.models.spp_tracker_update_request_upserted': (): io.flow.internal.v0.models.SppTrackerUpdateRequestUpserted => ({
|
|
18547
|
-
discriminator: 'spp_tracker_update_request_upserted',
|
|
18548
|
-
event_id: factories.string(),
|
|
18549
|
-
timestamp: factories.date_time_iso_8601(),
|
|
18550
|
-
spp_tracker_update_request: factories['io.flow.internal.v0.models.spp_tracker_update_request'](),
|
|
18551
|
-
}),
|
|
18552
|
-
|
|
18553
18799
|
'io.flow.internal.v0.models.standalone_attachment': (): io.flow.internal.v0.models.StandaloneAttachment => ({
|
|
18554
18800
|
id: factories.string(),
|
|
18555
18801
|
statement: factories['io.flow.internal.v0.models.billing_statement_reference'](),
|
|
@@ -18712,8 +18958,7 @@ const factories = {
|
|
|
18712
18958
|
payment_method_type: factories.string(),
|
|
18713
18959
|
card_brand: factories.string(),
|
|
18714
18960
|
statement_descriptor: factories.string(),
|
|
18715
|
-
|
|
18716
|
-
transfer_metadata: factories.object(),
|
|
18961
|
+
metadata: factories['io.flow.internal.v0.unions.stripe_connect_report_record_metadata'](),
|
|
18717
18962
|
}),
|
|
18718
18963
|
|
|
18719
18964
|
'io.flow.internal.v0.models.stripe_connect_report_record_deleted': (): io.flow.internal.v0.models.StripeConnectReportRecordDeleted => ({
|
|
@@ -18724,20 +18969,40 @@ const factories = {
|
|
|
18724
18969
|
}),
|
|
18725
18970
|
|
|
18726
18971
|
'io.flow.internal.v0.models.stripe_connect_report_record_payment_metadata': (): io.flow.internal.v0.models.StripeConnectReportRecordPaymentMetadata => ({
|
|
18972
|
+
discriminator: 'stripe_connect_report_record_payment_metadata',
|
|
18727
18973
|
shop_id: factories.integer(),
|
|
18728
18974
|
shop_plan: factories['io.flow.internal.v0.enums.shopify_plan_type'](),
|
|
18729
18975
|
checkout_id: factories.string(),
|
|
18730
18976
|
order_id: factories.integer(),
|
|
18731
18977
|
order_transaction_id: factories.integer(),
|
|
18732
|
-
transfer_type: factories['io.flow.internal.v0.enums.
|
|
18978
|
+
transfer_type: factories['io.flow.internal.v0.enums.connect_report_payment_transfer_type'](),
|
|
18733
18979
|
transfer_exchange_rate: factories.decimal(),
|
|
18734
18980
|
charge_total: factories.integer(),
|
|
18735
18981
|
charge_currency: factories.string(),
|
|
18736
18982
|
charge_exchange_rate: factories.decimal(),
|
|
18983
|
+
refund_exchange_rate: factories.decimal(),
|
|
18737
18984
|
duties: factories.integer(),
|
|
18738
18985
|
import_taxes: factories.integer(),
|
|
18739
|
-
|
|
18740
|
-
|
|
18986
|
+
mor_fees: factories.integer(),
|
|
18987
|
+
mor_foreign_exchange_fees: factories.integer(),
|
|
18988
|
+
}),
|
|
18989
|
+
|
|
18990
|
+
'io.flow.internal.v0.models.stripe_connect_report_record_transfer_metadata': (): io.flow.internal.v0.models.StripeConnectReportRecordTransferMetadata => ({
|
|
18991
|
+
discriminator: 'stripe_connect_report_record_transfer_metadata',
|
|
18992
|
+
shop_id: factories.integer(),
|
|
18993
|
+
order_id: factories.integer(),
|
|
18994
|
+
order_transaction_id: factories.integer(),
|
|
18995
|
+
transfer_type: factories['io.flow.internal.v0.enums.connect_report_transfer_transfer_type'](),
|
|
18996
|
+
charge_total: factories.integer(),
|
|
18997
|
+
charge_currency: factories.string(),
|
|
18998
|
+
charge_exchange_rate: factories.decimal(),
|
|
18999
|
+
duties: factories.integer(),
|
|
19000
|
+
import_taxes: factories.integer(),
|
|
19001
|
+
mor_fees: factories.integer(),
|
|
19002
|
+
mor_foreign_exchange_fees: factories.integer(),
|
|
19003
|
+
merchant_account_currency: factories.string(),
|
|
19004
|
+
amount_in_merchant_account_currency: factories.integer(),
|
|
19005
|
+
payout_exchange_rate: factories.decimal(),
|
|
18741
19006
|
}),
|
|
18742
19007
|
|
|
18743
19008
|
'io.flow.internal.v0.models.stripe_connect_report_record_upserted': (): io.flow.internal.v0.models.StripeConnectReportRecordUpserted => ({
|
|
@@ -19717,6 +19982,53 @@ const factories = {
|
|
|
19717
19982
|
customer_bundle: factories['io.flow.customer.v0.models.customer_bundle'](),
|
|
19718
19983
|
}),
|
|
19719
19984
|
|
|
19985
|
+
'io.flow.internal.v0.models.validated_address': (): io.flow.internal.v0.models.ValidatedAddress => ({
|
|
19986
|
+
company_name: factories.string(),
|
|
19987
|
+
person_name: factories.string(),
|
|
19988
|
+
phone: factories.string(),
|
|
19989
|
+
email: factories.string(),
|
|
19990
|
+
original_streets: arrayOf(() => factories.string()),
|
|
19991
|
+
city: factories.string(),
|
|
19992
|
+
province: factories.string(),
|
|
19993
|
+
postal: factories.string(),
|
|
19994
|
+
country: factories['io.flow.reference.v0.models.country'](),
|
|
19995
|
+
original_address: factories['io.flow.fulfillment.v0.models.shipping_address'](),
|
|
19996
|
+
}),
|
|
19997
|
+
|
|
19998
|
+
'io.flow.internal.v0.models.validated_shipping_data': (): io.flow.internal.v0.models.ValidatedShippingData => ({
|
|
19999
|
+
organization: factories.string(),
|
|
20000
|
+
reference_id: factories.string(),
|
|
20001
|
+
delivered_duty: factories['io.flow.common.v0.enums.delivered_duty'](),
|
|
20002
|
+
merchant_of_record_entity: factories['io.flow.common.v0.models.merchant_of_record_entity'](),
|
|
20003
|
+
destination: factories['io.flow.internal.v0.models.validated_address'](),
|
|
20004
|
+
origin: factories['io.flow.internal.v0.models.validated_address'](),
|
|
20005
|
+
service: factories['io.flow.reference.v0.models.carrier_service'](),
|
|
20006
|
+
'package': factories['io.flow.internal.v0.models.enriched_shipping_label_package'](),
|
|
20007
|
+
total_catalog_item_value: factories['io.flow.common.v0.models.money'](),
|
|
20008
|
+
weight_unit: factories['io.flow.common.v0.enums.unit_of_measurement'](),
|
|
20009
|
+
distance_unit: factories['io.flow.common.v0.enums.unit_of_measurement'](),
|
|
20010
|
+
flow_tracking_number: factories.string(),
|
|
20011
|
+
center: factories['io.flow.fulfillment.v0.models.center'](),
|
|
20012
|
+
catalog_items: arrayOf(() => factories['io.flow.internal.v0.models.internal_item']()),
|
|
20013
|
+
order: factories['io.flow.experience.v0.models.order'](),
|
|
20014
|
+
window: factories['io.flow.common.v0.models.datetime_range'](),
|
|
20015
|
+
id: factories.string(),
|
|
20016
|
+
shipment_recipient: factories['io.flow.label.v0.enums.shipment_recipient'](),
|
|
20017
|
+
request_id: factories.string(),
|
|
20018
|
+
commercial_invoice_data: factories['io.flow.internal.v0.models.invoice_data'](),
|
|
20019
|
+
order_identifier: factories.string(),
|
|
20020
|
+
fulfillment_key: factories.string(),
|
|
20021
|
+
rex_number: factories.string(),
|
|
20022
|
+
weee_number: factories.string(),
|
|
20023
|
+
generate_commercial_invoice_only: factories.boolean(),
|
|
20024
|
+
liability_remittance_plan: factories['io.flow.internal.v0.models.liability_remittance_plan'](),
|
|
20025
|
+
shipment_cost_summary: factories['io.flow.internal.v0.models.shipment_cost_summary'](),
|
|
20026
|
+
shipping_label_hop_cost_itemized_estimate: factories['io.flow.label.v0.models.shipping_label_hop_cost_itemized_estimate'](),
|
|
20027
|
+
additional_services_requested: arrayOf(() => factories['io.flow.label.v0.models.additional_services_requested']()),
|
|
20028
|
+
provided_charges: arrayOf(() => factories['io.flow.internal.v0.models.charge_input']()),
|
|
20029
|
+
direction: factories['io.flow.label.v0.enums.direction'](),
|
|
20030
|
+
}),
|
|
20031
|
+
|
|
19720
20032
|
'io.flow.internal.v0.models.validation_character_length': (): io.flow.internal.v0.models.ValidationCharacterLength => ({
|
|
19721
20033
|
discriminator: 'validation_character_length',
|
|
19722
20034
|
min: factories.long(),
|
|
@@ -20207,8 +20519,6 @@ const factories = {
|
|
|
20207
20519
|
() => factories['io.flow.internal.v0.models.unassigned_merchant_guid_deleted'](),
|
|
20208
20520
|
() => factories['io.flow.internal.v0.models.partner_tracking_subscription_upserted'](),
|
|
20209
20521
|
() => factories['io.flow.internal.v0.models.partner_tracking_subscription_deleted'](),
|
|
20210
|
-
() => factories['io.flow.internal.v0.models.spp_tracker_update_request_upserted'](),
|
|
20211
|
-
() => factories['io.flow.internal.v0.models.spp_tracker_update_request_deleted'](),
|
|
20212
20522
|
() => factories['io.flow.internal.v0.models.partner_request_upserted'](),
|
|
20213
20523
|
() => factories['io.flow.internal.v0.models.partner_request_deleted'](),
|
|
20214
20524
|
() => factories['io.flow.internal.v0.models.internal_authorization_upserted'](),
|
|
@@ -20241,6 +20551,9 @@ const factories = {
|
|
|
20241
20551
|
() => factories['io.flow.internal.v0.models.paypal_dispute_deleted'](),
|
|
20242
20552
|
() => factories['io.flow.internal.v0.models.product_restriction_rule_decision_upserted'](),
|
|
20243
20553
|
() => factories['io.flow.internal.v0.models.product_restriction_rule_decision_deleted'](),
|
|
20554
|
+
() => factories['io.flow.internal.v0.models.product_restriction_state_inserted'](),
|
|
20555
|
+
() => factories['io.flow.internal.v0.models.product_restriction_state_updated'](),
|
|
20556
|
+
() => factories['io.flow.internal.v0.models.product_restriction_state_deleted'](),
|
|
20244
20557
|
() => factories['io.flow.internal.v0.models.order_rates_published_v3'](),
|
|
20245
20558
|
() => factories['io.flow.internal.v0.models.ratecard_dimension_estimate_upserted'](),
|
|
20246
20559
|
() => factories['io.flow.internal.v0.models.ratecard_dimension_estimate_deleted'](),
|
|
@@ -20292,6 +20605,8 @@ const factories = {
|
|
|
20292
20605
|
() => factories['io.flow.internal.v0.models.shopify_incoterm_summary_error_published'](),
|
|
20293
20606
|
() => factories['io.flow.internal.v0.models.shopify_markets_best_selling_product_upserted'](),
|
|
20294
20607
|
() => factories['io.flow.internal.v0.models.shopify_markets_best_selling_product_deleted'](),
|
|
20608
|
+
() => factories['io.flow.internal.v0.models.shopify_order_risk_assessment_upserted'](),
|
|
20609
|
+
() => factories['io.flow.internal.v0.models.shopify_order_risk_assessment_deleted'](),
|
|
20295
20610
|
() => factories['io.flow.internal.v0.models.shopify_product_create_upserted'](),
|
|
20296
20611
|
() => factories['io.flow.internal.v0.models.shopify_product_create_deleted'](),
|
|
20297
20612
|
() => factories['io.flow.internal.v0.models.shopify_product_update_upserted'](),
|
|
@@ -20768,6 +21083,15 @@ const factories = {
|
|
|
20768
21083
|
return f();
|
|
20769
21084
|
},
|
|
20770
21085
|
|
|
21086
|
+
'io.flow.internal.v0.unions.stripe_connect_report_record_metadata': (): io.flow.internal.v0.unions.StripeConnectReportRecordMetadata => {
|
|
21087
|
+
const f = faker.helpers.arrayElement([
|
|
21088
|
+
() => factories['io.flow.internal.v0.models.stripe_connect_report_record_payment_metadata'](),
|
|
21089
|
+
() => factories['io.flow.internal.v0.models.stripe_connect_report_record_transfer_metadata'](),
|
|
21090
|
+
]);
|
|
21091
|
+
|
|
21092
|
+
return f();
|
|
21093
|
+
},
|
|
21094
|
+
|
|
20771
21095
|
'io.flow.internal.v0.unions.tariff_eligibility_data': (): io.flow.internal.v0.unions.TariffEligibilityData => {
|
|
20772
21096
|
const f = faker.helpers.arrayElement([
|
|
20773
21097
|
() => factories['io.flow.internal.v0.models.registered_exporter_tariff_eligibility_data'](),
|
|
@@ -22076,19 +22400,6 @@ const factories = {
|
|
|
22076
22400
|
environment: factories['io.flow.common.v0.enums.environment'](),
|
|
22077
22401
|
}),
|
|
22078
22402
|
|
|
22079
|
-
'io.flow.organization.v0.models.organization_configuration_reference': (): io.flow.organization.v0.models.OrganizationConfigurationReference => ({
|
|
22080
|
-
id: factories.string(),
|
|
22081
|
-
}),
|
|
22082
|
-
|
|
22083
|
-
'io.flow.organization.v0.models.organization_default_configurations': (): io.flow.organization.v0.models.OrganizationDefaultConfigurations => ({
|
|
22084
|
-
id: factories.string(),
|
|
22085
|
-
checkout_configuration: factories['io.flow.organization.v0.models.organization_configuration_reference'](),
|
|
22086
|
-
}),
|
|
22087
|
-
|
|
22088
|
-
'io.flow.organization.v0.models.organization_default_configurations_form': (): io.flow.organization.v0.models.OrganizationDefaultConfigurationsForm => ({
|
|
22089
|
-
id: factories.string(),
|
|
22090
|
-
}),
|
|
22091
|
-
|
|
22092
22403
|
'io.flow.organization.v0.models.organization_form': (): io.flow.organization.v0.models.OrganizationForm => ({
|
|
22093
22404
|
id: factories.string(),
|
|
22094
22405
|
name: factories.string(),
|
|
@@ -24317,11 +24628,10 @@ const factories = {
|
|
|
24317
24628
|
'io.flow.payment.v0.models.transfer': (): io.flow.payment.v0.models.Transfer => ({
|
|
24318
24629
|
id: factories.string(),
|
|
24319
24630
|
type: factories['io.flow.payment.v0.enums.transfer_type'](),
|
|
24320
|
-
|
|
24321
|
-
transferred_money: factories['io.flow.payment.v0.models.exchanged_money'](),
|
|
24631
|
+
base: factories['io.flow.common.v0.models.money'](),
|
|
24322
24632
|
status: factories['io.flow.payment.v0.enums.transfer_status'](),
|
|
24323
24633
|
created_at: factories.date_time_iso_8601(),
|
|
24324
|
-
|
|
24634
|
+
authorization: factories['io.flow.payment.v0.models.authorization_reference'](),
|
|
24325
24635
|
transferred_at: factories.date_time_iso_8601(),
|
|
24326
24636
|
}),
|
|
24327
24637
|
|
|
@@ -25186,6 +25496,13 @@ const factories = {
|
|
|
25186
25496
|
amount: factories['io.flow.common.v0.models.money'](),
|
|
25187
25497
|
}),
|
|
25188
25498
|
|
|
25499
|
+
'io.flow.ratecard.v0.models.overweight_piece_surcharge_service_fee': (): io.flow.ratecard.v0.models.OverweightPieceSurchargeServiceFee => ({
|
|
25500
|
+
discriminator: 'overweight_piece_surcharge_service_fee',
|
|
25501
|
+
weight_threshold: factories.decimal(),
|
|
25502
|
+
weight_unit: factories['io.flow.common.v0.enums.unit_of_measurement'](),
|
|
25503
|
+
amount: factories['io.flow.common.v0.models.money'](),
|
|
25504
|
+
}),
|
|
25505
|
+
|
|
25189
25506
|
'io.flow.ratecard.v0.models.peak_surcharge_by_weight_service_fee': (): io.flow.ratecard.v0.models.PeakSurchargeByWeightServiceFee => ({
|
|
25190
25507
|
discriminator: 'peak_surcharge_by_weight_service_fee',
|
|
25191
25508
|
amount: factories['io.flow.common.v0.models.money'](),
|
|
@@ -25306,6 +25623,7 @@ const factories = {
|
|
|
25306
25623
|
'io.flow.ratecard.v0.models.ratecard_form': (): io.flow.ratecard.v0.models.RatecardForm => ({
|
|
25307
25624
|
direction: factories['io.flow.label.v0.enums.direction'](),
|
|
25308
25625
|
effective_at: factories.date_time_iso_8601(),
|
|
25626
|
+
published_at: factories.date_time_iso_8601(),
|
|
25309
25627
|
origination_zones: arrayOf(() => factories['io.flow.common.v0.models.zone']()),
|
|
25310
25628
|
service: factories.string(),
|
|
25311
25629
|
number: factories.string(),
|
|
@@ -25508,6 +25826,7 @@ const factories = {
|
|
|
25508
25826
|
() => factories['io.flow.ratecard.v0.models.peak_surcharge_by_weight_service_fee'](),
|
|
25509
25827
|
() => factories['io.flow.ratecard.v0.models.duties_taxes_paid_surcharge_service_fee'](),
|
|
25510
25828
|
() => factories['io.flow.ratecard.v0.models.oversize_piece_surcharge_service_fee'](),
|
|
25829
|
+
() => factories['io.flow.ratecard.v0.models.overweight_piece_surcharge_service_fee'](),
|
|
25511
25830
|
() => factories['io.flow.ratecard.v0.models.remote_area_by_weight_service_fee'](),
|
|
25512
25831
|
() => factories['io.flow.ratecard.v0.models.additional_handling_service_fee'](),
|
|
25513
25832
|
() => factories['io.flow.ratecard.v0.models.large_package_service_fee'](),
|
|
@@ -25761,7 +26080,8 @@ const factories = {
|
|
|
25761
26080
|
},
|
|
25762
26081
|
|
|
25763
26082
|
'io.flow.sellability.v0.enums.rule_effect_type': (): io.flow.sellability.v0.enums.RuleEffectType => faker.helpers.arrayElement(['market', 'dhl', 'dhl_ecommerce', 'ups']),
|
|
25764
|
-
'io.flow.sellability.v0.enums.sellability_error_code': (): io.flow.sellability.v0.enums.SellabilityErrorCode => faker.helpers.arrayElement(['insufficient_details', 'ineligible_category']),
|
|
26083
|
+
'io.flow.sellability.v0.enums.sellability_error_code': (): io.flow.sellability.v0.enums.SellabilityErrorCode => faker.helpers.arrayElement(['insufficient_details', 'ineligible_category', 'wait_for_high_fidelity']),
|
|
26084
|
+
'io.flow.sellability.v0.enums.sellability_request_status': (): io.flow.sellability.v0.enums.SellabilityRequestStatus => faker.helpers.arrayElement(['commit']),
|
|
25765
26085
|
|
|
25766
26086
|
'io.flow.sellability.v0.models.product_sellability': (): io.flow.sellability.v0.models.ProductSellability => ({
|
|
25767
26087
|
shop_id: factories.string(),
|
|
@@ -25777,11 +26097,11 @@ const factories = {
|
|
|
25777
26097
|
'io.flow.sellability.v0.models.product_sellability_form': (): io.flow.sellability.v0.models.ProductSellabilityForm => ({
|
|
25778
26098
|
shop_id: factories.string(),
|
|
25779
26099
|
product_id: factories.string(),
|
|
25780
|
-
request_id: factories.string(),
|
|
25781
26100
|
name: factories.string(),
|
|
25782
26101
|
price: factories['io.flow.sellability.v0.models.product_sellability_price'](),
|
|
25783
26102
|
description: factories.string(),
|
|
25784
26103
|
taxonomy_category: factories['io.flow.product.v0.models.product_taxonomy_category'](),
|
|
26104
|
+
status: factories['io.flow.sellability.v0.enums.sellability_request_status'](),
|
|
25785
26105
|
}),
|
|
25786
26106
|
|
|
25787
26107
|
'io.flow.sellability.v0.models.product_sellability_price': (): io.flow.sellability.v0.models.ProductSellabilityPrice => ({
|
|
@@ -27298,6 +27618,22 @@ const factories = {
|
|
|
27298
27618
|
registration: factories['io.flow.shopify.markets.internal.v0.models.shopify_markets_webhook_registration'](),
|
|
27299
27619
|
}),
|
|
27300
27620
|
|
|
27621
|
+
'io.flow.shopify.markets.internal.event.v0.models.shopify_order_risk_assessment_deleted': (): io.flow.shopify.markets.internal.event.v0.models.ShopifyOrderRiskAssessmentDeleted => ({
|
|
27622
|
+
discriminator: 'shopify_order_risk_assessment_deleted',
|
|
27623
|
+
event_id: factories.string(),
|
|
27624
|
+
timestamp: factories.date_time_iso_8601(),
|
|
27625
|
+
organization: factories.string(),
|
|
27626
|
+
id: factories.string(),
|
|
27627
|
+
}),
|
|
27628
|
+
|
|
27629
|
+
'io.flow.shopify.markets.internal.event.v0.models.shopify_order_risk_assessment_upserted': (): io.flow.shopify.markets.internal.event.v0.models.ShopifyOrderRiskAssessmentUpserted => ({
|
|
27630
|
+
discriminator: 'shopify_order_risk_assessment_upserted',
|
|
27631
|
+
event_id: factories.string(),
|
|
27632
|
+
timestamp: factories.date_time_iso_8601(),
|
|
27633
|
+
organization: factories.string(),
|
|
27634
|
+
assessment: factories['io.flow.shopify.markets.internal.v0.models.shopify_order_risk_assessment'](),
|
|
27635
|
+
}),
|
|
27636
|
+
|
|
27301
27637
|
'io.flow.shopify.markets.internal.event.v0.models.shopify_product_bundle_deleted': (): io.flow.shopify.markets.internal.event.v0.models.ShopifyProductBundleDeleted => ({
|
|
27302
27638
|
discriminator: 'shopify_product_bundle_deleted',
|
|
27303
27639
|
event_id: factories.string(),
|
|
@@ -27337,6 +27673,8 @@ const factories = {
|
|
|
27337
27673
|
() => factories['io.flow.shopify.markets.internal.event.v0.models.shopify_incoterm_summary_error_published'](),
|
|
27338
27674
|
() => factories['io.flow.shopify.markets.internal.event.v0.models.shopify_markets_best_selling_product_upserted'](),
|
|
27339
27675
|
() => factories['io.flow.shopify.markets.internal.event.v0.models.shopify_markets_best_selling_product_deleted'](),
|
|
27676
|
+
() => factories['io.flow.shopify.markets.internal.event.v0.models.shopify_order_risk_assessment_upserted'](),
|
|
27677
|
+
() => factories['io.flow.shopify.markets.internal.event.v0.models.shopify_order_risk_assessment_deleted'](),
|
|
27340
27678
|
]);
|
|
27341
27679
|
|
|
27342
27680
|
return f();
|
|
@@ -27606,6 +27944,12 @@ const factories = {
|
|
|
27606
27944
|
order_note: factories.string(),
|
|
27607
27945
|
}),
|
|
27608
27946
|
|
|
27947
|
+
'io.flow.shopify.markets.internal.v0.models.shopify_order_risk_assessment': (): io.flow.shopify.markets.internal.v0.models.ShopifyOrderRiskAssessment => ({
|
|
27948
|
+
id: factories.string(),
|
|
27949
|
+
risk_level: factories.string(),
|
|
27950
|
+
assessment_created_at: factories.date_time_iso_8601(),
|
|
27951
|
+
}),
|
|
27952
|
+
|
|
27609
27953
|
'io.flow.shopify.markets.internal.v0.models.shopify_product_bundle': (): io.flow.shopify.markets.internal.v0.models.ShopifyProductBundle => ({
|
|
27610
27954
|
id: factories.string(),
|
|
27611
27955
|
underlying: factories['io.flow.shopify.markets.internal.v0.models.shopify_product_bundle_underlying'](),
|
|
@@ -27804,6 +28148,7 @@ const factories = {
|
|
|
27804
28148
|
'orders/updated',
|
|
27805
28149
|
'orders/delete',
|
|
27806
28150
|
'orders/edited',
|
|
28151
|
+
'orders/risk_assessment_changed',
|
|
27807
28152
|
'products/create',
|
|
27808
28153
|
'products/delete',
|
|
27809
28154
|
'products/update',
|
|
@@ -28459,6 +28804,12 @@ const factories = {
|
|
|
28459
28804
|
total_tax_set: factories['io.flow.shopify.markets.v0.models.shopify_order_money_set'](),
|
|
28460
28805
|
}),
|
|
28461
28806
|
|
|
28807
|
+
'io.flow.shopify.markets.v0.models.shopify_order_risk_assessment_changed': (): io.flow.shopify.markets.v0.models.ShopifyOrderRiskAssessmentChanged => ({
|
|
28808
|
+
order_id: factories.long(),
|
|
28809
|
+
risk_level: factories.string(),
|
|
28810
|
+
created_at: factories.date_time_iso_8601(),
|
|
28811
|
+
}),
|
|
28812
|
+
|
|
28462
28813
|
'io.flow.shopify.markets.v0.models.shopify_order_shipping_line': (): io.flow.shopify.markets.v0.models.ShopifyOrderShippingLine => ({
|
|
28463
28814
|
code: factories.string(),
|
|
28464
28815
|
price: factories.string(),
|
|
@@ -31431,6 +31782,7 @@ export const makeAnyDangerousGoods = () => factories['io.flow.internal.v0.enums.
|
|
|
31431
31782
|
export const makeApiCallReferenceId = () => factories['io.flow.internal.v0.enums.api_call_reference_id']();
|
|
31432
31783
|
export const makeApmContent = () => factories['io.flow.internal.v0.models.apm_content']();
|
|
31433
31784
|
export const makeApplePayAuthorizationPayload = () => factories['io.flow.internal.v0.models.apple_pay_authorization_payload']();
|
|
31785
|
+
export const makeApplicablePreferentialRate = () => factories['io.flow.internal.v0.enums.applicable_preferential_rate']();
|
|
31434
31786
|
export const makeApplyAtValueForm = () => factories['io.flow.internal.v0.models.apply_at_value_form']();
|
|
31435
31787
|
export const makeAttemptStatistics = () => factories['io.flow.internal.v0.models.attempt_statistics']();
|
|
31436
31788
|
export const makeAttributeLabel = () => factories['io.flow.internal.v0.models.attribute_label']();
|
|
@@ -31710,6 +32062,7 @@ export const makeCommercialInvoiceInternal = () => factories['io.flow.internal.v
|
|
|
31710
32062
|
export const makeCommercialInvoiceInternalDeleted = () => factories['io.flow.internal.v0.models.commercial_invoice_internal_deleted']();
|
|
31711
32063
|
export const makeCommercialInvoiceInternalUpserted = () => factories['io.flow.internal.v0.models.commercial_invoice_internal_upserted']();
|
|
31712
32064
|
export const makeCommercialInvoiceSummary = () => factories['io.flow.internal.v0.models.commercial_invoice_summary']();
|
|
32065
|
+
export const makeCommercialInvoiceVersion = () => factories['io.flow.internal.v0.enums.commercial_invoice_version']();
|
|
31713
32066
|
export const makeCompany = () => factories['io.flow.internal.v0.enums.company']();
|
|
31714
32067
|
export const makeCompanyReference = () => factories['io.flow.internal.v0.models.company_reference']();
|
|
31715
32068
|
export const makeCompliance = () => factories['io.flow.internal.v0.models.compliance']();
|
|
@@ -31717,7 +32070,8 @@ export const makeComplianceData = () => factories['io.flow.internal.v0.unions.co
|
|
|
31717
32070
|
export const makeComplianceForm = () => factories['io.flow.internal.v0.unions.compliance_form']();
|
|
31718
32071
|
export const makeComplianceType = () => factories['io.flow.internal.v0.enums.compliance_type']();
|
|
31719
32072
|
export const makeComponents = () => factories['io.flow.internal.v0.models.components']();
|
|
31720
|
-
export const
|
|
32073
|
+
export const makeConnectReportPaymentTransferType = () => factories['io.flow.internal.v0.enums.connect_report_payment_transfer_type']();
|
|
32074
|
+
export const makeConnectReportTransferTransferType = () => factories['io.flow.internal.v0.enums.connect_report_transfer_transfer_type']();
|
|
31721
32075
|
export const makeConsoleLabelRequestForm = () => factories['io.flow.internal.v0.models.console_label_request_form']();
|
|
31722
32076
|
export const makeConsoleLabelValidationForm = () => factories['io.flow.internal.v0.unions.console_label_validation_form']();
|
|
31723
32077
|
export const makeConsoleMarkUnresolvableForm = () => factories['io.flow.internal.v0.models.console_mark_unresolvable_form']();
|
|
@@ -31870,7 +32224,10 @@ export const makeEmailModificationForm = () => factories['io.flow.internal.v0.mo
|
|
|
31870
32224
|
export const makeEmptyAttribute = () => factories['io.flow.internal.v0.enums.empty_attribute']();
|
|
31871
32225
|
export const makeEmptyClassificationForm = () => factories['io.flow.internal.v0.models.empty_classification_form']();
|
|
31872
32226
|
export const makeEncryption = () => factories['io.flow.internal.v0.models.encryption']();
|
|
32227
|
+
export const makeEnrichedLineItemForm = () => factories['io.flow.internal.v0.models.enriched_line_item_form']();
|
|
32228
|
+
export const makeEnrichedShippingLabelPackage = () => factories['io.flow.internal.v0.models.enriched_shipping_label_package']();
|
|
31873
32229
|
export const makeEntityReference = () => factories['io.flow.internal.v0.models.entity_reference']();
|
|
32230
|
+
export const makeEntityReferenceNumber = () => factories['io.flow.internal.v0.models.entity_reference_number']();
|
|
31874
32231
|
export const makeErpFileType = () => factories['io.flow.internal.v0.enums.erp_file_type']();
|
|
31875
32232
|
export const makeErpFlowFile = () => factories['io.flow.internal.v0.models.erp_flow_file']();
|
|
31876
32233
|
export const makeErpFlowFileForm = () => factories['io.flow.internal.v0.models.erp_flow_file_form']();
|
|
@@ -32043,6 +32400,7 @@ export const makeFxRevenueRecognitionOrder = () => factories['io.flow.internal.v
|
|
|
32043
32400
|
export const makeFxRevenueRecognitionOrganization = () => factories['io.flow.internal.v0.models.fx_revenue_recognition_organization']();
|
|
32044
32401
|
export const makeFxRevenueRecognitionRate = () => factories['io.flow.internal.v0.models.fx_revenue_recognition_rate']();
|
|
32045
32402
|
export const makeFxRevenueRecognitionSource = () => factories['io.flow.internal.v0.models.fx_revenue_recognition_source']();
|
|
32403
|
+
export const makeGeIngestionFileStatus = () => factories['io.flow.internal.v0.enums.ge_ingestion_file_status']();
|
|
32046
32404
|
export const makeGeRevenueShareTransaction = () => factories['io.flow.internal.v0.models.ge_revenue_share_transaction']();
|
|
32047
32405
|
export const makeGenerateLoad = () => factories['io.flow.internal.v0.unions.generate_load']();
|
|
32048
32406
|
export const makeGenerateLoadMultipleOrgs = () => factories['io.flow.internal.v0.models.generate_load_multiple_orgs']();
|
|
@@ -32098,6 +32456,7 @@ export const makeInternalDebugTransaction = () => factories['io.flow.internal.v0
|
|
|
32098
32456
|
export const makeInternalExclusionRuleForm = () => factories['io.flow.internal.v0.models.internal_exclusion_rule_form']();
|
|
32099
32457
|
export const makeInternalFiservAuthorizationDetails = () => factories['io.flow.internal.v0.models.internal_fiserv_authorization_details']();
|
|
32100
32458
|
export const makeInternalHarmonizationStatistic = () => factories['io.flow.internal.v0.unions.internal_harmonization_statistic']();
|
|
32459
|
+
export const makeInternalItem = () => factories['io.flow.internal.v0.models.internal_item']();
|
|
32101
32460
|
export const makeInternalItemForm = () => factories['io.flow.internal.v0.models.internal_item_form']();
|
|
32102
32461
|
export const makeInternalOrder = () => factories['io.flow.internal.v0.models.internal_order']();
|
|
32103
32462
|
export const makeInternalPaymentEntityType = () => factories['io.flow.internal.v0.enums.internal_payment_entity_type']();
|
|
@@ -32111,6 +32470,8 @@ export const makeInternalTransactionDetailsCard = () => factories['io.flow.inter
|
|
|
32111
32470
|
export const makeInvariant = () => factories['io.flow.internal.v0.models.invariant']();
|
|
32112
32471
|
export const makeInventoryItemWrapper = () => factories['io.flow.internal.v0.models.inventory_item_wrapper']();
|
|
32113
32472
|
export const makeInvoice = () => factories['io.flow.internal.v0.models.invoice']();
|
|
32473
|
+
export const makeInvoiceData = () => factories['io.flow.internal.v0.models.invoice_data']();
|
|
32474
|
+
export const makeInvoiceDataLineItem = () => factories['io.flow.internal.v0.models.invoice_data_line_item']();
|
|
32114
32475
|
export const makeInvoiceInfoForm = () => factories['io.flow.internal.v0.models.invoice_info_form']();
|
|
32115
32476
|
export const makeInvoiceLine = () => factories['io.flow.internal.v0.models.invoice_line']();
|
|
32116
32477
|
export const makeInvoiceLineItem = () => factories['io.flow.internal.v0.models.invoice_line_item']();
|
|
@@ -32290,11 +32651,15 @@ export const makeMixedBagWeight = () => factories['io.flow.internal.v0.enums.mix
|
|
|
32290
32651
|
export const makeNatureOfSale = () => factories['io.flow.internal.v0.enums.nature_of_sale']();
|
|
32291
32652
|
export const makeNegativeDebitMetrics = () => factories['io.flow.internal.v0.models.negative_debit_metrics']();
|
|
32292
32653
|
export const makeNextBillingStatement = () => factories['io.flow.internal.v0.models.next_billing_statement']();
|
|
32654
|
+
export const makeNiallItem = () => factories['io.flow.internal.v0.models.niall_item']();
|
|
32655
|
+
export const makeNiallItemForm = () => factories['io.flow.internal.v0.models.niall_item_form']();
|
|
32656
|
+
export const makeNiallItemType = () => factories['io.flow.internal.v0.enums.niall_item_type']();
|
|
32293
32657
|
export const makeNoCalculatedTaxAmount = () => factories['io.flow.internal.v0.models.no_calculated_tax_amount']();
|
|
32294
32658
|
export const makeNoClassificationForm = () => factories['io.flow.internal.v0.models.no_classification_form']();
|
|
32295
32659
|
export const makeNoLiabilityReasonCode = () => factories['io.flow.internal.v0.enums.no_liability_reason_code']();
|
|
32296
32660
|
export const makeNonChannelPaymentBankAccount = () => factories['io.flow.internal.v0.models.non_channel_payment_bank_account']();
|
|
32297
32661
|
export const makeNonL4LTaxDutyFxTransaction = () => factories['io.flow.internal.v0.models.non_l4l_tax_duty_fx_transaction']();
|
|
32662
|
+
export const makeNonL4LTaxDutyFxTransactionType = () => factories['io.flow.internal.v0.enums.non_l4l_tax_duty_fx_transaction_type']();
|
|
32298
32663
|
export const makeNotification = () => factories['io.flow.internal.v0.models.notification']();
|
|
32299
32664
|
export const makeOnboardingAuditMessage = () => factories['io.flow.internal.v0.models.onboarding_audit_message']();
|
|
32300
32665
|
export const makeOnboardingAuditMessageLevel = () => factories['io.flow.internal.v0.enums.onboarding_audit_message_level']();
|
|
@@ -32425,6 +32790,7 @@ export const makeOrganizationRestrictionStatusNote = () => factories['io.flow.in
|
|
|
32425
32790
|
export const makeOrganizationRestrictionStatusUpserted = () => factories['io.flow.internal.v0.models.organization_restriction_status_upserted']();
|
|
32426
32791
|
export const makeOrganizationSettings = () => factories['io.flow.internal.v0.models.organization_settings']();
|
|
32427
32792
|
export const makeOrganizationSettingsForm = () => factories['io.flow.internal.v0.models.organization_settings_form']();
|
|
32793
|
+
export const makeOrganizationSource = () => factories['io.flow.internal.v0.enums.organization_source']();
|
|
32428
32794
|
export const makeOrganizationStatusChange = () => factories['io.flow.internal.v0.models.organization_status_change']();
|
|
32429
32795
|
export const makeOrganizationStatusChangeDeleted = () => factories['io.flow.internal.v0.models.organization_status_change_deleted']();
|
|
32430
32796
|
export const makeOrganizationStatusChangeUpserted = () => factories['io.flow.internal.v0.models.organization_status_change_upserted']();
|
|
@@ -32530,6 +32896,9 @@ export const makePlatformFeeFlat = () => factories['io.flow.internal.v0.models.p
|
|
|
32530
32896
|
export const makePlatformFeePause = () => factories['io.flow.internal.v0.models.platform_fee_pause']();
|
|
32531
32897
|
export const makePlatformFeePercentage = () => factories['io.flow.internal.v0.models.platform_fee_percentage']();
|
|
32532
32898
|
export const makePlatformFeePercentageTier = () => factories['io.flow.internal.v0.models.platform_fee_percentage_tier']();
|
|
32899
|
+
export const makePrateekItem = () => factories['io.flow.internal.v0.models.prateek_item']();
|
|
32900
|
+
export const makePrateekItemForm = () => factories['io.flow.internal.v0.models.prateek_item_form']();
|
|
32901
|
+
export const makePrateekItemType = () => factories['io.flow.internal.v0.enums.prateek_item_type']();
|
|
32533
32902
|
export const makePrediction = () => factories['io.flow.internal.v0.models.prediction']();
|
|
32534
32903
|
export const makePreferredBillingSchedule = () => factories['io.flow.internal.v0.enums.preferred_billing_schedule']();
|
|
32535
32904
|
export const makePriceSelector = () => factories['io.flow.internal.v0.enums.price_selector']();
|
|
@@ -32566,7 +32935,12 @@ export const makeProductRestrictionResultValidationError = () => factories['io.f
|
|
|
32566
32935
|
export const makeProductRestrictionRuleDecision = () => factories['io.flow.internal.v0.models.product_restriction_rule_decision']();
|
|
32567
32936
|
export const makeProductRestrictionRuleDecisionDeleted = () => factories['io.flow.internal.v0.models.product_restriction_rule_decision_deleted']();
|
|
32568
32937
|
export const makeProductRestrictionRuleDecisionUpserted = () => factories['io.flow.internal.v0.models.product_restriction_rule_decision_upserted']();
|
|
32938
|
+
export const makeProductRestrictionState = () => factories['io.flow.internal.v0.models.product_restriction_state']();
|
|
32939
|
+
export const makeProductRestrictionStateDeleted = () => factories['io.flow.internal.v0.models.product_restriction_state_deleted']();
|
|
32940
|
+
export const makeProductRestrictionStateInserted = () => factories['io.flow.internal.v0.models.product_restriction_state_inserted']();
|
|
32941
|
+
export const makeProductRestrictionStateUpdated = () => factories['io.flow.internal.v0.models.product_restriction_state_updated']();
|
|
32569
32942
|
export const makeProductReviewHistory = () => factories['io.flow.internal.v0.models.product_review_history']();
|
|
32943
|
+
export const makeProductSellabilityResult = () => factories['io.flow.internal.v0.models.product_sellability_result']();
|
|
32570
32944
|
export const makeProductStatus = () => factories['io.flow.internal.v0.enums.product_status']();
|
|
32571
32945
|
export const makeProductTransaction = () => factories['io.flow.internal.v0.models.product_transaction']();
|
|
32572
32946
|
export const makePromptAction = () => factories['io.flow.internal.v0.enums.prompt_action']();
|
|
@@ -32721,10 +33095,13 @@ export const makeRestrictionItemReviewSummary = () => factories['io.flow.interna
|
|
|
32721
33095
|
export const makeRestrictionKeywordMetadata = () => factories['io.flow.internal.v0.models.restriction_keyword_metadata']();
|
|
32722
33096
|
export const makeRestrictionKeywords = () => factories['io.flow.internal.v0.models.restriction_keywords']();
|
|
32723
33097
|
export const makeRestrictionOrganization = () => factories['io.flow.internal.v0.models.restriction_organization']();
|
|
33098
|
+
export const makeRestrictionOrganizationChannel = () => factories['io.flow.internal.v0.enums.restriction_organization_channel']();
|
|
32724
33099
|
export const makeRestrictionOrganizationDecisionSummary = () => factories['io.flow.internal.v0.models.restriction_organization_decision_summary']();
|
|
33100
|
+
export const makeRestrictionOrganizationSource = () => factories['io.flow.internal.v0.enums.restriction_organization_source']();
|
|
32725
33101
|
export const makeRestrictionOrganizationStatus = () => factories['io.flow.internal.v0.models.restriction_organization_status']();
|
|
32726
33102
|
export const makeRestrictionOrganizationStatusDeleted = () => factories['io.flow.internal.v0.models.restriction_organization_status_deleted']();
|
|
32727
33103
|
export const makeRestrictionOrganizationStatusUpserted = () => factories['io.flow.internal.v0.models.restriction_organization_status_upserted']();
|
|
33104
|
+
export const makeRestrictionOrganizationSummary = () => factories['io.flow.internal.v0.models.restriction_organization_summary']();
|
|
32728
33105
|
export const makeRestrictionPending = () => factories['io.flow.internal.v0.models.restriction_pending']();
|
|
32729
33106
|
export const makeRestrictionProduct = () => factories['io.flow.internal.v0.models.restriction_product']();
|
|
32730
33107
|
export const makeRestrictionProductDecisionForm = () => factories['io.flow.internal.v0.models.restriction_product_decision_form']();
|
|
@@ -32737,11 +33114,13 @@ export const makeRestrictionRuleEffect = () => factories['io.flow.internal.v0.mo
|
|
|
32737
33114
|
export const makeRestrictionRuleEffectDeleted = () => factories['io.flow.internal.v0.models.restriction_rule_effect_deleted']();
|
|
32738
33115
|
export const makeRestrictionRuleEffectForm = () => factories['io.flow.internal.v0.models.restriction_rule_effect_form']();
|
|
32739
33116
|
export const makeRestrictionRuleEffectUpserted = () => factories['io.flow.internal.v0.models.restriction_rule_effect_upserted']();
|
|
33117
|
+
export const makeRestrictionRuleExceptionAction = () => factories['io.flow.internal.v0.enums.restriction_rule_exception_action']();
|
|
32740
33118
|
export const makeRestrictionRuleForm = () => factories['io.flow.internal.v0.models.restriction_rule_form']();
|
|
32741
33119
|
export const makeRestrictionRuleMetadata = () => factories['io.flow.internal.v0.models.restriction_rule_metadata']();
|
|
32742
33120
|
export const makeRestrictionRuleOverride = () => factories['io.flow.internal.v0.models.restriction_rule_override']();
|
|
32743
33121
|
export const makeRestrictionRuleSummary = () => factories['io.flow.internal.v0.models.restriction_rule_summary']();
|
|
32744
33122
|
export const makeRestrictionRuleUpserted = () => factories['io.flow.internal.v0.models.restriction_rule_upserted']();
|
|
33123
|
+
export const makeRestrictionStateReviewStatus = () => factories['io.flow.internal.v0.enums.restriction_state_review_status']();
|
|
32745
33124
|
export const makeRestrictionStatus = () => factories['io.flow.internal.v0.enums.restriction_status']();
|
|
32746
33125
|
export const makeRestrictionStatusMetadata = () => factories['io.flow.internal.v0.models.restriction_status_metadata']();
|
|
32747
33126
|
export const makeRestrictionsDailyops = () => factories['io.flow.internal.v0.models.restrictions_dailyops']();
|
|
@@ -32795,8 +33174,10 @@ export const makeSessionRollout = () => factories['io.flow.internal.v0.models.se
|
|
|
32795
33174
|
export const makeSessionRolloutForm = () => factories['io.flow.internal.v0.models.session_rollout_form']();
|
|
32796
33175
|
export const makeSetupBlockPutForm = () => factories['io.flow.internal.v0.models.setup_block_put_form']();
|
|
32797
33176
|
export const makeSfExpress = () => factories['io.flow.internal.v0.models.sf_express']();
|
|
33177
|
+
export const makeShipmentCostSummary = () => factories['io.flow.internal.v0.models.shipment_cost_summary']();
|
|
32798
33178
|
export const makeShippingLane = () => factories['io.flow.internal.v0.models.shipping_lane']();
|
|
32799
33179
|
export const makeShippingMethodReference = () => factories['io.flow.internal.v0.models.shipping_method_reference']();
|
|
33180
|
+
export const makeShippingPricing = () => factories['io.flow.internal.v0.models.shipping_pricing']();
|
|
32800
33181
|
export const makeShop = () => factories['io.flow.internal.v0.models.shop']();
|
|
32801
33182
|
export const makeShopForm = () => factories['io.flow.internal.v0.models.shop_form']();
|
|
32802
33183
|
export const makeShopVersion = () => factories['io.flow.internal.v0.models.shop_version']();
|
|
@@ -32894,6 +33275,9 @@ export const makeShopifyOrderFulfillmentsSnapshotUpserted = () => factories['io.
|
|
|
32894
33275
|
export const makeShopifyOrderInventoryCheck = () => factories['io.flow.internal.v0.models.shopify_order_inventory_check']();
|
|
32895
33276
|
export const makeShopifyOrderLineAttribute = () => factories['io.flow.internal.v0.models.shopify_order_line_attribute']();
|
|
32896
33277
|
export const makeShopifyOrderLineContent = () => factories['io.flow.internal.v0.models.shopify_order_line_content']();
|
|
33278
|
+
export const makeShopifyOrderRiskAssessment = () => factories['io.flow.internal.v0.models.shopify_order_risk_assessment']();
|
|
33279
|
+
export const makeShopifyOrderRiskAssessmentDeleted = () => factories['io.flow.internal.v0.models.shopify_order_risk_assessment_deleted']();
|
|
33280
|
+
export const makeShopifyOrderRiskAssessmentUpserted = () => factories['io.flow.internal.v0.models.shopify_order_risk_assessment_upserted']();
|
|
32897
33281
|
export const makeShopifyOrganizationSettings = () => factories['io.flow.internal.v0.models.shopify_organization_settings']();
|
|
32898
33282
|
export const makeShopifyOrganizationSettingsForm = () => factories['io.flow.internal.v0.models.shopify_organization_settings_form']();
|
|
32899
33283
|
export const makeShopifyPartnerWebhook = () => factories['io.flow.internal.v0.models.shopify_partner_webhook']();
|
|
@@ -32973,9 +33357,6 @@ export const makeSpotRateMetadataIdentity = () => factories['io.flow.internal.v0
|
|
|
32973
33357
|
export const makeSpotRateMetadataRate = () => factories['io.flow.internal.v0.models.spot_rate_metadata_rate']();
|
|
32974
33358
|
export const makeSpotRateUpserted = () => factories['io.flow.internal.v0.models.spot_rate_upserted']();
|
|
32975
33359
|
export const makeSpotRateVersion = () => factories['io.flow.internal.v0.models.spot_rate_version']();
|
|
32976
|
-
export const makeSppTrackerUpdateRequest = () => factories['io.flow.internal.v0.models.spp_tracker_update_request']();
|
|
32977
|
-
export const makeSppTrackerUpdateRequestDeleted = () => factories['io.flow.internal.v0.models.spp_tracker_update_request_deleted']();
|
|
32978
|
-
export const makeSppTrackerUpdateRequestUpserted = () => factories['io.flow.internal.v0.models.spp_tracker_update_request_upserted']();
|
|
32979
33360
|
export const makeStandaloneAttachment = () => factories['io.flow.internal.v0.models.standalone_attachment']();
|
|
32980
33361
|
export const makeStandaloneAttachmentDeleted = () => factories['io.flow.internal.v0.models.standalone_attachment_deleted']();
|
|
32981
33362
|
export const makeStandaloneAttachmentUpserted = () => factories['io.flow.internal.v0.models.standalone_attachment_upserted']();
|
|
@@ -33001,7 +33382,9 @@ export const makeStripeCaptureDeleted = () => factories['io.flow.internal.v0.mod
|
|
|
33001
33382
|
export const makeStripeCaptureUpserted = () => factories['io.flow.internal.v0.models.stripe_capture_upserted']();
|
|
33002
33383
|
export const makeStripeConnectReportRecord = () => factories['io.flow.internal.v0.models.stripe_connect_report_record']();
|
|
33003
33384
|
export const makeStripeConnectReportRecordDeleted = () => factories['io.flow.internal.v0.models.stripe_connect_report_record_deleted']();
|
|
33385
|
+
export const makeStripeConnectReportRecordMetadata = () => factories['io.flow.internal.v0.unions.stripe_connect_report_record_metadata']();
|
|
33004
33386
|
export const makeStripeConnectReportRecordPaymentMetadata = () => factories['io.flow.internal.v0.models.stripe_connect_report_record_payment_metadata']();
|
|
33387
|
+
export const makeStripeConnectReportRecordTransferMetadata = () => factories['io.flow.internal.v0.models.stripe_connect_report_record_transfer_metadata']();
|
|
33005
33388
|
export const makeStripeConnectReportRecordUpserted = () => factories['io.flow.internal.v0.models.stripe_connect_report_record_upserted']();
|
|
33006
33389
|
export const makeStripeDisputeDeleted = () => factories['io.flow.internal.v0.models.stripe_dispute_deleted']();
|
|
33007
33390
|
export const makeStripeDisputeUpserted = () => factories['io.flow.internal.v0.models.stripe_dispute_upserted']();
|
|
@@ -33149,6 +33532,8 @@ export const makeUserStatusRule = () => factories['io.flow.internal.v0.models.us
|
|
|
33149
33532
|
export const makeUserStatusRuleForm = () => factories['io.flow.internal.v0.models.user_status_rule_form']();
|
|
33150
33533
|
export const makeUserUpsertedV2 = () => factories['io.flow.internal.v0.models.user_upserted_v2']();
|
|
33151
33534
|
export const makeV1Checkout = () => factories['io.flow.internal.v0.models.v1_checkout']();
|
|
33535
|
+
export const makeValidatedAddress = () => factories['io.flow.internal.v0.models.validated_address']();
|
|
33536
|
+
export const makeValidatedShippingData = () => factories['io.flow.internal.v0.models.validated_shipping_data']();
|
|
33152
33537
|
export const makeValidationCharacterLength = () => factories['io.flow.internal.v0.models.validation_character_length']();
|
|
33153
33538
|
export const makeValidationRule = () => factories['io.flow.internal.v0.unions.validation_rule']();
|
|
33154
33539
|
export const makeViesResult = () => factories['io.flow.internal.v0.models.vies_result']();
|