@flowio/api-factories 0.0.116 → 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 +476 -348
- package/dist/esm/api.js +401 -301
- package/dist/types/api.d.ts +47 -20
- package/package.json +2 -2
- package/src/api.ts +447 -335
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 => ({
|
|
@@ -253,9 +255,9 @@ const factories = {
|
|
|
253
255
|
rejection_reason: factories['io.flow.channel.internal.v0.enums.channel_order_acceptance_rejection_reason'](),
|
|
254
256
|
}),
|
|
255
257
|
|
|
256
|
-
'io.flow.channel.internal.v0.models.
|
|
258
|
+
'io.flow.channel.internal.v0.models.channel_organization_domains': (): io.flow.channel.internal.v0.models.ChannelOrganizationDomains => ({
|
|
257
259
|
internal: factories.string(),
|
|
258
|
-
|
|
260
|
+
external: factories.string(),
|
|
259
261
|
}),
|
|
260
262
|
|
|
261
263
|
'io.flow.channel.internal.v0.models.channel_organization_installation': (): io.flow.channel.internal.v0.models.ChannelOrganizationInstallation => ({
|
|
@@ -272,7 +274,7 @@ const factories = {
|
|
|
272
274
|
}),
|
|
273
275
|
|
|
274
276
|
'io.flow.channel.internal.v0.models.channel_organization_metadata': (): io.flow.channel.internal.v0.models.ChannelOrganizationMetadata => ({
|
|
275
|
-
domain: factories['io.flow.channel.internal.v0.models.
|
|
277
|
+
domain: factories['io.flow.channel.internal.v0.models.channel_organization_domains'](),
|
|
276
278
|
token: factories.string(),
|
|
277
279
|
}),
|
|
278
280
|
|
|
@@ -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',
|
|
@@ -4653,7 +4519,6 @@ const factories = {
|
|
|
4653
4519
|
'item_origin_deleted',
|
|
4654
4520
|
'harmonized_landed_cost_upserted',
|
|
4655
4521
|
'fully_harmonized_item_upserted',
|
|
4656
|
-
'label_upserted',
|
|
4657
4522
|
'label_deleted_v2',
|
|
4658
4523
|
'label_upserted_v2',
|
|
4659
4524
|
'notification_upserted_v2',
|
|
@@ -4676,6 +4541,8 @@ const factories = {
|
|
|
4676
4541
|
'organization_deleted_v2',
|
|
4677
4542
|
'ecommerce_platform_upserted',
|
|
4678
4543
|
'ecommerce_platform_deleted',
|
|
4544
|
+
'tax_registration_upserted',
|
|
4545
|
+
'tax_registration_deleted',
|
|
4679
4546
|
'organization_onboarding_state_upserted',
|
|
4680
4547
|
'organization_onboarding_state_deleted',
|
|
4681
4548
|
'authorization_deleted_v2',
|
|
@@ -4723,9 +4590,12 @@ const factories = {
|
|
|
4723
4590
|
'ratecard_deleted',
|
|
4724
4591
|
'product_restriction_result_upserted',
|
|
4725
4592
|
'product_restriction_result_deleted',
|
|
4593
|
+
'product_sellability_result_upserted',
|
|
4594
|
+
'product_sellability_result_deleted',
|
|
4726
4595
|
'shopify_localization_setting_upserted',
|
|
4727
4596
|
'shopify_localization_setting_deleted',
|
|
4728
4597
|
'tracking_label_event_upserted',
|
|
4598
|
+
'tracking_label_event_upserted_v2',
|
|
4729
4599
|
]),
|
|
4730
4600
|
|
|
4731
4601
|
'io.flow.v0.enums.exception_type': (): io.flow.v0.enums.ExceptionType => faker.helpers.arrayElement(['open', 'closed']),
|
|
@@ -5207,6 +5077,7 @@ const factories = {
|
|
|
5207
5077
|
'io.flow.v0.enums.refund_status': (): io.flow.v0.enums.RefundStatus => faker.helpers.arrayElement(['pending', 'succeeded', 'failed', 'canceled']),
|
|
5208
5078
|
'io.flow.v0.enums.region_type': (): io.flow.v0.enums.RegionType => faker.helpers.arrayElement(['state', 'province', 'jurisdiction']),
|
|
5209
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']),
|
|
5210
5081
|
'io.flow.v0.enums.return_item_status': (): io.flow.v0.enums.ReturnItemStatus => faker.helpers.arrayElement(['returnable', 'non-returnable']),
|
|
5211
5082
|
'io.flow.v0.enums.return_policy_state': (): io.flow.v0.enums.ReturnPolicyState => faker.helpers.arrayElement(['current', 'deleting', 'updating']),
|
|
5212
5083
|
'io.flow.v0.enums.return_status': (): io.flow.v0.enums.ReturnStatus => faker.helpers.arrayElement(['open', 'refunded']),
|
|
@@ -5261,6 +5132,9 @@ const factories = {
|
|
|
5261
5132
|
]),
|
|
5262
5133
|
|
|
5263
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']),
|
|
5264
5138
|
'io.flow.v0.enums.shipment_integration_type': (): io.flow.v0.enums.ShipmentIntegrationType => faker.helpers.arrayElement(['direct', 'information', 'preadvice']),
|
|
5265
5139
|
'io.flow.v0.enums.shipment_recipient': (): io.flow.v0.enums.ShipmentRecipient => faker.helpers.arrayElement(['customer', 'return', 'crossdock']),
|
|
5266
5140
|
'io.flow.v0.enums.shipping_configuration_type': (): io.flow.v0.enums.ShippingConfigurationType => faker.helpers.arrayElement(['default', 'variant']),
|
|
@@ -5284,7 +5158,8 @@ const factories = {
|
|
|
5284
5158
|
'io.flow.v0.enums.shopify_localization_method': (): io.flow.v0.enums.ShopifyLocalizationMethod => faker.helpers.arrayElement(['api', 'ssr']),
|
|
5285
5159
|
'io.flow.v0.enums.shopify_sync_check': (): io.flow.v0.enums.ShopifySyncCheck => faker.helpers.arrayElement(['localized_variants', 'flow_variant_metafields']),
|
|
5286
5160
|
'io.flow.v0.enums.sort_direction': (): io.flow.v0.enums.SortDirection => faker.helpers.arrayElement(['ascending', 'descending']),
|
|
5287
|
-
'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']),
|
|
5288
5163
|
'io.flow.v0.enums.stored_method_usage_step': (): io.flow.v0.enums.StoredMethodUsageStep => faker.helpers.arrayElement(['initial', 'subsequent']),
|
|
5289
5164
|
'io.flow.v0.enums.strategy': (): io.flow.v0.enums.Strategy => faker.helpers.arrayElement(['range', 'from', 'to']),
|
|
5290
5165
|
'io.flow.v0.enums.subcatalog_item_status': (): io.flow.v0.enums.SubcatalogItemStatus => faker.helpers.arrayElement(['excluded', 'included', 'restricted']),
|
|
@@ -5367,13 +5242,16 @@ const factories = {
|
|
|
5367
5242
|
'order_edit',
|
|
5368
5243
|
'mixed_fulfilment_non_lvg',
|
|
5369
5244
|
'lvg_refund',
|
|
5245
|
+
'us_inbound_tax_refund',
|
|
5370
5246
|
'order_cancellation_above_de_min',
|
|
5371
5247
|
'wyol_shipment_above_de_min',
|
|
5372
5248
|
'full_refund_without_shipment',
|
|
5373
5249
|
'unfulfilled_order_above_de_min',
|
|
5374
5250
|
]),
|
|
5375
5251
|
|
|
5252
|
+
'io.flow.v0.enums.tax_jurisdiction_type': (): io.flow.v0.enums.TaxJurisdictionType => faker.helpers.arrayElement(['country', 'province']),
|
|
5376
5253
|
'io.flow.v0.enums.tax_report_type': (): io.flow.v0.enums.TaxReportType => faker.helpers.arrayElement(['consumer', 'b2b']),
|
|
5254
|
+
'io.flow.v0.enums.tax_type': (): io.flow.v0.enums.TaxType => faker.helpers.arrayElement(['vat', 'gst', 'hst', 'pst', 'qst', 'sales_tax']),
|
|
5377
5255
|
'io.flow.v0.enums.tax_verification_result': (): io.flow.v0.enums.TaxVerificationResult => faker.helpers.arrayElement(['valid', 'invalid', 'unable_to_validate']),
|
|
5378
5256
|
'io.flow.v0.enums.taxability_type': (): io.flow.v0.enums.TaxabilityType => faker.helpers.arrayElement(['tax_rule']),
|
|
5379
5257
|
'io.flow.v0.enums.taxability_value': (): io.flow.v0.enums.TaxabilityValue => faker.helpers.arrayElement(['exempt']),
|
|
@@ -5437,6 +5315,8 @@ const factories = {
|
|
|
5437
5315
|
'merchant_refund',
|
|
5438
5316
|
'ge_revenue_share',
|
|
5439
5317
|
'merchant_fee',
|
|
5318
|
+
'b2b_tax',
|
|
5319
|
+
'b2b_tax_refund',
|
|
5440
5320
|
]),
|
|
5441
5321
|
|
|
5442
5322
|
'io.flow.v0.enums.transfer_status': (): io.flow.v0.enums.TransferStatus => faker.helpers.arrayElement(['succeeded', 'canceled']),
|
|
@@ -5450,7 +5330,7 @@ const factories = {
|
|
|
5450
5330
|
'refund_from_merchant',
|
|
5451
5331
|
]),
|
|
5452
5332
|
|
|
5453
|
-
'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']),
|
|
5454
5334
|
|
|
5455
5335
|
'io.flow.v0.enums.trueup_surcharge_type': (): io.flow.v0.enums.TrueupSurchargeType => faker.helpers.arrayElement([
|
|
5456
5336
|
'fuel',
|
|
@@ -5841,20 +5721,6 @@ const factories = {
|
|
|
5841
5721
|
fingerprint_token: factories.string(),
|
|
5842
5722
|
}),
|
|
5843
5723
|
|
|
5844
|
-
'io.flow.v0.models.aldo_item_deleted': (): io.flow.v0.models.AldoItemDeleted => ({
|
|
5845
|
-
discriminator: 'aldo_item_deleted',
|
|
5846
|
-
event_id: factories.string(),
|
|
5847
|
-
timestamp: factories.date_time_iso_8601(),
|
|
5848
|
-
id: factories.string(),
|
|
5849
|
-
}),
|
|
5850
|
-
|
|
5851
|
-
'io.flow.v0.models.aldo_item_upserted': (): io.flow.v0.models.AldoItemUpserted => ({
|
|
5852
|
-
discriminator: 'aldo_item_upserted',
|
|
5853
|
-
event_id: factories.string(),
|
|
5854
|
-
timestamp: factories.date_time_iso_8601(),
|
|
5855
|
-
item: factories['io.flow.tech.onboarding.playground.v0.models.aldo_item'](),
|
|
5856
|
-
}),
|
|
5857
|
-
|
|
5858
5724
|
'io.flow.v0.models.allocation': (): io.flow.v0.models.Allocation => ({
|
|
5859
5725
|
order: factories['io.flow.v0.models.allocation_order_summary'](),
|
|
5860
5726
|
details: arrayOf(() => factories['io.flow.v0.unions.allocation_detail']()),
|
|
@@ -5979,34 +5845,6 @@ const factories = {
|
|
|
5979
5845
|
interval: factories['io.flow.v0.enums.unit_of_time'](),
|
|
5980
5846
|
}),
|
|
5981
5847
|
|
|
5982
|
-
'io.flow.v0.models.anirban_item_deleted': (): io.flow.v0.models.AnirbanItemDeleted => ({
|
|
5983
|
-
discriminator: 'anirban_item_deleted',
|
|
5984
|
-
event_id: factories.string(),
|
|
5985
|
-
timestamp: factories.date_time_iso_8601(),
|
|
5986
|
-
id: factories.string(),
|
|
5987
|
-
}),
|
|
5988
|
-
|
|
5989
|
-
'io.flow.v0.models.anirban_item_upserted': (): io.flow.v0.models.AnirbanItemUpserted => ({
|
|
5990
|
-
discriminator: 'anirban_item_upserted',
|
|
5991
|
-
event_id: factories.string(),
|
|
5992
|
-
timestamp: factories.date_time_iso_8601(),
|
|
5993
|
-
item: factories['io.flow.tech.onboarding.playground.v0.models.anirban_item'](),
|
|
5994
|
-
}),
|
|
5995
|
-
|
|
5996
|
-
'io.flow.v0.models.ansh_item_deleted': (): io.flow.v0.models.AnshItemDeleted => ({
|
|
5997
|
-
discriminator: 'ansh_item_deleted',
|
|
5998
|
-
event_id: factories.string(),
|
|
5999
|
-
timestamp: factories.date_time_iso_8601(),
|
|
6000
|
-
id: factories.string(),
|
|
6001
|
-
}),
|
|
6002
|
-
|
|
6003
|
-
'io.flow.v0.models.ansh_item_upserted': (): io.flow.v0.models.AnshItemUpserted => ({
|
|
6004
|
-
discriminator: 'ansh_item_upserted',
|
|
6005
|
-
event_id: factories.string(),
|
|
6006
|
-
timestamp: factories.date_time_iso_8601(),
|
|
6007
|
-
item: factories['io.flow.tech.onboarding.playground.v0.models.ansh_item'](),
|
|
6008
|
-
}),
|
|
6009
|
-
|
|
6010
5848
|
'io.flow.v0.models.apple_pay_merchant_validation_payload': (): io.flow.v0.models.ApplePayMerchantValidationPayload => ({
|
|
6011
5849
|
discriminator: 'apple_pay_merchant_validation_payload',
|
|
6012
5850
|
validation_url: factories.string(),
|
|
@@ -6294,9 +6132,13 @@ const factories = {
|
|
|
6294
6132
|
key: factories.string(),
|
|
6295
6133
|
invoice: factories['io.flow.v0.models.b2b_invoice_reference'](),
|
|
6296
6134
|
lines: arrayOf(() => factories['io.flow.v0.unions.consumer_invoice_line']()),
|
|
6135
|
+
tax_lines: arrayOf(() => factories['io.flow.v0.models.invoice_tax_line']()),
|
|
6136
|
+
tax: factories['io.flow.v0.models.money'](),
|
|
6297
6137
|
documents: arrayOf(() => factories['io.flow.v0.models.consumer_invoice_document']()),
|
|
6298
6138
|
attributes: objectOf(() => factories.string()),
|
|
6299
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'](),
|
|
6300
6142
|
}),
|
|
6301
6143
|
|
|
6302
6144
|
'io.flow.v0.models.b2b_credit_memo_deleted': (): io.flow.v0.models.B2BCreditMemoDeleted => ({
|
|
@@ -6328,6 +6170,7 @@ const factories = {
|
|
|
6328
6170
|
center: factories['io.flow.v0.models.consumer_invoice_center_reference'](),
|
|
6329
6171
|
destination: factories['io.flow.v0.models.order_address'](),
|
|
6330
6172
|
tax: factories['io.flow.v0.models.money'](),
|
|
6173
|
+
tax_lines: arrayOf(() => factories['io.flow.v0.models.invoice_tax_line']()),
|
|
6331
6174
|
lines: arrayOf(() => factories['io.flow.v0.unions.consumer_invoice_line']()),
|
|
6332
6175
|
documents: arrayOf(() => factories['io.flow.v0.models.consumer_invoice_document']()),
|
|
6333
6176
|
attributes: objectOf(() => factories.string()),
|
|
@@ -7122,6 +6965,7 @@ const factories = {
|
|
|
7122
6965
|
shopify_order_summary: factories['io.flow.v0.models.channel_shopify_order_summary'](),
|
|
7123
6966
|
status: factories['io.flow.channel.internal.v0.enums.channel_order_acceptance_status'](),
|
|
7124
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'](),
|
|
7125
6969
|
}),
|
|
7126
6970
|
|
|
7127
6971
|
'io.flow.v0.models.channel_shopify_order_state_deleted': (): io.flow.v0.models.ChannelShopifyOrderStateDeleted => ({
|
|
@@ -7351,6 +7195,77 @@ const factories = {
|
|
|
7351
7195
|
amount: factories['io.flow.v0.models.money'](),
|
|
7352
7196
|
}),
|
|
7353
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
|
+
|
|
7354
7269
|
'io.flow.v0.models.company': (): io.flow.v0.models.Company => ({
|
|
7355
7270
|
discriminator: 'company',
|
|
7356
7271
|
legal_name: factories.string(),
|
|
@@ -7421,6 +7336,7 @@ const factories = {
|
|
|
7421
7336
|
|
|
7422
7337
|
'io.flow.v0.models.consumer_invoice_line_discount': (): io.flow.v0.models.ConsumerInvoiceLineDiscount => ({
|
|
7423
7338
|
discriminator: 'discount',
|
|
7339
|
+
line_id: factories.string(),
|
|
7424
7340
|
price: factories['io.flow.v0.models.price'](),
|
|
7425
7341
|
}),
|
|
7426
7342
|
|
|
@@ -7431,6 +7347,7 @@ const factories = {
|
|
|
7431
7347
|
|
|
7432
7348
|
'io.flow.v0.models.consumer_invoice_line_item': (): io.flow.v0.models.ConsumerInvoiceLineItem => ({
|
|
7433
7349
|
discriminator: 'item',
|
|
7350
|
+
line_id: factories.string(),
|
|
7434
7351
|
item: factories['io.flow.v0.models.item_reference'](),
|
|
7435
7352
|
description: factories.string(),
|
|
7436
7353
|
quantity: factories.long(),
|
|
@@ -7452,6 +7369,7 @@ const factories = {
|
|
|
7452
7369
|
|
|
7453
7370
|
'io.flow.v0.models.consumer_invoice_line_shipping': (): io.flow.v0.models.ConsumerInvoiceLineShipping => ({
|
|
7454
7371
|
discriminator: 'shipping',
|
|
7372
|
+
line_id: factories.string(),
|
|
7455
7373
|
price: factories['io.flow.v0.models.price'](),
|
|
7456
7374
|
discount: factories['io.flow.v0.models.price'](),
|
|
7457
7375
|
tax: factories['io.flow.v0.models.consumer_invoice_levy'](),
|
|
@@ -7468,6 +7386,7 @@ const factories = {
|
|
|
7468
7386
|
|
|
7469
7387
|
'io.flow.v0.models.consumer_invoice_line_tip': (): io.flow.v0.models.ConsumerInvoiceLineTip => ({
|
|
7470
7388
|
discriminator: 'tip',
|
|
7389
|
+
line_id: factories.string(),
|
|
7471
7390
|
price: factories['io.flow.v0.models.price'](),
|
|
7472
7391
|
tax: factories['io.flow.v0.models.consumer_invoice_levy'](),
|
|
7473
7392
|
}),
|
|
@@ -7580,6 +7499,8 @@ const factories = {
|
|
|
7580
7499
|
documents: arrayOf(() => factories['io.flow.v0.models.consumer_invoice_document']()),
|
|
7581
7500
|
attributes: objectOf(() => factories.string()),
|
|
7582
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'](),
|
|
7583
7504
|
}),
|
|
7584
7505
|
|
|
7585
7506
|
'io.flow.v0.models.credit_memo_deleted': (): io.flow.v0.models.CreditMemoDeleted => ({
|
|
@@ -8366,6 +8287,7 @@ const factories = {
|
|
|
8366
8287
|
amount: factories['io.flow.v0.models.money'](),
|
|
8367
8288
|
origin_region: factories['io.flow.v0.models.ratecard_region_reference'](),
|
|
8368
8289
|
destination_region: factories['io.flow.v0.models.ratecard_region_reference'](),
|
|
8290
|
+
destination_regions: arrayOf(() => factories['io.flow.v0.models.ratecard_region_reference']()),
|
|
8369
8291
|
interval_unit: factories['io.flow.v0.enums.unit_of_measurement'](),
|
|
8370
8292
|
}),
|
|
8371
8293
|
|
|
@@ -8704,6 +8626,11 @@ const factories = {
|
|
|
8704
8626
|
type: factories['io.flow.v0.enums.card_type'](),
|
|
8705
8627
|
}),
|
|
8706
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
|
+
|
|
8707
8634
|
'io.flow.v0.models.fee_deduction': (): io.flow.v0.models.FeeDeduction => ({
|
|
8708
8635
|
type: factories['io.flow.v0.enums.fee_deduction_type'](),
|
|
8709
8636
|
amount: factories.decimal(),
|
|
@@ -9006,7 +8933,7 @@ const factories = {
|
|
|
9006
8933
|
discriminator: 'ge_catalog_item_ingestion_result',
|
|
9007
8934
|
event_id: factories.string(),
|
|
9008
8935
|
event_type: factories['io.flow.v0.enums.ge_event_type'](),
|
|
9009
|
-
environment: factories['io.flow.v0.enums.
|
|
8936
|
+
environment: factories['io.flow.v0.enums.restriction_environment'](),
|
|
9010
8937
|
timestamp: factories.date_time_iso_8601(),
|
|
9011
8938
|
source: factories.string(),
|
|
9012
8939
|
response: factories['io.flow.v0.enums.ge_catalog_item_ingestion_response'](),
|
|
@@ -9073,7 +9000,7 @@ const factories = {
|
|
|
9073
9000
|
organization: factories.string(),
|
|
9074
9001
|
event_id: factories.string(),
|
|
9075
9002
|
event_type: factories['io.flow.v0.enums.ge_event_type'](),
|
|
9076
|
-
environment: factories['io.flow.v0.enums.
|
|
9003
|
+
environment: factories['io.flow.v0.enums.restriction_environment'](),
|
|
9077
9004
|
timestamp: factories.date_time_iso_8601(),
|
|
9078
9005
|
id: factories.string(),
|
|
9079
9006
|
operation: factories['io.flow.v0.enums.change_type'](),
|
|
@@ -9084,7 +9011,7 @@ const factories = {
|
|
|
9084
9011
|
organization: factories.string(),
|
|
9085
9012
|
event_id: factories.string(),
|
|
9086
9013
|
event_type: factories['io.flow.v0.enums.ge_event_type'](),
|
|
9087
|
-
environment: factories['io.flow.v0.enums.
|
|
9014
|
+
environment: factories['io.flow.v0.enums.restriction_environment'](),
|
|
9088
9015
|
timestamp: factories.date_time_iso_8601(),
|
|
9089
9016
|
operation: factories['io.flow.v0.enums.change_type'](),
|
|
9090
9017
|
ge_product_restriction_result: factories['io.flow.v0.models.product_restriction_result'](),
|
|
@@ -9282,20 +9209,6 @@ const factories = {
|
|
|
9282
9209
|
hop_estimate: factories['io.flow.v0.models.hop_estimate_v2'](),
|
|
9283
9210
|
}),
|
|
9284
9211
|
|
|
9285
|
-
'io.flow.v0.models.hosein_item_deleted': (): io.flow.v0.models.HoseinItemDeleted => ({
|
|
9286
|
-
discriminator: 'hosein_item_deleted',
|
|
9287
|
-
event_id: factories.string(),
|
|
9288
|
-
timestamp: factories.date_time_iso_8601(),
|
|
9289
|
-
id: factories.string(),
|
|
9290
|
-
}),
|
|
9291
|
-
|
|
9292
|
-
'io.flow.v0.models.hosein_item_upserted': (): io.flow.v0.models.HoseinItemUpserted => ({
|
|
9293
|
-
discriminator: 'hosein_item_upserted',
|
|
9294
|
-
event_id: factories.string(),
|
|
9295
|
-
timestamp: factories.date_time_iso_8601(),
|
|
9296
|
-
item: factories['io.flow.tech.onboarding.playground.v0.models.hosein_item'](),
|
|
9297
|
-
}),
|
|
9298
|
-
|
|
9299
9212
|
'io.flow.v0.models.hs10': (): io.flow.v0.models.Hs10 => ({
|
|
9300
9213
|
id: factories.string(),
|
|
9301
9214
|
item: factories['io.flow.v0.models.harmonized_item_reference'](),
|
|
@@ -9540,6 +9453,11 @@ const factories = {
|
|
|
9540
9453
|
date_to: factories.date_iso_8601(),
|
|
9541
9454
|
}),
|
|
9542
9455
|
|
|
9456
|
+
'io.flow.v0.models.invoice_tax_line': (): io.flow.v0.models.InvoiceTaxLine => ({
|
|
9457
|
+
line_id: factories.string(),
|
|
9458
|
+
tax_breakdown: arrayOf(() => factories['io.flow.v0.models.tax_breakdown']()),
|
|
9459
|
+
}),
|
|
9460
|
+
|
|
9543
9461
|
'io.flow.v0.models.issuer_reference': (): io.flow.v0.models.IssuerReference => ({
|
|
9544
9462
|
id: factories.string(),
|
|
9545
9463
|
}),
|
|
@@ -9909,32 +9827,6 @@ const factories = {
|
|
|
9909
9827
|
length: factories['io.flow.v0.enums.unit_of_length'](),
|
|
9910
9828
|
}),
|
|
9911
9829
|
|
|
9912
|
-
'io.flow.v0.models.label_upserted': (): io.flow.v0.models.LabelUpserted => ({
|
|
9913
|
-
discriminator: 'label_upserted',
|
|
9914
|
-
event_id: factories.string(),
|
|
9915
|
-
timestamp: factories.date_time_iso_8601(),
|
|
9916
|
-
organization: factories.string(),
|
|
9917
|
-
label_id: factories.string(),
|
|
9918
|
-
carrier_tracking_number: factories.string(),
|
|
9919
|
-
commercial_invoice: factories.string(),
|
|
9920
|
-
flow_tracking_number: factories.string(),
|
|
9921
|
-
destination: factories['io.flow.v0.models.shipping_address'](),
|
|
9922
|
-
origin: factories['io.flow.v0.models.shipping_address'](),
|
|
9923
|
-
carrier: factories.string(),
|
|
9924
|
-
service: factories.string(),
|
|
9925
|
-
zpl: factories.string(),
|
|
9926
|
-
pdf: factories.string(),
|
|
9927
|
-
png: factories.string(),
|
|
9928
|
-
order: factories.string(),
|
|
9929
|
-
carrier_tracking_number_url: factories.string(),
|
|
9930
|
-
flow_tracking_number_url: factories.string(),
|
|
9931
|
-
center_key: factories.string(),
|
|
9932
|
-
recipient: factories['io.flow.v0.enums.shipment_recipient'](),
|
|
9933
|
-
'package': factories['io.flow.v0.models.shipping_label_package'](),
|
|
9934
|
-
order_identifier: factories.string(),
|
|
9935
|
-
fulfillment_key: factories.string(),
|
|
9936
|
-
}),
|
|
9937
|
-
|
|
9938
9830
|
'io.flow.v0.models.label_upserted_v2': (): io.flow.v0.models.LabelUpsertedV2 => ({
|
|
9939
9831
|
discriminator: 'label_upserted_v2',
|
|
9940
9832
|
event_id: factories.string(),
|
|
@@ -10358,6 +10250,7 @@ const factories = {
|
|
|
10358
10250
|
region: factories['io.flow.v0.enums.region_type'](),
|
|
10359
10251
|
region_value: factories.string(),
|
|
10360
10252
|
category_code: factories.string(),
|
|
10253
|
+
description: factories.string(),
|
|
10361
10254
|
}),
|
|
10362
10255
|
|
|
10363
10256
|
'io.flow.v0.models.merchant_of_record_authorization_form': (): io.flow.v0.models.MerchantOfRecordAuthorizationForm => ({
|
|
@@ -10393,6 +10286,8 @@ const factories = {
|
|
|
10393
10286
|
'io.flow.v0.models.merchant_of_record_entity_registration': (): io.flow.v0.models.MerchantOfRecordEntityRegistration => ({
|
|
10394
10287
|
number: factories.string(),
|
|
10395
10288
|
country: factories.string(),
|
|
10289
|
+
province_number: factories.string(),
|
|
10290
|
+
province: factories.string(),
|
|
10396
10291
|
}),
|
|
10397
10292
|
|
|
10398
10293
|
'io.flow.v0.models.merchant_of_record_payment_form': (): io.flow.v0.models.MerchantOfRecordPaymentForm => ({
|
|
@@ -10412,6 +10307,17 @@ const factories = {
|
|
|
10412
10307
|
country: factories.string(),
|
|
10413
10308
|
}),
|
|
10414
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
|
+
|
|
10415
10321
|
'io.flow.v0.models.merchant_rejected': (): io.flow.v0.models.MerchantRejected => ({
|
|
10416
10322
|
discriminator: 'merchant_rejected',
|
|
10417
10323
|
reason: factories['io.flow.v0.enums.merchant_rejected_reason'](),
|
|
@@ -10459,20 +10365,7 @@ const factories = {
|
|
|
10459
10365
|
'io.flow.v0.models.needs_action_attributes': (): io.flow.v0.models.NeedsActionAttributes => ({
|
|
10460
10366
|
reason_code: factories.string(),
|
|
10461
10367
|
category_metafield_handles: arrayOf(() => factories.string()),
|
|
10462
|
-
|
|
10463
|
-
|
|
10464
|
-
'io.flow.v0.models.niall_item_deleted': (): io.flow.v0.models.NiallItemDeleted => ({
|
|
10465
|
-
discriminator: 'niall_item_deleted',
|
|
10466
|
-
event_id: factories.string(),
|
|
10467
|
-
timestamp: factories.date_time_iso_8601(),
|
|
10468
|
-
id: factories.string(),
|
|
10469
|
-
}),
|
|
10470
|
-
|
|
10471
|
-
'io.flow.v0.models.niall_item_upserted': (): io.flow.v0.models.NiallItemUpserted => ({
|
|
10472
|
-
discriminator: 'niall_item_upserted',
|
|
10473
|
-
event_id: factories.string(),
|
|
10474
|
-
timestamp: factories.date_time_iso_8601(),
|
|
10475
|
-
item: factories['io.flow.tech.onboarding.playground.v0.models.niall_item'](),
|
|
10368
|
+
require_msds: factories.boolean(),
|
|
10476
10369
|
}),
|
|
10477
10370
|
|
|
10478
10371
|
'io.flow.v0.models.notification_deleted_v2': (): io.flow.v0.models.NotificationDeletedV2 => ({
|
|
@@ -11341,6 +11234,22 @@ const factories = {
|
|
|
11341
11234
|
environment: factories['io.flow.v0.enums.environment'](),
|
|
11342
11235
|
}),
|
|
11343
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
|
+
|
|
11344
11253
|
'io.flow.v0.models.organization_token': (): io.flow.v0.models.OrganizationToken => ({
|
|
11345
11254
|
discriminator: 'organization_token',
|
|
11346
11255
|
id: factories.string(),
|
|
@@ -12138,6 +12047,7 @@ const factories = {
|
|
|
12138
12047
|
supported_actions: arrayOf(() => factories['io.flow.v0.enums.payment_action_type']()),
|
|
12139
12048
|
payment_capture_option: factories['io.flow.v0.unions.payment_capture_option'](),
|
|
12140
12049
|
review: factories['io.flow.v0.models.payment_request_review'](),
|
|
12050
|
+
client_secret: factories.string(),
|
|
12141
12051
|
}),
|
|
12142
12052
|
|
|
12143
12053
|
'io.flow.v0.models.payment_request_billing': (): io.flow.v0.models.PaymentRequestBilling => ({
|
|
@@ -12666,7 +12576,7 @@ const factories = {
|
|
|
12666
12576
|
updated_by: factories.string(),
|
|
12667
12577
|
product_restriction_id: factories.string(),
|
|
12668
12578
|
hs_code: factories.string(),
|
|
12669
|
-
restricted_regions_by_type: arrayOf(() => factories['io.flow.v0.models.
|
|
12579
|
+
restricted_regions_by_type: arrayOf(() => factories['io.flow.v0.models.sellability_region_result']()),
|
|
12670
12580
|
needs_action_attributes: arrayOf(() => factories['io.flow.v0.models.needs_action_attributes']()),
|
|
12671
12581
|
}),
|
|
12672
12582
|
|
|
@@ -12692,10 +12602,11 @@ const factories = {
|
|
|
12692
12602
|
product_id: factories.string(),
|
|
12693
12603
|
request_id: factories.string(),
|
|
12694
12604
|
hs6_code: factories.string(),
|
|
12695
|
-
restricted_regions: arrayOf(() => factories['io.flow.v0.models.
|
|
12605
|
+
restricted_regions: arrayOf(() => factories['io.flow.v0.models.sellability_region_result']()),
|
|
12696
12606
|
}),
|
|
12697
12607
|
|
|
12698
12608
|
'io.flow.v0.models.product_sellability_form': (): io.flow.v0.models.ProductSellabilityForm => ({
|
|
12609
|
+
discriminator: 'product_sellability_form',
|
|
12699
12610
|
shop_id: factories.string(),
|
|
12700
12611
|
product_id: factories.string(),
|
|
12701
12612
|
name: factories.string(),
|
|
@@ -12706,6 +12617,31 @@ const factories = {
|
|
|
12706
12617
|
dry_run: factories.boolean(),
|
|
12707
12618
|
}),
|
|
12708
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
|
+
|
|
12709
12645
|
'io.flow.v0.models.product_taxonomy_category': (): io.flow.v0.models.ProductTaxonomyCategory => ({
|
|
12710
12646
|
name: factories.string(),
|
|
12711
12647
|
full_name: factories.string(),
|
|
@@ -12955,6 +12891,7 @@ const factories = {
|
|
|
12955
12891
|
center_id: factories.string(),
|
|
12956
12892
|
taxes_owed: factories['io.flow.v0.models.money'](),
|
|
12957
12893
|
duties_owed: factories['io.flow.v0.models.money'](),
|
|
12894
|
+
commercial_invoice_mode: factories['io.flow.v0.enums.commercial_invoice_mode'](),
|
|
12958
12895
|
}),
|
|
12959
12896
|
|
|
12960
12897
|
'io.flow.v0.models.ratecard_estimate_summary_form': (): io.flow.v0.models.RatecardEstimateSummaryForm => ({
|
|
@@ -13579,20 +13516,6 @@ const factories = {
|
|
|
13579
13516
|
reversal: factories['io.flow.v0.models.reversal'](),
|
|
13580
13517
|
}),
|
|
13581
13518
|
|
|
13582
|
-
'io.flow.v0.models.rohan_item_deleted': (): io.flow.v0.models.RohanItemDeleted => ({
|
|
13583
|
-
discriminator: 'rohan_item_deleted',
|
|
13584
|
-
event_id: factories.string(),
|
|
13585
|
-
timestamp: factories.date_time_iso_8601(),
|
|
13586
|
-
id: factories.string(),
|
|
13587
|
-
}),
|
|
13588
|
-
|
|
13589
|
-
'io.flow.v0.models.rohan_item_upserted': (): io.flow.v0.models.RohanItemUpserted => ({
|
|
13590
|
-
discriminator: 'rohan_item_upserted',
|
|
13591
|
-
event_id: factories.string(),
|
|
13592
|
-
timestamp: factories.date_time_iso_8601(),
|
|
13593
|
-
item: factories['io.flow.tech.onboarding.playground.v0.models.rohan_item'](),
|
|
13594
|
-
}),
|
|
13595
|
-
|
|
13596
13519
|
'io.flow.v0.models.romanization': (): io.flow.v0.models.Romanization => ({
|
|
13597
13520
|
address: factories['io.flow.v0.models.address'](),
|
|
13598
13521
|
contact: factories['io.flow.v0.models.contact'](),
|
|
@@ -13616,20 +13539,6 @@ const factories = {
|
|
|
13616
13539
|
roles: arrayOf(() => factories['io.flow.v0.enums.flow_role']()),
|
|
13617
13540
|
}),
|
|
13618
13541
|
|
|
13619
|
-
'io.flow.v0.models.sarvesh_item_deleted': (): io.flow.v0.models.SarveshItemDeleted => ({
|
|
13620
|
-
discriminator: 'sarvesh_item_deleted',
|
|
13621
|
-
event_id: factories.string(),
|
|
13622
|
-
timestamp: factories.date_time_iso_8601(),
|
|
13623
|
-
id: factories.string(),
|
|
13624
|
-
}),
|
|
13625
|
-
|
|
13626
|
-
'io.flow.v0.models.sarvesh_item_upserted': (): io.flow.v0.models.SarveshItemUpserted => ({
|
|
13627
|
-
discriminator: 'sarvesh_item_upserted',
|
|
13628
|
-
event_id: factories.string(),
|
|
13629
|
-
timestamp: factories.date_time_iso_8601(),
|
|
13630
|
-
item: factories['io.flow.tech.onboarding.playground.v0.models.sarvesh_item'](),
|
|
13631
|
-
}),
|
|
13632
|
-
|
|
13633
13542
|
'io.flow.v0.models.schedule': (): io.flow.v0.models.Schedule => ({
|
|
13634
13543
|
calendar: factories['io.flow.v0.enums.calendar'](),
|
|
13635
13544
|
holiday: factories['io.flow.v0.enums.holiday_calendar'](),
|
|
@@ -13681,12 +13590,61 @@ const factories = {
|
|
|
13681
13590
|
issuer_options: arrayOf(() => factories['io.flow.v0.models.issuer_reference']()),
|
|
13682
13591
|
}),
|
|
13683
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
|
+
|
|
13684
13598
|
'io.flow.v0.models.sellability_error': (): io.flow.v0.models.SellabilityError => ({
|
|
13685
13599
|
discriminator: 'sellability_error',
|
|
13686
13600
|
code: factories['io.flow.v0.enums.sellability_error_code'](),
|
|
13687
13601
|
messages: arrayOf(() => factories.string()),
|
|
13688
13602
|
}),
|
|
13689
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
|
+
|
|
13690
13648
|
'io.flow.v0.models.sellablility_region_result': (): io.flow.v0.models.SellablilityRegionResult => ({
|
|
13691
13649
|
type: factories['io.flow.v0.enums.rule_effect_type'](),
|
|
13692
13650
|
regions: arrayOf(() => factories.string()),
|
|
@@ -14097,6 +14055,43 @@ const factories = {
|
|
|
14097
14055
|
shipping_notification: factories['io.flow.v0.models.shipping_notification'](),
|
|
14098
14056
|
}),
|
|
14099
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
|
+
|
|
14100
14095
|
'io.flow.v0.models.shop': (): io.flow.v0.models.Shop => ({
|
|
14101
14096
|
name: factories.string(),
|
|
14102
14097
|
id: factories.string(),
|
|
@@ -14309,6 +14304,7 @@ const factories = {
|
|
|
14309
14304
|
third_party_logistics_partners: arrayOf(() => factories['io.flow.v0.models.third_party_logistics_partner']()),
|
|
14310
14305
|
center_contact: factories['io.flow.v0.models.operations_contact'](),
|
|
14311
14306
|
average_order_weight: factories.decimal(),
|
|
14307
|
+
average_order_weight_unit: factories['io.flow.v0.enums.unit_of_measurement'](),
|
|
14312
14308
|
package_dimensions: arrayOf(() => factories['io.flow.v0.models.dimension']()),
|
|
14313
14309
|
monthly_average: factories['io.flow.v0.models.monthly_average'](),
|
|
14314
14310
|
default_country_of_origin: factories.string(),
|
|
@@ -14342,6 +14338,7 @@ const factories = {
|
|
|
14342
14338
|
third_party_logistics_partners: arrayOf(() => factories['io.flow.v0.models.third_party_logistics_partner']()),
|
|
14343
14339
|
center_contact: factories['io.flow.v0.models.operations_contact'](),
|
|
14344
14340
|
average_order_weight: factories.decimal(),
|
|
14341
|
+
average_order_weight_unit: factories['io.flow.v0.enums.unit_of_measurement'](),
|
|
14345
14342
|
package_dimensions: arrayOf(() => factories['io.flow.v0.models.dimension']()),
|
|
14346
14343
|
monthly_average_volume_amount: factories.decimal(),
|
|
14347
14344
|
monthly_average_volume_currency: factories.string(),
|
|
@@ -14489,6 +14486,11 @@ const factories = {
|
|
|
14489
14486
|
statement: factories['io.flow.v0.models.statement'](),
|
|
14490
14487
|
}),
|
|
14491
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
|
+
|
|
14492
14494
|
'io.flow.v0.models.statement_upserted': (): io.flow.v0.models.StatementUpserted => ({
|
|
14493
14495
|
discriminator: 'statement_upserted',
|
|
14494
14496
|
event_id: factories.string(),
|
|
@@ -14659,6 +14661,14 @@ const factories = {
|
|
|
14659
14661
|
deminimis: factories['io.flow.v0.unions.deminimis'](),
|
|
14660
14662
|
}),
|
|
14661
14663
|
|
|
14664
|
+
'io.flow.v0.models.tax_breakdown': (): io.flow.v0.models.TaxBreakdown => ({
|
|
14665
|
+
label: factories.string(),
|
|
14666
|
+
calculated_tax: factories['io.flow.v0.models.money'](),
|
|
14667
|
+
rate: factories.decimal(),
|
|
14668
|
+
line_total: factories['io.flow.v0.models.money'](),
|
|
14669
|
+
jurisdiction_type: factories['io.flow.v0.enums.tax_jurisdiction_type'](),
|
|
14670
|
+
}),
|
|
14671
|
+
|
|
14662
14672
|
'io.flow.v0.models.tax_duty_calculator_validation_error': (): io.flow.v0.models.TaxDutyCalculatorValidationError => ({
|
|
14663
14673
|
code: factories['io.flow.v0.enums.tax_duty_calculator_validation_error_code'](),
|
|
14664
14674
|
messages: arrayOf(() => factories.string()),
|
|
@@ -14758,11 +14768,34 @@ const factories = {
|
|
|
14758
14768
|
company_name: factories.string(),
|
|
14759
14769
|
}),
|
|
14760
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
|
+
|
|
14761
14786
|
'io.flow.v0.models.tax_registration_form': (): io.flow.v0.models.TaxRegistrationForm => ({
|
|
14762
14787
|
number: factories.string(),
|
|
14763
14788
|
company_name: factories.string(),
|
|
14764
14789
|
}),
|
|
14765
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
|
+
|
|
14766
14799
|
'io.flow.v0.models.tax_report': (): io.flow.v0.models.TaxReport => ({
|
|
14767
14800
|
schedule: factories['io.flow.v0.unions.repeat_schedule'](),
|
|
14768
14801
|
timezone: factories.string(),
|
|
@@ -15045,6 +15078,29 @@ const factories = {
|
|
|
15045
15078
|
order_number: factories.string(),
|
|
15046
15079
|
}),
|
|
15047
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
|
+
|
|
15048
15104
|
'io.flow.v0.models.tracking_label_form': (): io.flow.v0.models.TrackingLabelForm => ({
|
|
15049
15105
|
tracking_id: factories.string(),
|
|
15050
15106
|
status: factories['io.flow.v0.enums.tracking_status'](),
|
|
@@ -15215,6 +15271,25 @@ const factories = {
|
|
|
15215
15271
|
'io.flow.v0.models.transaction_metadata_tax_duty': (): io.flow.v0.models.TransactionMetadataTaxDuty => ({
|
|
15216
15272
|
discriminator: 'transaction_tax_duty',
|
|
15217
15273
|
reason_code: factories['io.flow.v0.enums.tax_duty_transaction_reason_code'](),
|
|
15274
|
+
local_currency: factories.string(),
|
|
15275
|
+
actual: factories['io.flow.v0.models.transaction_metadata_tax_duty_actual'](),
|
|
15276
|
+
estimate: factories['io.flow.v0.models.transaction_metadata_tax_duty_estimate'](),
|
|
15277
|
+
delta: factories['io.flow.v0.models.transaction_metadata_tax_duty_delta'](),
|
|
15278
|
+
}),
|
|
15279
|
+
|
|
15280
|
+
'io.flow.v0.models.transaction_metadata_tax_duty_actual': (): io.flow.v0.models.TransactionMetadataTaxDutyActual => ({
|
|
15281
|
+
base: factories.decimal(),
|
|
15282
|
+
local: factories.decimal(),
|
|
15283
|
+
}),
|
|
15284
|
+
|
|
15285
|
+
'io.flow.v0.models.transaction_metadata_tax_duty_delta': (): io.flow.v0.models.TransactionMetadataTaxDutyDelta => ({
|
|
15286
|
+
base: factories.decimal(),
|
|
15287
|
+
local: factories.decimal(),
|
|
15288
|
+
}),
|
|
15289
|
+
|
|
15290
|
+
'io.flow.v0.models.transaction_metadata_tax_duty_estimate': (): io.flow.v0.models.TransactionMetadataTaxDutyEstimate => ({
|
|
15291
|
+
base: factories.decimal(),
|
|
15292
|
+
local: factories.decimal(),
|
|
15218
15293
|
}),
|
|
15219
15294
|
|
|
15220
15295
|
'io.flow.v0.models.transaction_metadata_trueup': (): io.flow.v0.models.TransactionMetadataTrueup => ({
|
|
@@ -15856,20 +15931,6 @@ const factories = {
|
|
|
15856
15931
|
const f = faker.helpers.arrayElement([
|
|
15857
15932
|
() => factories['io.flow.v0.models.test_upserted'](),
|
|
15858
15933
|
() => factories['io.flow.v0.models.generate_load'](),
|
|
15859
|
-
() => factories['io.flow.v0.models.sarvesh_item_upserted'](),
|
|
15860
|
-
() => factories['io.flow.v0.models.sarvesh_item_deleted'](),
|
|
15861
|
-
() => factories['io.flow.v0.models.hosein_item_upserted'](),
|
|
15862
|
-
() => factories['io.flow.v0.models.hosein_item_deleted'](),
|
|
15863
|
-
() => factories['io.flow.v0.models.niall_item_upserted'](),
|
|
15864
|
-
() => factories['io.flow.v0.models.niall_item_deleted'](),
|
|
15865
|
-
() => factories['io.flow.v0.models.rohan_item_upserted'](),
|
|
15866
|
-
() => factories['io.flow.v0.models.rohan_item_deleted'](),
|
|
15867
|
-
() => factories['io.flow.v0.models.aldo_item_upserted'](),
|
|
15868
|
-
() => factories['io.flow.v0.models.aldo_item_deleted'](),
|
|
15869
|
-
() => factories['io.flow.v0.models.ansh_item_upserted'](),
|
|
15870
|
-
() => factories['io.flow.v0.models.ansh_item_deleted'](),
|
|
15871
|
-
() => factories['io.flow.v0.models.anirban_item_upserted'](),
|
|
15872
|
-
() => factories['io.flow.v0.models.anirban_item_deleted'](),
|
|
15873
15934
|
() => factories['io.flow.v0.models.transaction_upserted'](),
|
|
15874
15935
|
() => factories['io.flow.v0.models.organization_transaction_upserted'](),
|
|
15875
15936
|
() => factories['io.flow.v0.models.organization_transaction_deleted'](),
|
|
@@ -15954,7 +16015,6 @@ const factories = {
|
|
|
15954
16015
|
() => factories['io.flow.v0.models.item_origin_deleted'](),
|
|
15955
16016
|
() => factories['io.flow.v0.models.harmonized_landed_cost_upserted'](),
|
|
15956
16017
|
() => factories['io.flow.v0.models.fully_harmonized_item_upserted'](),
|
|
15957
|
-
() => factories['io.flow.v0.models.label_upserted'](),
|
|
15958
16018
|
() => factories['io.flow.v0.models.label_deleted_v2'](),
|
|
15959
16019
|
() => factories['io.flow.v0.models.label_upserted_v2'](),
|
|
15960
16020
|
() => factories['io.flow.v0.models.notification_upserted_v2'](),
|
|
@@ -15977,6 +16037,8 @@ const factories = {
|
|
|
15977
16037
|
() => factories['io.flow.v0.models.organization_deleted_v2'](),
|
|
15978
16038
|
() => factories['io.flow.v0.models.ecommerce_platform_upserted'](),
|
|
15979
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'](),
|
|
15980
16042
|
() => factories['io.flow.v0.models.organization_onboarding_state_upserted'](),
|
|
15981
16043
|
() => factories['io.flow.v0.models.organization_onboarding_state_deleted'](),
|
|
15982
16044
|
() => factories['io.flow.v0.models.authorization_deleted_v2'](),
|
|
@@ -16024,9 +16086,12 @@ const factories = {
|
|
|
16024
16086
|
() => factories['io.flow.v0.models.ratecard_deleted'](),
|
|
16025
16087
|
() => factories['io.flow.v0.models.product_restriction_result_upserted'](),
|
|
16026
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'](),
|
|
16027
16091
|
() => factories['io.flow.v0.models.shopify_localization_setting_upserted'](),
|
|
16028
16092
|
() => factories['io.flow.v0.models.shopify_localization_setting_deleted'](),
|
|
16029
16093
|
() => factories['io.flow.v0.models.tracking_label_event_upserted'](),
|
|
16094
|
+
() => factories['io.flow.v0.models.tracking_label_event_upserted_v2'](),
|
|
16030
16095
|
]);
|
|
16031
16096
|
|
|
16032
16097
|
return f();
|
|
@@ -16242,18 +16307,27 @@ const factories = {
|
|
|
16242
16307
|
},
|
|
16243
16308
|
|
|
16244
16309
|
'io.flow.v0.unions.merchant_application': (): io.flow.v0.unions.MerchantApplication => {
|
|
16245
|
-
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
|
+
|
|
16246
16315
|
return f();
|
|
16247
16316
|
},
|
|
16248
16317
|
|
|
16249
16318
|
'io.flow.v0.unions.merchant_application_form': (): io.flow.v0.unions.MerchantApplicationForm => {
|
|
16250
|
-
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
|
+
|
|
16251
16324
|
return f();
|
|
16252
16325
|
},
|
|
16253
16326
|
|
|
16254
16327
|
'io.flow.v0.unions.merchant_application_put_form': (): io.flow.v0.unions.MerchantApplicationPutForm => {
|
|
16255
16328
|
const f = faker.helpers.arrayElement([
|
|
16256
16329
|
() => factories['io.flow.v0.models.shopify_merchant_application_put_form'](),
|
|
16330
|
+
() => factories['io.flow.v0.models.common_merchant_application_put_form'](),
|
|
16257
16331
|
]);
|
|
16258
16332
|
|
|
16259
16333
|
return f();
|
|
@@ -16262,6 +16336,7 @@ const factories = {
|
|
|
16262
16336
|
'io.flow.v0.unions.merchant_applications_summary': (): io.flow.v0.unions.MerchantApplicationsSummary => {
|
|
16263
16337
|
const f = faker.helpers.arrayElement([
|
|
16264
16338
|
() => factories['io.flow.v0.models.shopify_merchant_applications_summary'](),
|
|
16339
|
+
() => factories['io.flow.v0.models.common_merchant_applications_summary'](),
|
|
16265
16340
|
]);
|
|
16266
16341
|
|
|
16267
16342
|
return f();
|
|
@@ -16626,10 +16701,20 @@ const factories = {
|
|
|
16626
16701
|
return f();
|
|
16627
16702
|
},
|
|
16628
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
|
+
|
|
16629
16713
|
'io.flow.v0.unions.sellability_response': (): io.flow.v0.unions.SellabilityResponse => {
|
|
16630
16714
|
const f = faker.helpers.arrayElement([
|
|
16631
16715
|
() => factories['io.flow.v0.models.product_sellability'](),
|
|
16632
16716
|
() => factories['io.flow.v0.models.sellability_error'](),
|
|
16717
|
+
() => factories['io.flow.v0.models.sellability_screening'](),
|
|
16633
16718
|
]);
|
|
16634
16719
|
|
|
16635
16720
|
return f();
|
|
@@ -16875,8 +16960,6 @@ export const makeAdyenNativeActionDetails = () => factories['io.flow.v0.models.a
|
|
|
16875
16960
|
export const makeAdyenNativeData = () => factories['io.flow.v0.unions.adyen_native_data']();
|
|
16876
16961
|
export const makeAdyenV3ChallengeToken = () => factories['io.flow.v0.models.adyen_v3_challenge_token']();
|
|
16877
16962
|
export const makeAdyenV3FingerprintToken = () => factories['io.flow.v0.models.adyen_v3_fingerprint_token']();
|
|
16878
|
-
export const makeAldoItemDeleted = () => factories['io.flow.v0.models.aldo_item_deleted']();
|
|
16879
|
-
export const makeAldoItemUpserted = () => factories['io.flow.v0.models.aldo_item_upserted']();
|
|
16880
16963
|
export const makeAllocation = () => factories['io.flow.v0.models.allocation']();
|
|
16881
16964
|
export const makeAllocationComponent = () => factories['io.flow.v0.unions.allocation_component']();
|
|
16882
16965
|
export const makeAllocationDeletedV2 = () => factories['io.flow.v0.models.allocation_deleted_v2']();
|
|
@@ -16894,10 +16977,6 @@ export const makeAllocationV2 = () => factories['io.flow.v0.models.allocation_v2
|
|
|
16894
16977
|
export const makeAmountMargin = () => factories['io.flow.v0.models.amount_margin']();
|
|
16895
16978
|
export const makeAmountMarginForm = () => factories['io.flow.v0.models.amount_margin_form']();
|
|
16896
16979
|
export const makeAnalyticsExportType = () => factories['io.flow.v0.models.analytics_export_type']();
|
|
16897
|
-
export const makeAnirbanItemDeleted = () => factories['io.flow.v0.models.anirban_item_deleted']();
|
|
16898
|
-
export const makeAnirbanItemUpserted = () => factories['io.flow.v0.models.anirban_item_upserted']();
|
|
16899
|
-
export const makeAnshItemDeleted = () => factories['io.flow.v0.models.ansh_item_deleted']();
|
|
16900
|
-
export const makeAnshItemUpserted = () => factories['io.flow.v0.models.ansh_item_upserted']();
|
|
16901
16980
|
export const makeApplePayMerchantValidationPayload = () => factories['io.flow.v0.models.apple_pay_merchant_validation_payload']();
|
|
16902
16981
|
export const makeApplepaySdkCreateResultActionDetails = () => factories['io.flow.v0.models.applepay_sdk_create_result_action_details']();
|
|
16903
16982
|
export const makeApplepaySdkValidateResultActionDetails = () => factories['io.flow.v0.models.applepay_sdk_validate_result_action_details']();
|
|
@@ -17116,6 +17195,11 @@ export const makeCheckoutUrls = () => factories['io.flow.v0.models.checkout_urls
|
|
|
17116
17195
|
export const makeCheckoutUrlsForm = () => factories['io.flow.v0.models.checkout_urls_form']();
|
|
17117
17196
|
export const makeCleartext = () => factories['io.flow.v0.models.cleartext']();
|
|
17118
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']();
|
|
17119
17203
|
export const makeCompany = () => factories['io.flow.v0.models.company']();
|
|
17120
17204
|
export const makeConfirmationDetails = () => factories['io.flow.v0.unions.confirmation_details']();
|
|
17121
17205
|
export const makeConsumerInvoice = () => factories['io.flow.v0.models.consumer_invoice']();
|
|
@@ -17374,6 +17458,7 @@ export const makeExportType = () => factories['io.flow.v0.unions.export_type']()
|
|
|
17374
17458
|
export const makeExportVersion = () => factories['io.flow.v0.models.export_version']();
|
|
17375
17459
|
export const makeExporterOfRecord = () => factories['io.flow.v0.enums.exporter_of_record']();
|
|
17376
17460
|
export const makeExternalCard = () => factories['io.flow.v0.models.external_card']();
|
|
17461
|
+
export const makeExternalOrderSummary = () => factories['io.flow.v0.models.external_order_summary']();
|
|
17377
17462
|
export const makeFeeDeduction = () => factories['io.flow.v0.models.fee_deduction']();
|
|
17378
17463
|
export const makeFeeDeductionType = () => factories['io.flow.v0.enums.fee_deduction_type']();
|
|
17379
17464
|
export const makeFeeWeight = () => factories['io.flow.v0.models.fee_weight']();
|
|
@@ -17480,8 +17565,6 @@ export const makeHop = () => factories['io.flow.v0.models.hop']();
|
|
|
17480
17565
|
export const makeHopEstimate = () => factories['io.flow.v0.models.hop_estimate']();
|
|
17481
17566
|
export const makeHopEstimateV2 = () => factories['io.flow.v0.models.hop_estimate_v2']();
|
|
17482
17567
|
export const makeHopV2 = () => factories['io.flow.v0.models.hop_v2']();
|
|
17483
|
-
export const makeHoseinItemDeleted = () => factories['io.flow.v0.models.hosein_item_deleted']();
|
|
17484
|
-
export const makeHoseinItemUpserted = () => factories['io.flow.v0.models.hosein_item_upserted']();
|
|
17485
17568
|
export const makeHs10 = () => factories['io.flow.v0.models.hs10']();
|
|
17486
17569
|
export const makeHs10CodeDeleted = () => factories['io.flow.v0.models.hs10_code_deleted']();
|
|
17487
17570
|
export const makeHs10CodeUpserted = () => factories['io.flow.v0.models.hs10_code_upserted']();
|
|
@@ -17529,6 +17612,7 @@ export const makeInvitationForm = () => factories['io.flow.v0.models.invitation_
|
|
|
17529
17612
|
export const makeInvitationVersion = () => factories['io.flow.v0.models.invitation_version']();
|
|
17530
17613
|
export const makeInvoiceExport = () => factories['io.flow.v0.models.invoice_export']();
|
|
17531
17614
|
export const makeInvoiceExportForm = () => factories['io.flow.v0.models.invoice_export_form']();
|
|
17615
|
+
export const makeInvoiceTaxLine = () => factories['io.flow.v0.models.invoice_tax_line']();
|
|
17532
17616
|
export const makeIssuerReference = () => factories['io.flow.v0.models.issuer_reference']();
|
|
17533
17617
|
export const makeIssuerSummary = () => factories['io.flow.v0.models.issuer_summary']();
|
|
17534
17618
|
export const makeIssuerV1 = () => factories['io.flow.v0.models.issuer_v1']();
|
|
@@ -17585,7 +17669,6 @@ export const makeLabelTrackingSummary = () => factories['io.flow.v0.models.label
|
|
|
17585
17669
|
export const makeLabelTrackingSummaryUpdate = () => factories['io.flow.v0.models.label_tracking_summary_update']();
|
|
17586
17670
|
export const makeLabelTriggerMethod = () => factories['io.flow.v0.enums.label_trigger_method']();
|
|
17587
17671
|
export const makeLabelUnits = () => factories['io.flow.v0.models.label_units']();
|
|
17588
|
-
export const makeLabelUpserted = () => factories['io.flow.v0.models.label_upserted']();
|
|
17589
17672
|
export const makeLabelUpsertedV2 = () => factories['io.flow.v0.models.label_upserted_v2']();
|
|
17590
17673
|
export const makeLandedCostItem = () => factories['io.flow.v0.models.landed_cost_item']();
|
|
17591
17674
|
export const makeLaneDirection = () => factories['io.flow.v0.enums.lane_direction']();
|
|
@@ -17671,6 +17754,7 @@ export const makeMerchantOfRecordEntity = () => factories['io.flow.v0.models.mer
|
|
|
17671
17754
|
export const makeMerchantOfRecordEntityRegistration = () => factories['io.flow.v0.models.merchant_of_record_entity_registration']();
|
|
17672
17755
|
export const makeMerchantOfRecordPaymentForm = () => factories['io.flow.v0.models.merchant_of_record_payment_form']();
|
|
17673
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']();
|
|
17674
17758
|
export const makeMerchantRejected = () => factories['io.flow.v0.models.merchant_rejected']();
|
|
17675
17759
|
export const makeMerchantRejectedReason = () => factories['io.flow.v0.enums.merchant_rejected_reason']();
|
|
17676
17760
|
export const makeMethod = () => factories['io.flow.v0.enums.method']();
|
|
@@ -17682,8 +17766,6 @@ export const makeMonthlyAverageVolume = () => factories['io.flow.v0.models.month
|
|
|
17682
17766
|
export const makeName = () => factories['io.flow.v0.models.name']();
|
|
17683
17767
|
export const makeNameForm = () => factories['io.flow.v0.models.name_form']();
|
|
17684
17768
|
export const makeNeedsActionAttributes = () => factories['io.flow.v0.models.needs_action_attributes']();
|
|
17685
|
-
export const makeNiallItemDeleted = () => factories['io.flow.v0.models.niall_item_deleted']();
|
|
17686
|
-
export const makeNiallItemUpserted = () => factories['io.flow.v0.models.niall_item_upserted']();
|
|
17687
17769
|
export const makeNotificationDeletedV2 = () => factories['io.flow.v0.models.notification_deleted_v2']();
|
|
17688
17770
|
export const makeNotificationUpsertedV2 = () => factories['io.flow.v0.models.notification_upserted_v2']();
|
|
17689
17771
|
export const makeNumberRange = () => factories['io.flow.v0.models.number_range']();
|
|
@@ -17823,6 +17905,8 @@ export const makeOrganizationSession = () => factories['io.flow.v0.models.organi
|
|
|
17823
17905
|
export const makeOrganizationSessionAuthorization = () => factories['io.flow.v0.models.organization_session_authorization']();
|
|
17824
17906
|
export const makeOrganizationStatus = () => factories['io.flow.v0.enums.organization_status']();
|
|
17825
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']();
|
|
17826
17910
|
export const makeOrganizationToken = () => factories['io.flow.v0.models.organization_token']();
|
|
17827
17911
|
export const makeOrganizationTokenForm = () => factories['io.flow.v0.models.organization_token_form']();
|
|
17828
17912
|
export const makeOrganizationTokenFormV2 = () => factories['io.flow.v0.models.organization_token_form_v2']();
|
|
@@ -18071,6 +18155,9 @@ export const makeProductRestrictionResultDeleted = () => factories['io.flow.v0.m
|
|
|
18071
18155
|
export const makeProductRestrictionResultUpserted = () => factories['io.flow.v0.models.product_restriction_result_upserted']();
|
|
18072
18156
|
export const makeProductSellability = () => factories['io.flow.v0.models.product_sellability']();
|
|
18073
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']();
|
|
18074
18161
|
export const makeProductTaxonomyCategory = () => factories['io.flow.v0.models.product_taxonomy_category']();
|
|
18075
18162
|
export const makeProductTaxonomyData = () => factories['io.flow.v0.models.product_taxonomy_data']();
|
|
18076
18163
|
export const makeProductTaxonomyValue = () => factories['io.flow.v0.models.product_taxonomy_value']();
|
|
@@ -18178,6 +18265,7 @@ export const makeRepeatMonthly = () => factories['io.flow.v0.models.repeat_month
|
|
|
18178
18265
|
export const makeRepeatSchedule = () => factories['io.flow.v0.unions.repeat_schedule']();
|
|
18179
18266
|
export const makeRepeatWeekly = () => factories['io.flow.v0.models.repeat_weekly']();
|
|
18180
18267
|
export const makeRestrictedReviewStatus = () => factories['io.flow.v0.enums.restricted_review_status']();
|
|
18268
|
+
export const makeRestrictionEnvironment = () => factories['io.flow.v0.enums.restriction_environment']();
|
|
18181
18269
|
export const makeReturn = () => factories['io.flow.v0.models.return']();
|
|
18182
18270
|
export const makeReturnForm = () => factories['io.flow.v0.models.return_form']();
|
|
18183
18271
|
export const makeReturnItemReference = () => factories['io.flow.v0.models.return_item_reference']();
|
|
@@ -18210,8 +18298,6 @@ export const makeReversalStatus = () => factories['io.flow.v0.enums.reversal_sta
|
|
|
18210
18298
|
export const makeReversalUpserted = () => factories['io.flow.v0.models.reversal_upserted']();
|
|
18211
18299
|
export const makeReversalVersion = () => factories['io.flow.v0.models.reversal_version']();
|
|
18212
18300
|
export const makeReviewStatus = () => factories['io.flow.v0.enums.review_status']();
|
|
18213
|
-
export const makeRohanItemDeleted = () => factories['io.flow.v0.models.rohan_item_deleted']();
|
|
18214
|
-
export const makeRohanItemUpserted = () => factories['io.flow.v0.models.rohan_item_upserted']();
|
|
18215
18301
|
export const makeRole = () => factories['io.flow.v0.enums.role']();
|
|
18216
18302
|
export const makeRomanization = () => factories['io.flow.v0.models.romanization']();
|
|
18217
18303
|
export const makeRomanizationForm = () => factories['io.flow.v0.models.romanization_form']();
|
|
@@ -18220,8 +18306,6 @@ export const makeRoundingMethod = () => factories['io.flow.v0.enums.rounding_met
|
|
|
18220
18306
|
export const makeRoundingType = () => factories['io.flow.v0.enums.rounding_type']();
|
|
18221
18307
|
export const makeRouteAudit = () => factories['io.flow.v0.models.route_audit']();
|
|
18222
18308
|
export const makeRuleEffectType = () => factories['io.flow.v0.enums.rule_effect_type']();
|
|
18223
|
-
export const makeSarveshItemDeleted = () => factories['io.flow.v0.models.sarvesh_item_deleted']();
|
|
18224
|
-
export const makeSarveshItemUpserted = () => factories['io.flow.v0.models.sarvesh_item_upserted']();
|
|
18225
18309
|
export const makeSchedule = () => factories['io.flow.v0.models.schedule']();
|
|
18226
18310
|
export const makeScheduleExceptionStatus = () => factories['io.flow.v0.enums.schedule_exception_status']();
|
|
18227
18311
|
export const makeScheduledExport = () => factories['io.flow.v0.models.scheduled_export']();
|
|
@@ -18231,10 +18315,21 @@ export const makeSdkAdyenV3AuthenticationToken = () => factories['io.flow.v0.uni
|
|
|
18231
18315
|
export const makeSecurityRatecardFee = () => factories['io.flow.v0.models.security_ratecard_fee']();
|
|
18232
18316
|
export const makeSecurityServiceFee = () => factories['io.flow.v0.models.security_service_fee']();
|
|
18233
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']();
|
|
18234
18319
|
export const makeSellabilityError = () => factories['io.flow.v0.models.sellability_error']();
|
|
18235
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']();
|
|
18236
18325
|
export const makeSellabilityRequestStatus = () => factories['io.flow.v0.enums.sellability_request_status']();
|
|
18237
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']();
|
|
18238
18333
|
export const makeSellablilityRegionResult = () => factories['io.flow.v0.models.sellablility_region_result']();
|
|
18239
18334
|
export const makeServiceDescription = () => factories['io.flow.v0.unions.service_description']();
|
|
18240
18335
|
export const makeServiceFee = () => factories['io.flow.v0.unions.service_fee']();
|
|
@@ -18303,6 +18398,10 @@ export const makeShippingLaneVersion = () => factories['io.flow.v0.models.shippi
|
|
|
18303
18398
|
export const makeShippingNotification = () => factories['io.flow.v0.models.shipping_notification']();
|
|
18304
18399
|
export const makeShippingNotificationForm = () => factories['io.flow.v0.unions.shipping_notification_form']();
|
|
18305
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']();
|
|
18306
18405
|
export const makeShop = () => factories['io.flow.v0.models.shop']();
|
|
18307
18406
|
export const makeShopifyCart = () => factories['io.flow.v0.models.shopify_cart']();
|
|
18308
18407
|
export const makeShopifyCartAddForm = () => factories['io.flow.v0.unions.shopify_cart_add_form']();
|
|
@@ -18357,6 +18456,8 @@ export const makeSortDirection = () => factories['io.flow.v0.enums.sort_directio
|
|
|
18357
18456
|
export const makeStatement = () => factories['io.flow.v0.models.statement']();
|
|
18358
18457
|
export const makeStatementAttachmentType = () => factories['io.flow.v0.enums.statement_attachment_type']();
|
|
18359
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']();
|
|
18360
18461
|
export const makeStatementUpserted = () => factories['io.flow.v0.models.statement_upserted']();
|
|
18361
18462
|
export const makeStoredMethodUsageStep = () => factories['io.flow.v0.enums.stored_method_usage_step']();
|
|
18362
18463
|
export const makeStrategy = () => factories['io.flow.v0.enums.strategy']();
|
|
@@ -18388,6 +18489,7 @@ export const makeSurchargeSetting = () => factories['io.flow.v0.models.surcharge
|
|
|
18388
18489
|
export const makeSurchargeSettingDisplay = () => factories['io.flow.v0.models.surcharge_setting_display']();
|
|
18389
18490
|
export const makeTax = () => factories['io.flow.v0.models.tax']();
|
|
18390
18491
|
export const makeTaxApplicability = () => factories['io.flow.v0.enums.tax_applicability']();
|
|
18492
|
+
export const makeTaxBreakdown = () => factories['io.flow.v0.models.tax_breakdown']();
|
|
18391
18493
|
export const makeTaxDutyCalculatorValidationError = () => factories['io.flow.v0.models.tax_duty_calculator_validation_error']();
|
|
18392
18494
|
export const makeTaxDutyCalculatorValidationErrorCode = () => factories['io.flow.v0.enums.tax_duty_calculator_validation_error_code']();
|
|
18393
18495
|
export const makeTaxDutyQuote = () => factories['io.flow.v0.models.tax_duty_quote']();
|
|
@@ -18401,11 +18503,16 @@ export const makeTaxDutyQuoteSimpleShipping = () => factories['io.flow.v0.models
|
|
|
18401
18503
|
export const makeTaxDutyQuoteSimpleShippingForm = () => factories['io.flow.v0.models.tax_duty_quote_simple_shipping_form']();
|
|
18402
18504
|
export const makeTaxDutyQuoteValues = () => factories['io.flow.v0.models.tax_duty_quote_values']();
|
|
18403
18505
|
export const makeTaxDutyTransactionReasonCode = () => factories['io.flow.v0.enums.tax_duty_transaction_reason_code']();
|
|
18506
|
+
export const makeTaxJurisdictionType = () => factories['io.flow.v0.enums.tax_jurisdiction_type']();
|
|
18404
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']();
|
|
18405
18510
|
export const makeTaxRegistrationForm = () => factories['io.flow.v0.models.tax_registration_form']();
|
|
18511
|
+
export const makeTaxRegistrationUpserted = () => factories['io.flow.v0.models.tax_registration_upserted']();
|
|
18406
18512
|
export const makeTaxReport = () => factories['io.flow.v0.models.tax_report']();
|
|
18407
18513
|
export const makeTaxReportType = () => factories['io.flow.v0.enums.tax_report_type']();
|
|
18408
18514
|
export const makeTaxSetting = () => factories['io.flow.v0.unions.tax_setting']();
|
|
18515
|
+
export const makeTaxType = () => factories['io.flow.v0.enums.tax_type']();
|
|
18409
18516
|
export const makeTaxVerificationResult = () => factories['io.flow.v0.enums.tax_verification_result']();
|
|
18410
18517
|
export const makeTaxabilityType = () => factories['io.flow.v0.enums.taxability_type']();
|
|
18411
18518
|
export const makeTaxabilityValue = () => factories['io.flow.v0.enums.taxability_value']();
|
|
@@ -18456,6 +18563,8 @@ export const makeTrackingEventVersion = () => factories['io.flow.v0.models.track
|
|
|
18456
18563
|
export const makeTrackingForm = () => factories['io.flow.v0.models.tracking_form']();
|
|
18457
18564
|
export const makeTrackingLabel = () => factories['io.flow.v0.models.tracking_label']();
|
|
18458
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']();
|
|
18459
18568
|
export const makeTrackingLabelForm = () => factories['io.flow.v0.models.tracking_label_form']();
|
|
18460
18569
|
export const makeTrackingLabelSummary = () => factories['io.flow.v0.models.tracking_label_summary']();
|
|
18461
18570
|
export const makeTrackingLabelVersion = () => factories['io.flow.v0.models.tracking_label_version']();
|
|
@@ -18486,6 +18595,9 @@ export const makeTransactionMetadataPaymentTransaction = () => factories['io.flo
|
|
|
18486
18595
|
export const makeTransactionMetadataShippingLabel = () => factories['io.flow.v0.models.transaction_metadata_shipping_label']();
|
|
18487
18596
|
export const makeTransactionMetadataShippingLabelCarrier = () => factories['io.flow.v0.models.transaction_metadata_shipping_label_carrier']();
|
|
18488
18597
|
export const makeTransactionMetadataTaxDuty = () => factories['io.flow.v0.models.transaction_metadata_tax_duty']();
|
|
18598
|
+
export const makeTransactionMetadataTaxDutyActual = () => factories['io.flow.v0.models.transaction_metadata_tax_duty_actual']();
|
|
18599
|
+
export const makeTransactionMetadataTaxDutyDelta = () => factories['io.flow.v0.models.transaction_metadata_tax_duty_delta']();
|
|
18600
|
+
export const makeTransactionMetadataTaxDutyEstimate = () => factories['io.flow.v0.models.transaction_metadata_tax_duty_estimate']();
|
|
18489
18601
|
export const makeTransactionMetadataTrueup = () => factories['io.flow.v0.models.transaction_metadata_trueup']();
|
|
18490
18602
|
export const makeTransactionMetadataTrueupBase = () => factories['io.flow.v0.models.transaction_metadata_trueup_base']();
|
|
18491
18603
|
export const makeTransactionMetadataTrueupBaseData = () => factories['io.flow.v0.models.transaction_metadata_trueup_base_data']();
|