@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/dist/esm/api.js
CHANGED
|
@@ -511,6 +511,7 @@ var factories = {
|
|
|
511
511
|
published_at: factories.date_time_iso_8601(),
|
|
512
512
|
created_at: factories.date_time_iso_8601(),
|
|
513
513
|
updated_at: factories.date_time_iso_8601(),
|
|
514
|
+
has_variants_that_requires_components: factories.boolean(),
|
|
514
515
|
}); },
|
|
515
516
|
'io.flow.shopify.external.v0.models.product_delete': function () { return ({
|
|
516
517
|
id: factories.long(),
|
|
@@ -1170,6 +1171,43 @@ var factories = {
|
|
|
1170
1171
|
}); },
|
|
1171
1172
|
'io.flow.stripe.v0.enums.account_type': function () { return faker.helpers.arrayElement(['platform', 'custom', 'standard', 'express']); },
|
|
1172
1173
|
'io.flow.stripe.v0.enums.apple_pay_type': function () { return faker.helpers.arrayElement(['apple_pay', 'apple_pay_later']); },
|
|
1174
|
+
'io.flow.stripe.v0.enums.bank_ideal': function () { return faker.helpers.arrayElement([
|
|
1175
|
+
'abn_amro',
|
|
1176
|
+
'asn_bank',
|
|
1177
|
+
'bunq',
|
|
1178
|
+
'handelsbanken',
|
|
1179
|
+
'ing',
|
|
1180
|
+
'knab',
|
|
1181
|
+
'moneyou',
|
|
1182
|
+
'n26',
|
|
1183
|
+
'nn',
|
|
1184
|
+
'rabobank',
|
|
1185
|
+
'regiobank',
|
|
1186
|
+
'revolut',
|
|
1187
|
+
'sns_bank',
|
|
1188
|
+
'triodos_bank',
|
|
1189
|
+
'van_lanschot',
|
|
1190
|
+
'yoursafe',
|
|
1191
|
+
]); },
|
|
1192
|
+
'io.flow.stripe.v0.enums.bic_ideal': function () { return faker.helpers.arrayElement([
|
|
1193
|
+
'ABNANL2A',
|
|
1194
|
+
'ASNBNL21',
|
|
1195
|
+
'BITSNL2A',
|
|
1196
|
+
'BUNQNL2A',
|
|
1197
|
+
'FVLBNL22',
|
|
1198
|
+
'HANDNL2A',
|
|
1199
|
+
'INGBNL2A',
|
|
1200
|
+
'KNABNL2H',
|
|
1201
|
+
'MOYONL21',
|
|
1202
|
+
'NNBANL2G',
|
|
1203
|
+
'NTSBDEB1',
|
|
1204
|
+
'RABONL2U',
|
|
1205
|
+
'RBRBNL21',
|
|
1206
|
+
'REVOIE23',
|
|
1207
|
+
'REVOLT21',
|
|
1208
|
+
'SNSBNL2A',
|
|
1209
|
+
'TRIONL2U',
|
|
1210
|
+
]); },
|
|
1173
1211
|
'io.flow.stripe.v0.enums.cancellation_reason': function () { return faker.helpers.arrayElement([
|
|
1174
1212
|
'abandoned',
|
|
1175
1213
|
'automatic',
|
|
@@ -1384,9 +1422,10 @@ var factories = {
|
|
|
1384
1422
|
'succeeded',
|
|
1385
1423
|
]); },
|
|
1386
1424
|
'io.flow.stripe.v0.enums.payment_method_category_klarna': function () { return faker.helpers.arrayElement(['pay_later', 'pay_now', 'pay_with_financing', 'pay_in_installments']); },
|
|
1387
|
-
'io.flow.stripe.v0.enums.payment_method_type': function () { return faker.helpers.arrayElement(['card', 'card_present', 'klarna']); },
|
|
1425
|
+
'io.flow.stripe.v0.enums.payment_method_type': function () { return faker.helpers.arrayElement(['card', 'card_present', 'ideal', 'klarna', 'bancontact']); },
|
|
1388
1426
|
'io.flow.stripe.v0.enums.payment_outcome_type': function () { return faker.helpers.arrayElement(['authorized', 'manual_review', 'issuer_declined', 'blocked', 'invalid']); },
|
|
1389
1427
|
'io.flow.stripe.v0.enums.payment_status': function () { return faker.helpers.arrayElement(['succeeded', 'pending', 'failed']); },
|
|
1428
|
+
'io.flow.stripe.v0.enums.preferred_language_bancontact': function () { return faker.helpers.arrayElement(['de', 'en', 'fr', 'nl']); },
|
|
1390
1429
|
'io.flow.stripe.v0.enums.preferred_locale_klarna': function () { return faker.helpers.arrayElement([
|
|
1391
1430
|
'de-AT',
|
|
1392
1431
|
'en-AT',
|
|
@@ -1911,8 +1950,10 @@ var factories = {
|
|
|
1911
1950
|
id: factories.string(),
|
|
1912
1951
|
object: factories.string(),
|
|
1913
1952
|
billing_details: factories['io.flow.stripe.v0.models.payment_method_billing_details'](),
|
|
1953
|
+
bancontact: factories.object(),
|
|
1914
1954
|
card: factories['io.flow.stripe.v0.models.payment_method_card_details'](),
|
|
1915
1955
|
card_present: factories.object(),
|
|
1956
|
+
ideal: factories.object(),
|
|
1916
1957
|
klarna: factories.object(),
|
|
1917
1958
|
created: factories.long(),
|
|
1918
1959
|
customer: factories.string(),
|
|
@@ -1943,18 +1984,43 @@ var factories = {
|
|
|
1943
1984
|
number: factories.string(),
|
|
1944
1985
|
cvc: factories.string(),
|
|
1945
1986
|
}); },
|
|
1987
|
+
'io.flow.stripe.v0.models.payment_method_data_bancontact': function () { return ({
|
|
1988
|
+
type: 'bancontact',
|
|
1989
|
+
billing_details: factories['io.flow.stripe.v0.models.payment_method_billing_details'](),
|
|
1990
|
+
metadata: factories.object(),
|
|
1991
|
+
}); },
|
|
1946
1992
|
'io.flow.stripe.v0.models.payment_method_data_card': function () { return ({
|
|
1947
1993
|
type: 'card',
|
|
1948
1994
|
billing_details: factories['io.flow.stripe.v0.models.payment_method_billing_details'](),
|
|
1949
1995
|
metadata: factories.object(),
|
|
1950
1996
|
card: factories['io.flow.stripe.v0.models.payment_method_card_form'](),
|
|
1951
1997
|
}); },
|
|
1998
|
+
'io.flow.stripe.v0.models.payment_method_data_ideal': function () { return ({
|
|
1999
|
+
type: 'ideal',
|
|
2000
|
+
billing_details: factories['io.flow.stripe.v0.models.payment_method_billing_details'](),
|
|
2001
|
+
metadata: factories.object(),
|
|
2002
|
+
ideal: factories['io.flow.stripe.v0.models.payment_method_ideal_form'](),
|
|
2003
|
+
}); },
|
|
1952
2004
|
'io.flow.stripe.v0.models.payment_method_data_klarna': function () { return ({
|
|
1953
2005
|
type: 'klarna',
|
|
1954
2006
|
billing_details: factories['io.flow.stripe.v0.models.payment_method_billing_details'](),
|
|
1955
2007
|
metadata: factories.object(),
|
|
1956
2008
|
klarna: factories['io.flow.stripe.v0.models.payment_method_klarna_form'](),
|
|
1957
2009
|
}); },
|
|
2010
|
+
'io.flow.stripe.v0.models.payment_method_details_bancontact': function () { return ({
|
|
2011
|
+
type: 'bancontact',
|
|
2012
|
+
bancontact: factories['io.flow.stripe.v0.models.payment_method_details_bancontact_information'](),
|
|
2013
|
+
}); },
|
|
2014
|
+
'io.flow.stripe.v0.models.payment_method_details_bancontact_information': function () { return ({
|
|
2015
|
+
bank_code: factories.string(),
|
|
2016
|
+
bank_name: factories.string(),
|
|
2017
|
+
bic: factories.string(),
|
|
2018
|
+
generated_sepa_debit: factories.string(),
|
|
2019
|
+
generated_sepa_debit_mandate: factories.string(),
|
|
2020
|
+
iban_last4: factories.string(),
|
|
2021
|
+
preferred_language: factories['io.flow.stripe.v0.enums.preferred_language_bancontact'](),
|
|
2022
|
+
verified_name: factories.string(),
|
|
2023
|
+
}); },
|
|
1958
2024
|
'io.flow.stripe.v0.models.payment_method_details_card': function () { return ({
|
|
1959
2025
|
type: 'card',
|
|
1960
2026
|
card: factories['io.flow.stripe.v0.models.payment_method_details_card_information'](),
|
|
@@ -1984,6 +2050,18 @@ var factories = {
|
|
|
1984
2050
|
multicapture: factories['io.flow.stripe.v0.models.multicapture'](),
|
|
1985
2051
|
overcapture: factories['io.flow.stripe.v0.models.overcapture'](),
|
|
1986
2052
|
}); },
|
|
2053
|
+
'io.flow.stripe.v0.models.payment_method_details_ideal': function () { return ({
|
|
2054
|
+
type: 'ideal',
|
|
2055
|
+
ideal: factories['io.flow.stripe.v0.models.payment_method_details_ideal_information'](),
|
|
2056
|
+
}); },
|
|
2057
|
+
'io.flow.stripe.v0.models.payment_method_details_ideal_information': function () { return ({
|
|
2058
|
+
bank: factories['io.flow.stripe.v0.enums.bank_ideal'](),
|
|
2059
|
+
bic: factories['io.flow.stripe.v0.enums.bic_ideal'](),
|
|
2060
|
+
generated_sepa_debit: factories.string(),
|
|
2061
|
+
generated_sepa_debit_mandate: factories.string(),
|
|
2062
|
+
iban_last4: factories.string(),
|
|
2063
|
+
verified_name: factories.string(),
|
|
2064
|
+
}); },
|
|
1987
2065
|
'io.flow.stripe.v0.models.payment_method_details_klarna': function () { return ({
|
|
1988
2066
|
type: 'klarna',
|
|
1989
2067
|
klarna: factories['io.flow.stripe.v0.models.payment_method_details_klarna_information'](),
|
|
@@ -1992,24 +2070,47 @@ var factories = {
|
|
|
1992
2070
|
payment_method_category: factories['io.flow.stripe.v0.enums.payment_method_category_klarna'](),
|
|
1993
2071
|
preferred_locale: factories['io.flow.stripe.v0.enums.preferred_locale_klarna'](),
|
|
1994
2072
|
}); },
|
|
2073
|
+
'io.flow.stripe.v0.models.payment_method_form_bancontact': function () { return ({
|
|
2074
|
+
type: 'bancontact',
|
|
2075
|
+
billing_details: factories['io.flow.stripe.v0.models.payment_method_billing_details'](),
|
|
2076
|
+
metadata: factories.object(),
|
|
2077
|
+
bancontact: factories.object(),
|
|
2078
|
+
}); },
|
|
1995
2079
|
'io.flow.stripe.v0.models.payment_method_form_card': function () { return ({
|
|
1996
2080
|
type: 'card',
|
|
1997
2081
|
billing_details: factories['io.flow.stripe.v0.models.payment_method_billing_details'](),
|
|
1998
2082
|
metadata: factories.object(),
|
|
1999
2083
|
card: factories['io.flow.stripe.v0.models.payment_method_card_form'](),
|
|
2000
2084
|
}); },
|
|
2085
|
+
'io.flow.stripe.v0.models.payment_method_form_ideal': function () { return ({
|
|
2086
|
+
type: 'ideal',
|
|
2087
|
+
billing_details: factories['io.flow.stripe.v0.models.payment_method_billing_details'](),
|
|
2088
|
+
metadata: factories.object(),
|
|
2089
|
+
ideal: factories['io.flow.stripe.v0.models.payment_method_ideal_form'](),
|
|
2090
|
+
}); },
|
|
2001
2091
|
'io.flow.stripe.v0.models.payment_method_form_klarna': function () { return ({
|
|
2002
2092
|
type: 'klarna',
|
|
2003
2093
|
billing_details: factories['io.flow.stripe.v0.models.payment_method_billing_details'](),
|
|
2004
2094
|
metadata: factories.object(),
|
|
2005
2095
|
klarna: factories['io.flow.stripe.v0.models.payment_method_klarna_form'](),
|
|
2006
2096
|
}); },
|
|
2097
|
+
'io.flow.stripe.v0.models.payment_method_ideal_form': function () { return ({
|
|
2098
|
+
bank: factories.string(),
|
|
2099
|
+
}); },
|
|
2007
2100
|
'io.flow.stripe.v0.models.payment_method_klarna_form': function () { return ({
|
|
2008
2101
|
dob: factories['io.flow.stripe.v0.models.klarna_dob_form'](),
|
|
2009
2102
|
}); },
|
|
2010
2103
|
'io.flow.stripe.v0.models.payment_method_options': function () { return ({
|
|
2011
2104
|
card: factories['io.flow.stripe.v0.models.payment_method_options_card'](),
|
|
2105
|
+
ideal: factories['io.flow.stripe.v0.models.payment_method_options_ideal'](),
|
|
2012
2106
|
klarna: factories['io.flow.stripe.v0.models.payment_method_options_klarna'](),
|
|
2107
|
+
bancontact: factories['io.flow.stripe.v0.models.payment_method_options_bancontact'](),
|
|
2108
|
+
}); },
|
|
2109
|
+
'io.flow.stripe.v0.models.payment_method_options_bancontact': function () { return ({
|
|
2110
|
+
preferred_language: factories['io.flow.stripe.v0.enums.preferred_language_bancontact'](),
|
|
2111
|
+
}); },
|
|
2112
|
+
'io.flow.stripe.v0.models.payment_method_options_bancontact_form': function () { return ({
|
|
2113
|
+
preferred_language: factories['io.flow.stripe.v0.enums.preferred_language_bancontact'](),
|
|
2013
2114
|
}); },
|
|
2014
2115
|
'io.flow.stripe.v0.models.payment_method_options_card': function () { return ({
|
|
2015
2116
|
network: factories.string(),
|
|
@@ -2026,7 +2127,15 @@ var factories = {
|
|
|
2026
2127
|
}); },
|
|
2027
2128
|
'io.flow.stripe.v0.models.payment_method_options_form': function () { return ({
|
|
2028
2129
|
card: factories['io.flow.stripe.v0.models.payment_method_options_card_form'](),
|
|
2130
|
+
ideal: factories['io.flow.stripe.v0.models.payment_method_options_ideal_form'](),
|
|
2029
2131
|
klarna: factories['io.flow.stripe.v0.models.payment_method_options_klarna_form'](),
|
|
2132
|
+
bancontact: factories['io.flow.stripe.v0.models.payment_method_options_bancontact_form'](),
|
|
2133
|
+
}); },
|
|
2134
|
+
'io.flow.stripe.v0.models.payment_method_options_ideal': function () { return ({
|
|
2135
|
+
setup_future_usage: factories['io.flow.stripe.v0.enums.setup_future_usage'](),
|
|
2136
|
+
}); },
|
|
2137
|
+
'io.flow.stripe.v0.models.payment_method_options_ideal_form': function () { return ({
|
|
2138
|
+
setup_future_usage: factories['io.flow.stripe.v0.enums.setup_future_usage'](),
|
|
2030
2139
|
}); },
|
|
2031
2140
|
'io.flow.stripe.v0.models.payment_method_options_klarna': function () { return ({
|
|
2032
2141
|
capture_method: factories['io.flow.stripe.v0.enums.capture_method'](),
|
|
@@ -2312,21 +2421,27 @@ var factories = {
|
|
|
2312
2421
|
'io.flow.stripe.v0.unions.payment_method_data': function () {
|
|
2313
2422
|
var f = faker.helpers.arrayElement([
|
|
2314
2423
|
function () { return factories['io.flow.stripe.v0.models.payment_method_data_card'](); },
|
|
2424
|
+
function () { return factories['io.flow.stripe.v0.models.payment_method_data_ideal'](); },
|
|
2315
2425
|
function () { return factories['io.flow.stripe.v0.models.payment_method_data_klarna'](); },
|
|
2426
|
+
function () { return factories['io.flow.stripe.v0.models.payment_method_data_bancontact'](); },
|
|
2316
2427
|
]);
|
|
2317
2428
|
return f();
|
|
2318
2429
|
},
|
|
2319
2430
|
'io.flow.stripe.v0.unions.payment_method_details': function () {
|
|
2320
2431
|
var f = faker.helpers.arrayElement([
|
|
2321
2432
|
function () { return factories['io.flow.stripe.v0.models.payment_method_details_card'](); },
|
|
2433
|
+
function () { return factories['io.flow.stripe.v0.models.payment_method_details_ideal'](); },
|
|
2322
2434
|
function () { return factories['io.flow.stripe.v0.models.payment_method_details_klarna'](); },
|
|
2435
|
+
function () { return factories['io.flow.stripe.v0.models.payment_method_details_bancontact'](); },
|
|
2323
2436
|
]);
|
|
2324
2437
|
return f();
|
|
2325
2438
|
},
|
|
2326
2439
|
'io.flow.stripe.v0.unions.payment_method_form': function () {
|
|
2327
2440
|
var f = faker.helpers.arrayElement([
|
|
2328
2441
|
function () { return factories['io.flow.stripe.v0.models.payment_method_form_card'](); },
|
|
2442
|
+
function () { return factories['io.flow.stripe.v0.models.payment_method_form_ideal'](); },
|
|
2329
2443
|
function () { return factories['io.flow.stripe.v0.models.payment_method_form_klarna'](); },
|
|
2444
|
+
function () { return factories['io.flow.stripe.v0.models.payment_method_form_bancontact'](); },
|
|
2330
2445
|
]);
|
|
2331
2446
|
return f();
|
|
2332
2447
|
},
|
|
@@ -2647,6 +2762,8 @@ var factories = {
|
|
|
2647
2762
|
'notification_deleted_v2',
|
|
2648
2763
|
'manifested_label_upserted',
|
|
2649
2764
|
'manifested_label_deleted',
|
|
2765
|
+
'label_processing_modification_upserted',
|
|
2766
|
+
'label_processing_modification_deleted',
|
|
2650
2767
|
'local_item_upserted',
|
|
2651
2768
|
'local_item_deleted',
|
|
2652
2769
|
'merchant_application_upserted',
|
|
@@ -3012,6 +3129,7 @@ var factories = {
|
|
|
3012
3129
|
'order_missing_information',
|
|
3013
3130
|
'order_domestic',
|
|
3014
3131
|
'order_mismatched_currencies',
|
|
3132
|
+
'order_missing',
|
|
3015
3133
|
]); },
|
|
3016
3134
|
'io.flow.v0.enums.payment_request_review_status': function () { return faker.helpers.arrayElement(['pending', 'approved', 'rejected']); },
|
|
3017
3135
|
'io.flow.v0.enums.payment_source_confirmation_action_type': function () { return faker.helpers.arrayElement(['cvv', 'billing_address', 'number']); },
|
|
@@ -3257,9 +3375,10 @@ var factories = {
|
|
|
3257
3375
|
'shipping_label_service',
|
|
3258
3376
|
'shipping_label_revenue_share',
|
|
3259
3377
|
'trueup',
|
|
3378
|
+
'trueup_base',
|
|
3379
|
+
'trueup_surcharge',
|
|
3260
3380
|
'carrier_charge',
|
|
3261
3381
|
'carrier_charge_revenue_share',
|
|
3262
|
-
'carrier_fee',
|
|
3263
3382
|
'platform_fee',
|
|
3264
3383
|
'tax',
|
|
3265
3384
|
'duty',
|
|
@@ -3271,8 +3390,9 @@ var factories = {
|
|
|
3271
3390
|
'order_service',
|
|
3272
3391
|
'virtual_card_capture',
|
|
3273
3392
|
'virtual_card_refund',
|
|
3393
|
+
'failed_payout',
|
|
3274
3394
|
]); },
|
|
3275
|
-
'io.flow.v0.enums.trueup_source': function () { return faker.helpers.arrayElement(['flow', 'channel', 'dhl-parcel', 'dhl']); },
|
|
3395
|
+
'io.flow.v0.enums.trueup_source': function () { return faker.helpers.arrayElement(['flow', 'channel', 'dhl-parcel', 'dhl', 'ups']); },
|
|
3276
3396
|
'io.flow.v0.enums.trueup_surcharge_type': function () { return faker.helpers.arrayElement([
|
|
3277
3397
|
'fuel',
|
|
3278
3398
|
'remote_area',
|
|
@@ -3285,6 +3405,12 @@ var factories = {
|
|
|
3285
3405
|
'eei_filing',
|
|
3286
3406
|
'fixed_ddp',
|
|
3287
3407
|
'fixed_currency_conversion',
|
|
3408
|
+
'prohibited_item',
|
|
3409
|
+
'undeliverable_shipment',
|
|
3410
|
+
'signature_required',
|
|
3411
|
+
'direct_delivery',
|
|
3412
|
+
'saturday_stop',
|
|
3413
|
+
'residential_extended_area_pickup',
|
|
3288
3414
|
]); },
|
|
3289
3415
|
'io.flow.v0.enums.unit_of_length': function () { return faker.helpers.arrayElement(['millimeter', 'centimeter', 'inch', 'foot', 'meter']); },
|
|
3290
3416
|
'io.flow.v0.enums.unit_of_measurement': function () { return faker.helpers.arrayElement([
|
|
@@ -7177,6 +7303,26 @@ var factories = {
|
|
|
7177
7303
|
id: factories.string(),
|
|
7178
7304
|
number: factories.string(),
|
|
7179
7305
|
}); },
|
|
7306
|
+
'io.flow.v0.models.label_processing_modification': function () { return ({
|
|
7307
|
+
id: factories.string(),
|
|
7308
|
+
modifications: arrayOf(function () { return factories.string(); }),
|
|
7309
|
+
destination: factories['io.flow.v0.models.shipping_address'](),
|
|
7310
|
+
destination_provided_to_carrier: factories['io.flow.v0.models.shipping_address'](),
|
|
7311
|
+
}); },
|
|
7312
|
+
'io.flow.v0.models.label_processing_modification_deleted': function () { return ({
|
|
7313
|
+
discriminator: 'label_processing_modification_deleted',
|
|
7314
|
+
event_id: factories.string(),
|
|
7315
|
+
timestamp: factories.date_time_iso_8601(),
|
|
7316
|
+
organization: factories.string(),
|
|
7317
|
+
id: factories.string(),
|
|
7318
|
+
}); },
|
|
7319
|
+
'io.flow.v0.models.label_processing_modification_upserted': function () { return ({
|
|
7320
|
+
discriminator: 'label_processing_modification_upserted',
|
|
7321
|
+
event_id: factories.string(),
|
|
7322
|
+
timestamp: factories.date_time_iso_8601(),
|
|
7323
|
+
organization: factories.string(),
|
|
7324
|
+
label_processing_modification: factories['io.flow.v0.models.label_processing_modification'](),
|
|
7325
|
+
}); },
|
|
7180
7326
|
'io.flow.v0.models.label_reference': function () { return ({
|
|
7181
7327
|
id: factories.string(),
|
|
7182
7328
|
}); },
|
|
@@ -9106,6 +9252,14 @@ var factories = {
|
|
|
9106
9252
|
discriminator: 'payment_processor_reference',
|
|
9107
9253
|
processor: factories.string(),
|
|
9108
9254
|
}); },
|
|
9255
|
+
'io.flow.v0.models.payment_processor_transaction_details_apm': function () { return ({
|
|
9256
|
+
discriminator: 'apm',
|
|
9257
|
+
transaction_identifier: factories.string(),
|
|
9258
|
+
capture_identifier: factories.string(),
|
|
9259
|
+
method_type: factories.string(),
|
|
9260
|
+
result_status: factories.string(),
|
|
9261
|
+
reason_code: factories.string(),
|
|
9262
|
+
}); },
|
|
9109
9263
|
'io.flow.v0.models.payment_processor_transaction_details_card': function () { return ({
|
|
9110
9264
|
discriminator: 'card',
|
|
9111
9265
|
transaction_identifier: factories.string(),
|
|
@@ -9182,6 +9336,10 @@ var factories = {
|
|
|
9182
9336
|
payment_request: factories['io.flow.v0.models.payment_request_form'](),
|
|
9183
9337
|
billing: factories['io.flow.v0.models.payment_request_billing'](),
|
|
9184
9338
|
}); },
|
|
9339
|
+
'io.flow.v0.models.payment_request_cancellation_reason_order_missing': function () { return ({
|
|
9340
|
+
type: 'order_missing',
|
|
9341
|
+
description: factories.string(),
|
|
9342
|
+
}); },
|
|
9185
9343
|
'io.flow.v0.models.payment_request_deleted': function () { return ({
|
|
9186
9344
|
discriminator: 'payment_request_deleted',
|
|
9187
9345
|
event_id: factories.string(),
|
|
@@ -9303,6 +9461,7 @@ var factories = {
|
|
|
9303
9461
|
'io.flow.v0.models.paypal_authorization_details': function () { return ({
|
|
9304
9462
|
discriminator: 'paypal_authorization_details',
|
|
9305
9463
|
payment_id: factories.string(),
|
|
9464
|
+
internal_payment_id: factories.string(),
|
|
9306
9465
|
payment_method: factories.string(),
|
|
9307
9466
|
payment_state: factories.string(),
|
|
9308
9467
|
payer_id: factories.string(),
|
|
@@ -10170,6 +10329,10 @@ var factories = {
|
|
|
10170
10329
|
'io.flow.v0.models.region_setting_form': function () { return ({
|
|
10171
10330
|
status: factories['io.flow.v0.enums.availability_status'](),
|
|
10172
10331
|
}); },
|
|
10332
|
+
'io.flow.v0.models.rejection_put_form': function () { return ({
|
|
10333
|
+
reason: factories['io.flow.v0.enums.merchant_rejected_reason'](),
|
|
10334
|
+
description: factories.string(),
|
|
10335
|
+
}); },
|
|
10173
10336
|
'io.flow.v0.models.remote_area_by_weight_service_fee': function () { return ({
|
|
10174
10337
|
discriminator: 'remote_area_by_weight_service_fee',
|
|
10175
10338
|
amount: factories['io.flow.v0.models.money'](),
|
|
@@ -11827,19 +11990,11 @@ var factories = {
|
|
|
11827
11990
|
revenue_share_percentage: factories.decimal(),
|
|
11828
11991
|
outbound: factories['io.flow.v0.models.transaction_metadata_outbound_transaction'](),
|
|
11829
11992
|
}); },
|
|
11830
|
-
'io.flow.v0.models.transaction_metadata_carrier_fee': function () { return ({
|
|
11831
|
-
discriminator: 'carrier_fee',
|
|
11832
|
-
outbound: factories['io.flow.v0.models.transaction_metadata_outbound_transaction'](),
|
|
11833
|
-
estimate: factories['io.flow.v0.models.transaction_metadata_carrier_fee_data'](),
|
|
11834
|
-
actual: factories['io.flow.v0.models.transaction_metadata_carrier_fee_data'](),
|
|
11835
|
-
}); },
|
|
11836
|
-
'io.flow.v0.models.transaction_metadata_carrier_fee_data': function () { return ({
|
|
11837
|
-
surcharges: arrayOf(function () { return factories['io.flow.v0.models.trueup_label_surcharge'](); }),
|
|
11838
|
-
}); },
|
|
11839
11993
|
'io.flow.v0.models.transaction_metadata_channel': function () { return ({
|
|
11840
11994
|
discriminator: 'channel',
|
|
11841
11995
|
method: factories.string(),
|
|
11842
11996
|
card: factories['io.flow.v0.models.transaction_metadata_channel_card_metadata'](),
|
|
11997
|
+
organization_transaction: factories['io.flow.v0.models.transaction_metadata_channel_organization_transaction'](),
|
|
11843
11998
|
}); },
|
|
11844
11999
|
'io.flow.v0.models.transaction_metadata_channel_card_metadata': function () { return ({
|
|
11845
12000
|
type: factories['io.flow.v0.enums.card_type'](),
|
|
@@ -11849,6 +12004,17 @@ var factories = {
|
|
|
11849
12004
|
iin: factories.string(),
|
|
11850
12005
|
country: factories.string(),
|
|
11851
12006
|
}); },
|
|
12007
|
+
'io.flow.v0.models.transaction_metadata_channel_organization_transaction': function () { return ({
|
|
12008
|
+
id: factories.string(),
|
|
12009
|
+
metadata: factories['io.flow.v0.models.transaction_metadata_payment_transaction'](),
|
|
12010
|
+
}); },
|
|
12011
|
+
'io.flow.v0.models.transaction_metadata_failed_payout': function () { return ({
|
|
12012
|
+
discriminator: 'failed_payout',
|
|
12013
|
+
failed_payout: factories['io.flow.v0.models.transaction_metadata_failed_payout_reference'](),
|
|
12014
|
+
}); },
|
|
12015
|
+
'io.flow.v0.models.transaction_metadata_failed_payout_reference': function () { return ({
|
|
12016
|
+
id: factories.string(),
|
|
12017
|
+
}); },
|
|
11852
12018
|
'io.flow.v0.models.transaction_metadata_manual': function () { return ({
|
|
11853
12019
|
discriminator: 'manual',
|
|
11854
12020
|
description: factories.string(),
|
|
@@ -11863,6 +12029,7 @@ var factories = {
|
|
|
11863
12029
|
}); },
|
|
11864
12030
|
'io.flow.v0.models.transaction_metadata_payment_transaction': function () { return ({
|
|
11865
12031
|
discriminator: 'payment_transaction',
|
|
12032
|
+
id: factories.string(),
|
|
11866
12033
|
key: factories.string(),
|
|
11867
12034
|
}); },
|
|
11868
12035
|
'io.flow.v0.models.transaction_metadata_shipping_label': function () { return ({
|
|
@@ -11881,6 +12048,20 @@ var factories = {
|
|
|
11881
12048
|
estimate: factories['io.flow.v0.models.transaction_metadata_trueup_data'](),
|
|
11882
12049
|
actual: factories['io.flow.v0.models.transaction_metadata_trueup_data'](),
|
|
11883
12050
|
}); },
|
|
12051
|
+
'io.flow.v0.models.transaction_metadata_trueup_base': function () { return ({
|
|
12052
|
+
discriminator: 'trueup_base',
|
|
12053
|
+
original: factories['io.flow.v0.models.transaction_metadata_original_transaction'](),
|
|
12054
|
+
estimate: factories['io.flow.v0.models.transaction_metadata_trueup_base_data'](),
|
|
12055
|
+
actual: factories['io.flow.v0.models.transaction_metadata_trueup_base_data'](),
|
|
12056
|
+
}); },
|
|
12057
|
+
'io.flow.v0.models.transaction_metadata_trueup_base_data': function () { return ({
|
|
12058
|
+
source: factories['io.flow.v0.enums.trueup_source'](),
|
|
12059
|
+
weights: factories['io.flow.v0.models.trueup_label_weights'](),
|
|
12060
|
+
units: factories['io.flow.v0.models.trueup_label_units'](),
|
|
12061
|
+
base: factories['io.flow.v0.models.trueup_label_base_v2'](),
|
|
12062
|
+
fuel: factories['io.flow.v0.models.trueup_label_fuel'](),
|
|
12063
|
+
total: factories.decimal(),
|
|
12064
|
+
}); },
|
|
11884
12065
|
'io.flow.v0.models.transaction_metadata_trueup_data': function () { return ({
|
|
11885
12066
|
source: factories['io.flow.v0.enums.trueup_source'](),
|
|
11886
12067
|
units: factories['io.flow.v0.models.trueup_label_units'](),
|
|
@@ -11890,6 +12071,16 @@ var factories = {
|
|
|
11890
12071
|
dead: factories['io.flow.v0.models.dead_weight'](),
|
|
11891
12072
|
dimensional: factories['io.flow.v0.models.dimensional_weight'](),
|
|
11892
12073
|
}); },
|
|
12074
|
+
'io.flow.v0.models.transaction_metadata_trueup_surcharge': function () { return ({
|
|
12075
|
+
discriminator: 'trueup_surcharge',
|
|
12076
|
+
original: factories['io.flow.v0.models.transaction_metadata_original_transaction'](),
|
|
12077
|
+
estimate: factories['io.flow.v0.models.transaction_metadata_trueup_surcharge_data'](),
|
|
12078
|
+
actual: factories['io.flow.v0.models.transaction_metadata_trueup_surcharge_data'](),
|
|
12079
|
+
}); },
|
|
12080
|
+
'io.flow.v0.models.transaction_metadata_trueup_surcharge_data': function () { return ({
|
|
12081
|
+
source: factories['io.flow.v0.enums.trueup_source'](),
|
|
12082
|
+
surcharge: factories['io.flow.v0.models.trueup_label_surcharge'](),
|
|
12083
|
+
}); },
|
|
11893
12084
|
'io.flow.v0.models.transaction_network_details_card': function () { return ({
|
|
11894
12085
|
network_transaction_id: factories.string(),
|
|
11895
12086
|
network: factories['io.flow.v0.enums.card_type'](),
|
|
@@ -11921,6 +12112,17 @@ var factories = {
|
|
|
11921
12112
|
amount: factories.decimal(),
|
|
11922
12113
|
weight: factories.decimal(),
|
|
11923
12114
|
}); },
|
|
12115
|
+
'io.flow.v0.models.trueup_label_base_v2': function () { return ({
|
|
12116
|
+
amount: factories.decimal(),
|
|
12117
|
+
}); },
|
|
12118
|
+
'io.flow.v0.models.trueup_label_base_weight': function () { return ({
|
|
12119
|
+
weight: factories.decimal(),
|
|
12120
|
+
}); },
|
|
12121
|
+
'io.flow.v0.models.trueup_label_fuel': function () { return ({
|
|
12122
|
+
amount: factories.decimal(),
|
|
12123
|
+
percentage: factories.decimal(),
|
|
12124
|
+
per_weight_unit: factories.decimal(),
|
|
12125
|
+
}); },
|
|
11924
12126
|
'io.flow.v0.models.trueup_label_surcharge': function () { return ({
|
|
11925
12127
|
amount: factories.decimal(),
|
|
11926
12128
|
type: factories['io.flow.v0.enums.trueup_surcharge_type'](),
|
|
@@ -11931,6 +12133,11 @@ var factories = {
|
|
|
11931
12133
|
weight: factories['io.flow.v0.enums.unit_of_weight'](),
|
|
11932
12134
|
length: factories['io.flow.v0.enums.unit_of_length'](),
|
|
11933
12135
|
}); },
|
|
12136
|
+
'io.flow.v0.models.trueup_label_weights': function () { return ({
|
|
12137
|
+
base: factories['io.flow.v0.models.trueup_label_base_weight'](),
|
|
12138
|
+
dead: factories['io.flow.v0.models.dead_weight'](),
|
|
12139
|
+
dimensional: factories['io.flow.v0.models.dimensional_weight'](),
|
|
12140
|
+
}); },
|
|
11934
12141
|
'io.flow.v0.models.ultimate_beneficiary_owner': function () { return ({
|
|
11935
12142
|
name: factories.string(),
|
|
11936
12143
|
dob: factories.date_time_iso_8601(),
|
|
@@ -12472,6 +12679,8 @@ var factories = {
|
|
|
12472
12679
|
function () { return factories['io.flow.v0.models.notification_deleted_v2'](); },
|
|
12473
12680
|
function () { return factories['io.flow.v0.models.manifested_label_upserted'](); },
|
|
12474
12681
|
function () { return factories['io.flow.v0.models.manifested_label_deleted'](); },
|
|
12682
|
+
function () { return factories['io.flow.v0.models.label_processing_modification_upserted'](); },
|
|
12683
|
+
function () { return factories['io.flow.v0.models.label_processing_modification_deleted'](); },
|
|
12475
12684
|
function () { return factories['io.flow.v0.models.local_item_upserted'](); },
|
|
12476
12685
|
function () { return factories['io.flow.v0.models.local_item_deleted'](); },
|
|
12477
12686
|
function () { return factories['io.flow.v0.models.merchant_application_upserted'](); },
|
|
@@ -12893,6 +13102,13 @@ var factories = {
|
|
|
12893
13102
|
'io.flow.v0.unions.payment_processor_transaction_details': function () {
|
|
12894
13103
|
var f = faker.helpers.arrayElement([
|
|
12895
13104
|
function () { return factories['io.flow.v0.models.payment_processor_transaction_details_card'](); },
|
|
13105
|
+
function () { return factories['io.flow.v0.models.payment_processor_transaction_details_apm'](); },
|
|
13106
|
+
]);
|
|
13107
|
+
return f();
|
|
13108
|
+
},
|
|
13109
|
+
'io.flow.v0.unions.payment_request_cancellation_reason': function () {
|
|
13110
|
+
var f = faker.helpers.arrayElement([
|
|
13111
|
+
function () { return factories['io.flow.v0.models.payment_request_cancellation_reason_order_missing'](); },
|
|
12896
13112
|
]);
|
|
12897
13113
|
return f();
|
|
12898
13114
|
},
|
|
@@ -13139,9 +13355,11 @@ var factories = {
|
|
|
13139
13355
|
function () { return factories['io.flow.v0.models.transaction_metadata_shipping_label'](); },
|
|
13140
13356
|
function () { return factories['io.flow.v0.models.transaction_metadata_channel'](); },
|
|
13141
13357
|
function () { return factories['io.flow.v0.models.transaction_metadata_trueup'](); },
|
|
13358
|
+
function () { return factories['io.flow.v0.models.transaction_metadata_trueup_base'](); },
|
|
13359
|
+
function () { return factories['io.flow.v0.models.transaction_metadata_trueup_surcharge'](); },
|
|
13142
13360
|
function () { return factories['io.flow.v0.models.transaction_metadata_carrier_charge'](); },
|
|
13143
|
-
function () { return factories['io.flow.v0.models.transaction_metadata_carrier_fee'](); },
|
|
13144
13361
|
function () { return factories['io.flow.v0.models.transaction_metadata_manual'](); },
|
|
13362
|
+
function () { return factories['io.flow.v0.models.transaction_metadata_failed_payout'](); },
|
|
13145
13363
|
function () { return factories['io.flow.v0.models.transaction_metadata_payment_transaction'](); },
|
|
13146
13364
|
]);
|
|
13147
13365
|
return f();
|
|
@@ -13918,6 +14136,9 @@ export var makeLabelDeletedV2 = function () { return factories['io.flow.v0.model
|
|
|
13918
14136
|
export var makeLabelFormatDeleted = function () { return factories['io.flow.v0.models.label_format_deleted'](); };
|
|
13919
14137
|
export var makeLabelFormatUpserted = function () { return factories['io.flow.v0.models.label_format_upserted'](); };
|
|
13920
14138
|
export var makeLabelOrderSummary = function () { return factories['io.flow.v0.models.label_order_summary'](); };
|
|
14139
|
+
export var makeLabelProcessingModification = function () { return factories['io.flow.v0.models.label_processing_modification'](); };
|
|
14140
|
+
export var makeLabelProcessingModificationDeleted = function () { return factories['io.flow.v0.models.label_processing_modification_deleted'](); };
|
|
14141
|
+
export var makeLabelProcessingModificationUpserted = function () { return factories['io.flow.v0.models.label_processing_modification_upserted'](); };
|
|
13921
14142
|
export var makeLabelReference = function () { return factories['io.flow.v0.models.label_reference'](); };
|
|
13922
14143
|
export var makeLabelRequestMethod = function () { return factories['io.flow.v0.enums.label_request_method'](); };
|
|
13923
14144
|
export var makeLabelSurcharge = function () { return factories['io.flow.v0.models.label_surcharge'](); };
|
|
@@ -14303,6 +14524,7 @@ export var makePaymentProcessorAccountReference = function () { return factories
|
|
|
14303
14524
|
export var makePaymentProcessorIdentifier = function () { return factories['io.flow.v0.models.payment_processor_identifier'](); };
|
|
14304
14525
|
export var makePaymentProcessorReference = function () { return factories['io.flow.v0.models.payment_processor_reference'](); };
|
|
14305
14526
|
export var makePaymentProcessorTransactionDetails = function () { return factories['io.flow.v0.unions.payment_processor_transaction_details'](); };
|
|
14527
|
+
export var makePaymentProcessorTransactionDetailsApm = function () { return factories['io.flow.v0.models.payment_processor_transaction_details_apm'](); };
|
|
14306
14528
|
export var makePaymentProcessorTransactionDetailsCard = function () { return factories['io.flow.v0.models.payment_processor_transaction_details_card'](); };
|
|
14307
14529
|
export var makePaymentReference = function () { return factories['io.flow.v0.models.payment_reference'](); };
|
|
14308
14530
|
export var makePaymentRefund = function () { return factories['io.flow.v0.models.payment_refund'](); };
|
|
@@ -14314,6 +14536,8 @@ export var makePaymentRequestBillingCurrencyRate = function () { return factorie
|
|
|
14314
14536
|
export var makePaymentRequestBillingFees = function () { return factories['io.flow.v0.models.payment_request_billing_fees'](); };
|
|
14315
14537
|
export var makePaymentRequestBundle = function () { return factories['io.flow.v0.models.payment_request_bundle'](); };
|
|
14316
14538
|
export var makePaymentRequestBundleForm = function () { return factories['io.flow.v0.models.payment_request_bundle_form'](); };
|
|
14539
|
+
export var makePaymentRequestCancellationReason = function () { return factories['io.flow.v0.unions.payment_request_cancellation_reason'](); };
|
|
14540
|
+
export var makePaymentRequestCancellationReasonOrderMissing = function () { return factories['io.flow.v0.models.payment_request_cancellation_reason_order_missing'](); };
|
|
14317
14541
|
export var makePaymentRequestDeleted = function () { return factories['io.flow.v0.models.payment_request_deleted'](); };
|
|
14318
14542
|
export var makePaymentRequestForm = function () { return factories['io.flow.v0.models.payment_request_form'](); };
|
|
14319
14543
|
export var makePaymentRequestReference = function () { return factories['io.flow.v0.models.payment_request_reference'](); };
|
|
@@ -14499,6 +14723,7 @@ export var makeRegionReference = function () { return factories['io.flow.v0.mode
|
|
|
14499
14723
|
export var makeRegionSetting = function () { return factories['io.flow.v0.models.region_setting'](); };
|
|
14500
14724
|
export var makeRegionSettingForm = function () { return factories['io.flow.v0.models.region_setting_form'](); };
|
|
14501
14725
|
export var makeRegionType = function () { return factories['io.flow.v0.enums.region_type'](); };
|
|
14726
|
+
export var makeRejectionPutForm = function () { return factories['io.flow.v0.models.rejection_put_form'](); };
|
|
14502
14727
|
export var makeRemoteAreaByWeightServiceFee = function () { return factories['io.flow.v0.models.remote_area_by_weight_service_fee'](); };
|
|
14503
14728
|
export var makeRemoteAreaRatecardFee = function () { return factories['io.flow.v0.models.remote_area_ratecard_fee'](); };
|
|
14504
14729
|
export var makeRemoteAreaServiceFee = function () { return factories['io.flow.v0.models.remote_area_service_fee'](); };
|
|
@@ -14823,11 +15048,12 @@ export var makeTransactionDetails = function () { return factories['io.flow.v0.u
|
|
|
14823
15048
|
export var makeTransactionDetailsCard = function () { return factories['io.flow.v0.models.transaction_details_card'](); };
|
|
14824
15049
|
export var makeTransactionMetadata = function () { return factories['io.flow.v0.unions.transaction_metadata'](); };
|
|
14825
15050
|
export var makeTransactionMetadataCarrierCharge = function () { return factories['io.flow.v0.models.transaction_metadata_carrier_charge'](); };
|
|
14826
|
-
export var makeTransactionMetadataCarrierFee = function () { return factories['io.flow.v0.models.transaction_metadata_carrier_fee'](); };
|
|
14827
|
-
export var makeTransactionMetadataCarrierFeeData = function () { return factories['io.flow.v0.models.transaction_metadata_carrier_fee_data'](); };
|
|
14828
15051
|
export var makeTransactionMetadataChannel = function () { return factories['io.flow.v0.models.transaction_metadata_channel'](); };
|
|
14829
15052
|
export var makeTransactionMetadataChannelCardMetadata = function () { return factories['io.flow.v0.models.transaction_metadata_channel_card_metadata'](); };
|
|
14830
15053
|
export var makeTransactionMetadataChannelCardMetadataIssuerSummary = function () { return factories['io.flow.v0.models.transaction_metadata_channel_card_metadata_issuer_summary'](); };
|
|
15054
|
+
export var makeTransactionMetadataChannelOrganizationTransaction = function () { return factories['io.flow.v0.models.transaction_metadata_channel_organization_transaction'](); };
|
|
15055
|
+
export var makeTransactionMetadataFailedPayout = function () { return factories['io.flow.v0.models.transaction_metadata_failed_payout'](); };
|
|
15056
|
+
export var makeTransactionMetadataFailedPayoutReference = function () { return factories['io.flow.v0.models.transaction_metadata_failed_payout_reference'](); };
|
|
14831
15057
|
export var makeTransactionMetadataManual = function () { return factories['io.flow.v0.models.transaction_metadata_manual'](); };
|
|
14832
15058
|
export var makeTransactionMetadataOriginalTransaction = function () { return factories['io.flow.v0.models.transaction_metadata_original_transaction'](); };
|
|
14833
15059
|
export var makeTransactionMetadataOutboundTransaction = function () { return factories['io.flow.v0.models.transaction_metadata_outbound_transaction'](); };
|
|
@@ -14835,7 +15061,11 @@ export var makeTransactionMetadataPaymentTransaction = function () { return fact
|
|
|
14835
15061
|
export var makeTransactionMetadataShippingLabel = function () { return factories['io.flow.v0.models.transaction_metadata_shipping_label'](); };
|
|
14836
15062
|
export var makeTransactionMetadataShippingLabelCarrier = function () { return factories['io.flow.v0.models.transaction_metadata_shipping_label_carrier'](); };
|
|
14837
15063
|
export var makeTransactionMetadataTrueup = function () { return factories['io.flow.v0.models.transaction_metadata_trueup'](); };
|
|
15064
|
+
export var makeTransactionMetadataTrueupBase = function () { return factories['io.flow.v0.models.transaction_metadata_trueup_base'](); };
|
|
15065
|
+
export var makeTransactionMetadataTrueupBaseData = function () { return factories['io.flow.v0.models.transaction_metadata_trueup_base_data'](); };
|
|
14838
15066
|
export var makeTransactionMetadataTrueupData = function () { return factories['io.flow.v0.models.transaction_metadata_trueup_data'](); };
|
|
15067
|
+
export var makeTransactionMetadataTrueupSurcharge = function () { return factories['io.flow.v0.models.transaction_metadata_trueup_surcharge'](); };
|
|
15068
|
+
export var makeTransactionMetadataTrueupSurchargeData = function () { return factories['io.flow.v0.models.transaction_metadata_trueup_surcharge_data'](); };
|
|
14839
15069
|
export var makeTransactionNetworkDetailsCard = function () { return factories['io.flow.v0.models.transaction_network_details_card'](); };
|
|
14840
15070
|
export var makeTransactionReference = function () { return factories['io.flow.v0.models.transaction_reference'](); };
|
|
14841
15071
|
export var makeTransactionSource = function () { return factories['io.flow.v0.enums.transaction_source'](); };
|
|
@@ -14843,8 +15073,12 @@ export var makeTransactionUpserted = function () { return factories['io.flow.v0.
|
|
|
14843
15073
|
export var makeTransitEstimate = function () { return factories['io.flow.v0.models.transit_estimate'](); };
|
|
14844
15074
|
export var makeTransitWindow = function () { return factories['io.flow.v0.models.transit_window'](); };
|
|
14845
15075
|
export var makeTrueupLabelBase = function () { return factories['io.flow.v0.models.trueup_label_base'](); };
|
|
15076
|
+
export var makeTrueupLabelBaseV2 = function () { return factories['io.flow.v0.models.trueup_label_base_v2'](); };
|
|
15077
|
+
export var makeTrueupLabelBaseWeight = function () { return factories['io.flow.v0.models.trueup_label_base_weight'](); };
|
|
15078
|
+
export var makeTrueupLabelFuel = function () { return factories['io.flow.v0.models.trueup_label_fuel'](); };
|
|
14846
15079
|
export var makeTrueupLabelSurcharge = function () { return factories['io.flow.v0.models.trueup_label_surcharge'](); };
|
|
14847
15080
|
export var makeTrueupLabelUnits = function () { return factories['io.flow.v0.models.trueup_label_units'](); };
|
|
15081
|
+
export var makeTrueupLabelWeights = function () { return factories['io.flow.v0.models.trueup_label_weights'](); };
|
|
14848
15082
|
export var makeTrueupSource = function () { return factories['io.flow.v0.enums.trueup_source'](); };
|
|
14849
15083
|
export var makeTrueupSurchargeType = function () { return factories['io.flow.v0.enums.trueup_surcharge_type'](); };
|
|
14850
15084
|
export var makeUltimateBeneficiaryOwner = function () { return factories['io.flow.v0.models.ultimate_beneficiary_owner'](); };
|