@flowio/api-factories 0.0.117 → 0.0.118
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.js +423 -316
- package/dist/esm/api.js +355 -270
- package/dist/types/api.d.ts +40 -19
- package/package.json +2 -2
- package/src/api.ts +396 -303
package/src/api.ts
CHANGED
|
@@ -172,6 +172,7 @@ const factories = {
|
|
|
172
172
|
'unsupported_virtual_goods',
|
|
173
173
|
'non_matching_currencies',
|
|
174
174
|
'unsupported_order_edit',
|
|
175
|
+
'order_allocation_duties_mismatch',
|
|
175
176
|
'order_missing',
|
|
176
177
|
]),
|
|
177
178
|
|
|
@@ -228,6 +229,7 @@ const factories = {
|
|
|
228
229
|
order_updated_at: factories.date_time_iso_8601(),
|
|
229
230
|
order_edit_summary: factories['io.flow.channel.internal.v0.models.order_edit_summary'](),
|
|
230
231
|
payment_source: factories['io.flow.channel.internal.v0.enums.order_payment_source_type'](),
|
|
232
|
+
external_order_summary: factories['io.flow.channel.shopify.v0.models.external_order_summary'](),
|
|
231
233
|
}),
|
|
232
234
|
|
|
233
235
|
'io.flow.channel.internal.v0.models.channel_order_acceptance_details': (): io.flow.channel.internal.v0.models.ChannelOrderAcceptanceDetails => ({
|
|
@@ -293,6 +295,35 @@ const factories = {
|
|
|
293
295
|
edited_at: factories.date_time_iso_8601(),
|
|
294
296
|
}),
|
|
295
297
|
|
|
298
|
+
'io.flow.channel.shopify.v0.enums.channel_shopify_order_state_reason_code': (): io.flow.channel.shopify.v0.enums.ChannelShopifyOrderStateReasonCode => faker.helpers.arrayElement(['placeholder_reason_code']),
|
|
299
|
+
|
|
300
|
+
'io.flow.channel.shopify.v0.models.channel_shopify_order_state': (): io.flow.channel.shopify.v0.models.ChannelShopifyOrderState => ({
|
|
301
|
+
id: factories.string(),
|
|
302
|
+
shopify_order_summary: factories['io.flow.channel.shopify.v0.models.channel_shopify_order_summary'](),
|
|
303
|
+
status: factories['io.flow.channel.internal.v0.enums.channel_order_acceptance_status'](),
|
|
304
|
+
|
|
305
|
+
reasons: arrayOf(
|
|
306
|
+
() => factories['io.flow.channel.shopify.v0.models.channel_shopify_order_state_reason'](),
|
|
307
|
+
),
|
|
308
|
+
|
|
309
|
+
external_order_summary: factories['io.flow.channel.shopify.v0.models.external_order_summary'](),
|
|
310
|
+
}),
|
|
311
|
+
|
|
312
|
+
'io.flow.channel.shopify.v0.models.channel_shopify_order_state_reason': (): io.flow.channel.shopify.v0.models.ChannelShopifyOrderStateReason => ({
|
|
313
|
+
code: factories['io.flow.channel.shopify.v0.enums.channel_shopify_order_state_reason_code'](),
|
|
314
|
+
message: factories.string(),
|
|
315
|
+
}),
|
|
316
|
+
|
|
317
|
+
'io.flow.channel.shopify.v0.models.channel_shopify_order_summary': (): io.flow.channel.shopify.v0.models.ChannelShopifyOrderSummary => ({
|
|
318
|
+
order_id: factories.long(),
|
|
319
|
+
shop_id: factories.long(),
|
|
320
|
+
}),
|
|
321
|
+
|
|
322
|
+
'io.flow.channel.shopify.v0.models.external_order_summary': (): io.flow.channel.shopify.v0.models.ExternalOrderSummary => ({
|
|
323
|
+
id: factories.string(),
|
|
324
|
+
edit_ids: arrayOf(() => factories.string()),
|
|
325
|
+
}),
|
|
326
|
+
|
|
296
327
|
'io.flow.channel.v0.enums.channel_currency_capability': (): io.flow.channel.v0.enums.ChannelCurrencyCapability => faker.helpers.arrayElement(['payment_authorizations', 'settlement_currency']),
|
|
297
328
|
|
|
298
329
|
'io.flow.channel.v0.models.channel': (): io.flow.channel.v0.models.Channel => ({
|
|
@@ -660,6 +691,8 @@ const factories = {
|
|
|
660
691
|
'io.flow.common.v0.models.merchant_of_record_entity_registration': (): io.flow.common.v0.models.MerchantOfRecordEntityRegistration => ({
|
|
661
692
|
number: factories.string(),
|
|
662
693
|
country: factories.string(),
|
|
694
|
+
province_number: factories.string(),
|
|
695
|
+
province: factories.string(),
|
|
663
696
|
}),
|
|
664
697
|
|
|
665
698
|
'io.flow.common.v0.models.money': (): io.flow.common.v0.models.Money => ({
|
|
@@ -4193,160 +4226,6 @@ const factories = {
|
|
|
4193
4226
|
return f();
|
|
4194
4227
|
},
|
|
4195
4228
|
|
|
4196
|
-
'io.flow.tech.onboarding.playground.v0.enums.aldo_item_type': (): io.flow.tech.onboarding.playground.v0.enums.AldoItemType => faker.helpers.arrayElement(['physical', 'digital']),
|
|
4197
|
-
'io.flow.tech.onboarding.playground.v0.enums.anirban_item_type': (): io.flow.tech.onboarding.playground.v0.enums.AnirbanItemType => faker.helpers.arrayElement(['physical', 'digital']),
|
|
4198
|
-
'io.flow.tech.onboarding.playground.v0.enums.ansh_item_type': (): io.flow.tech.onboarding.playground.v0.enums.AnshItemType => faker.helpers.arrayElement(['physical', 'digital']),
|
|
4199
|
-
'io.flow.tech.onboarding.playground.v0.enums.hosein_item_type': (): io.flow.tech.onboarding.playground.v0.enums.HoseinItemType => faker.helpers.arrayElement(['physical', 'digital']),
|
|
4200
|
-
'io.flow.tech.onboarding.playground.v0.enums.niall_item_type': (): io.flow.tech.onboarding.playground.v0.enums.NiallItemType => faker.helpers.arrayElement(['physical', 'digital']),
|
|
4201
|
-
'io.flow.tech.onboarding.playground.v0.enums.prateek_item_type': (): io.flow.tech.onboarding.playground.v0.enums.PrateekItemType => faker.helpers.arrayElement(['physical', 'digital']),
|
|
4202
|
-
'io.flow.tech.onboarding.playground.v0.enums.rohan_item_type': (): io.flow.tech.onboarding.playground.v0.enums.RohanItemType => faker.helpers.arrayElement(['physical', 'digital']),
|
|
4203
|
-
'io.flow.tech.onboarding.playground.v0.enums.sarvesh_item_type': (): io.flow.tech.onboarding.playground.v0.enums.SarveshItemType => faker.helpers.arrayElement(['physical', 'digital']),
|
|
4204
|
-
|
|
4205
|
-
'io.flow.tech.onboarding.playground.v0.models.aldo_item': (): io.flow.tech.onboarding.playground.v0.models.AldoItem => ({
|
|
4206
|
-
id: factories.string(),
|
|
4207
|
-
number: factories.string(),
|
|
4208
|
-
amount: factories['io.flow.common.v0.models.price'](),
|
|
4209
|
-
description: factories.string(),
|
|
4210
|
-
type: factories['io.flow.tech.onboarding.playground.v0.enums.aldo_item_type'](),
|
|
4211
|
-
added_on: factories.date_iso_8601(),
|
|
4212
|
-
}),
|
|
4213
|
-
|
|
4214
|
-
'io.flow.tech.onboarding.playground.v0.models.aldo_item_form': (): io.flow.tech.onboarding.playground.v0.models.AldoItemForm => ({
|
|
4215
|
-
number: factories.string(),
|
|
4216
|
-
amount: factories['io.flow.common.v0.models.price'](),
|
|
4217
|
-
description: factories.string(),
|
|
4218
|
-
type: factories['io.flow.tech.onboarding.playground.v0.enums.aldo_item_type'](),
|
|
4219
|
-
added_on: factories.date_iso_8601(),
|
|
4220
|
-
}),
|
|
4221
|
-
|
|
4222
|
-
'io.flow.tech.onboarding.playground.v0.models.anirban_item': (): io.flow.tech.onboarding.playground.v0.models.AnirbanItem => ({
|
|
4223
|
-
id: factories.string(),
|
|
4224
|
-
number: factories.string(),
|
|
4225
|
-
amount: factories['io.flow.common.v0.models.price'](),
|
|
4226
|
-
description: factories.string(),
|
|
4227
|
-
type: factories['io.flow.tech.onboarding.playground.v0.enums.anirban_item_type'](),
|
|
4228
|
-
added_on: factories.date_time_iso_8601(),
|
|
4229
|
-
}),
|
|
4230
|
-
|
|
4231
|
-
'io.flow.tech.onboarding.playground.v0.models.anirban_item_form': (): io.flow.tech.onboarding.playground.v0.models.AnirbanItemForm => ({
|
|
4232
|
-
number: factories.string(),
|
|
4233
|
-
amount: factories['io.flow.common.v0.models.price'](),
|
|
4234
|
-
description: factories.string(),
|
|
4235
|
-
type: factories['io.flow.tech.onboarding.playground.v0.enums.anirban_item_type'](),
|
|
4236
|
-
added_on: factories.date_time_iso_8601(),
|
|
4237
|
-
}),
|
|
4238
|
-
|
|
4239
|
-
'io.flow.tech.onboarding.playground.v0.models.ansh_item': (): io.flow.tech.onboarding.playground.v0.models.AnshItem => ({
|
|
4240
|
-
id: factories.string(),
|
|
4241
|
-
number: factories.string(),
|
|
4242
|
-
amount: factories['io.flow.common.v0.models.price'](),
|
|
4243
|
-
description: factories.string(),
|
|
4244
|
-
type: factories['io.flow.tech.onboarding.playground.v0.enums.ansh_item_type'](),
|
|
4245
|
-
added_on: factories.date_iso_8601(),
|
|
4246
|
-
}),
|
|
4247
|
-
|
|
4248
|
-
'io.flow.tech.onboarding.playground.v0.models.ansh_item_form': (): io.flow.tech.onboarding.playground.v0.models.AnshItemForm => ({
|
|
4249
|
-
number: factories.string(),
|
|
4250
|
-
amount: factories['io.flow.common.v0.models.price'](),
|
|
4251
|
-
description: factories.string(),
|
|
4252
|
-
type: factories['io.flow.tech.onboarding.playground.v0.enums.ansh_item_type'](),
|
|
4253
|
-
added_on: factories.date_iso_8601(),
|
|
4254
|
-
}),
|
|
4255
|
-
|
|
4256
|
-
'io.flow.tech.onboarding.playground.v0.models.hosein_item': (): io.flow.tech.onboarding.playground.v0.models.HoseinItem => ({
|
|
4257
|
-
id: factories.string(),
|
|
4258
|
-
number: factories.string(),
|
|
4259
|
-
amount: factories['io.flow.common.v0.models.price'](),
|
|
4260
|
-
description: factories.string(),
|
|
4261
|
-
type: factories['io.flow.tech.onboarding.playground.v0.enums.hosein_item_type'](),
|
|
4262
|
-
added_on: factories.date_time_iso_8601(),
|
|
4263
|
-
}),
|
|
4264
|
-
|
|
4265
|
-
'io.flow.tech.onboarding.playground.v0.models.hosein_item_form': (): io.flow.tech.onboarding.playground.v0.models.HoseinItemForm => ({
|
|
4266
|
-
number: factories.string(),
|
|
4267
|
-
amount: factories['io.flow.common.v0.models.price'](),
|
|
4268
|
-
description: factories.string(),
|
|
4269
|
-
type: factories['io.flow.tech.onboarding.playground.v0.enums.hosein_item_type'](),
|
|
4270
|
-
added_on: factories.date_time_iso_8601(),
|
|
4271
|
-
}),
|
|
4272
|
-
|
|
4273
|
-
'io.flow.tech.onboarding.playground.v0.models.jean_demo_item': (): io.flow.tech.onboarding.playground.v0.models.JeanDemoItem => ({
|
|
4274
|
-
id: factories.string(),
|
|
4275
|
-
name: factories.string(),
|
|
4276
|
-
}),
|
|
4277
|
-
|
|
4278
|
-
'io.flow.tech.onboarding.playground.v0.models.niall_item': (): io.flow.tech.onboarding.playground.v0.models.NiallItem => ({
|
|
4279
|
-
id: factories.string(),
|
|
4280
|
-
number: factories.string(),
|
|
4281
|
-
amount: factories['io.flow.common.v0.models.price'](),
|
|
4282
|
-
description: factories.string(),
|
|
4283
|
-
type: factories['io.flow.tech.onboarding.playground.v0.enums.niall_item_type'](),
|
|
4284
|
-
added_on: factories.date_time_iso_8601(),
|
|
4285
|
-
}),
|
|
4286
|
-
|
|
4287
|
-
'io.flow.tech.onboarding.playground.v0.models.niall_item_form': (): io.flow.tech.onboarding.playground.v0.models.NiallItemForm => ({
|
|
4288
|
-
number: factories.string(),
|
|
4289
|
-
amount: factories['io.flow.common.v0.models.price'](),
|
|
4290
|
-
description: factories.string(),
|
|
4291
|
-
type: factories['io.flow.tech.onboarding.playground.v0.enums.niall_item_type'](),
|
|
4292
|
-
added_on: factories.date_time_iso_8601(),
|
|
4293
|
-
}),
|
|
4294
|
-
|
|
4295
|
-
'io.flow.tech.onboarding.playground.v0.models.prateek_item': (): io.flow.tech.onboarding.playground.v0.models.PrateekItem => ({
|
|
4296
|
-
id: factories.string(),
|
|
4297
|
-
number: factories.string(),
|
|
4298
|
-
amount: factories['io.flow.common.v0.models.price'](),
|
|
4299
|
-
description: factories.string(),
|
|
4300
|
-
type: factories['io.flow.tech.onboarding.playground.v0.enums.prateek_item_type'](),
|
|
4301
|
-
added_on: factories.date_iso_8601(),
|
|
4302
|
-
}),
|
|
4303
|
-
|
|
4304
|
-
'io.flow.tech.onboarding.playground.v0.models.prateek_item_form': (): io.flow.tech.onboarding.playground.v0.models.PrateekItemForm => ({
|
|
4305
|
-
number: factories.string(),
|
|
4306
|
-
amount: factories['io.flow.common.v0.models.price'](),
|
|
4307
|
-
description: factories.string(),
|
|
4308
|
-
type: factories['io.flow.tech.onboarding.playground.v0.enums.prateek_item_type'](),
|
|
4309
|
-
added_on: factories.date_iso_8601(),
|
|
4310
|
-
}),
|
|
4311
|
-
|
|
4312
|
-
'io.flow.tech.onboarding.playground.v0.models.rohan_item': (): io.flow.tech.onboarding.playground.v0.models.RohanItem => ({
|
|
4313
|
-
id: factories.string(),
|
|
4314
|
-
number: factories.string(),
|
|
4315
|
-
amount: factories['io.flow.common.v0.models.price'](),
|
|
4316
|
-
description: factories.string(),
|
|
4317
|
-
type: factories['io.flow.tech.onboarding.playground.v0.enums.rohan_item_type'](),
|
|
4318
|
-
added_on: factories.date_iso_8601(),
|
|
4319
|
-
}),
|
|
4320
|
-
|
|
4321
|
-
'io.flow.tech.onboarding.playground.v0.models.rohan_item_form': (): io.flow.tech.onboarding.playground.v0.models.RohanItemForm => ({
|
|
4322
|
-
number: factories.string(),
|
|
4323
|
-
amount: factories['io.flow.common.v0.models.price'](),
|
|
4324
|
-
description: factories.string(),
|
|
4325
|
-
type: factories['io.flow.tech.onboarding.playground.v0.enums.rohan_item_type'](),
|
|
4326
|
-
added_on: factories.date_iso_8601(),
|
|
4327
|
-
}),
|
|
4328
|
-
|
|
4329
|
-
'io.flow.tech.onboarding.playground.v0.models.sarvesh_item': (): io.flow.tech.onboarding.playground.v0.models.SarveshItem => ({
|
|
4330
|
-
id: factories.string(),
|
|
4331
|
-
number: factories.string(),
|
|
4332
|
-
amount: factories['io.flow.common.v0.models.price'](),
|
|
4333
|
-
description: factories.string(),
|
|
4334
|
-
type: factories['io.flow.tech.onboarding.playground.v0.enums.sarvesh_item_type'](),
|
|
4335
|
-
added_on: factories.date_time_iso_8601(),
|
|
4336
|
-
}),
|
|
4337
|
-
|
|
4338
|
-
'io.flow.tech.onboarding.playground.v0.models.sarvesh_item_form': (): io.flow.tech.onboarding.playground.v0.models.SarveshItemForm => ({
|
|
4339
|
-
number: factories.string(),
|
|
4340
|
-
amount: factories['io.flow.common.v0.models.price'](),
|
|
4341
|
-
description: factories.string(),
|
|
4342
|
-
type: factories['io.flow.tech.onboarding.playground.v0.enums.sarvesh_item_type'](),
|
|
4343
|
-
added_on: factories.date_time_iso_8601(),
|
|
4344
|
-
}),
|
|
4345
|
-
|
|
4346
|
-
'io.flow.tech.onboarding.playground.v0.models.tech_onboarding_description': (): io.flow.tech.onboarding.playground.v0.models.TechOnboardingDescription => ({
|
|
4347
|
-
description: factories.string(),
|
|
4348
|
-
}),
|
|
4349
|
-
|
|
4350
4229
|
'io.flow.v0.enums.abandoned_order_promotion_status': (): io.flow.v0.enums.AbandonedOrderPromotionStatus => faker.helpers.arrayElement(['active', 'inactive']),
|
|
4351
4230
|
'io.flow.v0.enums.abandoned_order_setting_status': (): io.flow.v0.enums.AbandonedOrderSettingStatus => faker.helpers.arrayElement(['active', 'inactive']),
|
|
4352
4231
|
|
|
@@ -4477,6 +4356,7 @@ const factories = {
|
|
|
4477
4356
|
'io.flow.v0.enums.change_type': (): io.flow.v0.enums.ChangeType => faker.helpers.arrayElement(['insert', 'update', 'delete']),
|
|
4478
4357
|
'io.flow.v0.enums.channel_currency_capability': (): io.flow.v0.enums.ChannelCurrencyCapability => faker.helpers.arrayElement(['payment_authorizations', 'settlement_currency']),
|
|
4479
4358
|
'io.flow.v0.enums.channel_shopify_order_state_reason_code': (): io.flow.v0.enums.ChannelShopifyOrderStateReasonCode => faker.helpers.arrayElement(['placeholder_reason_code']),
|
|
4359
|
+
'io.flow.v0.enums.commercial_invoice_mode': (): io.flow.v0.enums.CommercialInvoiceMode => faker.helpers.arrayElement(['direct', 'indirect']),
|
|
4480
4360
|
'io.flow.v0.enums.consumer_invoice_customer_type': (): io.flow.v0.enums.ConsumerInvoiceCustomerType => faker.helpers.arrayElement(['business_eu_verified', 'business_non_verified', 'individual']),
|
|
4481
4361
|
'io.flow.v0.enums.consumer_invoice_document_type': (): io.flow.v0.enums.ConsumerInvoiceDocumentType => faker.helpers.arrayElement(['pdf']),
|
|
4482
4362
|
'io.flow.v0.enums.consumer_invoice_status': (): io.flow.v0.enums.ConsumerInvoiceStatus => faker.helpers.arrayElement(['pending', 'available', 'invalid']),
|
|
@@ -4555,20 +4435,6 @@ const factories = {
|
|
|
4555
4435
|
'io.flow.v0.enums.event_type': (): io.flow.v0.enums.EventType => faker.helpers.arrayElement([
|
|
4556
4436
|
'test_upserted',
|
|
4557
4437
|
'generate_load',
|
|
4558
|
-
'sarvesh_item_upserted',
|
|
4559
|
-
'sarvesh_item_deleted',
|
|
4560
|
-
'hosein_item_upserted',
|
|
4561
|
-
'hosein_item_deleted',
|
|
4562
|
-
'niall_item_upserted',
|
|
4563
|
-
'niall_item_deleted',
|
|
4564
|
-
'rohan_item_upserted',
|
|
4565
|
-
'rohan_item_deleted',
|
|
4566
|
-
'aldo_item_upserted',
|
|
4567
|
-
'aldo_item_deleted',
|
|
4568
|
-
'ansh_item_upserted',
|
|
4569
|
-
'ansh_item_deleted',
|
|
4570
|
-
'anirban_item_upserted',
|
|
4571
|
-
'anirban_item_deleted',
|
|
4572
4438
|
'transaction_upserted',
|
|
4573
4439
|
'organization_transaction_upserted',
|
|
4574
4440
|
'organization_transaction_deleted',
|
|
@@ -4675,6 +4541,8 @@ const factories = {
|
|
|
4675
4541
|
'organization_deleted_v2',
|
|
4676
4542
|
'ecommerce_platform_upserted',
|
|
4677
4543
|
'ecommerce_platform_deleted',
|
|
4544
|
+
'tax_registration_upserted',
|
|
4545
|
+
'tax_registration_deleted',
|
|
4678
4546
|
'organization_onboarding_state_upserted',
|
|
4679
4547
|
'organization_onboarding_state_deleted',
|
|
4680
4548
|
'authorization_deleted_v2',
|
|
@@ -4722,9 +4590,12 @@ const factories = {
|
|
|
4722
4590
|
'ratecard_deleted',
|
|
4723
4591
|
'product_restriction_result_upserted',
|
|
4724
4592
|
'product_restriction_result_deleted',
|
|
4593
|
+
'product_sellability_result_upserted',
|
|
4594
|
+
'product_sellability_result_deleted',
|
|
4725
4595
|
'shopify_localization_setting_upserted',
|
|
4726
4596
|
'shopify_localization_setting_deleted',
|
|
4727
4597
|
'tracking_label_event_upserted',
|
|
4598
|
+
'tracking_label_event_upserted_v2',
|
|
4728
4599
|
]),
|
|
4729
4600
|
|
|
4730
4601
|
'io.flow.v0.enums.exception_type': (): io.flow.v0.enums.ExceptionType => faker.helpers.arrayElement(['open', 'closed']),
|
|
@@ -5206,6 +5077,7 @@ const factories = {
|
|
|
5206
5077
|
'io.flow.v0.enums.refund_status': (): io.flow.v0.enums.RefundStatus => faker.helpers.arrayElement(['pending', 'succeeded', 'failed', 'canceled']),
|
|
5207
5078
|
'io.flow.v0.enums.region_type': (): io.flow.v0.enums.RegionType => faker.helpers.arrayElement(['state', 'province', 'jurisdiction']),
|
|
5208
5079
|
'io.flow.v0.enums.restricted_review_status': (): io.flow.v0.enums.RestrictedReviewStatus => faker.helpers.arrayElement(['in_review', 'reviewed']),
|
|
5080
|
+
'io.flow.v0.enums.restriction_environment': (): io.flow.v0.enums.RestrictionEnvironment => faker.helpers.arrayElement(['sandbox', 'production', 'qa']),
|
|
5209
5081
|
'io.flow.v0.enums.return_item_status': (): io.flow.v0.enums.ReturnItemStatus => faker.helpers.arrayElement(['returnable', 'non-returnable']),
|
|
5210
5082
|
'io.flow.v0.enums.return_policy_state': (): io.flow.v0.enums.ReturnPolicyState => faker.helpers.arrayElement(['current', 'deleting', 'updating']),
|
|
5211
5083
|
'io.flow.v0.enums.return_status': (): io.flow.v0.enums.ReturnStatus => faker.helpers.arrayElement(['open', 'refunded']),
|
|
@@ -5260,6 +5132,9 @@ const factories = {
|
|
|
5260
5132
|
]),
|
|
5261
5133
|
|
|
5262
5134
|
'io.flow.v0.enums.sellability_request_status': (): io.flow.v0.enums.SellabilityRequestStatus => faker.helpers.arrayElement(['commit']),
|
|
5135
|
+
'io.flow.v0.enums.sellability_result_error_code': (): io.flow.v0.enums.SellabilityResultErrorCode => faker.helpers.arrayElement(['insufficient_details', 'generic_error']),
|
|
5136
|
+
'io.flow.v0.enums.sellability_result_status': (): io.flow.v0.enums.SellabilityResultStatus => faker.helpers.arrayElement(['in_review', 'succeeded', 'failed']),
|
|
5137
|
+
'io.flow.v0.enums.sellability_screening_mode': (): io.flow.v0.enums.SellabilityScreeningMode => faker.helpers.arrayElement(['pre_onboarding', 'default_on', 'active']),
|
|
5263
5138
|
'io.flow.v0.enums.shipment_integration_type': (): io.flow.v0.enums.ShipmentIntegrationType => faker.helpers.arrayElement(['direct', 'information', 'preadvice']),
|
|
5264
5139
|
'io.flow.v0.enums.shipment_recipient': (): io.flow.v0.enums.ShipmentRecipient => faker.helpers.arrayElement(['customer', 'return', 'crossdock']),
|
|
5265
5140
|
'io.flow.v0.enums.shipping_configuration_type': (): io.flow.v0.enums.ShippingConfigurationType => faker.helpers.arrayElement(['default', 'variant']),
|
|
@@ -5283,7 +5158,8 @@ const factories = {
|
|
|
5283
5158
|
'io.flow.v0.enums.shopify_localization_method': (): io.flow.v0.enums.ShopifyLocalizationMethod => faker.helpers.arrayElement(['api', 'ssr']),
|
|
5284
5159
|
'io.flow.v0.enums.shopify_sync_check': (): io.flow.v0.enums.ShopifySyncCheck => faker.helpers.arrayElement(['localized_variants', 'flow_variant_metafields']),
|
|
5285
5160
|
'io.flow.v0.enums.sort_direction': (): io.flow.v0.enums.SortDirection => faker.helpers.arrayElement(['ascending', 'descending']),
|
|
5286
|
-
'io.flow.v0.enums.statement_attachment_type': (): io.flow.v0.enums.StatementAttachmentType => faker.helpers.arrayElement(['csv']),
|
|
5161
|
+
'io.flow.v0.enums.statement_attachment_type': (): io.flow.v0.enums.StatementAttachmentType => faker.helpers.arrayElement(['csv', 'pdf']),
|
|
5162
|
+
'io.flow.v0.enums.statement_status_code': (): io.flow.v0.enums.StatementStatusCode => faker.helpers.arrayElement(['scheduled', 'sent', 'failed']),
|
|
5287
5163
|
'io.flow.v0.enums.stored_method_usage_step': (): io.flow.v0.enums.StoredMethodUsageStep => faker.helpers.arrayElement(['initial', 'subsequent']),
|
|
5288
5164
|
'io.flow.v0.enums.strategy': (): io.flow.v0.enums.Strategy => faker.helpers.arrayElement(['range', 'from', 'to']),
|
|
5289
5165
|
'io.flow.v0.enums.subcatalog_item_status': (): io.flow.v0.enums.SubcatalogItemStatus => faker.helpers.arrayElement(['excluded', 'included', 'restricted']),
|
|
@@ -5366,6 +5242,7 @@ const factories = {
|
|
|
5366
5242
|
'order_edit',
|
|
5367
5243
|
'mixed_fulfilment_non_lvg',
|
|
5368
5244
|
'lvg_refund',
|
|
5245
|
+
'us_inbound_tax_refund',
|
|
5369
5246
|
'order_cancellation_above_de_min',
|
|
5370
5247
|
'wyol_shipment_above_de_min',
|
|
5371
5248
|
'full_refund_without_shipment',
|
|
@@ -5438,6 +5315,8 @@ const factories = {
|
|
|
5438
5315
|
'merchant_refund',
|
|
5439
5316
|
'ge_revenue_share',
|
|
5440
5317
|
'merchant_fee',
|
|
5318
|
+
'b2b_tax',
|
|
5319
|
+
'b2b_tax_refund',
|
|
5441
5320
|
]),
|
|
5442
5321
|
|
|
5443
5322
|
'io.flow.v0.enums.transfer_status': (): io.flow.v0.enums.TransferStatus => faker.helpers.arrayElement(['succeeded', 'canceled']),
|
|
@@ -5451,7 +5330,7 @@ const factories = {
|
|
|
5451
5330
|
'refund_from_merchant',
|
|
5452
5331
|
]),
|
|
5453
5332
|
|
|
5454
|
-
'io.flow.v0.enums.trueup_source': (): io.flow.v0.enums.TrueupSource => faker.helpers.arrayElement(['flow', 'channel', 'dhl-parcel', 'dhl', 'ups']),
|
|
5333
|
+
'io.flow.v0.enums.trueup_source': (): io.flow.v0.enums.TrueupSource => faker.helpers.arrayElement(['flow', 'channel', 'dhl-parcel', 'dhl', 'ups', 'fedex']),
|
|
5455
5334
|
|
|
5456
5335
|
'io.flow.v0.enums.trueup_surcharge_type': (): io.flow.v0.enums.TrueupSurchargeType => faker.helpers.arrayElement([
|
|
5457
5336
|
'fuel',
|
|
@@ -5842,20 +5721,6 @@ const factories = {
|
|
|
5842
5721
|
fingerprint_token: factories.string(),
|
|
5843
5722
|
}),
|
|
5844
5723
|
|
|
5845
|
-
'io.flow.v0.models.aldo_item_deleted': (): io.flow.v0.models.AldoItemDeleted => ({
|
|
5846
|
-
discriminator: 'aldo_item_deleted',
|
|
5847
|
-
event_id: factories.string(),
|
|
5848
|
-
timestamp: factories.date_time_iso_8601(),
|
|
5849
|
-
id: factories.string(),
|
|
5850
|
-
}),
|
|
5851
|
-
|
|
5852
|
-
'io.flow.v0.models.aldo_item_upserted': (): io.flow.v0.models.AldoItemUpserted => ({
|
|
5853
|
-
discriminator: 'aldo_item_upserted',
|
|
5854
|
-
event_id: factories.string(),
|
|
5855
|
-
timestamp: factories.date_time_iso_8601(),
|
|
5856
|
-
item: factories['io.flow.tech.onboarding.playground.v0.models.aldo_item'](),
|
|
5857
|
-
}),
|
|
5858
|
-
|
|
5859
5724
|
'io.flow.v0.models.allocation': (): io.flow.v0.models.Allocation => ({
|
|
5860
5725
|
order: factories['io.flow.v0.models.allocation_order_summary'](),
|
|
5861
5726
|
details: arrayOf(() => factories['io.flow.v0.unions.allocation_detail']()),
|
|
@@ -5980,34 +5845,6 @@ const factories = {
|
|
|
5980
5845
|
interval: factories['io.flow.v0.enums.unit_of_time'](),
|
|
5981
5846
|
}),
|
|
5982
5847
|
|
|
5983
|
-
'io.flow.v0.models.anirban_item_deleted': (): io.flow.v0.models.AnirbanItemDeleted => ({
|
|
5984
|
-
discriminator: 'anirban_item_deleted',
|
|
5985
|
-
event_id: factories.string(),
|
|
5986
|
-
timestamp: factories.date_time_iso_8601(),
|
|
5987
|
-
id: factories.string(),
|
|
5988
|
-
}),
|
|
5989
|
-
|
|
5990
|
-
'io.flow.v0.models.anirban_item_upserted': (): io.flow.v0.models.AnirbanItemUpserted => ({
|
|
5991
|
-
discriminator: 'anirban_item_upserted',
|
|
5992
|
-
event_id: factories.string(),
|
|
5993
|
-
timestamp: factories.date_time_iso_8601(),
|
|
5994
|
-
item: factories['io.flow.tech.onboarding.playground.v0.models.anirban_item'](),
|
|
5995
|
-
}),
|
|
5996
|
-
|
|
5997
|
-
'io.flow.v0.models.ansh_item_deleted': (): io.flow.v0.models.AnshItemDeleted => ({
|
|
5998
|
-
discriminator: 'ansh_item_deleted',
|
|
5999
|
-
event_id: factories.string(),
|
|
6000
|
-
timestamp: factories.date_time_iso_8601(),
|
|
6001
|
-
id: factories.string(),
|
|
6002
|
-
}),
|
|
6003
|
-
|
|
6004
|
-
'io.flow.v0.models.ansh_item_upserted': (): io.flow.v0.models.AnshItemUpserted => ({
|
|
6005
|
-
discriminator: 'ansh_item_upserted',
|
|
6006
|
-
event_id: factories.string(),
|
|
6007
|
-
timestamp: factories.date_time_iso_8601(),
|
|
6008
|
-
item: factories['io.flow.tech.onboarding.playground.v0.models.ansh_item'](),
|
|
6009
|
-
}),
|
|
6010
|
-
|
|
6011
5848
|
'io.flow.v0.models.apple_pay_merchant_validation_payload': (): io.flow.v0.models.ApplePayMerchantValidationPayload => ({
|
|
6012
5849
|
discriminator: 'apple_pay_merchant_validation_payload',
|
|
6013
5850
|
validation_url: factories.string(),
|
|
@@ -6296,9 +6133,12 @@ const factories = {
|
|
|
6296
6133
|
invoice: factories['io.flow.v0.models.b2b_invoice_reference'](),
|
|
6297
6134
|
lines: arrayOf(() => factories['io.flow.v0.unions.consumer_invoice_line']()),
|
|
6298
6135
|
tax_lines: arrayOf(() => factories['io.flow.v0.models.invoice_tax_line']()),
|
|
6136
|
+
tax: factories['io.flow.v0.models.money'](),
|
|
6299
6137
|
documents: arrayOf(() => factories['io.flow.v0.models.consumer_invoice_document']()),
|
|
6300
6138
|
attributes: objectOf(() => factories.string()),
|
|
6301
6139
|
b2b_invoice_type: factories['io.flow.v0.enums.b2b_invoice_type'](),
|
|
6140
|
+
center: factories['io.flow.v0.models.consumer_invoice_center_reference'](),
|
|
6141
|
+
order: factories['io.flow.v0.models.consumer_invoice_order_summary'](),
|
|
6302
6142
|
}),
|
|
6303
6143
|
|
|
6304
6144
|
'io.flow.v0.models.b2b_credit_memo_deleted': (): io.flow.v0.models.B2BCreditMemoDeleted => ({
|
|
@@ -7125,6 +6965,7 @@ const factories = {
|
|
|
7125
6965
|
shopify_order_summary: factories['io.flow.v0.models.channel_shopify_order_summary'](),
|
|
7126
6966
|
status: factories['io.flow.channel.internal.v0.enums.channel_order_acceptance_status'](),
|
|
7127
6967
|
reasons: arrayOf(() => factories['io.flow.v0.models.channel_shopify_order_state_reason']()),
|
|
6968
|
+
external_order_summary: factories['io.flow.v0.models.external_order_summary'](),
|
|
7128
6969
|
}),
|
|
7129
6970
|
|
|
7130
6971
|
'io.flow.v0.models.channel_shopify_order_state_deleted': (): io.flow.v0.models.ChannelShopifyOrderStateDeleted => ({
|
|
@@ -7354,6 +7195,77 @@ const factories = {
|
|
|
7354
7195
|
amount: factories['io.flow.v0.models.money'](),
|
|
7355
7196
|
}),
|
|
7356
7197
|
|
|
7198
|
+
'io.flow.v0.models.common_merchant_application': (): io.flow.v0.models.CommonMerchantApplication => ({
|
|
7199
|
+
discriminator: 'common_merchant_application',
|
|
7200
|
+
id: factories.string(),
|
|
7201
|
+
organization_id: factories.string(),
|
|
7202
|
+
organization_reference: factories['io.flow.v0.models.onboarding_organization_reference'](),
|
|
7203
|
+
status: factories['io.flow.v0.enums.onboarding_application_status'](),
|
|
7204
|
+
company: factories['io.flow.v0.models.merchant_info'](),
|
|
7205
|
+
indirect_tax: factories['io.flow.v0.models.indirect_tax'](),
|
|
7206
|
+
ultimate_beneficiary_owner: factories['io.flow.v0.models.ultimate_beneficiary_owner'](),
|
|
7207
|
+
business_url: factories.string(),
|
|
7208
|
+
business_description: factories.string(),
|
|
7209
|
+
business_address: factories['io.flow.v0.models.address'](),
|
|
7210
|
+
refund_percentage: factories.decimal(),
|
|
7211
|
+
chargeback_percentage: factories.decimal(),
|
|
7212
|
+
beneficiary_details: factories['io.flow.v0.models.merchant_onboarding_beneficiary_details'](),
|
|
7213
|
+
other_trade_sector: factories.string(),
|
|
7214
|
+
center_contact: factories['io.flow.v0.models.operations_contact'](),
|
|
7215
|
+
center_address: factories['io.flow.v0.models.address'](),
|
|
7216
|
+
average_order_weight: factories.decimal(),
|
|
7217
|
+
average_order_weight_unit: factories['io.flow.v0.enums.unit_of_measurement'](),
|
|
7218
|
+
package_dimensions: arrayOf(() => factories['io.flow.v0.models.dimension']()),
|
|
7219
|
+
monthly_average: factories['io.flow.v0.models.monthly_average'](),
|
|
7220
|
+
default_country_of_origin: factories.string(),
|
|
7221
|
+
rate_card: factories.string(),
|
|
7222
|
+
shop: factories['io.flow.v0.models.shop'](),
|
|
7223
|
+
created_at: factories.date_time_iso_8601(),
|
|
7224
|
+
last_year_xborder_gmv: factories['io.flow.v0.models.money'](),
|
|
7225
|
+
last_month_xborder_gmv: factories['io.flow.v0.models.money'](),
|
|
7226
|
+
average_order_value: factories['io.flow.v0.models.money'](),
|
|
7227
|
+
mcc_codes: arrayOf(() => factories.long()),
|
|
7228
|
+
}),
|
|
7229
|
+
|
|
7230
|
+
'io.flow.v0.models.common_merchant_application_form': (): io.flow.v0.models.CommonMerchantApplicationForm => ({
|
|
7231
|
+
discriminator: 'common_merchant_application_form',
|
|
7232
|
+
company: factories['io.flow.v0.models.merchant_info'](),
|
|
7233
|
+
indirect_tax: factories['io.flow.v0.models.indirect_tax'](),
|
|
7234
|
+
ultimate_beneficiary_owner: factories['io.flow.v0.models.ultimate_beneficiary_owner'](),
|
|
7235
|
+
business_url: factories.string(),
|
|
7236
|
+
business_description: factories.string(),
|
|
7237
|
+
business_address: factories['io.flow.v0.models.address'](),
|
|
7238
|
+
refund_percentage: factories.decimal(),
|
|
7239
|
+
chargeback_percentage: factories.decimal(),
|
|
7240
|
+
beneficiary_details: factories['io.flow.v0.models.merchant_onboarding_beneficiary_details'](),
|
|
7241
|
+
other_trade_sector: factories.string(),
|
|
7242
|
+
center_contact: factories['io.flow.v0.models.operations_contact'](),
|
|
7243
|
+
center_address: factories['io.flow.v0.models.address'](),
|
|
7244
|
+
average_order_weight: factories.decimal(),
|
|
7245
|
+
average_order_weight_unit: factories['io.flow.v0.enums.unit_of_measurement'](),
|
|
7246
|
+
package_dimensions: arrayOf(() => factories['io.flow.v0.models.dimension']()),
|
|
7247
|
+
monthly_average_volume_amount: factories.decimal(),
|
|
7248
|
+
monthly_average_volume_currency: factories.string(),
|
|
7249
|
+
monthly_average_number_transactions: factories.long(),
|
|
7250
|
+
default_country_of_origin: factories.string(),
|
|
7251
|
+
shop: factories['io.flow.v0.models.shop'](),
|
|
7252
|
+
rate_card: factories.string(),
|
|
7253
|
+
last_year_xborder_gmv: factories['io.flow.v0.models.money'](),
|
|
7254
|
+
last_month_xborder_gmv: factories['io.flow.v0.models.money'](),
|
|
7255
|
+
average_order_value: factories['io.flow.v0.models.money'](),
|
|
7256
|
+
mcc_codes: arrayOf(() => factories.long()),
|
|
7257
|
+
}),
|
|
7258
|
+
|
|
7259
|
+
'io.flow.v0.models.common_merchant_application_put_form': (): io.flow.v0.models.CommonMerchantApplicationPutForm => ({
|
|
7260
|
+
discriminator: 'common_merchant_application_put_form',
|
|
7261
|
+
status: factories['io.flow.v0.enums.onboarding_application_status'](),
|
|
7262
|
+
}),
|
|
7263
|
+
|
|
7264
|
+
'io.flow.v0.models.common_merchant_applications_summary': (): io.flow.v0.models.CommonMerchantApplicationsSummary => ({
|
|
7265
|
+
discriminator: 'common_merchant_applications_summary',
|
|
7266
|
+
total: factories.long(),
|
|
7267
|
+
}),
|
|
7268
|
+
|
|
7357
7269
|
'io.flow.v0.models.company': (): io.flow.v0.models.Company => ({
|
|
7358
7270
|
discriminator: 'company',
|
|
7359
7271
|
legal_name: factories.string(),
|
|
@@ -7587,6 +7499,8 @@ const factories = {
|
|
|
7587
7499
|
documents: arrayOf(() => factories['io.flow.v0.models.consumer_invoice_document']()),
|
|
7588
7500
|
attributes: objectOf(() => factories.string()),
|
|
7589
7501
|
tax_registration: factories['io.flow.v0.models.tax_registration'](),
|
|
7502
|
+
center: factories['io.flow.v0.models.consumer_invoice_center_reference'](),
|
|
7503
|
+
order: factories['io.flow.v0.models.consumer_invoice_order_summary'](),
|
|
7590
7504
|
}),
|
|
7591
7505
|
|
|
7592
7506
|
'io.flow.v0.models.credit_memo_deleted': (): io.flow.v0.models.CreditMemoDeleted => ({
|
|
@@ -8373,6 +8287,7 @@ const factories = {
|
|
|
8373
8287
|
amount: factories['io.flow.v0.models.money'](),
|
|
8374
8288
|
origin_region: factories['io.flow.v0.models.ratecard_region_reference'](),
|
|
8375
8289
|
destination_region: factories['io.flow.v0.models.ratecard_region_reference'](),
|
|
8290
|
+
destination_regions: arrayOf(() => factories['io.flow.v0.models.ratecard_region_reference']()),
|
|
8376
8291
|
interval_unit: factories['io.flow.v0.enums.unit_of_measurement'](),
|
|
8377
8292
|
}),
|
|
8378
8293
|
|
|
@@ -8711,6 +8626,11 @@ const factories = {
|
|
|
8711
8626
|
type: factories['io.flow.v0.enums.card_type'](),
|
|
8712
8627
|
}),
|
|
8713
8628
|
|
|
8629
|
+
'io.flow.v0.models.external_order_summary': (): io.flow.v0.models.ExternalOrderSummary => ({
|
|
8630
|
+
id: factories.string(),
|
|
8631
|
+
edit_ids: arrayOf(() => factories.string()),
|
|
8632
|
+
}),
|
|
8633
|
+
|
|
8714
8634
|
'io.flow.v0.models.fee_deduction': (): io.flow.v0.models.FeeDeduction => ({
|
|
8715
8635
|
type: factories['io.flow.v0.enums.fee_deduction_type'](),
|
|
8716
8636
|
amount: factories.decimal(),
|
|
@@ -9013,7 +8933,7 @@ const factories = {
|
|
|
9013
8933
|
discriminator: 'ge_catalog_item_ingestion_result',
|
|
9014
8934
|
event_id: factories.string(),
|
|
9015
8935
|
event_type: factories['io.flow.v0.enums.ge_event_type'](),
|
|
9016
|
-
environment: factories['io.flow.v0.enums.
|
|
8936
|
+
environment: factories['io.flow.v0.enums.restriction_environment'](),
|
|
9017
8937
|
timestamp: factories.date_time_iso_8601(),
|
|
9018
8938
|
source: factories.string(),
|
|
9019
8939
|
response: factories['io.flow.v0.enums.ge_catalog_item_ingestion_response'](),
|
|
@@ -9080,7 +9000,7 @@ const factories = {
|
|
|
9080
9000
|
organization: factories.string(),
|
|
9081
9001
|
event_id: factories.string(),
|
|
9082
9002
|
event_type: factories['io.flow.v0.enums.ge_event_type'](),
|
|
9083
|
-
environment: factories['io.flow.v0.enums.
|
|
9003
|
+
environment: factories['io.flow.v0.enums.restriction_environment'](),
|
|
9084
9004
|
timestamp: factories.date_time_iso_8601(),
|
|
9085
9005
|
id: factories.string(),
|
|
9086
9006
|
operation: factories['io.flow.v0.enums.change_type'](),
|
|
@@ -9091,7 +9011,7 @@ const factories = {
|
|
|
9091
9011
|
organization: factories.string(),
|
|
9092
9012
|
event_id: factories.string(),
|
|
9093
9013
|
event_type: factories['io.flow.v0.enums.ge_event_type'](),
|
|
9094
|
-
environment: factories['io.flow.v0.enums.
|
|
9014
|
+
environment: factories['io.flow.v0.enums.restriction_environment'](),
|
|
9095
9015
|
timestamp: factories.date_time_iso_8601(),
|
|
9096
9016
|
operation: factories['io.flow.v0.enums.change_type'](),
|
|
9097
9017
|
ge_product_restriction_result: factories['io.flow.v0.models.product_restriction_result'](),
|
|
@@ -9289,20 +9209,6 @@ const factories = {
|
|
|
9289
9209
|
hop_estimate: factories['io.flow.v0.models.hop_estimate_v2'](),
|
|
9290
9210
|
}),
|
|
9291
9211
|
|
|
9292
|
-
'io.flow.v0.models.hosein_item_deleted': (): io.flow.v0.models.HoseinItemDeleted => ({
|
|
9293
|
-
discriminator: 'hosein_item_deleted',
|
|
9294
|
-
event_id: factories.string(),
|
|
9295
|
-
timestamp: factories.date_time_iso_8601(),
|
|
9296
|
-
id: factories.string(),
|
|
9297
|
-
}),
|
|
9298
|
-
|
|
9299
|
-
'io.flow.v0.models.hosein_item_upserted': (): io.flow.v0.models.HoseinItemUpserted => ({
|
|
9300
|
-
discriminator: 'hosein_item_upserted',
|
|
9301
|
-
event_id: factories.string(),
|
|
9302
|
-
timestamp: factories.date_time_iso_8601(),
|
|
9303
|
-
item: factories['io.flow.tech.onboarding.playground.v0.models.hosein_item'](),
|
|
9304
|
-
}),
|
|
9305
|
-
|
|
9306
9212
|
'io.flow.v0.models.hs10': (): io.flow.v0.models.Hs10 => ({
|
|
9307
9213
|
id: factories.string(),
|
|
9308
9214
|
item: factories['io.flow.v0.models.harmonized_item_reference'](),
|
|
@@ -10344,6 +10250,7 @@ const factories = {
|
|
|
10344
10250
|
region: factories['io.flow.v0.enums.region_type'](),
|
|
10345
10251
|
region_value: factories.string(),
|
|
10346
10252
|
category_code: factories.string(),
|
|
10253
|
+
description: factories.string(),
|
|
10347
10254
|
}),
|
|
10348
10255
|
|
|
10349
10256
|
'io.flow.v0.models.merchant_of_record_authorization_form': (): io.flow.v0.models.MerchantOfRecordAuthorizationForm => ({
|
|
@@ -10379,6 +10286,8 @@ const factories = {
|
|
|
10379
10286
|
'io.flow.v0.models.merchant_of_record_entity_registration': (): io.flow.v0.models.MerchantOfRecordEntityRegistration => ({
|
|
10380
10287
|
number: factories.string(),
|
|
10381
10288
|
country: factories.string(),
|
|
10289
|
+
province_number: factories.string(),
|
|
10290
|
+
province: factories.string(),
|
|
10382
10291
|
}),
|
|
10383
10292
|
|
|
10384
10293
|
'io.flow.v0.models.merchant_of_record_payment_form': (): io.flow.v0.models.MerchantOfRecordPaymentForm => ({
|
|
@@ -10398,6 +10307,17 @@ const factories = {
|
|
|
10398
10307
|
country: factories.string(),
|
|
10399
10308
|
}),
|
|
10400
10309
|
|
|
10310
|
+
'io.flow.v0.models.merchant_onboarding_beneficiary_details': (): io.flow.v0.models.MerchantOnboardingBeneficiaryDetails => ({
|
|
10311
|
+
name: factories.string(),
|
|
10312
|
+
address: factories['io.flow.v0.models.address'](),
|
|
10313
|
+
phone: factories.string(),
|
|
10314
|
+
email: factories.string(),
|
|
10315
|
+
bank_account_number: factories.string(),
|
|
10316
|
+
bank_routing_number: factories.string(),
|
|
10317
|
+
bank_name: factories.string(),
|
|
10318
|
+
bank_address: factories['io.flow.v0.models.address'](),
|
|
10319
|
+
}),
|
|
10320
|
+
|
|
10401
10321
|
'io.flow.v0.models.merchant_rejected': (): io.flow.v0.models.MerchantRejected => ({
|
|
10402
10322
|
discriminator: 'merchant_rejected',
|
|
10403
10323
|
reason: factories['io.flow.v0.enums.merchant_rejected_reason'](),
|
|
@@ -10448,20 +10368,6 @@ const factories = {
|
|
|
10448
10368
|
require_msds: factories.boolean(),
|
|
10449
10369
|
}),
|
|
10450
10370
|
|
|
10451
|
-
'io.flow.v0.models.niall_item_deleted': (): io.flow.v0.models.NiallItemDeleted => ({
|
|
10452
|
-
discriminator: 'niall_item_deleted',
|
|
10453
|
-
event_id: factories.string(),
|
|
10454
|
-
timestamp: factories.date_time_iso_8601(),
|
|
10455
|
-
id: factories.string(),
|
|
10456
|
-
}),
|
|
10457
|
-
|
|
10458
|
-
'io.flow.v0.models.niall_item_upserted': (): io.flow.v0.models.NiallItemUpserted => ({
|
|
10459
|
-
discriminator: 'niall_item_upserted',
|
|
10460
|
-
event_id: factories.string(),
|
|
10461
|
-
timestamp: factories.date_time_iso_8601(),
|
|
10462
|
-
item: factories['io.flow.tech.onboarding.playground.v0.models.niall_item'](),
|
|
10463
|
-
}),
|
|
10464
|
-
|
|
10465
10371
|
'io.flow.v0.models.notification_deleted_v2': (): io.flow.v0.models.NotificationDeletedV2 => ({
|
|
10466
10372
|
discriminator: 'notification_deleted_v2',
|
|
10467
10373
|
event_id: factories.string(),
|
|
@@ -11328,6 +11234,22 @@ const factories = {
|
|
|
11328
11234
|
environment: factories['io.flow.v0.enums.environment'](),
|
|
11329
11235
|
}),
|
|
11330
11236
|
|
|
11237
|
+
'io.flow.v0.models.organization_tax_registration': (): io.flow.v0.models.OrganizationTaxRegistration => ({
|
|
11238
|
+
id: factories.string(),
|
|
11239
|
+
organization: factories['io.flow.v0.models.organization_summary'](),
|
|
11240
|
+
address: factories['io.flow.v0.models.billing_address'](),
|
|
11241
|
+
registration: factories['io.flow.v0.models.tax_registration_detail'](),
|
|
11242
|
+
self_billing_agreement: factories['io.flow.v0.models.self_billing_agreement'](),
|
|
11243
|
+
}),
|
|
11244
|
+
|
|
11245
|
+
'io.flow.v0.models.organization_tax_registration_form': (): io.flow.v0.models.OrganizationTaxRegistrationForm => ({
|
|
11246
|
+
tax_number: factories.string(),
|
|
11247
|
+
country: factories.string(),
|
|
11248
|
+
province: factories.string(),
|
|
11249
|
+
self_billing_agreement_effective_at: factories.date_time_iso_8601(),
|
|
11250
|
+
self_billing_agreement_expires_at: factories.date_time_iso_8601(),
|
|
11251
|
+
}),
|
|
11252
|
+
|
|
11331
11253
|
'io.flow.v0.models.organization_token': (): io.flow.v0.models.OrganizationToken => ({
|
|
11332
11254
|
discriminator: 'organization_token',
|
|
11333
11255
|
id: factories.string(),
|
|
@@ -12125,6 +12047,7 @@ const factories = {
|
|
|
12125
12047
|
supported_actions: arrayOf(() => factories['io.flow.v0.enums.payment_action_type']()),
|
|
12126
12048
|
payment_capture_option: factories['io.flow.v0.unions.payment_capture_option'](),
|
|
12127
12049
|
review: factories['io.flow.v0.models.payment_request_review'](),
|
|
12050
|
+
client_secret: factories.string(),
|
|
12128
12051
|
}),
|
|
12129
12052
|
|
|
12130
12053
|
'io.flow.v0.models.payment_request_billing': (): io.flow.v0.models.PaymentRequestBilling => ({
|
|
@@ -12653,7 +12576,7 @@ const factories = {
|
|
|
12653
12576
|
updated_by: factories.string(),
|
|
12654
12577
|
product_restriction_id: factories.string(),
|
|
12655
12578
|
hs_code: factories.string(),
|
|
12656
|
-
restricted_regions_by_type: arrayOf(() => factories['io.flow.v0.models.
|
|
12579
|
+
restricted_regions_by_type: arrayOf(() => factories['io.flow.v0.models.sellability_region_result']()),
|
|
12657
12580
|
needs_action_attributes: arrayOf(() => factories['io.flow.v0.models.needs_action_attributes']()),
|
|
12658
12581
|
}),
|
|
12659
12582
|
|
|
@@ -12679,10 +12602,11 @@ const factories = {
|
|
|
12679
12602
|
product_id: factories.string(),
|
|
12680
12603
|
request_id: factories.string(),
|
|
12681
12604
|
hs6_code: factories.string(),
|
|
12682
|
-
restricted_regions: arrayOf(() => factories['io.flow.v0.models.
|
|
12605
|
+
restricted_regions: arrayOf(() => factories['io.flow.v0.models.sellability_region_result']()),
|
|
12683
12606
|
}),
|
|
12684
12607
|
|
|
12685
12608
|
'io.flow.v0.models.product_sellability_form': (): io.flow.v0.models.ProductSellabilityForm => ({
|
|
12609
|
+
discriminator: 'product_sellability_form',
|
|
12686
12610
|
shop_id: factories.string(),
|
|
12687
12611
|
product_id: factories.string(),
|
|
12688
12612
|
name: factories.string(),
|
|
@@ -12693,6 +12617,31 @@ const factories = {
|
|
|
12693
12617
|
dry_run: factories.boolean(),
|
|
12694
12618
|
}),
|
|
12695
12619
|
|
|
12620
|
+
'io.flow.v0.models.product_sellability_result': (): io.flow.v0.models.ProductSellabilityResult => ({
|
|
12621
|
+
merchant_id: factories.string(),
|
|
12622
|
+
product_id: factories.string(),
|
|
12623
|
+
restricted_regions: arrayOf(() => factories['io.flow.v0.models.sellability_restricted_region']()),
|
|
12624
|
+
needs_action_attributes: arrayOf(() => factories['io.flow.v0.models.sellability_needs_action_attributes']()),
|
|
12625
|
+
request_id: factories.string(),
|
|
12626
|
+
hs6_code: factories.string(),
|
|
12627
|
+
}),
|
|
12628
|
+
|
|
12629
|
+
'io.flow.v0.models.product_sellability_result_deleted': (): io.flow.v0.models.ProductSellabilityResultDeleted => ({
|
|
12630
|
+
discriminator: 'product_sellability_result_deleted',
|
|
12631
|
+
event_id: factories.string(),
|
|
12632
|
+
timestamp: factories.date_time_iso_8601(),
|
|
12633
|
+
organization: factories.string(),
|
|
12634
|
+
id: factories.string(),
|
|
12635
|
+
}),
|
|
12636
|
+
|
|
12637
|
+
'io.flow.v0.models.product_sellability_result_upserted': (): io.flow.v0.models.ProductSellabilityResultUpserted => ({
|
|
12638
|
+
discriminator: 'product_sellability_result_upserted',
|
|
12639
|
+
event_id: factories.string(),
|
|
12640
|
+
timestamp: factories.date_time_iso_8601(),
|
|
12641
|
+
organization: factories.string(),
|
|
12642
|
+
product_sellability_result: factories['io.flow.v0.models.product_sellability_result'](),
|
|
12643
|
+
}),
|
|
12644
|
+
|
|
12696
12645
|
'io.flow.v0.models.product_taxonomy_category': (): io.flow.v0.models.ProductTaxonomyCategory => ({
|
|
12697
12646
|
name: factories.string(),
|
|
12698
12647
|
full_name: factories.string(),
|
|
@@ -12942,6 +12891,7 @@ const factories = {
|
|
|
12942
12891
|
center_id: factories.string(),
|
|
12943
12892
|
taxes_owed: factories['io.flow.v0.models.money'](),
|
|
12944
12893
|
duties_owed: factories['io.flow.v0.models.money'](),
|
|
12894
|
+
commercial_invoice_mode: factories['io.flow.v0.enums.commercial_invoice_mode'](),
|
|
12945
12895
|
}),
|
|
12946
12896
|
|
|
12947
12897
|
'io.flow.v0.models.ratecard_estimate_summary_form': (): io.flow.v0.models.RatecardEstimateSummaryForm => ({
|
|
@@ -13566,20 +13516,6 @@ const factories = {
|
|
|
13566
13516
|
reversal: factories['io.flow.v0.models.reversal'](),
|
|
13567
13517
|
}),
|
|
13568
13518
|
|
|
13569
|
-
'io.flow.v0.models.rohan_item_deleted': (): io.flow.v0.models.RohanItemDeleted => ({
|
|
13570
|
-
discriminator: 'rohan_item_deleted',
|
|
13571
|
-
event_id: factories.string(),
|
|
13572
|
-
timestamp: factories.date_time_iso_8601(),
|
|
13573
|
-
id: factories.string(),
|
|
13574
|
-
}),
|
|
13575
|
-
|
|
13576
|
-
'io.flow.v0.models.rohan_item_upserted': (): io.flow.v0.models.RohanItemUpserted => ({
|
|
13577
|
-
discriminator: 'rohan_item_upserted',
|
|
13578
|
-
event_id: factories.string(),
|
|
13579
|
-
timestamp: factories.date_time_iso_8601(),
|
|
13580
|
-
item: factories['io.flow.tech.onboarding.playground.v0.models.rohan_item'](),
|
|
13581
|
-
}),
|
|
13582
|
-
|
|
13583
13519
|
'io.flow.v0.models.romanization': (): io.flow.v0.models.Romanization => ({
|
|
13584
13520
|
address: factories['io.flow.v0.models.address'](),
|
|
13585
13521
|
contact: factories['io.flow.v0.models.contact'](),
|
|
@@ -13603,20 +13539,6 @@ const factories = {
|
|
|
13603
13539
|
roles: arrayOf(() => factories['io.flow.v0.enums.flow_role']()),
|
|
13604
13540
|
}),
|
|
13605
13541
|
|
|
13606
|
-
'io.flow.v0.models.sarvesh_item_deleted': (): io.flow.v0.models.SarveshItemDeleted => ({
|
|
13607
|
-
discriminator: 'sarvesh_item_deleted',
|
|
13608
|
-
event_id: factories.string(),
|
|
13609
|
-
timestamp: factories.date_time_iso_8601(),
|
|
13610
|
-
id: factories.string(),
|
|
13611
|
-
}),
|
|
13612
|
-
|
|
13613
|
-
'io.flow.v0.models.sarvesh_item_upserted': (): io.flow.v0.models.SarveshItemUpserted => ({
|
|
13614
|
-
discriminator: 'sarvesh_item_upserted',
|
|
13615
|
-
event_id: factories.string(),
|
|
13616
|
-
timestamp: factories.date_time_iso_8601(),
|
|
13617
|
-
item: factories['io.flow.tech.onboarding.playground.v0.models.sarvesh_item'](),
|
|
13618
|
-
}),
|
|
13619
|
-
|
|
13620
13542
|
'io.flow.v0.models.schedule': (): io.flow.v0.models.Schedule => ({
|
|
13621
13543
|
calendar: factories['io.flow.v0.enums.calendar'](),
|
|
13622
13544
|
holiday: factories['io.flow.v0.enums.holiday_calendar'](),
|
|
@@ -13668,12 +13590,61 @@ const factories = {
|
|
|
13668
13590
|
issuer_options: arrayOf(() => factories['io.flow.v0.models.issuer_reference']()),
|
|
13669
13591
|
}),
|
|
13670
13592
|
|
|
13593
|
+
'io.flow.v0.models.self_billing_agreement': (): io.flow.v0.models.SelfBillingAgreement => ({
|
|
13594
|
+
effective_at: factories.date_time_iso_8601(),
|
|
13595
|
+
expires_at: factories.date_time_iso_8601(),
|
|
13596
|
+
}),
|
|
13597
|
+
|
|
13671
13598
|
'io.flow.v0.models.sellability_error': (): io.flow.v0.models.SellabilityError => ({
|
|
13672
13599
|
discriminator: 'sellability_error',
|
|
13673
13600
|
code: factories['io.flow.v0.enums.sellability_error_code'](),
|
|
13674
13601
|
messages: arrayOf(() => factories.string()),
|
|
13675
13602
|
}),
|
|
13676
13603
|
|
|
13604
|
+
'io.flow.v0.models.sellability_needs_action_attributes': (): io.flow.v0.models.SellabilityNeedsActionAttributes => ({
|
|
13605
|
+
reason_code: factories.string(),
|
|
13606
|
+
category_metafield_handles: arrayOf(() => factories.string()),
|
|
13607
|
+
require_msds: factories.boolean(),
|
|
13608
|
+
}),
|
|
13609
|
+
|
|
13610
|
+
'io.flow.v0.models.sellability_region_result': (): io.flow.v0.models.SellabilityRegionResult => ({
|
|
13611
|
+
type: factories['io.flow.v0.enums.rule_effect_type'](),
|
|
13612
|
+
regions: arrayOf(() => factories.string()),
|
|
13613
|
+
}),
|
|
13614
|
+
|
|
13615
|
+
'io.flow.v0.models.sellability_region_with_reasons': (): io.flow.v0.models.SellabilityRegionWithReasons => ({
|
|
13616
|
+
region: factories.string(),
|
|
13617
|
+
reasons: arrayOf(() => factories.string()),
|
|
13618
|
+
}),
|
|
13619
|
+
|
|
13620
|
+
'io.flow.v0.models.sellability_restricted_region': (): io.flow.v0.models.SellabilityRestrictedRegion => ({
|
|
13621
|
+
type: factories['io.flow.v0.enums.rule_effect_type'](),
|
|
13622
|
+
regions_with_reasons: arrayOf(() => factories['io.flow.v0.models.sellability_region_with_reasons']()),
|
|
13623
|
+
}),
|
|
13624
|
+
|
|
13625
|
+
'io.flow.v0.models.sellability_screening': (): io.flow.v0.models.SellabilityScreening => ({
|
|
13626
|
+
discriminator: 'sellability_screening',
|
|
13627
|
+
sellability_result: factories['io.flow.v0.models.product_sellability_result'](),
|
|
13628
|
+
request_id: factories.string(),
|
|
13629
|
+
status: factories['io.flow.v0.enums.sellability_result_status'](),
|
|
13630
|
+
error_code: factories['io.flow.v0.enums.sellability_result_error_code'](),
|
|
13631
|
+
error_message: factories.string(),
|
|
13632
|
+
}),
|
|
13633
|
+
|
|
13634
|
+
'io.flow.v0.models.sellability_screening_form': (): io.flow.v0.models.SellabilityScreeningForm => ({
|
|
13635
|
+
discriminator: 'sellability_screening_form',
|
|
13636
|
+
merchant_id: factories.string(),
|
|
13637
|
+
product_id: factories.string(),
|
|
13638
|
+
name: factories.string(),
|
|
13639
|
+
price: factories['io.flow.v0.models.money'](),
|
|
13640
|
+
description: factories.string(),
|
|
13641
|
+
taxonomy_category: factories['io.flow.v0.models.product_taxonomy_category'](),
|
|
13642
|
+
mode: factories['io.flow.v0.enums.sellability_screening_mode'](),
|
|
13643
|
+
catalog_size: factories.integer(),
|
|
13644
|
+
relative_ranking: factories.decimal(),
|
|
13645
|
+
dry_run: factories.boolean(),
|
|
13646
|
+
}),
|
|
13647
|
+
|
|
13677
13648
|
'io.flow.v0.models.sellablility_region_result': (): io.flow.v0.models.SellablilityRegionResult => ({
|
|
13678
13649
|
type: factories['io.flow.v0.enums.rule_effect_type'](),
|
|
13679
13650
|
regions: arrayOf(() => factories.string()),
|
|
@@ -14084,6 +14055,43 @@ const factories = {
|
|
|
14084
14055
|
shipping_notification: factories['io.flow.v0.models.shipping_notification'](),
|
|
14085
14056
|
}),
|
|
14086
14057
|
|
|
14058
|
+
'io.flow.v0.models.shipping_rate_estimate': (): io.flow.v0.models.ShippingRateEstimate => ({
|
|
14059
|
+
origin_address: factories['io.flow.v0.models.address'](),
|
|
14060
|
+
destination_address: factories['io.flow.v0.models.address'](),
|
|
14061
|
+
shipping_date_time: factories.date_time_iso_8601(),
|
|
14062
|
+
services: arrayOf(() => factories.string()),
|
|
14063
|
+
available: arrayOf(() => factories['io.flow.v0.models.shipping_rate_estimate_available']()),
|
|
14064
|
+
unavailable: arrayOf(() => factories['io.flow.v0.models.shipping_rate_estimate_unavailable']()),
|
|
14065
|
+
}),
|
|
14066
|
+
|
|
14067
|
+
'io.flow.v0.models.shipping_rate_estimate_available': (): io.flow.v0.models.ShippingRateEstimateAvailable => ({
|
|
14068
|
+
service: factories['io.flow.v0.models.ratecard_service_summary'](),
|
|
14069
|
+
delivered_duty: factories['io.flow.v0.enums.delivered_duty'](),
|
|
14070
|
+
shipment_window: factories['io.flow.v0.models.shipment_window'](),
|
|
14071
|
+
total_amount: factories['io.flow.v0.models.money'](),
|
|
14072
|
+
base_amount: factories['io.flow.v0.models.money'](),
|
|
14073
|
+
fees: arrayOf(() => factories['io.flow.v0.unions.ratecard_fee']()),
|
|
14074
|
+
dimensional_weight: factories['io.flow.v0.models.measurement'](),
|
|
14075
|
+
gravitational_weight: factories['io.flow.v0.models.measurement'](),
|
|
14076
|
+
weight_break: factories.decimal(),
|
|
14077
|
+
}),
|
|
14078
|
+
|
|
14079
|
+
'io.flow.v0.models.shipping_rate_estimate_request': (): io.flow.v0.models.ShippingRateEstimateRequest => ({
|
|
14080
|
+
origin_address: factories['io.flow.v0.models.address'](),
|
|
14081
|
+
destination_address: factories['io.flow.v0.models.address'](),
|
|
14082
|
+
package_dimensions: factories['io.flow.v0.models.dimension'](),
|
|
14083
|
+
shipping_date_time: factories.date_time_iso_8601(),
|
|
14084
|
+
delivered_duty: factories['io.flow.v0.enums.delivered_duty'](),
|
|
14085
|
+
duties_owed: factories['io.flow.v0.models.money'](),
|
|
14086
|
+
taxes_owed: factories['io.flow.v0.models.money'](),
|
|
14087
|
+
line_items: arrayOf(() => factories['io.flow.v0.models.line_item_form']()),
|
|
14088
|
+
}),
|
|
14089
|
+
|
|
14090
|
+
'io.flow.v0.models.shipping_rate_estimate_unavailable': (): io.flow.v0.models.ShippingRateEstimateUnavailable => ({
|
|
14091
|
+
service: factories.string(),
|
|
14092
|
+
reason: factories.string(),
|
|
14093
|
+
}),
|
|
14094
|
+
|
|
14087
14095
|
'io.flow.v0.models.shop': (): io.flow.v0.models.Shop => ({
|
|
14088
14096
|
name: factories.string(),
|
|
14089
14097
|
id: factories.string(),
|
|
@@ -14296,6 +14304,7 @@ const factories = {
|
|
|
14296
14304
|
third_party_logistics_partners: arrayOf(() => factories['io.flow.v0.models.third_party_logistics_partner']()),
|
|
14297
14305
|
center_contact: factories['io.flow.v0.models.operations_contact'](),
|
|
14298
14306
|
average_order_weight: factories.decimal(),
|
|
14307
|
+
average_order_weight_unit: factories['io.flow.v0.enums.unit_of_measurement'](),
|
|
14299
14308
|
package_dimensions: arrayOf(() => factories['io.flow.v0.models.dimension']()),
|
|
14300
14309
|
monthly_average: factories['io.flow.v0.models.monthly_average'](),
|
|
14301
14310
|
default_country_of_origin: factories.string(),
|
|
@@ -14329,6 +14338,7 @@ const factories = {
|
|
|
14329
14338
|
third_party_logistics_partners: arrayOf(() => factories['io.flow.v0.models.third_party_logistics_partner']()),
|
|
14330
14339
|
center_contact: factories['io.flow.v0.models.operations_contact'](),
|
|
14331
14340
|
average_order_weight: factories.decimal(),
|
|
14341
|
+
average_order_weight_unit: factories['io.flow.v0.enums.unit_of_measurement'](),
|
|
14332
14342
|
package_dimensions: arrayOf(() => factories['io.flow.v0.models.dimension']()),
|
|
14333
14343
|
monthly_average_volume_amount: factories.decimal(),
|
|
14334
14344
|
monthly_average_volume_currency: factories.string(),
|
|
@@ -14476,6 +14486,11 @@ const factories = {
|
|
|
14476
14486
|
statement: factories['io.flow.v0.models.statement'](),
|
|
14477
14487
|
}),
|
|
14478
14488
|
|
|
14489
|
+
'io.flow.v0.models.statement_status_form': (): io.flow.v0.models.StatementStatusForm => ({
|
|
14490
|
+
code: factories['io.flow.v0.enums.statement_status_code'](),
|
|
14491
|
+
failure_reason: factories['io.flow.v0.enums.payout_status_failure_code'](),
|
|
14492
|
+
}),
|
|
14493
|
+
|
|
14479
14494
|
'io.flow.v0.models.statement_upserted': (): io.flow.v0.models.StatementUpserted => ({
|
|
14480
14495
|
discriminator: 'statement_upserted',
|
|
14481
14496
|
event_id: factories.string(),
|
|
@@ -14753,11 +14768,34 @@ const factories = {
|
|
|
14753
14768
|
company_name: factories.string(),
|
|
14754
14769
|
}),
|
|
14755
14770
|
|
|
14771
|
+
'io.flow.v0.models.tax_registration_deleted': (): io.flow.v0.models.TaxRegistrationDeleted => ({
|
|
14772
|
+
discriminator: 'tax_registration_deleted',
|
|
14773
|
+
event_id: factories.string(),
|
|
14774
|
+
timestamp: factories.date_time_iso_8601(),
|
|
14775
|
+
organization: factories.string(),
|
|
14776
|
+
id: factories.string(),
|
|
14777
|
+
}),
|
|
14778
|
+
|
|
14779
|
+
'io.flow.v0.models.tax_registration_detail': (): io.flow.v0.models.TaxRegistrationDetail => ({
|
|
14780
|
+
tax_number: factories.string(),
|
|
14781
|
+
country: factories.string(),
|
|
14782
|
+
tax_code: factories.string(),
|
|
14783
|
+
province: factories.string(),
|
|
14784
|
+
}),
|
|
14785
|
+
|
|
14756
14786
|
'io.flow.v0.models.tax_registration_form': (): io.flow.v0.models.TaxRegistrationForm => ({
|
|
14757
14787
|
number: factories.string(),
|
|
14758
14788
|
company_name: factories.string(),
|
|
14759
14789
|
}),
|
|
14760
14790
|
|
|
14791
|
+
'io.flow.v0.models.tax_registration_upserted': (): io.flow.v0.models.TaxRegistrationUpserted => ({
|
|
14792
|
+
discriminator: 'tax_registration_upserted',
|
|
14793
|
+
event_id: factories.string(),
|
|
14794
|
+
timestamp: factories.date_time_iso_8601(),
|
|
14795
|
+
organization: factories.string(),
|
|
14796
|
+
tax_registration: factories['io.flow.v0.models.organization_tax_registration'](),
|
|
14797
|
+
}),
|
|
14798
|
+
|
|
14761
14799
|
'io.flow.v0.models.tax_report': (): io.flow.v0.models.TaxReport => ({
|
|
14762
14800
|
schedule: factories['io.flow.v0.unions.repeat_schedule'](),
|
|
14763
14801
|
timezone: factories.string(),
|
|
@@ -15040,6 +15078,29 @@ const factories = {
|
|
|
15040
15078
|
order_number: factories.string(),
|
|
15041
15079
|
}),
|
|
15042
15080
|
|
|
15081
|
+
'io.flow.v0.models.tracking_label_event_upserted_v2': (): io.flow.v0.models.TrackingLabelEventUpsertedV2 => ({
|
|
15082
|
+
discriminator: 'tracking_label_event_upserted_v2',
|
|
15083
|
+
event_id: factories.string(),
|
|
15084
|
+
timestamp: factories.date_time_iso_8601(),
|
|
15085
|
+
organization: factories.string(),
|
|
15086
|
+
tracking_label_event: factories['io.flow.v0.models.tracking_label_event_v2'](),
|
|
15087
|
+
}),
|
|
15088
|
+
|
|
15089
|
+
'io.flow.v0.models.tracking_label_event_v2': (): io.flow.v0.models.TrackingLabelEventV2 => ({
|
|
15090
|
+
id: factories.string(),
|
|
15091
|
+
carrier_id: factories.string(),
|
|
15092
|
+
carrier_tracking_number: factories.string(),
|
|
15093
|
+
carrier_tracking_url: factories.string(),
|
|
15094
|
+
label_id: factories.string(),
|
|
15095
|
+
order_number: factories.string(),
|
|
15096
|
+
status: factories['io.flow.v0.enums.tracking_status'](),
|
|
15097
|
+
substatus: factories['io.flow.v0.enums.substatus_code'](),
|
|
15098
|
+
carrier_timestamp: factories.date_time_iso_8601(),
|
|
15099
|
+
description: factories.string(),
|
|
15100
|
+
delivery_estimate: factories.date_time_iso_8601(),
|
|
15101
|
+
address: factories['io.flow.v0.models.address'](),
|
|
15102
|
+
}),
|
|
15103
|
+
|
|
15043
15104
|
'io.flow.v0.models.tracking_label_form': (): io.flow.v0.models.TrackingLabelForm => ({
|
|
15044
15105
|
tracking_id: factories.string(),
|
|
15045
15106
|
status: factories['io.flow.v0.enums.tracking_status'](),
|
|
@@ -15870,20 +15931,6 @@ const factories = {
|
|
|
15870
15931
|
const f = faker.helpers.arrayElement([
|
|
15871
15932
|
() => factories['io.flow.v0.models.test_upserted'](),
|
|
15872
15933
|
() => factories['io.flow.v0.models.generate_load'](),
|
|
15873
|
-
() => factories['io.flow.v0.models.sarvesh_item_upserted'](),
|
|
15874
|
-
() => factories['io.flow.v0.models.sarvesh_item_deleted'](),
|
|
15875
|
-
() => factories['io.flow.v0.models.hosein_item_upserted'](),
|
|
15876
|
-
() => factories['io.flow.v0.models.hosein_item_deleted'](),
|
|
15877
|
-
() => factories['io.flow.v0.models.niall_item_upserted'](),
|
|
15878
|
-
() => factories['io.flow.v0.models.niall_item_deleted'](),
|
|
15879
|
-
() => factories['io.flow.v0.models.rohan_item_upserted'](),
|
|
15880
|
-
() => factories['io.flow.v0.models.rohan_item_deleted'](),
|
|
15881
|
-
() => factories['io.flow.v0.models.aldo_item_upserted'](),
|
|
15882
|
-
() => factories['io.flow.v0.models.aldo_item_deleted'](),
|
|
15883
|
-
() => factories['io.flow.v0.models.ansh_item_upserted'](),
|
|
15884
|
-
() => factories['io.flow.v0.models.ansh_item_deleted'](),
|
|
15885
|
-
() => factories['io.flow.v0.models.anirban_item_upserted'](),
|
|
15886
|
-
() => factories['io.flow.v0.models.anirban_item_deleted'](),
|
|
15887
15934
|
() => factories['io.flow.v0.models.transaction_upserted'](),
|
|
15888
15935
|
() => factories['io.flow.v0.models.organization_transaction_upserted'](),
|
|
15889
15936
|
() => factories['io.flow.v0.models.organization_transaction_deleted'](),
|
|
@@ -15990,6 +16037,8 @@ const factories = {
|
|
|
15990
16037
|
() => factories['io.flow.v0.models.organization_deleted_v2'](),
|
|
15991
16038
|
() => factories['io.flow.v0.models.ecommerce_platform_upserted'](),
|
|
15992
16039
|
() => factories['io.flow.v0.models.ecommerce_platform_deleted'](),
|
|
16040
|
+
() => factories['io.flow.v0.models.tax_registration_upserted'](),
|
|
16041
|
+
() => factories['io.flow.v0.models.tax_registration_deleted'](),
|
|
15993
16042
|
() => factories['io.flow.v0.models.organization_onboarding_state_upserted'](),
|
|
15994
16043
|
() => factories['io.flow.v0.models.organization_onboarding_state_deleted'](),
|
|
15995
16044
|
() => factories['io.flow.v0.models.authorization_deleted_v2'](),
|
|
@@ -16037,9 +16086,12 @@ const factories = {
|
|
|
16037
16086
|
() => factories['io.flow.v0.models.ratecard_deleted'](),
|
|
16038
16087
|
() => factories['io.flow.v0.models.product_restriction_result_upserted'](),
|
|
16039
16088
|
() => factories['io.flow.v0.models.product_restriction_result_deleted'](),
|
|
16089
|
+
() => factories['io.flow.v0.models.product_sellability_result_upserted'](),
|
|
16090
|
+
() => factories['io.flow.v0.models.product_sellability_result_deleted'](),
|
|
16040
16091
|
() => factories['io.flow.v0.models.shopify_localization_setting_upserted'](),
|
|
16041
16092
|
() => factories['io.flow.v0.models.shopify_localization_setting_deleted'](),
|
|
16042
16093
|
() => factories['io.flow.v0.models.tracking_label_event_upserted'](),
|
|
16094
|
+
() => factories['io.flow.v0.models.tracking_label_event_upserted_v2'](),
|
|
16043
16095
|
]);
|
|
16044
16096
|
|
|
16045
16097
|
return f();
|
|
@@ -16255,18 +16307,27 @@ const factories = {
|
|
|
16255
16307
|
},
|
|
16256
16308
|
|
|
16257
16309
|
'io.flow.v0.unions.merchant_application': (): io.flow.v0.unions.MerchantApplication => {
|
|
16258
|
-
const f = faker.helpers.arrayElement([
|
|
16310
|
+
const f = faker.helpers.arrayElement([
|
|
16311
|
+
() => factories['io.flow.v0.models.shopify_merchant_application'](),
|
|
16312
|
+
() => factories['io.flow.v0.models.common_merchant_application'](),
|
|
16313
|
+
]);
|
|
16314
|
+
|
|
16259
16315
|
return f();
|
|
16260
16316
|
},
|
|
16261
16317
|
|
|
16262
16318
|
'io.flow.v0.unions.merchant_application_form': (): io.flow.v0.unions.MerchantApplicationForm => {
|
|
16263
|
-
const f = faker.helpers.arrayElement([
|
|
16319
|
+
const f = faker.helpers.arrayElement([
|
|
16320
|
+
() => factories['io.flow.v0.models.shopify_merchant_application_form'](),
|
|
16321
|
+
() => factories['io.flow.v0.models.common_merchant_application_form'](),
|
|
16322
|
+
]);
|
|
16323
|
+
|
|
16264
16324
|
return f();
|
|
16265
16325
|
},
|
|
16266
16326
|
|
|
16267
16327
|
'io.flow.v0.unions.merchant_application_put_form': (): io.flow.v0.unions.MerchantApplicationPutForm => {
|
|
16268
16328
|
const f = faker.helpers.arrayElement([
|
|
16269
16329
|
() => factories['io.flow.v0.models.shopify_merchant_application_put_form'](),
|
|
16330
|
+
() => factories['io.flow.v0.models.common_merchant_application_put_form'](),
|
|
16270
16331
|
]);
|
|
16271
16332
|
|
|
16272
16333
|
return f();
|
|
@@ -16275,6 +16336,7 @@ const factories = {
|
|
|
16275
16336
|
'io.flow.v0.unions.merchant_applications_summary': (): io.flow.v0.unions.MerchantApplicationsSummary => {
|
|
16276
16337
|
const f = faker.helpers.arrayElement([
|
|
16277
16338
|
() => factories['io.flow.v0.models.shopify_merchant_applications_summary'](),
|
|
16339
|
+
() => factories['io.flow.v0.models.common_merchant_applications_summary'](),
|
|
16278
16340
|
]);
|
|
16279
16341
|
|
|
16280
16342
|
return f();
|
|
@@ -16639,10 +16701,20 @@ const factories = {
|
|
|
16639
16701
|
return f();
|
|
16640
16702
|
},
|
|
16641
16703
|
|
|
16704
|
+
'io.flow.v0.unions.sellability_request': (): io.flow.v0.unions.SellabilityRequest => {
|
|
16705
|
+
const f = faker.helpers.arrayElement([
|
|
16706
|
+
() => factories['io.flow.v0.models.product_sellability_form'](),
|
|
16707
|
+
() => factories['io.flow.v0.models.sellability_screening_form'](),
|
|
16708
|
+
]);
|
|
16709
|
+
|
|
16710
|
+
return f();
|
|
16711
|
+
},
|
|
16712
|
+
|
|
16642
16713
|
'io.flow.v0.unions.sellability_response': (): io.flow.v0.unions.SellabilityResponse => {
|
|
16643
16714
|
const f = faker.helpers.arrayElement([
|
|
16644
16715
|
() => factories['io.flow.v0.models.product_sellability'](),
|
|
16645
16716
|
() => factories['io.flow.v0.models.sellability_error'](),
|
|
16717
|
+
() => factories['io.flow.v0.models.sellability_screening'](),
|
|
16646
16718
|
]);
|
|
16647
16719
|
|
|
16648
16720
|
return f();
|
|
@@ -16888,8 +16960,6 @@ export const makeAdyenNativeActionDetails = () => factories['io.flow.v0.models.a
|
|
|
16888
16960
|
export const makeAdyenNativeData = () => factories['io.flow.v0.unions.adyen_native_data']();
|
|
16889
16961
|
export const makeAdyenV3ChallengeToken = () => factories['io.flow.v0.models.adyen_v3_challenge_token']();
|
|
16890
16962
|
export const makeAdyenV3FingerprintToken = () => factories['io.flow.v0.models.adyen_v3_fingerprint_token']();
|
|
16891
|
-
export const makeAldoItemDeleted = () => factories['io.flow.v0.models.aldo_item_deleted']();
|
|
16892
|
-
export const makeAldoItemUpserted = () => factories['io.flow.v0.models.aldo_item_upserted']();
|
|
16893
16963
|
export const makeAllocation = () => factories['io.flow.v0.models.allocation']();
|
|
16894
16964
|
export const makeAllocationComponent = () => factories['io.flow.v0.unions.allocation_component']();
|
|
16895
16965
|
export const makeAllocationDeletedV2 = () => factories['io.flow.v0.models.allocation_deleted_v2']();
|
|
@@ -16907,10 +16977,6 @@ export const makeAllocationV2 = () => factories['io.flow.v0.models.allocation_v2
|
|
|
16907
16977
|
export const makeAmountMargin = () => factories['io.flow.v0.models.amount_margin']();
|
|
16908
16978
|
export const makeAmountMarginForm = () => factories['io.flow.v0.models.amount_margin_form']();
|
|
16909
16979
|
export const makeAnalyticsExportType = () => factories['io.flow.v0.models.analytics_export_type']();
|
|
16910
|
-
export const makeAnirbanItemDeleted = () => factories['io.flow.v0.models.anirban_item_deleted']();
|
|
16911
|
-
export const makeAnirbanItemUpserted = () => factories['io.flow.v0.models.anirban_item_upserted']();
|
|
16912
|
-
export const makeAnshItemDeleted = () => factories['io.flow.v0.models.ansh_item_deleted']();
|
|
16913
|
-
export const makeAnshItemUpserted = () => factories['io.flow.v0.models.ansh_item_upserted']();
|
|
16914
16980
|
export const makeApplePayMerchantValidationPayload = () => factories['io.flow.v0.models.apple_pay_merchant_validation_payload']();
|
|
16915
16981
|
export const makeApplepaySdkCreateResultActionDetails = () => factories['io.flow.v0.models.applepay_sdk_create_result_action_details']();
|
|
16916
16982
|
export const makeApplepaySdkValidateResultActionDetails = () => factories['io.flow.v0.models.applepay_sdk_validate_result_action_details']();
|
|
@@ -17129,6 +17195,11 @@ export const makeCheckoutUrls = () => factories['io.flow.v0.models.checkout_urls
|
|
|
17129
17195
|
export const makeCheckoutUrlsForm = () => factories['io.flow.v0.models.checkout_urls_form']();
|
|
17130
17196
|
export const makeCleartext = () => factories['io.flow.v0.models.cleartext']();
|
|
17131
17197
|
export const makeCommercialInvoiceFee = () => factories['io.flow.v0.models.commercial_invoice_fee']();
|
|
17198
|
+
export const makeCommercialInvoiceMode = () => factories['io.flow.v0.enums.commercial_invoice_mode']();
|
|
17199
|
+
export const makeCommonMerchantApplication = () => factories['io.flow.v0.models.common_merchant_application']();
|
|
17200
|
+
export const makeCommonMerchantApplicationForm = () => factories['io.flow.v0.models.common_merchant_application_form']();
|
|
17201
|
+
export const makeCommonMerchantApplicationPutForm = () => factories['io.flow.v0.models.common_merchant_application_put_form']();
|
|
17202
|
+
export const makeCommonMerchantApplicationsSummary = () => factories['io.flow.v0.models.common_merchant_applications_summary']();
|
|
17132
17203
|
export const makeCompany = () => factories['io.flow.v0.models.company']();
|
|
17133
17204
|
export const makeConfirmationDetails = () => factories['io.flow.v0.unions.confirmation_details']();
|
|
17134
17205
|
export const makeConsumerInvoice = () => factories['io.flow.v0.models.consumer_invoice']();
|
|
@@ -17387,6 +17458,7 @@ export const makeExportType = () => factories['io.flow.v0.unions.export_type']()
|
|
|
17387
17458
|
export const makeExportVersion = () => factories['io.flow.v0.models.export_version']();
|
|
17388
17459
|
export const makeExporterOfRecord = () => factories['io.flow.v0.enums.exporter_of_record']();
|
|
17389
17460
|
export const makeExternalCard = () => factories['io.flow.v0.models.external_card']();
|
|
17461
|
+
export const makeExternalOrderSummary = () => factories['io.flow.v0.models.external_order_summary']();
|
|
17390
17462
|
export const makeFeeDeduction = () => factories['io.flow.v0.models.fee_deduction']();
|
|
17391
17463
|
export const makeFeeDeductionType = () => factories['io.flow.v0.enums.fee_deduction_type']();
|
|
17392
17464
|
export const makeFeeWeight = () => factories['io.flow.v0.models.fee_weight']();
|
|
@@ -17493,8 +17565,6 @@ export const makeHop = () => factories['io.flow.v0.models.hop']();
|
|
|
17493
17565
|
export const makeHopEstimate = () => factories['io.flow.v0.models.hop_estimate']();
|
|
17494
17566
|
export const makeHopEstimateV2 = () => factories['io.flow.v0.models.hop_estimate_v2']();
|
|
17495
17567
|
export const makeHopV2 = () => factories['io.flow.v0.models.hop_v2']();
|
|
17496
|
-
export const makeHoseinItemDeleted = () => factories['io.flow.v0.models.hosein_item_deleted']();
|
|
17497
|
-
export const makeHoseinItemUpserted = () => factories['io.flow.v0.models.hosein_item_upserted']();
|
|
17498
17568
|
export const makeHs10 = () => factories['io.flow.v0.models.hs10']();
|
|
17499
17569
|
export const makeHs10CodeDeleted = () => factories['io.flow.v0.models.hs10_code_deleted']();
|
|
17500
17570
|
export const makeHs10CodeUpserted = () => factories['io.flow.v0.models.hs10_code_upserted']();
|
|
@@ -17684,6 +17754,7 @@ export const makeMerchantOfRecordEntity = () => factories['io.flow.v0.models.mer
|
|
|
17684
17754
|
export const makeMerchantOfRecordEntityRegistration = () => factories['io.flow.v0.models.merchant_of_record_entity_registration']();
|
|
17685
17755
|
export const makeMerchantOfRecordPaymentForm = () => factories['io.flow.v0.models.merchant_of_record_payment_form']();
|
|
17686
17756
|
export const makeMerchantOnboardingAddress = () => factories['io.flow.v0.models.merchant_onboarding_address']();
|
|
17757
|
+
export const makeMerchantOnboardingBeneficiaryDetails = () => factories['io.flow.v0.models.merchant_onboarding_beneficiary_details']();
|
|
17687
17758
|
export const makeMerchantRejected = () => factories['io.flow.v0.models.merchant_rejected']();
|
|
17688
17759
|
export const makeMerchantRejectedReason = () => factories['io.flow.v0.enums.merchant_rejected_reason']();
|
|
17689
17760
|
export const makeMethod = () => factories['io.flow.v0.enums.method']();
|
|
@@ -17695,8 +17766,6 @@ export const makeMonthlyAverageVolume = () => factories['io.flow.v0.models.month
|
|
|
17695
17766
|
export const makeName = () => factories['io.flow.v0.models.name']();
|
|
17696
17767
|
export const makeNameForm = () => factories['io.flow.v0.models.name_form']();
|
|
17697
17768
|
export const makeNeedsActionAttributes = () => factories['io.flow.v0.models.needs_action_attributes']();
|
|
17698
|
-
export const makeNiallItemDeleted = () => factories['io.flow.v0.models.niall_item_deleted']();
|
|
17699
|
-
export const makeNiallItemUpserted = () => factories['io.flow.v0.models.niall_item_upserted']();
|
|
17700
17769
|
export const makeNotificationDeletedV2 = () => factories['io.flow.v0.models.notification_deleted_v2']();
|
|
17701
17770
|
export const makeNotificationUpsertedV2 = () => factories['io.flow.v0.models.notification_upserted_v2']();
|
|
17702
17771
|
export const makeNumberRange = () => factories['io.flow.v0.models.number_range']();
|
|
@@ -17836,6 +17905,8 @@ export const makeOrganizationSession = () => factories['io.flow.v0.models.organi
|
|
|
17836
17905
|
export const makeOrganizationSessionAuthorization = () => factories['io.flow.v0.models.organization_session_authorization']();
|
|
17837
17906
|
export const makeOrganizationStatus = () => factories['io.flow.v0.enums.organization_status']();
|
|
17838
17907
|
export const makeOrganizationSummary = () => factories['io.flow.v0.models.organization_summary']();
|
|
17908
|
+
export const makeOrganizationTaxRegistration = () => factories['io.flow.v0.models.organization_tax_registration']();
|
|
17909
|
+
export const makeOrganizationTaxRegistrationForm = () => factories['io.flow.v0.models.organization_tax_registration_form']();
|
|
17839
17910
|
export const makeOrganizationToken = () => factories['io.flow.v0.models.organization_token']();
|
|
17840
17911
|
export const makeOrganizationTokenForm = () => factories['io.flow.v0.models.organization_token_form']();
|
|
17841
17912
|
export const makeOrganizationTokenFormV2 = () => factories['io.flow.v0.models.organization_token_form_v2']();
|
|
@@ -18084,6 +18155,9 @@ export const makeProductRestrictionResultDeleted = () => factories['io.flow.v0.m
|
|
|
18084
18155
|
export const makeProductRestrictionResultUpserted = () => factories['io.flow.v0.models.product_restriction_result_upserted']();
|
|
18085
18156
|
export const makeProductSellability = () => factories['io.flow.v0.models.product_sellability']();
|
|
18086
18157
|
export const makeProductSellabilityForm = () => factories['io.flow.v0.models.product_sellability_form']();
|
|
18158
|
+
export const makeProductSellabilityResult = () => factories['io.flow.v0.models.product_sellability_result']();
|
|
18159
|
+
export const makeProductSellabilityResultDeleted = () => factories['io.flow.v0.models.product_sellability_result_deleted']();
|
|
18160
|
+
export const makeProductSellabilityResultUpserted = () => factories['io.flow.v0.models.product_sellability_result_upserted']();
|
|
18087
18161
|
export const makeProductTaxonomyCategory = () => factories['io.flow.v0.models.product_taxonomy_category']();
|
|
18088
18162
|
export const makeProductTaxonomyData = () => factories['io.flow.v0.models.product_taxonomy_data']();
|
|
18089
18163
|
export const makeProductTaxonomyValue = () => factories['io.flow.v0.models.product_taxonomy_value']();
|
|
@@ -18191,6 +18265,7 @@ export const makeRepeatMonthly = () => factories['io.flow.v0.models.repeat_month
|
|
|
18191
18265
|
export const makeRepeatSchedule = () => factories['io.flow.v0.unions.repeat_schedule']();
|
|
18192
18266
|
export const makeRepeatWeekly = () => factories['io.flow.v0.models.repeat_weekly']();
|
|
18193
18267
|
export const makeRestrictedReviewStatus = () => factories['io.flow.v0.enums.restricted_review_status']();
|
|
18268
|
+
export const makeRestrictionEnvironment = () => factories['io.flow.v0.enums.restriction_environment']();
|
|
18194
18269
|
export const makeReturn = () => factories['io.flow.v0.models.return']();
|
|
18195
18270
|
export const makeReturnForm = () => factories['io.flow.v0.models.return_form']();
|
|
18196
18271
|
export const makeReturnItemReference = () => factories['io.flow.v0.models.return_item_reference']();
|
|
@@ -18223,8 +18298,6 @@ export const makeReversalStatus = () => factories['io.flow.v0.enums.reversal_sta
|
|
|
18223
18298
|
export const makeReversalUpserted = () => factories['io.flow.v0.models.reversal_upserted']();
|
|
18224
18299
|
export const makeReversalVersion = () => factories['io.flow.v0.models.reversal_version']();
|
|
18225
18300
|
export const makeReviewStatus = () => factories['io.flow.v0.enums.review_status']();
|
|
18226
|
-
export const makeRohanItemDeleted = () => factories['io.flow.v0.models.rohan_item_deleted']();
|
|
18227
|
-
export const makeRohanItemUpserted = () => factories['io.flow.v0.models.rohan_item_upserted']();
|
|
18228
18301
|
export const makeRole = () => factories['io.flow.v0.enums.role']();
|
|
18229
18302
|
export const makeRomanization = () => factories['io.flow.v0.models.romanization']();
|
|
18230
18303
|
export const makeRomanizationForm = () => factories['io.flow.v0.models.romanization_form']();
|
|
@@ -18233,8 +18306,6 @@ export const makeRoundingMethod = () => factories['io.flow.v0.enums.rounding_met
|
|
|
18233
18306
|
export const makeRoundingType = () => factories['io.flow.v0.enums.rounding_type']();
|
|
18234
18307
|
export const makeRouteAudit = () => factories['io.flow.v0.models.route_audit']();
|
|
18235
18308
|
export const makeRuleEffectType = () => factories['io.flow.v0.enums.rule_effect_type']();
|
|
18236
|
-
export const makeSarveshItemDeleted = () => factories['io.flow.v0.models.sarvesh_item_deleted']();
|
|
18237
|
-
export const makeSarveshItemUpserted = () => factories['io.flow.v0.models.sarvesh_item_upserted']();
|
|
18238
18309
|
export const makeSchedule = () => factories['io.flow.v0.models.schedule']();
|
|
18239
18310
|
export const makeScheduleExceptionStatus = () => factories['io.flow.v0.enums.schedule_exception_status']();
|
|
18240
18311
|
export const makeScheduledExport = () => factories['io.flow.v0.models.scheduled_export']();
|
|
@@ -18244,10 +18315,21 @@ export const makeSdkAdyenV3AuthenticationToken = () => factories['io.flow.v0.uni
|
|
|
18244
18315
|
export const makeSecurityRatecardFee = () => factories['io.flow.v0.models.security_ratecard_fee']();
|
|
18245
18316
|
export const makeSecurityServiceFee = () => factories['io.flow.v0.models.security_service_fee']();
|
|
18246
18317
|
export const makeSelectIssuerOptionActionDetails = () => factories['io.flow.v0.models.select_issuer_option_action_details']();
|
|
18318
|
+
export const makeSelfBillingAgreement = () => factories['io.flow.v0.models.self_billing_agreement']();
|
|
18247
18319
|
export const makeSellabilityError = () => factories['io.flow.v0.models.sellability_error']();
|
|
18248
18320
|
export const makeSellabilityErrorCode = () => factories['io.flow.v0.enums.sellability_error_code']();
|
|
18321
|
+
export const makeSellabilityNeedsActionAttributes = () => factories['io.flow.v0.models.sellability_needs_action_attributes']();
|
|
18322
|
+
export const makeSellabilityRegionResult = () => factories['io.flow.v0.models.sellability_region_result']();
|
|
18323
|
+
export const makeSellabilityRegionWithReasons = () => factories['io.flow.v0.models.sellability_region_with_reasons']();
|
|
18324
|
+
export const makeSellabilityRequest = () => factories['io.flow.v0.unions.sellability_request']();
|
|
18249
18325
|
export const makeSellabilityRequestStatus = () => factories['io.flow.v0.enums.sellability_request_status']();
|
|
18250
18326
|
export const makeSellabilityResponse = () => factories['io.flow.v0.unions.sellability_response']();
|
|
18327
|
+
export const makeSellabilityRestrictedRegion = () => factories['io.flow.v0.models.sellability_restricted_region']();
|
|
18328
|
+
export const makeSellabilityResultErrorCode = () => factories['io.flow.v0.enums.sellability_result_error_code']();
|
|
18329
|
+
export const makeSellabilityResultStatus = () => factories['io.flow.v0.enums.sellability_result_status']();
|
|
18330
|
+
export const makeSellabilityScreening = () => factories['io.flow.v0.models.sellability_screening']();
|
|
18331
|
+
export const makeSellabilityScreeningForm = () => factories['io.flow.v0.models.sellability_screening_form']();
|
|
18332
|
+
export const makeSellabilityScreeningMode = () => factories['io.flow.v0.enums.sellability_screening_mode']();
|
|
18251
18333
|
export const makeSellablilityRegionResult = () => factories['io.flow.v0.models.sellablility_region_result']();
|
|
18252
18334
|
export const makeServiceDescription = () => factories['io.flow.v0.unions.service_description']();
|
|
18253
18335
|
export const makeServiceFee = () => factories['io.flow.v0.unions.service_fee']();
|
|
@@ -18316,6 +18398,10 @@ export const makeShippingLaneVersion = () => factories['io.flow.v0.models.shippi
|
|
|
18316
18398
|
export const makeShippingNotification = () => factories['io.flow.v0.models.shipping_notification']();
|
|
18317
18399
|
export const makeShippingNotificationForm = () => factories['io.flow.v0.unions.shipping_notification_form']();
|
|
18318
18400
|
export const makeShippingNotificationVersion = () => factories['io.flow.v0.models.shipping_notification_version']();
|
|
18401
|
+
export const makeShippingRateEstimate = () => factories['io.flow.v0.models.shipping_rate_estimate']();
|
|
18402
|
+
export const makeShippingRateEstimateAvailable = () => factories['io.flow.v0.models.shipping_rate_estimate_available']();
|
|
18403
|
+
export const makeShippingRateEstimateRequest = () => factories['io.flow.v0.models.shipping_rate_estimate_request']();
|
|
18404
|
+
export const makeShippingRateEstimateUnavailable = () => factories['io.flow.v0.models.shipping_rate_estimate_unavailable']();
|
|
18319
18405
|
export const makeShop = () => factories['io.flow.v0.models.shop']();
|
|
18320
18406
|
export const makeShopifyCart = () => factories['io.flow.v0.models.shopify_cart']();
|
|
18321
18407
|
export const makeShopifyCartAddForm = () => factories['io.flow.v0.unions.shopify_cart_add_form']();
|
|
@@ -18370,6 +18456,8 @@ export const makeSortDirection = () => factories['io.flow.v0.enums.sort_directio
|
|
|
18370
18456
|
export const makeStatement = () => factories['io.flow.v0.models.statement']();
|
|
18371
18457
|
export const makeStatementAttachmentType = () => factories['io.flow.v0.enums.statement_attachment_type']();
|
|
18372
18458
|
export const makeStatementDeleted = () => factories['io.flow.v0.models.statement_deleted']();
|
|
18459
|
+
export const makeStatementStatusCode = () => factories['io.flow.v0.enums.statement_status_code']();
|
|
18460
|
+
export const makeStatementStatusForm = () => factories['io.flow.v0.models.statement_status_form']();
|
|
18373
18461
|
export const makeStatementUpserted = () => factories['io.flow.v0.models.statement_upserted']();
|
|
18374
18462
|
export const makeStoredMethodUsageStep = () => factories['io.flow.v0.enums.stored_method_usage_step']();
|
|
18375
18463
|
export const makeStrategy = () => factories['io.flow.v0.enums.strategy']();
|
|
@@ -18417,7 +18505,10 @@ export const makeTaxDutyQuoteValues = () => factories['io.flow.v0.models.tax_dut
|
|
|
18417
18505
|
export const makeTaxDutyTransactionReasonCode = () => factories['io.flow.v0.enums.tax_duty_transaction_reason_code']();
|
|
18418
18506
|
export const makeTaxJurisdictionType = () => factories['io.flow.v0.enums.tax_jurisdiction_type']();
|
|
18419
18507
|
export const makeTaxRegistration = () => factories['io.flow.v0.models.tax_registration']();
|
|
18508
|
+
export const makeTaxRegistrationDeleted = () => factories['io.flow.v0.models.tax_registration_deleted']();
|
|
18509
|
+
export const makeTaxRegistrationDetail = () => factories['io.flow.v0.models.tax_registration_detail']();
|
|
18420
18510
|
export const makeTaxRegistrationForm = () => factories['io.flow.v0.models.tax_registration_form']();
|
|
18511
|
+
export const makeTaxRegistrationUpserted = () => factories['io.flow.v0.models.tax_registration_upserted']();
|
|
18421
18512
|
export const makeTaxReport = () => factories['io.flow.v0.models.tax_report']();
|
|
18422
18513
|
export const makeTaxReportType = () => factories['io.flow.v0.enums.tax_report_type']();
|
|
18423
18514
|
export const makeTaxSetting = () => factories['io.flow.v0.unions.tax_setting']();
|
|
@@ -18472,6 +18563,8 @@ export const makeTrackingEventVersion = () => factories['io.flow.v0.models.track
|
|
|
18472
18563
|
export const makeTrackingForm = () => factories['io.flow.v0.models.tracking_form']();
|
|
18473
18564
|
export const makeTrackingLabel = () => factories['io.flow.v0.models.tracking_label']();
|
|
18474
18565
|
export const makeTrackingLabelEventUpserted = () => factories['io.flow.v0.models.tracking_label_event_upserted']();
|
|
18566
|
+
export const makeTrackingLabelEventUpsertedV2 = () => factories['io.flow.v0.models.tracking_label_event_upserted_v2']();
|
|
18567
|
+
export const makeTrackingLabelEventV2 = () => factories['io.flow.v0.models.tracking_label_event_v2']();
|
|
18475
18568
|
export const makeTrackingLabelForm = () => factories['io.flow.v0.models.tracking_label_form']();
|
|
18476
18569
|
export const makeTrackingLabelSummary = () => factories['io.flow.v0.models.tracking_label_summary']();
|
|
18477
18570
|
export const makeTrackingLabelVersion = () => factories['io.flow.v0.models.tracking_label_version']();
|