@flowio/api-internal-factories 0.0.122 → 0.0.124
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/api-internal.js +314 -81
- package/dist/esm/api-internal.js +271 -52
- package/dist/types/api-internal.d.ts +14 -0
- package/package.json +2 -2
- package/src/api-internal.ts +299 -54
package/dist/esm/api-internal.js
CHANGED
|
@@ -707,6 +707,7 @@ var factories = {
|
|
|
707
707
|
'virtual_card_refund',
|
|
708
708
|
'failed_payout',
|
|
709
709
|
'tax_refund',
|
|
710
|
+
'duty_refund',
|
|
710
711
|
'non_l4l_tax_duty_fx',
|
|
711
712
|
'ge_revenue_share',
|
|
712
713
|
]); },
|
|
@@ -5909,10 +5910,20 @@ var factories = {
|
|
|
5909
5910
|
'io.flow.internal.v0.enums.classification_decision': function () { return faker.helpers.arrayElement(['Accept', 'Reject']); },
|
|
5910
5911
|
'io.flow.internal.v0.enums.classification_error_code': function () { return faker.helpers.arrayElement(['generic_error']); },
|
|
5911
5912
|
'io.flow.internal.v0.enums.classification_platform': function () { return faker.helpers.arrayElement(['GlobalE', 'Flow', 'Borderfree']); },
|
|
5912
|
-
'io.flow.internal.v0.enums.classification_type': function () { return faker.helpers.arrayElement(['None', 'Manual', 'ML']); },
|
|
5913
|
+
'io.flow.internal.v0.enums.classification_type': function () { return faker.helpers.arrayElement(['None', 'Manual', 'ML', 'System']); },
|
|
5913
5914
|
'io.flow.internal.v0.enums.clothing_age_classification': function () { return faker.helpers.arrayElement(['None', 'AgeKidsGeneral', 'Age0_10', 'Age10_13', 'Age13_14']); },
|
|
5914
5915
|
'io.flow.internal.v0.enums.company': function () { return faker.helpers.arrayElement(['globale', 'flow']); },
|
|
5915
5916
|
'io.flow.internal.v0.enums.compliance_type': function () { return faker.helpers.arrayElement(['weee']); },
|
|
5917
|
+
'io.flow.internal.v0.enums.connect_report_payment_transfer_type': function () { return faker.helpers.arrayElement([
|
|
5918
|
+
'ManagedMarketsRefundDebit',
|
|
5919
|
+
'ManagedMarketsDutiesAndTaxesAdjustmentDebit',
|
|
5920
|
+
'ManagedMarketsDisputedAmountDebit',
|
|
5921
|
+
]); },
|
|
5922
|
+
'io.flow.internal.v0.enums.connect_report_transfer_transfer_type': function () { return faker.helpers.arrayElement([
|
|
5923
|
+
'ManagedMarketsChargeCredit',
|
|
5924
|
+
'ManagedMarketsDisputeWonAmountCredit',
|
|
5925
|
+
'ManagedMarketsDutiesAndTaxesAdjustmentCredit',
|
|
5926
|
+
]); },
|
|
5916
5927
|
'io.flow.internal.v0.enums.content_element_type': function () { return faker.helpers.arrayElement(['markdown', 'html', 'plain_text', 'href']); },
|
|
5917
5928
|
'io.flow.internal.v0.enums.content_status': function () { return faker.helpers.arrayElement(['draft', 'live', 'archived']); },
|
|
5918
5929
|
'io.flow.internal.v0.enums.content_type': function () { return faker.helpers.arrayElement(['text', 'html']); },
|
|
@@ -5949,7 +5960,7 @@ var factories = {
|
|
|
5949
5960
|
'preferential_rate',
|
|
5950
5961
|
]); },
|
|
5951
5962
|
'io.flow.internal.v0.enums.duty_simple_expression_type': function () { return faker.helpers.arrayElement(['free', 'percent', 'per_uom', 'flat']); },
|
|
5952
|
-
'io.flow.internal.v0.enums.duty_transaction_type': function () { return faker.helpers.arrayElement(['adjustment', 'reversal', 'duty']); },
|
|
5963
|
+
'io.flow.internal.v0.enums.duty_transaction_type': function () { return faker.helpers.arrayElement(['adjustment', 'reversal', 'duty', 'refund']); },
|
|
5953
5964
|
'io.flow.internal.v0.enums.empty_attribute': function () { return faker.helpers.arrayElement(['irrelevant']); },
|
|
5954
5965
|
'io.flow.internal.v0.enums.erp_file_type': function () { return faker.helpers.arrayElement(['vendor']); },
|
|
5955
5966
|
'io.flow.internal.v0.enums.event_type': function () { return faker.helpers.arrayElement([
|
|
@@ -6180,6 +6191,8 @@ var factories = {
|
|
|
6180
6191
|
'partner_tracking_subscription_deleted',
|
|
6181
6192
|
'spp_tracker_update_request_upserted',
|
|
6182
6193
|
'spp_tracker_update_request_deleted',
|
|
6194
|
+
'partner_request_upserted',
|
|
6195
|
+
'partner_request_deleted',
|
|
6183
6196
|
'internal_authorization_upserted',
|
|
6184
6197
|
'internal_authorization_deleted',
|
|
6185
6198
|
'afterpay_authorization_upserted',
|
|
@@ -6279,6 +6292,8 @@ var factories = {
|
|
|
6279
6292
|
'shopify_order_fulfillments_snapshot_deleted',
|
|
6280
6293
|
'shopify_merchant_plan_upserted',
|
|
6281
6294
|
'shopify_merchant_plan_deleted',
|
|
6295
|
+
'shopify_dispute_upserted',
|
|
6296
|
+
'shopify_dispute_deleted',
|
|
6282
6297
|
'stripe_authorization_deleted',
|
|
6283
6298
|
'stripe_authorization_upserted',
|
|
6284
6299
|
'stripe_reversal_deleted',
|
|
@@ -6408,6 +6423,12 @@ var factories = {
|
|
|
6408
6423
|
'bank_payment_failure',
|
|
6409
6424
|
'non_fraud_chargeback',
|
|
6410
6425
|
]); },
|
|
6426
|
+
'io.flow.internal.v0.enums.merchant_of_record': function () { return faker.helpers.arrayElement([
|
|
6427
|
+
'global_e_united_states',
|
|
6428
|
+
'global_e_united_kingdom',
|
|
6429
|
+
'global_e_canada',
|
|
6430
|
+
'global_e_netherlands',
|
|
6431
|
+
]); },
|
|
6411
6432
|
'io.flow.internal.v0.enums.merchant_override_status': function () { return faker.helpers.arrayElement(['in_review', 'accepted', 'rejected']); },
|
|
6412
6433
|
'io.flow.internal.v0.enums.mixed_bag_weight': function () { return faker.helpers.arrayElement(['0', '1', '2']); },
|
|
6413
6434
|
'io.flow.internal.v0.enums.nature_of_sale': function () { return faker.helpers.arrayElement([
|
|
@@ -6445,7 +6466,6 @@ var factories = {
|
|
|
6445
6466
|
'dtce',
|
|
6446
6467
|
'restrictions',
|
|
6447
6468
|
'organization_status',
|
|
6448
|
-
'category_constraints',
|
|
6449
6469
|
'miscellaneous',
|
|
6450
6470
|
]); },
|
|
6451
6471
|
'io.flow.internal.v0.enums.onboarding_automation_process_state': function () { return faker.helpers.arrayElement(['not_started', 'in_progress', 'success', 'failed']); },
|
|
@@ -6496,6 +6516,7 @@ var factories = {
|
|
|
6496
6516
|
'io.flow.internal.v0.enums.organization_restriction_review_type': function () { return faker.helpers.arrayElement(['all_pending', 'pending_verification']); },
|
|
6497
6517
|
'io.flow.internal.v0.enums.organization_restriction_risk_level': function () { return faker.helpers.arrayElement(['5', '15']); },
|
|
6498
6518
|
'io.flow.internal.v0.enums.organization_restriction_screening_status': function () { return faker.helpers.arrayElement(['in_review', 'fully_reviewed', 'rejected', 'unscreened']); },
|
|
6519
|
+
'io.flow.internal.v0.enums.organization_source': function () { return faker.helpers.arrayElement(['shopify', 'enterprise']); },
|
|
6499
6520
|
'io.flow.internal.v0.enums.output_style': function () { return faker.helpers.arrayElement(['flow', 'shopify_p1']); },
|
|
6500
6521
|
'io.flow.internal.v0.enums.owner': function () { return faker.helpers.arrayElement(['flow', 'organization']); },
|
|
6501
6522
|
'io.flow.internal.v0.enums.payment_short_url_discriminator': function () { return faker.helpers.arrayElement(['adyen_3ds2']); },
|
|
@@ -12012,8 +12033,12 @@ var factories = {
|
|
|
12012
12033
|
status: factories['io.flow.internal.v0.enums.merchant_override_status'](),
|
|
12013
12034
|
hs6_code: factories.string(),
|
|
12014
12035
|
merchant_hs6_code: factories.string(),
|
|
12036
|
+
created_at: factories.date_time_iso_8601(),
|
|
12037
|
+
updated_at: factories.date_time_iso_8601(),
|
|
12038
|
+
updated_by_user_id: factories.string(),
|
|
12015
12039
|
}); },
|
|
12016
12040
|
'io.flow.internal.v0.models.merchant_override_decision_form': function () { return ({
|
|
12041
|
+
id: factories.string(),
|
|
12017
12042
|
status: factories['io.flow.internal.v0.enums.merchant_override_status'](),
|
|
12018
12043
|
}); },
|
|
12019
12044
|
'io.flow.internal.v0.models.merchant_search_result': function () { return ({
|
|
@@ -12692,6 +12717,9 @@ var factories = {
|
|
|
12692
12717
|
last_order_submitted_at: factories.date_time_iso_8601(),
|
|
12693
12718
|
matching_positive_keywords: arrayOf(function () { return factories.string(); }),
|
|
12694
12719
|
product_categories: arrayOf(function () { return factories.string(); }),
|
|
12720
|
+
matching_negative_keywords: arrayOf(function () { return factories.string(); }),
|
|
12721
|
+
decisions_user_ids: arrayOf(function () { return factories.string(); }),
|
|
12722
|
+
restriction_rule_ids: arrayOf(function () { return factories.string(); }),
|
|
12695
12723
|
}); },
|
|
12696
12724
|
'io.flow.internal.v0.models.organization_metadata_deleted': function () { return ({
|
|
12697
12725
|
discriminator: 'organization_metadata_deleted',
|
|
@@ -13043,6 +13071,30 @@ var factories = {
|
|
|
13043
13071
|
organization: factories.string(),
|
|
13044
13072
|
partner_organization_settings: factories['io.flow.internal.v0.models.partner_organization_settings'](),
|
|
13045
13073
|
}); },
|
|
13074
|
+
'io.flow.internal.v0.models.partner_request': function () { return ({
|
|
13075
|
+
id: factories.string(),
|
|
13076
|
+
partner_id: factories.string(),
|
|
13077
|
+
organization_id: factories.string(),
|
|
13078
|
+
method: factories.string(),
|
|
13079
|
+
path: factories.string(),
|
|
13080
|
+
request_id: factories.string(),
|
|
13081
|
+
parameters: objectOf(function () { return factories.string(); }),
|
|
13082
|
+
request_body: factories.object(),
|
|
13083
|
+
response_body: factories.object(),
|
|
13084
|
+
reference_id: factories.string(),
|
|
13085
|
+
}); },
|
|
13086
|
+
'io.flow.internal.v0.models.partner_request_deleted': function () { return ({
|
|
13087
|
+
discriminator: 'partner_request_deleted',
|
|
13088
|
+
event_id: factories.string(),
|
|
13089
|
+
timestamp: factories.date_time_iso_8601(),
|
|
13090
|
+
id: factories.string(),
|
|
13091
|
+
}); },
|
|
13092
|
+
'io.flow.internal.v0.models.partner_request_upserted': function () { return ({
|
|
13093
|
+
discriminator: 'partner_request_upserted',
|
|
13094
|
+
event_id: factories.string(),
|
|
13095
|
+
timestamp: factories.date_time_iso_8601(),
|
|
13096
|
+
partner_request: factories['io.flow.internal.v0.models.partner_request'](),
|
|
13097
|
+
}); },
|
|
13046
13098
|
'io.flow.internal.v0.models.partner_tracking_subscription_deleted': function () { return ({
|
|
13047
13099
|
discriminator: 'partner_tracking_subscription_deleted',
|
|
13048
13100
|
event_id: factories.string(),
|
|
@@ -14101,6 +14153,7 @@ var factories = {
|
|
|
14101
14153
|
id: factories.string(),
|
|
14102
14154
|
processor: factories.string(),
|
|
14103
14155
|
report_file_type: factories['io.flow.internal.v0.enums.report_file_type'](),
|
|
14156
|
+
merchant_of_record_identifier: factories['io.flow.internal.v0.enums.merchant_of_record'](),
|
|
14104
14157
|
file_name: factories.string(),
|
|
14105
14158
|
status: factories['io.flow.internal.v0.enums.report_file_status'](),
|
|
14106
14159
|
failure_reason: factories.string(),
|
|
@@ -14485,6 +14538,12 @@ var factories = {
|
|
|
14485
14538
|
timestamp: factories.date_time_iso_8601(),
|
|
14486
14539
|
restriction_organization_status: factories['io.flow.internal.v0.models.restriction_organization_status'](),
|
|
14487
14540
|
}); },
|
|
14541
|
+
'io.flow.internal.v0.models.restriction_organization_summary': function () { return ({
|
|
14542
|
+
id: factories.string(),
|
|
14543
|
+
name: factories.string(),
|
|
14544
|
+
environment: factories['io.flow.common.v0.enums.environment'](),
|
|
14545
|
+
source: factories['io.flow.internal.v0.enums.organization_source'](),
|
|
14546
|
+
}); },
|
|
14488
14547
|
'io.flow.internal.v0.models.restriction_pending': function () { return ({
|
|
14489
14548
|
rule: factories['io.flow.internal.v0.models.restriction_rule_summary'](),
|
|
14490
14549
|
count: factories.long(),
|
|
@@ -14929,6 +14988,33 @@ var factories = {
|
|
|
14929
14988
|
'io.flow.internal.v0.models.shopify_code_form': function () { return ({
|
|
14930
14989
|
code: factories.string(),
|
|
14931
14990
|
}); },
|
|
14991
|
+
'io.flow.internal.v0.models.shopify_dispute': function () { return ({
|
|
14992
|
+
id: factories.string(),
|
|
14993
|
+
organization_id: factories.string(),
|
|
14994
|
+
authorization_id: factories.string(),
|
|
14995
|
+
amount: factories.decimal(),
|
|
14996
|
+
currency: factories.string(),
|
|
14997
|
+
status: factories.string(),
|
|
14998
|
+
category: factories.string(),
|
|
14999
|
+
attributes: objectOf(function () { return factories.string(); }),
|
|
15000
|
+
external_reference_id: factories.string(),
|
|
15001
|
+
issued_at: factories.date_time_iso_8601(),
|
|
15002
|
+
updated_at: factories.date_time_iso_8601(),
|
|
15003
|
+
}); },
|
|
15004
|
+
'io.flow.internal.v0.models.shopify_dispute_deleted': function () { return ({
|
|
15005
|
+
discriminator: 'shopify_dispute_deleted',
|
|
15006
|
+
event_id: factories.string(),
|
|
15007
|
+
timestamp: factories.date_time_iso_8601(),
|
|
15008
|
+
organization: factories.string(),
|
|
15009
|
+
id: factories.string(),
|
|
15010
|
+
}); },
|
|
15011
|
+
'io.flow.internal.v0.models.shopify_dispute_upserted': function () { return ({
|
|
15012
|
+
discriminator: 'shopify_dispute_upserted',
|
|
15013
|
+
event_id: factories.string(),
|
|
15014
|
+
timestamp: factories.date_time_iso_8601(),
|
|
15015
|
+
organization: factories.string(),
|
|
15016
|
+
dispute: factories['io.flow.internal.v0.models.shopify_dispute'](),
|
|
15017
|
+
}); },
|
|
14932
15018
|
'io.flow.internal.v0.models.shopify_experience_short_id': function () { return ({
|
|
14933
15019
|
id: factories.string(),
|
|
14934
15020
|
experience: factories['io.flow.experience.v0.models.experience_reference'](),
|
|
@@ -15237,7 +15323,6 @@ var factories = {
|
|
|
15237
15323
|
registration: factories['io.flow.internal.v0.models.shopify_markets_webhook_registration'](),
|
|
15238
15324
|
}); },
|
|
15239
15325
|
'io.flow.internal.v0.models.shopify_merchant_plan': function () { return ({
|
|
15240
|
-
id: factories.string(),
|
|
15241
15326
|
authorization: factories['io.flow.payment.v0.models.authorization_reference'](),
|
|
15242
15327
|
plan: factories['io.flow.internal.v0.enums.shopify_plan_type'](),
|
|
15243
15328
|
}); },
|
|
@@ -15897,7 +15982,7 @@ var factories = {
|
|
|
15897
15982
|
net: factories.decimal(),
|
|
15898
15983
|
currency: factories.string(),
|
|
15899
15984
|
connected_account: factories.string(),
|
|
15900
|
-
reporting_category: factories['io.flow.stripe.v0.
|
|
15985
|
+
reporting_category: factories['io.flow.stripe.v0.unions.connect_report_reporting_category'](),
|
|
15901
15986
|
dispute_reason: factories.string(),
|
|
15902
15987
|
available_on_utc: factories.date_time_iso_8601(),
|
|
15903
15988
|
automatic_payout_effective_at_utc: factories.date_time_iso_8601(),
|
|
@@ -15907,8 +15992,7 @@ var factories = {
|
|
|
15907
15992
|
payment_method_type: factories.string(),
|
|
15908
15993
|
card_brand: factories.string(),
|
|
15909
15994
|
statement_descriptor: factories.string(),
|
|
15910
|
-
|
|
15911
|
-
transfer_metadata: factories.object(),
|
|
15995
|
+
metadata: factories['io.flow.internal.v0.unions.stripe_connect_report_record_metadata'](),
|
|
15912
15996
|
}); },
|
|
15913
15997
|
'io.flow.internal.v0.models.stripe_connect_report_record_deleted': function () { return ({
|
|
15914
15998
|
discriminator: 'stripe_connect_report_record_deleted',
|
|
@@ -15916,11 +16000,46 @@ var factories = {
|
|
|
15916
16000
|
timestamp: factories.date_time_iso_8601(),
|
|
15917
16001
|
id: factories.string(),
|
|
15918
16002
|
}); },
|
|
16003
|
+
'io.flow.internal.v0.models.stripe_connect_report_record_payment_metadata': function () { return ({
|
|
16004
|
+
discriminator: 'stripe_connect_report_record_payment_metadata',
|
|
16005
|
+
shop_id: factories.integer(),
|
|
16006
|
+
shop_plan: factories['io.flow.internal.v0.enums.shopify_plan_type'](),
|
|
16007
|
+
checkout_id: factories.string(),
|
|
16008
|
+
order_id: factories.integer(),
|
|
16009
|
+
order_transaction_id: factories.integer(),
|
|
16010
|
+
transfer_type: factories['io.flow.internal.v0.enums.connect_report_payment_transfer_type'](),
|
|
16011
|
+
transfer_exchange_rate: factories.decimal(),
|
|
16012
|
+
charge_total: factories.integer(),
|
|
16013
|
+
charge_currency: factories.string(),
|
|
16014
|
+
charge_exchange_rate: factories.decimal(),
|
|
16015
|
+
refund_exchange_rate: factories.decimal(),
|
|
16016
|
+
duties: factories.integer(),
|
|
16017
|
+
import_taxes: factories.integer(),
|
|
16018
|
+
mor_fees: factories.integer(),
|
|
16019
|
+
mor_foreign_exchange_fees: factories.integer(),
|
|
16020
|
+
}); },
|
|
16021
|
+
'io.flow.internal.v0.models.stripe_connect_report_record_transfer_metadata': function () { return ({
|
|
16022
|
+
discriminator: 'stripe_connect_report_record_transfer_metadata',
|
|
16023
|
+
shop_id: factories.integer(),
|
|
16024
|
+
order_id: factories.integer(),
|
|
16025
|
+
order_transaction_id: factories.integer(),
|
|
16026
|
+
transfer_type: factories['io.flow.internal.v0.enums.connect_report_transfer_transfer_type'](),
|
|
16027
|
+
charge_total: factories.integer(),
|
|
16028
|
+
charge_currency: factories.string(),
|
|
16029
|
+
charge_exchange_rate: factories.decimal(),
|
|
16030
|
+
duties: factories.integer(),
|
|
16031
|
+
import_taxes: factories.integer(),
|
|
16032
|
+
mor_fees: factories.integer(),
|
|
16033
|
+
mor_foreign_exchange_fees: factories.integer(),
|
|
16034
|
+
merchant_account_currency: factories.string(),
|
|
16035
|
+
amount_in_merchant_account_currency: factories.integer(),
|
|
16036
|
+
payout_exchange_rate: factories.decimal(),
|
|
16037
|
+
}); },
|
|
15919
16038
|
'io.flow.internal.v0.models.stripe_connect_report_record_upserted': function () { return ({
|
|
15920
16039
|
discriminator: 'stripe_connect_report_record_upserted',
|
|
15921
16040
|
event_id: factories.string(),
|
|
15922
16041
|
timestamp: factories.date_time_iso_8601(),
|
|
15923
|
-
record: factories['io.flow.
|
|
16042
|
+
record: factories['io.flow.internal.v0.models.stripe_connect_report_record'](),
|
|
15924
16043
|
}); },
|
|
15925
16044
|
'io.flow.internal.v0.models.stripe_dispute_deleted': function () { return ({
|
|
15926
16045
|
discriminator: 'stripe_dispute_deleted',
|
|
@@ -17200,6 +17319,8 @@ var factories = {
|
|
|
17200
17319
|
function () { return factories['io.flow.internal.v0.models.partner_tracking_subscription_deleted'](); },
|
|
17201
17320
|
function () { return factories['io.flow.internal.v0.models.spp_tracker_update_request_upserted'](); },
|
|
17202
17321
|
function () { return factories['io.flow.internal.v0.models.spp_tracker_update_request_deleted'](); },
|
|
17322
|
+
function () { return factories['io.flow.internal.v0.models.partner_request_upserted'](); },
|
|
17323
|
+
function () { return factories['io.flow.internal.v0.models.partner_request_deleted'](); },
|
|
17203
17324
|
function () { return factories['io.flow.internal.v0.models.internal_authorization_upserted'](); },
|
|
17204
17325
|
function () { return factories['io.flow.internal.v0.models.internal_authorization_deleted'](); },
|
|
17205
17326
|
function () { return factories['io.flow.internal.v0.models.afterpay_authorization_upserted'](); },
|
|
@@ -17299,6 +17420,8 @@ var factories = {
|
|
|
17299
17420
|
function () { return factories['io.flow.internal.v0.models.shopify_order_fulfillments_snapshot_deleted'](); },
|
|
17300
17421
|
function () { return factories['io.flow.internal.v0.models.shopify_merchant_plan_upserted'](); },
|
|
17301
17422
|
function () { return factories['io.flow.internal.v0.models.shopify_merchant_plan_deleted'](); },
|
|
17423
|
+
function () { return factories['io.flow.internal.v0.models.shopify_dispute_upserted'](); },
|
|
17424
|
+
function () { return factories['io.flow.internal.v0.models.shopify_dispute_deleted'](); },
|
|
17302
17425
|
function () { return factories['io.flow.internal.v0.models.stripe_authorization_deleted'](); },
|
|
17303
17426
|
function () { return factories['io.flow.internal.v0.models.stripe_authorization_upserted'](); },
|
|
17304
17427
|
function () { return factories['io.flow.internal.v0.models.stripe_reversal_deleted'](); },
|
|
@@ -17669,6 +17792,13 @@ var factories = {
|
|
|
17669
17792
|
]);
|
|
17670
17793
|
return f();
|
|
17671
17794
|
},
|
|
17795
|
+
'io.flow.internal.v0.unions.stripe_connect_report_record_metadata': function () {
|
|
17796
|
+
var f = faker.helpers.arrayElement([
|
|
17797
|
+
function () { return factories['io.flow.internal.v0.models.stripe_connect_report_record_payment_metadata'](); },
|
|
17798
|
+
function () { return factories['io.flow.internal.v0.models.stripe_connect_report_record_transfer_metadata'](); },
|
|
17799
|
+
]);
|
|
17800
|
+
return f();
|
|
17801
|
+
},
|
|
17672
17802
|
'io.flow.internal.v0.unions.tariff_eligibility_data': function () {
|
|
17673
17803
|
var f = faker.helpers.arrayElement([
|
|
17674
17804
|
function () { return factories['io.flow.internal.v0.models.registered_exporter_tariff_eligibility_data'](); },
|
|
@@ -19837,6 +19967,15 @@ var factories = {
|
|
|
19837
19967
|
'io.flow.payment.v0.enums.three_d_secure_code': function () { return faker.helpers.arrayElement(['verified', 'not_verified', 'failed']); },
|
|
19838
19968
|
'io.flow.payment.v0.enums.threeds_two_challenge_viewport': function () { return faker.helpers.arrayElement(['xxx_small', 'xx_small', 'x_small', 'small', 'fullscreen']); },
|
|
19839
19969
|
'io.flow.payment.v0.enums.token_type': function () { return faker.helpers.arrayElement(['permanent', 'one_time']); },
|
|
19970
|
+
'io.flow.payment.v0.enums.transfer_status': function () { return faker.helpers.arrayElement(['succeeded', 'canceled']); },
|
|
19971
|
+
'io.flow.payment.v0.enums.transfer_type': function () { return faker.helpers.arrayElement([
|
|
19972
|
+
'payout_to_merchant',
|
|
19973
|
+
'disputed_amount_to_merchant',
|
|
19974
|
+
'duties_and_taxes_adjustment_to_merchant',
|
|
19975
|
+
'disputed_amount_from_merchant',
|
|
19976
|
+
'duties_and_taxes_adjustment_from_merchant',
|
|
19977
|
+
'refund_from_merchant',
|
|
19978
|
+
]); },
|
|
19840
19979
|
'io.flow.payment.v0.models.ach_authorization_form': function () { return ({
|
|
19841
19980
|
discriminator: 'ach_authorization_form',
|
|
19842
19981
|
account_owner_name: factories.string(),
|
|
@@ -20019,6 +20158,7 @@ var factories = {
|
|
|
20019
20158
|
primary: factories.boolean(),
|
|
20020
20159
|
}); },
|
|
20021
20160
|
'io.flow.payment.v0.models.capture_reference': function () { return ({
|
|
20161
|
+
discriminator: 'capture_reference',
|
|
20022
20162
|
id: factories.string(),
|
|
20023
20163
|
key: factories.string(),
|
|
20024
20164
|
}); },
|
|
@@ -20209,6 +20349,15 @@ var factories = {
|
|
|
20209
20349
|
last4: factories.string(),
|
|
20210
20350
|
account_holder_name: factories.string(),
|
|
20211
20351
|
}); },
|
|
20352
|
+
'io.flow.payment.v0.models.dispute_reference': function () { return ({
|
|
20353
|
+
discriminator: 'dispute_reference',
|
|
20354
|
+
id: factories.string(),
|
|
20355
|
+
key: factories.string(),
|
|
20356
|
+
}); },
|
|
20357
|
+
'io.flow.payment.v0.models.exchanged_money': function () { return ({
|
|
20358
|
+
fx_rate: factories.decimal(),
|
|
20359
|
+
money: factories['io.flow.common.v0.models.money'](),
|
|
20360
|
+
}); },
|
|
20212
20361
|
'io.flow.payment.v0.models.expiration': function () { return ({
|
|
20213
20362
|
month: factories.integer(),
|
|
20214
20363
|
year: factories.integer(),
|
|
@@ -20518,6 +20667,7 @@ var factories = {
|
|
|
20518
20667
|
shipping: factories.decimal(),
|
|
20519
20668
|
}); },
|
|
20520
20669
|
'io.flow.payment.v0.models.refund_reference': function () { return ({
|
|
20670
|
+
discriminator: 'refund_reference',
|
|
20521
20671
|
id: factories.string(),
|
|
20522
20672
|
key: factories.string(),
|
|
20523
20673
|
}); },
|
|
@@ -20625,6 +20775,16 @@ var factories = {
|
|
|
20625
20775
|
network_transaction_id: factories.string(),
|
|
20626
20776
|
network: factories['io.flow.payment.v0.enums.card_type'](),
|
|
20627
20777
|
}); },
|
|
20778
|
+
'io.flow.payment.v0.models.transfer': function () { return ({
|
|
20779
|
+
id: factories.string(),
|
|
20780
|
+
type: factories['io.flow.payment.v0.enums.transfer_type'](),
|
|
20781
|
+
money: factories['io.flow.common.v0.models.money'](),
|
|
20782
|
+
transferred_money: factories['io.flow.payment.v0.models.exchanged_money'](),
|
|
20783
|
+
status: factories['io.flow.payment.v0.enums.transfer_status'](),
|
|
20784
|
+
created_at: factories.date_time_iso_8601(),
|
|
20785
|
+
reference: factories['io.flow.payment.v0.unions.transfer_reference'](),
|
|
20786
|
+
transferred_at: factories.date_time_iso_8601(),
|
|
20787
|
+
}); },
|
|
20628
20788
|
'io.flow.payment.v0.models.virtual_card': function () { return ({
|
|
20629
20789
|
id: factories.string(),
|
|
20630
20790
|
key: factories.string(),
|
|
@@ -20841,6 +21001,14 @@ var factories = {
|
|
|
20841
21001
|
var f = faker.helpers.arrayElement([function () { return factories['io.flow.payment.v0.models.transaction_details_card'](); }]);
|
|
20842
21002
|
return f();
|
|
20843
21003
|
},
|
|
21004
|
+
'io.flow.payment.v0.unions.transfer_reference': function () {
|
|
21005
|
+
var f = faker.helpers.arrayElement([
|
|
21006
|
+
function () { return factories['io.flow.payment.v0.models.capture_reference'](); },
|
|
21007
|
+
function () { return factories['io.flow.payment.v0.models.refund_reference'](); },
|
|
21008
|
+
function () { return factories['io.flow.payment.v0.models.dispute_reference'](); },
|
|
21009
|
+
]);
|
|
21010
|
+
return f();
|
|
21011
|
+
},
|
|
20844
21012
|
'io.flow.permission.v0.enums.authentication_technique': function () { return faker.helpers.arrayElement(['anonymous', 'session', 'token', 'partner_token', 'user']); },
|
|
20845
21013
|
'io.flow.permission.v0.enums.flow_behavior': function () { return faker.helpers.arrayElement(['view_consumer_data']); },
|
|
20846
21014
|
'io.flow.permission.v0.enums.flow_role': function () { return faker.helpers.arrayElement([
|
|
@@ -21337,6 +21505,12 @@ var factories = {
|
|
|
21337
21505
|
weight_unit: factories['io.flow.common.v0.enums.unit_of_measurement'](),
|
|
21338
21506
|
amount: factories['io.flow.common.v0.models.money'](),
|
|
21339
21507
|
}); },
|
|
21508
|
+
'io.flow.ratecard.v0.models.overweight_piece_surcharge_service_fee': function () { return ({
|
|
21509
|
+
discriminator: 'overweight_piece_surcharge_service_fee',
|
|
21510
|
+
weight_threshold: factories.decimal(),
|
|
21511
|
+
weight_unit: factories['io.flow.common.v0.enums.unit_of_measurement'](),
|
|
21512
|
+
amount: factories['io.flow.common.v0.models.money'](),
|
|
21513
|
+
}); },
|
|
21340
21514
|
'io.flow.ratecard.v0.models.peak_surcharge_by_weight_service_fee': function () { return ({
|
|
21341
21515
|
discriminator: 'peak_surcharge_by_weight_service_fee',
|
|
21342
21516
|
amount: factories['io.flow.common.v0.models.money'](),
|
|
@@ -21432,6 +21606,8 @@ var factories = {
|
|
|
21432
21606
|
discriminator: 'ratecard_estimate_v4',
|
|
21433
21607
|
hops: arrayOf(function () { return factories['io.flow.ratecard.v0.models.hop_v2'](); }),
|
|
21434
21608
|
delivered_duty: factories['io.flow.common.v0.enums.delivered_duty'](),
|
|
21609
|
+
distance_unit_of_measurement: factories['io.flow.common.v0.enums.unit_of_measurement'](),
|
|
21610
|
+
weight_unit_of_measurement: factories['io.flow.common.v0.enums.unit_of_measurement'](),
|
|
21435
21611
|
dimensional_weight: factories['io.flow.common.v0.models.measurement'](),
|
|
21436
21612
|
gravitational_weight: factories['io.flow.common.v0.models.measurement'](),
|
|
21437
21613
|
ratecard_id: factories.string(),
|
|
@@ -21444,6 +21620,7 @@ var factories = {
|
|
|
21444
21620
|
'io.flow.ratecard.v0.models.ratecard_form': function () { return ({
|
|
21445
21621
|
direction: factories['io.flow.label.v0.enums.direction'](),
|
|
21446
21622
|
effective_at: factories.date_time_iso_8601(),
|
|
21623
|
+
published_at: factories.date_time_iso_8601(),
|
|
21447
21624
|
origination_zones: arrayOf(function () { return factories['io.flow.common.v0.models.zone'](); }),
|
|
21448
21625
|
service: factories.string(),
|
|
21449
21626
|
number: factories.string(),
|
|
@@ -21619,6 +21796,7 @@ var factories = {
|
|
|
21619
21796
|
function () { return factories['io.flow.ratecard.v0.models.peak_surcharge_by_weight_service_fee'](); },
|
|
21620
21797
|
function () { return factories['io.flow.ratecard.v0.models.duties_taxes_paid_surcharge_service_fee'](); },
|
|
21621
21798
|
function () { return factories['io.flow.ratecard.v0.models.oversize_piece_surcharge_service_fee'](); },
|
|
21799
|
+
function () { return factories['io.flow.ratecard.v0.models.overweight_piece_surcharge_service_fee'](); },
|
|
21622
21800
|
function () { return factories['io.flow.ratecard.v0.models.remote_area_by_weight_service_fee'](); },
|
|
21623
21801
|
function () { return factories['io.flow.ratecard.v0.models.additional_handling_service_fee'](); },
|
|
21624
21802
|
function () { return factories['io.flow.ratecard.v0.models.large_package_service_fee'](); },
|
|
@@ -23560,6 +23738,7 @@ var factories = {
|
|
|
23560
23738
|
'orders/updated',
|
|
23561
23739
|
'orders/delete',
|
|
23562
23740
|
'orders/edited',
|
|
23741
|
+
'orders/risk_assessment_changed',
|
|
23563
23742
|
'products/create',
|
|
23564
23743
|
'products/delete',
|
|
23565
23744
|
'products/update',
|
|
@@ -24053,6 +24232,11 @@ var factories = {
|
|
|
24053
24232
|
total_tax: factories.decimal(),
|
|
24054
24233
|
total_tax_set: factories['io.flow.shopify.markets.v0.models.shopify_order_money_set'](),
|
|
24055
24234
|
}); },
|
|
24235
|
+
'io.flow.shopify.markets.v0.models.shopify_order_risk_assessment_changed': function () { return ({
|
|
24236
|
+
order_id: factories.long(),
|
|
24237
|
+
risk_level: factories.string(),
|
|
24238
|
+
created_at: factories.date_time_iso_8601(),
|
|
24239
|
+
}); },
|
|
24056
24240
|
'io.flow.shopify.markets.v0.models.shopify_order_shipping_line': function () { return ({
|
|
24057
24241
|
code: factories.string(),
|
|
24058
24242
|
price: factories.string(),
|
|
@@ -24623,12 +24807,55 @@ var factories = {
|
|
|
24623
24807
|
'io.flow.stripe.v0.enums.check_outcome': function () { return faker.helpers.arrayElement(['pass', 'fail', 'unavailable', 'unchecked']); },
|
|
24624
24808
|
'io.flow.stripe.v0.enums.code_verification_status': function () { return faker.helpers.arrayElement(['pending', 'succeeded', 'failed']); },
|
|
24625
24809
|
'io.flow.stripe.v0.enums.confirmation_method': function () { return faker.helpers.arrayElement(['automatic', 'manual']); },
|
|
24626
|
-
'io.flow.stripe.v0.enums.
|
|
24627
|
-
|
|
24628
|
-
|
|
24629
|
-
'
|
|
24630
|
-
'
|
|
24631
|
-
'
|
|
24810
|
+
'io.flow.stripe.v0.enums.connect_report_balance_reporting_category': function () { return faker.helpers.arrayElement([
|
|
24811
|
+
'anticipation_repayment',
|
|
24812
|
+
'climate_order_purchase',
|
|
24813
|
+
'climate_order_refund',
|
|
24814
|
+
'contribution',
|
|
24815
|
+
'currency_conversion',
|
|
24816
|
+
'fee',
|
|
24817
|
+
'other_adjustment',
|
|
24818
|
+
'payment_network_reserve_hold',
|
|
24819
|
+
'payment_network_reserve_release',
|
|
24820
|
+
'payout',
|
|
24821
|
+
'payout_minimum_balance_hold',
|
|
24822
|
+
'payout_minimum_balance_release',
|
|
24823
|
+
'payout_reversal',
|
|
24824
|
+
'risk_reserved_funds',
|
|
24825
|
+
'stripe_balance_payment_debit',
|
|
24826
|
+
'stripe_balance_payment_debit_reversal',
|
|
24827
|
+
'topup',
|
|
24828
|
+
'topup_reversal',
|
|
24829
|
+
'unreconciled_customer_funds',
|
|
24830
|
+
]); },
|
|
24831
|
+
'io.flow.stripe.v0.enums.connect_report_connect_reporting_category': function () { return faker.helpers.arrayElement([
|
|
24832
|
+
'advance',
|
|
24833
|
+
'advance_funding',
|
|
24834
|
+
'connect_collection_transfer',
|
|
24835
|
+
'connect_reserved_funds',
|
|
24836
|
+
'platform_earning',
|
|
24837
|
+
'platform_earning_refund',
|
|
24838
|
+
'transfer',
|
|
24839
|
+
'transfer_reversal',
|
|
24840
|
+
]); },
|
|
24841
|
+
'io.flow.stripe.v0.enums.connect_report_issuing_reporting_category': function () { return faker.helpers.arrayElement([
|
|
24842
|
+
'issuing_authorization_hold',
|
|
24843
|
+
'issuing_authorization_release',
|
|
24844
|
+
'issuing_disbursement',
|
|
24845
|
+
'issuing_dispute',
|
|
24846
|
+
'issuing_dispute_fraud_liability_debit',
|
|
24847
|
+
'issuing_dispute_provisional_credit',
|
|
24848
|
+
'issuing_dispute_provisional_credit_reversal',
|
|
24849
|
+
'issuing_transaction',
|
|
24850
|
+
]); },
|
|
24851
|
+
'io.flow.stripe.v0.enums.connect_report_payment_reporting_category': function () { return faker.helpers.arrayElement([
|
|
24852
|
+
'charge',
|
|
24853
|
+
'charge_failure',
|
|
24854
|
+
'dispute',
|
|
24855
|
+
'dispute_reversal',
|
|
24856
|
+
'partial_capture_reversal',
|
|
24857
|
+
'refund',
|
|
24858
|
+
'refund_failure',
|
|
24632
24859
|
]); },
|
|
24633
24860
|
'io.flow.stripe.v0.enums.decline_code': function () { return faker.helpers.arrayElement([
|
|
24634
24861
|
'approve_with_id',
|
|
@@ -25213,44 +25440,6 @@ var factories = {
|
|
|
25213
25440
|
attempts_remaining: factories.long(),
|
|
25214
25441
|
status: factories['io.flow.stripe.v0.enums.code_verification_status'](),
|
|
25215
25442
|
}); },
|
|
25216
|
-
'io.flow.stripe.v0.models.connect_report_record': function () { return ({
|
|
25217
|
-
created_utc: factories.date_time_iso_8601(),
|
|
25218
|
-
charge_id: factories.string(),
|
|
25219
|
-
payment_intent_id: factories.string(),
|
|
25220
|
-
gross: factories.decimal(),
|
|
25221
|
-
fee: factories.decimal(),
|
|
25222
|
-
net: factories.decimal(),
|
|
25223
|
-
currency: factories.string(),
|
|
25224
|
-
connected_account: factories.string(),
|
|
25225
|
-
reporting_category: factories['io.flow.stripe.v0.enums.connect_report_reporting_category'](),
|
|
25226
|
-
dispute_reason: factories['io.flow.stripe.v0.enums.dispute_reason'](),
|
|
25227
|
-
available_on_utc: factories.date_time_iso_8601(),
|
|
25228
|
-
automatic_payout_effective_at_utc: factories.date_time_iso_8601(),
|
|
25229
|
-
source_id: factories.string(),
|
|
25230
|
-
customer_facing_amount: factories.decimal(),
|
|
25231
|
-
customer_facing_currency: factories.string(),
|
|
25232
|
-
payment_method_type: factories.string(),
|
|
25233
|
-
card_brand: factories.string(),
|
|
25234
|
-
statement_descriptor: factories.string(),
|
|
25235
|
-
payment_metadata: factories['io.flow.stripe.v0.models.connect_report_record_payment_metadata'](),
|
|
25236
|
-
transfer_metadata: factories.object(),
|
|
25237
|
-
}); },
|
|
25238
|
-
'io.flow.stripe.v0.models.connect_report_record_payment_metadata': function () { return ({
|
|
25239
|
-
shop_id: factories.integer(),
|
|
25240
|
-
shop_plan: factories['io.flow.stripe.v0.enums.connect_report_shop_plan'](),
|
|
25241
|
-
checkout_id: factories.string(),
|
|
25242
|
-
order_id: factories.integer(),
|
|
25243
|
-
order_transaction_id: factories.integer(),
|
|
25244
|
-
transfer_type: factories['io.flow.stripe.v0.enums.connect_report_transfer_type'](),
|
|
25245
|
-
transfer_exchange_rate: factories.decimal(),
|
|
25246
|
-
charge_total: factories.integer(),
|
|
25247
|
-
charge_currency: factories.string(),
|
|
25248
|
-
charge_exchange_rate: factories.decimal(),
|
|
25249
|
-
duties: factories.integer(),
|
|
25250
|
-
import_taxes: factories.integer(),
|
|
25251
|
-
mor_fee: factories.integer(),
|
|
25252
|
-
fx_fee: factories.integer(),
|
|
25253
|
-
}); },
|
|
25254
25443
|
'io.flow.stripe.v0.models.customer': function () { return ({
|
|
25255
25444
|
id: factories.string(),
|
|
25256
25445
|
object: factories.string(),
|
|
@@ -26144,6 +26333,22 @@ var factories = {
|
|
|
26144
26333
|
]);
|
|
26145
26334
|
return f();
|
|
26146
26335
|
},
|
|
26336
|
+
'io.flow.stripe.v0.unions.connect_report_reporting_category': function () {
|
|
26337
|
+
var f = faker.helpers.arrayElement([function () { return ({
|
|
26338
|
+
discriminator: 'connect_report_payment_reporting_category',
|
|
26339
|
+
value: factories['io.flow.stripe.v0.enums.connect_report_payment_reporting_category'](),
|
|
26340
|
+
}); }, function () { return ({
|
|
26341
|
+
discriminator: 'connect_report_balance_reporting_category',
|
|
26342
|
+
value: factories['io.flow.stripe.v0.enums.connect_report_balance_reporting_category'](),
|
|
26343
|
+
}); }, function () { return ({
|
|
26344
|
+
discriminator: 'connect_report_issuing_reporting_category',
|
|
26345
|
+
value: factories['io.flow.stripe.v0.enums.connect_report_issuing_reporting_category'](),
|
|
26346
|
+
}); }, function () { return ({
|
|
26347
|
+
discriminator: 'connect_report_connect_reporting_category',
|
|
26348
|
+
value: factories['io.flow.stripe.v0.enums.connect_report_connect_reporting_category'](),
|
|
26349
|
+
}); }]);
|
|
26350
|
+
return f();
|
|
26351
|
+
},
|
|
26147
26352
|
'io.flow.stripe.v0.unions.payment_method_data': function () {
|
|
26148
26353
|
var f = faker.helpers.arrayElement([
|
|
26149
26354
|
function () { return factories['io.flow.stripe.v0.models.payment_method_data_card'](); },
|
|
@@ -26933,6 +27138,8 @@ export var makeComplianceData = function () { return factories['io.flow.internal
|
|
|
26933
27138
|
export var makeComplianceForm = function () { return factories['io.flow.internal.v0.unions.compliance_form'](); };
|
|
26934
27139
|
export var makeComplianceType = function () { return factories['io.flow.internal.v0.enums.compliance_type'](); };
|
|
26935
27140
|
export var makeComponents = function () { return factories['io.flow.internal.v0.models.components'](); };
|
|
27141
|
+
export var makeConnectReportPaymentTransferType = function () { return factories['io.flow.internal.v0.enums.connect_report_payment_transfer_type'](); };
|
|
27142
|
+
export var makeConnectReportTransferTransferType = function () { return factories['io.flow.internal.v0.enums.connect_report_transfer_transfer_type'](); };
|
|
26936
27143
|
export var makeConsoleLabelRequestForm = function () { return factories['io.flow.internal.v0.models.console_label_request_form'](); };
|
|
26937
27144
|
export var makeConsoleLabelValidationForm = function () { return factories['io.flow.internal.v0.unions.console_label_validation_form'](); };
|
|
26938
27145
|
export var makeConsoleMarkUnresolvableForm = function () { return factories['io.flow.internal.v0.models.console_mark_unresolvable_form'](); };
|
|
@@ -27487,6 +27694,7 @@ export var makeMerchantGuidAssignmentDeleted = function () { return factories['i
|
|
|
27487
27694
|
export var makeMerchantGuidAssignmentUpserted = function () { return factories['io.flow.internal.v0.models.merchant_guid_assignment_upserted'](); };
|
|
27488
27695
|
export var makeMerchantHubOverride = function () { return factories['io.flow.internal.v0.models.merchant_hub_override'](); };
|
|
27489
27696
|
export var makeMerchantHubOverrideForm = function () { return factories['io.flow.internal.v0.models.merchant_hub_override_form'](); };
|
|
27697
|
+
export var makeMerchantOfRecord = function () { return factories['io.flow.internal.v0.enums.merchant_of_record'](); };
|
|
27490
27698
|
export var makeMerchantOfRecordEntitySettings = function () { return factories['io.flow.internal.v0.models.merchant_of_record_entity_settings'](); };
|
|
27491
27699
|
export var makeMerchantOfRecordEntitySettingsForm = function () { return factories['io.flow.internal.v0.models.merchant_of_record_entity_settings_form'](); };
|
|
27492
27700
|
export var makeMerchantOverride = function () { return factories['io.flow.internal.v0.models.merchant_override'](); };
|
|
@@ -27639,6 +27847,7 @@ export var makeOrganizationRestrictionStatusNote = function () { return factorie
|
|
|
27639
27847
|
export var makeOrganizationRestrictionStatusUpserted = function () { return factories['io.flow.internal.v0.models.organization_restriction_status_upserted'](); };
|
|
27640
27848
|
export var makeOrganizationSettings = function () { return factories['io.flow.internal.v0.models.organization_settings'](); };
|
|
27641
27849
|
export var makeOrganizationSettingsForm = function () { return factories['io.flow.internal.v0.models.organization_settings_form'](); };
|
|
27850
|
+
export var makeOrganizationSource = function () { return factories['io.flow.internal.v0.enums.organization_source'](); };
|
|
27642
27851
|
export var makeOrganizationStatusChange = function () { return factories['io.flow.internal.v0.models.organization_status_change'](); };
|
|
27643
27852
|
export var makeOrganizationStatusChangeDeleted = function () { return factories['io.flow.internal.v0.models.organization_status_change_deleted'](); };
|
|
27644
27853
|
export var makeOrganizationStatusChangeUpserted = function () { return factories['io.flow.internal.v0.models.organization_status_change_upserted'](); };
|
|
@@ -27681,6 +27890,9 @@ export var makePartnerOrganizationSettings = function () { return factories['io.
|
|
|
27681
27890
|
export var makePartnerOrganizationSettingsDeleted = function () { return factories['io.flow.internal.v0.models.partner_organization_settings_deleted'](); };
|
|
27682
27891
|
export var makePartnerOrganizationSettingsForm = function () { return factories['io.flow.internal.v0.models.partner_organization_settings_form'](); };
|
|
27683
27892
|
export var makePartnerOrganizationSettingsUpserted = function () { return factories['io.flow.internal.v0.models.partner_organization_settings_upserted'](); };
|
|
27893
|
+
export var makePartnerRequest = function () { return factories['io.flow.internal.v0.models.partner_request'](); };
|
|
27894
|
+
export var makePartnerRequestDeleted = function () { return factories['io.flow.internal.v0.models.partner_request_deleted'](); };
|
|
27895
|
+
export var makePartnerRequestUpserted = function () { return factories['io.flow.internal.v0.models.partner_request_upserted'](); };
|
|
27684
27896
|
export var makePartnerTrackingSubscriptionDeleted = function () { return factories['io.flow.internal.v0.models.partner_tracking_subscription_deleted'](); };
|
|
27685
27897
|
export var makePartnerTrackingSubscriptionUpserted = function () { return factories['io.flow.internal.v0.models.partner_tracking_subscription_upserted'](); };
|
|
27686
27898
|
export var makePassphrase = function () { return factories['io.flow.internal.v0.models.passphrase'](); };
|
|
@@ -27936,6 +28148,7 @@ export var makeRestrictionOrganizationDecisionSummary = function () { return fac
|
|
|
27936
28148
|
export var makeRestrictionOrganizationStatus = function () { return factories['io.flow.internal.v0.models.restriction_organization_status'](); };
|
|
27937
28149
|
export var makeRestrictionOrganizationStatusDeleted = function () { return factories['io.flow.internal.v0.models.restriction_organization_status_deleted'](); };
|
|
27938
28150
|
export var makeRestrictionOrganizationStatusUpserted = function () { return factories['io.flow.internal.v0.models.restriction_organization_status_upserted'](); };
|
|
28151
|
+
export var makeRestrictionOrganizationSummary = function () { return factories['io.flow.internal.v0.models.restriction_organization_summary'](); };
|
|
27939
28152
|
export var makeRestrictionPending = function () { return factories['io.flow.internal.v0.models.restriction_pending'](); };
|
|
27940
28153
|
export var makeRestrictionProduct = function () { return factories['io.flow.internal.v0.models.restriction_product'](); };
|
|
27941
28154
|
export var makeRestrictionProductDecisionForm = function () { return factories['io.flow.internal.v0.models.restriction_product_decision_form'](); };
|
|
@@ -28016,6 +28229,9 @@ export var makeShopifyChannelOrganizationTokens = function () { return factories
|
|
|
28016
28229
|
export var makeShopifyCheckInventoryError = function () { return factories['io.flow.internal.v0.models.shopify_check_inventory_error'](); };
|
|
28017
28230
|
export var makeShopifyCheckInventoryErrorCode = function () { return factories['io.flow.internal.v0.enums.shopify_check_inventory_error_code'](); };
|
|
28018
28231
|
export var makeShopifyCodeForm = function () { return factories['io.flow.internal.v0.models.shopify_code_form'](); };
|
|
28232
|
+
export var makeShopifyDispute = function () { return factories['io.flow.internal.v0.models.shopify_dispute'](); };
|
|
28233
|
+
export var makeShopifyDisputeDeleted = function () { return factories['io.flow.internal.v0.models.shopify_dispute_deleted'](); };
|
|
28234
|
+
export var makeShopifyDisputeUpserted = function () { return factories['io.flow.internal.v0.models.shopify_dispute_upserted'](); };
|
|
28019
28235
|
export var makeShopifyExperienceShortId = function () { return factories['io.flow.internal.v0.models.shopify_experience_short_id'](); };
|
|
28020
28236
|
export var makeShopifyExperienceShortIdDeleted = function () { return factories['io.flow.internal.v0.models.shopify_experience_short_id_deleted'](); };
|
|
28021
28237
|
export var makeShopifyExperienceShortIdUpserted = function () { return factories['io.flow.internal.v0.models.shopify_experience_short_id_upserted'](); };
|
|
@@ -28209,6 +28425,9 @@ export var makeStripeCaptureDeleted = function () { return factories['io.flow.in
|
|
|
28209
28425
|
export var makeStripeCaptureUpserted = function () { return factories['io.flow.internal.v0.models.stripe_capture_upserted'](); };
|
|
28210
28426
|
export var makeStripeConnectReportRecord = function () { return factories['io.flow.internal.v0.models.stripe_connect_report_record'](); };
|
|
28211
28427
|
export var makeStripeConnectReportRecordDeleted = function () { return factories['io.flow.internal.v0.models.stripe_connect_report_record_deleted'](); };
|
|
28428
|
+
export var makeStripeConnectReportRecordMetadata = function () { return factories['io.flow.internal.v0.unions.stripe_connect_report_record_metadata'](); };
|
|
28429
|
+
export var makeStripeConnectReportRecordPaymentMetadata = function () { return factories['io.flow.internal.v0.models.stripe_connect_report_record_payment_metadata'](); };
|
|
28430
|
+
export var makeStripeConnectReportRecordTransferMetadata = function () { return factories['io.flow.internal.v0.models.stripe_connect_report_record_transfer_metadata'](); };
|
|
28212
28431
|
export var makeStripeConnectReportRecordUpserted = function () { return factories['io.flow.internal.v0.models.stripe_connect_report_record_upserted'](); };
|
|
28213
28432
|
export var makeStripeDisputeDeleted = function () { return factories['io.flow.internal.v0.models.stripe_dispute_deleted'](); };
|
|
28214
28433
|
export var makeStripeDisputeUpserted = function () { return factories['io.flow.internal.v0.models.stripe_dispute_upserted'](); };
|