@flowio/api-internal-factories 0.0.121 → 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 +262 -233
- package/dist/esm/api-internal.js +209 -179
- package/dist/types/api-internal.d.ts +16 -17
- package/package.json +2 -2
- package/src/api-internal.ts +228 -206
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']),
|
|
@@ -2259,6 +2258,9 @@ const factories = {
|
|
|
2259
2258
|
'inch',
|
|
2260
2259
|
'foot',
|
|
2261
2260
|
'cubic_inch',
|
|
2261
|
+
'cubic_foot',
|
|
2262
|
+
'cubic_millimeter',
|
|
2263
|
+
'cubic_centimeter',
|
|
2262
2264
|
'cubic_meter',
|
|
2263
2265
|
'gram',
|
|
2264
2266
|
'kilogram',
|
|
@@ -3029,7 +3031,7 @@ const factories = {
|
|
|
3029
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']),
|
|
3030
3032
|
'io.flow.experience.v0.enums.order_status': (): io.flow.experience.v0.enums.OrderStatus => faker.helpers.arrayElement(['open', 'submitted']),
|
|
3031
3033
|
'io.flow.experience.v0.enums.order_storage': (): io.flow.experience.v0.enums.OrderStorage => faker.helpers.arrayElement(['do_not_persist', 'persist']),
|
|
3032
|
-
'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']),
|
|
3033
3035
|
'io.flow.experience.v0.enums.organization_payment_method_tag': (): io.flow.experience.v0.enums.OrganizationPaymentMethodTag => faker.helpers.arrayElement(['deny']),
|
|
3034
3036
|
'io.flow.experience.v0.enums.payment_method_rule_content_key': (): io.flow.experience.v0.enums.PaymentMethodRuleContentKey => faker.helpers.arrayElement(['description']),
|
|
3035
3037
|
'io.flow.experience.v0.enums.price_facet_boundary': (): io.flow.experience.v0.enums.PriceFacetBoundary => faker.helpers.arrayElement(['min', 'max']),
|
|
@@ -6846,7 +6848,6 @@ const factories = {
|
|
|
6846
6848
|
'tax_refund',
|
|
6847
6849
|
'duty_refund',
|
|
6848
6850
|
'ge_revenue_share',
|
|
6849
|
-
'tax_duty_delta',
|
|
6850
6851
|
]),
|
|
6851
6852
|
|
|
6852
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']),
|
|
@@ -7001,10 +7002,6 @@ const factories = {
|
|
|
7001
7002
|
'io.flow.internal.v0.enums.erp_file_type': (): io.flow.internal.v0.enums.ErpFileType => faker.helpers.arrayElement(['vendor']),
|
|
7002
7003
|
|
|
7003
7004
|
'io.flow.internal.v0.enums.event_type': (): io.flow.internal.v0.enums.EventType => faker.helpers.arrayElement([
|
|
7004
|
-
'adjusted_estimates_upserted',
|
|
7005
|
-
'adjusted_estimates_deleted',
|
|
7006
|
-
'shipping_estimate_upserted',
|
|
7007
|
-
'shipping_estimate_deleted',
|
|
7008
7005
|
'adyen_authorization_deleted',
|
|
7009
7006
|
'adyen_authorization_upserted',
|
|
7010
7007
|
'adyen_cancel_deleted',
|
|
@@ -7203,6 +7200,8 @@ const factories = {
|
|
|
7203
7200
|
'order_validation_failure_deleted',
|
|
7204
7201
|
'order_validation_upserted',
|
|
7205
7202
|
'order_validation_deleted',
|
|
7203
|
+
'label_creation_job_upserted',
|
|
7204
|
+
'label_creation_job_deleted',
|
|
7206
7205
|
'label_tracking_summary_upserted',
|
|
7207
7206
|
'label_tracking_summary_deleted',
|
|
7208
7207
|
'logistics_capabilities_upserted',
|
|
@@ -7212,11 +7211,6 @@ const factories = {
|
|
|
7212
7211
|
'order_combined_shipment_deleted',
|
|
7213
7212
|
'order_fulfillment_deleted',
|
|
7214
7213
|
'order_fulfillment_upserted',
|
|
7215
|
-
'order_placed',
|
|
7216
|
-
'ready_to_fulfill',
|
|
7217
|
-
'fulfillment_cancel',
|
|
7218
|
-
'order_shipped',
|
|
7219
|
-
'items_shipped',
|
|
7220
7214
|
'organization_business_entity_deleted',
|
|
7221
7215
|
'organization_business_entity_upserted',
|
|
7222
7216
|
'organization_status_change_upserted',
|
|
@@ -7332,6 +7326,8 @@ const factories = {
|
|
|
7332
7326
|
'shopify_monitoring_order_monitor_event_deleted',
|
|
7333
7327
|
'shopify_order_fulfillments_snapshot_upserted',
|
|
7334
7328
|
'shopify_order_fulfillments_snapshot_deleted',
|
|
7329
|
+
'shopify_merchant_plan_upserted',
|
|
7330
|
+
'shopify_merchant_plan_deleted',
|
|
7335
7331
|
'stripe_authorization_deleted',
|
|
7336
7332
|
'stripe_authorization_upserted',
|
|
7337
7333
|
'stripe_reversal_deleted',
|
|
@@ -7342,6 +7338,8 @@ const factories = {
|
|
|
7342
7338
|
'stripe_refund_upserted',
|
|
7343
7339
|
'stripe_dispute_upserted',
|
|
7344
7340
|
'stripe_dispute_deleted',
|
|
7341
|
+
'stripe_connect_report_record_upserted',
|
|
7342
|
+
'stripe_connect_report_record_deleted',
|
|
7345
7343
|
'liability_remittance_plan_upserted',
|
|
7346
7344
|
'liability_remittance_plan_deleted',
|
|
7347
7345
|
'tracking_processing_error_upserted',
|
|
@@ -7405,8 +7403,9 @@ const factories = {
|
|
|
7405
7403
|
'shopify_webhook',
|
|
7406
7404
|
]),
|
|
7407
7405
|
|
|
7408
|
-
'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']),
|
|
7409
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']),
|
|
7410
7409
|
'io.flow.internal.v0.enums.item_classification_action': (): io.flow.internal.v0.enums.ItemClassificationAction => faker.helpers.arrayElement(['ACCEPT', 'MANUAL', 'REJECT']),
|
|
7411
7410
|
|
|
7412
7411
|
'io.flow.internal.v0.enums.item_classification_status': (): io.flow.internal.v0.enums.ItemClassificationStatus => faker.helpers.arrayElement([
|
|
@@ -7476,6 +7475,7 @@ const factories = {
|
|
|
7476
7475
|
'non_fraud_chargeback',
|
|
7477
7476
|
]),
|
|
7478
7477
|
|
|
7478
|
+
'io.flow.internal.v0.enums.merchant_override_status': (): io.flow.internal.v0.enums.MerchantOverrideStatus => faker.helpers.arrayElement(['in_review', 'accepted', 'rejected']),
|
|
7479
7479
|
'io.flow.internal.v0.enums.mixed_bag_weight': (): io.flow.internal.v0.enums.MixedBagWeight => faker.helpers.arrayElement(['0', '1', '2']),
|
|
7480
7480
|
|
|
7481
7481
|
'io.flow.internal.v0.enums.nature_of_sale': (): io.flow.internal.v0.enums.NatureOfSale => faker.helpers.arrayElement([
|
|
@@ -7642,6 +7642,8 @@ const factories = {
|
|
|
7642
7642
|
'suspicious_past_activity',
|
|
7643
7643
|
]),
|
|
7644
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']),
|
|
7645
7647
|
'io.flow.internal.v0.enums.report_interval': (): io.flow.internal.v0.enums.ReportInterval => faker.helpers.arrayElement(['hourly', 'daily', 'weekly', 'monthly']),
|
|
7646
7648
|
'io.flow.internal.v0.enums.report_payment_type': (): io.flow.internal.v0.enums.ReportPaymentType => faker.helpers.arrayElement(['credit', 'debit']),
|
|
7647
7649
|
'io.flow.internal.v0.enums.report_status': (): io.flow.internal.v0.enums.ReportStatus => faker.helpers.arrayElement(['created', 'completed', 'completed_no_records', 'failed']),
|
|
@@ -8081,29 +8083,6 @@ const factories = {
|
|
|
8081
8083
|
province_code: factories['io.flow.internal.v0.enums.address_configuration_setting_province_code'](),
|
|
8082
8084
|
}),
|
|
8083
8085
|
|
|
8084
|
-
'io.flow.internal.v0.models.adjusted_estimates': (): io.flow.internal.v0.models.AdjustedEstimates => ({
|
|
8085
|
-
id: factories.string(),
|
|
8086
|
-
organization_id: factories.string(),
|
|
8087
|
-
label_id: factories.string(),
|
|
8088
|
-
estimates: arrayOf(() => factories['io.flow.label.v0.models.shipping_label_hop_summary']()),
|
|
8089
|
-
}),
|
|
8090
|
-
|
|
8091
|
-
'io.flow.internal.v0.models.adjusted_estimates_deleted': (): io.flow.internal.v0.models.AdjustedEstimatesDeleted => ({
|
|
8092
|
-
discriminator: 'adjusted_estimates_deleted',
|
|
8093
|
-
event_id: factories.string(),
|
|
8094
|
-
timestamp: factories.date_time_iso_8601(),
|
|
8095
|
-
organization: factories.string(),
|
|
8096
|
-
id: factories.string(),
|
|
8097
|
-
}),
|
|
8098
|
-
|
|
8099
|
-
'io.flow.internal.v0.models.adjusted_estimates_upserted': (): io.flow.internal.v0.models.AdjustedEstimatesUpserted => ({
|
|
8100
|
-
discriminator: 'adjusted_estimates_upserted',
|
|
8101
|
-
event_id: factories.string(),
|
|
8102
|
-
timestamp: factories.date_time_iso_8601(),
|
|
8103
|
-
organization: factories.string(),
|
|
8104
|
-
adjusted_estimates: factories['io.flow.internal.v0.models.adjusted_estimates'](),
|
|
8105
|
-
}),
|
|
8106
|
-
|
|
8107
8086
|
'io.flow.internal.v0.models.adjustment_amount_fixed': (): io.flow.internal.v0.models.AdjustmentAmountFixed => ({
|
|
8108
8087
|
discriminator: 'fixed',
|
|
8109
8088
|
amount: factories['io.flow.common.v0.models.money'](),
|
|
@@ -12335,22 +12314,6 @@ const factories = {
|
|
|
12335
12314
|
vat_registration_number: factories.string(),
|
|
12336
12315
|
}),
|
|
12337
12316
|
|
|
12338
|
-
'io.flow.internal.v0.models.fulfillment_cancel': (): io.flow.internal.v0.models.FulfillmentCancel => ({
|
|
12339
|
-
discriminator: 'fulfillment_cancel',
|
|
12340
|
-
event_id: factories.string(),
|
|
12341
|
-
timestamp: factories.date_time_iso_8601(),
|
|
12342
|
-
organization: factories.string(),
|
|
12343
|
-
order_number: factories.string(),
|
|
12344
|
-
order: factories['io.flow.experience.v0.models.order'](),
|
|
12345
|
-
fulfillments: arrayOf(() => factories['io.flow.order.management.v0.models.fulfillment']()),
|
|
12346
|
-
change_source: factories['io.flow.order.management.v0.enums.order_change_source'](),
|
|
12347
|
-
reason: factories['io.flow.order.management.v0.enums.cancel_reason'](),
|
|
12348
|
-
|
|
12349
|
-
cancelled_lines: arrayOf(
|
|
12350
|
-
() => factories['io.flow.order.management.v0.models.fulfillment_line_cancel_form'](),
|
|
12351
|
-
),
|
|
12352
|
-
}),
|
|
12353
|
-
|
|
12354
12317
|
'io.flow.internal.v0.models.fulfillment_carrier': (): io.flow.internal.v0.models.FulfillmentCarrier => ({
|
|
12355
12318
|
id: factories.string(),
|
|
12356
12319
|
service_id: factories.string(),
|
|
@@ -12437,14 +12400,6 @@ const factories = {
|
|
|
12437
12400
|
id: factories.string(),
|
|
12438
12401
|
}),
|
|
12439
12402
|
|
|
12440
|
-
'io.flow.internal.v0.models.fulfillment_shipment_tracking': (): io.flow.internal.v0.models.FulfillmentShipmentTracking => ({
|
|
12441
|
-
fulfillment_key: factories.string(),
|
|
12442
|
-
flow_tracking_number: factories.string(),
|
|
12443
|
-
carrier_tracking_number: factories.string(),
|
|
12444
|
-
carrier_tracking_url: factories.string(),
|
|
12445
|
-
items: arrayOf(() => factories['io.flow.order.management.v0.models.fulfillment_item']()),
|
|
12446
|
-
}),
|
|
12447
|
-
|
|
12448
12403
|
'io.flow.internal.v0.models.fulfillment_shopper_breakdown': (): io.flow.internal.v0.models.FulfillmentShopperBreakdown => ({
|
|
12449
12404
|
shipping: factories['io.flow.internal.v0.models.reporting_monetary_value'](),
|
|
12450
12405
|
fees: factories['io.flow.internal.v0.models.reporting_shopper_fees'](),
|
|
@@ -13198,18 +13153,6 @@ const factories = {
|
|
|
13198
13153
|
values: arrayOf(() => factories.string()),
|
|
13199
13154
|
}),
|
|
13200
13155
|
|
|
13201
|
-
'io.flow.internal.v0.models.items_shipped': (): io.flow.internal.v0.models.ItemsShipped => ({
|
|
13202
|
-
discriminator: 'items_shipped',
|
|
13203
|
-
event_id: factories.string(),
|
|
13204
|
-
timestamp: factories.date_time_iso_8601(),
|
|
13205
|
-
organization: factories.string(),
|
|
13206
|
-
order_number: factories.string(),
|
|
13207
|
-
order: factories['io.flow.experience.v0.models.order'](),
|
|
13208
|
-
fulfillments: arrayOf(() => factories['io.flow.order.management.v0.models.fulfillment']()),
|
|
13209
|
-
flow_tracking_number: factories.string(),
|
|
13210
|
-
shipped_item_values: arrayOf(() => factories['io.flow.internal.v0.models.shipped_item_value']()),
|
|
13211
|
-
}),
|
|
13212
|
-
|
|
13213
13156
|
'io.flow.internal.v0.models.jean_demo_item': (): io.flow.internal.v0.models.JeanDemoItem => ({
|
|
13214
13157
|
id: factories.string(),
|
|
13215
13158
|
name: factories.string(),
|
|
@@ -13280,14 +13223,31 @@ const factories = {
|
|
|
13280
13223
|
service_id: factories.string(),
|
|
13281
13224
|
carrier_tracking_number: factories.string(),
|
|
13282
13225
|
flow_tracking_number: factories.string(),
|
|
13226
|
+
label_id: factories.string(),
|
|
13283
13227
|
errors: arrayOf(() => factories.string()),
|
|
13284
13228
|
}),
|
|
13285
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
|
+
|
|
13286
13238
|
'io.flow.internal.v0.models.label_creation_job_summary': (): io.flow.internal.v0.models.LabelCreationJobSummary => ({
|
|
13287
13239
|
reference_id: factories.string(),
|
|
13288
13240
|
status: factories['io.flow.internal.v0.enums.label_creation_status'](),
|
|
13289
13241
|
}),
|
|
13290
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
|
+
|
|
13291
13251
|
'io.flow.internal.v0.models.label_creation_request_form': (): io.flow.internal.v0.models.LabelCreationRequestForm => ({
|
|
13292
13252
|
organization: factories.string(),
|
|
13293
13253
|
shipping_label_form: factories['io.flow.label.v0.unions.shipping_label_form'](),
|
|
@@ -13410,6 +13370,7 @@ const factories = {
|
|
|
13410
13370
|
destination_country: factories.string(),
|
|
13411
13371
|
reference_id: factories.string(),
|
|
13412
13372
|
logistics_integration_provider: factories.string(),
|
|
13373
|
+
tax_lrp_liabilities: arrayOf(() => factories['io.flow.internal.v0.models.liability']()),
|
|
13413
13374
|
}),
|
|
13414
13375
|
|
|
13415
13376
|
'io.flow.internal.v0.models.label_summary': (): io.flow.internal.v0.models.LabelSummary => ({
|
|
@@ -13834,6 +13795,7 @@ const factories = {
|
|
|
13834
13795
|
paid_at: factories.date_time_iso_8601(),
|
|
13835
13796
|
posted_at: factories.date_time_iso_8601(),
|
|
13836
13797
|
statement: factories['io.flow.internal.v0.models.billing_statement_reference'](),
|
|
13798
|
+
channel_statement: factories['io.flow.internal.v0.models.billing_statement_reference'](),
|
|
13837
13799
|
created_at: factories.date_time_iso_8601(),
|
|
13838
13800
|
original_at: factories.date_time_iso_8601(),
|
|
13839
13801
|
}),
|
|
@@ -14044,6 +14006,19 @@ const factories = {
|
|
|
14044
14006
|
currency: factories.string(),
|
|
14045
14007
|
}),
|
|
14046
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
|
+
|
|
14047
14022
|
'io.flow.internal.v0.models.merchant_search_result': (): io.flow.internal.v0.models.MerchantSearchResult => ({
|
|
14048
14023
|
organization_id: factories.string(),
|
|
14049
14024
|
shop_name: factories.string(),
|
|
@@ -14432,16 +14407,6 @@ const factories = {
|
|
|
14432
14407
|
placeholder: factories.string(),
|
|
14433
14408
|
}),
|
|
14434
14409
|
|
|
14435
|
-
'io.flow.internal.v0.models.order_placed': (): io.flow.internal.v0.models.OrderPlaced => ({
|
|
14436
|
-
discriminator: 'order_placed',
|
|
14437
|
-
event_id: factories.string(),
|
|
14438
|
-
timestamp: factories.date_time_iso_8601(),
|
|
14439
|
-
organization: factories.string(),
|
|
14440
|
-
order_number: factories.string(),
|
|
14441
|
-
order: factories['io.flow.experience.v0.models.order'](),
|
|
14442
|
-
allocation: factories['io.flow.experience.v0.models.allocation_v2'](),
|
|
14443
|
-
}),
|
|
14444
|
-
|
|
14445
14410
|
'io.flow.internal.v0.models.order_rates_data_v3': (): io.flow.internal.v0.models.OrderRatesDataV3 => ({
|
|
14446
14411
|
organization: factories.string(),
|
|
14447
14412
|
order_id: factories.string(),
|
|
@@ -14500,20 +14465,6 @@ const factories = {
|
|
|
14500
14465
|
to_service_id: factories.string(),
|
|
14501
14466
|
}),
|
|
14502
14467
|
|
|
14503
|
-
'io.flow.internal.v0.models.order_shipped': (): io.flow.internal.v0.models.OrderShipped => ({
|
|
14504
|
-
discriminator: 'order_shipped',
|
|
14505
|
-
event_id: factories.string(),
|
|
14506
|
-
timestamp: factories.date_time_iso_8601(),
|
|
14507
|
-
organization: factories.string(),
|
|
14508
|
-
order_number: factories.string(),
|
|
14509
|
-
order: factories['io.flow.experience.v0.models.order'](),
|
|
14510
|
-
fulfillments: arrayOf(() => factories['io.flow.order.management.v0.models.fulfillment']()),
|
|
14511
|
-
|
|
14512
|
-
shipment_trackings: arrayOf(
|
|
14513
|
-
() => factories['io.flow.internal.v0.models.fulfillment_shipment_tracking'](),
|
|
14514
|
-
),
|
|
14515
|
-
}),
|
|
14516
|
-
|
|
14517
14468
|
'io.flow.internal.v0.models.order_submission_form': (): io.flow.internal.v0.models.OrderSubmissionForm => ({
|
|
14518
14469
|
authorization: factories['io.flow.payment.v0.unions.authorization_form'](),
|
|
14519
14470
|
}),
|
|
@@ -16433,20 +16384,6 @@ const factories = {
|
|
|
16433
16384
|
summaries: arrayOf(() => factories['io.flow.internal.v0.models.rate_name_summary']()),
|
|
16434
16385
|
}),
|
|
16435
16386
|
|
|
16436
|
-
'io.flow.internal.v0.models.ready_to_fulfill': (): io.flow.internal.v0.models.ReadyToFulfill => ({
|
|
16437
|
-
discriminator: 'ready_to_fulfill',
|
|
16438
|
-
event_id: factories.string(),
|
|
16439
|
-
timestamp: factories.date_time_iso_8601(),
|
|
16440
|
-
organization: factories.string(),
|
|
16441
|
-
order_number: factories.string(),
|
|
16442
|
-
order: factories['io.flow.experience.v0.models.order'](),
|
|
16443
|
-
fulfillments: arrayOf(() => factories['io.flow.order.management.v0.models.fulfillment']()),
|
|
16444
|
-
|
|
16445
|
-
fulfillment_item_allocation_details: arrayOf(
|
|
16446
|
-
() => factories['io.flow.order.management.event.v0.models.fulfillment_item_allocation_details'](),
|
|
16447
|
-
),
|
|
16448
|
-
}),
|
|
16449
|
-
|
|
16450
16387
|
'io.flow.internal.v0.models.rebound_configuration': (): io.flow.internal.v0.models.ReboundConfiguration => ({
|
|
16451
16388
|
id: factories.string(),
|
|
16452
16389
|
login: factories.string(),
|
|
@@ -16525,6 +16462,15 @@ const factories = {
|
|
|
16525
16462
|
account_number: factories.string(),
|
|
16526
16463
|
}),
|
|
16527
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
|
+
|
|
16528
16474
|
'io.flow.internal.v0.models.report_filter': (): io.flow.internal.v0.models.ReportFilter => ({
|
|
16529
16475
|
source_type: factories['io.flow.internal.v0.enums.source_type_filter'](),
|
|
16530
16476
|
}),
|
|
@@ -16567,6 +16513,21 @@ const factories = {
|
|
|
16567
16513
|
created_at: factories.date_time_iso_8601(),
|
|
16568
16514
|
}),
|
|
16569
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
|
+
|
|
16570
16531
|
'io.flow.internal.v0.models.report_rule_decision': (): io.flow.internal.v0.models.ReportRuleDecision => ({
|
|
16571
16532
|
rule_id: factories.string(),
|
|
16572
16533
|
rule_name: factories.string(),
|
|
@@ -16837,8 +16798,11 @@ const factories = {
|
|
|
16837
16798
|
organization_id: factories.string(),
|
|
16838
16799
|
restriction_product_id: factories.string(),
|
|
16839
16800
|
product_id: factories.string(),
|
|
16801
|
+
item_numbers: arrayOf(() => factories.string()),
|
|
16802
|
+
primary_item_number: factories.string(),
|
|
16840
16803
|
name: factories.string(),
|
|
16841
16804
|
price: factories['io.flow.common.v0.models.price'](),
|
|
16805
|
+
hs_code: factories.string(),
|
|
16842
16806
|
description: factories.string(),
|
|
16843
16807
|
categories: arrayOf(() => factories.string()),
|
|
16844
16808
|
images: arrayOf(() => factories['io.flow.catalog.v0.models.image']()),
|
|
@@ -16856,6 +16820,7 @@ const factories = {
|
|
|
16856
16820
|
user_ids: arrayOf(() => factories.string()),
|
|
16857
16821
|
categories: arrayOf(() => factories.string()),
|
|
16858
16822
|
product_name_query: factories.string(),
|
|
16823
|
+
hs6: factories.string(),
|
|
16859
16824
|
positive_keywords: arrayOf(() => factories.string()),
|
|
16860
16825
|
negative_keywords: arrayOf(() => factories.string()),
|
|
16861
16826
|
product_id: factories.string(),
|
|
@@ -16994,6 +16959,7 @@ const factories = {
|
|
|
16994
16959
|
user_ids: arrayOf(() => factories.string()),
|
|
16995
16960
|
categories: arrayOf(() => factories.string()),
|
|
16996
16961
|
product_name_query: factories.string(),
|
|
16962
|
+
hs6: factories.string(),
|
|
16997
16963
|
product_id: factories.string(),
|
|
16998
16964
|
}),
|
|
16999
16965
|
|
|
@@ -17132,6 +17098,9 @@ const factories = {
|
|
|
17132
17098
|
num_pr_outflow_auto_review_decisions: factories.decimal(),
|
|
17133
17099
|
num_pr_outflow_side_effect_decisions: factories.decimal(),
|
|
17134
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(),
|
|
17135
17104
|
}),
|
|
17136
17105
|
|
|
17137
17106
|
'io.flow.internal.v0.models.restrictions_dailyops_deleted': (): io.flow.internal.v0.models.RestrictionsDailyopsDeleted => ({
|
|
@@ -17433,29 +17402,6 @@ const factories = {
|
|
|
17433
17402
|
customer_id: factories.string(),
|
|
17434
17403
|
}),
|
|
17435
17404
|
|
|
17436
|
-
'io.flow.internal.v0.models.shipped_item_value': (): io.flow.internal.v0.models.ShippedItemValue => ({
|
|
17437
|
-
item: factories['io.flow.common.v0.models.catalog_item_reference'](),
|
|
17438
|
-
taxes: factories['io.flow.common.v0.models.price_with_base'](),
|
|
17439
|
-
duties: factories['io.flow.common.v0.models.price_with_base'](),
|
|
17440
|
-
total: factories['io.flow.common.v0.models.price_with_base'](),
|
|
17441
|
-
}),
|
|
17442
|
-
|
|
17443
|
-
'io.flow.internal.v0.models.shipping_estimate_deleted': (): io.flow.internal.v0.models.ShippingEstimateDeleted => ({
|
|
17444
|
-
discriminator: 'shipping_estimate_deleted',
|
|
17445
|
-
event_id: factories.string(),
|
|
17446
|
-
timestamp: factories.date_time_iso_8601(),
|
|
17447
|
-
organization: factories.string(),
|
|
17448
|
-
id: factories.string(),
|
|
17449
|
-
}),
|
|
17450
|
-
|
|
17451
|
-
'io.flow.internal.v0.models.shipping_estimate_upserted': (): io.flow.internal.v0.models.ShippingEstimateUpserted => ({
|
|
17452
|
-
discriminator: 'shipping_estimate_upserted',
|
|
17453
|
-
event_id: factories.string(),
|
|
17454
|
-
timestamp: factories.date_time_iso_8601(),
|
|
17455
|
-
organization: factories.string(),
|
|
17456
|
-
estimate: factories['io.flow.label.v0.models.estimate'](),
|
|
17457
|
-
}),
|
|
17458
|
-
|
|
17459
17405
|
'io.flow.internal.v0.models.shipping_lane': (): io.flow.internal.v0.models.ShippingLane => ({
|
|
17460
17406
|
origin: factories.string(),
|
|
17461
17407
|
destination: factories.string(),
|
|
@@ -17870,6 +17816,20 @@ const factories = {
|
|
|
17870
17816
|
plan: factories['io.flow.internal.v0.enums.shopify_plan_type'](),
|
|
17871
17817
|
}),
|
|
17872
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
|
+
|
|
17873
17833
|
'io.flow.internal.v0.models.shopify_metadata': (): io.flow.internal.v0.models.ShopifyMetadata => ({
|
|
17874
17834
|
domain: factories.string(),
|
|
17875
17835
|
myshopify_domain: factories.string(),
|
|
@@ -18644,6 +18604,46 @@ const factories = {
|
|
|
18644
18604
|
capture: factories['io.flow.internal.v0.models.stripe_internal_capture'](),
|
|
18645
18605
|
}),
|
|
18646
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
|
+
|
|
18647
18647
|
'io.flow.internal.v0.models.stripe_dispute_deleted': (): io.flow.internal.v0.models.StripeDisputeDeleted => ({
|
|
18648
18648
|
discriminator: 'stripe_dispute_deleted',
|
|
18649
18649
|
event_id: factories.string(),
|
|
@@ -18949,40 +18949,6 @@ const factories = {
|
|
|
18949
18949
|
category_code: factories.string(),
|
|
18950
18950
|
}),
|
|
18951
18951
|
|
|
18952
|
-
'io.flow.internal.v0.models.tax_duty_delta_metadata_actual': (): io.flow.internal.v0.models.TaxDutyDeltaMetadataActual => ({
|
|
18953
|
-
processing: factories['io.flow.internal.v0.models.tax_duty_delta_metadata_actual_processing'](),
|
|
18954
|
-
}),
|
|
18955
|
-
|
|
18956
|
-
'io.flow.internal.v0.models.tax_duty_delta_metadata_actual_processing': (): io.flow.internal.v0.models.TaxDutyDeltaMetadataActualProcessing => ({
|
|
18957
|
-
capture: factories['io.flow.common.v0.models.money'](),
|
|
18958
|
-
fees: factories['io.flow.common.v0.models.money'](),
|
|
18959
|
-
transfer: factories['io.flow.common.v0.models.money'](),
|
|
18960
|
-
total: factories['io.flow.common.v0.models.money'](),
|
|
18961
|
-
}),
|
|
18962
|
-
|
|
18963
|
-
'io.flow.internal.v0.models.tax_duty_delta_metadata_expected': (): io.flow.internal.v0.models.TaxDutyDeltaMetadataExpected => ({
|
|
18964
|
-
processing: factories['io.flow.internal.v0.models.tax_duty_delta_metadata_expected_processing'](),
|
|
18965
|
-
}),
|
|
18966
|
-
|
|
18967
|
-
'io.flow.internal.v0.models.tax_duty_delta_metadata_expected_processing': (): io.flow.internal.v0.models.TaxDutyDeltaMetadataExpectedProcessing => ({
|
|
18968
|
-
tax: factories['io.flow.common.v0.models.money'](),
|
|
18969
|
-
duty: factories['io.flow.common.v0.models.money'](),
|
|
18970
|
-
total: factories['io.flow.common.v0.models.money'](),
|
|
18971
|
-
}),
|
|
18972
|
-
|
|
18973
|
-
'io.flow.internal.v0.models.tax_duty_delta_transaction': (): io.flow.internal.v0.models.TaxDutyDeltaTransaction => ({
|
|
18974
|
-
discriminator: 'tax_duty_delta_transaction',
|
|
18975
|
-
order: factories['io.flow.internal.v0.models.billing_order_transaction_order_reference'](),
|
|
18976
|
-
id: factories.string(),
|
|
18977
|
-
type: factories['io.flow.internal.v0.enums.billing_transaction_type'](),
|
|
18978
|
-
status: factories['io.flow.internal.v0.enums.billing_transaction_status'](),
|
|
18979
|
-
posted_at: factories.date_time_iso_8601(),
|
|
18980
|
-
value: factories['io.flow.common.v0.models.price'](),
|
|
18981
|
-
description: factories.string(),
|
|
18982
|
-
statement: factories['io.flow.internal.v0.models.billing_statement_reference'](),
|
|
18983
|
-
created_at: factories.date_time_iso_8601(),
|
|
18984
|
-
}),
|
|
18985
|
-
|
|
18986
18952
|
'io.flow.internal.v0.models.tax_remittance_transaction': (): io.flow.internal.v0.models.TaxRemittanceTransaction => ({
|
|
18987
18953
|
discriminator: 'tax_remittance_transaction',
|
|
18988
18954
|
order: factories['io.flow.internal.v0.models.billing_order_summary'](),
|
|
@@ -19913,10 +19879,6 @@ const factories = {
|
|
|
19913
19879
|
|
|
19914
19880
|
'io.flow.internal.v0.unions.event': (): io.flow.internal.v0.unions.Event => {
|
|
19915
19881
|
const f = faker.helpers.arrayElement([
|
|
19916
|
-
() => factories['io.flow.internal.v0.models.adjusted_estimates_upserted'](),
|
|
19917
|
-
() => factories['io.flow.internal.v0.models.adjusted_estimates_deleted'](),
|
|
19918
|
-
() => factories['io.flow.internal.v0.models.shipping_estimate_upserted'](),
|
|
19919
|
-
() => factories['io.flow.internal.v0.models.shipping_estimate_deleted'](),
|
|
19920
19882
|
() => factories['io.flow.internal.v0.models.adyen_authorization_deleted'](),
|
|
19921
19883
|
() => factories['io.flow.internal.v0.models.adyen_authorization_upserted'](),
|
|
19922
19884
|
() => factories['io.flow.internal.v0.models.adyen_cancel_deleted'](),
|
|
@@ -20115,6 +20077,8 @@ const factories = {
|
|
|
20115
20077
|
() => factories['io.flow.internal.v0.models.order_validation_failure_deleted'](),
|
|
20116
20078
|
() => factories['io.flow.internal.v0.models.order_validation_upserted'](),
|
|
20117
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'](),
|
|
20118
20082
|
() => factories['io.flow.internal.v0.models.label_tracking_summary_upserted'](),
|
|
20119
20083
|
() => factories['io.flow.internal.v0.models.label_tracking_summary_deleted'](),
|
|
20120
20084
|
() => factories['io.flow.internal.v0.models.logistics_capabilities_upserted'](),
|
|
@@ -20124,11 +20088,6 @@ const factories = {
|
|
|
20124
20088
|
() => factories['io.flow.internal.v0.models.order_combined_shipment_deleted'](),
|
|
20125
20089
|
() => factories['io.flow.internal.v0.models.order_fulfillment_deleted'](),
|
|
20126
20090
|
() => factories['io.flow.internal.v0.models.order_fulfillment_upserted'](),
|
|
20127
|
-
() => factories['io.flow.internal.v0.models.order_placed'](),
|
|
20128
|
-
() => factories['io.flow.internal.v0.models.ready_to_fulfill'](),
|
|
20129
|
-
() => factories['io.flow.internal.v0.models.fulfillment_cancel'](),
|
|
20130
|
-
() => factories['io.flow.internal.v0.models.order_shipped'](),
|
|
20131
|
-
() => factories['io.flow.internal.v0.models.items_shipped'](),
|
|
20132
20091
|
() => factories['io.flow.internal.v0.models.organization_business_entity_deleted'](),
|
|
20133
20092
|
() => factories['io.flow.internal.v0.models.organization_business_entity_upserted'](),
|
|
20134
20093
|
() => factories['io.flow.internal.v0.models.organization_status_change_upserted'](),
|
|
@@ -20244,6 +20203,8 @@ const factories = {
|
|
|
20244
20203
|
() => factories['io.flow.internal.v0.models.shopify_monitoring_order_monitor_event_deleted'](),
|
|
20245
20204
|
() => factories['io.flow.internal.v0.models.shopify_order_fulfillments_snapshot_upserted'](),
|
|
20246
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'](),
|
|
20247
20208
|
() => factories['io.flow.internal.v0.models.stripe_authorization_deleted'](),
|
|
20248
20209
|
() => factories['io.flow.internal.v0.models.stripe_authorization_upserted'](),
|
|
20249
20210
|
() => factories['io.flow.internal.v0.models.stripe_reversal_deleted'](),
|
|
@@ -20254,6 +20215,8 @@ const factories = {
|
|
|
20254
20215
|
() => factories['io.flow.internal.v0.models.stripe_refund_upserted'](),
|
|
20255
20216
|
() => factories['io.flow.internal.v0.models.stripe_dispute_upserted'](),
|
|
20256
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'](),
|
|
20257
20220
|
() => factories['io.flow.internal.v0.models.liability_remittance_plan_upserted'](),
|
|
20258
20221
|
() => factories['io.flow.internal.v0.models.liability_remittance_plan_deleted'](),
|
|
20259
20222
|
() => factories['io.flow.internal.v0.models.tracking_processing_error_upserted'](),
|
|
@@ -20775,7 +20738,6 @@ const factories = {
|
|
|
20775
20738
|
() => factories['io.flow.internal.v0.models.carrier_charge_transaction'](),
|
|
20776
20739
|
() => factories['io.flow.internal.v0.models.non_l4l_tax_duty_fx_transaction'](),
|
|
20777
20740
|
() => factories['io.flow.internal.v0.models.ge_revenue_share_transaction'](),
|
|
20778
|
-
() => factories['io.flow.internal.v0.models.tax_duty_delta_transaction'](),
|
|
20779
20741
|
]);
|
|
20780
20742
|
|
|
20781
20743
|
return f();
|
|
@@ -21037,8 +20999,6 @@ const factories = {
|
|
|
21037
20999
|
|
|
21038
21000
|
'io.flow.label.v0.enums.cost_estimate_source': (): io.flow.label.v0.enums.CostEstimateSource => faker.helpers.arrayElement(['flow', 'channel']),
|
|
21039
21001
|
'io.flow.label.v0.enums.direction': (): io.flow.label.v0.enums.Direction => faker.helpers.arrayElement(['outbound', 'return']),
|
|
21040
|
-
'io.flow.label.v0.enums.estimate_origin': (): io.flow.label.v0.enums.EstimateOrigin => faker.helpers.arrayElement(['Shopify', 'GlobalE', 'Aftership', 'Carrier']),
|
|
21041
|
-
'io.flow.label.v0.enums.estimate_type': (): io.flow.label.v0.enums.EstimateType => faker.helpers.arrayElement(['Estimated', 'Final']),
|
|
21042
21002
|
|
|
21043
21003
|
'io.flow.label.v0.enums.label_request_method': (): io.flow.label.v0.enums.LabelRequestMethod => faker.helpers.arrayElement([
|
|
21044
21004
|
'flow_web_sync',
|
|
@@ -21152,15 +21112,6 @@ const factories = {
|
|
|
21152
21112
|
shipment_recipient: factories['io.flow.label.v0.enums.shipment_recipient'](),
|
|
21153
21113
|
}),
|
|
21154
21114
|
|
|
21155
|
-
'io.flow.label.v0.models.estimate': (): io.flow.label.v0.models.Estimate => ({
|
|
21156
|
-
id: factories.string(),
|
|
21157
|
-
organization_id: factories.string(),
|
|
21158
|
-
label_id: factories.string(),
|
|
21159
|
-
estimate: factories['io.flow.label.v0.models.shipping_label_hop_summary'](),
|
|
21160
|
-
type: factories['io.flow.label.v0.enums.estimate_type'](),
|
|
21161
|
-
origin: factories['io.flow.label.v0.enums.estimate_origin'](),
|
|
21162
|
-
}),
|
|
21163
|
-
|
|
21164
21115
|
'io.flow.label.v0.models.label_order_summary': (): io.flow.label.v0.models.LabelOrderSummary => ({
|
|
21165
21116
|
id: factories.string(),
|
|
21166
21117
|
number: factories.string(),
|
|
@@ -23283,6 +23234,7 @@ const factories = {
|
|
|
23283
23234
|
'unknown',
|
|
23284
23235
|
]),
|
|
23285
23236
|
|
|
23237
|
+
'io.flow.payment.v0.enums.payment_fee_type': (): io.flow.payment.v0.enums.PaymentFeeType => faker.helpers.arrayElement(['fx', 'mor']),
|
|
23286
23238
|
'io.flow.payment.v0.enums.payment_source_confirmation_action_type': (): io.flow.payment.v0.enums.PaymentSourceConfirmationActionType => faker.helpers.arrayElement(['cvv', 'billing_address', 'number']),
|
|
23287
23239
|
'io.flow.payment.v0.enums.refund_decline_code': (): io.flow.payment.v0.enums.RefundDeclineCode => faker.helpers.arrayElement(['expired', 'insufficient_funds', 'unknown']),
|
|
23288
23240
|
|
|
@@ -23507,6 +23459,7 @@ const factories = {
|
|
|
23507
23459
|
attributes: objectOf(() => factories.string()),
|
|
23508
23460
|
status: factories['io.flow.payment.v0.enums.capture_status'](),
|
|
23509
23461
|
base: factories['io.flow.common.v0.models.money'](),
|
|
23462
|
+
fees: arrayOf(() => factories['io.flow.payment.v0.models.payment_fee']()),
|
|
23510
23463
|
}),
|
|
23511
23464
|
|
|
23512
23465
|
'io.flow.payment.v0.models.capture_error': (): io.flow.payment.v0.models.CaptureError => ({
|
|
@@ -23755,6 +23708,12 @@ const factories = {
|
|
|
23755
23708
|
year: factories.integer(),
|
|
23756
23709
|
}),
|
|
23757
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
|
+
|
|
23758
23717
|
'io.flow.payment.v0.models.google_pay_authorization_payload': (): io.flow.payment.v0.models.GooglePayAuthorizationPayload => ({
|
|
23759
23718
|
discriminator: 'google_pay_authorization_payload',
|
|
23760
23719
|
payload: factories.object(),
|
|
@@ -23894,6 +23853,12 @@ const factories = {
|
|
|
23894
23853
|
codes: arrayOf(() => factories['io.flow.payment.v0.enums.payment_error_code']()),
|
|
23895
23854
|
}),
|
|
23896
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
|
+
|
|
23897
23862
|
'io.flow.payment.v0.models.payment_payment_request_reference': (): io.flow.payment.v0.models.PaymentPaymentRequestReference => ({
|
|
23898
23863
|
discriminator: 'payment_request',
|
|
23899
23864
|
payment_request_id: factories.string(),
|
|
@@ -24374,6 +24339,7 @@ const factories = {
|
|
|
24374
24339
|
() => factories['io.flow.payment.v0.models.card'](),
|
|
24375
24340
|
() => factories['io.flow.payment.v0.models.card_reference'](),
|
|
24376
24341
|
() => factories['io.flow.payment.v0.models.card_summary'](),
|
|
24342
|
+
() => factories['io.flow.payment.v0.models.external_card'](),
|
|
24377
24343
|
]);
|
|
24378
24344
|
|
|
24379
24345
|
return f();
|
|
@@ -24906,6 +24872,7 @@ const factories = {
|
|
|
24906
24872
|
'io.flow.ratecard.v0.models.duties_taxes_paid_surcharge_service_fee': (): io.flow.ratecard.v0.models.DutiesTaxesPaidSurchargeServiceFee => ({
|
|
24907
24873
|
discriminator: 'duties_taxes_paid_surcharge_service_fee',
|
|
24908
24874
|
amount: factories['io.flow.common.v0.models.money'](),
|
|
24875
|
+
destination_countries: arrayOf(() => factories.string()),
|
|
24909
24876
|
starts_at: factories.date_time_iso_8601(),
|
|
24910
24877
|
ends_at: factories.date_time_iso_8601(),
|
|
24911
24878
|
}),
|
|
@@ -29030,6 +28997,14 @@ const factories = {
|
|
|
29030
28997
|
'io.flow.stripe.v0.enums.check_outcome': (): io.flow.stripe.v0.enums.CheckOutcome => faker.helpers.arrayElement(['pass', 'fail', 'unavailable', 'unchecked']),
|
|
29031
28998
|
'io.flow.stripe.v0.enums.code_verification_status': (): io.flow.stripe.v0.enums.CodeVerificationStatus => faker.helpers.arrayElement(['pending', 'succeeded', 'failed']),
|
|
29032
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
|
+
]),
|
|
29033
29008
|
|
|
29034
29009
|
'io.flow.stripe.v0.enums.decline_code': (): io.flow.stripe.v0.enums.DeclineCode => faker.helpers.arrayElement([
|
|
29035
29010
|
'approve_with_id',
|
|
@@ -29660,6 +29635,46 @@ const factories = {
|
|
|
29660
29635
|
status: factories['io.flow.stripe.v0.enums.code_verification_status'](),
|
|
29661
29636
|
}),
|
|
29662
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
|
+
|
|
29663
29678
|
'io.flow.stripe.v0.models.customer': (): io.flow.stripe.v0.models.Customer => ({
|
|
29664
29679
|
id: factories.string(),
|
|
29665
29680
|
object: factories.string(),
|
|
@@ -31113,7 +31128,15 @@ const factories = {
|
|
|
31113
31128
|
},
|
|
31114
31129
|
|
|
31115
31130
|
'io.flow.units.v0.enums.unit_of_length': (): io.flow.units.v0.enums.UnitOfLength => faker.helpers.arrayElement(['millimeter', 'centimeter', 'inch', 'foot', 'meter']),
|
|
31116
|
-
|
|
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
|
+
|
|
31117
31140
|
'io.flow.units.v0.enums.unit_of_weight': (): io.flow.units.v0.enums.UnitOfWeight => faker.helpers.arrayElement(['gram', 'kilogram', 'ounce', 'pound']),
|
|
31118
31141
|
};
|
|
31119
31142
|
|
|
@@ -31156,9 +31179,6 @@ export const makeAddressConfigurationProvinceSetting = () => factories['io.flow.
|
|
|
31156
31179
|
export const makeAddressConfigurationSetting = () => factories['io.flow.internal.v0.models.address_configuration_setting']();
|
|
31157
31180
|
export const makeAddressConfigurationSettingForm = () => factories['io.flow.internal.v0.models.address_configuration_setting_form']();
|
|
31158
31181
|
export const makeAddressConfigurationSettingProvinceCode = () => factories['io.flow.internal.v0.enums.address_configuration_setting_province_code']();
|
|
31159
|
-
export const makeAdjustedEstimates = () => factories['io.flow.internal.v0.models.adjusted_estimates']();
|
|
31160
|
-
export const makeAdjustedEstimatesDeleted = () => factories['io.flow.internal.v0.models.adjusted_estimates_deleted']();
|
|
31161
|
-
export const makeAdjustedEstimatesUpserted = () => factories['io.flow.internal.v0.models.adjusted_estimates_upserted']();
|
|
31162
31182
|
export const makeAdjustmentAmount = () => factories['io.flow.internal.v0.unions.adjustment_amount']();
|
|
31163
31183
|
export const makeAdjustmentAmountFixed = () => factories['io.flow.internal.v0.models.adjustment_amount_fixed']();
|
|
31164
31184
|
export const makeAdjustmentAmountPercentage = () => factories['io.flow.internal.v0.models.adjustment_amount_percentage']();
|
|
@@ -31818,7 +31838,6 @@ export const makeFuelSurchargeServiceFeePutForm = () => factories['io.flow.inter
|
|
|
31818
31838
|
export const makeFulfillment = () => factories['io.flow.internal.v0.models.fulfillment']();
|
|
31819
31839
|
export const makeFulfillmentActionForm = () => factories['io.flow.internal.v0.models.fulfillment_action_form']();
|
|
31820
31840
|
export const makeFulfillmentBusiness = () => factories['io.flow.internal.v0.models.fulfillment_business']();
|
|
31821
|
-
export const makeFulfillmentCancel = () => factories['io.flow.internal.v0.models.fulfillment_cancel']();
|
|
31822
31841
|
export const makeFulfillmentCarrier = () => factories['io.flow.internal.v0.models.fulfillment_carrier']();
|
|
31823
31842
|
export const makeFulfillmentDeleted = () => factories['io.flow.internal.v0.models.fulfillment_deleted']();
|
|
31824
31843
|
export const makeFulfillmentFallbacks = () => factories['io.flow.internal.v0.models.fulfillment_fallbacks']();
|
|
@@ -31831,7 +31850,6 @@ export const makeFulfillmentProofLabelTrackingReference = () => factories['io.fl
|
|
|
31831
31850
|
export const makeFulfillmentProofOrderCombinedShipmentReference = () => factories['io.flow.internal.v0.models.fulfillment_proof_order_combined_shipment_reference']();
|
|
31832
31851
|
export const makeFulfillmentProofShippingNotificationReference = () => factories['io.flow.internal.v0.models.fulfillment_proof_shipping_notification_reference']();
|
|
31833
31852
|
export const makeFulfillmentReference = () => factories['io.flow.internal.v0.models.fulfillment_reference']();
|
|
31834
|
-
export const makeFulfillmentShipmentTracking = () => factories['io.flow.internal.v0.models.fulfillment_shipment_tracking']();
|
|
31835
31853
|
export const makeFulfillmentShopperBreakdown = () => factories['io.flow.internal.v0.models.fulfillment_shopper_breakdown']();
|
|
31836
31854
|
export const makeFulfillmentSnapshot = () => factories['io.flow.internal.v0.models.fulfillment_snapshot']();
|
|
31837
31855
|
export const makeFulfillmentSubsidyBreakdown = () => factories['io.flow.internal.v0.models.fulfillment_subsidy_breakdown']();
|
|
@@ -31904,6 +31922,7 @@ export const makeInternalFiservAuthorizationDetails = () => factories['io.flow.i
|
|
|
31904
31922
|
export const makeInternalHarmonizationStatistic = () => factories['io.flow.internal.v0.unions.internal_harmonization_statistic']();
|
|
31905
31923
|
export const makeInternalItemForm = () => factories['io.flow.internal.v0.models.internal_item_form']();
|
|
31906
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']();
|
|
31907
31926
|
export const makeInternalPaymentRequest = () => factories['io.flow.internal.v0.models.internal_payment_request']();
|
|
31908
31927
|
export const makeInternalPaymentRequestVerification = () => factories['io.flow.internal.v0.models.internal_payment_request_verification']();
|
|
31909
31928
|
export const makeInternalPaypalAuthorizationDetails = () => factories['io.flow.internal.v0.models.internal_paypal_authorization_details']();
|
|
@@ -31952,7 +31971,6 @@ export const makeItemSalesMarginVersion = () => factories['io.flow.internal.v0.m
|
|
|
31952
31971
|
export const makeItemSummary = () => factories['io.flow.internal.v0.models.item_summary']();
|
|
31953
31972
|
export const makeItemType = () => factories['io.flow.internal.v0.enums.item_type']();
|
|
31954
31973
|
export const makeItemValuesForm = () => factories['io.flow.internal.v0.models.item_values_form']();
|
|
31955
|
-
export const makeItemsShipped = () => factories['io.flow.internal.v0.models.items_shipped']();
|
|
31956
31974
|
export const makeJeanDemoItem = () => factories['io.flow.internal.v0.models.jean_demo_item']();
|
|
31957
31975
|
export const makeKey = () => factories['io.flow.internal.v0.models.key']();
|
|
31958
31976
|
export const makeKeyReference = () => factories['io.flow.internal.v0.models.key_reference']();
|
|
@@ -31968,7 +31986,9 @@ export const makeLabelBillingStrategy = () => factories['io.flow.internal.v0.enu
|
|
|
31968
31986
|
export const makeLabelCancellationError = () => factories['io.flow.internal.v0.models.label_cancellation_error']();
|
|
31969
31987
|
export const makeLabelCancellationErrorCode = () => factories['io.flow.internal.v0.enums.label_cancellation_error_code']();
|
|
31970
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']();
|
|
31971
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']();
|
|
31972
31992
|
export const makeLabelCreationRequestForm = () => factories['io.flow.internal.v0.models.label_creation_request_form']();
|
|
31973
31993
|
export const makeLabelCreationStatus = () => factories['io.flow.internal.v0.enums.label_creation_status']();
|
|
31974
31994
|
export const makeLabelDestination = () => factories['io.flow.internal.v0.models.label_destination']();
|
|
@@ -32076,6 +32096,9 @@ export const makeMerchantHubOverride = () => factories['io.flow.internal.v0.mode
|
|
|
32076
32096
|
export const makeMerchantHubOverrideForm = () => factories['io.flow.internal.v0.models.merchant_hub_override_form']();
|
|
32077
32097
|
export const makeMerchantOfRecordEntitySettings = () => factories['io.flow.internal.v0.models.merchant_of_record_entity_settings']();
|
|
32078
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']();
|
|
32079
32102
|
export const makeMerchantSearchResult = () => factories['io.flow.internal.v0.models.merchant_search_result']();
|
|
32080
32103
|
export const makeMerchantSubsidies = () => factories['io.flow.internal.v0.models.merchant_subsidies']();
|
|
32081
32104
|
export const makeMerchantSummary = () => factories['io.flow.internal.v0.models.merchant_summary']();
|
|
@@ -32146,7 +32169,6 @@ export const makeOrderLifecycleEvent = () => factories['io.flow.internal.v0.enum
|
|
|
32146
32169
|
export const makeOrderNote = () => factories['io.flow.internal.v0.models.order_note']();
|
|
32147
32170
|
export const makeOrderNoteForm = () => factories['io.flow.internal.v0.models.order_note_form']();
|
|
32148
32171
|
export const makeOrderPaymentAuthorization = () => factories['io.flow.internal.v0.models.order_payment_authorization']();
|
|
32149
|
-
export const makeOrderPlaced = () => factories['io.flow.internal.v0.models.order_placed']();
|
|
32150
32172
|
export const makeOrderRatesDataV3 = () => factories['io.flow.internal.v0.models.order_rates_data_v3']();
|
|
32151
32173
|
export const makeOrderRatesPublishedV3 = () => factories['io.flow.internal.v0.models.order_rates_published_v3']();
|
|
32152
32174
|
export const makeOrderReference = () => factories['io.flow.internal.v0.models.order_reference']();
|
|
@@ -32155,7 +32177,6 @@ export const makeOrderRevenueRegionDataPoint = () => factories['io.flow.internal
|
|
|
32155
32177
|
export const makeOrderRevenueTimelineChart = () => factories['io.flow.internal.v0.models.order_revenue_timeline_chart']();
|
|
32156
32178
|
export const makeOrderRevenueTimelineDataPoint = () => factories['io.flow.internal.v0.models.order_revenue_timeline_data_point']();
|
|
32157
32179
|
export const makeOrderServiceChangeCsvForm = () => factories['io.flow.internal.v0.models.order_service_change_csv_form']();
|
|
32158
|
-
export const makeOrderShipped = () => factories['io.flow.internal.v0.models.order_shipped']();
|
|
32159
32180
|
export const makeOrderSubmissionForm = () => factories['io.flow.internal.v0.models.order_submission_form']();
|
|
32160
32181
|
export const makeOrderSummary = () => factories['io.flow.internal.v0.models.order_summary']();
|
|
32161
32182
|
export const makeOrderTaxAndDutyInclusivitySetting = () => factories['io.flow.internal.v0.models.order_tax_and_duty_inclusivity_setting']();
|
|
@@ -32437,7 +32458,6 @@ export const makeRatecardStandardConfigurationUpserted = () => factories['io.flo
|
|
|
32437
32458
|
export const makeRatecardStandardSettings = () => factories['io.flow.internal.v0.models.ratecard_standard_settings']();
|
|
32438
32459
|
export const makeRatesChanged = () => factories['io.flow.internal.v0.models.rates_changed']();
|
|
32439
32460
|
export const makeRatesNamesSummary = () => factories['io.flow.internal.v0.models.rates_names_summary']();
|
|
32440
|
-
export const makeReadyToFulfill = () => factories['io.flow.internal.v0.models.ready_to_fulfill']();
|
|
32441
32461
|
export const makeReboundConfiguration = () => factories['io.flow.internal.v0.models.rebound_configuration']();
|
|
32442
32462
|
export const makeReboundConfigurationForm = () => factories['io.flow.internal.v0.models.rebound_configuration_form']();
|
|
32443
32463
|
export const makeReboundConfigurationStatus = () => factories['io.flow.internal.v0.enums.rebound_configuration_status']();
|
|
@@ -32453,6 +32473,9 @@ export const makeReport = () => factories['io.flow.internal.v0.models.report']()
|
|
|
32453
32473
|
export const makeReportAccount = () => factories['io.flow.internal.v0.models.report_account']();
|
|
32454
32474
|
export const makeReportBankAccount = () => factories['io.flow.internal.v0.models.report_bank_account']();
|
|
32455
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']();
|
|
32456
32479
|
export const makeReportFilter = () => factories['io.flow.internal.v0.models.report_filter']();
|
|
32457
32480
|
export const makeReportForm = () => factories['io.flow.internal.v0.models.report_form']();
|
|
32458
32481
|
export const makeReportInterval = () => factories['io.flow.internal.v0.enums.report_interval']();
|
|
@@ -32462,6 +32485,8 @@ export const makeReportOrganizationReference = () => factories['io.flow.internal
|
|
|
32462
32485
|
export const makeReportOwner = () => factories['io.flow.internal.v0.models.report_owner']();
|
|
32463
32486
|
export const makeReportPayment = () => factories['io.flow.internal.v0.models.report_payment']();
|
|
32464
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']();
|
|
32465
32490
|
export const makeReportRuleDecision = () => factories['io.flow.internal.v0.models.report_rule_decision']();
|
|
32466
32491
|
export const makeReportStatus = () => factories['io.flow.internal.v0.enums.report_status']();
|
|
32467
32492
|
export const makeReportSummary = () => factories['io.flow.internal.v0.models.report_summary']();
|
|
@@ -32588,9 +32613,6 @@ export const makeSessionRollout = () => factories['io.flow.internal.v0.models.se
|
|
|
32588
32613
|
export const makeSessionRolloutForm = () => factories['io.flow.internal.v0.models.session_rollout_form']();
|
|
32589
32614
|
export const makeSetupBlockPutForm = () => factories['io.flow.internal.v0.models.setup_block_put_form']();
|
|
32590
32615
|
export const makeSfExpress = () => factories['io.flow.internal.v0.models.sf_express']();
|
|
32591
|
-
export const makeShippedItemValue = () => factories['io.flow.internal.v0.models.shipped_item_value']();
|
|
32592
|
-
export const makeShippingEstimateDeleted = () => factories['io.flow.internal.v0.models.shipping_estimate_deleted']();
|
|
32593
|
-
export const makeShippingEstimateUpserted = () => factories['io.flow.internal.v0.models.shipping_estimate_upserted']();
|
|
32594
32616
|
export const makeShippingLane = () => factories['io.flow.internal.v0.models.shipping_lane']();
|
|
32595
32617
|
export const makeShippingMethodReference = () => factories['io.flow.internal.v0.models.shipping_method_reference']();
|
|
32596
32618
|
export const makeShop = () => factories['io.flow.internal.v0.models.shop']();
|
|
@@ -32659,6 +32681,8 @@ export const makeShopifyMarketsWebhookRegistration = () => factories['io.flow.in
|
|
|
32659
32681
|
export const makeShopifyMarketsWebhookRegistrationDeleted = () => factories['io.flow.internal.v0.models.shopify_markets_webhook_registration_deleted']();
|
|
32660
32682
|
export const makeShopifyMarketsWebhookRegistrationUpserted = () => factories['io.flow.internal.v0.models.shopify_markets_webhook_registration_upserted']();
|
|
32661
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']();
|
|
32662
32686
|
export const makeShopifyMetadata = () => factories['io.flow.internal.v0.models.shopify_metadata']();
|
|
32663
32687
|
export const makeShopifyMonitoringCarrierService = () => factories['io.flow.internal.v0.models.shopify_monitoring_carrier_service']();
|
|
32664
32688
|
export const makeShopifyMonitoringFulfillmentExternal = () => factories['io.flow.internal.v0.models.shopify_monitoring_fulfillment_external']();
|
|
@@ -32790,6 +32814,9 @@ export const makeStripeAuthorizationDeleted = () => factories['io.flow.internal.
|
|
|
32790
32814
|
export const makeStripeAuthorizationUpserted = () => factories['io.flow.internal.v0.models.stripe_authorization_upserted']();
|
|
32791
32815
|
export const makeStripeCaptureDeleted = () => factories['io.flow.internal.v0.models.stripe_capture_deleted']();
|
|
32792
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']();
|
|
32793
32820
|
export const makeStripeDisputeDeleted = () => factories['io.flow.internal.v0.models.stripe_dispute_deleted']();
|
|
32794
32821
|
export const makeStripeDisputeUpserted = () => factories['io.flow.internal.v0.models.stripe_dispute_upserted']();
|
|
32795
32822
|
export const makeStripeInternalAuthorization = () => factories['io.flow.internal.v0.models.stripe_internal_authorization']();
|
|
@@ -32834,11 +32861,6 @@ export const makeTaxCalculationErrorCode = () => factories['io.flow.internal.v0.
|
|
|
32834
32861
|
export const makeTaxCalculationForm = () => factories['io.flow.internal.v0.models.tax_calculation_form']();
|
|
32835
32862
|
export const makeTaxCalculationLineItem = () => factories['io.flow.internal.v0.models.tax_calculation_line_item']();
|
|
32836
32863
|
export const makeTaxCalculationLineItemForm = () => factories['io.flow.internal.v0.models.tax_calculation_line_item_form']();
|
|
32837
|
-
export const makeTaxDutyDeltaMetadataActual = () => factories['io.flow.internal.v0.models.tax_duty_delta_metadata_actual']();
|
|
32838
|
-
export const makeTaxDutyDeltaMetadataActualProcessing = () => factories['io.flow.internal.v0.models.tax_duty_delta_metadata_actual_processing']();
|
|
32839
|
-
export const makeTaxDutyDeltaMetadataExpected = () => factories['io.flow.internal.v0.models.tax_duty_delta_metadata_expected']();
|
|
32840
|
-
export const makeTaxDutyDeltaMetadataExpectedProcessing = () => factories['io.flow.internal.v0.models.tax_duty_delta_metadata_expected_processing']();
|
|
32841
|
-
export const makeTaxDutyDeltaTransaction = () => factories['io.flow.internal.v0.models.tax_duty_delta_transaction']();
|
|
32842
32864
|
export const makeTaxParty = () => factories['io.flow.internal.v0.enums.tax_party']();
|
|
32843
32865
|
export const makeTaxRemittanceTransaction = () => factories['io.flow.internal.v0.models.tax_remittance_transaction']();
|
|
32844
32866
|
export const makeTaxRemittanceTransactionDeleted = () => factories['io.flow.internal.v0.models.tax_remittance_transaction_deleted']();
|