@flowio/api-factories 0.0.37 → 0.0.39
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 +169 -43
- package/dist/esm/api.js +119 -10
- package/dist/types/api.d.ts +18 -1
- package/package.json +2 -2
- package/src/api.ts +139 -11
package/src/api.ts
CHANGED
|
@@ -2388,11 +2388,13 @@ const factories = {
|
|
|
2388
2388
|
|
|
2389
2389
|
'io.flow.v0.enums.event_type': (): io.flow.v0.enums.EventType => faker.random.arrayElement([
|
|
2390
2390
|
'transaction_upserted',
|
|
2391
|
-
'
|
|
2391
|
+
'organization_transaction_upserted',
|
|
2392
|
+
'organization_transaction_deleted',
|
|
2392
2393
|
'statement_upserted',
|
|
2393
2394
|
'statement_deleted',
|
|
2394
2395
|
'channel_transaction_upserted',
|
|
2395
2396
|
'channel_transaction_deleted',
|
|
2397
|
+
'channel_transaction_deleted_v2',
|
|
2396
2398
|
'channel_statement_upserted',
|
|
2397
2399
|
'channel_statement_deleted',
|
|
2398
2400
|
'attribute_upserted',
|
|
@@ -2681,9 +2683,23 @@ const factories = {
|
|
|
2681
2683
|
]),
|
|
2682
2684
|
|
|
2683
2685
|
'io.flow.v0.enums.merchant_of_record': (): io.flow.v0.enums.MerchantOfRecord => faker.random.arrayElement(['flow', 'organization']),
|
|
2686
|
+
|
|
2687
|
+
'io.flow.v0.enums.merchant_rejected_reason': (): io.flow.v0.enums.MerchantRejectedReason => faker.random.arrayElement([
|
|
2688
|
+
'merchant_ubo_is_pep',
|
|
2689
|
+
'merchant_catalog_is_unsupportable',
|
|
2690
|
+
'merchant_failed_kyb_review',
|
|
2691
|
+
]),
|
|
2692
|
+
|
|
2684
2693
|
'io.flow.v0.enums.method': (): io.flow.v0.enums.Method => faker.random.arrayElement(['post']),
|
|
2685
2694
|
'io.flow.v0.enums.onboarding_application_status': (): io.flow.v0.enums.OnboardingApplicationStatus => faker.random.arrayElement(['to_do', 'in_progress', 'on_hold', 'rejected', 'accepted']),
|
|
2686
2695
|
|
|
2696
|
+
'io.flow.v0.enums.onboarding_blocked_reason': (): io.flow.v0.enums.OnboardingBlockedReason => faker.random.arrayElement([
|
|
2697
|
+
'street_address_is_blank_3pl',
|
|
2698
|
+
'street_address_is_po_box_3pl',
|
|
2699
|
+
'business_street_address_is_blank',
|
|
2700
|
+
'business_street_address_is_po_box',
|
|
2701
|
+
]),
|
|
2702
|
+
|
|
2687
2703
|
'io.flow.v0.enums.onboarding_trade_sector': (): io.flow.v0.enums.OnboardingTradeSector => faker.random.arrayElement([
|
|
2688
2704
|
'accessories',
|
|
2689
2705
|
'animals_and_pet_supplies',
|
|
@@ -3090,6 +3106,7 @@ const factories = {
|
|
|
3090
3106
|
'other_adjustment',
|
|
3091
3107
|
'tax_adjustment',
|
|
3092
3108
|
'channel',
|
|
3109
|
+
'channel_billed',
|
|
3093
3110
|
'order_service',
|
|
3094
3111
|
'virtual_card_capture',
|
|
3095
3112
|
'virtual_card_refund',
|
|
@@ -3547,6 +3564,11 @@ const factories = {
|
|
|
3547
3564
|
display_name: factories.string(),
|
|
3548
3565
|
}),
|
|
3549
3566
|
|
|
3567
|
+
'io.flow.v0.models.application_received': (): io.flow.v0.models.ApplicationReceived => ({
|
|
3568
|
+
discriminator: 'application_received',
|
|
3569
|
+
placeholder: factories.boolean(),
|
|
3570
|
+
}),
|
|
3571
|
+
|
|
3550
3572
|
'io.flow.v0.models.at_cost': (): io.flow.v0.models.AtCost => ({
|
|
3551
3573
|
discriminator: 'at_cost',
|
|
3552
3574
|
ignore: factories.string(),
|
|
@@ -3897,6 +3919,10 @@ const factories = {
|
|
|
3897
3919
|
account_number: factories.string(),
|
|
3898
3920
|
}),
|
|
3899
3921
|
|
|
3922
|
+
'io.flow.v0.models.bank_account_reference': (): io.flow.v0.models.BankAccountReference => ({
|
|
3923
|
+
id: factories.string(),
|
|
3924
|
+
}),
|
|
3925
|
+
|
|
3900
3926
|
'io.flow.v0.models.behavior_audit': (): io.flow.v0.models.BehaviorAudit => ({
|
|
3901
3927
|
behavior: factories['io.flow.v0.enums.flow_behavior'](),
|
|
3902
3928
|
authentication_techniques: arrayOf(() => factories['io.flow.v0.enums.authentication_technique']()),
|
|
@@ -4607,6 +4633,7 @@ const factories = {
|
|
|
4607
4633
|
withholdings: arrayOf(() => factories['io.flow.v0.models.withholding_deduction']()),
|
|
4608
4634
|
discounts: arrayOf(() => factories['io.flow.v0.models.billing_discount']()),
|
|
4609
4635
|
net: factories.decimal(),
|
|
4636
|
+
identifiers: objectOf(() => factories.string()),
|
|
4610
4637
|
created_at: factories.date_time_iso_8601(),
|
|
4611
4638
|
}),
|
|
4612
4639
|
|
|
@@ -4618,6 +4645,14 @@ const factories = {
|
|
|
4618
4645
|
channel_transaction: factories['io.flow.v0.models.channel_transaction'](),
|
|
4619
4646
|
}),
|
|
4620
4647
|
|
|
4648
|
+
'io.flow.v0.models.channel_transaction_deleted_v2': (): io.flow.v0.models.ChannelTransactionDeletedV2 => ({
|
|
4649
|
+
discriminator: 'channel_transaction_deleted_v2',
|
|
4650
|
+
event_id: factories.string(),
|
|
4651
|
+
timestamp: factories.date_time_iso_8601(),
|
|
4652
|
+
channel_id: factories.string(),
|
|
4653
|
+
id: factories.string(),
|
|
4654
|
+
}),
|
|
4655
|
+
|
|
4621
4656
|
'io.flow.v0.models.channel_transaction_upserted': (): io.flow.v0.models.ChannelTransactionUpserted => ({
|
|
4622
4657
|
discriminator: 'channel_transaction_upserted',
|
|
4623
4658
|
event_id: factories.string(),
|
|
@@ -5277,6 +5312,10 @@ const factories = {
|
|
|
5277
5312
|
amount: factories.decimal(),
|
|
5278
5313
|
}),
|
|
5279
5314
|
|
|
5315
|
+
'io.flow.v0.models.default_bank_account_form': (): io.flow.v0.models.DefaultBankAccountForm => ({
|
|
5316
|
+
bank_account_id: factories.string(),
|
|
5317
|
+
}),
|
|
5318
|
+
|
|
5280
5319
|
'io.flow.v0.models.delivered_duty_setting': (): io.flow.v0.models.DeliveredDutySetting => ({
|
|
5281
5320
|
'default': factories['io.flow.v0.enums.delivered_duty'](),
|
|
5282
5321
|
available: arrayOf(() => factories['io.flow.v0.enums.delivered_duty']()),
|
|
@@ -6748,6 +6787,11 @@ const factories = {
|
|
|
6748
6787
|
'import': factories['io.flow.v0.models.import'](),
|
|
6749
6788
|
}),
|
|
6750
6789
|
|
|
6790
|
+
'io.flow.v0.models.in_compliance_review': (): io.flow.v0.models.InComplianceReview => ({
|
|
6791
|
+
discriminator: 'in_compliance_review',
|
|
6792
|
+
placeholder: factories.boolean(),
|
|
6793
|
+
}),
|
|
6794
|
+
|
|
6751
6795
|
'io.flow.v0.models.inbound_carton_fee': (): io.flow.v0.models.InboundCartonFee => ({
|
|
6752
6796
|
discriminator: 'inbound_carton_fee',
|
|
6753
6797
|
amount: factories['io.flow.v0.models.money'](),
|
|
@@ -7656,6 +7700,11 @@ const factories = {
|
|
|
7656
7700
|
membership: factories['io.flow.v0.models.membership'](),
|
|
7657
7701
|
}),
|
|
7658
7702
|
|
|
7703
|
+
'io.flow.v0.models.merchant_activated': (): io.flow.v0.models.MerchantActivated => ({
|
|
7704
|
+
discriminator: 'merchant_activated',
|
|
7705
|
+
placeholder: factories.boolean(),
|
|
7706
|
+
}),
|
|
7707
|
+
|
|
7659
7708
|
'io.flow.v0.models.merchant_application_deleted': (): io.flow.v0.models.MerchantApplicationDeleted => ({
|
|
7660
7709
|
discriminator: 'merchant_application_deleted',
|
|
7661
7710
|
event_id: factories.string(),
|
|
@@ -7764,6 +7813,12 @@ const factories = {
|
|
|
7764
7813
|
country: factories.string(),
|
|
7765
7814
|
}),
|
|
7766
7815
|
|
|
7816
|
+
'io.flow.v0.models.merchant_rejected': (): io.flow.v0.models.MerchantRejected => ({
|
|
7817
|
+
discriminator: 'merchant_rejected',
|
|
7818
|
+
reason: factories['io.flow.v0.enums.merchant_rejected_reason'](),
|
|
7819
|
+
description: factories.string(),
|
|
7820
|
+
}),
|
|
7821
|
+
|
|
7767
7822
|
'io.flow.v0.models.money': (): io.flow.v0.models.Money => ({
|
|
7768
7823
|
amount: factories.double(),
|
|
7769
7824
|
currency: factories.string(),
|
|
@@ -7861,6 +7916,11 @@ const factories = {
|
|
|
7861
7916
|
status: factories['io.flow.v0.enums.organization_status'](),
|
|
7862
7917
|
}),
|
|
7863
7918
|
|
|
7919
|
+
'io.flow.v0.models.onboarding_state_transition': (): io.flow.v0.models.OnboardingStateTransition => ({
|
|
7920
|
+
state: factories['io.flow.v0.unions.onboarding_state'](),
|
|
7921
|
+
started_at: factories.date_time_iso_8601(),
|
|
7922
|
+
}),
|
|
7923
|
+
|
|
7864
7924
|
'io.flow.v0.models.online_authorization': (): io.flow.v0.models.OnlineAuthorization => ({
|
|
7865
7925
|
discriminator: 'online_authorization',
|
|
7866
7926
|
id: factories.string(),
|
|
@@ -8720,6 +8780,11 @@ const factories = {
|
|
|
8720
8780
|
id: factories.string(),
|
|
8721
8781
|
}),
|
|
8722
8782
|
|
|
8783
|
+
'io.flow.v0.models.organization_default_bank_account': (): io.flow.v0.models.OrganizationDefaultBankAccount => ({
|
|
8784
|
+
id: factories.string(),
|
|
8785
|
+
bank_account: factories['io.flow.v0.models.bank_account_reference'](),
|
|
8786
|
+
}),
|
|
8787
|
+
|
|
8723
8788
|
'io.flow.v0.models.organization_default_configurations': (): io.flow.v0.models.OrganizationDefaultConfigurations => ({
|
|
8724
8789
|
id: factories.string(),
|
|
8725
8790
|
checkout_configuration: factories['io.flow.v0.models.organization_configuration_reference'](),
|
|
@@ -8777,6 +8842,12 @@ const factories = {
|
|
|
8777
8842
|
type: factories['io.flow.v0.enums.organization_type'](),
|
|
8778
8843
|
}),
|
|
8779
8844
|
|
|
8845
|
+
'io.flow.v0.models.organization_onboarding_state': (): io.flow.v0.models.OrganizationOnboardingState => ({
|
|
8846
|
+
organization: factories['io.flow.v0.models.organization_reference'](),
|
|
8847
|
+
transitions: arrayOf(() => factories['io.flow.v0.models.onboarding_state_transition']()),
|
|
8848
|
+
current_state: factories['io.flow.v0.unions.onboarding_state'](),
|
|
8849
|
+
}),
|
|
8850
|
+
|
|
8780
8851
|
'io.flow.v0.models.organization_put_form': (): io.flow.v0.models.OrganizationPutForm => ({
|
|
8781
8852
|
name: factories.string(),
|
|
8782
8853
|
environment: factories['io.flow.v0.enums.environment'](),
|
|
@@ -8877,6 +8948,22 @@ const factories = {
|
|
|
8877
8948
|
organization: factories['io.flow.v0.models.organization_reference'](),
|
|
8878
8949
|
}),
|
|
8879
8950
|
|
|
8951
|
+
'io.flow.v0.models.organization_transaction_deleted': (): io.flow.v0.models.OrganizationTransactionDeleted => ({
|
|
8952
|
+
discriminator: 'organization_transaction_deleted',
|
|
8953
|
+
event_id: factories.string(),
|
|
8954
|
+
timestamp: factories.date_time_iso_8601(),
|
|
8955
|
+
organization: factories.string(),
|
|
8956
|
+
id: factories.string(),
|
|
8957
|
+
}),
|
|
8958
|
+
|
|
8959
|
+
'io.flow.v0.models.organization_transaction_upserted': (): io.flow.v0.models.OrganizationTransactionUpserted => ({
|
|
8960
|
+
discriminator: 'organization_transaction_upserted',
|
|
8961
|
+
event_id: factories.string(),
|
|
8962
|
+
timestamp: factories.date_time_iso_8601(),
|
|
8963
|
+
organization: factories.string(),
|
|
8964
|
+
transaction: factories['io.flow.v0.models.transaction'](),
|
|
8965
|
+
}),
|
|
8966
|
+
|
|
8880
8967
|
'io.flow.v0.models.organization_upserted': (): io.flow.v0.models.OrganizationUpserted => ({
|
|
8881
8968
|
discriminator: 'organization_upserted',
|
|
8882
8969
|
event_id: factories.string(),
|
|
@@ -10954,6 +11041,21 @@ const factories = {
|
|
|
10954
11041
|
id: factories.string(),
|
|
10955
11042
|
}),
|
|
10956
11043
|
|
|
11044
|
+
'io.flow.v0.models.setup_blocked': (): io.flow.v0.models.SetupBlocked => ({
|
|
11045
|
+
discriminator: 'setup_blocked',
|
|
11046
|
+
reasons: arrayOf(() => factories['io.flow.v0.enums.onboarding_blocked_reason']()),
|
|
11047
|
+
}),
|
|
11048
|
+
|
|
11049
|
+
'io.flow.v0.models.setup_completed': (): io.flow.v0.models.SetupCompleted => ({
|
|
11050
|
+
discriminator: 'setup_completed',
|
|
11051
|
+
placeholder: factories.boolean(),
|
|
11052
|
+
}),
|
|
11053
|
+
|
|
11054
|
+
'io.flow.v0.models.setup_in_progress': (): io.flow.v0.models.SetupInProgress => ({
|
|
11055
|
+
discriminator: 'setup_in_progress',
|
|
11056
|
+
placeholder: factories.boolean(),
|
|
11057
|
+
}),
|
|
11058
|
+
|
|
10957
11059
|
'io.flow.v0.models.shipment_window': (): io.flow.v0.models.ShipmentWindow => ({
|
|
10958
11060
|
from: factories.long(),
|
|
10959
11061
|
to: factories.long(),
|
|
@@ -12328,17 +12430,10 @@ const factories = {
|
|
|
12328
12430
|
withholdings: arrayOf(() => factories['io.flow.v0.models.withholding_deduction']()),
|
|
12329
12431
|
discounts: arrayOf(() => factories['io.flow.v0.models.billing_discount']()),
|
|
12330
12432
|
net: factories.decimal(),
|
|
12433
|
+
identifiers: objectOf(() => factories.string()),
|
|
12331
12434
|
created_at: factories.date_time_iso_8601(),
|
|
12332
12435
|
}),
|
|
12333
12436
|
|
|
12334
|
-
'io.flow.v0.models.transaction_deleted': (): io.flow.v0.models.TransactionDeleted => ({
|
|
12335
|
-
discriminator: 'transaction_deleted',
|
|
12336
|
-
event_id: factories.string(),
|
|
12337
|
-
timestamp: factories.date_time_iso_8601(),
|
|
12338
|
-
organization: factories.string(),
|
|
12339
|
-
transaction: factories['io.flow.v0.models.transaction'](),
|
|
12340
|
-
}),
|
|
12341
|
-
|
|
12342
12437
|
'io.flow.v0.models.transaction_upserted': (): io.flow.v0.models.TransactionUpserted => ({
|
|
12343
12438
|
discriminator: 'transaction_upserted',
|
|
12344
12439
|
event_id: factories.string(),
|
|
@@ -12832,11 +12927,13 @@ const factories = {
|
|
|
12832
12927
|
'io.flow.v0.unions.event': (): io.flow.v0.unions.Event => {
|
|
12833
12928
|
const f = faker.random.arrayElement([
|
|
12834
12929
|
() => factories['io.flow.v0.models.transaction_upserted'](),
|
|
12835
|
-
() => factories['io.flow.v0.models.
|
|
12930
|
+
() => factories['io.flow.v0.models.organization_transaction_upserted'](),
|
|
12931
|
+
() => factories['io.flow.v0.models.organization_transaction_deleted'](),
|
|
12836
12932
|
() => factories['io.flow.v0.models.statement_upserted'](),
|
|
12837
12933
|
() => factories['io.flow.v0.models.statement_deleted'](),
|
|
12838
12934
|
() => factories['io.flow.v0.models.channel_transaction_upserted'](),
|
|
12839
12935
|
() => factories['io.flow.v0.models.channel_transaction_deleted'](),
|
|
12936
|
+
() => factories['io.flow.v0.models.channel_transaction_deleted_v2'](),
|
|
12840
12937
|
() => factories['io.flow.v0.models.channel_statement_upserted'](),
|
|
12841
12938
|
() => factories['io.flow.v0.models.channel_statement_deleted'](),
|
|
12842
12939
|
() => factories['io.flow.v0.models.attribute_upserted'](),
|
|
@@ -13227,6 +13324,20 @@ const factories = {
|
|
|
13227
13324
|
return f();
|
|
13228
13325
|
},
|
|
13229
13326
|
|
|
13327
|
+
'io.flow.v0.unions.onboarding_state': (): io.flow.v0.unions.OnboardingState => {
|
|
13328
|
+
const f = faker.random.arrayElement([
|
|
13329
|
+
() => factories['io.flow.v0.models.application_received'](),
|
|
13330
|
+
() => factories['io.flow.v0.models.in_compliance_review'](),
|
|
13331
|
+
() => factories['io.flow.v0.models.setup_in_progress'](),
|
|
13332
|
+
() => factories['io.flow.v0.models.merchant_rejected'](),
|
|
13333
|
+
() => factories['io.flow.v0.models.setup_blocked'](),
|
|
13334
|
+
() => factories['io.flow.v0.models.setup_completed'](),
|
|
13335
|
+
() => factories['io.flow.v0.models.merchant_activated'](),
|
|
13336
|
+
]);
|
|
13337
|
+
|
|
13338
|
+
return f();
|
|
13339
|
+
},
|
|
13340
|
+
|
|
13230
13341
|
'io.flow.v0.unions.online_authorization_details': (): io.flow.v0.unions.OnlineAuthorizationDetails => {
|
|
13231
13342
|
const f = faker.random.arrayElement([
|
|
13232
13343
|
() => factories['io.flow.v0.models.cryptopay_authorization_details'](),
|
|
@@ -13734,6 +13845,7 @@ export const makeAmountMargin = () => factories['io.flow.v0.models.amount_margin
|
|
|
13734
13845
|
export const makeAmountMarginForm = () => factories['io.flow.v0.models.amount_margin_form']();
|
|
13735
13846
|
export const makeAnalyticsExportType = () => factories['io.flow.v0.models.analytics_export_type']();
|
|
13736
13847
|
export const makeApplePayMerchantValidationPayload = () => factories['io.flow.v0.models.apple_pay_merchant_validation_payload']();
|
|
13848
|
+
export const makeApplicationReceived = () => factories['io.flow.v0.models.application_received']();
|
|
13737
13849
|
export const makeAtCost = () => factories['io.flow.v0.models.at_cost']();
|
|
13738
13850
|
export const makeAttachment = () => factories['io.flow.v0.models.attachment']();
|
|
13739
13851
|
export const makeAttachmentType = () => factories['io.flow.v0.enums.attachment_type']();
|
|
@@ -13800,6 +13912,7 @@ export const makeB2BInvoiceUpserted = () => factories['io.flow.v0.models.b2b_inv
|
|
|
13800
13912
|
export const makeBankAccountForm = () => factories['io.flow.v0.models.bank_account_form']();
|
|
13801
13913
|
export const makeBankAccountInfo = () => factories['io.flow.v0.unions.bank_account_info']();
|
|
13802
13914
|
export const makeBankAccountInfoUsa = () => factories['io.flow.v0.models.bank_account_info_usa']();
|
|
13915
|
+
export const makeBankAccountReference = () => factories['io.flow.v0.models.bank_account_reference']();
|
|
13803
13916
|
export const makeBehaviorAudit = () => factories['io.flow.v0.models.behavior_audit']();
|
|
13804
13917
|
export const makeBillingAddress = () => factories['io.flow.v0.models.billing_address']();
|
|
13805
13918
|
export const makeBillingChannelOrderSummary = () => factories['io.flow.v0.models.billing_channel_order_summary']();
|
|
@@ -13910,6 +14023,7 @@ export const makeChannelTokenForm = () => factories['io.flow.v0.models.channel_t
|
|
|
13910
14023
|
export const makeChannelTokenReference = () => factories['io.flow.v0.models.channel_token_reference']();
|
|
13911
14024
|
export const makeChannelTransaction = () => factories['io.flow.v0.models.channel_transaction']();
|
|
13912
14025
|
export const makeChannelTransactionDeleted = () => factories['io.flow.v0.models.channel_transaction_deleted']();
|
|
14026
|
+
export const makeChannelTransactionDeletedV2 = () => factories['io.flow.v0.models.channel_transaction_deleted_v2']();
|
|
13913
14027
|
export const makeChannelTransactionUpserted = () => factories['io.flow.v0.models.channel_transaction_upserted']();
|
|
13914
14028
|
export const makeChannelUpserted = () => factories['io.flow.v0.models.channel_upserted']();
|
|
13915
14029
|
export const makeChannelViesRegistration = () => factories['io.flow.v0.models.channel_vies_registration']();
|
|
@@ -14021,6 +14135,7 @@ export const makeDatetimeRange = () => factories['io.flow.v0.models.datetime_ran
|
|
|
14021
14135
|
export const makeDatetimeWithTimezone = () => factories['io.flow.v0.models.datetime_with_timezone']();
|
|
14022
14136
|
export const makeDayOfWeek = () => factories['io.flow.v0.enums.day_of_week']();
|
|
14023
14137
|
export const makeDdpRatecardFee = () => factories['io.flow.v0.models.ddp_ratecard_fee']();
|
|
14138
|
+
export const makeDefaultBankAccountForm = () => factories['io.flow.v0.models.default_bank_account_form']();
|
|
14024
14139
|
export const makeDeliveredDuty = () => factories['io.flow.v0.enums.delivered_duty']();
|
|
14025
14140
|
export const makeDeliveredDutyDisplayType = () => factories['io.flow.v0.enums.delivered_duty_display_type']();
|
|
14026
14141
|
export const makeDeliveredDutySetting = () => factories['io.flow.v0.models.delivered_duty_setting']();
|
|
@@ -14297,6 +14412,7 @@ export const makeImportTemplateExample = () => factories['io.flow.v0.models.impo
|
|
|
14297
14412
|
export const makeImportTemplateForm = () => factories['io.flow.v0.models.import_template_form']();
|
|
14298
14413
|
export const makeImportType = () => factories['io.flow.v0.enums.import_type']();
|
|
14299
14414
|
export const makeImportVersion = () => factories['io.flow.v0.models.import_version']();
|
|
14415
|
+
export const makeInComplianceReview = () => factories['io.flow.v0.models.in_compliance_review']();
|
|
14300
14416
|
export const makeInboundCartonFee = () => factories['io.flow.v0.models.inbound_carton_fee']();
|
|
14301
14417
|
export const makeIncludedLevies = () => factories['io.flow.v0.models.included_levies']();
|
|
14302
14418
|
export const makeIncludedLevyKey = () => factories['io.flow.v0.enums.included_levy_key']();
|
|
@@ -14446,6 +14562,7 @@ export const makeMembershipForm = () => factories['io.flow.v0.models.membership_
|
|
|
14446
14562
|
export const makeMembershipPutForm = () => factories['io.flow.v0.models.membership_put_form']();
|
|
14447
14563
|
export const makeMembershipUpsertedV2 = () => factories['io.flow.v0.models.membership_upserted_v2']();
|
|
14448
14564
|
export const makeMembershipVersion = () => factories['io.flow.v0.models.membership_version']();
|
|
14565
|
+
export const makeMerchantActivated = () => factories['io.flow.v0.models.merchant_activated']();
|
|
14449
14566
|
export const makeMerchantApplication = () => factories['io.flow.v0.unions.merchant_application']();
|
|
14450
14567
|
export const makeMerchantApplicationDeleted = () => factories['io.flow.v0.models.merchant_application_deleted']();
|
|
14451
14568
|
export const makeMerchantApplicationForm = () => factories['io.flow.v0.unions.merchant_application_form']();
|
|
@@ -14467,6 +14584,8 @@ export const makeMerchantOfRecordEntity = () => factories['io.flow.v0.models.mer
|
|
|
14467
14584
|
export const makeMerchantOfRecordEntityRegistration = () => factories['io.flow.v0.models.merchant_of_record_entity_registration']();
|
|
14468
14585
|
export const makeMerchantOfRecordPaymentForm = () => factories['io.flow.v0.models.merchant_of_record_payment_form']();
|
|
14469
14586
|
export const makeMerchantOnboardingAddress = () => factories['io.flow.v0.models.merchant_onboarding_address']();
|
|
14587
|
+
export const makeMerchantRejected = () => factories['io.flow.v0.models.merchant_rejected']();
|
|
14588
|
+
export const makeMerchantRejectedReason = () => factories['io.flow.v0.enums.merchant_rejected_reason']();
|
|
14470
14589
|
export const makeMethod = () => factories['io.flow.v0.enums.method']();
|
|
14471
14590
|
export const makeMoney = () => factories['io.flow.v0.models.money']();
|
|
14472
14591
|
export const makeMoneyWithBase = () => factories['io.flow.v0.models.money_with_base']();
|
|
@@ -14482,10 +14601,13 @@ export const makeNotificationDeletedV2 = () => factories['io.flow.v0.models.noti
|
|
|
14482
14601
|
export const makeNotificationUpsertedV2 = () => factories['io.flow.v0.models.notification_upserted_v2']();
|
|
14483
14602
|
export const makeNumberRange = () => factories['io.flow.v0.models.number_range']();
|
|
14484
14603
|
export const makeOnboardingApplicationStatus = () => factories['io.flow.v0.enums.onboarding_application_status']();
|
|
14604
|
+
export const makeOnboardingBlockedReason = () => factories['io.flow.v0.enums.onboarding_blocked_reason']();
|
|
14485
14605
|
export const makeOnboardingMerchantPickupWindow = () => factories['io.flow.v0.models.onboarding_merchant_pickup_window']();
|
|
14486
14606
|
export const makeOnboardingMerchantScheduledPickup = () => factories['io.flow.v0.models.onboarding_merchant_scheduled_pickup']();
|
|
14487
14607
|
export const makeOnboardingMerchantTime = () => factories['io.flow.v0.models.onboarding_merchant_time']();
|
|
14488
14608
|
export const makeOnboardingOrganizationReference = () => factories['io.flow.v0.models.onboarding_organization_reference']();
|
|
14609
|
+
export const makeOnboardingState = () => factories['io.flow.v0.unions.onboarding_state']();
|
|
14610
|
+
export const makeOnboardingStateTransition = () => factories['io.flow.v0.models.onboarding_state_transition']();
|
|
14489
14611
|
export const makeOnboardingTradeSector = () => factories['io.flow.v0.enums.onboarding_trade_sector']();
|
|
14490
14612
|
export const makeOnlineAuthorization = () => factories['io.flow.v0.models.online_authorization']();
|
|
14491
14613
|
export const makeOnlineAuthorizationDeletedV2 = () => factories['io.flow.v0.models.online_authorization_deleted_v2']();
|
|
@@ -14625,6 +14747,7 @@ export const makeOrganizationAuthorization = () => factories['io.flow.v0.models.
|
|
|
14625
14747
|
export const makeOrganizationAuthorizationForm = () => factories['io.flow.v0.models.organization_authorization_form']();
|
|
14626
14748
|
export const makeOrganizationBankAccount = () => factories['io.flow.v0.models.organization_bank_account']();
|
|
14627
14749
|
export const makeOrganizationConfigurationReference = () => factories['io.flow.v0.models.organization_configuration_reference']();
|
|
14750
|
+
export const makeOrganizationDefaultBankAccount = () => factories['io.flow.v0.models.organization_default_bank_account']();
|
|
14628
14751
|
export const makeOrganizationDefaultConfigurations = () => factories['io.flow.v0.models.organization_default_configurations']();
|
|
14629
14752
|
export const makeOrganizationDefaultConfigurationsDeleted = () => factories['io.flow.v0.models.organization_default_configurations_deleted']();
|
|
14630
14753
|
export const makeOrganizationDefaultConfigurationsForm = () => factories['io.flow.v0.models.organization_default_configurations_form']();
|
|
@@ -14633,6 +14756,7 @@ export const makeOrganizationDefaults = () => factories['io.flow.v0.models.organ
|
|
|
14633
14756
|
export const makeOrganizationDeleted = () => factories['io.flow.v0.models.organization_deleted']();
|
|
14634
14757
|
export const makeOrganizationDeletedV2 = () => factories['io.flow.v0.models.organization_deleted_v2']();
|
|
14635
14758
|
export const makeOrganizationForm = () => factories['io.flow.v0.models.organization_form']();
|
|
14759
|
+
export const makeOrganizationOnboardingState = () => factories['io.flow.v0.models.organization_onboarding_state']();
|
|
14636
14760
|
export const makeOrganizationPaymentMethodTag = () => factories['io.flow.v0.enums.organization_payment_method_tag']();
|
|
14637
14761
|
export const makeOrganizationPutForm = () => factories['io.flow.v0.models.organization_put_form']();
|
|
14638
14762
|
export const makeOrganizationRatesData = () => factories['io.flow.v0.models.organization_rates_data']();
|
|
@@ -14648,6 +14772,8 @@ export const makeOrganizationTokenFormV2 = () => factories['io.flow.v0.models.or
|
|
|
14648
14772
|
export const makeOrganizationTokenReference = () => factories['io.flow.v0.models.organization_token_reference']();
|
|
14649
14773
|
export const makeOrganizationTokenV2 = () => factories['io.flow.v0.models.organization_token_v2']();
|
|
14650
14774
|
export const makeOrganizationTokenV2Reference = () => factories['io.flow.v0.models.organization_token_v2_reference']();
|
|
14775
|
+
export const makeOrganizationTransactionDeleted = () => factories['io.flow.v0.models.organization_transaction_deleted']();
|
|
14776
|
+
export const makeOrganizationTransactionUpserted = () => factories['io.flow.v0.models.organization_transaction_upserted']();
|
|
14651
14777
|
export const makeOrganizationType = () => factories['io.flow.v0.enums.organization_type']();
|
|
14652
14778
|
export const makeOrganizationUpserted = () => factories['io.flow.v0.models.organization_upserted']();
|
|
14653
14779
|
export const makeOrganizationUpsertedV2 = () => factories['io.flow.v0.models.organization_upserted_v2']();
|
|
@@ -15012,6 +15138,9 @@ export const makeSessionReference = () => factories['io.flow.v0.models.session_r
|
|
|
15012
15138
|
export const makeSessionVisit = () => factories['io.flow.v0.models.session_visit']();
|
|
15013
15139
|
export const makeSessionVisitor = () => factories['io.flow.v0.models.session_visitor']();
|
|
15014
15140
|
export const makeSettlement = () => factories['io.flow.v0.unions.settlement']();
|
|
15141
|
+
export const makeSetupBlocked = () => factories['io.flow.v0.models.setup_blocked']();
|
|
15142
|
+
export const makeSetupCompleted = () => factories['io.flow.v0.models.setup_completed']();
|
|
15143
|
+
export const makeSetupInProgress = () => factories['io.flow.v0.models.setup_in_progress']();
|
|
15015
15144
|
export const makeShipmentIntegrationType = () => factories['io.flow.v0.enums.shipment_integration_type']();
|
|
15016
15145
|
export const makeShipmentRecipient = () => factories['io.flow.v0.enums.shipment_recipient']();
|
|
15017
15146
|
export const makeShipmentWindow = () => factories['io.flow.v0.models.shipment_window']();
|
|
@@ -15230,7 +15359,6 @@ export const makeTradeAgreementDuty = () => factories['io.flow.v0.models.trade_a
|
|
|
15230
15359
|
export const makeTradeAgreementName = () => factories['io.flow.v0.enums.trade_agreement_name']();
|
|
15231
15360
|
export const makeTradeAgreementStatus = () => factories['io.flow.v0.enums.trade_agreement_status']();
|
|
15232
15361
|
export const makeTransaction = () => factories['io.flow.v0.models.transaction']();
|
|
15233
|
-
export const makeTransactionDeleted = () => factories['io.flow.v0.models.transaction_deleted']();
|
|
15234
15362
|
export const makeTransactionSource = () => factories['io.flow.v0.enums.transaction_source']();
|
|
15235
15363
|
export const makeTransactionUpserted = () => factories['io.flow.v0.models.transaction_upserted']();
|
|
15236
15364
|
export const makeTransitEstimate = () => factories['io.flow.v0.models.transit_estimate']();
|