@flowio/api-factories 0.0.85 → 0.0.87
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 +288 -37
- package/dist/esm/api.js +249 -15
- package/dist/types/api.d.ts +19 -3
- package/package.json +2 -2
- package/src/api.ts +283 -17
package/src/api.ts
CHANGED
|
@@ -588,6 +588,7 @@ const factories = {
|
|
|
588
588
|
published_at: factories.date_time_iso_8601(),
|
|
589
589
|
created_at: factories.date_time_iso_8601(),
|
|
590
590
|
updated_at: factories.date_time_iso_8601(),
|
|
591
|
+
has_variants_that_requires_components: factories.boolean(),
|
|
591
592
|
}),
|
|
592
593
|
|
|
593
594
|
'io.flow.shopify.external.v0.models.product_delete': (): io.flow.shopify.external.v0.models.ProductDelete => ({
|
|
@@ -1399,6 +1400,45 @@ const factories = {
|
|
|
1399
1400
|
'io.flow.stripe.v0.enums.account_type': (): io.flow.stripe.v0.enums.AccountType => faker.helpers.arrayElement(['platform', 'custom', 'standard', 'express']),
|
|
1400
1401
|
'io.flow.stripe.v0.enums.apple_pay_type': (): io.flow.stripe.v0.enums.ApplePayType => faker.helpers.arrayElement(['apple_pay', 'apple_pay_later']),
|
|
1401
1402
|
|
|
1403
|
+
'io.flow.stripe.v0.enums.bank_ideal': (): io.flow.stripe.v0.enums.BankIdeal => faker.helpers.arrayElement([
|
|
1404
|
+
'abn_amro',
|
|
1405
|
+
'asn_bank',
|
|
1406
|
+
'bunq',
|
|
1407
|
+
'handelsbanken',
|
|
1408
|
+
'ing',
|
|
1409
|
+
'knab',
|
|
1410
|
+
'moneyou',
|
|
1411
|
+
'n26',
|
|
1412
|
+
'nn',
|
|
1413
|
+
'rabobank',
|
|
1414
|
+
'regiobank',
|
|
1415
|
+
'revolut',
|
|
1416
|
+
'sns_bank',
|
|
1417
|
+
'triodos_bank',
|
|
1418
|
+
'van_lanschot',
|
|
1419
|
+
'yoursafe',
|
|
1420
|
+
]),
|
|
1421
|
+
|
|
1422
|
+
'io.flow.stripe.v0.enums.bic_ideal': (): io.flow.stripe.v0.enums.BicIdeal => faker.helpers.arrayElement([
|
|
1423
|
+
'ABNANL2A',
|
|
1424
|
+
'ASNBNL21',
|
|
1425
|
+
'BITSNL2A',
|
|
1426
|
+
'BUNQNL2A',
|
|
1427
|
+
'FVLBNL22',
|
|
1428
|
+
'HANDNL2A',
|
|
1429
|
+
'INGBNL2A',
|
|
1430
|
+
'KNABNL2H',
|
|
1431
|
+
'MOYONL21',
|
|
1432
|
+
'NNBANL2G',
|
|
1433
|
+
'NTSBDEB1',
|
|
1434
|
+
'RABONL2U',
|
|
1435
|
+
'RBRBNL21',
|
|
1436
|
+
'REVOIE23',
|
|
1437
|
+
'REVOLT21',
|
|
1438
|
+
'SNSBNL2A',
|
|
1439
|
+
'TRIONL2U',
|
|
1440
|
+
]),
|
|
1441
|
+
|
|
1402
1442
|
'io.flow.stripe.v0.enums.cancellation_reason': (): io.flow.stripe.v0.enums.CancellationReason => faker.helpers.arrayElement([
|
|
1403
1443
|
'abandoned',
|
|
1404
1444
|
'automatic',
|
|
@@ -1629,9 +1669,10 @@ const factories = {
|
|
|
1629
1669
|
]),
|
|
1630
1670
|
|
|
1631
1671
|
'io.flow.stripe.v0.enums.payment_method_category_klarna': (): io.flow.stripe.v0.enums.PaymentMethodCategoryKlarna => faker.helpers.arrayElement(['pay_later', 'pay_now', 'pay_with_financing', 'pay_in_installments']),
|
|
1632
|
-
'io.flow.stripe.v0.enums.payment_method_type': (): io.flow.stripe.v0.enums.PaymentMethodType => faker.helpers.arrayElement(['card', 'card_present', 'klarna']),
|
|
1672
|
+
'io.flow.stripe.v0.enums.payment_method_type': (): io.flow.stripe.v0.enums.PaymentMethodType => faker.helpers.arrayElement(['card', 'card_present', 'ideal', 'klarna', 'bancontact']),
|
|
1633
1673
|
'io.flow.stripe.v0.enums.payment_outcome_type': (): io.flow.stripe.v0.enums.PaymentOutcomeType => faker.helpers.arrayElement(['authorized', 'manual_review', 'issuer_declined', 'blocked', 'invalid']),
|
|
1634
1674
|
'io.flow.stripe.v0.enums.payment_status': (): io.flow.stripe.v0.enums.PaymentStatus => faker.helpers.arrayElement(['succeeded', 'pending', 'failed']),
|
|
1675
|
+
'io.flow.stripe.v0.enums.preferred_language_bancontact': (): io.flow.stripe.v0.enums.PreferredLanguageBancontact => faker.helpers.arrayElement(['de', 'en', 'fr', 'nl']),
|
|
1635
1676
|
|
|
1636
1677
|
'io.flow.stripe.v0.enums.preferred_locale_klarna': (): io.flow.stripe.v0.enums.PreferredLocaleKlarna => faker.helpers.arrayElement([
|
|
1637
1678
|
'de-AT',
|
|
@@ -2214,8 +2255,10 @@ const factories = {
|
|
|
2214
2255
|
id: factories.string(),
|
|
2215
2256
|
object: factories.string(),
|
|
2216
2257
|
billing_details: factories['io.flow.stripe.v0.models.payment_method_billing_details'](),
|
|
2258
|
+
bancontact: factories.object(),
|
|
2217
2259
|
card: factories['io.flow.stripe.v0.models.payment_method_card_details'](),
|
|
2218
2260
|
card_present: factories.object(),
|
|
2261
|
+
ideal: factories.object(),
|
|
2219
2262
|
klarna: factories.object(),
|
|
2220
2263
|
created: factories.long(),
|
|
2221
2264
|
customer: factories.string(),
|
|
@@ -2250,6 +2293,12 @@ const factories = {
|
|
|
2250
2293
|
cvc: factories.string(),
|
|
2251
2294
|
}),
|
|
2252
2295
|
|
|
2296
|
+
'io.flow.stripe.v0.models.payment_method_data_bancontact': (): io.flow.stripe.v0.models.PaymentMethodDataBancontact => ({
|
|
2297
|
+
type: 'bancontact',
|
|
2298
|
+
billing_details: factories['io.flow.stripe.v0.models.payment_method_billing_details'](),
|
|
2299
|
+
metadata: factories.object(),
|
|
2300
|
+
}),
|
|
2301
|
+
|
|
2253
2302
|
'io.flow.stripe.v0.models.payment_method_data_card': (): io.flow.stripe.v0.models.PaymentMethodDataCard => ({
|
|
2254
2303
|
type: 'card',
|
|
2255
2304
|
billing_details: factories['io.flow.stripe.v0.models.payment_method_billing_details'](),
|
|
@@ -2257,6 +2306,13 @@ const factories = {
|
|
|
2257
2306
|
card: factories['io.flow.stripe.v0.models.payment_method_card_form'](),
|
|
2258
2307
|
}),
|
|
2259
2308
|
|
|
2309
|
+
'io.flow.stripe.v0.models.payment_method_data_ideal': (): io.flow.stripe.v0.models.PaymentMethodDataIdeal => ({
|
|
2310
|
+
type: 'ideal',
|
|
2311
|
+
billing_details: factories['io.flow.stripe.v0.models.payment_method_billing_details'](),
|
|
2312
|
+
metadata: factories.object(),
|
|
2313
|
+
ideal: factories['io.flow.stripe.v0.models.payment_method_ideal_form'](),
|
|
2314
|
+
}),
|
|
2315
|
+
|
|
2260
2316
|
'io.flow.stripe.v0.models.payment_method_data_klarna': (): io.flow.stripe.v0.models.PaymentMethodDataKlarna => ({
|
|
2261
2317
|
type: 'klarna',
|
|
2262
2318
|
billing_details: factories['io.flow.stripe.v0.models.payment_method_billing_details'](),
|
|
@@ -2264,6 +2320,22 @@ const factories = {
|
|
|
2264
2320
|
klarna: factories['io.flow.stripe.v0.models.payment_method_klarna_form'](),
|
|
2265
2321
|
}),
|
|
2266
2322
|
|
|
2323
|
+
'io.flow.stripe.v0.models.payment_method_details_bancontact': (): io.flow.stripe.v0.models.PaymentMethodDetailsBancontact => ({
|
|
2324
|
+
type: 'bancontact',
|
|
2325
|
+
bancontact: factories['io.flow.stripe.v0.models.payment_method_details_bancontact_information'](),
|
|
2326
|
+
}),
|
|
2327
|
+
|
|
2328
|
+
'io.flow.stripe.v0.models.payment_method_details_bancontact_information': (): io.flow.stripe.v0.models.PaymentMethodDetailsBancontactInformation => ({
|
|
2329
|
+
bank_code: factories.string(),
|
|
2330
|
+
bank_name: factories.string(),
|
|
2331
|
+
bic: factories.string(),
|
|
2332
|
+
generated_sepa_debit: factories.string(),
|
|
2333
|
+
generated_sepa_debit_mandate: factories.string(),
|
|
2334
|
+
iban_last4: factories.string(),
|
|
2335
|
+
preferred_language: factories['io.flow.stripe.v0.enums.preferred_language_bancontact'](),
|
|
2336
|
+
verified_name: factories.string(),
|
|
2337
|
+
}),
|
|
2338
|
+
|
|
2267
2339
|
'io.flow.stripe.v0.models.payment_method_details_card': (): io.flow.stripe.v0.models.PaymentMethodDetailsCard => ({
|
|
2268
2340
|
type: 'card',
|
|
2269
2341
|
card: factories['io.flow.stripe.v0.models.payment_method_details_card_information'](),
|
|
@@ -2295,6 +2367,20 @@ const factories = {
|
|
|
2295
2367
|
overcapture: factories['io.flow.stripe.v0.models.overcapture'](),
|
|
2296
2368
|
}),
|
|
2297
2369
|
|
|
2370
|
+
'io.flow.stripe.v0.models.payment_method_details_ideal': (): io.flow.stripe.v0.models.PaymentMethodDetailsIdeal => ({
|
|
2371
|
+
type: 'ideal',
|
|
2372
|
+
ideal: factories['io.flow.stripe.v0.models.payment_method_details_ideal_information'](),
|
|
2373
|
+
}),
|
|
2374
|
+
|
|
2375
|
+
'io.flow.stripe.v0.models.payment_method_details_ideal_information': (): io.flow.stripe.v0.models.PaymentMethodDetailsIdealInformation => ({
|
|
2376
|
+
bank: factories['io.flow.stripe.v0.enums.bank_ideal'](),
|
|
2377
|
+
bic: factories['io.flow.stripe.v0.enums.bic_ideal'](),
|
|
2378
|
+
generated_sepa_debit: factories.string(),
|
|
2379
|
+
generated_sepa_debit_mandate: factories.string(),
|
|
2380
|
+
iban_last4: factories.string(),
|
|
2381
|
+
verified_name: factories.string(),
|
|
2382
|
+
}),
|
|
2383
|
+
|
|
2298
2384
|
'io.flow.stripe.v0.models.payment_method_details_klarna': (): io.flow.stripe.v0.models.PaymentMethodDetailsKlarna => ({
|
|
2299
2385
|
type: 'klarna',
|
|
2300
2386
|
klarna: factories['io.flow.stripe.v0.models.payment_method_details_klarna_information'](),
|
|
@@ -2305,6 +2391,13 @@ const factories = {
|
|
|
2305
2391
|
preferred_locale: factories['io.flow.stripe.v0.enums.preferred_locale_klarna'](),
|
|
2306
2392
|
}),
|
|
2307
2393
|
|
|
2394
|
+
'io.flow.stripe.v0.models.payment_method_form_bancontact': (): io.flow.stripe.v0.models.PaymentMethodFormBancontact => ({
|
|
2395
|
+
type: 'bancontact',
|
|
2396
|
+
billing_details: factories['io.flow.stripe.v0.models.payment_method_billing_details'](),
|
|
2397
|
+
metadata: factories.object(),
|
|
2398
|
+
bancontact: factories.object(),
|
|
2399
|
+
}),
|
|
2400
|
+
|
|
2308
2401
|
'io.flow.stripe.v0.models.payment_method_form_card': (): io.flow.stripe.v0.models.PaymentMethodFormCard => ({
|
|
2309
2402
|
type: 'card',
|
|
2310
2403
|
billing_details: factories['io.flow.stripe.v0.models.payment_method_billing_details'](),
|
|
@@ -2312,6 +2405,13 @@ const factories = {
|
|
|
2312
2405
|
card: factories['io.flow.stripe.v0.models.payment_method_card_form'](),
|
|
2313
2406
|
}),
|
|
2314
2407
|
|
|
2408
|
+
'io.flow.stripe.v0.models.payment_method_form_ideal': (): io.flow.stripe.v0.models.PaymentMethodFormIdeal => ({
|
|
2409
|
+
type: 'ideal',
|
|
2410
|
+
billing_details: factories['io.flow.stripe.v0.models.payment_method_billing_details'](),
|
|
2411
|
+
metadata: factories.object(),
|
|
2412
|
+
ideal: factories['io.flow.stripe.v0.models.payment_method_ideal_form'](),
|
|
2413
|
+
}),
|
|
2414
|
+
|
|
2315
2415
|
'io.flow.stripe.v0.models.payment_method_form_klarna': (): io.flow.stripe.v0.models.PaymentMethodFormKlarna => ({
|
|
2316
2416
|
type: 'klarna',
|
|
2317
2417
|
billing_details: factories['io.flow.stripe.v0.models.payment_method_billing_details'](),
|
|
@@ -2319,13 +2419,27 @@ const factories = {
|
|
|
2319
2419
|
klarna: factories['io.flow.stripe.v0.models.payment_method_klarna_form'](),
|
|
2320
2420
|
}),
|
|
2321
2421
|
|
|
2422
|
+
'io.flow.stripe.v0.models.payment_method_ideal_form': (): io.flow.stripe.v0.models.PaymentMethodIdealForm => ({
|
|
2423
|
+
bank: factories.string(),
|
|
2424
|
+
}),
|
|
2425
|
+
|
|
2322
2426
|
'io.flow.stripe.v0.models.payment_method_klarna_form': (): io.flow.stripe.v0.models.PaymentMethodKlarnaForm => ({
|
|
2323
2427
|
dob: factories['io.flow.stripe.v0.models.klarna_dob_form'](),
|
|
2324
2428
|
}),
|
|
2325
2429
|
|
|
2326
2430
|
'io.flow.stripe.v0.models.payment_method_options': (): io.flow.stripe.v0.models.PaymentMethodOptions => ({
|
|
2327
2431
|
card: factories['io.flow.stripe.v0.models.payment_method_options_card'](),
|
|
2432
|
+
ideal: factories['io.flow.stripe.v0.models.payment_method_options_ideal'](),
|
|
2328
2433
|
klarna: factories['io.flow.stripe.v0.models.payment_method_options_klarna'](),
|
|
2434
|
+
bancontact: factories['io.flow.stripe.v0.models.payment_method_options_bancontact'](),
|
|
2435
|
+
}),
|
|
2436
|
+
|
|
2437
|
+
'io.flow.stripe.v0.models.payment_method_options_bancontact': (): io.flow.stripe.v0.models.PaymentMethodOptionsBancontact => ({
|
|
2438
|
+
preferred_language: factories['io.flow.stripe.v0.enums.preferred_language_bancontact'](),
|
|
2439
|
+
}),
|
|
2440
|
+
|
|
2441
|
+
'io.flow.stripe.v0.models.payment_method_options_bancontact_form': (): io.flow.stripe.v0.models.PaymentMethodOptionsBancontactForm => ({
|
|
2442
|
+
preferred_language: factories['io.flow.stripe.v0.enums.preferred_language_bancontact'](),
|
|
2329
2443
|
}),
|
|
2330
2444
|
|
|
2331
2445
|
'io.flow.stripe.v0.models.payment_method_options_card': (): io.flow.stripe.v0.models.PaymentMethodOptionsCard => ({
|
|
@@ -2345,7 +2459,17 @@ const factories = {
|
|
|
2345
2459
|
|
|
2346
2460
|
'io.flow.stripe.v0.models.payment_method_options_form': (): io.flow.stripe.v0.models.PaymentMethodOptionsForm => ({
|
|
2347
2461
|
card: factories['io.flow.stripe.v0.models.payment_method_options_card_form'](),
|
|
2462
|
+
ideal: factories['io.flow.stripe.v0.models.payment_method_options_ideal_form'](),
|
|
2348
2463
|
klarna: factories['io.flow.stripe.v0.models.payment_method_options_klarna_form'](),
|
|
2464
|
+
bancontact: factories['io.flow.stripe.v0.models.payment_method_options_bancontact_form'](),
|
|
2465
|
+
}),
|
|
2466
|
+
|
|
2467
|
+
'io.flow.stripe.v0.models.payment_method_options_ideal': (): io.flow.stripe.v0.models.PaymentMethodOptionsIdeal => ({
|
|
2468
|
+
setup_future_usage: factories['io.flow.stripe.v0.enums.setup_future_usage'](),
|
|
2469
|
+
}),
|
|
2470
|
+
|
|
2471
|
+
'io.flow.stripe.v0.models.payment_method_options_ideal_form': (): io.flow.stripe.v0.models.PaymentMethodOptionsIdealForm => ({
|
|
2472
|
+
setup_future_usage: factories['io.flow.stripe.v0.enums.setup_future_usage'](),
|
|
2349
2473
|
}),
|
|
2350
2474
|
|
|
2351
2475
|
'io.flow.stripe.v0.models.payment_method_options_klarna': (): io.flow.stripe.v0.models.PaymentMethodOptionsKlarna => ({
|
|
@@ -2667,7 +2791,9 @@ const factories = {
|
|
|
2667
2791
|
'io.flow.stripe.v0.unions.payment_method_data': (): io.flow.stripe.v0.unions.PaymentMethodData => {
|
|
2668
2792
|
const f = faker.helpers.arrayElement([
|
|
2669
2793
|
() => factories['io.flow.stripe.v0.models.payment_method_data_card'](),
|
|
2794
|
+
() => factories['io.flow.stripe.v0.models.payment_method_data_ideal'](),
|
|
2670
2795
|
() => factories['io.flow.stripe.v0.models.payment_method_data_klarna'](),
|
|
2796
|
+
() => factories['io.flow.stripe.v0.models.payment_method_data_bancontact'](),
|
|
2671
2797
|
]);
|
|
2672
2798
|
|
|
2673
2799
|
return f();
|
|
@@ -2676,7 +2802,9 @@ const factories = {
|
|
|
2676
2802
|
'io.flow.stripe.v0.unions.payment_method_details': (): io.flow.stripe.v0.unions.PaymentMethodDetails => {
|
|
2677
2803
|
const f = faker.helpers.arrayElement([
|
|
2678
2804
|
() => factories['io.flow.stripe.v0.models.payment_method_details_card'](),
|
|
2805
|
+
() => factories['io.flow.stripe.v0.models.payment_method_details_ideal'](),
|
|
2679
2806
|
() => factories['io.flow.stripe.v0.models.payment_method_details_klarna'](),
|
|
2807
|
+
() => factories['io.flow.stripe.v0.models.payment_method_details_bancontact'](),
|
|
2680
2808
|
]);
|
|
2681
2809
|
|
|
2682
2810
|
return f();
|
|
@@ -2685,7 +2813,9 @@ const factories = {
|
|
|
2685
2813
|
'io.flow.stripe.v0.unions.payment_method_form': (): io.flow.stripe.v0.unions.PaymentMethodForm => {
|
|
2686
2814
|
const f = faker.helpers.arrayElement([
|
|
2687
2815
|
() => factories['io.flow.stripe.v0.models.payment_method_form_card'](),
|
|
2816
|
+
() => factories['io.flow.stripe.v0.models.payment_method_form_ideal'](),
|
|
2688
2817
|
() => factories['io.flow.stripe.v0.models.payment_method_form_klarna'](),
|
|
2818
|
+
() => factories['io.flow.stripe.v0.models.payment_method_form_bancontact'](),
|
|
2689
2819
|
]);
|
|
2690
2820
|
|
|
2691
2821
|
return f();
|
|
@@ -3030,6 +3160,8 @@ const factories = {
|
|
|
3030
3160
|
'notification_deleted_v2',
|
|
3031
3161
|
'manifested_label_upserted',
|
|
3032
3162
|
'manifested_label_deleted',
|
|
3163
|
+
'label_processing_modification_upserted',
|
|
3164
|
+
'label_processing_modification_deleted',
|
|
3033
3165
|
'local_item_upserted',
|
|
3034
3166
|
'local_item_deleted',
|
|
3035
3167
|
'merchant_application_upserted',
|
|
@@ -3425,6 +3557,7 @@ const factories = {
|
|
|
3425
3557
|
'order_missing_information',
|
|
3426
3558
|
'order_domestic',
|
|
3427
3559
|
'order_mismatched_currencies',
|
|
3560
|
+
'order_missing',
|
|
3428
3561
|
]),
|
|
3429
3562
|
|
|
3430
3563
|
'io.flow.v0.enums.payment_request_review_status': (): io.flow.v0.enums.PaymentRequestReviewStatus => faker.helpers.arrayElement(['pending', 'approved', 'rejected']),
|
|
@@ -3690,9 +3823,10 @@ const factories = {
|
|
|
3690
3823
|
'shipping_label_service',
|
|
3691
3824
|
'shipping_label_revenue_share',
|
|
3692
3825
|
'trueup',
|
|
3826
|
+
'trueup_base',
|
|
3827
|
+
'trueup_surcharge',
|
|
3693
3828
|
'carrier_charge',
|
|
3694
3829
|
'carrier_charge_revenue_share',
|
|
3695
|
-
'carrier_fee',
|
|
3696
3830
|
'platform_fee',
|
|
3697
3831
|
'tax',
|
|
3698
3832
|
'duty',
|
|
@@ -3704,9 +3838,10 @@ const factories = {
|
|
|
3704
3838
|
'order_service',
|
|
3705
3839
|
'virtual_card_capture',
|
|
3706
3840
|
'virtual_card_refund',
|
|
3841
|
+
'failed_payout',
|
|
3707
3842
|
]),
|
|
3708
3843
|
|
|
3709
|
-
'io.flow.v0.enums.trueup_source': (): io.flow.v0.enums.TrueupSource => faker.helpers.arrayElement(['flow', 'channel', 'dhl-parcel', 'dhl']),
|
|
3844
|
+
'io.flow.v0.enums.trueup_source': (): io.flow.v0.enums.TrueupSource => faker.helpers.arrayElement(['flow', 'channel', 'dhl-parcel', 'dhl', 'ups']),
|
|
3710
3845
|
|
|
3711
3846
|
'io.flow.v0.enums.trueup_surcharge_type': (): io.flow.v0.enums.TrueupSurchargeType => faker.helpers.arrayElement([
|
|
3712
3847
|
'fuel',
|
|
@@ -3720,6 +3855,12 @@ const factories = {
|
|
|
3720
3855
|
'eei_filing',
|
|
3721
3856
|
'fixed_ddp',
|
|
3722
3857
|
'fixed_currency_conversion',
|
|
3858
|
+
'prohibited_item',
|
|
3859
|
+
'undeliverable_shipment',
|
|
3860
|
+
'signature_required',
|
|
3861
|
+
'direct_delivery',
|
|
3862
|
+
'saturday_stop',
|
|
3863
|
+
'residential_extended_area_pickup',
|
|
3723
3864
|
]),
|
|
3724
3865
|
|
|
3725
3866
|
'io.flow.v0.enums.unit_of_length': (): io.flow.v0.enums.UnitOfLength => faker.helpers.arrayElement(['millimeter', 'centimeter', 'inch', 'foot', 'meter']),
|
|
@@ -8254,6 +8395,29 @@ const factories = {
|
|
|
8254
8395
|
number: factories.string(),
|
|
8255
8396
|
}),
|
|
8256
8397
|
|
|
8398
|
+
'io.flow.v0.models.label_processing_modification': (): io.flow.v0.models.LabelProcessingModification => ({
|
|
8399
|
+
id: factories.string(),
|
|
8400
|
+
modifications: arrayOf(() => factories.string()),
|
|
8401
|
+
destination: factories['io.flow.v0.models.shipping_address'](),
|
|
8402
|
+
destination_provided_to_carrier: factories['io.flow.v0.models.shipping_address'](),
|
|
8403
|
+
}),
|
|
8404
|
+
|
|
8405
|
+
'io.flow.v0.models.label_processing_modification_deleted': (): io.flow.v0.models.LabelProcessingModificationDeleted => ({
|
|
8406
|
+
discriminator: 'label_processing_modification_deleted',
|
|
8407
|
+
event_id: factories.string(),
|
|
8408
|
+
timestamp: factories.date_time_iso_8601(),
|
|
8409
|
+
organization: factories.string(),
|
|
8410
|
+
id: factories.string(),
|
|
8411
|
+
}),
|
|
8412
|
+
|
|
8413
|
+
'io.flow.v0.models.label_processing_modification_upserted': (): io.flow.v0.models.LabelProcessingModificationUpserted => ({
|
|
8414
|
+
discriminator: 'label_processing_modification_upserted',
|
|
8415
|
+
event_id: factories.string(),
|
|
8416
|
+
timestamp: factories.date_time_iso_8601(),
|
|
8417
|
+
organization: factories.string(),
|
|
8418
|
+
label_processing_modification: factories['io.flow.v0.models.label_processing_modification'](),
|
|
8419
|
+
}),
|
|
8420
|
+
|
|
8257
8421
|
'io.flow.v0.models.label_reference': (): io.flow.v0.models.LabelReference => ({
|
|
8258
8422
|
id: factories.string(),
|
|
8259
8423
|
}),
|
|
@@ -10501,6 +10665,15 @@ const factories = {
|
|
|
10501
10665
|
processor: factories.string(),
|
|
10502
10666
|
}),
|
|
10503
10667
|
|
|
10668
|
+
'io.flow.v0.models.payment_processor_transaction_details_apm': (): io.flow.v0.models.PaymentProcessorTransactionDetailsApm => ({
|
|
10669
|
+
discriminator: 'apm',
|
|
10670
|
+
transaction_identifier: factories.string(),
|
|
10671
|
+
capture_identifier: factories.string(),
|
|
10672
|
+
method_type: factories.string(),
|
|
10673
|
+
result_status: factories.string(),
|
|
10674
|
+
reason_code: factories.string(),
|
|
10675
|
+
}),
|
|
10676
|
+
|
|
10504
10677
|
'io.flow.v0.models.payment_processor_transaction_details_card': (): io.flow.v0.models.PaymentProcessorTransactionDetailsCard => ({
|
|
10505
10678
|
discriminator: 'card',
|
|
10506
10679
|
transaction_identifier: factories.string(),
|
|
@@ -10588,6 +10761,11 @@ const factories = {
|
|
|
10588
10761
|
billing: factories['io.flow.v0.models.payment_request_billing'](),
|
|
10589
10762
|
}),
|
|
10590
10763
|
|
|
10764
|
+
'io.flow.v0.models.payment_request_cancellation_reason_order_missing': (): io.flow.v0.models.PaymentRequestCancellationReasonOrderMissing => ({
|
|
10765
|
+
type: 'order_missing',
|
|
10766
|
+
description: factories.string(),
|
|
10767
|
+
}),
|
|
10768
|
+
|
|
10591
10769
|
'io.flow.v0.models.payment_request_deleted': (): io.flow.v0.models.PaymentRequestDeleted => ({
|
|
10592
10770
|
discriminator: 'payment_request_deleted',
|
|
10593
10771
|
event_id: factories.string(),
|
|
@@ -10728,6 +10906,7 @@ const factories = {
|
|
|
10728
10906
|
'io.flow.v0.models.paypal_authorization_details': (): io.flow.v0.models.PaypalAuthorizationDetails => ({
|
|
10729
10907
|
discriminator: 'paypal_authorization_details',
|
|
10730
10908
|
payment_id: factories.string(),
|
|
10909
|
+
internal_payment_id: factories.string(),
|
|
10731
10910
|
payment_method: factories.string(),
|
|
10732
10911
|
payment_state: factories.string(),
|
|
10733
10912
|
payer_id: factories.string(),
|
|
@@ -11724,6 +11903,11 @@ const factories = {
|
|
|
11724
11903
|
status: factories['io.flow.v0.enums.availability_status'](),
|
|
11725
11904
|
}),
|
|
11726
11905
|
|
|
11906
|
+
'io.flow.v0.models.rejection_put_form': (): io.flow.v0.models.RejectionPutForm => ({
|
|
11907
|
+
reason: factories['io.flow.v0.enums.merchant_rejected_reason'](),
|
|
11908
|
+
description: factories.string(),
|
|
11909
|
+
}),
|
|
11910
|
+
|
|
11727
11911
|
'io.flow.v0.models.remote_area_by_weight_service_fee': (): io.flow.v0.models.RemoteAreaByWeightServiceFee => ({
|
|
11728
11912
|
discriminator: 'remote_area_by_weight_service_fee',
|
|
11729
11913
|
amount: factories['io.flow.v0.models.money'](),
|
|
@@ -13647,21 +13831,11 @@ const factories = {
|
|
|
13647
13831
|
outbound: factories['io.flow.v0.models.transaction_metadata_outbound_transaction'](),
|
|
13648
13832
|
}),
|
|
13649
13833
|
|
|
13650
|
-
'io.flow.v0.models.transaction_metadata_carrier_fee': (): io.flow.v0.models.TransactionMetadataCarrierFee => ({
|
|
13651
|
-
discriminator: 'carrier_fee',
|
|
13652
|
-
outbound: factories['io.flow.v0.models.transaction_metadata_outbound_transaction'](),
|
|
13653
|
-
estimate: factories['io.flow.v0.models.transaction_metadata_carrier_fee_data'](),
|
|
13654
|
-
actual: factories['io.flow.v0.models.transaction_metadata_carrier_fee_data'](),
|
|
13655
|
-
}),
|
|
13656
|
-
|
|
13657
|
-
'io.flow.v0.models.transaction_metadata_carrier_fee_data': (): io.flow.v0.models.TransactionMetadataCarrierFeeData => ({
|
|
13658
|
-
surcharges: arrayOf(() => factories['io.flow.v0.models.trueup_label_surcharge']()),
|
|
13659
|
-
}),
|
|
13660
|
-
|
|
13661
13834
|
'io.flow.v0.models.transaction_metadata_channel': (): io.flow.v0.models.TransactionMetadataChannel => ({
|
|
13662
13835
|
discriminator: 'channel',
|
|
13663
13836
|
method: factories.string(),
|
|
13664
13837
|
card: factories['io.flow.v0.models.transaction_metadata_channel_card_metadata'](),
|
|
13838
|
+
organization_transaction: factories['io.flow.v0.models.transaction_metadata_channel_organization_transaction'](),
|
|
13665
13839
|
}),
|
|
13666
13840
|
|
|
13667
13841
|
'io.flow.v0.models.transaction_metadata_channel_card_metadata': (): io.flow.v0.models.TransactionMetadataChannelCardMetadata => ({
|
|
@@ -13674,6 +13848,20 @@ const factories = {
|
|
|
13674
13848
|
country: factories.string(),
|
|
13675
13849
|
}),
|
|
13676
13850
|
|
|
13851
|
+
'io.flow.v0.models.transaction_metadata_channel_organization_transaction': (): io.flow.v0.models.TransactionMetadataChannelOrganizationTransaction => ({
|
|
13852
|
+
id: factories.string(),
|
|
13853
|
+
metadata: factories['io.flow.v0.models.transaction_metadata_payment_transaction'](),
|
|
13854
|
+
}),
|
|
13855
|
+
|
|
13856
|
+
'io.flow.v0.models.transaction_metadata_failed_payout': (): io.flow.v0.models.TransactionMetadataFailedPayout => ({
|
|
13857
|
+
discriminator: 'failed_payout',
|
|
13858
|
+
failed_payout: factories['io.flow.v0.models.transaction_metadata_failed_payout_reference'](),
|
|
13859
|
+
}),
|
|
13860
|
+
|
|
13861
|
+
'io.flow.v0.models.transaction_metadata_failed_payout_reference': (): io.flow.v0.models.TransactionMetadataFailedPayoutReference => ({
|
|
13862
|
+
id: factories.string(),
|
|
13863
|
+
}),
|
|
13864
|
+
|
|
13677
13865
|
'io.flow.v0.models.transaction_metadata_manual': (): io.flow.v0.models.TransactionMetadataManual => ({
|
|
13678
13866
|
discriminator: 'manual',
|
|
13679
13867
|
description: factories.string(),
|
|
@@ -13691,6 +13879,7 @@ const factories = {
|
|
|
13691
13879
|
|
|
13692
13880
|
'io.flow.v0.models.transaction_metadata_payment_transaction': (): io.flow.v0.models.TransactionMetadataPaymentTransaction => ({
|
|
13693
13881
|
discriminator: 'payment_transaction',
|
|
13882
|
+
id: factories.string(),
|
|
13694
13883
|
key: factories.string(),
|
|
13695
13884
|
}),
|
|
13696
13885
|
|
|
@@ -13713,6 +13902,22 @@ const factories = {
|
|
|
13713
13902
|
actual: factories['io.flow.v0.models.transaction_metadata_trueup_data'](),
|
|
13714
13903
|
}),
|
|
13715
13904
|
|
|
13905
|
+
'io.flow.v0.models.transaction_metadata_trueup_base': (): io.flow.v0.models.TransactionMetadataTrueupBase => ({
|
|
13906
|
+
discriminator: 'trueup_base',
|
|
13907
|
+
original: factories['io.flow.v0.models.transaction_metadata_original_transaction'](),
|
|
13908
|
+
estimate: factories['io.flow.v0.models.transaction_metadata_trueup_base_data'](),
|
|
13909
|
+
actual: factories['io.flow.v0.models.transaction_metadata_trueup_base_data'](),
|
|
13910
|
+
}),
|
|
13911
|
+
|
|
13912
|
+
'io.flow.v0.models.transaction_metadata_trueup_base_data': (): io.flow.v0.models.TransactionMetadataTrueupBaseData => ({
|
|
13913
|
+
source: factories['io.flow.v0.enums.trueup_source'](),
|
|
13914
|
+
weights: factories['io.flow.v0.models.trueup_label_weights'](),
|
|
13915
|
+
units: factories['io.flow.v0.models.trueup_label_units'](),
|
|
13916
|
+
base: factories['io.flow.v0.models.trueup_label_base_v2'](),
|
|
13917
|
+
fuel: factories['io.flow.v0.models.trueup_label_fuel'](),
|
|
13918
|
+
total: factories.decimal(),
|
|
13919
|
+
}),
|
|
13920
|
+
|
|
13716
13921
|
'io.flow.v0.models.transaction_metadata_trueup_data': (): io.flow.v0.models.TransactionMetadataTrueupData => ({
|
|
13717
13922
|
source: factories['io.flow.v0.enums.trueup_source'](),
|
|
13718
13923
|
units: factories['io.flow.v0.models.trueup_label_units'](),
|
|
@@ -13723,6 +13928,18 @@ const factories = {
|
|
|
13723
13928
|
dimensional: factories['io.flow.v0.models.dimensional_weight'](),
|
|
13724
13929
|
}),
|
|
13725
13930
|
|
|
13931
|
+
'io.flow.v0.models.transaction_metadata_trueup_surcharge': (): io.flow.v0.models.TransactionMetadataTrueupSurcharge => ({
|
|
13932
|
+
discriminator: 'trueup_surcharge',
|
|
13933
|
+
original: factories['io.flow.v0.models.transaction_metadata_original_transaction'](),
|
|
13934
|
+
estimate: factories['io.flow.v0.models.transaction_metadata_trueup_surcharge_data'](),
|
|
13935
|
+
actual: factories['io.flow.v0.models.transaction_metadata_trueup_surcharge_data'](),
|
|
13936
|
+
}),
|
|
13937
|
+
|
|
13938
|
+
'io.flow.v0.models.transaction_metadata_trueup_surcharge_data': (): io.flow.v0.models.TransactionMetadataTrueupSurchargeData => ({
|
|
13939
|
+
source: factories['io.flow.v0.enums.trueup_source'](),
|
|
13940
|
+
surcharge: factories['io.flow.v0.models.trueup_label_surcharge'](),
|
|
13941
|
+
}),
|
|
13942
|
+
|
|
13726
13943
|
'io.flow.v0.models.transaction_network_details_card': (): io.flow.v0.models.TransactionNetworkDetailsCard => ({
|
|
13727
13944
|
network_transaction_id: factories.string(),
|
|
13728
13945
|
network: factories['io.flow.v0.enums.card_type'](),
|
|
@@ -13760,6 +13977,20 @@ const factories = {
|
|
|
13760
13977
|
weight: factories.decimal(),
|
|
13761
13978
|
}),
|
|
13762
13979
|
|
|
13980
|
+
'io.flow.v0.models.trueup_label_base_v2': (): io.flow.v0.models.TrueupLabelBaseV2 => ({
|
|
13981
|
+
amount: factories.decimal(),
|
|
13982
|
+
}),
|
|
13983
|
+
|
|
13984
|
+
'io.flow.v0.models.trueup_label_base_weight': (): io.flow.v0.models.TrueupLabelBaseWeight => ({
|
|
13985
|
+
weight: factories.decimal(),
|
|
13986
|
+
}),
|
|
13987
|
+
|
|
13988
|
+
'io.flow.v0.models.trueup_label_fuel': (): io.flow.v0.models.TrueupLabelFuel => ({
|
|
13989
|
+
amount: factories.decimal(),
|
|
13990
|
+
percentage: factories.decimal(),
|
|
13991
|
+
per_weight_unit: factories.decimal(),
|
|
13992
|
+
}),
|
|
13993
|
+
|
|
13763
13994
|
'io.flow.v0.models.trueup_label_surcharge': (): io.flow.v0.models.TrueupLabelSurcharge => ({
|
|
13764
13995
|
amount: factories.decimal(),
|
|
13765
13996
|
type: factories['io.flow.v0.enums.trueup_surcharge_type'](),
|
|
@@ -13772,6 +14003,12 @@ const factories = {
|
|
|
13772
14003
|
length: factories['io.flow.v0.enums.unit_of_length'](),
|
|
13773
14004
|
}),
|
|
13774
14005
|
|
|
14006
|
+
'io.flow.v0.models.trueup_label_weights': (): io.flow.v0.models.TrueupLabelWeights => ({
|
|
14007
|
+
base: factories['io.flow.v0.models.trueup_label_base_weight'](),
|
|
14008
|
+
dead: factories['io.flow.v0.models.dead_weight'](),
|
|
14009
|
+
dimensional: factories['io.flow.v0.models.dimensional_weight'](),
|
|
14010
|
+
}),
|
|
14011
|
+
|
|
13775
14012
|
'io.flow.v0.models.ultimate_beneficiary_owner': (): io.flow.v0.models.UltimateBeneficiaryOwner => ({
|
|
13776
14013
|
name: factories.string(),
|
|
13777
14014
|
dob: factories.date_time_iso_8601(),
|
|
@@ -14400,6 +14637,8 @@ const factories = {
|
|
|
14400
14637
|
() => factories['io.flow.v0.models.notification_deleted_v2'](),
|
|
14401
14638
|
() => factories['io.flow.v0.models.manifested_label_upserted'](),
|
|
14402
14639
|
() => factories['io.flow.v0.models.manifested_label_deleted'](),
|
|
14640
|
+
() => factories['io.flow.v0.models.label_processing_modification_upserted'](),
|
|
14641
|
+
() => factories['io.flow.v0.models.label_processing_modification_deleted'](),
|
|
14403
14642
|
() => factories['io.flow.v0.models.local_item_upserted'](),
|
|
14404
14643
|
() => factories['io.flow.v0.models.local_item_deleted'](),
|
|
14405
14644
|
() => factories['io.flow.v0.models.merchant_application_upserted'](),
|
|
@@ -14916,6 +15155,15 @@ const factories = {
|
|
|
14916
15155
|
'io.flow.v0.unions.payment_processor_transaction_details': (): io.flow.v0.unions.PaymentProcessorTransactionDetails => {
|
|
14917
15156
|
const f = faker.helpers.arrayElement([
|
|
14918
15157
|
() => factories['io.flow.v0.models.payment_processor_transaction_details_card'](),
|
|
15158
|
+
() => factories['io.flow.v0.models.payment_processor_transaction_details_apm'](),
|
|
15159
|
+
]);
|
|
15160
|
+
|
|
15161
|
+
return f();
|
|
15162
|
+
},
|
|
15163
|
+
|
|
15164
|
+
'io.flow.v0.unions.payment_request_cancellation_reason': (): io.flow.v0.unions.PaymentRequestCancellationReason => {
|
|
15165
|
+
const f = faker.helpers.arrayElement([
|
|
15166
|
+
() => factories['io.flow.v0.models.payment_request_cancellation_reason_order_missing'](),
|
|
14919
15167
|
]);
|
|
14920
15168
|
|
|
14921
15169
|
return f();
|
|
@@ -15222,9 +15470,11 @@ const factories = {
|
|
|
15222
15470
|
() => factories['io.flow.v0.models.transaction_metadata_shipping_label'](),
|
|
15223
15471
|
() => factories['io.flow.v0.models.transaction_metadata_channel'](),
|
|
15224
15472
|
() => factories['io.flow.v0.models.transaction_metadata_trueup'](),
|
|
15473
|
+
() => factories['io.flow.v0.models.transaction_metadata_trueup_base'](),
|
|
15474
|
+
() => factories['io.flow.v0.models.transaction_metadata_trueup_surcharge'](),
|
|
15225
15475
|
() => factories['io.flow.v0.models.transaction_metadata_carrier_charge'](),
|
|
15226
|
-
() => factories['io.flow.v0.models.transaction_metadata_carrier_fee'](),
|
|
15227
15476
|
() => factories['io.flow.v0.models.transaction_metadata_manual'](),
|
|
15477
|
+
() => factories['io.flow.v0.models.transaction_metadata_failed_payout'](),
|
|
15228
15478
|
() => factories['io.flow.v0.models.transaction_metadata_payment_transaction'](),
|
|
15229
15479
|
]);
|
|
15230
15480
|
|
|
@@ -16003,6 +16253,9 @@ export const makeLabelDeletedV2 = () => factories['io.flow.v0.models.label_delet
|
|
|
16003
16253
|
export const makeLabelFormatDeleted = () => factories['io.flow.v0.models.label_format_deleted']();
|
|
16004
16254
|
export const makeLabelFormatUpserted = () => factories['io.flow.v0.models.label_format_upserted']();
|
|
16005
16255
|
export const makeLabelOrderSummary = () => factories['io.flow.v0.models.label_order_summary']();
|
|
16256
|
+
export const makeLabelProcessingModification = () => factories['io.flow.v0.models.label_processing_modification']();
|
|
16257
|
+
export const makeLabelProcessingModificationDeleted = () => factories['io.flow.v0.models.label_processing_modification_deleted']();
|
|
16258
|
+
export const makeLabelProcessingModificationUpserted = () => factories['io.flow.v0.models.label_processing_modification_upserted']();
|
|
16006
16259
|
export const makeLabelReference = () => factories['io.flow.v0.models.label_reference']();
|
|
16007
16260
|
export const makeLabelRequestMethod = () => factories['io.flow.v0.enums.label_request_method']();
|
|
16008
16261
|
export const makeLabelSurcharge = () => factories['io.flow.v0.models.label_surcharge']();
|
|
@@ -16388,6 +16641,7 @@ export const makePaymentProcessorAccountReference = () => factories['io.flow.v0.
|
|
|
16388
16641
|
export const makePaymentProcessorIdentifier = () => factories['io.flow.v0.models.payment_processor_identifier']();
|
|
16389
16642
|
export const makePaymentProcessorReference = () => factories['io.flow.v0.models.payment_processor_reference']();
|
|
16390
16643
|
export const makePaymentProcessorTransactionDetails = () => factories['io.flow.v0.unions.payment_processor_transaction_details']();
|
|
16644
|
+
export const makePaymentProcessorTransactionDetailsApm = () => factories['io.flow.v0.models.payment_processor_transaction_details_apm']();
|
|
16391
16645
|
export const makePaymentProcessorTransactionDetailsCard = () => factories['io.flow.v0.models.payment_processor_transaction_details_card']();
|
|
16392
16646
|
export const makePaymentReference = () => factories['io.flow.v0.models.payment_reference']();
|
|
16393
16647
|
export const makePaymentRefund = () => factories['io.flow.v0.models.payment_refund']();
|
|
@@ -16399,6 +16653,8 @@ export const makePaymentRequestBillingCurrencyRate = () => factories['io.flow.v0
|
|
|
16399
16653
|
export const makePaymentRequestBillingFees = () => factories['io.flow.v0.models.payment_request_billing_fees']();
|
|
16400
16654
|
export const makePaymentRequestBundle = () => factories['io.flow.v0.models.payment_request_bundle']();
|
|
16401
16655
|
export const makePaymentRequestBundleForm = () => factories['io.flow.v0.models.payment_request_bundle_form']();
|
|
16656
|
+
export const makePaymentRequestCancellationReason = () => factories['io.flow.v0.unions.payment_request_cancellation_reason']();
|
|
16657
|
+
export const makePaymentRequestCancellationReasonOrderMissing = () => factories['io.flow.v0.models.payment_request_cancellation_reason_order_missing']();
|
|
16402
16658
|
export const makePaymentRequestDeleted = () => factories['io.flow.v0.models.payment_request_deleted']();
|
|
16403
16659
|
export const makePaymentRequestForm = () => factories['io.flow.v0.models.payment_request_form']();
|
|
16404
16660
|
export const makePaymentRequestReference = () => factories['io.flow.v0.models.payment_request_reference']();
|
|
@@ -16584,6 +16840,7 @@ export const makeRegionReference = () => factories['io.flow.v0.models.region_ref
|
|
|
16584
16840
|
export const makeRegionSetting = () => factories['io.flow.v0.models.region_setting']();
|
|
16585
16841
|
export const makeRegionSettingForm = () => factories['io.flow.v0.models.region_setting_form']();
|
|
16586
16842
|
export const makeRegionType = () => factories['io.flow.v0.enums.region_type']();
|
|
16843
|
+
export const makeRejectionPutForm = () => factories['io.flow.v0.models.rejection_put_form']();
|
|
16587
16844
|
export const makeRemoteAreaByWeightServiceFee = () => factories['io.flow.v0.models.remote_area_by_weight_service_fee']();
|
|
16588
16845
|
export const makeRemoteAreaRatecardFee = () => factories['io.flow.v0.models.remote_area_ratecard_fee']();
|
|
16589
16846
|
export const makeRemoteAreaServiceFee = () => factories['io.flow.v0.models.remote_area_service_fee']();
|
|
@@ -16908,11 +17165,12 @@ export const makeTransactionDetails = () => factories['io.flow.v0.unions.transac
|
|
|
16908
17165
|
export const makeTransactionDetailsCard = () => factories['io.flow.v0.models.transaction_details_card']();
|
|
16909
17166
|
export const makeTransactionMetadata = () => factories['io.flow.v0.unions.transaction_metadata']();
|
|
16910
17167
|
export const makeTransactionMetadataCarrierCharge = () => factories['io.flow.v0.models.transaction_metadata_carrier_charge']();
|
|
16911
|
-
export const makeTransactionMetadataCarrierFee = () => factories['io.flow.v0.models.transaction_metadata_carrier_fee']();
|
|
16912
|
-
export const makeTransactionMetadataCarrierFeeData = () => factories['io.flow.v0.models.transaction_metadata_carrier_fee_data']();
|
|
16913
17168
|
export const makeTransactionMetadataChannel = () => factories['io.flow.v0.models.transaction_metadata_channel']();
|
|
16914
17169
|
export const makeTransactionMetadataChannelCardMetadata = () => factories['io.flow.v0.models.transaction_metadata_channel_card_metadata']();
|
|
16915
17170
|
export const makeTransactionMetadataChannelCardMetadataIssuerSummary = () => factories['io.flow.v0.models.transaction_metadata_channel_card_metadata_issuer_summary']();
|
|
17171
|
+
export const makeTransactionMetadataChannelOrganizationTransaction = () => factories['io.flow.v0.models.transaction_metadata_channel_organization_transaction']();
|
|
17172
|
+
export const makeTransactionMetadataFailedPayout = () => factories['io.flow.v0.models.transaction_metadata_failed_payout']();
|
|
17173
|
+
export const makeTransactionMetadataFailedPayoutReference = () => factories['io.flow.v0.models.transaction_metadata_failed_payout_reference']();
|
|
16916
17174
|
export const makeTransactionMetadataManual = () => factories['io.flow.v0.models.transaction_metadata_manual']();
|
|
16917
17175
|
export const makeTransactionMetadataOriginalTransaction = () => factories['io.flow.v0.models.transaction_metadata_original_transaction']();
|
|
16918
17176
|
export const makeTransactionMetadataOutboundTransaction = () => factories['io.flow.v0.models.transaction_metadata_outbound_transaction']();
|
|
@@ -16920,7 +17178,11 @@ export const makeTransactionMetadataPaymentTransaction = () => factories['io.flo
|
|
|
16920
17178
|
export const makeTransactionMetadataShippingLabel = () => factories['io.flow.v0.models.transaction_metadata_shipping_label']();
|
|
16921
17179
|
export const makeTransactionMetadataShippingLabelCarrier = () => factories['io.flow.v0.models.transaction_metadata_shipping_label_carrier']();
|
|
16922
17180
|
export const makeTransactionMetadataTrueup = () => factories['io.flow.v0.models.transaction_metadata_trueup']();
|
|
17181
|
+
export const makeTransactionMetadataTrueupBase = () => factories['io.flow.v0.models.transaction_metadata_trueup_base']();
|
|
17182
|
+
export const makeTransactionMetadataTrueupBaseData = () => factories['io.flow.v0.models.transaction_metadata_trueup_base_data']();
|
|
16923
17183
|
export const makeTransactionMetadataTrueupData = () => factories['io.flow.v0.models.transaction_metadata_trueup_data']();
|
|
17184
|
+
export const makeTransactionMetadataTrueupSurcharge = () => factories['io.flow.v0.models.transaction_metadata_trueup_surcharge']();
|
|
17185
|
+
export const makeTransactionMetadataTrueupSurchargeData = () => factories['io.flow.v0.models.transaction_metadata_trueup_surcharge_data']();
|
|
16924
17186
|
export const makeTransactionNetworkDetailsCard = () => factories['io.flow.v0.models.transaction_network_details_card']();
|
|
16925
17187
|
export const makeTransactionReference = () => factories['io.flow.v0.models.transaction_reference']();
|
|
16926
17188
|
export const makeTransactionSource = () => factories['io.flow.v0.enums.transaction_source']();
|
|
@@ -16928,8 +17190,12 @@ export const makeTransactionUpserted = () => factories['io.flow.v0.models.transa
|
|
|
16928
17190
|
export const makeTransitEstimate = () => factories['io.flow.v0.models.transit_estimate']();
|
|
16929
17191
|
export const makeTransitWindow = () => factories['io.flow.v0.models.transit_window']();
|
|
16930
17192
|
export const makeTrueupLabelBase = () => factories['io.flow.v0.models.trueup_label_base']();
|
|
17193
|
+
export const makeTrueupLabelBaseV2 = () => factories['io.flow.v0.models.trueup_label_base_v2']();
|
|
17194
|
+
export const makeTrueupLabelBaseWeight = () => factories['io.flow.v0.models.trueup_label_base_weight']();
|
|
17195
|
+
export const makeTrueupLabelFuel = () => factories['io.flow.v0.models.trueup_label_fuel']();
|
|
16931
17196
|
export const makeTrueupLabelSurcharge = () => factories['io.flow.v0.models.trueup_label_surcharge']();
|
|
16932
17197
|
export const makeTrueupLabelUnits = () => factories['io.flow.v0.models.trueup_label_units']();
|
|
17198
|
+
export const makeTrueupLabelWeights = () => factories['io.flow.v0.models.trueup_label_weights']();
|
|
16933
17199
|
export const makeTrueupSource = () => factories['io.flow.v0.enums.trueup_source']();
|
|
16934
17200
|
export const makeTrueupSurchargeType = () => factories['io.flow.v0.enums.trueup_surcharge_type']();
|
|
16935
17201
|
export const makeUltimateBeneficiaryOwner = () => factories['io.flow.v0.models.ultimate_beneficiary_owner']();
|