@flowio/api-internal-factories 0.0.127 → 0.0.129
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 +300 -58
- package/dist/esm/api-internal.js +251 -21
- package/dist/types/api-internal.d.ts +15 -3
- package/package.json +2 -2
- package/src/api-internal.ts +284 -24
package/src/api-internal.ts
CHANGED
|
@@ -757,6 +757,7 @@ const factories = {
|
|
|
757
757
|
'rate_lock',
|
|
758
758
|
'transfer',
|
|
759
759
|
'negative_balance_guarantee',
|
|
760
|
+
'sp',
|
|
760
761
|
]),
|
|
761
762
|
|
|
762
763
|
'io.flow.billing.v0.enums.payout_attachment_type': (): io.flow.billing.v0.enums.PayoutAttachmentType => faker.helpers.arrayElement(['transactions']),
|
|
@@ -776,13 +777,16 @@ const factories = {
|
|
|
776
777
|
'io.flow.billing.v0.enums.statement_attachment_type': (): io.flow.billing.v0.enums.StatementAttachmentType => faker.helpers.arrayElement(['csv']),
|
|
777
778
|
|
|
778
779
|
'io.flow.billing.v0.enums.tax_duty_transaction_reason_code': (): io.flow.billing.v0.enums.TaxDutyTransactionReasonCode => faker.helpers.arrayElement([
|
|
780
|
+
'post_capture',
|
|
781
|
+
'post_fulfilment',
|
|
782
|
+
'manual_payment_or_gift_card',
|
|
779
783
|
'order_edit',
|
|
780
|
-
'order_acceptance',
|
|
781
784
|
'mixed_fulfilment_non_lvg',
|
|
782
785
|
'lvg_refund',
|
|
783
786
|
'order_cancellation_above_de_min',
|
|
784
787
|
'wyol_shipment_above_de_min',
|
|
785
788
|
'full_refund_without_shipment',
|
|
789
|
+
'unfulfilled_order_above_de_min',
|
|
786
790
|
]),
|
|
787
791
|
|
|
788
792
|
'io.flow.billing.v0.enums.transaction_source': (): io.flow.billing.v0.enums.TransactionSource => faker.helpers.arrayElement([
|
|
@@ -2071,6 +2075,7 @@ const factories = {
|
|
|
2071
2075
|
]),
|
|
2072
2076
|
|
|
2073
2077
|
'io.flow.channel.internal.v0.enums.channel_order_acceptance_status': (): io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceStatus => faker.helpers.arrayElement(['accepted', 'rejected', 'review', 'edit_review', 'edit_accepted']),
|
|
2078
|
+
'io.flow.channel.internal.v0.enums.order_payment_source_type': (): io.flow.channel.internal.v0.enums.OrderPaymentSourceType => faker.helpers.arrayElement(['globale', 'third_party']),
|
|
2074
2079
|
|
|
2075
2080
|
'io.flow.channel.internal.v0.models.channel_currency_form': (): io.flow.channel.internal.v0.models.ChannelCurrencyForm => ({
|
|
2076
2081
|
currency: factories.string(),
|
|
@@ -2119,7 +2124,7 @@ const factories = {
|
|
|
2119
2124
|
order_created_at: factories.date_time_iso_8601(),
|
|
2120
2125
|
order_updated_at: factories.date_time_iso_8601(),
|
|
2121
2126
|
order_edit_summary: factories['io.flow.channel.internal.v0.models.order_edit_summary'](),
|
|
2122
|
-
payment_source: factories['io.flow.
|
|
2127
|
+
payment_source: factories['io.flow.channel.internal.v0.enums.order_payment_source_type'](),
|
|
2123
2128
|
}),
|
|
2124
2129
|
|
|
2125
2130
|
'io.flow.channel.internal.v0.models.channel_order_acceptance_details': (): io.flow.channel.internal.v0.models.ChannelOrderAcceptanceDetails => ({
|
|
@@ -2153,6 +2158,47 @@ const factories = {
|
|
|
2153
2158
|
edited_at: factories.date_time_iso_8601(),
|
|
2154
2159
|
}),
|
|
2155
2160
|
|
|
2161
|
+
'io.flow.channel.shopify.internal.v0.enums.catalog_publication_owner': (): io.flow.channel.shopify.internal.v0.enums.CatalogPublicationOwner => faker.helpers.arrayElement(['shopify', 'globale']),
|
|
2162
|
+
'io.flow.channel.shopify.internal.v0.enums.shopify_service': (): io.flow.channel.shopify.internal.v0.enums.ShopifyService => faker.helpers.arrayElement(['payment', 'duty_tax_calculator', 'sellability']),
|
|
2163
|
+
|
|
2164
|
+
'io.flow.channel.shopify.internal.v0.models.channel_organization_shopify': (): io.flow.channel.shopify.internal.v0.models.ChannelOrganizationShopify => ({
|
|
2165
|
+
organization: factories['io.flow.channel.v0.models.channel_organization'](),
|
|
2166
|
+
|
|
2167
|
+
tokens: arrayOf(
|
|
2168
|
+
() => factories['io.flow.channel.shopify.internal.v0.models.shopify_channel_organization_tokens'](),
|
|
2169
|
+
),
|
|
2170
|
+
}),
|
|
2171
|
+
|
|
2172
|
+
'io.flow.channel.shopify.internal.v0.models.channel_organization_shopify_form': (): io.flow.channel.shopify.internal.v0.models.ChannelOrganizationShopifyForm => ({
|
|
2173
|
+
form: factories['io.flow.channel.v0.models.channel_organization_put_form'](),
|
|
2174
|
+
metadata: factories['io.flow.channel.shopify.internal.v0.models.shopify_metadata'](),
|
|
2175
|
+
}),
|
|
2176
|
+
|
|
2177
|
+
'io.flow.channel.shopify.internal.v0.models.channel_organization_shopify_post_form': (): io.flow.channel.shopify.internal.v0.models.ChannelOrganizationShopifyPostForm => ({
|
|
2178
|
+
form: factories['io.flow.channel.v0.models.channel_organization_form'](),
|
|
2179
|
+
metadata: factories['io.flow.channel.shopify.internal.v0.models.shopify_metadata'](),
|
|
2180
|
+
}),
|
|
2181
|
+
|
|
2182
|
+
'io.flow.channel.shopify.internal.v0.models.shopify_catalog_publication': (): io.flow.channel.shopify.internal.v0.models.ShopifyCatalogPublication => ({
|
|
2183
|
+
owner: factories['io.flow.channel.shopify.internal.v0.enums.catalog_publication_owner'](),
|
|
2184
|
+
}),
|
|
2185
|
+
|
|
2186
|
+
'io.flow.channel.shopify.internal.v0.models.shopify_channel_organization_token': (): io.flow.channel.shopify.internal.v0.models.ShopifyChannelOrganizationToken => ({
|
|
2187
|
+
cleartext: factories.string(),
|
|
2188
|
+
}),
|
|
2189
|
+
|
|
2190
|
+
'io.flow.channel.shopify.internal.v0.models.shopify_channel_organization_tokens': (): io.flow.channel.shopify.internal.v0.models.ShopifyChannelOrganizationTokens => ({
|
|
2191
|
+
token: factories['io.flow.channel.shopify.internal.v0.models.shopify_channel_organization_token'](),
|
|
2192
|
+
service: factories['io.flow.channel.shopify.internal.v0.enums.shopify_service'](),
|
|
2193
|
+
}),
|
|
2194
|
+
|
|
2195
|
+
'io.flow.channel.shopify.internal.v0.models.shopify_metadata': (): io.flow.channel.shopify.internal.v0.models.ShopifyMetadata => ({
|
|
2196
|
+
domain: factories.string(),
|
|
2197
|
+
myshopify_domain: factories.string(),
|
|
2198
|
+
catalog_publication: factories['io.flow.channel.shopify.internal.v0.models.shopify_catalog_publication'](),
|
|
2199
|
+
token: factories.string(),
|
|
2200
|
+
}),
|
|
2201
|
+
|
|
2156
2202
|
'io.flow.channel.v0.enums.channel_currency_capability': (): io.flow.channel.v0.enums.ChannelCurrencyCapability => faker.helpers.arrayElement(['payment_authorizations', 'settlement_currency']),
|
|
2157
2203
|
|
|
2158
2204
|
'io.flow.channel.v0.models.channel': (): io.flow.channel.v0.models.Channel => ({
|
|
@@ -6631,6 +6677,15 @@ const factories = {
|
|
|
6631
6677
|
'prr-79e41878ea564f9c81cc432a0e84703f',
|
|
6632
6678
|
'prr-f29c26dc09e04536bc77f9c32786ed70',
|
|
6633
6679
|
'prr-b186129720f0446eb452a68518437c95',
|
|
6680
|
+
'prr-36e1603f56e54eb889792637c29eed40',
|
|
6681
|
+
'prr-7ead2cc4bf2840a3a9b50d222eb0ed7e',
|
|
6682
|
+
'prr-ec2f3d608b7e43a49de88ac40e6b50a8',
|
|
6683
|
+
'prr-04ed078c39ca4447b171f767d71a481d',
|
|
6684
|
+
'prr-bb664a76d6d64a17843e720e6ccd401a',
|
|
6685
|
+
'prr-8ce63afcd48641eb9d44e04117348a96',
|
|
6686
|
+
'prr-76544617791b4ce8af96b3a7879474c6',
|
|
6687
|
+
'prr-566cc67167944bc4bd08167aa9c0beba',
|
|
6688
|
+
'prr-74e1320efb7741cf9ace400b69800f9b',
|
|
6634
6689
|
]),
|
|
6635
6690
|
|
|
6636
6691
|
'io.flow.internal.v0.enums.bank_account_status': (): io.flow.internal.v0.enums.BankAccountStatus => faker.helpers.arrayElement(['on_hold', 'not_on_hold']),
|
|
@@ -6817,6 +6872,40 @@ const factories = {
|
|
|
6817
6872
|
'fourth_plus_attempt_failed_merchant_count',
|
|
6818
6873
|
'fourth_plus_attempt_failed_amount_total',
|
|
6819
6874
|
'fourth_plus_attempt_success_ratio',
|
|
6875
|
+
'ge_revenue_share_standard_transactions_count',
|
|
6876
|
+
'ge_revenue_share_standard_transactions_total',
|
|
6877
|
+
'ge_revenue_share_shopify_plus_transactions_count',
|
|
6878
|
+
'ge_revenue_share_shopify_plus_transactions_total',
|
|
6879
|
+
'non_l4l_tax_duty_fx_transactions_count',
|
|
6880
|
+
'non_l4l_tax_duty_fx_transactions_total',
|
|
6881
|
+
'sp_adjustment_transactions_count',
|
|
6882
|
+
'sp_adjustment_transactions_total',
|
|
6883
|
+
'sp_billable_label_transactions_count',
|
|
6884
|
+
'sp_billable_label_transactions_count_for_unique_orders',
|
|
6885
|
+
'sp_billable_label_transactions_total',
|
|
6886
|
+
'sp_capture_transactions_count',
|
|
6887
|
+
'sp_capture_transactions_total',
|
|
6888
|
+
'sp_carrier_charge_transactions_count',
|
|
6889
|
+
'sp_carrier_charge_transactions_total',
|
|
6890
|
+
'sp_channel_transactions_count',
|
|
6891
|
+
'sp_channel_transactions_total',
|
|
6892
|
+
'sp_duty_transactions_count',
|
|
6893
|
+
'sp_duty_transactions_total',
|
|
6894
|
+
'sp_manual_transactions_count',
|
|
6895
|
+
'sp_manual_transactions_total',
|
|
6896
|
+
'sp_refund_transactions_count',
|
|
6897
|
+
'sp_refund_transactions_total',
|
|
6898
|
+
'sp_reversal_transactions_count',
|
|
6899
|
+
'sp_reversal_transactions_total',
|
|
6900
|
+
'sp_revenue_share_label_transactions_count',
|
|
6901
|
+
'sp_revenue_share_label_transactions_count_for_unique_orders',
|
|
6902
|
+
'sp_revenue_share_label_transactions_total',
|
|
6903
|
+
'sp_tax_transactions_count',
|
|
6904
|
+
'sp_tax_transactions_total',
|
|
6905
|
+
'sp_transfer_transactions_count',
|
|
6906
|
+
'sp_transfer_transactions_total',
|
|
6907
|
+
'sp_trueup_transactions_count',
|
|
6908
|
+
'sp_trueup_transactions_total',
|
|
6820
6909
|
]),
|
|
6821
6910
|
|
|
6822
6911
|
'io.flow.internal.v0.enums.billing_statement_attachment_key': (): io.flow.internal.v0.enums.BillingStatementAttachmentKey => faker.helpers.arrayElement([
|
|
@@ -6885,6 +6974,7 @@ const factories = {
|
|
|
6885
6974
|
'price_book_items_query_import',
|
|
6886
6975
|
]),
|
|
6887
6976
|
|
|
6977
|
+
'io.flow.internal.v0.enums.catalog_publication_owner': (): io.flow.internal.v0.enums.CatalogPublicationOwner => faker.helpers.arrayElement(['shopify', 'globale']),
|
|
6888
6978
|
'io.flow.internal.v0.enums.channel_billed_transaction_type': (): io.flow.internal.v0.enums.ChannelBilledTransactionType => faker.helpers.arrayElement(['adjustment', 'reversal', 'channel_initiated']),
|
|
6889
6979
|
'io.flow.internal.v0.enums.channel_order_acceptance_error_action': (): io.flow.internal.v0.enums.ChannelOrderAcceptanceErrorAction => faker.helpers.arrayElement(['auto_reject', 'auto_accept']),
|
|
6890
6980
|
'io.flow.internal.v0.enums.channel_order_acceptance_failure_reason_code': (): io.flow.internal.v0.enums.ChannelOrderAcceptanceFailureReasonCode => faker.helpers.arrayElement(['channel_order_mor_invalid', 'channel_order_does_not_exist']),
|
|
@@ -6971,6 +7061,7 @@ const factories = {
|
|
|
6971
7061
|
'io.flow.internal.v0.enums.classification_decision': (): io.flow.internal.v0.enums.ClassificationDecision => faker.helpers.arrayElement(['Accept', 'Reject']),
|
|
6972
7062
|
'io.flow.internal.v0.enums.classification_error_code': (): io.flow.internal.v0.enums.ClassificationErrorCode => faker.helpers.arrayElement(['generic_error']),
|
|
6973
7063
|
'io.flow.internal.v0.enums.classification_platform': (): io.flow.internal.v0.enums.ClassificationPlatform => faker.helpers.arrayElement(['GlobalE', 'Flow', 'Borderfree']),
|
|
7064
|
+
'io.flow.internal.v0.enums.classification_scope': (): io.flow.internal.v0.enums.ClassificationScope => faker.helpers.arrayElement(['Item', 'Product']),
|
|
6974
7065
|
'io.flow.internal.v0.enums.classification_type': (): io.flow.internal.v0.enums.ClassificationType => faker.helpers.arrayElement(['None', 'Manual', 'ML', 'System']),
|
|
6975
7066
|
'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']),
|
|
6976
7067
|
'io.flow.internal.v0.enums.commercial_invoice_version': (): io.flow.internal.v0.enums.CommercialInvoiceVersion => faker.helpers.arrayElement(['v2_2_1']),
|
|
@@ -7321,6 +7412,8 @@ const factories = {
|
|
|
7321
7412
|
'restriction_rule_deleted',
|
|
7322
7413
|
'restriction_rule_effect_upserted',
|
|
7323
7414
|
'restriction_rule_effect_deleted',
|
|
7415
|
+
'taxonomy_category_hs6_ref_upserted',
|
|
7416
|
+
'taxonomy_category_hs6_ref_deleted',
|
|
7324
7417
|
'shopify_shop_upserted',
|
|
7325
7418
|
'shopify_shop_deleted',
|
|
7326
7419
|
'shopify_experience_short_id_upserted',
|
|
@@ -7348,6 +7441,8 @@ const factories = {
|
|
|
7348
7441
|
'shopify_markets_best_selling_product_deleted',
|
|
7349
7442
|
'shopify_order_risk_assessment_upserted',
|
|
7350
7443
|
'shopify_order_risk_assessment_deleted',
|
|
7444
|
+
'shopify_order_transaction_upserted',
|
|
7445
|
+
'shopify_order_transaction_deleted',
|
|
7351
7446
|
'shopify_product_create_upserted',
|
|
7352
7447
|
'shopify_product_create_deleted',
|
|
7353
7448
|
'shopify_product_update_upserted',
|
|
@@ -7444,7 +7539,7 @@ const factories = {
|
|
|
7444
7539
|
'shopify_webhook',
|
|
7445
7540
|
]),
|
|
7446
7541
|
|
|
7447
|
-
'io.flow.internal.v0.enums.harmonization_decision_source': (): io.flow.internal.v0.enums.HarmonizationDecisionSource => faker.helpers.arrayElement(['human', 'legacy_model', 'enterprise_model', 'merchant']),
|
|
7542
|
+
'io.flow.internal.v0.enums.harmonization_decision_source': (): io.flow.internal.v0.enums.HarmonizationDecisionSource => faker.helpers.arrayElement(['human', 'system', 'legacy_model', 'enterprise_model', 'merchant']),
|
|
7448
7543
|
'io.flow.internal.v0.enums.http_method': (): io.flow.internal.v0.enums.HttpMethod => faker.helpers.arrayElement(['get', 'post']),
|
|
7449
7544
|
'io.flow.internal.v0.enums.internal_payment_entity_type': (): io.flow.internal.v0.enums.InternalPaymentEntityType => faker.helpers.arrayElement(['authorization', 'capture', 'refund', 'dispute']),
|
|
7450
7545
|
'io.flow.internal.v0.enums.item_classification_action': (): io.flow.internal.v0.enums.ItemClassificationAction => faker.helpers.arrayElement(['ACCEPT', 'MANUAL', 'REJECT']),
|
|
@@ -7523,7 +7618,7 @@ const factories = {
|
|
|
7523
7618
|
'global_e_netherlands',
|
|
7524
7619
|
]),
|
|
7525
7620
|
|
|
7526
|
-
'io.flow.internal.v0.enums.merchant_override_status': (): io.flow.internal.v0.enums.MerchantOverrideStatus => faker.helpers.arrayElement(['in_review', 'accepted', 'rejected']),
|
|
7621
|
+
'io.flow.internal.v0.enums.merchant_override_status': (): io.flow.internal.v0.enums.MerchantOverrideStatus => faker.helpers.arrayElement(['pending', 'in_review', 'accepted', 'rejected']),
|
|
7527
7622
|
'io.flow.internal.v0.enums.mixed_bag_weight': (): io.flow.internal.v0.enums.MixedBagWeight => faker.helpers.arrayElement(['0', '1', '2']),
|
|
7528
7623
|
|
|
7529
7624
|
'io.flow.internal.v0.enums.nature_of_sale': (): io.flow.internal.v0.enums.NatureOfSale => faker.helpers.arrayElement([
|
|
@@ -7604,6 +7699,7 @@ const factories = {
|
|
|
7604
7699
|
'io.flow.internal.v0.enums.order_cancellation_initiated_by': (): io.flow.internal.v0.enums.OrderCancellationInitiatedBy => faker.helpers.arrayElement(['flow', 'organization']),
|
|
7605
7700
|
'io.flow.internal.v0.enums.order_charge_trigger': (): io.flow.internal.v0.enums.OrderChargeTrigger => faker.helpers.arrayElement(['first_shipment', 'last_shipment', 'shipment_exhausted']),
|
|
7606
7701
|
'io.flow.internal.v0.enums.order_lifecycle_event': (): io.flow.internal.v0.enums.OrderLifecycleEvent => faker.helpers.arrayElement(['order_placed', 'ready_to_fulfill']),
|
|
7702
|
+
'io.flow.internal.v0.enums.order_payment_source_type': (): io.flow.internal.v0.enums.OrderPaymentSourceType => faker.helpers.arrayElement(['globale', 'third_party']),
|
|
7607
7703
|
'io.flow.internal.v0.enums.order_transaction_type': (): io.flow.internal.v0.enums.OrderTransactionType => faker.helpers.arrayElement(['adjustment', 'reversal', 'order_service']),
|
|
7608
7704
|
|
|
7609
7705
|
'io.flow.internal.v0.enums.order_validation_status': (): io.flow.internal.v0.enums.OrderValidationStatus => faker.helpers.arrayElement([
|
|
@@ -9778,7 +9874,7 @@ const factories = {
|
|
|
9778
9874
|
order_created_at: factories.date_time_iso_8601(),
|
|
9779
9875
|
order_updated_at: factories.date_time_iso_8601(),
|
|
9780
9876
|
order_edit_summary: factories['io.flow.internal.v0.models.order_edit_summary'](),
|
|
9781
|
-
payment_source: factories['io.flow.
|
|
9877
|
+
payment_source: factories['io.flow.internal.v0.enums.order_payment_source_type'](),
|
|
9782
9878
|
}),
|
|
9783
9879
|
|
|
9784
9880
|
'io.flow.internal.v0.models.channel_order_acceptance_deleted': (): io.flow.internal.v0.models.ChannelOrderAcceptanceDeleted => ({
|
|
@@ -10807,6 +10903,7 @@ const factories = {
|
|
|
10807
10903
|
total: factories['io.flow.common.v0.models.money_with_base'](),
|
|
10808
10904
|
identifiers: objectOf(() => factories.string()),
|
|
10809
10905
|
submitted_at: factories.date_time_iso_8601(),
|
|
10906
|
+
payment_source: factories['io.flow.experience.v0.enums.order_payment_source_type'](),
|
|
10810
10907
|
}),
|
|
10811
10908
|
|
|
10812
10909
|
'io.flow.internal.v0.models.debug_order_transaction': (): io.flow.internal.v0.models.DebugOrderTransaction => ({
|
|
@@ -11547,6 +11644,12 @@ const factories = {
|
|
|
11547
11644
|
processed_at: factories.date_time_iso_8601(),
|
|
11548
11645
|
}),
|
|
11549
11646
|
|
|
11647
|
+
'io.flow.internal.v0.models.evaluation_results': (): io.flow.internal.v0.models.EvaluationResults => ({
|
|
11648
|
+
chapter_result: factories.object(),
|
|
11649
|
+
sellability_result: factories.object(),
|
|
11650
|
+
duty_variance_result: factories.object(),
|
|
11651
|
+
}),
|
|
11652
|
+
|
|
11550
11653
|
'io.flow.internal.v0.models.exclusion_rule_deleted': (): io.flow.internal.v0.models.ExclusionRuleDeleted => ({
|
|
11551
11654
|
discriminator: 'exclusion_rule_deleted',
|
|
11552
11655
|
event_id: factories.string(),
|
|
@@ -11822,6 +11925,13 @@ const factories = {
|
|
|
11822
11925
|
meter_number: factories.string(),
|
|
11823
11926
|
}),
|
|
11824
11927
|
|
|
11928
|
+
'io.flow.internal.v0.models.fedex_api': (): io.flow.internal.v0.models.FedexApi => ({
|
|
11929
|
+
discriminator: 'fedex_api',
|
|
11930
|
+
client_id: factories.string(),
|
|
11931
|
+
client_secret: factories.string(),
|
|
11932
|
+
account_number: factories.string(),
|
|
11933
|
+
}),
|
|
11934
|
+
|
|
11825
11935
|
'io.flow.internal.v0.models.fedex_crossborder': (): io.flow.internal.v0.models.FedexCrossborder => ({
|
|
11826
11936
|
discriminator: 'fedex_crossborder',
|
|
11827
11937
|
api_key: factories.string(),
|
|
@@ -11841,6 +11951,7 @@ const factories = {
|
|
|
11841
11951
|
duty_guarantee: factories['io.flow.internal.v0.models.fee'](),
|
|
11842
11952
|
transfer: factories['io.flow.internal.v0.models.fee'](),
|
|
11843
11953
|
negative_balance: factories['io.flow.internal.v0.models.fee'](),
|
|
11954
|
+
sp: factories['io.flow.internal.v0.models.fee'](),
|
|
11844
11955
|
}),
|
|
11845
11956
|
|
|
11846
11957
|
'io.flow.internal.v0.models.finance_bank_account': (): io.flow.internal.v0.models.FinanceBankAccount => ({
|
|
@@ -13200,6 +13311,7 @@ const factories = {
|
|
|
13200
13311
|
status: factories['io.flow.internal.v0.enums.item_harmonization_status'](),
|
|
13201
13312
|
tariffs: objectOf(() => factories['io.flow.internal.v0.models.tariff_code_duty']()),
|
|
13202
13313
|
decision_source: factories['io.flow.internal.v0.enums.harmonization_decision_source'](),
|
|
13314
|
+
classification_scope: factories['io.flow.internal.v0.enums.classification_scope'](),
|
|
13203
13315
|
created_at: factories.date_time_iso_8601(),
|
|
13204
13316
|
updated_at: factories.date_time_iso_8601(),
|
|
13205
13317
|
updated_by_user_id: factories.string(),
|
|
@@ -14177,6 +14289,7 @@ const factories = {
|
|
|
14177
14289
|
status: factories['io.flow.internal.v0.enums.merchant_override_status'](),
|
|
14178
14290
|
hs6_code: factories.string(),
|
|
14179
14291
|
merchant_hs6_code: factories.string(),
|
|
14292
|
+
evaluation_results: factories['io.flow.internal.v0.models.evaluation_results'](),
|
|
14180
14293
|
created_at: factories.date_time_iso_8601(),
|
|
14181
14294
|
updated_at: factories.date_time_iso_8601(),
|
|
14182
14295
|
updated_by_user_id: factories.string(),
|
|
@@ -14993,6 +15106,7 @@ const factories = {
|
|
|
14993
15106
|
organization_id: factories.string(),
|
|
14994
15107
|
pending_restriction_count: factories.long(),
|
|
14995
15108
|
pending_verification_count: factories.long(),
|
|
15109
|
+
pending_classification_count: factories.long(),
|
|
14996
15110
|
oldest_pending_restriction_date: factories.date_time_iso_8601(),
|
|
14997
15111
|
oldest_pending_verification_date: factories.date_time_iso_8601(),
|
|
14998
15112
|
product_count: factories.long(),
|
|
@@ -16151,6 +16265,7 @@ const factories = {
|
|
|
16151
16265
|
review_status: factories['io.flow.internal.v0.enums.restriction_state_review_status'](),
|
|
16152
16266
|
pending_restriction_count: factories.long(),
|
|
16153
16267
|
pending_verification_count: factories.long(),
|
|
16268
|
+
pending_classification_count: factories.long(),
|
|
16154
16269
|
oldest_pending_restriction_date: factories.date_time_iso_8601(),
|
|
16155
16270
|
oldest_pending_verification_date: factories.date_time_iso_8601(),
|
|
16156
16271
|
}),
|
|
@@ -16188,12 +16303,26 @@ const factories = {
|
|
|
16188
16303
|
),
|
|
16189
16304
|
}),
|
|
16190
16305
|
|
|
16306
|
+
'io.flow.internal.v0.models.product_sellability_internal': (): io.flow.internal.v0.models.ProductSellabilityInternal => ({
|
|
16307
|
+
shop_id: factories.string(),
|
|
16308
|
+
product_id: factories.string(),
|
|
16309
|
+
request_id: factories.string(),
|
|
16310
|
+
hs6_code: factories.string(),
|
|
16311
|
+
|
|
16312
|
+
restricted_regions: arrayOf(
|
|
16313
|
+
() => factories['io.flow.sellability.v0.models.sellablility_region_result'](),
|
|
16314
|
+
),
|
|
16315
|
+
|
|
16316
|
+
rule_ids: arrayOf(() => factories.string()),
|
|
16317
|
+
}),
|
|
16318
|
+
|
|
16191
16319
|
'io.flow.internal.v0.models.product_sellability_result': (): io.flow.internal.v0.models.ProductSellabilityResult => ({
|
|
16192
16320
|
shop_id: factories.string(),
|
|
16193
16321
|
product_number: factories.string(),
|
|
16194
16322
|
request_id: factories.string(),
|
|
16195
16323
|
hs6_code: factories.string(),
|
|
16196
16324
|
restricted_regions: arrayOf(() => factories.string()),
|
|
16325
|
+
rule_ids: arrayOf(() => factories.string()),
|
|
16197
16326
|
}),
|
|
16198
16327
|
|
|
16199
16328
|
'io.flow.internal.v0.models.product_transaction': (): io.flow.internal.v0.models.ProductTransaction => ({
|
|
@@ -16750,6 +16879,7 @@ const factories = {
|
|
|
16750
16879
|
|
|
16751
16880
|
'io.flow.internal.v0.models.report_filter': (): io.flow.internal.v0.models.ReportFilter => ({
|
|
16752
16881
|
source_type: factories['io.flow.internal.v0.enums.source_type_filter'](),
|
|
16882
|
+
order_payment_source: factories['io.flow.experience.v0.enums.order_payment_source_type'](),
|
|
16753
16883
|
}),
|
|
16754
16884
|
|
|
16755
16885
|
'io.flow.internal.v0.models.report_form': (): io.flow.internal.v0.models.ReportForm => ({
|
|
@@ -16971,7 +17101,7 @@ const factories = {
|
|
|
16971
17101
|
id: factories.string(),
|
|
16972
17102
|
number: factories.string(),
|
|
16973
17103
|
submitted_at: factories.date_time_iso_8601(),
|
|
16974
|
-
payment_source: factories.
|
|
17104
|
+
payment_source: factories['io.flow.experience.v0.enums.order_payment_source_type'](),
|
|
16975
17105
|
}),
|
|
16976
17106
|
|
|
16977
17107
|
'io.flow.internal.v0.models.reporting_organization_summary': (): io.flow.internal.v0.models.ReportingOrganizationSummary => ({
|
|
@@ -17082,7 +17212,9 @@ const factories = {
|
|
|
17082
17212
|
name: factories.string(),
|
|
17083
17213
|
price: factories['io.flow.common.v0.models.price'](),
|
|
17084
17214
|
hs_code: factories.string(),
|
|
17215
|
+
hs_code_source: factories['io.flow.internal.v0.enums.harmonization_decision_source'](),
|
|
17085
17216
|
description: factories.string(),
|
|
17217
|
+
category: factories.string(),
|
|
17086
17218
|
categories: arrayOf(() => factories.string()),
|
|
17087
17219
|
images: arrayOf(() => factories['io.flow.catalog.v0.models.image']()),
|
|
17088
17220
|
thumbnails: arrayOf(() => factories['io.flow.catalog.v0.models.image']()),
|
|
@@ -17098,6 +17230,7 @@ const factories = {
|
|
|
17098
17230
|
rule_ids: arrayOf(() => factories.string()),
|
|
17099
17231
|
user_ids: arrayOf(() => factories.string()),
|
|
17100
17232
|
categories: arrayOf(() => factories.string()),
|
|
17233
|
+
category: factories.string(),
|
|
17101
17234
|
product_name_query: factories.string(),
|
|
17102
17235
|
hs6: factories.string(),
|
|
17103
17236
|
positive_keywords: arrayOf(() => factories.string()),
|
|
@@ -17205,10 +17338,12 @@ const factories = {
|
|
|
17205
17338
|
item_numbers: arrayOf(() => factories.string()),
|
|
17206
17339
|
primary_item_number: factories.string(),
|
|
17207
17340
|
description: factories.string(),
|
|
17341
|
+
category: factories.string(),
|
|
17208
17342
|
categories: arrayOf(() => factories.string()),
|
|
17209
17343
|
images: arrayOf(() => factories['io.flow.catalog.v0.models.image']()),
|
|
17210
17344
|
thumbnails: arrayOf(() => factories['io.flow.catalog.v0.models.image']()),
|
|
17211
17345
|
hs_code: factories.string(),
|
|
17346
|
+
hs_code_source: factories['io.flow.internal.v0.enums.harmonization_decision_source'](),
|
|
17212
17347
|
url: factories.string(),
|
|
17213
17348
|
reviews: arrayOf(() => factories['io.flow.internal.v0.models.restriction_item_review']()),
|
|
17214
17349
|
created_at: factories.date_time_iso_8601(),
|
|
@@ -17228,6 +17363,7 @@ const factories = {
|
|
|
17228
17363
|
negative_keywords: arrayOf(() => factories.string()),
|
|
17229
17364
|
user_ids: arrayOf(() => factories.string()),
|
|
17230
17365
|
categories: arrayOf(() => factories.string()),
|
|
17366
|
+
category: factories.string(),
|
|
17231
17367
|
product_name_query: factories.string(),
|
|
17232
17368
|
hs6: factories.string(),
|
|
17233
17369
|
product_id: factories.string(),
|
|
@@ -17320,6 +17456,17 @@ const factories = {
|
|
|
17320
17456
|
destination_countries: arrayOf(() => factories.string()),
|
|
17321
17457
|
}),
|
|
17322
17458
|
|
|
17459
|
+
'io.flow.internal.v0.models.restriction_rule_organization_exemption': (): io.flow.internal.v0.models.RestrictionRuleOrganizationExemption => ({
|
|
17460
|
+
id: factories.string(),
|
|
17461
|
+
organization_id: factories.string(),
|
|
17462
|
+
rule_id: factories.string(),
|
|
17463
|
+
description: factories.string(),
|
|
17464
|
+
is_rule_exempt: factories.boolean(),
|
|
17465
|
+
exempt_countries: arrayOf(() => factories.string()),
|
|
17466
|
+
ignored_keywords: arrayOf(() => factories.string()),
|
|
17467
|
+
additional_keywords: arrayOf(() => factories.string()),
|
|
17468
|
+
}),
|
|
17469
|
+
|
|
17323
17470
|
'io.flow.internal.v0.models.restriction_rule_override': (): io.flow.internal.v0.models.RestrictionRuleOverride => ({
|
|
17324
17471
|
id: factories.string(),
|
|
17325
17472
|
organization_id: factories.string(),
|
|
@@ -17343,6 +17490,7 @@ const factories = {
|
|
|
17343
17490
|
'io.flow.internal.v0.models.restriction_summary_counts': (): io.flow.internal.v0.models.RestrictionSummaryCounts => ({
|
|
17344
17491
|
pending_restriction_count: factories.long(),
|
|
17345
17492
|
pending_verification_count: factories.long(),
|
|
17493
|
+
pending_classification_count: factories.long(),
|
|
17346
17494
|
}),
|
|
17347
17495
|
|
|
17348
17496
|
'io.flow.internal.v0.models.restrictions_dailyops': (): io.flow.internal.v0.models.RestrictionsDailyops => ({
|
|
@@ -17373,6 +17521,16 @@ const factories = {
|
|
|
17373
17521
|
oldest_insufficient_details_pv_onboarding: factories.date_iso_8601(),
|
|
17374
17522
|
oldest_insufficient_details_pv_active: factories.date_iso_8601(),
|
|
17375
17523
|
oldest_insufficient_details_pv_transacting: factories.date_iso_8601(),
|
|
17524
|
+
num_products_with_fs_result: factories.decimal(),
|
|
17525
|
+
num_products_sellable_somewhere_by_fs: factories.decimal(),
|
|
17526
|
+
num_products_restricted_somewhere_by_fs: factories.decimal(),
|
|
17527
|
+
num_products_with_false_allows_by_fs: factories.decimal(),
|
|
17528
|
+
num_products_with_false_restricts_by_fs: factories.decimal(),
|
|
17529
|
+
daily_num_products_with_fs_result: factories.decimal(),
|
|
17530
|
+
daily_num_products_sellable_somewhere_by_fs: factories.decimal(),
|
|
17531
|
+
daily_num_products_restricted_somewhere_by_fs: factories.decimal(),
|
|
17532
|
+
daily_num_products_with_false_allows_by_fs: factories.decimal(),
|
|
17533
|
+
daily_num_products_with_false_restricts_by_fs: factories.decimal(),
|
|
17376
17534
|
}),
|
|
17377
17535
|
|
|
17378
17536
|
'io.flow.internal.v0.models.restrictions_dailyops_deleted': (): io.flow.internal.v0.models.RestrictionsDailyopsDeleted => ({
|
|
@@ -17408,16 +17566,6 @@ const factories = {
|
|
|
17408
17566
|
destinations: arrayOf(() => factories['io.flow.reference.v0.models.country']()),
|
|
17409
17567
|
}),
|
|
17410
17568
|
|
|
17411
|
-
'io.flow.internal.v0.models.retracking': (): io.flow.internal.v0.models.Retracking => ({
|
|
17412
|
-
carrier: factories.string(),
|
|
17413
|
-
tracking_number: factories.string(),
|
|
17414
|
-
}),
|
|
17415
|
-
|
|
17416
|
-
'io.flow.internal.v0.models.retracking_form': (): io.flow.internal.v0.models.RetrackingForm => ({
|
|
17417
|
-
carrier: factories.string(),
|
|
17418
|
-
carrier_tracking_numbers: arrayOf(() => factories.string()),
|
|
17419
|
-
}),
|
|
17420
|
-
|
|
17421
17569
|
'io.flow.internal.v0.models.return': (): io.flow.internal.v0.models.Return => ({
|
|
17422
17570
|
id: factories.string(),
|
|
17423
17571
|
order: factories['io.flow.internal.v0.models.order_summary'](),
|
|
@@ -17715,6 +17863,10 @@ const factories = {
|
|
|
17715
17863
|
shop: factories['io.flow.internal.v0.models.shop'](),
|
|
17716
17864
|
}),
|
|
17717
17865
|
|
|
17866
|
+
'io.flow.internal.v0.models.shopify_catalog_publication': (): io.flow.internal.v0.models.ShopifyCatalogPublication => ({
|
|
17867
|
+
owner: factories['io.flow.internal.v0.enums.catalog_publication_owner'](),
|
|
17868
|
+
}),
|
|
17869
|
+
|
|
17718
17870
|
'io.flow.internal.v0.models.shopify_channel_organization_token': (): io.flow.internal.v0.models.ShopifyChannelOrganizationToken => ({
|
|
17719
17871
|
cleartext: factories.string(),
|
|
17720
17872
|
}),
|
|
@@ -18060,6 +18212,7 @@ const factories = {
|
|
|
18060
18212
|
api_password: factories.string(),
|
|
18061
18213
|
access_token: factories.string(),
|
|
18062
18214
|
shopify_plan_name: factories['io.flow.shopify.external.v0.enums.shopify_plan_name'](),
|
|
18215
|
+
catalog_publication_owner: factories['io.flow.internal.v0.enums.catalog_publication_owner'](),
|
|
18063
18216
|
}),
|
|
18064
18217
|
|
|
18065
18218
|
'io.flow.internal.v0.models.shopify_markets_shop_statistics_deleted': (): io.flow.internal.v0.models.ShopifyMarketsShopStatisticsDeleted => ({
|
|
@@ -18148,6 +18301,7 @@ const factories = {
|
|
|
18148
18301
|
'io.flow.internal.v0.models.shopify_metadata': (): io.flow.internal.v0.models.ShopifyMetadata => ({
|
|
18149
18302
|
domain: factories.string(),
|
|
18150
18303
|
myshopify_domain: factories.string(),
|
|
18304
|
+
catalog_publication: factories['io.flow.internal.v0.models.shopify_catalog_publication'](),
|
|
18151
18305
|
token: factories.string(),
|
|
18152
18306
|
}),
|
|
18153
18307
|
|
|
@@ -18333,6 +18487,27 @@ const factories = {
|
|
|
18333
18487
|
assessment: factories['io.flow.internal.v0.models.shopify_order_risk_assessment'](),
|
|
18334
18488
|
}),
|
|
18335
18489
|
|
|
18490
|
+
'io.flow.internal.v0.models.shopify_order_transaction': (): io.flow.internal.v0.models.ShopifyOrderTransaction => ({
|
|
18491
|
+
id: factories.string(),
|
|
18492
|
+
model: factories['io.flow.shopify.markets.v0.models.shopify_order_transaction'](),
|
|
18493
|
+
}),
|
|
18494
|
+
|
|
18495
|
+
'io.flow.internal.v0.models.shopify_order_transaction_deleted': (): io.flow.internal.v0.models.ShopifyOrderTransactionDeleted => ({
|
|
18496
|
+
discriminator: 'shopify_order_transaction_deleted',
|
|
18497
|
+
event_id: factories.string(),
|
|
18498
|
+
timestamp: factories.date_time_iso_8601(),
|
|
18499
|
+
organization: factories.string(),
|
|
18500
|
+
id: factories.string(),
|
|
18501
|
+
}),
|
|
18502
|
+
|
|
18503
|
+
'io.flow.internal.v0.models.shopify_order_transaction_upserted': (): io.flow.internal.v0.models.ShopifyOrderTransactionUpserted => ({
|
|
18504
|
+
discriminator: 'shopify_order_transaction_upserted',
|
|
18505
|
+
event_id: factories.string(),
|
|
18506
|
+
timestamp: factories.date_time_iso_8601(),
|
|
18507
|
+
organization: factories.string(),
|
|
18508
|
+
transaction: factories['io.flow.internal.v0.models.shopify_order_transaction'](),
|
|
18509
|
+
}),
|
|
18510
|
+
|
|
18336
18511
|
'io.flow.internal.v0.models.shopify_organization_settings': (): io.flow.internal.v0.models.ShopifyOrganizationSettings => ({
|
|
18337
18512
|
id: factories.string(),
|
|
18338
18513
|
process_label: factories.boolean(),
|
|
@@ -18970,6 +19145,7 @@ const factories = {
|
|
|
18970
19145
|
import_taxes: factories.integer(),
|
|
18971
19146
|
mor_fees: factories.integer(),
|
|
18972
19147
|
mor_foreign_exchange_fees: factories.integer(),
|
|
19148
|
+
sp_processing_fees: factories.integer(),
|
|
18973
19149
|
}),
|
|
18974
19150
|
|
|
18975
19151
|
'io.flow.internal.v0.models.stripe_connect_report_record_transfer_metadata': (): io.flow.internal.v0.models.StripeConnectReportRecordTransferMetadata => ({
|
|
@@ -18985,6 +19161,7 @@ const factories = {
|
|
|
18985
19161
|
import_taxes: factories.integer(),
|
|
18986
19162
|
mor_fees: factories.integer(),
|
|
18987
19163
|
mor_foreign_exchange_fees: factories.integer(),
|
|
19164
|
+
sp_processing_fees: factories.integer(),
|
|
18988
19165
|
merchant_account_currency: factories.string(),
|
|
18989
19166
|
amount_in_merchant_account_currency: factories.integer(),
|
|
18990
19167
|
payout_exchange_rate: factories.decimal(),
|
|
@@ -19302,6 +19479,11 @@ const factories = {
|
|
|
19302
19479
|
category_code: factories.string(),
|
|
19303
19480
|
}),
|
|
19304
19481
|
|
|
19482
|
+
'io.flow.internal.v0.models.tax_duty_reason_code_metadata': (): io.flow.internal.v0.models.TaxDutyReasonCodeMetadata => ({
|
|
19483
|
+
discriminator: 'tax_duty_reason_code_metadata',
|
|
19484
|
+
reason_code: factories['io.flow.billing.v0.enums.tax_duty_transaction_reason_code'](),
|
|
19485
|
+
}),
|
|
19486
|
+
|
|
19305
19487
|
'io.flow.internal.v0.models.tax_remittance_transaction': (): io.flow.internal.v0.models.TaxRemittanceTransaction => ({
|
|
19306
19488
|
discriminator: 'tax_remittance_transaction',
|
|
19307
19489
|
order: factories['io.flow.internal.v0.models.billing_order_summary'](),
|
|
@@ -19365,6 +19547,27 @@ const factories = {
|
|
|
19365
19547
|
children: arrayOf(() => factories['io.flow.internal.v0.unions.classification_taxonomy']()),
|
|
19366
19548
|
}),
|
|
19367
19549
|
|
|
19550
|
+
'io.flow.internal.v0.models.taxonomy_category_hs6_ref': (): io.flow.internal.v0.models.TaxonomyCategoryHs6Ref => ({
|
|
19551
|
+
id: factories.string(),
|
|
19552
|
+
taxonomy_category: factories.string(),
|
|
19553
|
+
hs6: factories.string(),
|
|
19554
|
+
updated_by_user_id: factories.string(),
|
|
19555
|
+
}),
|
|
19556
|
+
|
|
19557
|
+
'io.flow.internal.v0.models.taxonomy_category_hs6_ref_deleted': (): io.flow.internal.v0.models.TaxonomyCategoryHs6RefDeleted => ({
|
|
19558
|
+
discriminator: 'taxonomy_category_hs6_ref_deleted',
|
|
19559
|
+
event_id: factories.string(),
|
|
19560
|
+
timestamp: factories.date_time_iso_8601(),
|
|
19561
|
+
id: factories.string(),
|
|
19562
|
+
}),
|
|
19563
|
+
|
|
19564
|
+
'io.flow.internal.v0.models.taxonomy_category_hs6_ref_upserted': (): io.flow.internal.v0.models.TaxonomyCategoryHs6RefUpserted => ({
|
|
19565
|
+
discriminator: 'taxonomy_category_hs6_ref_upserted',
|
|
19566
|
+
event_id: factories.string(),
|
|
19567
|
+
timestamp: factories.date_time_iso_8601(),
|
|
19568
|
+
taxonomy_category_hs6_ref: factories['io.flow.internal.v0.models.taxonomy_category_hs6_ref'](),
|
|
19569
|
+
}),
|
|
19570
|
+
|
|
19368
19571
|
'io.flow.internal.v0.models.taxonomy_node': (): io.flow.internal.v0.models.TaxonomyNode => ({
|
|
19369
19572
|
id: factories.string(),
|
|
19370
19573
|
children: arrayOf(() => factories['io.flow.internal.v0.models.taxonomy_node']()),
|
|
@@ -19674,10 +19877,6 @@ const factories = {
|
|
|
19674
19877
|
tracking_events: arrayOf(() => factories['io.flow.internal.v0.models.tracking_event']()),
|
|
19675
19878
|
}),
|
|
19676
19879
|
|
|
19677
|
-
'io.flow.internal.v0.models.tracking_resync': (): io.flow.internal.v0.models.TrackingResync => ({
|
|
19678
|
-
placeholder: factories.boolean(),
|
|
19679
|
-
}),
|
|
19680
|
-
|
|
19681
19880
|
'io.flow.internal.v0.models.tracking_subscription': (): io.flow.internal.v0.models.TrackingSubscription => ({
|
|
19682
19881
|
id: factories.string(),
|
|
19683
19882
|
organization_id: factories.string(),
|
|
@@ -20012,6 +20211,7 @@ const factories = {
|
|
|
20012
20211
|
additional_services_requested: arrayOf(() => factories['io.flow.label.v0.models.additional_services_requested']()),
|
|
20013
20212
|
provided_charges: arrayOf(() => factories['io.flow.internal.v0.models.charge_input']()),
|
|
20014
20213
|
direction: factories['io.flow.label.v0.enums.direction'](),
|
|
20214
|
+
package_dimensions_source: factories['io.flow.label.v0.enums.package_dimensions_source'](),
|
|
20015
20215
|
}),
|
|
20016
20216
|
|
|
20017
20217
|
'io.flow.internal.v0.models.validation_character_length': (): io.flow.internal.v0.models.ValidationCharacterLength => ({
|
|
@@ -20129,6 +20329,7 @@ const factories = {
|
|
|
20129
20329
|
() => factories['io.flow.internal.v0.models.fedex_crossborder'](),
|
|
20130
20330
|
() => factories['io.flow.internal.v0.models.ups'](),
|
|
20131
20331
|
() => factories['io.flow.internal.v0.models.fedex'](),
|
|
20332
|
+
() => factories['io.flow.internal.v0.models.fedex_api'](),
|
|
20132
20333
|
]);
|
|
20133
20334
|
|
|
20134
20335
|
return f();
|
|
@@ -20564,6 +20765,8 @@ const factories = {
|
|
|
20564
20765
|
() => factories['io.flow.internal.v0.models.restriction_rule_deleted'](),
|
|
20565
20766
|
() => factories['io.flow.internal.v0.models.restriction_rule_effect_upserted'](),
|
|
20566
20767
|
() => factories['io.flow.internal.v0.models.restriction_rule_effect_deleted'](),
|
|
20768
|
+
() => factories['io.flow.internal.v0.models.taxonomy_category_hs6_ref_upserted'](),
|
|
20769
|
+
() => factories['io.flow.internal.v0.models.taxonomy_category_hs6_ref_deleted'](),
|
|
20567
20770
|
() => factories['io.flow.internal.v0.models.shopify_shop_upserted'](),
|
|
20568
20771
|
() => factories['io.flow.internal.v0.models.shopify_shop_deleted'](),
|
|
20569
20772
|
() => factories['io.flow.internal.v0.models.shopify_experience_short_id_upserted'](),
|
|
@@ -20591,6 +20794,8 @@ const factories = {
|
|
|
20591
20794
|
() => factories['io.flow.internal.v0.models.shopify_markets_best_selling_product_deleted'](),
|
|
20592
20795
|
() => factories['io.flow.internal.v0.models.shopify_order_risk_assessment_upserted'](),
|
|
20593
20796
|
() => factories['io.flow.internal.v0.models.shopify_order_risk_assessment_deleted'](),
|
|
20797
|
+
() => factories['io.flow.internal.v0.models.shopify_order_transaction_upserted'](),
|
|
20798
|
+
() => factories['io.flow.internal.v0.models.shopify_order_transaction_deleted'](),
|
|
20594
20799
|
() => factories['io.flow.internal.v0.models.shopify_product_create_upserted'](),
|
|
20595
20800
|
() => factories['io.flow.internal.v0.models.shopify_product_create_deleted'](),
|
|
20596
20801
|
() => factories['io.flow.internal.v0.models.shopify_product_update_upserted'](),
|
|
@@ -21107,6 +21312,7 @@ const factories = {
|
|
|
21107
21312
|
const f = faker.helpers.arrayElement([
|
|
21108
21313
|
() => factories['io.flow.internal.v0.models.statement_creation_metadata'](),
|
|
21109
21314
|
() => factories['io.flow.internal.v0.models.accounting_pending_order_metadata'](),
|
|
21315
|
+
() => factories['io.flow.internal.v0.models.tax_duty_reason_code_metadata'](),
|
|
21110
21316
|
]);
|
|
21111
21317
|
|
|
21112
21318
|
return f();
|
|
@@ -23636,7 +23842,7 @@ const factories = {
|
|
|
23636
23842
|
'unknown',
|
|
23637
23843
|
]),
|
|
23638
23844
|
|
|
23639
|
-
'io.flow.payment.v0.enums.payment_fee_type': (): io.flow.payment.v0.enums.PaymentFeeType => faker.helpers.arrayElement(['fx', 'mor']),
|
|
23845
|
+
'io.flow.payment.v0.enums.payment_fee_type': (): io.flow.payment.v0.enums.PaymentFeeType => faker.helpers.arrayElement(['fx', 'mor', 'sp']),
|
|
23640
23846
|
'io.flow.payment.v0.enums.payment_source_confirmation_action_type': (): io.flow.payment.v0.enums.PaymentSourceConfirmationActionType => faker.helpers.arrayElement(['cvv', 'billing_address', 'number']),
|
|
23641
23847
|
'io.flow.payment.v0.enums.refund_decline_code': (): io.flow.payment.v0.enums.RefundDeclineCode => faker.helpers.arrayElement(['expired', 'insufficient_funds', 'unknown']),
|
|
23642
23848
|
|
|
@@ -25508,6 +25714,8 @@ const factories = {
|
|
|
25508
25714
|
amount: factories['io.flow.common.v0.models.money'](),
|
|
25509
25715
|
starts_at: factories.date_time_iso_8601(),
|
|
25510
25716
|
ends_at: factories.date_time_iso_8601(),
|
|
25717
|
+
regions: arrayOf(() => factories.string()),
|
|
25718
|
+
dependent_service_fees: arrayOf(() => factories.string()),
|
|
25511
25719
|
}),
|
|
25512
25720
|
|
|
25513
25721
|
'io.flow.ratecard.v0.models.ratecard': (): io.flow.ratecard.v0.models.Ratecard => ({
|
|
@@ -25604,6 +25812,11 @@ const factories = {
|
|
|
25604
25812
|
line_items: arrayOf(() => factories['io.flow.common.v0.models.line_item_form']()),
|
|
25605
25813
|
}),
|
|
25606
25814
|
|
|
25815
|
+
'io.flow.ratecard.v0.models.ratecard_fee_summary': (): io.flow.ratecard.v0.models.RatecardFeeSummary => ({
|
|
25816
|
+
ratecard_fee: factories['io.flow.ratecard.v0.unions.ratecard_fee'](),
|
|
25817
|
+
source_service_fees: arrayOf(() => factories.string()),
|
|
25818
|
+
}),
|
|
25819
|
+
|
|
25607
25820
|
'io.flow.ratecard.v0.models.ratecard_form': (): io.flow.ratecard.v0.models.RatecardForm => ({
|
|
25608
25821
|
direction: factories['io.flow.label.v0.enums.direction'](),
|
|
25609
25822
|
effective_at: factories.date_time_iso_8601(),
|
|
@@ -26075,6 +26288,7 @@ const factories = {
|
|
|
26075
26288
|
'io.flow.sellability.v0.enums.sellability_request_status': (): io.flow.sellability.v0.enums.SellabilityRequestStatus => faker.helpers.arrayElement(['commit']),
|
|
26076
26289
|
|
|
26077
26290
|
'io.flow.sellability.v0.models.product_sellability': (): io.flow.sellability.v0.models.ProductSellability => ({
|
|
26291
|
+
discriminator: 'product_sellability',
|
|
26078
26292
|
shop_id: factories.string(),
|
|
26079
26293
|
product_id: factories.string(),
|
|
26080
26294
|
request_id: factories.string(),
|
|
@@ -26102,6 +26316,7 @@ const factories = {
|
|
|
26102
26316
|
}),
|
|
26103
26317
|
|
|
26104
26318
|
'io.flow.sellability.v0.models.sellability_error': (): io.flow.sellability.v0.models.SellabilityError => ({
|
|
26319
|
+
discriminator: 'sellability_error',
|
|
26105
26320
|
code: factories['io.flow.sellability.v0.enums.sellability_error_code'](),
|
|
26106
26321
|
messages: arrayOf(() => factories.string()),
|
|
26107
26322
|
}),
|
|
@@ -26111,6 +26326,15 @@ const factories = {
|
|
|
26111
26326
|
regions: arrayOf(() => factories.string()),
|
|
26112
26327
|
}),
|
|
26113
26328
|
|
|
26329
|
+
'io.flow.sellability.v0.unions.sellability_response': (): io.flow.sellability.v0.unions.SellabilityResponse => {
|
|
26330
|
+
const f = faker.helpers.arrayElement([
|
|
26331
|
+
() => factories['io.flow.sellability.v0.models.product_sellability'](),
|
|
26332
|
+
() => factories['io.flow.sellability.v0.models.sellability_error'](),
|
|
26333
|
+
]);
|
|
26334
|
+
|
|
26335
|
+
return f();
|
|
26336
|
+
},
|
|
26337
|
+
|
|
26114
26338
|
'io.flow.session.v0.models.cart_reference': (): io.flow.session.v0.models.CartReference => ({
|
|
26115
26339
|
id: factories.string(),
|
|
26116
26340
|
}),
|
|
@@ -27626,6 +27850,27 @@ const factories = {
|
|
|
27626
27850
|
assessment: factories['io.flow.shopify.markets.internal.v0.models.shopify_order_risk_assessment'](),
|
|
27627
27851
|
}),
|
|
27628
27852
|
|
|
27853
|
+
'io.flow.shopify.markets.internal.event.v0.models.shopify_order_transaction': (): io.flow.shopify.markets.internal.event.v0.models.ShopifyOrderTransaction => ({
|
|
27854
|
+
id: factories.string(),
|
|
27855
|
+
model: factories['io.flow.shopify.markets.v0.models.shopify_order_transaction'](),
|
|
27856
|
+
}),
|
|
27857
|
+
|
|
27858
|
+
'io.flow.shopify.markets.internal.event.v0.models.shopify_order_transaction_deleted': (): io.flow.shopify.markets.internal.event.v0.models.ShopifyOrderTransactionDeleted => ({
|
|
27859
|
+
discriminator: 'shopify_order_transaction_deleted',
|
|
27860
|
+
event_id: factories.string(),
|
|
27861
|
+
timestamp: factories.date_time_iso_8601(),
|
|
27862
|
+
organization: factories.string(),
|
|
27863
|
+
id: factories.string(),
|
|
27864
|
+
}),
|
|
27865
|
+
|
|
27866
|
+
'io.flow.shopify.markets.internal.event.v0.models.shopify_order_transaction_upserted': (): io.flow.shopify.markets.internal.event.v0.models.ShopifyOrderTransactionUpserted => ({
|
|
27867
|
+
discriminator: 'shopify_order_transaction_upserted',
|
|
27868
|
+
event_id: factories.string(),
|
|
27869
|
+
timestamp: factories.date_time_iso_8601(),
|
|
27870
|
+
organization: factories.string(),
|
|
27871
|
+
transaction: factories['io.flow.shopify.markets.internal.event.v0.models.shopify_order_transaction'](),
|
|
27872
|
+
}),
|
|
27873
|
+
|
|
27629
27874
|
'io.flow.shopify.markets.internal.event.v0.models.shopify_product_bundle_deleted': (): io.flow.shopify.markets.internal.event.v0.models.ShopifyProductBundleDeleted => ({
|
|
27630
27875
|
discriminator: 'shopify_product_bundle_deleted',
|
|
27631
27876
|
event_id: factories.string(),
|
|
@@ -27667,6 +27912,8 @@ const factories = {
|
|
|
27667
27912
|
() => factories['io.flow.shopify.markets.internal.event.v0.models.shopify_markets_best_selling_product_deleted'](),
|
|
27668
27913
|
() => factories['io.flow.shopify.markets.internal.event.v0.models.shopify_order_risk_assessment_upserted'](),
|
|
27669
27914
|
() => factories['io.flow.shopify.markets.internal.event.v0.models.shopify_order_risk_assessment_deleted'](),
|
|
27915
|
+
() => factories['io.flow.shopify.markets.internal.event.v0.models.shopify_order_transaction_upserted'](),
|
|
27916
|
+
() => factories['io.flow.shopify.markets.internal.event.v0.models.shopify_order_transaction_deleted'](),
|
|
27670
27917
|
]);
|
|
27671
27918
|
|
|
27672
27919
|
return f();
|
|
@@ -27896,6 +28143,7 @@ const factories = {
|
|
|
27896
28143
|
api_password: factories.string(),
|
|
27897
28144
|
access_token: factories.string(),
|
|
27898
28145
|
shopify_plan_name: factories['io.flow.shopify.external.v0.enums.shopify_plan_name'](),
|
|
28146
|
+
catalog_publication_owner: factories['io.flow.channel.shopify.internal.v0.enums.catalog_publication_owner'](),
|
|
27899
28147
|
}),
|
|
27900
28148
|
|
|
27901
28149
|
'io.flow.shopify.markets.internal.v0.models.shopify_markets_shop_summary': (): io.flow.shopify.markets.internal.v0.models.ShopifyMarketsShopSummary => ({
|
|
@@ -31902,6 +32150,7 @@ export const makeCatalogItemIndexTask = () => factories['io.flow.internal.v0.mod
|
|
|
31902
32150
|
export const makeCatalogItemRegionAvailabilities = () => factories['io.flow.internal.v0.models.catalog_item_region_availabilities']();
|
|
31903
32151
|
export const makeCatalogItemRegionAvailabilitiesData = () => factories['io.flow.internal.v0.models.catalog_item_region_availabilities_data']();
|
|
31904
32152
|
export const makeCatalogItemRegionAvailabilitiesPublished = () => factories['io.flow.internal.v0.models.catalog_item_region_availabilities_published']();
|
|
32153
|
+
export const makeCatalogPublicationOwner = () => factories['io.flow.internal.v0.enums.catalog_publication_owner']();
|
|
31905
32154
|
export const makeCatalogPublicationSyncValidationError = () => factories['io.flow.internal.v0.models.catalog_publication_sync_validation_error']();
|
|
31906
32155
|
export const makeCatalogSettings = () => factories['io.flow.internal.v0.models.catalog_settings']();
|
|
31907
32156
|
export const makeCatalogSettingsDeleted = () => factories['io.flow.internal.v0.models.catalog_settings_deleted']();
|
|
@@ -32039,6 +32288,7 @@ export const makeClassificationProductSummary = () => factories['io.flow.interna
|
|
|
32039
32288
|
export const makeClassificationProductSummaryPage = () => factories['io.flow.internal.v0.models.classification_product_summary_page']();
|
|
32040
32289
|
export const makeClassificationRequeueRequest = () => factories['io.flow.internal.v0.models.classification_requeue_request']();
|
|
32041
32290
|
export const makeClassificationResponse = () => factories['io.flow.internal.v0.unions.classification_response']();
|
|
32291
|
+
export const makeClassificationScope = () => factories['io.flow.internal.v0.enums.classification_scope']();
|
|
32042
32292
|
export const makeClassificationStatistics = () => factories['io.flow.internal.v0.models.classification_statistics']();
|
|
32043
32293
|
export const makeClassificationSummaryReportPayload = () => factories['io.flow.internal.v0.models.classification_summary_report_payload']();
|
|
32044
32294
|
export const makeClassificationTaxonomy = () => factories['io.flow.internal.v0.unions.classification_taxonomy']();
|
|
@@ -32231,6 +32481,7 @@ export const makeErpVendorStatus = () => factories['io.flow.internal.v0.models.e
|
|
|
32231
32481
|
export const makeErpVendorStatusEntity = () => factories['io.flow.internal.v0.models.erp_vendor_status_entity']();
|
|
32232
32482
|
export const makeErpVendorStatusFlowFile = () => factories['io.flow.internal.v0.models.erp_vendor_status_flow_file']();
|
|
32233
32483
|
export const makeErpVendorStatusPriorityFile = () => factories['io.flow.internal.v0.models.erp_vendor_status_priority_file']();
|
|
32484
|
+
export const makeEvaluationResults = () => factories['io.flow.internal.v0.models.evaluation_results']();
|
|
32234
32485
|
export const makeEvent = () => factories['io.flow.internal.v0.unions.event']();
|
|
32235
32486
|
export const makeEventType = () => factories['io.flow.internal.v0.enums.event_type']();
|
|
32236
32487
|
export const makeExclusionRuleDeleted = () => factories['io.flow.internal.v0.models.exclusion_rule_deleted']();
|
|
@@ -32284,6 +32535,7 @@ export const makeFeatureValue = () => factories['io.flow.internal.v0.unions.feat
|
|
|
32284
32535
|
export const makeFeatureValueForm = () => factories['io.flow.internal.v0.models.feature_value_form']();
|
|
32285
32536
|
export const makeFeatureValueResult = () => factories['io.flow.internal.v0.models.feature_value_result']();
|
|
32286
32537
|
export const makeFedex = () => factories['io.flow.internal.v0.models.fedex']();
|
|
32538
|
+
export const makeFedexApi = () => factories['io.flow.internal.v0.models.fedex_api']();
|
|
32287
32539
|
export const makeFedexCrossborder = () => factories['io.flow.internal.v0.models.fedex_crossborder']();
|
|
32288
32540
|
export const makeFee = () => factories['io.flow.internal.v0.models.fee']();
|
|
32289
32541
|
export const makeFees = () => factories['io.flow.internal.v0.models.fees']();
|
|
@@ -32703,6 +32955,7 @@ export const makeOrderLifecycleEvent = () => factories['io.flow.internal.v0.enum
|
|
|
32703
32955
|
export const makeOrderNote = () => factories['io.flow.internal.v0.models.order_note']();
|
|
32704
32956
|
export const makeOrderNoteForm = () => factories['io.flow.internal.v0.models.order_note_form']();
|
|
32705
32957
|
export const makeOrderPaymentAuthorization = () => factories['io.flow.internal.v0.models.order_payment_authorization']();
|
|
32958
|
+
export const makeOrderPaymentSourceType = () => factories['io.flow.internal.v0.enums.order_payment_source_type']();
|
|
32706
32959
|
export const makeOrderRatesDataV3 = () => factories['io.flow.internal.v0.models.order_rates_data_v3']();
|
|
32707
32960
|
export const makeOrderRatesPublishedV3 = () => factories['io.flow.internal.v0.models.order_rates_published_v3']();
|
|
32708
32961
|
export const makeOrderReference = () => factories['io.flow.internal.v0.models.order_reference']();
|
|
@@ -32930,6 +33183,7 @@ export const makeProductRestrictionStateDeleted = () => factories['io.flow.inter
|
|
|
32930
33183
|
export const makeProductRestrictionStateInserted = () => factories['io.flow.internal.v0.models.product_restriction_state_inserted']();
|
|
32931
33184
|
export const makeProductRestrictionStateUpdated = () => factories['io.flow.internal.v0.models.product_restriction_state_updated']();
|
|
32932
33185
|
export const makeProductReviewHistory = () => factories['io.flow.internal.v0.models.product_review_history']();
|
|
33186
|
+
export const makeProductSellabilityInternal = () => factories['io.flow.internal.v0.models.product_sellability_internal']();
|
|
32933
33187
|
export const makeProductSellabilityResult = () => factories['io.flow.internal.v0.models.product_sellability_result']();
|
|
32934
33188
|
export const makeProductStatus = () => factories['io.flow.internal.v0.enums.product_status']();
|
|
32935
33189
|
export const makeProductTransaction = () => factories['io.flow.internal.v0.models.product_transaction']();
|
|
@@ -33105,6 +33359,7 @@ export const makeRestrictionRuleEffectUpserted = () => factories['io.flow.intern
|
|
|
33105
33359
|
export const makeRestrictionRuleExceptionAction = () => factories['io.flow.internal.v0.enums.restriction_rule_exception_action']();
|
|
33106
33360
|
export const makeRestrictionRuleForm = () => factories['io.flow.internal.v0.models.restriction_rule_form']();
|
|
33107
33361
|
export const makeRestrictionRuleLaneExemption = () => factories['io.flow.internal.v0.models.restriction_rule_lane_exemption']();
|
|
33362
|
+
export const makeRestrictionRuleOrganizationExemption = () => factories['io.flow.internal.v0.models.restriction_rule_organization_exemption']();
|
|
33108
33363
|
export const makeRestrictionRuleOverride = () => factories['io.flow.internal.v0.models.restriction_rule_override']();
|
|
33109
33364
|
export const makeRestrictionRuleSummary = () => factories['io.flow.internal.v0.models.restriction_rule_summary']();
|
|
33110
33365
|
export const makeRestrictionRuleUpserted = () => factories['io.flow.internal.v0.models.restriction_rule_upserted']();
|
|
@@ -33118,8 +33373,6 @@ export const makeResyncByDestinations = () => factories['io.flow.internal.v0.mod
|
|
|
33118
33373
|
export const makeResyncByHs6Destinations = () => factories['io.flow.internal.v0.models.resync_by_hs6_destinations']();
|
|
33119
33374
|
export const makeResyncByHs6Origin = () => factories['io.flow.internal.v0.models.resync_by_hs6_origin']();
|
|
33120
33375
|
export const makeResyncFallbackRates = () => factories['io.flow.internal.v0.models.resync_fallback_rates']();
|
|
33121
|
-
export const makeRetracking = () => factories['io.flow.internal.v0.models.retracking']();
|
|
33122
|
-
export const makeRetrackingForm = () => factories['io.flow.internal.v0.models.retracking_form']();
|
|
33123
33376
|
export const makeReturn = () => factories['io.flow.internal.v0.models.return']();
|
|
33124
33377
|
export const makeReturnPolicyDeleted = () => factories['io.flow.internal.v0.models.return_policy_deleted']();
|
|
33125
33378
|
export const makeReturnPolicyItemResultDeleted = () => factories['io.flow.internal.v0.models.return_policy_item_result_deleted']();
|
|
@@ -33166,6 +33419,7 @@ export const makeShippingPricing = () => factories['io.flow.internal.v0.models.s
|
|
|
33166
33419
|
export const makeShop = () => factories['io.flow.internal.v0.models.shop']();
|
|
33167
33420
|
export const makeShopForm = () => factories['io.flow.internal.v0.models.shop_form']();
|
|
33168
33421
|
export const makeShopVersion = () => factories['io.flow.internal.v0.models.shop_version']();
|
|
33422
|
+
export const makeShopifyCatalogPublication = () => factories['io.flow.internal.v0.models.shopify_catalog_publication']();
|
|
33169
33423
|
export const makeShopifyChannelOrganizationToken = () => factories['io.flow.internal.v0.models.shopify_channel_organization_token']();
|
|
33170
33424
|
export const makeShopifyChannelOrganizationTokens = () => factories['io.flow.internal.v0.models.shopify_channel_organization_tokens']();
|
|
33171
33425
|
export const makeShopifyCheckInventoryError = () => factories['io.flow.internal.v0.models.shopify_check_inventory_error']();
|
|
@@ -33263,6 +33517,9 @@ export const makeShopifyOrderLineContent = () => factories['io.flow.internal.v0.
|
|
|
33263
33517
|
export const makeShopifyOrderRiskAssessment = () => factories['io.flow.internal.v0.models.shopify_order_risk_assessment']();
|
|
33264
33518
|
export const makeShopifyOrderRiskAssessmentDeleted = () => factories['io.flow.internal.v0.models.shopify_order_risk_assessment_deleted']();
|
|
33265
33519
|
export const makeShopifyOrderRiskAssessmentUpserted = () => factories['io.flow.internal.v0.models.shopify_order_risk_assessment_upserted']();
|
|
33520
|
+
export const makeShopifyOrderTransaction = () => factories['io.flow.internal.v0.models.shopify_order_transaction']();
|
|
33521
|
+
export const makeShopifyOrderTransactionDeleted = () => factories['io.flow.internal.v0.models.shopify_order_transaction_deleted']();
|
|
33522
|
+
export const makeShopifyOrderTransactionUpserted = () => factories['io.flow.internal.v0.models.shopify_order_transaction_upserted']();
|
|
33266
33523
|
export const makeShopifyOrganizationSettings = () => factories['io.flow.internal.v0.models.shopify_organization_settings']();
|
|
33267
33524
|
export const makeShopifyOrganizationSettingsForm = () => factories['io.flow.internal.v0.models.shopify_organization_settings_form']();
|
|
33268
33525
|
export const makeShopifyPartnerWebhook = () => factories['io.flow.internal.v0.models.shopify_partner_webhook']();
|
|
@@ -33415,6 +33672,7 @@ export const makeTaxCalculationErrorCode = () => factories['io.flow.internal.v0.
|
|
|
33415
33672
|
export const makeTaxCalculationForm = () => factories['io.flow.internal.v0.models.tax_calculation_form']();
|
|
33416
33673
|
export const makeTaxCalculationLineItem = () => factories['io.flow.internal.v0.models.tax_calculation_line_item']();
|
|
33417
33674
|
export const makeTaxCalculationLineItemForm = () => factories['io.flow.internal.v0.models.tax_calculation_line_item_form']();
|
|
33675
|
+
export const makeTaxDutyReasonCodeMetadata = () => factories['io.flow.internal.v0.models.tax_duty_reason_code_metadata']();
|
|
33418
33676
|
export const makeTaxParty = () => factories['io.flow.internal.v0.enums.tax_party']();
|
|
33419
33677
|
export const makeTaxRemittanceTransaction = () => factories['io.flow.internal.v0.models.tax_remittance_transaction']();
|
|
33420
33678
|
export const makeTaxRemittanceTransactionDeleted = () => factories['io.flow.internal.v0.models.tax_remittance_transaction_deleted']();
|
|
@@ -33424,6 +33682,9 @@ export const makeTaxTransactionDeleted = () => factories['io.flow.internal.v0.mo
|
|
|
33424
33682
|
export const makeTaxTransactionType = () => factories['io.flow.internal.v0.enums.tax_transaction_type']();
|
|
33425
33683
|
export const makeTaxTransactionUpserted = () => factories['io.flow.internal.v0.models.tax_transaction_upserted']();
|
|
33426
33684
|
export const makeTaxonomyCategory = () => factories['io.flow.internal.v0.models.taxonomy_category']();
|
|
33685
|
+
export const makeTaxonomyCategoryHs6Ref = () => factories['io.flow.internal.v0.models.taxonomy_category_hs6_ref']();
|
|
33686
|
+
export const makeTaxonomyCategoryHs6RefDeleted = () => factories['io.flow.internal.v0.models.taxonomy_category_hs6_ref_deleted']();
|
|
33687
|
+
export const makeTaxonomyCategoryHs6RefUpserted = () => factories['io.flow.internal.v0.models.taxonomy_category_hs6_ref_upserted']();
|
|
33427
33688
|
export const makeTaxonomyNode = () => factories['io.flow.internal.v0.models.taxonomy_node']();
|
|
33428
33689
|
export const makeTechOnboardingDescription = () => factories['io.flow.internal.v0.models.tech_onboarding_description']();
|
|
33429
33690
|
export const makeTest = () => factories['io.flow.internal.v0.models.test']();
|
|
@@ -33470,7 +33731,6 @@ export const makeTrackingProcessingErrorUpserted = () => factories['io.flow.inte
|
|
|
33470
33731
|
export const makeTrackingProcessingFailureClassification = () => factories['io.flow.internal.v0.enums.tracking_processing_failure_classification']();
|
|
33471
33732
|
export const makeTrackingRequest = () => factories['io.flow.internal.v0.models.tracking_request']();
|
|
33472
33733
|
export const makeTrackingResponse = () => factories['io.flow.internal.v0.models.tracking_response']();
|
|
33473
|
-
export const makeTrackingResync = () => factories['io.flow.internal.v0.models.tracking_resync']();
|
|
33474
33734
|
export const makeTrackingSubscription = () => factories['io.flow.internal.v0.models.tracking_subscription']();
|
|
33475
33735
|
export const makeTrackingSubscriptionDeleted = () => factories['io.flow.internal.v0.models.tracking_subscription_deleted']();
|
|
33476
33736
|
export const makeTrackingSubscriptionUpserted = () => factories['io.flow.internal.v0.models.tracking_subscription_upserted']();
|