@flowio/api-factories 0.0.38 → 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 +151 -43
- package/dist/esm/api.js +104 -10
- package/dist/types/api.d.ts +15 -1
- package/package.json +2 -2
- package/src/api.ts +121 -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(),
|
|
@@ -4623,6 +4645,14 @@ const factories = {
|
|
|
4623
4645
|
channel_transaction: factories['io.flow.v0.models.channel_transaction'](),
|
|
4624
4646
|
}),
|
|
4625
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
|
+
|
|
4626
4656
|
'io.flow.v0.models.channel_transaction_upserted': (): io.flow.v0.models.ChannelTransactionUpserted => ({
|
|
4627
4657
|
discriminator: 'channel_transaction_upserted',
|
|
4628
4658
|
event_id: factories.string(),
|
|
@@ -6757,6 +6787,11 @@ const factories = {
|
|
|
6757
6787
|
'import': factories['io.flow.v0.models.import'](),
|
|
6758
6788
|
}),
|
|
6759
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
|
+
|
|
6760
6795
|
'io.flow.v0.models.inbound_carton_fee': (): io.flow.v0.models.InboundCartonFee => ({
|
|
6761
6796
|
discriminator: 'inbound_carton_fee',
|
|
6762
6797
|
amount: factories['io.flow.v0.models.money'](),
|
|
@@ -7665,6 +7700,11 @@ const factories = {
|
|
|
7665
7700
|
membership: factories['io.flow.v0.models.membership'](),
|
|
7666
7701
|
}),
|
|
7667
7702
|
|
|
7703
|
+
'io.flow.v0.models.merchant_activated': (): io.flow.v0.models.MerchantActivated => ({
|
|
7704
|
+
discriminator: 'merchant_activated',
|
|
7705
|
+
placeholder: factories.boolean(),
|
|
7706
|
+
}),
|
|
7707
|
+
|
|
7668
7708
|
'io.flow.v0.models.merchant_application_deleted': (): io.flow.v0.models.MerchantApplicationDeleted => ({
|
|
7669
7709
|
discriminator: 'merchant_application_deleted',
|
|
7670
7710
|
event_id: factories.string(),
|
|
@@ -7773,6 +7813,12 @@ const factories = {
|
|
|
7773
7813
|
country: factories.string(),
|
|
7774
7814
|
}),
|
|
7775
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
|
+
|
|
7776
7822
|
'io.flow.v0.models.money': (): io.flow.v0.models.Money => ({
|
|
7777
7823
|
amount: factories.double(),
|
|
7778
7824
|
currency: factories.string(),
|
|
@@ -7870,6 +7916,11 @@ const factories = {
|
|
|
7870
7916
|
status: factories['io.flow.v0.enums.organization_status'](),
|
|
7871
7917
|
}),
|
|
7872
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
|
+
|
|
7873
7924
|
'io.flow.v0.models.online_authorization': (): io.flow.v0.models.OnlineAuthorization => ({
|
|
7874
7925
|
discriminator: 'online_authorization',
|
|
7875
7926
|
id: factories.string(),
|
|
@@ -8791,6 +8842,12 @@ const factories = {
|
|
|
8791
8842
|
type: factories['io.flow.v0.enums.organization_type'](),
|
|
8792
8843
|
}),
|
|
8793
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
|
+
|
|
8794
8851
|
'io.flow.v0.models.organization_put_form': (): io.flow.v0.models.OrganizationPutForm => ({
|
|
8795
8852
|
name: factories.string(),
|
|
8796
8853
|
environment: factories['io.flow.v0.enums.environment'](),
|
|
@@ -8891,6 +8948,22 @@ const factories = {
|
|
|
8891
8948
|
organization: factories['io.flow.v0.models.organization_reference'](),
|
|
8892
8949
|
}),
|
|
8893
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
|
+
|
|
8894
8967
|
'io.flow.v0.models.organization_upserted': (): io.flow.v0.models.OrganizationUpserted => ({
|
|
8895
8968
|
discriminator: 'organization_upserted',
|
|
8896
8969
|
event_id: factories.string(),
|
|
@@ -10968,6 +11041,21 @@ const factories = {
|
|
|
10968
11041
|
id: factories.string(),
|
|
10969
11042
|
}),
|
|
10970
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
|
+
|
|
10971
11059
|
'io.flow.v0.models.shipment_window': (): io.flow.v0.models.ShipmentWindow => ({
|
|
10972
11060
|
from: factories.long(),
|
|
10973
11061
|
to: factories.long(),
|
|
@@ -12346,14 +12434,6 @@ const factories = {
|
|
|
12346
12434
|
created_at: factories.date_time_iso_8601(),
|
|
12347
12435
|
}),
|
|
12348
12436
|
|
|
12349
|
-
'io.flow.v0.models.transaction_deleted': (): io.flow.v0.models.TransactionDeleted => ({
|
|
12350
|
-
discriminator: 'transaction_deleted',
|
|
12351
|
-
event_id: factories.string(),
|
|
12352
|
-
timestamp: factories.date_time_iso_8601(),
|
|
12353
|
-
organization: factories.string(),
|
|
12354
|
-
transaction: factories['io.flow.v0.models.transaction'](),
|
|
12355
|
-
}),
|
|
12356
|
-
|
|
12357
12437
|
'io.flow.v0.models.transaction_upserted': (): io.flow.v0.models.TransactionUpserted => ({
|
|
12358
12438
|
discriminator: 'transaction_upserted',
|
|
12359
12439
|
event_id: factories.string(),
|
|
@@ -12847,11 +12927,13 @@ const factories = {
|
|
|
12847
12927
|
'io.flow.v0.unions.event': (): io.flow.v0.unions.Event => {
|
|
12848
12928
|
const f = faker.random.arrayElement([
|
|
12849
12929
|
() => factories['io.flow.v0.models.transaction_upserted'](),
|
|
12850
|
-
() => factories['io.flow.v0.models.
|
|
12930
|
+
() => factories['io.flow.v0.models.organization_transaction_upserted'](),
|
|
12931
|
+
() => factories['io.flow.v0.models.organization_transaction_deleted'](),
|
|
12851
12932
|
() => factories['io.flow.v0.models.statement_upserted'](),
|
|
12852
12933
|
() => factories['io.flow.v0.models.statement_deleted'](),
|
|
12853
12934
|
() => factories['io.flow.v0.models.channel_transaction_upserted'](),
|
|
12854
12935
|
() => factories['io.flow.v0.models.channel_transaction_deleted'](),
|
|
12936
|
+
() => factories['io.flow.v0.models.channel_transaction_deleted_v2'](),
|
|
12855
12937
|
() => factories['io.flow.v0.models.channel_statement_upserted'](),
|
|
12856
12938
|
() => factories['io.flow.v0.models.channel_statement_deleted'](),
|
|
12857
12939
|
() => factories['io.flow.v0.models.attribute_upserted'](),
|
|
@@ -13242,6 +13324,20 @@ const factories = {
|
|
|
13242
13324
|
return f();
|
|
13243
13325
|
},
|
|
13244
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
|
+
|
|
13245
13341
|
'io.flow.v0.unions.online_authorization_details': (): io.flow.v0.unions.OnlineAuthorizationDetails => {
|
|
13246
13342
|
const f = faker.random.arrayElement([
|
|
13247
13343
|
() => factories['io.flow.v0.models.cryptopay_authorization_details'](),
|
|
@@ -13749,6 +13845,7 @@ export const makeAmountMargin = () => factories['io.flow.v0.models.amount_margin
|
|
|
13749
13845
|
export const makeAmountMarginForm = () => factories['io.flow.v0.models.amount_margin_form']();
|
|
13750
13846
|
export const makeAnalyticsExportType = () => factories['io.flow.v0.models.analytics_export_type']();
|
|
13751
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']();
|
|
13752
13849
|
export const makeAtCost = () => factories['io.flow.v0.models.at_cost']();
|
|
13753
13850
|
export const makeAttachment = () => factories['io.flow.v0.models.attachment']();
|
|
13754
13851
|
export const makeAttachmentType = () => factories['io.flow.v0.enums.attachment_type']();
|
|
@@ -13926,6 +14023,7 @@ export const makeChannelTokenForm = () => factories['io.flow.v0.models.channel_t
|
|
|
13926
14023
|
export const makeChannelTokenReference = () => factories['io.flow.v0.models.channel_token_reference']();
|
|
13927
14024
|
export const makeChannelTransaction = () => factories['io.flow.v0.models.channel_transaction']();
|
|
13928
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']();
|
|
13929
14027
|
export const makeChannelTransactionUpserted = () => factories['io.flow.v0.models.channel_transaction_upserted']();
|
|
13930
14028
|
export const makeChannelUpserted = () => factories['io.flow.v0.models.channel_upserted']();
|
|
13931
14029
|
export const makeChannelViesRegistration = () => factories['io.flow.v0.models.channel_vies_registration']();
|
|
@@ -14314,6 +14412,7 @@ export const makeImportTemplateExample = () => factories['io.flow.v0.models.impo
|
|
|
14314
14412
|
export const makeImportTemplateForm = () => factories['io.flow.v0.models.import_template_form']();
|
|
14315
14413
|
export const makeImportType = () => factories['io.flow.v0.enums.import_type']();
|
|
14316
14414
|
export const makeImportVersion = () => factories['io.flow.v0.models.import_version']();
|
|
14415
|
+
export const makeInComplianceReview = () => factories['io.flow.v0.models.in_compliance_review']();
|
|
14317
14416
|
export const makeInboundCartonFee = () => factories['io.flow.v0.models.inbound_carton_fee']();
|
|
14318
14417
|
export const makeIncludedLevies = () => factories['io.flow.v0.models.included_levies']();
|
|
14319
14418
|
export const makeIncludedLevyKey = () => factories['io.flow.v0.enums.included_levy_key']();
|
|
@@ -14463,6 +14562,7 @@ export const makeMembershipForm = () => factories['io.flow.v0.models.membership_
|
|
|
14463
14562
|
export const makeMembershipPutForm = () => factories['io.flow.v0.models.membership_put_form']();
|
|
14464
14563
|
export const makeMembershipUpsertedV2 = () => factories['io.flow.v0.models.membership_upserted_v2']();
|
|
14465
14564
|
export const makeMembershipVersion = () => factories['io.flow.v0.models.membership_version']();
|
|
14565
|
+
export const makeMerchantActivated = () => factories['io.flow.v0.models.merchant_activated']();
|
|
14466
14566
|
export const makeMerchantApplication = () => factories['io.flow.v0.unions.merchant_application']();
|
|
14467
14567
|
export const makeMerchantApplicationDeleted = () => factories['io.flow.v0.models.merchant_application_deleted']();
|
|
14468
14568
|
export const makeMerchantApplicationForm = () => factories['io.flow.v0.unions.merchant_application_form']();
|
|
@@ -14484,6 +14584,8 @@ export const makeMerchantOfRecordEntity = () => factories['io.flow.v0.models.mer
|
|
|
14484
14584
|
export const makeMerchantOfRecordEntityRegistration = () => factories['io.flow.v0.models.merchant_of_record_entity_registration']();
|
|
14485
14585
|
export const makeMerchantOfRecordPaymentForm = () => factories['io.flow.v0.models.merchant_of_record_payment_form']();
|
|
14486
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']();
|
|
14487
14589
|
export const makeMethod = () => factories['io.flow.v0.enums.method']();
|
|
14488
14590
|
export const makeMoney = () => factories['io.flow.v0.models.money']();
|
|
14489
14591
|
export const makeMoneyWithBase = () => factories['io.flow.v0.models.money_with_base']();
|
|
@@ -14499,10 +14601,13 @@ export const makeNotificationDeletedV2 = () => factories['io.flow.v0.models.noti
|
|
|
14499
14601
|
export const makeNotificationUpsertedV2 = () => factories['io.flow.v0.models.notification_upserted_v2']();
|
|
14500
14602
|
export const makeNumberRange = () => factories['io.flow.v0.models.number_range']();
|
|
14501
14603
|
export const makeOnboardingApplicationStatus = () => factories['io.flow.v0.enums.onboarding_application_status']();
|
|
14604
|
+
export const makeOnboardingBlockedReason = () => factories['io.flow.v0.enums.onboarding_blocked_reason']();
|
|
14502
14605
|
export const makeOnboardingMerchantPickupWindow = () => factories['io.flow.v0.models.onboarding_merchant_pickup_window']();
|
|
14503
14606
|
export const makeOnboardingMerchantScheduledPickup = () => factories['io.flow.v0.models.onboarding_merchant_scheduled_pickup']();
|
|
14504
14607
|
export const makeOnboardingMerchantTime = () => factories['io.flow.v0.models.onboarding_merchant_time']();
|
|
14505
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']();
|
|
14506
14611
|
export const makeOnboardingTradeSector = () => factories['io.flow.v0.enums.onboarding_trade_sector']();
|
|
14507
14612
|
export const makeOnlineAuthorization = () => factories['io.flow.v0.models.online_authorization']();
|
|
14508
14613
|
export const makeOnlineAuthorizationDeletedV2 = () => factories['io.flow.v0.models.online_authorization_deleted_v2']();
|
|
@@ -14651,6 +14756,7 @@ export const makeOrganizationDefaults = () => factories['io.flow.v0.models.organ
|
|
|
14651
14756
|
export const makeOrganizationDeleted = () => factories['io.flow.v0.models.organization_deleted']();
|
|
14652
14757
|
export const makeOrganizationDeletedV2 = () => factories['io.flow.v0.models.organization_deleted_v2']();
|
|
14653
14758
|
export const makeOrganizationForm = () => factories['io.flow.v0.models.organization_form']();
|
|
14759
|
+
export const makeOrganizationOnboardingState = () => factories['io.flow.v0.models.organization_onboarding_state']();
|
|
14654
14760
|
export const makeOrganizationPaymentMethodTag = () => factories['io.flow.v0.enums.organization_payment_method_tag']();
|
|
14655
14761
|
export const makeOrganizationPutForm = () => factories['io.flow.v0.models.organization_put_form']();
|
|
14656
14762
|
export const makeOrganizationRatesData = () => factories['io.flow.v0.models.organization_rates_data']();
|
|
@@ -14666,6 +14772,8 @@ export const makeOrganizationTokenFormV2 = () => factories['io.flow.v0.models.or
|
|
|
14666
14772
|
export const makeOrganizationTokenReference = () => factories['io.flow.v0.models.organization_token_reference']();
|
|
14667
14773
|
export const makeOrganizationTokenV2 = () => factories['io.flow.v0.models.organization_token_v2']();
|
|
14668
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']();
|
|
14669
14777
|
export const makeOrganizationType = () => factories['io.flow.v0.enums.organization_type']();
|
|
14670
14778
|
export const makeOrganizationUpserted = () => factories['io.flow.v0.models.organization_upserted']();
|
|
14671
14779
|
export const makeOrganizationUpsertedV2 = () => factories['io.flow.v0.models.organization_upserted_v2']();
|
|
@@ -15030,6 +15138,9 @@ export const makeSessionReference = () => factories['io.flow.v0.models.session_r
|
|
|
15030
15138
|
export const makeSessionVisit = () => factories['io.flow.v0.models.session_visit']();
|
|
15031
15139
|
export const makeSessionVisitor = () => factories['io.flow.v0.models.session_visitor']();
|
|
15032
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']();
|
|
15033
15144
|
export const makeShipmentIntegrationType = () => factories['io.flow.v0.enums.shipment_integration_type']();
|
|
15034
15145
|
export const makeShipmentRecipient = () => factories['io.flow.v0.enums.shipment_recipient']();
|
|
15035
15146
|
export const makeShipmentWindow = () => factories['io.flow.v0.models.shipment_window']();
|
|
@@ -15248,7 +15359,6 @@ export const makeTradeAgreementDuty = () => factories['io.flow.v0.models.trade_a
|
|
|
15248
15359
|
export const makeTradeAgreementName = () => factories['io.flow.v0.enums.trade_agreement_name']();
|
|
15249
15360
|
export const makeTradeAgreementStatus = () => factories['io.flow.v0.enums.trade_agreement_status']();
|
|
15250
15361
|
export const makeTransaction = () => factories['io.flow.v0.models.transaction']();
|
|
15251
|
-
export const makeTransactionDeleted = () => factories['io.flow.v0.models.transaction_deleted']();
|
|
15252
15362
|
export const makeTransactionSource = () => factories['io.flow.v0.enums.transaction_source']();
|
|
15253
15363
|
export const makeTransactionUpserted = () => factories['io.flow.v0.models.transaction_upserted']();
|
|
15254
15364
|
export const makeTransitEstimate = () => factories['io.flow.v0.models.transit_estimate']();
|