@flowio/api-internal-factories 0.0.120 → 0.0.122
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/api-internal.js +289 -598
- package/dist/esm/api-internal.js +234 -504
- package/dist/types/api-internal.d.ts +18 -56
- package/package.json +2 -2
- package/src/api-internal.ts +259 -595
package/src/api-internal.ts
CHANGED
|
@@ -804,7 +804,6 @@ const factories = {
|
|
|
804
804
|
'tax_refund',
|
|
805
805
|
'non_l4l_tax_duty_fx',
|
|
806
806
|
'ge_revenue_share',
|
|
807
|
-
'tax_duty_delta',
|
|
808
807
|
]),
|
|
809
808
|
|
|
810
809
|
'io.flow.billing.v0.enums.trueup_source': (): io.flow.billing.v0.enums.TrueupSource => faker.helpers.arrayElement(['flow', 'channel', 'dhl-parcel', 'dhl', 'ups']),
|
|
@@ -2194,59 +2193,6 @@ const factories = {
|
|
|
2194
2193
|
attributes: objectOf(() => factories.string()),
|
|
2195
2194
|
}),
|
|
2196
2195
|
|
|
2197
|
-
'io.flow.checkout.v0.models.checkout_token': (): io.flow.checkout.v0.models.CheckoutToken => ({
|
|
2198
|
-
id: factories.string(),
|
|
2199
|
-
organization: factories['io.flow.common.v0.models.organization_reference'](),
|
|
2200
|
-
checkout: factories['io.flow.common.v0.models.checkout_reference'](),
|
|
2201
|
-
order: factories['io.flow.experience.v0.models.order_number_reference'](),
|
|
2202
|
-
urls: factories['io.flow.checkout.v0.models.checkout_urls'](),
|
|
2203
|
-
expires_at: factories.date_time_iso_8601(),
|
|
2204
|
-
session: factories['io.flow.common.v0.models.session_reference'](),
|
|
2205
|
-
customer: factories['io.flow.common.v0.models.customer_reference'](),
|
|
2206
|
-
}),
|
|
2207
|
-
|
|
2208
|
-
'io.flow.checkout.v0.models.checkout_token_order_form': (): io.flow.checkout.v0.models.CheckoutTokenOrderForm => ({
|
|
2209
|
-
discriminator: 'checkout_token_order_form',
|
|
2210
|
-
order_form: factories['io.flow.experience.v0.models.order_form'](),
|
|
2211
|
-
customer: factories['io.flow.customer.v0.models.customer_form'](),
|
|
2212
|
-
address_book: factories['io.flow.customer.v0.models.customer_address_book_form'](),
|
|
2213
|
-
payment_sources: arrayOf(() => factories['io.flow.payment.v0.unions.payment_source_form']()),
|
|
2214
|
-
session_id: factories.string(),
|
|
2215
|
-
urls: factories['io.flow.checkout.v0.models.checkout_urls_form'](),
|
|
2216
|
-
|
|
2217
|
-
identifiers: arrayOf(
|
|
2218
|
-
() => factories['io.flow.experience.v0.models.order_submission_identifier_form'](),
|
|
2219
|
-
),
|
|
2220
|
-
}),
|
|
2221
|
-
|
|
2222
|
-
'io.flow.checkout.v0.models.checkout_token_reference_form': (): io.flow.checkout.v0.models.CheckoutTokenReferenceForm => ({
|
|
2223
|
-
discriminator: 'checkout_token_reference_form',
|
|
2224
|
-
order_number: factories.string(),
|
|
2225
|
-
session_id: factories.string(),
|
|
2226
|
-
urls: factories['io.flow.checkout.v0.models.checkout_urls_form'](),
|
|
2227
|
-
}),
|
|
2228
|
-
|
|
2229
|
-
'io.flow.checkout.v0.models.checkout_urls': (): io.flow.checkout.v0.models.CheckoutUrls => ({
|
|
2230
|
-
continue_shopping: factories.string(),
|
|
2231
|
-
confirmation: factories.string(),
|
|
2232
|
-
invalid_checkout: factories.string(),
|
|
2233
|
-
}),
|
|
2234
|
-
|
|
2235
|
-
'io.flow.checkout.v0.models.checkout_urls_form': (): io.flow.checkout.v0.models.CheckoutUrlsForm => ({
|
|
2236
|
-
continue_shopping: factories.string(),
|
|
2237
|
-
confirmation: factories.string(),
|
|
2238
|
-
invalid_checkout: factories.string(),
|
|
2239
|
-
}),
|
|
2240
|
-
|
|
2241
|
-
'io.flow.checkout.v0.unions.checkout_token_form': (): io.flow.checkout.v0.unions.CheckoutTokenForm => {
|
|
2242
|
-
const f = faker.helpers.arrayElement([
|
|
2243
|
-
() => factories['io.flow.checkout.v0.models.checkout_token_order_form'](),
|
|
2244
|
-
() => factories['io.flow.checkout.v0.models.checkout_token_reference_form'](),
|
|
2245
|
-
]);
|
|
2246
|
-
|
|
2247
|
-
return f();
|
|
2248
|
-
},
|
|
2249
|
-
|
|
2250
2196
|
'io.flow.common.v0.enums.attribute_data_type': (): io.flow.common.v0.enums.AttributeDataType => faker.helpers.arrayElement(['boolean', 'integer', 'decimal', 'string', 'json_array']),
|
|
2251
2197
|
'io.flow.common.v0.enums.availability_status': (): io.flow.common.v0.enums.AvailabilityStatus => faker.helpers.arrayElement(['enabled', 'disabled']),
|
|
2252
2198
|
'io.flow.common.v0.enums.calendar': (): io.flow.common.v0.enums.Calendar => faker.helpers.arrayElement(['weekdays', 'everyday']),
|
|
@@ -2312,6 +2258,9 @@ const factories = {
|
|
|
2312
2258
|
'inch',
|
|
2313
2259
|
'foot',
|
|
2314
2260
|
'cubic_inch',
|
|
2261
|
+
'cubic_foot',
|
|
2262
|
+
'cubic_millimeter',
|
|
2263
|
+
'cubic_centimeter',
|
|
2315
2264
|
'cubic_meter',
|
|
2316
2265
|
'gram',
|
|
2317
2266
|
'kilogram',
|
|
@@ -3082,7 +3031,7 @@ const factories = {
|
|
|
3082
3031
|
'io.flow.experience.v0.enums.order_refund_summary_partial_charged': (): io.flow.experience.v0.enums.OrderRefundSummaryPartialCharged => faker.helpers.arrayElement(['per_item', 'for_order', 'by_value_percentage', 'by_quantity_percentage']),
|
|
3083
3032
|
'io.flow.experience.v0.enums.order_status': (): io.flow.experience.v0.enums.OrderStatus => faker.helpers.arrayElement(['open', 'submitted']),
|
|
3084
3033
|
'io.flow.experience.v0.enums.order_storage': (): io.flow.experience.v0.enums.OrderStorage => faker.helpers.arrayElement(['do_not_persist', 'persist']),
|
|
3085
|
-
'io.flow.experience.v0.enums.order_type': (): io.flow.experience.v0.enums.OrderType => faker.helpers.arrayElement(['standard', 'replacement']),
|
|
3034
|
+
'io.flow.experience.v0.enums.order_type': (): io.flow.experience.v0.enums.OrderType => faker.helpers.arrayElement(['standard', 'replacement', 'edit']),
|
|
3086
3035
|
'io.flow.experience.v0.enums.organization_payment_method_tag': (): io.flow.experience.v0.enums.OrganizationPaymentMethodTag => faker.helpers.arrayElement(['deny']),
|
|
3087
3036
|
'io.flow.experience.v0.enums.payment_method_rule_content_key': (): io.flow.experience.v0.enums.PaymentMethodRuleContentKey => faker.helpers.arrayElement(['description']),
|
|
3088
3037
|
'io.flow.experience.v0.enums.price_facet_boundary': (): io.flow.experience.v0.enums.PriceFacetBoundary => faker.helpers.arrayElement(['min', 'max']),
|
|
@@ -6899,10 +6848,8 @@ const factories = {
|
|
|
6899
6848
|
'tax_refund',
|
|
6900
6849
|
'duty_refund',
|
|
6901
6850
|
'ge_revenue_share',
|
|
6902
|
-
'tax_duty_delta',
|
|
6903
6851
|
]),
|
|
6904
6852
|
|
|
6905
|
-
'io.flow.internal.v0.enums.browser_bundle_error_code': (): io.flow.internal.v0.enums.BrowserBundleErrorCode => faker.helpers.arrayElement(['generic_error', 'country_invalid']),
|
|
6906
6853
|
'io.flow.internal.v0.enums.calculator_engine': (): io.flow.internal.v0.enums.CalculatorEngine => faker.helpers.arrayElement(['dtce_with_deminimis', 'dtce_with_inclusive_pricing', 'dtce_and_us_tax']),
|
|
6907
6854
|
'io.flow.internal.v0.enums.carrier_charge_transaction_type': (): io.flow.internal.v0.enums.CarrierChargeTransactionType => faker.helpers.arrayElement(['adjustment', 'reversal', 'charge', 'revenue_share']),
|
|
6908
6855
|
'io.flow.internal.v0.enums.carrier_charge_type': (): io.flow.internal.v0.enums.CarrierChargeType => faker.helpers.arrayElement(['label', 'tax', 'other']),
|
|
@@ -7055,10 +7002,6 @@ const factories = {
|
|
|
7055
7002
|
'io.flow.internal.v0.enums.erp_file_type': (): io.flow.internal.v0.enums.ErpFileType => faker.helpers.arrayElement(['vendor']),
|
|
7056
7003
|
|
|
7057
7004
|
'io.flow.internal.v0.enums.event_type': (): io.flow.internal.v0.enums.EventType => faker.helpers.arrayElement([
|
|
7058
|
-
'adjusted_estimates_upserted',
|
|
7059
|
-
'adjusted_estimates_deleted',
|
|
7060
|
-
'final_estimate_upserted',
|
|
7061
|
-
'final_estimate_deleted',
|
|
7062
7005
|
'adyen_authorization_deleted',
|
|
7063
7006
|
'adyen_authorization_upserted',
|
|
7064
7007
|
'adyen_cancel_deleted',
|
|
@@ -7226,7 +7169,6 @@ const factories = {
|
|
|
7226
7169
|
'center_defaults_deleted',
|
|
7227
7170
|
'fulfillment_fallbacks_upserted',
|
|
7228
7171
|
'fulfillment_fallbacks_deleted',
|
|
7229
|
-
'pregenerated_request_event',
|
|
7230
7172
|
'quote_upserted',
|
|
7231
7173
|
'quote_deleted',
|
|
7232
7174
|
'all_items_export',
|
|
@@ -7235,7 +7177,6 @@ const factories = {
|
|
|
7235
7177
|
'dutied_items_export',
|
|
7236
7178
|
'harmonization_phrase_suggestion_request_import',
|
|
7237
7179
|
'harmonization_codes_import',
|
|
7238
|
-
'item_classification_created',
|
|
7239
7180
|
'harmonize_fully_request_v2',
|
|
7240
7181
|
'import_completed',
|
|
7241
7182
|
'import_failed',
|
|
@@ -7259,22 +7200,17 @@ const factories = {
|
|
|
7259
7200
|
'order_validation_failure_deleted',
|
|
7260
7201
|
'order_validation_upserted',
|
|
7261
7202
|
'order_validation_deleted',
|
|
7203
|
+
'label_creation_job_upserted',
|
|
7204
|
+
'label_creation_job_deleted',
|
|
7262
7205
|
'label_tracking_summary_upserted',
|
|
7263
7206
|
'label_tracking_summary_deleted',
|
|
7264
7207
|
'logistics_capabilities_upserted',
|
|
7265
7208
|
'logistics_capabilities_deleted',
|
|
7266
7209
|
'localized_item_prices_export_request',
|
|
7267
|
-
'optin_prompt_upserted',
|
|
7268
|
-
'optin_prompt_deleted',
|
|
7269
7210
|
'order_combined_shipment_upserted',
|
|
7270
7211
|
'order_combined_shipment_deleted',
|
|
7271
7212
|
'order_fulfillment_deleted',
|
|
7272
7213
|
'order_fulfillment_upserted',
|
|
7273
|
-
'order_placed',
|
|
7274
|
-
'ready_to_fulfill',
|
|
7275
|
-
'fulfillment_cancel',
|
|
7276
|
-
'order_shipped',
|
|
7277
|
-
'items_shipped',
|
|
7278
7214
|
'organization_business_entity_deleted',
|
|
7279
7215
|
'organization_business_entity_upserted',
|
|
7280
7216
|
'organization_status_change_upserted',
|
|
@@ -7331,8 +7267,6 @@ const factories = {
|
|
|
7331
7267
|
'ratecard_standard_configuration_deleted',
|
|
7332
7268
|
'ratecard_service_fee_upserted',
|
|
7333
7269
|
'ratecard_service_fee_deleted',
|
|
7334
|
-
'ratecard_lane_aggregate_upserted',
|
|
7335
|
-
'ratecard_lane_aggregate_deleted',
|
|
7336
7270
|
'ratecard_rate_level_upserted',
|
|
7337
7271
|
'ratecard_rate_level_deleted',
|
|
7338
7272
|
'ratecard_rate_level_ratecard_upserted',
|
|
@@ -7392,6 +7326,8 @@ const factories = {
|
|
|
7392
7326
|
'shopify_monitoring_order_monitor_event_deleted',
|
|
7393
7327
|
'shopify_order_fulfillments_snapshot_upserted',
|
|
7394
7328
|
'shopify_order_fulfillments_snapshot_deleted',
|
|
7329
|
+
'shopify_merchant_plan_upserted',
|
|
7330
|
+
'shopify_merchant_plan_deleted',
|
|
7395
7331
|
'stripe_authorization_deleted',
|
|
7396
7332
|
'stripe_authorization_upserted',
|
|
7397
7333
|
'stripe_reversal_deleted',
|
|
@@ -7402,6 +7338,8 @@ const factories = {
|
|
|
7402
7338
|
'stripe_refund_upserted',
|
|
7403
7339
|
'stripe_dispute_upserted',
|
|
7404
7340
|
'stripe_dispute_deleted',
|
|
7341
|
+
'stripe_connect_report_record_upserted',
|
|
7342
|
+
'stripe_connect_report_record_deleted',
|
|
7405
7343
|
'liability_remittance_plan_upserted',
|
|
7406
7344
|
'liability_remittance_plan_deleted',
|
|
7407
7345
|
'tracking_processing_error_upserted',
|
|
@@ -7465,8 +7403,9 @@ const factories = {
|
|
|
7465
7403
|
'shopify_webhook',
|
|
7466
7404
|
]),
|
|
7467
7405
|
|
|
7468
|
-
'io.flow.internal.v0.enums.harmonization_decision_source': (): io.flow.internal.v0.enums.HarmonizationDecisionSource => faker.helpers.arrayElement(['human', 'legacy_model', 'enterprise_model']),
|
|
7406
|
+
'io.flow.internal.v0.enums.harmonization_decision_source': (): io.flow.internal.v0.enums.HarmonizationDecisionSource => faker.helpers.arrayElement(['human', 'legacy_model', 'enterprise_model', 'merchant']),
|
|
7469
7407
|
'io.flow.internal.v0.enums.http_method': (): io.flow.internal.v0.enums.HttpMethod => faker.helpers.arrayElement(['get', 'post']),
|
|
7408
|
+
'io.flow.internal.v0.enums.internal_payment_entity_type': (): io.flow.internal.v0.enums.InternalPaymentEntityType => faker.helpers.arrayElement(['authorization', 'capture', 'refund', 'dispute']),
|
|
7470
7409
|
'io.flow.internal.v0.enums.item_classification_action': (): io.flow.internal.v0.enums.ItemClassificationAction => faker.helpers.arrayElement(['ACCEPT', 'MANUAL', 'REJECT']),
|
|
7471
7410
|
|
|
7472
7411
|
'io.flow.internal.v0.enums.item_classification_status': (): io.flow.internal.v0.enums.ItemClassificationStatus => faker.helpers.arrayElement([
|
|
@@ -7536,6 +7475,7 @@ const factories = {
|
|
|
7536
7475
|
'non_fraud_chargeback',
|
|
7537
7476
|
]),
|
|
7538
7477
|
|
|
7478
|
+
'io.flow.internal.v0.enums.merchant_override_status': (): io.flow.internal.v0.enums.MerchantOverrideStatus => faker.helpers.arrayElement(['in_review', 'accepted', 'rejected']),
|
|
7539
7479
|
'io.flow.internal.v0.enums.mixed_bag_weight': (): io.flow.internal.v0.enums.MixedBagWeight => faker.helpers.arrayElement(['0', '1', '2']),
|
|
7540
7480
|
|
|
7541
7481
|
'io.flow.internal.v0.enums.nature_of_sale': (): io.flow.internal.v0.enums.NatureOfSale => faker.helpers.arrayElement([
|
|
@@ -7681,7 +7621,6 @@ const factories = {
|
|
|
7681
7621
|
'io.flow.internal.v0.enums.prompt_checkout_display_position': (): io.flow.internal.v0.enums.PromptCheckoutDisplayPosition => faker.helpers.arrayElement(['email', 'submission']),
|
|
7682
7622
|
'io.flow.internal.v0.enums.prompt_options': (): io.flow.internal.v0.enums.PromptOptions => faker.helpers.arrayElement(['notice_only', 'require_consent', 'consent_by_default']),
|
|
7683
7623
|
'io.flow.internal.v0.enums.prompt_target': (): io.flow.internal.v0.enums.PromptTarget => faker.helpers.arrayElement(['browse', 'checkout']),
|
|
7684
|
-
'io.flow.internal.v0.enums.quote_request_type': (): io.flow.internal.v0.enums.QuoteRequestType => faker.helpers.arrayElement(['generate', 'delete', 'update_currency_rate', 'update_country']),
|
|
7685
7624
|
|
|
7686
7625
|
'io.flow.internal.v0.enums.rate_level_key': (): io.flow.internal.v0.enums.RateLevelKey => faker.helpers.arrayElement([
|
|
7687
7626
|
'shopify_small_usa',
|
|
@@ -7703,6 +7642,8 @@ const factories = {
|
|
|
7703
7642
|
'suspicious_past_activity',
|
|
7704
7643
|
]),
|
|
7705
7644
|
|
|
7645
|
+
'io.flow.internal.v0.enums.report_file_status': (): io.flow.internal.v0.enums.ReportFileStatus => faker.helpers.arrayElement(['processing', 'failed', 'succeeded']),
|
|
7646
|
+
'io.flow.internal.v0.enums.report_file_type': (): io.flow.internal.v0.enums.ReportFileType => faker.helpers.arrayElement(['stripe_connect_report']),
|
|
7706
7647
|
'io.flow.internal.v0.enums.report_interval': (): io.flow.internal.v0.enums.ReportInterval => faker.helpers.arrayElement(['hourly', 'daily', 'weekly', 'monthly']),
|
|
7707
7648
|
'io.flow.internal.v0.enums.report_payment_type': (): io.flow.internal.v0.enums.ReportPaymentType => faker.helpers.arrayElement(['credit', 'debit']),
|
|
7708
7649
|
'io.flow.internal.v0.enums.report_status': (): io.flow.internal.v0.enums.ReportStatus => faker.helpers.arrayElement(['created', 'completed', 'completed_no_records', 'failed']),
|
|
@@ -7801,6 +7742,7 @@ const factories = {
|
|
|
7801
7742
|
|
|
7802
7743
|
'io.flow.internal.v0.enums.shopify_monitoring_monitor_review_status': (): io.flow.internal.v0.enums.ShopifyMonitoringMonitorReviewStatus => faker.helpers.arrayElement(['in_review', 'reviewed']),
|
|
7803
7744
|
'io.flow.internal.v0.enums.shopify_monitoring_tracking_field': (): io.flow.internal.v0.enums.ShopifyMonitoringTrackingField => faker.helpers.arrayElement(['tracking_number', 'carrier_service', 'tracking_url']),
|
|
7745
|
+
'io.flow.internal.v0.enums.shopify_plan_type': (): io.flow.internal.v0.enums.ShopifyPlanType => faker.helpers.arrayElement(['standard', 'shopify_plus']),
|
|
7804
7746
|
'io.flow.internal.v0.enums.shopify_promotion_behavior': (): io.flow.internal.v0.enums.ShopifyPromotionBehavior => faker.helpers.arrayElement(['disable_discount_codes']),
|
|
7805
7747
|
'io.flow.internal.v0.enums.shopify_promotion_offer_allocation_method': (): io.flow.internal.v0.enums.ShopifyPromotionOfferAllocationMethod => faker.helpers.arrayElement(['each', 'across']),
|
|
7806
7748
|
'io.flow.internal.v0.enums.shopify_promotion_order_entitlement_component': (): io.flow.internal.v0.enums.ShopifyPromotionOrderEntitlementComponent => faker.helpers.arrayElement(['subtotal', 'shipping', 'vat', 'duty']),
|
|
@@ -8141,29 +8083,6 @@ const factories = {
|
|
|
8141
8083
|
province_code: factories['io.flow.internal.v0.enums.address_configuration_setting_province_code'](),
|
|
8142
8084
|
}),
|
|
8143
8085
|
|
|
8144
|
-
'io.flow.internal.v0.models.adjusted_estimates': (): io.flow.internal.v0.models.AdjustedEstimates => ({
|
|
8145
|
-
id: factories.string(),
|
|
8146
|
-
organization_id: factories.string(),
|
|
8147
|
-
label_id: factories.string(),
|
|
8148
|
-
estimates: arrayOf(() => factories['io.flow.label.v0.models.shipping_label_hop_summary']()),
|
|
8149
|
-
}),
|
|
8150
|
-
|
|
8151
|
-
'io.flow.internal.v0.models.adjusted_estimates_deleted': (): io.flow.internal.v0.models.AdjustedEstimatesDeleted => ({
|
|
8152
|
-
discriminator: 'adjusted_estimates_deleted',
|
|
8153
|
-
event_id: factories.string(),
|
|
8154
|
-
timestamp: factories.date_time_iso_8601(),
|
|
8155
|
-
organization: factories.string(),
|
|
8156
|
-
id: factories.string(),
|
|
8157
|
-
}),
|
|
8158
|
-
|
|
8159
|
-
'io.flow.internal.v0.models.adjusted_estimates_upserted': (): io.flow.internal.v0.models.AdjustedEstimatesUpserted => ({
|
|
8160
|
-
discriminator: 'adjusted_estimates_upserted',
|
|
8161
|
-
event_id: factories.string(),
|
|
8162
|
-
timestamp: factories.date_time_iso_8601(),
|
|
8163
|
-
organization: factories.string(),
|
|
8164
|
-
adjusted_estimates: factories['io.flow.internal.v0.models.adjusted_estimates'](),
|
|
8165
|
-
}),
|
|
8166
|
-
|
|
8167
8086
|
'io.flow.internal.v0.models.adjustment_amount_fixed': (): io.flow.internal.v0.models.AdjustmentAmountFixed => ({
|
|
8168
8087
|
discriminator: 'fixed',
|
|
8169
8088
|
amount: factories['io.flow.common.v0.models.money'](),
|
|
@@ -9179,54 +9098,6 @@ const factories = {
|
|
|
9179
9098
|
status: factories.string(),
|
|
9180
9099
|
}),
|
|
9181
9100
|
|
|
9182
|
-
'io.flow.internal.v0.models.browser_bundle': (): io.flow.internal.v0.models.BrowserBundle => ({
|
|
9183
|
-
country_picker: factories['io.flow.internal.v0.models.country_picker_data'](),
|
|
9184
|
-
optins: arrayOf(() => factories['io.flow.internal.v0.models.optin_prompt']()),
|
|
9185
|
-
features: factories['io.flow.internal.v0.models.feature_value_result'](),
|
|
9186
|
-
payment_methods: factories['io.flow.internal.v0.models.browser_bundle_payment_methods'](),
|
|
9187
|
-
}),
|
|
9188
|
-
|
|
9189
|
-
'io.flow.internal.v0.models.browser_bundle_country_picker_form': (): io.flow.internal.v0.models.BrowserBundleCountryPickerForm => ({
|
|
9190
|
-
country: factories.string(),
|
|
9191
|
-
ip: factories.string(),
|
|
9192
|
-
}),
|
|
9193
|
-
|
|
9194
|
-
'io.flow.internal.v0.models.browser_bundle_error': (): io.flow.internal.v0.models.BrowserBundleError => ({
|
|
9195
|
-
code: factories['io.flow.internal.v0.enums.browser_bundle_error_code'](),
|
|
9196
|
-
messages: arrayOf(() => factories.string()),
|
|
9197
|
-
}),
|
|
9198
|
-
|
|
9199
|
-
'io.flow.internal.v0.models.browser_bundle_feature_form': (): io.flow.internal.v0.models.BrowserBundleFeatureForm => ({
|
|
9200
|
-
keys: arrayOf(() => factories.string()),
|
|
9201
|
-
context: factories['io.flow.internal.v0.models.feature_context_form'](),
|
|
9202
|
-
}),
|
|
9203
|
-
|
|
9204
|
-
'io.flow.internal.v0.models.browser_bundle_form': (): io.flow.internal.v0.models.BrowserBundleForm => ({
|
|
9205
|
-
optin: factories['io.flow.internal.v0.models.browser_bundle_optin_form'](),
|
|
9206
|
-
country_picker: factories['io.flow.internal.v0.models.browser_bundle_country_picker_form'](),
|
|
9207
|
-
feature: factories['io.flow.internal.v0.models.browser_bundle_feature_form'](),
|
|
9208
|
-
payment_method: factories['io.flow.internal.v0.models.browser_bundle_payment_method_form'](),
|
|
9209
|
-
}),
|
|
9210
|
-
|
|
9211
|
-
'io.flow.internal.v0.models.browser_bundle_optin_form': (): io.flow.internal.v0.models.BrowserBundleOptinForm => ({
|
|
9212
|
-
country: factories.string(),
|
|
9213
|
-
}),
|
|
9214
|
-
|
|
9215
|
-
'io.flow.internal.v0.models.browser_bundle_payment_method': (): io.flow.internal.v0.models.BrowserBundlePaymentMethod => ({
|
|
9216
|
-
id: factories.string(),
|
|
9217
|
-
}),
|
|
9218
|
-
|
|
9219
|
-
'io.flow.internal.v0.models.browser_bundle_payment_method_form': (): io.flow.internal.v0.models.BrowserBundlePaymentMethodForm => ({
|
|
9220
|
-
experience_key: factories.string(),
|
|
9221
|
-
country: factories.string(),
|
|
9222
|
-
}),
|
|
9223
|
-
|
|
9224
|
-
'io.flow.internal.v0.models.browser_bundle_payment_methods': (): io.flow.internal.v0.models.BrowserBundlePaymentMethods => ({
|
|
9225
|
-
displayed: arrayOf(
|
|
9226
|
-
() => factories['io.flow.internal.v0.models.browser_bundle_payment_method'](),
|
|
9227
|
-
),
|
|
9228
|
-
}),
|
|
9229
|
-
|
|
9230
9101
|
'io.flow.internal.v0.models.bulk_classification_action': (): io.flow.internal.v0.models.BulkClassificationAction => ({
|
|
9231
9102
|
discriminator: 'bulk',
|
|
9232
9103
|
|
|
@@ -10110,29 +9981,6 @@ const factories = {
|
|
|
10110
9981
|
prompt: factories['io.flow.internal.v0.enums.checkout_shipping_method_prompt_behavior'](),
|
|
10111
9982
|
}),
|
|
10112
9983
|
|
|
10113
|
-
'io.flow.internal.v0.models.checkout_bundle': (): io.flow.internal.v0.models.CheckoutBundle => ({
|
|
10114
|
-
cart: factories['io.flow.shopify.v0.models.shopify_cart'](),
|
|
10115
|
-
order: factories['io.flow.experience.v0.models.order'](),
|
|
10116
|
-
order_errors: arrayOf(() => factories['io.flow.experience.v0.models.order_error']()),
|
|
10117
|
-
checkout: factories['io.flow.internal.v0.models.checkout_content_summary'](),
|
|
10118
|
-
optins: arrayOf(() => factories['io.flow.internal.v0.models.optin_prompt']()),
|
|
10119
|
-
destinations: arrayOf(() => factories['io.flow.reference.v0.models.country']()),
|
|
10120
|
-
features: factories['io.flow.internal.v0.models.feature_value_result'](),
|
|
10121
|
-
provinces: arrayOf(() => factories['io.flow.reference.v0.models.province']()),
|
|
10122
|
-
checkout_items: arrayOf(() => factories['io.flow.experience.v0.models.checkout_item_content']()),
|
|
10123
|
-
metadata: factories['io.flow.internal.v0.models.checkout_bundle_metadata'](),
|
|
10124
|
-
configuration: factories['io.flow.internal.v0.models.checkout_configuration'](),
|
|
10125
|
-
address_configurations: arrayOf(() => factories['io.flow.experience.v0.models.address_configuration']()),
|
|
10126
|
-
customer: factories['io.flow.customer.v0.models.customer'](),
|
|
10127
|
-
address_book: factories['io.flow.customer.v0.models.customer_address_book'](),
|
|
10128
|
-
payment_sources: arrayOf(() => factories['io.flow.payment.v0.unions.payment_source']()),
|
|
10129
|
-
customer_bundle: factories['io.flow.customer.v0.models.customer_bundle'](),
|
|
10130
|
-
}),
|
|
10131
|
-
|
|
10132
|
-
'io.flow.internal.v0.models.checkout_bundle_metadata': (): io.flow.internal.v0.models.CheckoutBundleMetadata => ({
|
|
10133
|
-
organization: factories['io.flow.common.v0.models.organization_summary'](),
|
|
10134
|
-
}),
|
|
10135
|
-
|
|
10136
9984
|
'io.flow.internal.v0.models.checkout_configuration': (): io.flow.internal.v0.models.CheckoutConfiguration => ({
|
|
10137
9985
|
id: factories.string(),
|
|
10138
9986
|
behavior: factories['io.flow.internal.v0.models.checkout_behavior'](),
|
|
@@ -10196,49 +10044,10 @@ const factories = {
|
|
|
10196
10044
|
redirect: factories['io.flow.internal.v0.models.checkout_redirect'](),
|
|
10197
10045
|
}),
|
|
10198
10046
|
|
|
10199
|
-
'io.flow.internal.v0.models.checkout_finalize_order_form': (): io.flow.internal.v0.models.CheckoutFinalizeOrderForm => ({
|
|
10200
|
-
expected_order_summary: factories['io.flow.internal.v0.models.expected_order_summary'](),
|
|
10201
|
-
order_put_form: factories['io.flow.experience.v0.models.order_put_form'](),
|
|
10202
|
-
}),
|
|
10203
|
-
|
|
10204
10047
|
'io.flow.internal.v0.models.checkout_marketing_content': (): io.flow.internal.v0.models.CheckoutMarketingContent => ({
|
|
10205
10048
|
optins: arrayOf(() => factories['io.flow.internal.v0.models.checkbox']()),
|
|
10206
10049
|
}),
|
|
10207
10050
|
|
|
10208
|
-
'io.flow.internal.v0.models.checkout_order_form': (): io.flow.internal.v0.models.CheckoutOrderForm => ({
|
|
10209
|
-
discriminator: 'order',
|
|
10210
|
-
organization: factories.string(),
|
|
10211
|
-
order: factories['io.flow.experience.v0.models.order_form'](),
|
|
10212
|
-
customer: factories['io.flow.customer.v0.models.customer_form'](),
|
|
10213
|
-
address_book: factories['io.flow.customer.v0.models.customer_address_book_form'](),
|
|
10214
|
-
payment_sources: arrayOf(() => factories['io.flow.payment.v0.unions.payment_source_form']()),
|
|
10215
|
-
urls: factories['io.flow.checkout.v0.models.checkout_urls_form'](),
|
|
10216
|
-
|
|
10217
|
-
identifiers: arrayOf(
|
|
10218
|
-
() => factories['io.flow.experience.v0.models.order_submission_identifier_form'](),
|
|
10219
|
-
),
|
|
10220
|
-
|
|
10221
|
-
feature_keys: arrayOf(() => factories.string()),
|
|
10222
|
-
order_parameters: factories['io.flow.internal.v0.models.order_parameters'](),
|
|
10223
|
-
}),
|
|
10224
|
-
|
|
10225
|
-
'io.flow.internal.v0.models.checkout_order_number_form': (): io.flow.internal.v0.models.CheckoutOrderNumberForm => ({
|
|
10226
|
-
discriminator: 'order_number',
|
|
10227
|
-
organization: factories.string(),
|
|
10228
|
-
order_number: factories.string(),
|
|
10229
|
-
customer: factories['io.flow.customer.v0.models.customer_form'](),
|
|
10230
|
-
address_book: factories['io.flow.customer.v0.models.customer_address_book_form'](),
|
|
10231
|
-
payment_sources: arrayOf(() => factories['io.flow.payment.v0.unions.payment_source_form']()),
|
|
10232
|
-
urls: factories['io.flow.checkout.v0.models.checkout_urls_form'](),
|
|
10233
|
-
|
|
10234
|
-
identifiers: arrayOf(
|
|
10235
|
-
() => factories['io.flow.experience.v0.models.order_submission_identifier_form'](),
|
|
10236
|
-
),
|
|
10237
|
-
|
|
10238
|
-
feature_keys: arrayOf(() => factories.string()),
|
|
10239
|
-
order_parameters: factories['io.flow.internal.v0.models.order_parameters'](),
|
|
10240
|
-
}),
|
|
10241
|
-
|
|
10242
10051
|
'io.flow.internal.v0.models.checkout_payment': (): io.flow.internal.v0.models.CheckoutPayment => ({
|
|
10243
10052
|
authorizations: arrayOf(() => factories['io.flow.payment.v0.unions.authorization']()),
|
|
10244
10053
|
sources: arrayOf(() => factories['io.flow.payment.v0.unions.payment_source']()),
|
|
@@ -10263,18 +10072,6 @@ const factories = {
|
|
|
10263
10072
|
body: factories.string(),
|
|
10264
10073
|
}),
|
|
10265
10074
|
|
|
10266
|
-
'io.flow.internal.v0.models.checkout_reference_form': (): io.flow.internal.v0.models.CheckoutReferenceForm => ({
|
|
10267
|
-
order_number: factories.string(),
|
|
10268
|
-
order_form: factories['io.flow.experience.v0.models.order_put_form'](),
|
|
10269
|
-
order_geo: factories['io.flow.experience.v0.models.order_geo'](),
|
|
10270
|
-
session_id: factories.string(),
|
|
10271
|
-
urls: factories['io.flow.checkout.v0.models.checkout_urls_form'](),
|
|
10272
|
-
|
|
10273
|
-
identifiers: arrayOf(
|
|
10274
|
-
() => factories['io.flow.experience.v0.models.order_submission_identifier_form'](),
|
|
10275
|
-
),
|
|
10276
|
-
}),
|
|
10277
|
-
|
|
10278
10075
|
'io.flow.internal.v0.models.checkout_settings': (): io.flow.internal.v0.models.CheckoutSettings => ({
|
|
10279
10076
|
session_persistence_timeout: factories['io.flow.common.v0.models.duration'](),
|
|
10280
10077
|
session_persistence_attribute_keys: arrayOf(() => factories.string()),
|
|
@@ -10283,35 +10080,6 @@ const factories = {
|
|
|
10283
10080
|
assets: arrayOf(() => factories['io.flow.internal.v0.models.checkout_asset']()),
|
|
10284
10081
|
}),
|
|
10285
10082
|
|
|
10286
|
-
'io.flow.internal.v0.models.checkout_source_order_form': (): io.flow.internal.v0.models.CheckoutSourceOrderForm => ({
|
|
10287
|
-
source_order_number: factories.string(),
|
|
10288
|
-
feature_q: factories.string(),
|
|
10289
|
-
}),
|
|
10290
|
-
|
|
10291
|
-
'io.flow.internal.v0.models.checkout_submission': (): io.flow.internal.v0.models.CheckoutSubmission => ({
|
|
10292
|
-
builder: factories['io.flow.experience.v0.models.order_builder'](),
|
|
10293
|
-
action: factories['io.flow.payment.v0.unions.authorization_result_action'](),
|
|
10294
|
-
}),
|
|
10295
|
-
|
|
10296
|
-
'io.flow.internal.v0.models.checkout_submission_form': (): io.flow.internal.v0.models.CheckoutSubmissionForm => ({
|
|
10297
|
-
authorization_form: factories['io.flow.payment.v0.unions.authorization_form'](),
|
|
10298
|
-
expected_order_summary: factories['io.flow.internal.v0.models.expected_order_summary'](),
|
|
10299
|
-
feature_keys: arrayOf(() => factories.string()),
|
|
10300
|
-
}),
|
|
10301
|
-
|
|
10302
|
-
'io.flow.internal.v0.models.checkout_submit_order_bundle': (): io.flow.internal.v0.models.CheckoutSubmitOrderBundle => ({
|
|
10303
|
-
discriminator: 'checkout_submit_order_bundle',
|
|
10304
|
-
order: factories['io.flow.experience.v0.models.order'](),
|
|
10305
|
-
redirect: factories['io.flow.payment.v0.unions.authorization_result_action'](),
|
|
10306
|
-
errors: arrayOf(() => factories['io.flow.experience.v0.models.order_error']()),
|
|
10307
|
-
}),
|
|
10308
|
-
|
|
10309
|
-
'io.flow.internal.v0.models.checkout_submit_order_form': (): io.flow.internal.v0.models.CheckoutSubmitOrderForm => ({
|
|
10310
|
-
discriminator: 'checkout_submit_order_form',
|
|
10311
|
-
authorization_form: factories['io.flow.payment.v0.unions.authorization_form'](),
|
|
10312
|
-
expected_order_summary: factories['io.flow.internal.v0.models.expected_order_summary'](),
|
|
10313
|
-
}),
|
|
10314
|
-
|
|
10315
10083
|
'io.flow.internal.v0.models.checkout_url': (): io.flow.internal.v0.models.CheckoutUrl => ({
|
|
10316
10084
|
url: factories.string(),
|
|
10317
10085
|
type: factories['io.flow.internal.v0.enums.checkout_url_type'](),
|
|
@@ -11726,10 +11494,6 @@ const factories = {
|
|
|
11726
11494
|
exclusion_rule: factories['io.flow.catalog.exclusion.v0.models.exclusion_rule'](),
|
|
11727
11495
|
}),
|
|
11728
11496
|
|
|
11729
|
-
'io.flow.internal.v0.models.expected_order_summary': (): io.flow.internal.v0.models.ExpectedOrderSummary => ({
|
|
11730
|
-
total: factories['io.flow.common.v0.models.money'](),
|
|
11731
|
-
}),
|
|
11732
|
-
|
|
11733
11497
|
'io.flow.internal.v0.models.experience_export_request': (): io.flow.internal.v0.models.ExperienceExportRequest => ({
|
|
11734
11498
|
discriminator: 'experience_export_request',
|
|
11735
11499
|
event_id: factories.string(),
|
|
@@ -12002,29 +11766,6 @@ const factories = {
|
|
|
12002
11766
|
negative_balance: factories['io.flow.internal.v0.models.fee'](),
|
|
12003
11767
|
}),
|
|
12004
11768
|
|
|
12005
|
-
'io.flow.internal.v0.models.final_estimate': (): io.flow.internal.v0.models.FinalEstimate => ({
|
|
12006
|
-
id: factories.string(),
|
|
12007
|
-
organization_id: factories.string(),
|
|
12008
|
-
label_id: factories.string(),
|
|
12009
|
-
estimate: factories['io.flow.label.v0.models.shipping_label_hop_summary'](),
|
|
12010
|
-
}),
|
|
12011
|
-
|
|
12012
|
-
'io.flow.internal.v0.models.final_estimate_deleted': (): io.flow.internal.v0.models.FinalEstimateDeleted => ({
|
|
12013
|
-
discriminator: 'final_estimate_deleted',
|
|
12014
|
-
event_id: factories.string(),
|
|
12015
|
-
timestamp: factories.date_time_iso_8601(),
|
|
12016
|
-
organization: factories.string(),
|
|
12017
|
-
id: factories.string(),
|
|
12018
|
-
}),
|
|
12019
|
-
|
|
12020
|
-
'io.flow.internal.v0.models.final_estimate_upserted': (): io.flow.internal.v0.models.FinalEstimateUpserted => ({
|
|
12021
|
-
discriminator: 'final_estimate_upserted',
|
|
12022
|
-
event_id: factories.string(),
|
|
12023
|
-
timestamp: factories.date_time_iso_8601(),
|
|
12024
|
-
organization: factories.string(),
|
|
12025
|
-
final_estimate: factories['io.flow.internal.v0.models.final_estimate'](),
|
|
12026
|
-
}),
|
|
12027
|
-
|
|
12028
11769
|
'io.flow.internal.v0.models.finance_bank_account': (): io.flow.internal.v0.models.FinanceBankAccount => ({
|
|
12029
11770
|
id: factories.string(),
|
|
12030
11771
|
accounts: arrayOf(() => factories['io.flow.internal.v0.models.account_summary']()),
|
|
@@ -12573,22 +12314,6 @@ const factories = {
|
|
|
12573
12314
|
vat_registration_number: factories.string(),
|
|
12574
12315
|
}),
|
|
12575
12316
|
|
|
12576
|
-
'io.flow.internal.v0.models.fulfillment_cancel': (): io.flow.internal.v0.models.FulfillmentCancel => ({
|
|
12577
|
-
discriminator: 'fulfillment_cancel',
|
|
12578
|
-
event_id: factories.string(),
|
|
12579
|
-
timestamp: factories.date_time_iso_8601(),
|
|
12580
|
-
organization: factories.string(),
|
|
12581
|
-
order_number: factories.string(),
|
|
12582
|
-
order: factories['io.flow.experience.v0.models.order'](),
|
|
12583
|
-
fulfillments: arrayOf(() => factories['io.flow.order.management.v0.models.fulfillment']()),
|
|
12584
|
-
change_source: factories['io.flow.order.management.v0.enums.order_change_source'](),
|
|
12585
|
-
reason: factories['io.flow.order.management.v0.enums.cancel_reason'](),
|
|
12586
|
-
|
|
12587
|
-
cancelled_lines: arrayOf(
|
|
12588
|
-
() => factories['io.flow.order.management.v0.models.fulfillment_line_cancel_form'](),
|
|
12589
|
-
),
|
|
12590
|
-
}),
|
|
12591
|
-
|
|
12592
12317
|
'io.flow.internal.v0.models.fulfillment_carrier': (): io.flow.internal.v0.models.FulfillmentCarrier => ({
|
|
12593
12318
|
id: factories.string(),
|
|
12594
12319
|
service_id: factories.string(),
|
|
@@ -12626,11 +12351,6 @@ const factories = {
|
|
|
12626
12351
|
fulfillment_fallbacks: factories['io.flow.internal.v0.models.fulfillment_fallbacks'](),
|
|
12627
12352
|
}),
|
|
12628
12353
|
|
|
12629
|
-
'io.flow.internal.v0.models.fulfillment_internal_experience_reference': (): io.flow.internal.v0.models.FulfillmentInternalExperienceReference => ({
|
|
12630
|
-
id: factories.string(),
|
|
12631
|
-
key: factories.string(),
|
|
12632
|
-
}),
|
|
12633
|
-
|
|
12634
12354
|
'io.flow.internal.v0.models.fulfillment_origin': (): io.flow.internal.v0.models.FulfillmentOrigin => ({
|
|
12635
12355
|
country: factories.string(),
|
|
12636
12356
|
province_code: factories.string(),
|
|
@@ -12680,14 +12400,6 @@ const factories = {
|
|
|
12680
12400
|
id: factories.string(),
|
|
12681
12401
|
}),
|
|
12682
12402
|
|
|
12683
|
-
'io.flow.internal.v0.models.fulfillment_shipment_tracking': (): io.flow.internal.v0.models.FulfillmentShipmentTracking => ({
|
|
12684
|
-
fulfillment_key: factories.string(),
|
|
12685
|
-
flow_tracking_number: factories.string(),
|
|
12686
|
-
carrier_tracking_number: factories.string(),
|
|
12687
|
-
carrier_tracking_url: factories.string(),
|
|
12688
|
-
items: arrayOf(() => factories['io.flow.order.management.v0.models.fulfillment_item']()),
|
|
12689
|
-
}),
|
|
12690
|
-
|
|
12691
12403
|
'io.flow.internal.v0.models.fulfillment_shopper_breakdown': (): io.flow.internal.v0.models.FulfillmentShopperBreakdown => ({
|
|
12692
12404
|
shipping: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
|
|
12693
12405
|
fees: factories['io.flow.internal.v0.models.reporting_shopper_fees'](),
|
|
@@ -13132,10 +12844,6 @@ const factories = {
|
|
|
13132
12844
|
network_details: factories['io.flow.payment.v0.models.transaction_network_details_card'](),
|
|
13133
12845
|
}),
|
|
13134
12846
|
|
|
13135
|
-
'io.flow.internal.v0.models.invalid_checkout_data': (): io.flow.internal.v0.models.InvalidCheckoutData => ({
|
|
13136
|
-
order: factories['io.flow.experience.v0.models.order_put_form'](),
|
|
13137
|
-
}),
|
|
13138
|
-
|
|
13139
12847
|
'io.flow.internal.v0.models.invariant': (): io.flow.internal.v0.models.Invariant => ({
|
|
13140
12848
|
name: factories.string(),
|
|
13141
12849
|
count: factories.long(),
|
|
@@ -13238,18 +12946,6 @@ const factories = {
|
|
|
13238
12946
|
model_id: factories.string(),
|
|
13239
12947
|
}),
|
|
13240
12948
|
|
|
13241
|
-
'io.flow.internal.v0.models.item_classification_created': (): io.flow.internal.v0.models.ItemClassificationCreated => ({
|
|
13242
|
-
discriminator: 'item_classification_created',
|
|
13243
|
-
event_id: factories.string(),
|
|
13244
|
-
timestamp: factories.date_time_iso_8601(),
|
|
13245
|
-
organization: factories.string(),
|
|
13246
|
-
item_number: factories.string(),
|
|
13247
|
-
model_id: factories.string(),
|
|
13248
|
-
labels_prediction: factories['io.flow.internal.v0.models.labels_prediction'](),
|
|
13249
|
-
action: factories['io.flow.internal.v0.enums.suggestion_action'](),
|
|
13250
|
-
prediction_score: factories.decimal(),
|
|
13251
|
-
}),
|
|
13252
|
-
|
|
13253
12949
|
'io.flow.internal.v0.models.item_classification_form': (): io.flow.internal.v0.models.ItemClassificationForm => ({
|
|
13254
12950
|
organization: factories.string(),
|
|
13255
12951
|
uid: factories.string(),
|
|
@@ -13457,18 +13153,6 @@ const factories = {
|
|
|
13457
13153
|
values: arrayOf(() => factories.string()),
|
|
13458
13154
|
}),
|
|
13459
13155
|
|
|
13460
|
-
'io.flow.internal.v0.models.items_shipped': (): io.flow.internal.v0.models.ItemsShipped => ({
|
|
13461
|
-
discriminator: 'items_shipped',
|
|
13462
|
-
event_id: factories.string(),
|
|
13463
|
-
timestamp: factories.date_time_iso_8601(),
|
|
13464
|
-
organization: factories.string(),
|
|
13465
|
-
order_number: factories.string(),
|
|
13466
|
-
order: factories['io.flow.experience.v0.models.order'](),
|
|
13467
|
-
fulfillments: arrayOf(() => factories['io.flow.order.management.v0.models.fulfillment']()),
|
|
13468
|
-
flow_tracking_number: factories.string(),
|
|
13469
|
-
shipped_item_values: arrayOf(() => factories['io.flow.internal.v0.models.shipped_item_value']()),
|
|
13470
|
-
}),
|
|
13471
|
-
|
|
13472
13156
|
'io.flow.internal.v0.models.jean_demo_item': (): io.flow.internal.v0.models.JeanDemoItem => ({
|
|
13473
13157
|
id: factories.string(),
|
|
13474
13158
|
name: factories.string(),
|
|
@@ -13539,14 +13223,31 @@ const factories = {
|
|
|
13539
13223
|
service_id: factories.string(),
|
|
13540
13224
|
carrier_tracking_number: factories.string(),
|
|
13541
13225
|
flow_tracking_number: factories.string(),
|
|
13226
|
+
label_id: factories.string(),
|
|
13542
13227
|
errors: arrayOf(() => factories.string()),
|
|
13543
13228
|
}),
|
|
13544
13229
|
|
|
13230
|
+
'io.flow.internal.v0.models.label_creation_job_deleted': (): io.flow.internal.v0.models.LabelCreationJobDeleted => ({
|
|
13231
|
+
discriminator: 'label_creation_job_deleted',
|
|
13232
|
+
event_id: factories.string(),
|
|
13233
|
+
timestamp: factories.date_time_iso_8601(),
|
|
13234
|
+
organization: factories.string(),
|
|
13235
|
+
id: factories.string(),
|
|
13236
|
+
}),
|
|
13237
|
+
|
|
13545
13238
|
'io.flow.internal.v0.models.label_creation_job_summary': (): io.flow.internal.v0.models.LabelCreationJobSummary => ({
|
|
13546
13239
|
reference_id: factories.string(),
|
|
13547
13240
|
status: factories['io.flow.internal.v0.enums.label_creation_status'](),
|
|
13548
13241
|
}),
|
|
13549
13242
|
|
|
13243
|
+
'io.flow.internal.v0.models.label_creation_job_upserted': (): io.flow.internal.v0.models.LabelCreationJobUpserted => ({
|
|
13244
|
+
discriminator: 'label_creation_job_upserted',
|
|
13245
|
+
event_id: factories.string(),
|
|
13246
|
+
timestamp: factories.date_time_iso_8601(),
|
|
13247
|
+
organization: factories.string(),
|
|
13248
|
+
label_creation_job: factories['io.flow.internal.v0.models.label_creation_job'](),
|
|
13249
|
+
}),
|
|
13250
|
+
|
|
13550
13251
|
'io.flow.internal.v0.models.label_creation_request_form': (): io.flow.internal.v0.models.LabelCreationRequestForm => ({
|
|
13551
13252
|
organization: factories.string(),
|
|
13552
13253
|
shipping_label_form: factories['io.flow.label.v0.unions.shipping_label_form'](),
|
|
@@ -13669,6 +13370,7 @@ const factories = {
|
|
|
13669
13370
|
destination_country: factories.string(),
|
|
13670
13371
|
reference_id: factories.string(),
|
|
13671
13372
|
logistics_integration_provider: factories.string(),
|
|
13373
|
+
tax_lrp_liabilities: arrayOf(() => factories['io.flow.internal.v0.models.liability']()),
|
|
13672
13374
|
}),
|
|
13673
13375
|
|
|
13674
13376
|
'io.flow.internal.v0.models.label_summary': (): io.flow.internal.v0.models.LabelSummary => ({
|
|
@@ -14093,6 +13795,7 @@ const factories = {
|
|
|
14093
13795
|
paid_at: factories.date_time_iso_8601(),
|
|
14094
13796
|
posted_at: factories.date_time_iso_8601(),
|
|
14095
13797
|
statement: factories['io.flow.internal.v0.models.billing_statement_reference'](),
|
|
13798
|
+
channel_statement: factories['io.flow.internal.v0.models.billing_statement_reference'](),
|
|
14096
13799
|
created_at: factories.date_time_iso_8601(),
|
|
14097
13800
|
original_at: factories.date_time_iso_8601(),
|
|
14098
13801
|
}),
|
|
@@ -14303,6 +14006,19 @@ const factories = {
|
|
|
14303
14006
|
currency: factories.string(),
|
|
14304
14007
|
}),
|
|
14305
14008
|
|
|
14009
|
+
'io.flow.internal.v0.models.merchant_override': (): io.flow.internal.v0.models.MerchantOverride => ({
|
|
14010
|
+
id: factories.string(),
|
|
14011
|
+
organization_id: factories.string(),
|
|
14012
|
+
item_number: factories.string(),
|
|
14013
|
+
status: factories['io.flow.internal.v0.enums.merchant_override_status'](),
|
|
14014
|
+
hs6_code: factories.string(),
|
|
14015
|
+
merchant_hs6_code: factories.string(),
|
|
14016
|
+
}),
|
|
14017
|
+
|
|
14018
|
+
'io.flow.internal.v0.models.merchant_override_decision_form': (): io.flow.internal.v0.models.MerchantOverrideDecisionForm => ({
|
|
14019
|
+
status: factories['io.flow.internal.v0.enums.merchant_override_status'](),
|
|
14020
|
+
}),
|
|
14021
|
+
|
|
14306
14022
|
'io.flow.internal.v0.models.merchant_search_result': (): io.flow.internal.v0.models.MerchantSearchResult => ({
|
|
14307
14023
|
organization_id: factories.string(),
|
|
14308
14024
|
shop_name: factories.string(),
|
|
@@ -14528,14 +14244,6 @@ const factories = {
|
|
|
14528
14244
|
to: factories.string(),
|
|
14529
14245
|
}),
|
|
14530
14246
|
|
|
14531
|
-
'io.flow.internal.v0.models.optin_prompt_deleted': (): io.flow.internal.v0.models.OptinPromptDeleted => ({
|
|
14532
|
-
discriminator: 'optin_prompt_deleted',
|
|
14533
|
-
event_id: factories.string(),
|
|
14534
|
-
timestamp: factories.date_time_iso_8601(),
|
|
14535
|
-
id: factories.string(),
|
|
14536
|
-
organization: factories.string(),
|
|
14537
|
-
}),
|
|
14538
|
-
|
|
14539
14247
|
'io.flow.internal.v0.models.optin_prompt_form': (): io.flow.internal.v0.models.OptinPromptForm => ({
|
|
14540
14248
|
optin_attribute_key: factories.string(),
|
|
14541
14249
|
region: factories.string(),
|
|
@@ -14546,15 +14254,6 @@ const factories = {
|
|
|
14546
14254
|
display: factories['io.flow.internal.v0.unions.optin_prompt_display'](),
|
|
14547
14255
|
}),
|
|
14548
14256
|
|
|
14549
|
-
'io.flow.internal.v0.models.optin_prompt_upserted': (): io.flow.internal.v0.models.OptinPromptUpserted => ({
|
|
14550
|
-
discriminator: 'optin_prompt_upserted',
|
|
14551
|
-
event_id: factories.string(),
|
|
14552
|
-
timestamp: factories.date_time_iso_8601(),
|
|
14553
|
-
id: factories.string(),
|
|
14554
|
-
organization: factories.string(),
|
|
14555
|
-
optin_prompt: factories['io.flow.internal.v0.models.optin_prompt'](),
|
|
14556
|
-
}),
|
|
14557
|
-
|
|
14558
14257
|
'io.flow.internal.v0.models.order_actionability': (): io.flow.internal.v0.models.OrderActionability => ({
|
|
14559
14258
|
action: arrayOf(() => factories['io.flow.internal.v0.enums.order_action']()),
|
|
14560
14259
|
lines: arrayOf(() => factories['io.flow.internal.v0.models.line_action_quantities']()),
|
|
@@ -14704,28 +14403,10 @@ const factories = {
|
|
|
14704
14403
|
note: factories.string(),
|
|
14705
14404
|
}),
|
|
14706
14405
|
|
|
14707
|
-
'io.flow.internal.v0.models.order_parameters': (): io.flow.internal.v0.models.OrderParameters => ({
|
|
14708
|
-
experience: factories.string(),
|
|
14709
|
-
country: factories.string(),
|
|
14710
|
-
ip: factories.string(),
|
|
14711
|
-
currency: factories.string(),
|
|
14712
|
-
language: factories.string(),
|
|
14713
|
-
}),
|
|
14714
|
-
|
|
14715
14406
|
'io.flow.internal.v0.models.order_payment_authorization': (): io.flow.internal.v0.models.OrderPaymentAuthorization => ({
|
|
14716
14407
|
placeholder: factories.string(),
|
|
14717
14408
|
}),
|
|
14718
14409
|
|
|
14719
|
-
'io.flow.internal.v0.models.order_placed': (): io.flow.internal.v0.models.OrderPlaced => ({
|
|
14720
|
-
discriminator: 'order_placed',
|
|
14721
|
-
event_id: factories.string(),
|
|
14722
|
-
timestamp: factories.date_time_iso_8601(),
|
|
14723
|
-
organization: factories.string(),
|
|
14724
|
-
order_number: factories.string(),
|
|
14725
|
-
order: factories['io.flow.experience.v0.models.order'](),
|
|
14726
|
-
allocation: factories['io.flow.experience.v0.models.allocation_v2'](),
|
|
14727
|
-
}),
|
|
14728
|
-
|
|
14729
14410
|
'io.flow.internal.v0.models.order_rates_data_v3': (): io.flow.internal.v0.models.OrderRatesDataV3 => ({
|
|
14730
14411
|
organization: factories.string(),
|
|
14731
14412
|
order_id: factories.string(),
|
|
@@ -14784,20 +14465,6 @@ const factories = {
|
|
|
14784
14465
|
to_service_id: factories.string(),
|
|
14785
14466
|
}),
|
|
14786
14467
|
|
|
14787
|
-
'io.flow.internal.v0.models.order_shipped': (): io.flow.internal.v0.models.OrderShipped => ({
|
|
14788
|
-
discriminator: 'order_shipped',
|
|
14789
|
-
event_id: factories.string(),
|
|
14790
|
-
timestamp: factories.date_time_iso_8601(),
|
|
14791
|
-
organization: factories.string(),
|
|
14792
|
-
order_number: factories.string(),
|
|
14793
|
-
order: factories['io.flow.experience.v0.models.order'](),
|
|
14794
|
-
fulfillments: arrayOf(() => factories['io.flow.order.management.v0.models.fulfillment']()),
|
|
14795
|
-
|
|
14796
|
-
shipment_trackings: arrayOf(
|
|
14797
|
-
() => factories['io.flow.internal.v0.models.fulfillment_shipment_tracking'](),
|
|
14798
|
-
),
|
|
14799
|
-
}),
|
|
14800
|
-
|
|
14801
14468
|
'io.flow.internal.v0.models.order_submission_form': (): io.flow.internal.v0.models.OrderSubmissionForm => ({
|
|
14802
14469
|
authorization: factories['io.flow.payment.v0.unions.authorization_form'](),
|
|
14803
14470
|
}),
|
|
@@ -16044,23 +15711,6 @@ const factories = {
|
|
|
16044
15711
|
item: factories.string(),
|
|
16045
15712
|
}),
|
|
16046
15713
|
|
|
16047
|
-
'io.flow.internal.v0.models.pregenerated_quote': (): io.flow.internal.v0.models.PregeneratedQuote => ({
|
|
16048
|
-
id: factories.string(),
|
|
16049
|
-
experience: factories['io.flow.internal.v0.models.fulfillment_internal_experience_reference'](),
|
|
16050
|
-
destination_country: factories.string(),
|
|
16051
|
-
item: factories['io.flow.common.v0.models.item_reference'](),
|
|
16052
|
-
quote: factories['io.flow.fulfillment.v0.models.quote'](),
|
|
16053
|
-
errors: arrayOf(() => factories.string()),
|
|
16054
|
-
}),
|
|
16055
|
-
|
|
16056
|
-
'io.flow.internal.v0.models.pregenerated_request_event': (): io.flow.internal.v0.models.PregeneratedRequestEvent => ({
|
|
16057
|
-
discriminator: 'pregenerated_request_event',
|
|
16058
|
-
event_id: factories.string(),
|
|
16059
|
-
timestamp: factories.date_time_iso_8601(),
|
|
16060
|
-
organization: factories.string(),
|
|
16061
|
-
quote_request: factories['io.flow.internal.v0.models.quote_request'](),
|
|
16062
|
-
}),
|
|
16063
|
-
|
|
16064
15714
|
'io.flow.internal.v0.models.prioritized_center_reference': (): io.flow.internal.v0.models.PrioritizedCenterReference => ({
|
|
16065
15715
|
center_key: factories.string(),
|
|
16066
15716
|
position: factories.long(),
|
|
@@ -16370,16 +16020,6 @@ const factories = {
|
|
|
16370
16020
|
id: factories.string(),
|
|
16371
16021
|
}),
|
|
16372
16022
|
|
|
16373
|
-
'io.flow.internal.v0.models.quote_request': (): io.flow.internal.v0.models.QuoteRequest => ({
|
|
16374
|
-
id: factories.string(),
|
|
16375
|
-
request_type: factories['io.flow.internal.v0.enums.quote_request_type'](),
|
|
16376
|
-
experience_keys: arrayOf(() => factories.string()),
|
|
16377
|
-
item_numbers: arrayOf(() => factories.string()),
|
|
16378
|
-
rates: arrayOf(() => factories['io.flow.internal.v0.models.currency_internal_rate']()),
|
|
16379
|
-
countries: arrayOf(() => factories['io.flow.reference.v0.models.country']()),
|
|
16380
|
-
reason: factories.string(),
|
|
16381
|
-
}),
|
|
16382
|
-
|
|
16383
16023
|
'io.flow.internal.v0.models.quote_upserted': (): io.flow.internal.v0.models.QuoteUpserted => ({
|
|
16384
16024
|
discriminator: 'quote_upserted',
|
|
16385
16025
|
event_id: factories.string(),
|
|
@@ -16620,40 +16260,6 @@ const factories = {
|
|
|
16620
16260
|
number: factories.string(),
|
|
16621
16261
|
}),
|
|
16622
16262
|
|
|
16623
|
-
'io.flow.internal.v0.models.ratecard_lane_aggregate': (): io.flow.internal.v0.models.RatecardLaneAggregate => ({
|
|
16624
|
-
id: factories.string(),
|
|
16625
|
-
organization_id: factories.string(),
|
|
16626
|
-
origin: factories['io.flow.common.v0.models.zone'](),
|
|
16627
|
-
destination: factories['io.flow.common.v0.models.zone'](),
|
|
16628
|
-
currency: factories.string(),
|
|
16629
|
-
delivered_duty: factories['io.flow.common.v0.enums.delivered_duty'](),
|
|
16630
|
-
shipment_window: factories['io.flow.ratecard.v0.models.shipment_window'](),
|
|
16631
|
-
dim_factor: factories.double(),
|
|
16632
|
-
service: factories['io.flow.ratecard.v0.models.ratecard_service_summary'](),
|
|
16633
|
-
rounding: factories['io.flow.common.v0.models.rounding'](),
|
|
16634
|
-
weight_unit: factories['io.flow.common.v0.enums.unit_of_measurement'](),
|
|
16635
|
-
distance_unit: factories['io.flow.common.v0.enums.unit_of_measurement'](),
|
|
16636
|
-
rates_with_fees: arrayOf(() => factories['io.flow.internal.v0.models.rate_with_fees']()),
|
|
16637
|
-
ratecard: factories['io.flow.ratecard.v0.models.ratecard_reference'](),
|
|
16638
|
-
ratecard_owner: factories['io.flow.fulfillment.v0.enums.ratecard_owner'](),
|
|
16639
|
-
}),
|
|
16640
|
-
|
|
16641
|
-
'io.flow.internal.v0.models.ratecard_lane_aggregate_deleted': (): io.flow.internal.v0.models.RatecardLaneAggregateDeleted => ({
|
|
16642
|
-
discriminator: 'ratecard_lane_aggregate_deleted',
|
|
16643
|
-
event_id: factories.string(),
|
|
16644
|
-
timestamp: factories.date_time_iso_8601(),
|
|
16645
|
-
organization: factories.string(),
|
|
16646
|
-
ratecard_aggregate: factories['io.flow.internal.v0.models.ratecard_lane_aggregate'](),
|
|
16647
|
-
}),
|
|
16648
|
-
|
|
16649
|
-
'io.flow.internal.v0.models.ratecard_lane_aggregate_upserted': (): io.flow.internal.v0.models.RatecardLaneAggregateUpserted => ({
|
|
16650
|
-
discriminator: 'ratecard_lane_aggregate_upserted',
|
|
16651
|
-
event_id: factories.string(),
|
|
16652
|
-
timestamp: factories.date_time_iso_8601(),
|
|
16653
|
-
organization: factories.string(),
|
|
16654
|
-
ratecard_aggregate: factories['io.flow.internal.v0.models.ratecard_lane_aggregate'](),
|
|
16655
|
-
}),
|
|
16656
|
-
|
|
16657
16263
|
'io.flow.internal.v0.models.ratecard_lanes_import_request': (): io.flow.internal.v0.models.RatecardLanesImportRequest => ({
|
|
16658
16264
|
discriminator: 'ratecard_lanes_import_request',
|
|
16659
16265
|
event_id: factories.string(),
|
|
@@ -16778,20 +16384,6 @@ const factories = {
|
|
|
16778
16384
|
summaries: arrayOf(() => factories['io.flow.internal.v0.models.rate_name_summary']()),
|
|
16779
16385
|
}),
|
|
16780
16386
|
|
|
16781
|
-
'io.flow.internal.v0.models.ready_to_fulfill': (): io.flow.internal.v0.models.ReadyToFulfill => ({
|
|
16782
|
-
discriminator: 'ready_to_fulfill',
|
|
16783
|
-
event_id: factories.string(),
|
|
16784
|
-
timestamp: factories.date_time_iso_8601(),
|
|
16785
|
-
organization: factories.string(),
|
|
16786
|
-
order_number: factories.string(),
|
|
16787
|
-
order: factories['io.flow.experience.v0.models.order'](),
|
|
16788
|
-
fulfillments: arrayOf(() => factories['io.flow.order.management.v0.models.fulfillment']()),
|
|
16789
|
-
|
|
16790
|
-
fulfillment_item_allocation_details: arrayOf(
|
|
16791
|
-
() => factories['io.flow.order.management.event.v0.models.fulfillment_item_allocation_details'](),
|
|
16792
|
-
),
|
|
16793
|
-
}),
|
|
16794
|
-
|
|
16795
16387
|
'io.flow.internal.v0.models.rebound_configuration': (): io.flow.internal.v0.models.ReboundConfiguration => ({
|
|
16796
16388
|
id: factories.string(),
|
|
16797
16389
|
login: factories.string(),
|
|
@@ -16870,6 +16462,15 @@ const factories = {
|
|
|
16870
16462
|
account_number: factories.string(),
|
|
16871
16463
|
}),
|
|
16872
16464
|
|
|
16465
|
+
'io.flow.internal.v0.models.report_file': (): io.flow.internal.v0.models.ReportFile => ({
|
|
16466
|
+
id: factories.string(),
|
|
16467
|
+
processor: factories.string(),
|
|
16468
|
+
report_file_type: factories['io.flow.internal.v0.enums.report_file_type'](),
|
|
16469
|
+
file_name: factories.string(),
|
|
16470
|
+
status: factories['io.flow.internal.v0.enums.report_file_status'](),
|
|
16471
|
+
failure_reason: factories.string(),
|
|
16472
|
+
}),
|
|
16473
|
+
|
|
16873
16474
|
'io.flow.internal.v0.models.report_filter': (): io.flow.internal.v0.models.ReportFilter => ({
|
|
16874
16475
|
source_type: factories['io.flow.internal.v0.enums.source_type_filter'](),
|
|
16875
16476
|
}),
|
|
@@ -16912,6 +16513,21 @@ const factories = {
|
|
|
16912
16513
|
created_at: factories.date_time_iso_8601(),
|
|
16913
16514
|
}),
|
|
16914
16515
|
|
|
16516
|
+
'io.flow.internal.v0.models.report_record_error': (): io.flow.internal.v0.models.ReportRecordError => ({
|
|
16517
|
+
id: factories.string(),
|
|
16518
|
+
file_id: factories.string(),
|
|
16519
|
+
line_number: factories.integer(),
|
|
16520
|
+
failure_reason: factories.string(),
|
|
16521
|
+
}),
|
|
16522
|
+
|
|
16523
|
+
'io.flow.internal.v0.models.report_record_retry_queue': (): io.flow.internal.v0.models.ReportRecordRetryQueue => ({
|
|
16524
|
+
id: factories.string(),
|
|
16525
|
+
report_file_type: factories['io.flow.internal.v0.enums.report_file_type'](),
|
|
16526
|
+
type: factories['io.flow.internal.v0.enums.internal_payment_entity_type'](),
|
|
16527
|
+
report_record_id: factories.string(),
|
|
16528
|
+
dependent_source_id: factories.string(),
|
|
16529
|
+
}),
|
|
16530
|
+
|
|
16915
16531
|
'io.flow.internal.v0.models.report_rule_decision': (): io.flow.internal.v0.models.ReportRuleDecision => ({
|
|
16916
16532
|
rule_id: factories.string(),
|
|
16917
16533
|
rule_name: factories.string(),
|
|
@@ -17182,8 +16798,11 @@ const factories = {
|
|
|
17182
16798
|
organization_id: factories.string(),
|
|
17183
16799
|
restriction_product_id: factories.string(),
|
|
17184
16800
|
product_id: factories.string(),
|
|
16801
|
+
item_numbers: arrayOf(() => factories.string()),
|
|
16802
|
+
primary_item_number: factories.string(),
|
|
17185
16803
|
name: factories.string(),
|
|
17186
16804
|
price: factories['io.flow.common.v0.models.price'](),
|
|
16805
|
+
hs_code: factories.string(),
|
|
17187
16806
|
description: factories.string(),
|
|
17188
16807
|
categories: arrayOf(() => factories.string()),
|
|
17189
16808
|
images: arrayOf(() => factories['io.flow.catalog.v0.models.image']()),
|
|
@@ -17201,6 +16820,7 @@ const factories = {
|
|
|
17201
16820
|
user_ids: arrayOf(() => factories.string()),
|
|
17202
16821
|
categories: arrayOf(() => factories.string()),
|
|
17203
16822
|
product_name_query: factories.string(),
|
|
16823
|
+
hs6: factories.string(),
|
|
17204
16824
|
positive_keywords: arrayOf(() => factories.string()),
|
|
17205
16825
|
negative_keywords: arrayOf(() => factories.string()),
|
|
17206
16826
|
product_id: factories.string(),
|
|
@@ -17339,6 +16959,7 @@ const factories = {
|
|
|
17339
16959
|
user_ids: arrayOf(() => factories.string()),
|
|
17340
16960
|
categories: arrayOf(() => factories.string()),
|
|
17341
16961
|
product_name_query: factories.string(),
|
|
16962
|
+
hs6: factories.string(),
|
|
17342
16963
|
product_id: factories.string(),
|
|
17343
16964
|
}),
|
|
17344
16965
|
|
|
@@ -17477,6 +17098,9 @@ const factories = {
|
|
|
17477
17098
|
num_pr_outflow_auto_review_decisions: factories.decimal(),
|
|
17478
17099
|
num_pr_outflow_side_effect_decisions: factories.decimal(),
|
|
17479
17100
|
num_pending_decisions_transacting: factories.decimal(),
|
|
17101
|
+
oldest_insufficient_details_pv_onboarding: factories.date_iso_8601(),
|
|
17102
|
+
oldest_insufficient_details_pv_active: factories.date_iso_8601(),
|
|
17103
|
+
oldest_insufficient_details_pv_transacting: factories.date_iso_8601(),
|
|
17480
17104
|
}),
|
|
17481
17105
|
|
|
17482
17106
|
'io.flow.internal.v0.models.restrictions_dailyops_deleted': (): io.flow.internal.v0.models.RestrictionsDailyopsDeleted => ({
|
|
@@ -17778,13 +17402,6 @@ const factories = {
|
|
|
17778
17402
|
customer_id: factories.string(),
|
|
17779
17403
|
}),
|
|
17780
17404
|
|
|
17781
|
-
'io.flow.internal.v0.models.shipped_item_value': (): io.flow.internal.v0.models.ShippedItemValue => ({
|
|
17782
|
-
item: factories['io.flow.common.v0.models.catalog_item_reference'](),
|
|
17783
|
-
taxes: factories['io.flow.common.v0.models.price_with_base'](),
|
|
17784
|
-
duties: factories['io.flow.common.v0.models.price_with_base'](),
|
|
17785
|
-
total: factories['io.flow.common.v0.models.price_with_base'](),
|
|
17786
|
-
}),
|
|
17787
|
-
|
|
17788
17405
|
'io.flow.internal.v0.models.shipping_lane': (): io.flow.internal.v0.models.ShippingLane => ({
|
|
17789
17406
|
origin: factories.string(),
|
|
17790
17407
|
destination: factories.string(),
|
|
@@ -18193,6 +17810,26 @@ const factories = {
|
|
|
18193
17810
|
registration: factories['io.flow.internal.v0.models.shopify_markets_webhook_registration'](),
|
|
18194
17811
|
}),
|
|
18195
17812
|
|
|
17813
|
+
'io.flow.internal.v0.models.shopify_merchant_plan': (): io.flow.internal.v0.models.ShopifyMerchantPlan => ({
|
|
17814
|
+
id: factories.string(),
|
|
17815
|
+
authorization: factories['io.flow.payment.v0.models.authorization_reference'](),
|
|
17816
|
+
plan: factories['io.flow.internal.v0.enums.shopify_plan_type'](),
|
|
17817
|
+
}),
|
|
17818
|
+
|
|
17819
|
+
'io.flow.internal.v0.models.shopify_merchant_plan_deleted': (): io.flow.internal.v0.models.ShopifyMerchantPlanDeleted => ({
|
|
17820
|
+
discriminator: 'shopify_merchant_plan_deleted',
|
|
17821
|
+
event_id: factories.string(),
|
|
17822
|
+
timestamp: factories.date_time_iso_8601(),
|
|
17823
|
+
id: factories.string(),
|
|
17824
|
+
}),
|
|
17825
|
+
|
|
17826
|
+
'io.flow.internal.v0.models.shopify_merchant_plan_upserted': (): io.flow.internal.v0.models.ShopifyMerchantPlanUpserted => ({
|
|
17827
|
+
discriminator: 'shopify_merchant_plan_upserted',
|
|
17828
|
+
event_id: factories.string(),
|
|
17829
|
+
timestamp: factories.date_time_iso_8601(),
|
|
17830
|
+
shopify_merchant_plan: factories['io.flow.internal.v0.models.shopify_merchant_plan'](),
|
|
17831
|
+
}),
|
|
17832
|
+
|
|
18196
17833
|
'io.flow.internal.v0.models.shopify_metadata': (): io.flow.internal.v0.models.ShopifyMetadata => ({
|
|
18197
17834
|
domain: factories.string(),
|
|
18198
17835
|
myshopify_domain: factories.string(),
|
|
@@ -18967,6 +18604,46 @@ const factories = {
|
|
|
18967
18604
|
capture: factories['io.flow.internal.v0.models.stripe_internal_capture'](),
|
|
18968
18605
|
}),
|
|
18969
18606
|
|
|
18607
|
+
'io.flow.internal.v0.models.stripe_connect_report_record': (): io.flow.internal.v0.models.StripeConnectReportRecord => ({
|
|
18608
|
+
id: factories.string(),
|
|
18609
|
+
file_id: factories.string(),
|
|
18610
|
+
line_number: factories.integer(),
|
|
18611
|
+
created_utc: factories.date_time_iso_8601(),
|
|
18612
|
+
charge_id: factories.string(),
|
|
18613
|
+
payment_intent_id: factories.string(),
|
|
18614
|
+
gross: factories.decimal(),
|
|
18615
|
+
fee: factories.decimal(),
|
|
18616
|
+
net: factories.decimal(),
|
|
18617
|
+
currency: factories.string(),
|
|
18618
|
+
connected_account: factories.string(),
|
|
18619
|
+
reporting_category: factories['io.flow.stripe.v0.enums.connect_report_reporting_category'](),
|
|
18620
|
+
dispute_reason: factories.string(),
|
|
18621
|
+
available_on_utc: factories.date_time_iso_8601(),
|
|
18622
|
+
automatic_payout_effective_at_utc: factories.date_time_iso_8601(),
|
|
18623
|
+
source_id: factories.string(),
|
|
18624
|
+
customer_facing_amount: factories.decimal(),
|
|
18625
|
+
customer_facing_currency: factories.string(),
|
|
18626
|
+
payment_method_type: factories.string(),
|
|
18627
|
+
card_brand: factories.string(),
|
|
18628
|
+
statement_descriptor: factories.string(),
|
|
18629
|
+
payment_metadata: factories['io.flow.stripe.v0.models.connect_report_record_payment_metadata'](),
|
|
18630
|
+
transfer_metadata: factories.object(),
|
|
18631
|
+
}),
|
|
18632
|
+
|
|
18633
|
+
'io.flow.internal.v0.models.stripe_connect_report_record_deleted': (): io.flow.internal.v0.models.StripeConnectReportRecordDeleted => ({
|
|
18634
|
+
discriminator: 'stripe_connect_report_record_deleted',
|
|
18635
|
+
event_id: factories.string(),
|
|
18636
|
+
timestamp: factories.date_time_iso_8601(),
|
|
18637
|
+
id: factories.string(),
|
|
18638
|
+
}),
|
|
18639
|
+
|
|
18640
|
+
'io.flow.internal.v0.models.stripe_connect_report_record_upserted': (): io.flow.internal.v0.models.StripeConnectReportRecordUpserted => ({
|
|
18641
|
+
discriminator: 'stripe_connect_report_record_upserted',
|
|
18642
|
+
event_id: factories.string(),
|
|
18643
|
+
timestamp: factories.date_time_iso_8601(),
|
|
18644
|
+
record: factories['io.flow.stripe.v0.models.connect_report_record'](),
|
|
18645
|
+
}),
|
|
18646
|
+
|
|
18970
18647
|
'io.flow.internal.v0.models.stripe_dispute_deleted': (): io.flow.internal.v0.models.StripeDisputeDeleted => ({
|
|
18971
18648
|
discriminator: 'stripe_dispute_deleted',
|
|
18972
18649
|
event_id: factories.string(),
|
|
@@ -19272,40 +18949,6 @@ const factories = {
|
|
|
19272
18949
|
category_code: factories.string(),
|
|
19273
18950
|
}),
|
|
19274
18951
|
|
|
19275
|
-
'io.flow.internal.v0.models.tax_duty_delta_metadata_actual': (): io.flow.internal.v0.models.TaxDutyDeltaMetadataActual => ({
|
|
19276
|
-
processing: factories['io.flow.internal.v0.models.tax_duty_delta_metadata_actual_processing'](),
|
|
19277
|
-
}),
|
|
19278
|
-
|
|
19279
|
-
'io.flow.internal.v0.models.tax_duty_delta_metadata_actual_processing': (): io.flow.internal.v0.models.TaxDutyDeltaMetadataActualProcessing => ({
|
|
19280
|
-
capture: factories['io.flow.common.v0.models.money'](),
|
|
19281
|
-
fees: factories['io.flow.common.v0.models.money'](),
|
|
19282
|
-
transfer: factories['io.flow.common.v0.models.money'](),
|
|
19283
|
-
total: factories['io.flow.common.v0.models.money'](),
|
|
19284
|
-
}),
|
|
19285
|
-
|
|
19286
|
-
'io.flow.internal.v0.models.tax_duty_delta_metadata_expected': (): io.flow.internal.v0.models.TaxDutyDeltaMetadataExpected => ({
|
|
19287
|
-
processing: factories['io.flow.internal.v0.models.tax_duty_delta_metadata_expected_processing'](),
|
|
19288
|
-
}),
|
|
19289
|
-
|
|
19290
|
-
'io.flow.internal.v0.models.tax_duty_delta_metadata_expected_processing': (): io.flow.internal.v0.models.TaxDutyDeltaMetadataExpectedProcessing => ({
|
|
19291
|
-
tax: factories['io.flow.common.v0.models.money'](),
|
|
19292
|
-
duty: factories['io.flow.common.v0.models.money'](),
|
|
19293
|
-
total: factories['io.flow.common.v0.models.money'](),
|
|
19294
|
-
}),
|
|
19295
|
-
|
|
19296
|
-
'io.flow.internal.v0.models.tax_duty_delta_transaction': (): io.flow.internal.v0.models.TaxDutyDeltaTransaction => ({
|
|
19297
|
-
discriminator: 'tax_duty_delta_transaction',
|
|
19298
|
-
order: factories['io.flow.internal.v0.models.billing_order_transaction_order_reference'](),
|
|
19299
|
-
id: factories.string(),
|
|
19300
|
-
type: factories['io.flow.internal.v0.enums.billing_transaction_type'](),
|
|
19301
|
-
status: factories['io.flow.internal.v0.enums.billing_transaction_status'](),
|
|
19302
|
-
posted_at: factories.date_time_iso_8601(),
|
|
19303
|
-
value: factories['io.flow.common.v0.models.price'](),
|
|
19304
|
-
description: factories.string(),
|
|
19305
|
-
statement: factories['io.flow.internal.v0.models.billing_statement_reference'](),
|
|
19306
|
-
created_at: factories.date_time_iso_8601(),
|
|
19307
|
-
}),
|
|
19308
|
-
|
|
19309
18952
|
'io.flow.internal.v0.models.tax_remittance_transaction': (): io.flow.internal.v0.models.TaxRemittanceTransaction => ({
|
|
19310
18953
|
discriminator: 'tax_remittance_transaction',
|
|
19311
18954
|
order: factories['io.flow.internal.v0.models.billing_order_summary'](),
|
|
@@ -20100,31 +19743,6 @@ const factories = {
|
|
|
20100
19743
|
return f();
|
|
20101
19744
|
},
|
|
20102
19745
|
|
|
20103
|
-
'io.flow.internal.v0.unions.checkout_form': (): io.flow.internal.v0.unions.CheckoutForm => {
|
|
20104
|
-
const f = faker.helpers.arrayElement([
|
|
20105
|
-
() => factories['io.flow.internal.v0.models.checkout_order_form'](),
|
|
20106
|
-
() => factories['io.flow.internal.v0.models.checkout_order_number_form'](),
|
|
20107
|
-
]);
|
|
20108
|
-
|
|
20109
|
-
return f();
|
|
20110
|
-
},
|
|
20111
|
-
|
|
20112
|
-
'io.flow.internal.v0.unions.checkout_submit_order_bundles': (): io.flow.internal.v0.unions.CheckoutSubmitOrderBundles => {
|
|
20113
|
-
const f = faker.helpers.arrayElement([
|
|
20114
|
-
() => factories['io.flow.internal.v0.models.checkout_submit_order_bundle'](),
|
|
20115
|
-
]);
|
|
20116
|
-
|
|
20117
|
-
return f();
|
|
20118
|
-
},
|
|
20119
|
-
|
|
20120
|
-
'io.flow.internal.v0.unions.checkout_submit_order_forms': (): io.flow.internal.v0.unions.CheckoutSubmitOrderForms => {
|
|
20121
|
-
const f = faker.helpers.arrayElement(
|
|
20122
|
-
[() => factories['io.flow.internal.v0.models.checkout_submit_order_form']()],
|
|
20123
|
-
);
|
|
20124
|
-
|
|
20125
|
-
return f();
|
|
20126
|
-
},
|
|
20127
|
-
|
|
20128
19746
|
'io.flow.internal.v0.unions.classification_action': (): io.flow.internal.v0.unions.ClassificationAction => {
|
|
20129
19747
|
const f = faker.helpers.arrayElement([
|
|
20130
19748
|
() => factories['io.flow.internal.v0.models.single_classification_action'](),
|
|
@@ -20261,10 +19879,6 @@ const factories = {
|
|
|
20261
19879
|
|
|
20262
19880
|
'io.flow.internal.v0.unions.event': (): io.flow.internal.v0.unions.Event => {
|
|
20263
19881
|
const f = faker.helpers.arrayElement([
|
|
20264
|
-
() => factories['io.flow.internal.v0.models.adjusted_estimates_upserted'](),
|
|
20265
|
-
() => factories['io.flow.internal.v0.models.adjusted_estimates_deleted'](),
|
|
20266
|
-
() => factories['io.flow.internal.v0.models.final_estimate_upserted'](),
|
|
20267
|
-
() => factories['io.flow.internal.v0.models.final_estimate_deleted'](),
|
|
20268
19882
|
() => factories['io.flow.internal.v0.models.adyen_authorization_deleted'](),
|
|
20269
19883
|
() => factories['io.flow.internal.v0.models.adyen_authorization_upserted'](),
|
|
20270
19884
|
() => factories['io.flow.internal.v0.models.adyen_cancel_deleted'](),
|
|
@@ -20432,7 +20046,6 @@ const factories = {
|
|
|
20432
20046
|
() => factories['io.flow.internal.v0.models.center_defaults_deleted'](),
|
|
20433
20047
|
() => factories['io.flow.internal.v0.models.fulfillment_fallbacks_upserted'](),
|
|
20434
20048
|
() => factories['io.flow.internal.v0.models.fulfillment_fallbacks_deleted'](),
|
|
20435
|
-
() => factories['io.flow.internal.v0.models.pregenerated_request_event'](),
|
|
20436
20049
|
() => factories['io.flow.internal.v0.models.quote_upserted'](),
|
|
20437
20050
|
() => factories['io.flow.internal.v0.models.quote_deleted'](),
|
|
20438
20051
|
() => factories['io.flow.internal.v0.models.all_items_export'](),
|
|
@@ -20441,7 +20054,6 @@ const factories = {
|
|
|
20441
20054
|
() => factories['io.flow.internal.v0.models.dutied_items_export'](),
|
|
20442
20055
|
() => factories['io.flow.internal.v0.models.harmonization_phrase_suggestion_request_import'](),
|
|
20443
20056
|
() => factories['io.flow.internal.v0.models.harmonization_codes_import'](),
|
|
20444
|
-
() => factories['io.flow.internal.v0.models.item_classification_created'](),
|
|
20445
20057
|
() => factories['io.flow.internal.v0.models.harmonize_fully_request_v2'](),
|
|
20446
20058
|
() => factories['io.flow.internal.v0.models.import_completed'](),
|
|
20447
20059
|
() => factories['io.flow.internal.v0.models.import_failed'](),
|
|
@@ -20465,22 +20077,17 @@ const factories = {
|
|
|
20465
20077
|
() => factories['io.flow.internal.v0.models.order_validation_failure_deleted'](),
|
|
20466
20078
|
() => factories['io.flow.internal.v0.models.order_validation_upserted'](),
|
|
20467
20079
|
() => factories['io.flow.internal.v0.models.order_validation_deleted'](),
|
|
20080
|
+
() => factories['io.flow.internal.v0.models.label_creation_job_upserted'](),
|
|
20081
|
+
() => factories['io.flow.internal.v0.models.label_creation_job_deleted'](),
|
|
20468
20082
|
() => factories['io.flow.internal.v0.models.label_tracking_summary_upserted'](),
|
|
20469
20083
|
() => factories['io.flow.internal.v0.models.label_tracking_summary_deleted'](),
|
|
20470
20084
|
() => factories['io.flow.internal.v0.models.logistics_capabilities_upserted'](),
|
|
20471
20085
|
() => factories['io.flow.internal.v0.models.logistics_capabilities_deleted'](),
|
|
20472
20086
|
() => factories['io.flow.internal.v0.models.localized_item_prices_export_request'](),
|
|
20473
|
-
() => factories['io.flow.internal.v0.models.optin_prompt_upserted'](),
|
|
20474
|
-
() => factories['io.flow.internal.v0.models.optin_prompt_deleted'](),
|
|
20475
20087
|
() => factories['io.flow.internal.v0.models.order_combined_shipment_upserted'](),
|
|
20476
20088
|
() => factories['io.flow.internal.v0.models.order_combined_shipment_deleted'](),
|
|
20477
20089
|
() => factories['io.flow.internal.v0.models.order_fulfillment_deleted'](),
|
|
20478
20090
|
() => factories['io.flow.internal.v0.models.order_fulfillment_upserted'](),
|
|
20479
|
-
() => factories['io.flow.internal.v0.models.order_placed'](),
|
|
20480
|
-
() => factories['io.flow.internal.v0.models.ready_to_fulfill'](),
|
|
20481
|
-
() => factories['io.flow.internal.v0.models.fulfillment_cancel'](),
|
|
20482
|
-
() => factories['io.flow.internal.v0.models.order_shipped'](),
|
|
20483
|
-
() => factories['io.flow.internal.v0.models.items_shipped'](),
|
|
20484
20091
|
() => factories['io.flow.internal.v0.models.organization_business_entity_deleted'](),
|
|
20485
20092
|
() => factories['io.flow.internal.v0.models.organization_business_entity_upserted'](),
|
|
20486
20093
|
() => factories['io.flow.internal.v0.models.organization_status_change_upserted'](),
|
|
@@ -20537,8 +20144,6 @@ const factories = {
|
|
|
20537
20144
|
() => factories['io.flow.internal.v0.models.ratecard_standard_configuration_deleted'](),
|
|
20538
20145
|
() => factories['io.flow.internal.v0.models.ratecard_service_fee_upserted'](),
|
|
20539
20146
|
() => factories['io.flow.internal.v0.models.ratecard_service_fee_deleted'](),
|
|
20540
|
-
() => factories['io.flow.internal.v0.models.ratecard_lane_aggregate_upserted'](),
|
|
20541
|
-
() => factories['io.flow.internal.v0.models.ratecard_lane_aggregate_deleted'](),
|
|
20542
20147
|
() => factories['io.flow.internal.v0.models.ratecard_rate_level_upserted'](),
|
|
20543
20148
|
() => factories['io.flow.internal.v0.models.ratecard_rate_level_deleted'](),
|
|
20544
20149
|
() => factories['io.flow.internal.v0.models.ratecard_rate_level_ratecard_upserted'](),
|
|
@@ -20598,6 +20203,8 @@ const factories = {
|
|
|
20598
20203
|
() => factories['io.flow.internal.v0.models.shopify_monitoring_order_monitor_event_deleted'](),
|
|
20599
20204
|
() => factories['io.flow.internal.v0.models.shopify_order_fulfillments_snapshot_upserted'](),
|
|
20600
20205
|
() => factories['io.flow.internal.v0.models.shopify_order_fulfillments_snapshot_deleted'](),
|
|
20206
|
+
() => factories['io.flow.internal.v0.models.shopify_merchant_plan_upserted'](),
|
|
20207
|
+
() => factories['io.flow.internal.v0.models.shopify_merchant_plan_deleted'](),
|
|
20601
20208
|
() => factories['io.flow.internal.v0.models.stripe_authorization_deleted'](),
|
|
20602
20209
|
() => factories['io.flow.internal.v0.models.stripe_authorization_upserted'](),
|
|
20603
20210
|
() => factories['io.flow.internal.v0.models.stripe_reversal_deleted'](),
|
|
@@ -20608,6 +20215,8 @@ const factories = {
|
|
|
20608
20215
|
() => factories['io.flow.internal.v0.models.stripe_refund_upserted'](),
|
|
20609
20216
|
() => factories['io.flow.internal.v0.models.stripe_dispute_upserted'](),
|
|
20610
20217
|
() => factories['io.flow.internal.v0.models.stripe_dispute_deleted'](),
|
|
20218
|
+
() => factories['io.flow.internal.v0.models.stripe_connect_report_record_upserted'](),
|
|
20219
|
+
() => factories['io.flow.internal.v0.models.stripe_connect_report_record_deleted'](),
|
|
20611
20220
|
() => factories['io.flow.internal.v0.models.liability_remittance_plan_upserted'](),
|
|
20612
20221
|
() => factories['io.flow.internal.v0.models.liability_remittance_plan_deleted'](),
|
|
20613
20222
|
() => factories['io.flow.internal.v0.models.tracking_processing_error_upserted'](),
|
|
@@ -21129,7 +20738,6 @@ const factories = {
|
|
|
21129
20738
|
() => factories['io.flow.internal.v0.models.carrier_charge_transaction'](),
|
|
21130
20739
|
() => factories['io.flow.internal.v0.models.non_l4l_tax_duty_fx_transaction'](),
|
|
21131
20740
|
() => factories['io.flow.internal.v0.models.ge_revenue_share_transaction'](),
|
|
21132
|
-
() => factories['io.flow.internal.v0.models.tax_duty_delta_transaction'](),
|
|
21133
20741
|
]);
|
|
21134
20742
|
|
|
21135
20743
|
return f();
|
|
@@ -23626,6 +23234,7 @@ const factories = {
|
|
|
23626
23234
|
'unknown',
|
|
23627
23235
|
]),
|
|
23628
23236
|
|
|
23237
|
+
'io.flow.payment.v0.enums.payment_fee_type': (): io.flow.payment.v0.enums.PaymentFeeType => faker.helpers.arrayElement(['fx', 'mor']),
|
|
23629
23238
|
'io.flow.payment.v0.enums.payment_source_confirmation_action_type': (): io.flow.payment.v0.enums.PaymentSourceConfirmationActionType => faker.helpers.arrayElement(['cvv', 'billing_address', 'number']),
|
|
23630
23239
|
'io.flow.payment.v0.enums.refund_decline_code': (): io.flow.payment.v0.enums.RefundDeclineCode => faker.helpers.arrayElement(['expired', 'insufficient_funds', 'unknown']),
|
|
23631
23240
|
|
|
@@ -23850,6 +23459,7 @@ const factories = {
|
|
|
23850
23459
|
attributes: objectOf(() => factories.string()),
|
|
23851
23460
|
status: factories['io.flow.payment.v0.enums.capture_status'](),
|
|
23852
23461
|
base: factories['io.flow.common.v0.models.money'](),
|
|
23462
|
+
fees: arrayOf(() => factories['io.flow.payment.v0.models.payment_fee']()),
|
|
23853
23463
|
}),
|
|
23854
23464
|
|
|
23855
23465
|
'io.flow.payment.v0.models.capture_error': (): io.flow.payment.v0.models.CaptureError => ({
|
|
@@ -24098,6 +23708,12 @@ const factories = {
|
|
|
24098
23708
|
year: factories.integer(),
|
|
24099
23709
|
}),
|
|
24100
23710
|
|
|
23711
|
+
'io.flow.payment.v0.models.external_card': (): io.flow.payment.v0.models.ExternalCard => ({
|
|
23712
|
+
discriminator: 'external_card',
|
|
23713
|
+
id: factories.string(),
|
|
23714
|
+
type: factories['io.flow.payment.v0.enums.card_type'](),
|
|
23715
|
+
}),
|
|
23716
|
+
|
|
24101
23717
|
'io.flow.payment.v0.models.google_pay_authorization_payload': (): io.flow.payment.v0.models.GooglePayAuthorizationPayload => ({
|
|
24102
23718
|
discriminator: 'google_pay_authorization_payload',
|
|
24103
23719
|
payload: factories.object(),
|
|
@@ -24237,6 +23853,12 @@ const factories = {
|
|
|
24237
23853
|
codes: arrayOf(() => factories['io.flow.payment.v0.enums.payment_error_code']()),
|
|
24238
23854
|
}),
|
|
24239
23855
|
|
|
23856
|
+
'io.flow.payment.v0.models.payment_fee': (): io.flow.payment.v0.models.PaymentFee => ({
|
|
23857
|
+
type: factories['io.flow.payment.v0.enums.payment_fee_type'](),
|
|
23858
|
+
money: factories['io.flow.common.v0.models.money'](),
|
|
23859
|
+
base: factories['io.flow.common.v0.models.money'](),
|
|
23860
|
+
}),
|
|
23861
|
+
|
|
24240
23862
|
'io.flow.payment.v0.models.payment_payment_request_reference': (): io.flow.payment.v0.models.PaymentPaymentRequestReference => ({
|
|
24241
23863
|
discriminator: 'payment_request',
|
|
24242
23864
|
payment_request_id: factories.string(),
|
|
@@ -24717,6 +24339,7 @@ const factories = {
|
|
|
24717
24339
|
() => factories['io.flow.payment.v0.models.card'](),
|
|
24718
24340
|
() => factories['io.flow.payment.v0.models.card_reference'](),
|
|
24719
24341
|
() => factories['io.flow.payment.v0.models.card_summary'](),
|
|
24342
|
+
() => factories['io.flow.payment.v0.models.external_card'](),
|
|
24720
24343
|
]);
|
|
24721
24344
|
|
|
24722
24345
|
return f();
|
|
@@ -25249,6 +24872,7 @@ const factories = {
|
|
|
25249
24872
|
'io.flow.ratecard.v0.models.duties_taxes_paid_surcharge_service_fee': (): io.flow.ratecard.v0.models.DutiesTaxesPaidSurchargeServiceFee => ({
|
|
25250
24873
|
discriminator: 'duties_taxes_paid_surcharge_service_fee',
|
|
25251
24874
|
amount: factories['io.flow.common.v0.models.money'](),
|
|
24875
|
+
destination_countries: arrayOf(() => factories.string()),
|
|
25252
24876
|
starts_at: factories.date_time_iso_8601(),
|
|
25253
24877
|
ends_at: factories.date_time_iso_8601(),
|
|
25254
24878
|
}),
|
|
@@ -26322,6 +25946,15 @@ const factories = {
|
|
|
26322
25946
|
'io.flow.shopify.external.v0.models.graphql_metaobject': (): io.flow.shopify.external.v0.models.GraphqlMetaobject => ({
|
|
26323
25947
|
id: factories.string(),
|
|
26324
25948
|
displayName: factories.string(),
|
|
25949
|
+
|
|
25950
|
+
fields: arrayOf(
|
|
25951
|
+
() => factories['io.flow.shopify.external.v0.models.graphql_metaobject_field'](),
|
|
25952
|
+
),
|
|
25953
|
+
}),
|
|
25954
|
+
|
|
25955
|
+
'io.flow.shopify.external.v0.models.graphql_metaobject_field': (): io.flow.shopify.external.v0.models.GraphqlMetaobjectField => ({
|
|
25956
|
+
key: factories.string(),
|
|
25957
|
+
value: factories.string(),
|
|
26325
25958
|
}),
|
|
26326
25959
|
|
|
26327
25960
|
'io.flow.shopify.external.v0.models.graphql_option': (): io.flow.shopify.external.v0.models.GraphqlOption => ({
|
|
@@ -29333,6 +28966,7 @@ const factories = {
|
|
|
29333
28966
|
'void_invoice',
|
|
29334
28967
|
]),
|
|
29335
28968
|
|
|
28969
|
+
'io.flow.stripe.v0.enums.capability_status': (): io.flow.stripe.v0.enums.CapabilityStatus => faker.helpers.arrayElement(['active', 'disabled', 'inactive', 'pending', 'unrequested']),
|
|
29336
28970
|
'io.flow.stripe.v0.enums.capture_method': (): io.flow.stripe.v0.enums.CaptureMethod => faker.helpers.arrayElement(['automatic', 'manual']),
|
|
29337
28971
|
|
|
29338
28972
|
'io.flow.stripe.v0.enums.card_brand': (): io.flow.stripe.v0.enums.CardBrand => faker.helpers.arrayElement([
|
|
@@ -29363,6 +28997,14 @@ const factories = {
|
|
|
29363
28997
|
'io.flow.stripe.v0.enums.check_outcome': (): io.flow.stripe.v0.enums.CheckOutcome => faker.helpers.arrayElement(['pass', 'fail', 'unavailable', 'unchecked']),
|
|
29364
28998
|
'io.flow.stripe.v0.enums.code_verification_status': (): io.flow.stripe.v0.enums.CodeVerificationStatus => faker.helpers.arrayElement(['pending', 'succeeded', 'failed']),
|
|
29365
28999
|
'io.flow.stripe.v0.enums.confirmation_method': (): io.flow.stripe.v0.enums.ConfirmationMethod => faker.helpers.arrayElement(['automatic', 'manual']),
|
|
29000
|
+
'io.flow.stripe.v0.enums.connect_report_reporting_category': (): io.flow.stripe.v0.enums.ConnectReportReportingCategory => faker.helpers.arrayElement(['charge', 'refund', 'payout_reversal', 'transfer', 'transfer_reversal']),
|
|
29001
|
+
'io.flow.stripe.v0.enums.connect_report_shop_plan': (): io.flow.stripe.v0.enums.ConnectReportShopPlan => faker.helpers.arrayElement(['shopify_plus', 'standard']),
|
|
29002
|
+
|
|
29003
|
+
'io.flow.stripe.v0.enums.connect_report_transfer_type': (): io.flow.stripe.v0.enums.ConnectReportTransferType => faker.helpers.arrayElement([
|
|
29004
|
+
'ManagedMarketsRefundDebit',
|
|
29005
|
+
'ManagedMarketsDutiesAndTaxesAdjustmentDebit',
|
|
29006
|
+
'ManagedMarketsDisputedAmountDebit',
|
|
29007
|
+
]),
|
|
29366
29008
|
|
|
29367
29009
|
'io.flow.stripe.v0.enums.decline_code': (): io.flow.stripe.v0.enums.DeclineCode => faker.helpers.arrayElement([
|
|
29368
29010
|
'approve_with_id',
|
|
@@ -29549,6 +29191,7 @@ const factories = {
|
|
|
29549
29191
|
]),
|
|
29550
29192
|
|
|
29551
29193
|
'io.flow.stripe.v0.enums.event_type': (): io.flow.stripe.v0.enums.EventType => faker.helpers.arrayElement([
|
|
29194
|
+
'capability.updated',
|
|
29552
29195
|
'charge.captured',
|
|
29553
29196
|
'charge.failed',
|
|
29554
29197
|
'charge.pending',
|
|
@@ -29838,6 +29481,17 @@ const factories = {
|
|
|
29838
29481
|
type: factories['io.flow.stripe.v0.enums.apple_pay_type'](),
|
|
29839
29482
|
}),
|
|
29840
29483
|
|
|
29484
|
+
'io.flow.stripe.v0.models.capability': (): io.flow.stripe.v0.models.Capability => ({
|
|
29485
|
+
id: factories.string(),
|
|
29486
|
+
account: factories.string(),
|
|
29487
|
+
requested: factories.boolean(),
|
|
29488
|
+
requirements: factories.object(),
|
|
29489
|
+
status: factories['io.flow.stripe.v0.enums.capability_status'](),
|
|
29490
|
+
object: factories.string(),
|
|
29491
|
+
future_requirements: factories.object(),
|
|
29492
|
+
requested_at: factories.long(),
|
|
29493
|
+
}),
|
|
29494
|
+
|
|
29841
29495
|
'io.flow.stripe.v0.models.card': (): io.flow.stripe.v0.models.Card => ({
|
|
29842
29496
|
id: factories.string(),
|
|
29843
29497
|
object: factories.string(),
|
|
@@ -29981,6 +29635,46 @@ const factories = {
|
|
|
29981
29635
|
status: factories['io.flow.stripe.v0.enums.code_verification_status'](),
|
|
29982
29636
|
}),
|
|
29983
29637
|
|
|
29638
|
+
'io.flow.stripe.v0.models.connect_report_record': (): io.flow.stripe.v0.models.ConnectReportRecord => ({
|
|
29639
|
+
created_utc: factories.date_time_iso_8601(),
|
|
29640
|
+
charge_id: factories.string(),
|
|
29641
|
+
payment_intent_id: factories.string(),
|
|
29642
|
+
gross: factories.decimal(),
|
|
29643
|
+
fee: factories.decimal(),
|
|
29644
|
+
net: factories.decimal(),
|
|
29645
|
+
currency: factories.string(),
|
|
29646
|
+
connected_account: factories.string(),
|
|
29647
|
+
reporting_category: factories['io.flow.stripe.v0.enums.connect_report_reporting_category'](),
|
|
29648
|
+
dispute_reason: factories['io.flow.stripe.v0.enums.dispute_reason'](),
|
|
29649
|
+
available_on_utc: factories.date_time_iso_8601(),
|
|
29650
|
+
automatic_payout_effective_at_utc: factories.date_time_iso_8601(),
|
|
29651
|
+
source_id: factories.string(),
|
|
29652
|
+
customer_facing_amount: factories.decimal(),
|
|
29653
|
+
customer_facing_currency: factories.string(),
|
|
29654
|
+
payment_method_type: factories.string(),
|
|
29655
|
+
card_brand: factories.string(),
|
|
29656
|
+
statement_descriptor: factories.string(),
|
|
29657
|
+
payment_metadata: factories['io.flow.stripe.v0.models.connect_report_record_payment_metadata'](),
|
|
29658
|
+
transfer_metadata: factories.object(),
|
|
29659
|
+
}),
|
|
29660
|
+
|
|
29661
|
+
'io.flow.stripe.v0.models.connect_report_record_payment_metadata': (): io.flow.stripe.v0.models.ConnectReportRecordPaymentMetadata => ({
|
|
29662
|
+
shop_id: factories.integer(),
|
|
29663
|
+
shop_plan: factories['io.flow.stripe.v0.enums.connect_report_shop_plan'](),
|
|
29664
|
+
checkout_id: factories.string(),
|
|
29665
|
+
order_id: factories.integer(),
|
|
29666
|
+
order_transaction_id: factories.integer(),
|
|
29667
|
+
transfer_type: factories['io.flow.stripe.v0.enums.connect_report_transfer_type'](),
|
|
29668
|
+
transfer_exchange_rate: factories.decimal(),
|
|
29669
|
+
charge_total: factories.integer(),
|
|
29670
|
+
charge_currency: factories.string(),
|
|
29671
|
+
charge_exchange_rate: factories.decimal(),
|
|
29672
|
+
duties: factories.integer(),
|
|
29673
|
+
import_taxes: factories.integer(),
|
|
29674
|
+
mor_fee: factories.integer(),
|
|
29675
|
+
fx_fee: factories.integer(),
|
|
29676
|
+
}),
|
|
29677
|
+
|
|
29984
29678
|
'io.flow.stripe.v0.models.customer': (): io.flow.stripe.v0.models.Customer => ({
|
|
29985
29679
|
id: factories.string(),
|
|
29986
29680
|
object: factories.string(),
|
|
@@ -31434,7 +31128,15 @@ const factories = {
|
|
|
31434
31128
|
},
|
|
31435
31129
|
|
|
31436
31130
|
'io.flow.units.v0.enums.unit_of_length': (): io.flow.units.v0.enums.UnitOfLength => faker.helpers.arrayElement(['millimeter', 'centimeter', 'inch', 'foot', 'meter']),
|
|
31437
|
-
|
|
31131
|
+
|
|
31132
|
+
'io.flow.units.v0.enums.unit_of_volume': (): io.flow.units.v0.enums.UnitOfVolume => faker.helpers.arrayElement([
|
|
31133
|
+
'cubic_inch',
|
|
31134
|
+
'cubic_foot',
|
|
31135
|
+
'cubic_millimeter',
|
|
31136
|
+
'cubic_centimeter',
|
|
31137
|
+
'cubic_meter',
|
|
31138
|
+
]),
|
|
31139
|
+
|
|
31438
31140
|
'io.flow.units.v0.enums.unit_of_weight': (): io.flow.units.v0.enums.UnitOfWeight => faker.helpers.arrayElement(['gram', 'kilogram', 'ounce', 'pound']),
|
|
31439
31141
|
};
|
|
31440
31142
|
|
|
@@ -31477,9 +31179,6 @@ export const makeAddressConfigurationProvinceSetting = () => factories['io.flow.
|
|
|
31477
31179
|
export const makeAddressConfigurationSetting = () => factories['io.flow.internal.v0.models.address_configuration_setting']();
|
|
31478
31180
|
export const makeAddressConfigurationSettingForm = () => factories['io.flow.internal.v0.models.address_configuration_setting_form']();
|
|
31479
31181
|
export const makeAddressConfigurationSettingProvinceCode = () => factories['io.flow.internal.v0.enums.address_configuration_setting_province_code']();
|
|
31480
|
-
export const makeAdjustedEstimates = () => factories['io.flow.internal.v0.models.adjusted_estimates']();
|
|
31481
|
-
export const makeAdjustedEstimatesDeleted = () => factories['io.flow.internal.v0.models.adjusted_estimates_deleted']();
|
|
31482
|
-
export const makeAdjustedEstimatesUpserted = () => factories['io.flow.internal.v0.models.adjusted_estimates_upserted']();
|
|
31483
31182
|
export const makeAdjustmentAmount = () => factories['io.flow.internal.v0.unions.adjustment_amount']();
|
|
31484
31183
|
export const makeAdjustmentAmountFixed = () => factories['io.flow.internal.v0.models.adjustment_amount_fixed']();
|
|
31485
31184
|
export const makeAdjustmentAmountPercentage = () => factories['io.flow.internal.v0.models.adjustment_amount_percentage']();
|
|
@@ -31632,16 +31331,6 @@ export const makeBooleanFeatureRuleForm = () => factories['io.flow.internal.v0.m
|
|
|
31632
31331
|
export const makeBooleanFeatureValue = () => factories['io.flow.internal.v0.models.boolean_feature_value']();
|
|
31633
31332
|
export const makeBrickWebhookEvent = () => factories['io.flow.internal.v0.models.brick_webhook_event']();
|
|
31634
31333
|
export const makeBrickWebhookEventResponse = () => factories['io.flow.internal.v0.models.brick_webhook_event_response']();
|
|
31635
|
-
export const makeBrowserBundle = () => factories['io.flow.internal.v0.models.browser_bundle']();
|
|
31636
|
-
export const makeBrowserBundleCountryPickerForm = () => factories['io.flow.internal.v0.models.browser_bundle_country_picker_form']();
|
|
31637
|
-
export const makeBrowserBundleError = () => factories['io.flow.internal.v0.models.browser_bundle_error']();
|
|
31638
|
-
export const makeBrowserBundleErrorCode = () => factories['io.flow.internal.v0.enums.browser_bundle_error_code']();
|
|
31639
|
-
export const makeBrowserBundleFeatureForm = () => factories['io.flow.internal.v0.models.browser_bundle_feature_form']();
|
|
31640
|
-
export const makeBrowserBundleForm = () => factories['io.flow.internal.v0.models.browser_bundle_form']();
|
|
31641
|
-
export const makeBrowserBundleOptinForm = () => factories['io.flow.internal.v0.models.browser_bundle_optin_form']();
|
|
31642
|
-
export const makeBrowserBundlePaymentMethod = () => factories['io.flow.internal.v0.models.browser_bundle_payment_method']();
|
|
31643
|
-
export const makeBrowserBundlePaymentMethodForm = () => factories['io.flow.internal.v0.models.browser_bundle_payment_method_form']();
|
|
31644
|
-
export const makeBrowserBundlePaymentMethods = () => factories['io.flow.internal.v0.models.browser_bundle_payment_methods']();
|
|
31645
31334
|
export const makeBulkClassificationAction = () => factories['io.flow.internal.v0.models.bulk_classification_action']();
|
|
31646
31335
|
export const makeBulkDutyUpdateValidationError = () => factories['io.flow.internal.v0.models.bulk_duty_update_validation_error']();
|
|
31647
31336
|
export const makeCalculatedTaxAmount = () => factories['io.flow.internal.v0.models.calculated_tax_amount']();
|
|
@@ -31777,8 +31466,6 @@ export const makeCheckoutBehaviorCustomerInfo = () => factories['io.flow.interna
|
|
|
31777
31466
|
export const makeCheckoutBehaviorCustomerInfoEmail = () => factories['io.flow.internal.v0.models.checkout_behavior_customer_info_email']();
|
|
31778
31467
|
export const makeCheckoutBehaviorShippingAddress = () => factories['io.flow.internal.v0.models.checkout_behavior_shipping_address']();
|
|
31779
31468
|
export const makeCheckoutBehaviorShippingMethod = () => factories['io.flow.internal.v0.models.checkout_behavior_shipping_method']();
|
|
31780
|
-
export const makeCheckoutBundle = () => factories['io.flow.internal.v0.models.checkout_bundle']();
|
|
31781
|
-
export const makeCheckoutBundleMetadata = () => factories['io.flow.internal.v0.models.checkout_bundle_metadata']();
|
|
31782
31469
|
export const makeCheckoutConfiguration = () => factories['io.flow.internal.v0.models.checkout_configuration']();
|
|
31783
31470
|
export const makeCheckoutConfigurationDeleted = () => factories['io.flow.internal.v0.models.checkout_configuration_deleted']();
|
|
31784
31471
|
export const makeCheckoutConfigurationForm = () => factories['io.flow.internal.v0.models.checkout_configuration_form']();
|
|
@@ -31789,27 +31476,15 @@ export const makeCheckoutContentDetails = () => factories['io.flow.internal.v0.m
|
|
|
31789
31476
|
export const makeCheckoutContentSummary = () => factories['io.flow.internal.v0.models.checkout_content_summary']();
|
|
31790
31477
|
export const makeCheckoutError = () => factories['io.flow.internal.v0.models.checkout_error']();
|
|
31791
31478
|
export const makeCheckoutErrorCode = () => factories['io.flow.internal.v0.enums.checkout_error_code']();
|
|
31792
|
-
export const makeCheckoutFinalizeOrderForm = () => factories['io.flow.internal.v0.models.checkout_finalize_order_form']();
|
|
31793
|
-
export const makeCheckoutForm = () => factories['io.flow.internal.v0.unions.checkout_form']();
|
|
31794
31479
|
export const makeCheckoutMarketingContent = () => factories['io.flow.internal.v0.models.checkout_marketing_content']();
|
|
31795
|
-
export const makeCheckoutOrderForm = () => factories['io.flow.internal.v0.models.checkout_order_form']();
|
|
31796
|
-
export const makeCheckoutOrderNumberForm = () => factories['io.flow.internal.v0.models.checkout_order_number_form']();
|
|
31797
31480
|
export const makeCheckoutPayment = () => factories['io.flow.internal.v0.models.checkout_payment']();
|
|
31798
31481
|
export const makeCheckoutPaymentContent = () => factories['io.flow.internal.v0.models.checkout_payment_content']();
|
|
31799
31482
|
export const makeCheckoutPlatformData = () => factories['io.flow.internal.v0.models.checkout_platform_data']();
|
|
31800
31483
|
export const makeCheckoutPromptBehavior = () => factories['io.flow.internal.v0.enums.checkout_prompt_behavior']();
|
|
31801
31484
|
export const makeCheckoutRedirect = () => factories['io.flow.internal.v0.models.checkout_redirect']();
|
|
31802
31485
|
export const makeCheckoutRedirectMethod = () => factories['io.flow.internal.v0.enums.checkout_redirect_method']();
|
|
31803
|
-
export const makeCheckoutReferenceForm = () => factories['io.flow.internal.v0.models.checkout_reference_form']();
|
|
31804
31486
|
export const makeCheckoutSettings = () => factories['io.flow.internal.v0.models.checkout_settings']();
|
|
31805
31487
|
export const makeCheckoutShippingMethodPromptBehavior = () => factories['io.flow.internal.v0.enums.checkout_shipping_method_prompt_behavior']();
|
|
31806
|
-
export const makeCheckoutSourceOrderForm = () => factories['io.flow.internal.v0.models.checkout_source_order_form']();
|
|
31807
|
-
export const makeCheckoutSubmission = () => factories['io.flow.internal.v0.models.checkout_submission']();
|
|
31808
|
-
export const makeCheckoutSubmissionForm = () => factories['io.flow.internal.v0.models.checkout_submission_form']();
|
|
31809
|
-
export const makeCheckoutSubmitOrderBundle = () => factories['io.flow.internal.v0.models.checkout_submit_order_bundle']();
|
|
31810
|
-
export const makeCheckoutSubmitOrderBundles = () => factories['io.flow.internal.v0.unions.checkout_submit_order_bundles']();
|
|
31811
|
-
export const makeCheckoutSubmitOrderForm = () => factories['io.flow.internal.v0.models.checkout_submit_order_form']();
|
|
31812
|
-
export const makeCheckoutSubmitOrderForms = () => factories['io.flow.internal.v0.unions.checkout_submit_order_forms']();
|
|
31813
31488
|
export const makeCheckoutUrl = () => factories['io.flow.internal.v0.models.checkout_url']();
|
|
31814
31489
|
export const makeCheckoutUrlType = () => factories['io.flow.internal.v0.enums.checkout_url_type']();
|
|
31815
31490
|
export const makeCipher = () => factories['io.flow.internal.v0.models.cipher']();
|
|
@@ -32036,7 +31711,6 @@ export const makeEventType = () => factories['io.flow.internal.v0.enums.event_ty
|
|
|
32036
31711
|
export const makeExclusionRuleDeleted = () => factories['io.flow.internal.v0.models.exclusion_rule_deleted']();
|
|
32037
31712
|
export const makeExclusionRuleExportRequest = () => factories['io.flow.internal.v0.models.exclusion_rule_export_request']();
|
|
32038
31713
|
export const makeExclusionRuleUpserted = () => factories['io.flow.internal.v0.models.exclusion_rule_upserted']();
|
|
32039
|
-
export const makeExpectedOrderSummary = () => factories['io.flow.internal.v0.models.expected_order_summary']();
|
|
32040
31714
|
export const makeExperienceExportRequest = () => factories['io.flow.internal.v0.models.experience_export_request']();
|
|
32041
31715
|
export const makeExperienceImportRequest = () => factories['io.flow.internal.v0.models.experience_import_request']();
|
|
32042
31716
|
export const makeExperienceImportType = () => factories['io.flow.internal.v0.enums.experience_import_type']();
|
|
@@ -32089,9 +31763,6 @@ export const makeFedexCrossborder = () => factories['io.flow.internal.v0.models.
|
|
|
32089
31763
|
export const makeFee = () => factories['io.flow.internal.v0.models.fee']();
|
|
32090
31764
|
export const makeFees = () => factories['io.flow.internal.v0.models.fees']();
|
|
32091
31765
|
export const makeFeesSource = () => factories['io.flow.internal.v0.enums.fees_source']();
|
|
32092
|
-
export const makeFinalEstimate = () => factories['io.flow.internal.v0.models.final_estimate']();
|
|
32093
|
-
export const makeFinalEstimateDeleted = () => factories['io.flow.internal.v0.models.final_estimate_deleted']();
|
|
32094
|
-
export const makeFinalEstimateUpserted = () => factories['io.flow.internal.v0.models.final_estimate_upserted']();
|
|
32095
31766
|
export const makeFinanceBankAccount = () => factories['io.flow.internal.v0.models.finance_bank_account']();
|
|
32096
31767
|
export const makeFinanceBankAccountOwner = () => factories['io.flow.internal.v0.models.finance_bank_account_owner']();
|
|
32097
31768
|
export const makeFinanceBankPayment = () => factories['io.flow.internal.v0.models.finance_bank_payment']();
|
|
@@ -32167,13 +31838,11 @@ export const makeFuelSurchargeServiceFeePutForm = () => factories['io.flow.inter
|
|
|
32167
31838
|
export const makeFulfillment = () => factories['io.flow.internal.v0.models.fulfillment']();
|
|
32168
31839
|
export const makeFulfillmentActionForm = () => factories['io.flow.internal.v0.models.fulfillment_action_form']();
|
|
32169
31840
|
export const makeFulfillmentBusiness = () => factories['io.flow.internal.v0.models.fulfillment_business']();
|
|
32170
|
-
export const makeFulfillmentCancel = () => factories['io.flow.internal.v0.models.fulfillment_cancel']();
|
|
32171
31841
|
export const makeFulfillmentCarrier = () => factories['io.flow.internal.v0.models.fulfillment_carrier']();
|
|
32172
31842
|
export const makeFulfillmentDeleted = () => factories['io.flow.internal.v0.models.fulfillment_deleted']();
|
|
32173
31843
|
export const makeFulfillmentFallbacks = () => factories['io.flow.internal.v0.models.fulfillment_fallbacks']();
|
|
32174
31844
|
export const makeFulfillmentFallbacksDeleted = () => factories['io.flow.internal.v0.models.fulfillment_fallbacks_deleted']();
|
|
32175
31845
|
export const makeFulfillmentFallbacksUpserted = () => factories['io.flow.internal.v0.models.fulfillment_fallbacks_upserted']();
|
|
32176
|
-
export const makeFulfillmentInternalExperienceReference = () => factories['io.flow.internal.v0.models.fulfillment_internal_experience_reference']();
|
|
32177
31846
|
export const makeFulfillmentOrigin = () => factories['io.flow.internal.v0.models.fulfillment_origin']();
|
|
32178
31847
|
export const makeFulfillmentProof = () => factories['io.flow.internal.v0.unions.fulfillment_proof']();
|
|
32179
31848
|
export const makeFulfillmentProofExternalFulfillmentProofReference = () => factories['io.flow.internal.v0.models.fulfillment_proof_external_fulfillment_proof_reference']();
|
|
@@ -32181,7 +31850,6 @@ export const makeFulfillmentProofLabelTrackingReference = () => factories['io.fl
|
|
|
32181
31850
|
export const makeFulfillmentProofOrderCombinedShipmentReference = () => factories['io.flow.internal.v0.models.fulfillment_proof_order_combined_shipment_reference']();
|
|
32182
31851
|
export const makeFulfillmentProofShippingNotificationReference = () => factories['io.flow.internal.v0.models.fulfillment_proof_shipping_notification_reference']();
|
|
32183
31852
|
export const makeFulfillmentReference = () => factories['io.flow.internal.v0.models.fulfillment_reference']();
|
|
32184
|
-
export const makeFulfillmentShipmentTracking = () => factories['io.flow.internal.v0.models.fulfillment_shipment_tracking']();
|
|
32185
31853
|
export const makeFulfillmentShopperBreakdown = () => factories['io.flow.internal.v0.models.fulfillment_shopper_breakdown']();
|
|
32186
31854
|
export const makeFulfillmentSnapshot = () => factories['io.flow.internal.v0.models.fulfillment_snapshot']();
|
|
32187
31855
|
export const makeFulfillmentSubsidyBreakdown = () => factories['io.flow.internal.v0.models.fulfillment_subsidy_breakdown']();
|
|
@@ -32254,6 +31922,7 @@ export const makeInternalFiservAuthorizationDetails = () => factories['io.flow.i
|
|
|
32254
31922
|
export const makeInternalHarmonizationStatistic = () => factories['io.flow.internal.v0.unions.internal_harmonization_statistic']();
|
|
32255
31923
|
export const makeInternalItemForm = () => factories['io.flow.internal.v0.models.internal_item_form']();
|
|
32256
31924
|
export const makeInternalOrder = () => factories['io.flow.internal.v0.models.internal_order']();
|
|
31925
|
+
export const makeInternalPaymentEntityType = () => factories['io.flow.internal.v0.enums.internal_payment_entity_type']();
|
|
32257
31926
|
export const makeInternalPaymentRequest = () => factories['io.flow.internal.v0.models.internal_payment_request']();
|
|
32258
31927
|
export const makeInternalPaymentRequestVerification = () => factories['io.flow.internal.v0.models.internal_payment_request_verification']();
|
|
32259
31928
|
export const makeInternalPaypalAuthorizationDetails = () => factories['io.flow.internal.v0.models.internal_paypal_authorization_details']();
|
|
@@ -32261,7 +31930,6 @@ export const makeInternalRefundForm = () => factories['io.flow.internal.v0.union
|
|
|
32261
31930
|
export const makeInternalStripeAuthorizationDetails = () => factories['io.flow.internal.v0.models.internal_stripe_authorization_details']();
|
|
32262
31931
|
export const makeInternalTransactionDetails = () => factories['io.flow.internal.v0.unions.internal_transaction_details']();
|
|
32263
31932
|
export const makeInternalTransactionDetailsCard = () => factories['io.flow.internal.v0.models.internal_transaction_details_card']();
|
|
32264
|
-
export const makeInvalidCheckoutData = () => factories['io.flow.internal.v0.models.invalid_checkout_data']();
|
|
32265
31933
|
export const makeInvariant = () => factories['io.flow.internal.v0.models.invariant']();
|
|
32266
31934
|
export const makeInventoryItemWrapper = () => factories['io.flow.internal.v0.models.inventory_item_wrapper']();
|
|
32267
31935
|
export const makeInvoice = () => factories['io.flow.internal.v0.models.invoice']();
|
|
@@ -32274,7 +31942,6 @@ export const makeIssuerDeleted = () => factories['io.flow.internal.v0.models.iss
|
|
|
32274
31942
|
export const makeIssuerUpserted = () => factories['io.flow.internal.v0.models.issuer_upserted']();
|
|
32275
31943
|
export const makeItemClassification = () => factories['io.flow.internal.v0.models.item_classification']();
|
|
32276
31944
|
export const makeItemClassificationAction = () => factories['io.flow.internal.v0.enums.item_classification_action']();
|
|
32277
|
-
export const makeItemClassificationCreated = () => factories['io.flow.internal.v0.models.item_classification_created']();
|
|
32278
31945
|
export const makeItemClassificationForm = () => factories['io.flow.internal.v0.models.item_classification_form']();
|
|
32279
31946
|
export const makeItemClassificationStatus = () => factories['io.flow.internal.v0.enums.item_classification_status']();
|
|
32280
31947
|
export const makeItemClassificationSummary = () => factories['io.flow.internal.v0.models.item_classification_summary']();
|
|
@@ -32304,7 +31971,6 @@ export const makeItemSalesMarginVersion = () => factories['io.flow.internal.v0.m
|
|
|
32304
31971
|
export const makeItemSummary = () => factories['io.flow.internal.v0.models.item_summary']();
|
|
32305
31972
|
export const makeItemType = () => factories['io.flow.internal.v0.enums.item_type']();
|
|
32306
31973
|
export const makeItemValuesForm = () => factories['io.flow.internal.v0.models.item_values_form']();
|
|
32307
|
-
export const makeItemsShipped = () => factories['io.flow.internal.v0.models.items_shipped']();
|
|
32308
31974
|
export const makeJeanDemoItem = () => factories['io.flow.internal.v0.models.jean_demo_item']();
|
|
32309
31975
|
export const makeKey = () => factories['io.flow.internal.v0.models.key']();
|
|
32310
31976
|
export const makeKeyReference = () => factories['io.flow.internal.v0.models.key_reference']();
|
|
@@ -32320,7 +31986,9 @@ export const makeLabelBillingStrategy = () => factories['io.flow.internal.v0.enu
|
|
|
32320
31986
|
export const makeLabelCancellationError = () => factories['io.flow.internal.v0.models.label_cancellation_error']();
|
|
32321
31987
|
export const makeLabelCancellationErrorCode = () => factories['io.flow.internal.v0.enums.label_cancellation_error_code']();
|
|
32322
31988
|
export const makeLabelCreationJob = () => factories['io.flow.internal.v0.models.label_creation_job']();
|
|
31989
|
+
export const makeLabelCreationJobDeleted = () => factories['io.flow.internal.v0.models.label_creation_job_deleted']();
|
|
32323
31990
|
export const makeLabelCreationJobSummary = () => factories['io.flow.internal.v0.models.label_creation_job_summary']();
|
|
31991
|
+
export const makeLabelCreationJobUpserted = () => factories['io.flow.internal.v0.models.label_creation_job_upserted']();
|
|
32324
31992
|
export const makeLabelCreationRequestForm = () => factories['io.flow.internal.v0.models.label_creation_request_form']();
|
|
32325
31993
|
export const makeLabelCreationStatus = () => factories['io.flow.internal.v0.enums.label_creation_status']();
|
|
32326
31994
|
export const makeLabelDestination = () => factories['io.flow.internal.v0.models.label_destination']();
|
|
@@ -32428,6 +32096,9 @@ export const makeMerchantHubOverride = () => factories['io.flow.internal.v0.mode
|
|
|
32428
32096
|
export const makeMerchantHubOverrideForm = () => factories['io.flow.internal.v0.models.merchant_hub_override_form']();
|
|
32429
32097
|
export const makeMerchantOfRecordEntitySettings = () => factories['io.flow.internal.v0.models.merchant_of_record_entity_settings']();
|
|
32430
32098
|
export const makeMerchantOfRecordEntitySettingsForm = () => factories['io.flow.internal.v0.models.merchant_of_record_entity_settings_form']();
|
|
32099
|
+
export const makeMerchantOverride = () => factories['io.flow.internal.v0.models.merchant_override']();
|
|
32100
|
+
export const makeMerchantOverrideDecisionForm = () => factories['io.flow.internal.v0.models.merchant_override_decision_form']();
|
|
32101
|
+
export const makeMerchantOverrideStatus = () => factories['io.flow.internal.v0.enums.merchant_override_status']();
|
|
32431
32102
|
export const makeMerchantSearchResult = () => factories['io.flow.internal.v0.models.merchant_search_result']();
|
|
32432
32103
|
export const makeMerchantSubsidies = () => factories['io.flow.internal.v0.models.merchant_subsidies']();
|
|
32433
32104
|
export const makeMerchantSummary = () => factories['io.flow.internal.v0.models.merchant_summary']();
|
|
@@ -32467,10 +32138,8 @@ export const makeOptinPrompt = () => factories['io.flow.internal.v0.models.optin
|
|
|
32467
32138
|
export const makeOptinPromptCheckoutDisplay = () => factories['io.flow.internal.v0.models.optin_prompt_checkout_display']();
|
|
32468
32139
|
export const makeOptinPromptCopy = () => factories['io.flow.internal.v0.models.optin_prompt_copy']();
|
|
32469
32140
|
export const makeOptinPromptCopyForm = () => factories['io.flow.internal.v0.models.optin_prompt_copy_form']();
|
|
32470
|
-
export const makeOptinPromptDeleted = () => factories['io.flow.internal.v0.models.optin_prompt_deleted']();
|
|
32471
32141
|
export const makeOptinPromptDisplay = () => factories['io.flow.internal.v0.unions.optin_prompt_display']();
|
|
32472
32142
|
export const makeOptinPromptForm = () => factories['io.flow.internal.v0.models.optin_prompt_form']();
|
|
32473
|
-
export const makeOptinPromptUpserted = () => factories['io.flow.internal.v0.models.optin_prompt_upserted']();
|
|
32474
32143
|
export const makeOrderAction = () => factories['io.flow.internal.v0.enums.order_action']();
|
|
32475
32144
|
export const makeOrderActionForm = () => factories['io.flow.internal.v0.unions.order_action_form']();
|
|
32476
32145
|
export const makeOrderActionability = () => factories['io.flow.internal.v0.models.order_actionability']();
|
|
@@ -32499,9 +32168,7 @@ export const makeOrderFulfillmentUpserted = () => factories['io.flow.internal.v0
|
|
|
32499
32168
|
export const makeOrderLifecycleEvent = () => factories['io.flow.internal.v0.enums.order_lifecycle_event']();
|
|
32500
32169
|
export const makeOrderNote = () => factories['io.flow.internal.v0.models.order_note']();
|
|
32501
32170
|
export const makeOrderNoteForm = () => factories['io.flow.internal.v0.models.order_note_form']();
|
|
32502
|
-
export const makeOrderParameters = () => factories['io.flow.internal.v0.models.order_parameters']();
|
|
32503
32171
|
export const makeOrderPaymentAuthorization = () => factories['io.flow.internal.v0.models.order_payment_authorization']();
|
|
32504
|
-
export const makeOrderPlaced = () => factories['io.flow.internal.v0.models.order_placed']();
|
|
32505
32172
|
export const makeOrderRatesDataV3 = () => factories['io.flow.internal.v0.models.order_rates_data_v3']();
|
|
32506
32173
|
export const makeOrderRatesPublishedV3 = () => factories['io.flow.internal.v0.models.order_rates_published_v3']();
|
|
32507
32174
|
export const makeOrderReference = () => factories['io.flow.internal.v0.models.order_reference']();
|
|
@@ -32510,7 +32177,6 @@ export const makeOrderRevenueRegionDataPoint = () => factories['io.flow.internal
|
|
|
32510
32177
|
export const makeOrderRevenueTimelineChart = () => factories['io.flow.internal.v0.models.order_revenue_timeline_chart']();
|
|
32511
32178
|
export const makeOrderRevenueTimelineDataPoint = () => factories['io.flow.internal.v0.models.order_revenue_timeline_data_point']();
|
|
32512
32179
|
export const makeOrderServiceChangeCsvForm = () => factories['io.flow.internal.v0.models.order_service_change_csv_form']();
|
|
32513
|
-
export const makeOrderShipped = () => factories['io.flow.internal.v0.models.order_shipped']();
|
|
32514
32180
|
export const makeOrderSubmissionForm = () => factories['io.flow.internal.v0.models.order_submission_form']();
|
|
32515
32181
|
export const makeOrderSummary = () => factories['io.flow.internal.v0.models.order_summary']();
|
|
32516
32182
|
export const makeOrderTaxAndDutyInclusivitySetting = () => factories['io.flow.internal.v0.models.order_tax_and_duty_inclusivity_setting']();
|
|
@@ -32684,8 +32350,6 @@ export const makePlatformFeePercentage = () => factories['io.flow.internal.v0.mo
|
|
|
32684
32350
|
export const makePlatformFeePercentageTier = () => factories['io.flow.internal.v0.models.platform_fee_percentage_tier']();
|
|
32685
32351
|
export const makePrediction = () => factories['io.flow.internal.v0.models.prediction']();
|
|
32686
32352
|
export const makePreferredBillingSchedule = () => factories['io.flow.internal.v0.enums.preferred_billing_schedule']();
|
|
32687
|
-
export const makePregeneratedQuote = () => factories['io.flow.internal.v0.models.pregenerated_quote']();
|
|
32688
|
-
export const makePregeneratedRequestEvent = () => factories['io.flow.internal.v0.models.pregenerated_request_event']();
|
|
32689
32353
|
export const makePriceSelector = () => factories['io.flow.internal.v0.enums.price_selector']();
|
|
32690
32354
|
export const makePrioritizedCenterReference = () => factories['io.flow.internal.v0.models.prioritized_center_reference']();
|
|
32691
32355
|
export const makeProcessingTransaction = () => factories['io.flow.internal.v0.models.processing_transaction']();
|
|
@@ -32742,8 +32406,6 @@ export const makePublicHub = () => factories['io.flow.internal.v0.models.public_
|
|
|
32742
32406
|
export const makePublicHubForm = () => factories['io.flow.internal.v0.models.public_hub_form']();
|
|
32743
32407
|
export const makeQuote = () => factories['io.flow.internal.v0.models.quote']();
|
|
32744
32408
|
export const makeQuoteDeleted = () => factories['io.flow.internal.v0.models.quote_deleted']();
|
|
32745
|
-
export const makeQuoteRequest = () => factories['io.flow.internal.v0.models.quote_request']();
|
|
32746
|
-
export const makeQuoteRequestType = () => factories['io.flow.internal.v0.enums.quote_request_type']();
|
|
32747
32409
|
export const makeQuoteUpserted = () => factories['io.flow.internal.v0.models.quote_upserted']();
|
|
32748
32410
|
export const makeRateAndRuleItem = () => factories['io.flow.internal.v0.models.rate_and_rule_item']();
|
|
32749
32411
|
export const makeRateAndRuleItemForm = () => factories['io.flow.internal.v0.models.rate_and_rule_item_form']();
|
|
@@ -32778,9 +32440,6 @@ export const makeRatecardDimensionEstimateDeleted = () => factories['io.flow.int
|
|
|
32778
32440
|
export const makeRatecardDimensionEstimateUpserted = () => factories['io.flow.internal.v0.models.ratecard_dimension_estimate_upserted']();
|
|
32779
32441
|
export const makeRatecardInternalServiceFee = () => factories['io.flow.internal.v0.models.ratecard_internal_service_fee']();
|
|
32780
32442
|
export const makeRatecardInternalSummary = () => factories['io.flow.internal.v0.models.ratecard_internal_summary']();
|
|
32781
|
-
export const makeRatecardLaneAggregate = () => factories['io.flow.internal.v0.models.ratecard_lane_aggregate']();
|
|
32782
|
-
export const makeRatecardLaneAggregateDeleted = () => factories['io.flow.internal.v0.models.ratecard_lane_aggregate_deleted']();
|
|
32783
|
-
export const makeRatecardLaneAggregateUpserted = () => factories['io.flow.internal.v0.models.ratecard_lane_aggregate_upserted']();
|
|
32784
32443
|
export const makeRatecardLanesImportRequest = () => factories['io.flow.internal.v0.models.ratecard_lanes_import_request']();
|
|
32785
32444
|
export const makeRatecardRateLevelDeleted = () => factories['io.flow.internal.v0.models.ratecard_rate_level_deleted']();
|
|
32786
32445
|
export const makeRatecardRateLevelOrganizationDeleted = () => factories['io.flow.internal.v0.models.ratecard_rate_level_organization_deleted']();
|
|
@@ -32799,7 +32458,6 @@ export const makeRatecardStandardConfigurationUpserted = () => factories['io.flo
|
|
|
32799
32458
|
export const makeRatecardStandardSettings = () => factories['io.flow.internal.v0.models.ratecard_standard_settings']();
|
|
32800
32459
|
export const makeRatesChanged = () => factories['io.flow.internal.v0.models.rates_changed']();
|
|
32801
32460
|
export const makeRatesNamesSummary = () => factories['io.flow.internal.v0.models.rates_names_summary']();
|
|
32802
|
-
export const makeReadyToFulfill = () => factories['io.flow.internal.v0.models.ready_to_fulfill']();
|
|
32803
32461
|
export const makeReboundConfiguration = () => factories['io.flow.internal.v0.models.rebound_configuration']();
|
|
32804
32462
|
export const makeReboundConfigurationForm = () => factories['io.flow.internal.v0.models.rebound_configuration_form']();
|
|
32805
32463
|
export const makeReboundConfigurationStatus = () => factories['io.flow.internal.v0.enums.rebound_configuration_status']();
|
|
@@ -32815,6 +32473,9 @@ export const makeReport = () => factories['io.flow.internal.v0.models.report']()
|
|
|
32815
32473
|
export const makeReportAccount = () => factories['io.flow.internal.v0.models.report_account']();
|
|
32816
32474
|
export const makeReportBankAccount = () => factories['io.flow.internal.v0.models.report_bank_account']();
|
|
32817
32475
|
export const makeReportBankAccountCleartext = () => factories['io.flow.internal.v0.models.report_bank_account_cleartext']();
|
|
32476
|
+
export const makeReportFile = () => factories['io.flow.internal.v0.models.report_file']();
|
|
32477
|
+
export const makeReportFileStatus = () => factories['io.flow.internal.v0.enums.report_file_status']();
|
|
32478
|
+
export const makeReportFileType = () => factories['io.flow.internal.v0.enums.report_file_type']();
|
|
32818
32479
|
export const makeReportFilter = () => factories['io.flow.internal.v0.models.report_filter']();
|
|
32819
32480
|
export const makeReportForm = () => factories['io.flow.internal.v0.models.report_form']();
|
|
32820
32481
|
export const makeReportInterval = () => factories['io.flow.internal.v0.enums.report_interval']();
|
|
@@ -32824,6 +32485,8 @@ export const makeReportOrganizationReference = () => factories['io.flow.internal
|
|
|
32824
32485
|
export const makeReportOwner = () => factories['io.flow.internal.v0.models.report_owner']();
|
|
32825
32486
|
export const makeReportPayment = () => factories['io.flow.internal.v0.models.report_payment']();
|
|
32826
32487
|
export const makeReportPaymentType = () => factories['io.flow.internal.v0.enums.report_payment_type']();
|
|
32488
|
+
export const makeReportRecordError = () => factories['io.flow.internal.v0.models.report_record_error']();
|
|
32489
|
+
export const makeReportRecordRetryQueue = () => factories['io.flow.internal.v0.models.report_record_retry_queue']();
|
|
32827
32490
|
export const makeReportRuleDecision = () => factories['io.flow.internal.v0.models.report_rule_decision']();
|
|
32828
32491
|
export const makeReportStatus = () => factories['io.flow.internal.v0.enums.report_status']();
|
|
32829
32492
|
export const makeReportSummary = () => factories['io.flow.internal.v0.models.report_summary']();
|
|
@@ -32950,7 +32613,6 @@ export const makeSessionRollout = () => factories['io.flow.internal.v0.models.se
|
|
|
32950
32613
|
export const makeSessionRolloutForm = () => factories['io.flow.internal.v0.models.session_rollout_form']();
|
|
32951
32614
|
export const makeSetupBlockPutForm = () => factories['io.flow.internal.v0.models.setup_block_put_form']();
|
|
32952
32615
|
export const makeSfExpress = () => factories['io.flow.internal.v0.models.sf_express']();
|
|
32953
|
-
export const makeShippedItemValue = () => factories['io.flow.internal.v0.models.shipped_item_value']();
|
|
32954
32616
|
export const makeShippingLane = () => factories['io.flow.internal.v0.models.shipping_lane']();
|
|
32955
32617
|
export const makeShippingMethodReference = () => factories['io.flow.internal.v0.models.shipping_method_reference']();
|
|
32956
32618
|
export const makeShop = () => factories['io.flow.internal.v0.models.shop']();
|
|
@@ -33018,6 +32680,9 @@ export const makeShopifyMarketsTradeSector = () => factories['io.flow.internal.v
|
|
|
33018
32680
|
export const makeShopifyMarketsWebhookRegistration = () => factories['io.flow.internal.v0.models.shopify_markets_webhook_registration']();
|
|
33019
32681
|
export const makeShopifyMarketsWebhookRegistrationDeleted = () => factories['io.flow.internal.v0.models.shopify_markets_webhook_registration_deleted']();
|
|
33020
32682
|
export const makeShopifyMarketsWebhookRegistrationUpserted = () => factories['io.flow.internal.v0.models.shopify_markets_webhook_registration_upserted']();
|
|
32683
|
+
export const makeShopifyMerchantPlan = () => factories['io.flow.internal.v0.models.shopify_merchant_plan']();
|
|
32684
|
+
export const makeShopifyMerchantPlanDeleted = () => factories['io.flow.internal.v0.models.shopify_merchant_plan_deleted']();
|
|
32685
|
+
export const makeShopifyMerchantPlanUpserted = () => factories['io.flow.internal.v0.models.shopify_merchant_plan_upserted']();
|
|
33021
32686
|
export const makeShopifyMetadata = () => factories['io.flow.internal.v0.models.shopify_metadata']();
|
|
33022
32687
|
export const makeShopifyMonitoringCarrierService = () => factories['io.flow.internal.v0.models.shopify_monitoring_carrier_service']();
|
|
33023
32688
|
export const makeShopifyMonitoringFulfillmentExternal = () => factories['io.flow.internal.v0.models.shopify_monitoring_fulfillment_external']();
|
|
@@ -33049,6 +32714,7 @@ export const makeShopifyOrganizationSettingsForm = () => factories['io.flow.inte
|
|
|
33049
32714
|
export const makeShopifyPartnerWebhook = () => factories['io.flow.internal.v0.models.shopify_partner_webhook']();
|
|
33050
32715
|
export const makeShopifyPartnerWebhookRaw = () => factories['io.flow.internal.v0.models.shopify_partner_webhook_raw']();
|
|
33051
32716
|
export const makeShopifyPaymentSummary = () => factories['io.flow.internal.v0.models.shopify_payment_summary']();
|
|
32717
|
+
export const makeShopifyPlanType = () => factories['io.flow.internal.v0.enums.shopify_plan_type']();
|
|
33052
32718
|
export const makeShopifyProductBundle = () => factories['io.flow.internal.v0.models.shopify_product_bundle']();
|
|
33053
32719
|
export const makeShopifyProductBundleDeleted = () => factories['io.flow.internal.v0.models.shopify_product_bundle_deleted']();
|
|
33054
32720
|
export const makeShopifyProductBundleUnderlying = () => factories['io.flow.internal.v0.models.shopify_product_bundle_underlying']();
|
|
@@ -33148,6 +32814,9 @@ export const makeStripeAuthorizationDeleted = () => factories['io.flow.internal.
|
|
|
33148
32814
|
export const makeStripeAuthorizationUpserted = () => factories['io.flow.internal.v0.models.stripe_authorization_upserted']();
|
|
33149
32815
|
export const makeStripeCaptureDeleted = () => factories['io.flow.internal.v0.models.stripe_capture_deleted']();
|
|
33150
32816
|
export const makeStripeCaptureUpserted = () => factories['io.flow.internal.v0.models.stripe_capture_upserted']();
|
|
32817
|
+
export const makeStripeConnectReportRecord = () => factories['io.flow.internal.v0.models.stripe_connect_report_record']();
|
|
32818
|
+
export const makeStripeConnectReportRecordDeleted = () => factories['io.flow.internal.v0.models.stripe_connect_report_record_deleted']();
|
|
32819
|
+
export const makeStripeConnectReportRecordUpserted = () => factories['io.flow.internal.v0.models.stripe_connect_report_record_upserted']();
|
|
33151
32820
|
export const makeStripeDisputeDeleted = () => factories['io.flow.internal.v0.models.stripe_dispute_deleted']();
|
|
33152
32821
|
export const makeStripeDisputeUpserted = () => factories['io.flow.internal.v0.models.stripe_dispute_upserted']();
|
|
33153
32822
|
export const makeStripeInternalAuthorization = () => factories['io.flow.internal.v0.models.stripe_internal_authorization']();
|
|
@@ -33192,11 +32861,6 @@ export const makeTaxCalculationErrorCode = () => factories['io.flow.internal.v0.
|
|
|
33192
32861
|
export const makeTaxCalculationForm = () => factories['io.flow.internal.v0.models.tax_calculation_form']();
|
|
33193
32862
|
export const makeTaxCalculationLineItem = () => factories['io.flow.internal.v0.models.tax_calculation_line_item']();
|
|
33194
32863
|
export const makeTaxCalculationLineItemForm = () => factories['io.flow.internal.v0.models.tax_calculation_line_item_form']();
|
|
33195
|
-
export const makeTaxDutyDeltaMetadataActual = () => factories['io.flow.internal.v0.models.tax_duty_delta_metadata_actual']();
|
|
33196
|
-
export const makeTaxDutyDeltaMetadataActualProcessing = () => factories['io.flow.internal.v0.models.tax_duty_delta_metadata_actual_processing']();
|
|
33197
|
-
export const makeTaxDutyDeltaMetadataExpected = () => factories['io.flow.internal.v0.models.tax_duty_delta_metadata_expected']();
|
|
33198
|
-
export const makeTaxDutyDeltaMetadataExpectedProcessing = () => factories['io.flow.internal.v0.models.tax_duty_delta_metadata_expected_processing']();
|
|
33199
|
-
export const makeTaxDutyDeltaTransaction = () => factories['io.flow.internal.v0.models.tax_duty_delta_transaction']();
|
|
33200
32864
|
export const makeTaxParty = () => factories['io.flow.internal.v0.enums.tax_party']();
|
|
33201
32865
|
export const makeTaxRemittanceTransaction = () => factories['io.flow.internal.v0.models.tax_remittance_transaction']();
|
|
33202
32866
|
export const makeTaxRemittanceTransactionDeleted = () => factories['io.flow.internal.v0.models.tax_remittance_transaction_deleted']();
|