@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/src/api-internal.ts
CHANGED
|
@@ -802,6 +802,7 @@ const factories = {
|
|
|
802
802
|
'virtual_card_refund',
|
|
803
803
|
'failed_payout',
|
|
804
804
|
'tax_refund',
|
|
805
|
+
'duty_refund',
|
|
805
806
|
'non_l4l_tax_duty_fx',
|
|
806
807
|
'ge_revenue_share',
|
|
807
808
|
]),
|
|
@@ -6951,10 +6952,23 @@ const factories = {
|
|
|
6951
6952
|
'io.flow.internal.v0.enums.classification_decision': (): io.flow.internal.v0.enums.ClassificationDecision => faker.helpers.arrayElement(['Accept', 'Reject']),
|
|
6952
6953
|
'io.flow.internal.v0.enums.classification_error_code': (): io.flow.internal.v0.enums.ClassificationErrorCode => faker.helpers.arrayElement(['generic_error']),
|
|
6953
6954
|
'io.flow.internal.v0.enums.classification_platform': (): io.flow.internal.v0.enums.ClassificationPlatform => faker.helpers.arrayElement(['GlobalE', 'Flow', 'Borderfree']),
|
|
6954
|
-
'io.flow.internal.v0.enums.classification_type': (): io.flow.internal.v0.enums.ClassificationType => faker.helpers.arrayElement(['None', 'Manual', 'ML']),
|
|
6955
|
+
'io.flow.internal.v0.enums.classification_type': (): io.flow.internal.v0.enums.ClassificationType => faker.helpers.arrayElement(['None', 'Manual', 'ML', 'System']),
|
|
6955
6956
|
'io.flow.internal.v0.enums.clothing_age_classification': (): io.flow.internal.v0.enums.ClothingAgeClassification => faker.helpers.arrayElement(['None', 'AgeKidsGeneral', 'Age0_10', 'Age10_13', 'Age13_14']),
|
|
6956
6957
|
'io.flow.internal.v0.enums.company': (): io.flow.internal.v0.enums.Company => faker.helpers.arrayElement(['globale', 'flow']),
|
|
6957
6958
|
'io.flow.internal.v0.enums.compliance_type': (): io.flow.internal.v0.enums.ComplianceType => faker.helpers.arrayElement(['weee']),
|
|
6959
|
+
|
|
6960
|
+
'io.flow.internal.v0.enums.connect_report_payment_transfer_type': (): io.flow.internal.v0.enums.ConnectReportPaymentTransferType => faker.helpers.arrayElement([
|
|
6961
|
+
'ManagedMarketsRefundDebit',
|
|
6962
|
+
'ManagedMarketsDutiesAndTaxesAdjustmentDebit',
|
|
6963
|
+
'ManagedMarketsDisputedAmountDebit',
|
|
6964
|
+
]),
|
|
6965
|
+
|
|
6966
|
+
'io.flow.internal.v0.enums.connect_report_transfer_transfer_type': (): io.flow.internal.v0.enums.ConnectReportTransferTransferType => faker.helpers.arrayElement([
|
|
6967
|
+
'ManagedMarketsChargeCredit',
|
|
6968
|
+
'ManagedMarketsDisputeWonAmountCredit',
|
|
6969
|
+
'ManagedMarketsDutiesAndTaxesAdjustmentCredit',
|
|
6970
|
+
]),
|
|
6971
|
+
|
|
6958
6972
|
'io.flow.internal.v0.enums.content_element_type': (): io.flow.internal.v0.enums.ContentElementType => faker.helpers.arrayElement(['markdown', 'html', 'plain_text', 'href']),
|
|
6959
6973
|
'io.flow.internal.v0.enums.content_status': (): io.flow.internal.v0.enums.ContentStatus => faker.helpers.arrayElement(['draft', 'live', 'archived']),
|
|
6960
6974
|
'io.flow.internal.v0.enums.content_type': (): io.flow.internal.v0.enums.ContentType => faker.helpers.arrayElement(['text', 'html']),
|
|
@@ -6997,7 +7011,7 @@ const factories = {
|
|
|
6997
7011
|
]),
|
|
6998
7012
|
|
|
6999
7013
|
'io.flow.internal.v0.enums.duty_simple_expression_type': (): io.flow.internal.v0.enums.DutySimpleExpressionType => faker.helpers.arrayElement(['free', 'percent', 'per_uom', 'flat']),
|
|
7000
|
-
'io.flow.internal.v0.enums.duty_transaction_type': (): io.flow.internal.v0.enums.DutyTransactionType => faker.helpers.arrayElement(['adjustment', 'reversal', 'duty']),
|
|
7014
|
+
'io.flow.internal.v0.enums.duty_transaction_type': (): io.flow.internal.v0.enums.DutyTransactionType => faker.helpers.arrayElement(['adjustment', 'reversal', 'duty', 'refund']),
|
|
7001
7015
|
'io.flow.internal.v0.enums.empty_attribute': (): io.flow.internal.v0.enums.EmptyAttribute => faker.helpers.arrayElement(['irrelevant']),
|
|
7002
7016
|
'io.flow.internal.v0.enums.erp_file_type': (): io.flow.internal.v0.enums.ErpFileType => faker.helpers.arrayElement(['vendor']),
|
|
7003
7017
|
|
|
@@ -7229,6 +7243,8 @@ const factories = {
|
|
|
7229
7243
|
'partner_tracking_subscription_deleted',
|
|
7230
7244
|
'spp_tracker_update_request_upserted',
|
|
7231
7245
|
'spp_tracker_update_request_deleted',
|
|
7246
|
+
'partner_request_upserted',
|
|
7247
|
+
'partner_request_deleted',
|
|
7232
7248
|
'internal_authorization_upserted',
|
|
7233
7249
|
'internal_authorization_deleted',
|
|
7234
7250
|
'afterpay_authorization_upserted',
|
|
@@ -7328,6 +7344,8 @@ const factories = {
|
|
|
7328
7344
|
'shopify_order_fulfillments_snapshot_deleted',
|
|
7329
7345
|
'shopify_merchant_plan_upserted',
|
|
7330
7346
|
'shopify_merchant_plan_deleted',
|
|
7347
|
+
'shopify_dispute_upserted',
|
|
7348
|
+
'shopify_dispute_deleted',
|
|
7331
7349
|
'stripe_authorization_deleted',
|
|
7332
7350
|
'stripe_authorization_upserted',
|
|
7333
7351
|
'stripe_reversal_deleted',
|
|
@@ -7475,6 +7493,13 @@ const factories = {
|
|
|
7475
7493
|
'non_fraud_chargeback',
|
|
7476
7494
|
]),
|
|
7477
7495
|
|
|
7496
|
+
'io.flow.internal.v0.enums.merchant_of_record': (): io.flow.internal.v0.enums.MerchantOfRecord => faker.helpers.arrayElement([
|
|
7497
|
+
'global_e_united_states',
|
|
7498
|
+
'global_e_united_kingdom',
|
|
7499
|
+
'global_e_canada',
|
|
7500
|
+
'global_e_netherlands',
|
|
7501
|
+
]),
|
|
7502
|
+
|
|
7478
7503
|
'io.flow.internal.v0.enums.merchant_override_status': (): io.flow.internal.v0.enums.MerchantOverrideStatus => faker.helpers.arrayElement(['in_review', 'accepted', 'rejected']),
|
|
7479
7504
|
'io.flow.internal.v0.enums.mixed_bag_weight': (): io.flow.internal.v0.enums.MixedBagWeight => faker.helpers.arrayElement(['0', '1', '2']),
|
|
7480
7505
|
|
|
@@ -7516,7 +7541,6 @@ const factories = {
|
|
|
7516
7541
|
'dtce',
|
|
7517
7542
|
'restrictions',
|
|
7518
7543
|
'organization_status',
|
|
7519
|
-
'category_constraints',
|
|
7520
7544
|
'miscellaneous',
|
|
7521
7545
|
]),
|
|
7522
7546
|
|
|
@@ -7573,6 +7597,7 @@ const factories = {
|
|
|
7573
7597
|
'io.flow.internal.v0.enums.organization_restriction_review_type': (): io.flow.internal.v0.enums.OrganizationRestrictionReviewType => faker.helpers.arrayElement(['all_pending', 'pending_verification']),
|
|
7574
7598
|
'io.flow.internal.v0.enums.organization_restriction_risk_level': (): io.flow.internal.v0.enums.OrganizationRestrictionRiskLevel => faker.helpers.arrayElement(['5', '15']),
|
|
7575
7599
|
'io.flow.internal.v0.enums.organization_restriction_screening_status': (): io.flow.internal.v0.enums.OrganizationRestrictionScreeningStatus => faker.helpers.arrayElement(['in_review', 'fully_reviewed', 'rejected', 'unscreened']),
|
|
7600
|
+
'io.flow.internal.v0.enums.organization_source': (): io.flow.internal.v0.enums.OrganizationSource => faker.helpers.arrayElement(['shopify', 'enterprise']),
|
|
7576
7601
|
'io.flow.internal.v0.enums.output_style': (): io.flow.internal.v0.enums.OutputStyle => faker.helpers.arrayElement(['flow', 'shopify_p1']),
|
|
7577
7602
|
'io.flow.internal.v0.enums.owner': (): io.flow.internal.v0.enums.Owner => faker.helpers.arrayElement(['flow', 'organization']),
|
|
7578
7603
|
'io.flow.internal.v0.enums.payment_short_url_discriminator': (): io.flow.internal.v0.enums.PaymentShortUrlDiscriminator => faker.helpers.arrayElement(['adyen_3ds2']),
|
|
@@ -14013,9 +14038,13 @@ const factories = {
|
|
|
14013
14038
|
status: factories['io.flow.internal.v0.enums.merchant_override_status'](),
|
|
14014
14039
|
hs6_code: factories.string(),
|
|
14015
14040
|
merchant_hs6_code: factories.string(),
|
|
14041
|
+
created_at: factories.date_time_iso_8601(),
|
|
14042
|
+
updated_at: factories.date_time_iso_8601(),
|
|
14043
|
+
updated_by_user_id: factories.string(),
|
|
14016
14044
|
}),
|
|
14017
14045
|
|
|
14018
14046
|
'io.flow.internal.v0.models.merchant_override_decision_form': (): io.flow.internal.v0.models.MerchantOverrideDecisionForm => ({
|
|
14047
|
+
id: factories.string(),
|
|
14019
14048
|
status: factories['io.flow.internal.v0.enums.merchant_override_status'](),
|
|
14020
14049
|
}),
|
|
14021
14050
|
|
|
@@ -14815,6 +14844,9 @@ const factories = {
|
|
|
14815
14844
|
last_order_submitted_at: factories.date_time_iso_8601(),
|
|
14816
14845
|
matching_positive_keywords: arrayOf(() => factories.string()),
|
|
14817
14846
|
product_categories: arrayOf(() => factories.string()),
|
|
14847
|
+
matching_negative_keywords: arrayOf(() => factories.string()),
|
|
14848
|
+
decisions_user_ids: arrayOf(() => factories.string()),
|
|
14849
|
+
restriction_rule_ids: arrayOf(() => factories.string()),
|
|
14818
14850
|
}),
|
|
14819
14851
|
|
|
14820
14852
|
'io.flow.internal.v0.models.organization_metadata_deleted': (): io.flow.internal.v0.models.OrganizationMetadataDeleted => ({
|
|
@@ -15236,6 +15268,33 @@ const factories = {
|
|
|
15236
15268
|
partner_organization_settings: factories['io.flow.internal.v0.models.partner_organization_settings'](),
|
|
15237
15269
|
}),
|
|
15238
15270
|
|
|
15271
|
+
'io.flow.internal.v0.models.partner_request': (): io.flow.internal.v0.models.PartnerRequest => ({
|
|
15272
|
+
id: factories.string(),
|
|
15273
|
+
partner_id: factories.string(),
|
|
15274
|
+
organization_id: factories.string(),
|
|
15275
|
+
method: factories.string(),
|
|
15276
|
+
path: factories.string(),
|
|
15277
|
+
request_id: factories.string(),
|
|
15278
|
+
parameters: objectOf(() => factories.string()),
|
|
15279
|
+
request_body: factories.object(),
|
|
15280
|
+
response_body: factories.object(),
|
|
15281
|
+
reference_id: factories.string(),
|
|
15282
|
+
}),
|
|
15283
|
+
|
|
15284
|
+
'io.flow.internal.v0.models.partner_request_deleted': (): io.flow.internal.v0.models.PartnerRequestDeleted => ({
|
|
15285
|
+
discriminator: 'partner_request_deleted',
|
|
15286
|
+
event_id: factories.string(),
|
|
15287
|
+
timestamp: factories.date_time_iso_8601(),
|
|
15288
|
+
id: factories.string(),
|
|
15289
|
+
}),
|
|
15290
|
+
|
|
15291
|
+
'io.flow.internal.v0.models.partner_request_upserted': (): io.flow.internal.v0.models.PartnerRequestUpserted => ({
|
|
15292
|
+
discriminator: 'partner_request_upserted',
|
|
15293
|
+
event_id: factories.string(),
|
|
15294
|
+
timestamp: factories.date_time_iso_8601(),
|
|
15295
|
+
partner_request: factories['io.flow.internal.v0.models.partner_request'](),
|
|
15296
|
+
}),
|
|
15297
|
+
|
|
15239
15298
|
'io.flow.internal.v0.models.partner_tracking_subscription_deleted': (): io.flow.internal.v0.models.PartnerTrackingSubscriptionDeleted => ({
|
|
15240
15299
|
discriminator: 'partner_tracking_subscription_deleted',
|
|
15241
15300
|
event_id: factories.string(),
|
|
@@ -16466,6 +16525,7 @@ const factories = {
|
|
|
16466
16525
|
id: factories.string(),
|
|
16467
16526
|
processor: factories.string(),
|
|
16468
16527
|
report_file_type: factories['io.flow.internal.v0.enums.report_file_type'](),
|
|
16528
|
+
merchant_of_record_identifier: factories['io.flow.internal.v0.enums.merchant_of_record'](),
|
|
16469
16529
|
file_name: factories.string(),
|
|
16470
16530
|
status: factories['io.flow.internal.v0.enums.report_file_status'](),
|
|
16471
16531
|
failure_reason: factories.string(),
|
|
@@ -16921,6 +16981,13 @@ const factories = {
|
|
|
16921
16981
|
restriction_organization_status: factories['io.flow.internal.v0.models.restriction_organization_status'](),
|
|
16922
16982
|
}),
|
|
16923
16983
|
|
|
16984
|
+
'io.flow.internal.v0.models.restriction_organization_summary': (): io.flow.internal.v0.models.RestrictionOrganizationSummary => ({
|
|
16985
|
+
id: factories.string(),
|
|
16986
|
+
name: factories.string(),
|
|
16987
|
+
environment: factories['io.flow.common.v0.enums.environment'](),
|
|
16988
|
+
source: factories['io.flow.internal.v0.enums.organization_source'](),
|
|
16989
|
+
}),
|
|
16990
|
+
|
|
16924
16991
|
'io.flow.internal.v0.models.restriction_pending': (): io.flow.internal.v0.models.RestrictionPending => ({
|
|
16925
16992
|
rule: factories['io.flow.internal.v0.models.restriction_rule_summary'](),
|
|
16926
16993
|
count: factories.long(),
|
|
@@ -17449,6 +17516,36 @@ const factories = {
|
|
|
17449
17516
|
code: factories.string(),
|
|
17450
17517
|
}),
|
|
17451
17518
|
|
|
17519
|
+
'io.flow.internal.v0.models.shopify_dispute': (): io.flow.internal.v0.models.ShopifyDispute => ({
|
|
17520
|
+
id: factories.string(),
|
|
17521
|
+
organization_id: factories.string(),
|
|
17522
|
+
authorization_id: factories.string(),
|
|
17523
|
+
amount: factories.decimal(),
|
|
17524
|
+
currency: factories.string(),
|
|
17525
|
+
status: factories.string(),
|
|
17526
|
+
category: factories.string(),
|
|
17527
|
+
attributes: objectOf(() => factories.string()),
|
|
17528
|
+
external_reference_id: factories.string(),
|
|
17529
|
+
issued_at: factories.date_time_iso_8601(),
|
|
17530
|
+
updated_at: factories.date_time_iso_8601(),
|
|
17531
|
+
}),
|
|
17532
|
+
|
|
17533
|
+
'io.flow.internal.v0.models.shopify_dispute_deleted': (): io.flow.internal.v0.models.ShopifyDisputeDeleted => ({
|
|
17534
|
+
discriminator: 'shopify_dispute_deleted',
|
|
17535
|
+
event_id: factories.string(),
|
|
17536
|
+
timestamp: factories.date_time_iso_8601(),
|
|
17537
|
+
organization: factories.string(),
|
|
17538
|
+
id: factories.string(),
|
|
17539
|
+
}),
|
|
17540
|
+
|
|
17541
|
+
'io.flow.internal.v0.models.shopify_dispute_upserted': (): io.flow.internal.v0.models.ShopifyDisputeUpserted => ({
|
|
17542
|
+
discriminator: 'shopify_dispute_upserted',
|
|
17543
|
+
event_id: factories.string(),
|
|
17544
|
+
timestamp: factories.date_time_iso_8601(),
|
|
17545
|
+
organization: factories.string(),
|
|
17546
|
+
dispute: factories['io.flow.internal.v0.models.shopify_dispute'](),
|
|
17547
|
+
}),
|
|
17548
|
+
|
|
17452
17549
|
'io.flow.internal.v0.models.shopify_experience_short_id': (): io.flow.internal.v0.models.ShopifyExperienceShortId => ({
|
|
17453
17550
|
id: factories.string(),
|
|
17454
17551
|
experience: factories['io.flow.experience.v0.models.experience_reference'](),
|
|
@@ -17811,7 +17908,6 @@ const factories = {
|
|
|
17811
17908
|
}),
|
|
17812
17909
|
|
|
17813
17910
|
'io.flow.internal.v0.models.shopify_merchant_plan': (): io.flow.internal.v0.models.ShopifyMerchantPlan => ({
|
|
17814
|
-
id: factories.string(),
|
|
17815
17911
|
authorization: factories['io.flow.payment.v0.models.authorization_reference'](),
|
|
17816
17912
|
plan: factories['io.flow.internal.v0.enums.shopify_plan_type'](),
|
|
17817
17913
|
}),
|
|
@@ -18616,7 +18712,7 @@ const factories = {
|
|
|
18616
18712
|
net: factories.decimal(),
|
|
18617
18713
|
currency: factories.string(),
|
|
18618
18714
|
connected_account: factories.string(),
|
|
18619
|
-
reporting_category: factories['io.flow.stripe.v0.
|
|
18715
|
+
reporting_category: factories['io.flow.stripe.v0.unions.connect_report_reporting_category'](),
|
|
18620
18716
|
dispute_reason: factories.string(),
|
|
18621
18717
|
available_on_utc: factories.date_time_iso_8601(),
|
|
18622
18718
|
automatic_payout_effective_at_utc: factories.date_time_iso_8601(),
|
|
@@ -18626,8 +18722,7 @@ const factories = {
|
|
|
18626
18722
|
payment_method_type: factories.string(),
|
|
18627
18723
|
card_brand: factories.string(),
|
|
18628
18724
|
statement_descriptor: factories.string(),
|
|
18629
|
-
|
|
18630
|
-
transfer_metadata: factories.object(),
|
|
18725
|
+
metadata: factories['io.flow.internal.v0.unions.stripe_connect_report_record_metadata'](),
|
|
18631
18726
|
}),
|
|
18632
18727
|
|
|
18633
18728
|
'io.flow.internal.v0.models.stripe_connect_report_record_deleted': (): io.flow.internal.v0.models.StripeConnectReportRecordDeleted => ({
|
|
@@ -18637,11 +18732,48 @@ const factories = {
|
|
|
18637
18732
|
id: factories.string(),
|
|
18638
18733
|
}),
|
|
18639
18734
|
|
|
18735
|
+
'io.flow.internal.v0.models.stripe_connect_report_record_payment_metadata': (): io.flow.internal.v0.models.StripeConnectReportRecordPaymentMetadata => ({
|
|
18736
|
+
discriminator: 'stripe_connect_report_record_payment_metadata',
|
|
18737
|
+
shop_id: factories.integer(),
|
|
18738
|
+
shop_plan: factories['io.flow.internal.v0.enums.shopify_plan_type'](),
|
|
18739
|
+
checkout_id: factories.string(),
|
|
18740
|
+
order_id: factories.integer(),
|
|
18741
|
+
order_transaction_id: factories.integer(),
|
|
18742
|
+
transfer_type: factories['io.flow.internal.v0.enums.connect_report_payment_transfer_type'](),
|
|
18743
|
+
transfer_exchange_rate: factories.decimal(),
|
|
18744
|
+
charge_total: factories.integer(),
|
|
18745
|
+
charge_currency: factories.string(),
|
|
18746
|
+
charge_exchange_rate: factories.decimal(),
|
|
18747
|
+
refund_exchange_rate: factories.decimal(),
|
|
18748
|
+
duties: factories.integer(),
|
|
18749
|
+
import_taxes: factories.integer(),
|
|
18750
|
+
mor_fees: factories.integer(),
|
|
18751
|
+
mor_foreign_exchange_fees: factories.integer(),
|
|
18752
|
+
}),
|
|
18753
|
+
|
|
18754
|
+
'io.flow.internal.v0.models.stripe_connect_report_record_transfer_metadata': (): io.flow.internal.v0.models.StripeConnectReportRecordTransferMetadata => ({
|
|
18755
|
+
discriminator: 'stripe_connect_report_record_transfer_metadata',
|
|
18756
|
+
shop_id: factories.integer(),
|
|
18757
|
+
order_id: factories.integer(),
|
|
18758
|
+
order_transaction_id: factories.integer(),
|
|
18759
|
+
transfer_type: factories['io.flow.internal.v0.enums.connect_report_transfer_transfer_type'](),
|
|
18760
|
+
charge_total: factories.integer(),
|
|
18761
|
+
charge_currency: factories.string(),
|
|
18762
|
+
charge_exchange_rate: factories.decimal(),
|
|
18763
|
+
duties: factories.integer(),
|
|
18764
|
+
import_taxes: factories.integer(),
|
|
18765
|
+
mor_fees: factories.integer(),
|
|
18766
|
+
mor_foreign_exchange_fees: factories.integer(),
|
|
18767
|
+
merchant_account_currency: factories.string(),
|
|
18768
|
+
amount_in_merchant_account_currency: factories.integer(),
|
|
18769
|
+
payout_exchange_rate: factories.decimal(),
|
|
18770
|
+
}),
|
|
18771
|
+
|
|
18640
18772
|
'io.flow.internal.v0.models.stripe_connect_report_record_upserted': (): io.flow.internal.v0.models.StripeConnectReportRecordUpserted => ({
|
|
18641
18773
|
discriminator: 'stripe_connect_report_record_upserted',
|
|
18642
18774
|
event_id: factories.string(),
|
|
18643
18775
|
timestamp: factories.date_time_iso_8601(),
|
|
18644
|
-
record: factories['io.flow.
|
|
18776
|
+
record: factories['io.flow.internal.v0.models.stripe_connect_report_record'](),
|
|
18645
18777
|
}),
|
|
18646
18778
|
|
|
18647
18779
|
'io.flow.internal.v0.models.stripe_dispute_deleted': (): io.flow.internal.v0.models.StripeDisputeDeleted => ({
|
|
@@ -20106,6 +20238,8 @@ const factories = {
|
|
|
20106
20238
|
() => factories['io.flow.internal.v0.models.partner_tracking_subscription_deleted'](),
|
|
20107
20239
|
() => factories['io.flow.internal.v0.models.spp_tracker_update_request_upserted'](),
|
|
20108
20240
|
() => factories['io.flow.internal.v0.models.spp_tracker_update_request_deleted'](),
|
|
20241
|
+
() => factories['io.flow.internal.v0.models.partner_request_upserted'](),
|
|
20242
|
+
() => factories['io.flow.internal.v0.models.partner_request_deleted'](),
|
|
20109
20243
|
() => factories['io.flow.internal.v0.models.internal_authorization_upserted'](),
|
|
20110
20244
|
() => factories['io.flow.internal.v0.models.internal_authorization_deleted'](),
|
|
20111
20245
|
() => factories['io.flow.internal.v0.models.afterpay_authorization_upserted'](),
|
|
@@ -20205,6 +20339,8 @@ const factories = {
|
|
|
20205
20339
|
() => factories['io.flow.internal.v0.models.shopify_order_fulfillments_snapshot_deleted'](),
|
|
20206
20340
|
() => factories['io.flow.internal.v0.models.shopify_merchant_plan_upserted'](),
|
|
20207
20341
|
() => factories['io.flow.internal.v0.models.shopify_merchant_plan_deleted'](),
|
|
20342
|
+
() => factories['io.flow.internal.v0.models.shopify_dispute_upserted'](),
|
|
20343
|
+
() => factories['io.flow.internal.v0.models.shopify_dispute_deleted'](),
|
|
20208
20344
|
() => factories['io.flow.internal.v0.models.stripe_authorization_deleted'](),
|
|
20209
20345
|
() => factories['io.flow.internal.v0.models.stripe_authorization_upserted'](),
|
|
20210
20346
|
() => factories['io.flow.internal.v0.models.stripe_reversal_deleted'](),
|
|
@@ -20661,6 +20797,15 @@ const factories = {
|
|
|
20661
20797
|
return f();
|
|
20662
20798
|
},
|
|
20663
20799
|
|
|
20800
|
+
'io.flow.internal.v0.unions.stripe_connect_report_record_metadata': (): io.flow.internal.v0.unions.StripeConnectReportRecordMetadata => {
|
|
20801
|
+
const f = faker.helpers.arrayElement([
|
|
20802
|
+
() => factories['io.flow.internal.v0.models.stripe_connect_report_record_payment_metadata'](),
|
|
20803
|
+
() => factories['io.flow.internal.v0.models.stripe_connect_report_record_transfer_metadata'](),
|
|
20804
|
+
]);
|
|
20805
|
+
|
|
20806
|
+
return f();
|
|
20807
|
+
},
|
|
20808
|
+
|
|
20664
20809
|
'io.flow.internal.v0.unions.tariff_eligibility_data': (): io.flow.internal.v0.unions.TariffEligibilityData => {
|
|
20665
20810
|
const f = faker.helpers.arrayElement([
|
|
20666
20811
|
() => factories['io.flow.internal.v0.models.registered_exporter_tariff_eligibility_data'](),
|
|
@@ -23273,6 +23418,16 @@ const factories = {
|
|
|
23273
23418
|
'io.flow.payment.v0.enums.three_d_secure_code': (): io.flow.payment.v0.enums.ThreeDSecureCode => faker.helpers.arrayElement(['verified', 'not_verified', 'failed']),
|
|
23274
23419
|
'io.flow.payment.v0.enums.threeds_two_challenge_viewport': (): io.flow.payment.v0.enums.ThreedsTwoChallengeViewport => faker.helpers.arrayElement(['xxx_small', 'xx_small', 'x_small', 'small', 'fullscreen']),
|
|
23275
23420
|
'io.flow.payment.v0.enums.token_type': (): io.flow.payment.v0.enums.TokenType => faker.helpers.arrayElement(['permanent', 'one_time']),
|
|
23421
|
+
'io.flow.payment.v0.enums.transfer_status': (): io.flow.payment.v0.enums.TransferStatus => faker.helpers.arrayElement(['succeeded', 'canceled']),
|
|
23422
|
+
|
|
23423
|
+
'io.flow.payment.v0.enums.transfer_type': (): io.flow.payment.v0.enums.TransferType => faker.helpers.arrayElement([
|
|
23424
|
+
'payout_to_merchant',
|
|
23425
|
+
'disputed_amount_to_merchant',
|
|
23426
|
+
'duties_and_taxes_adjustment_to_merchant',
|
|
23427
|
+
'disputed_amount_from_merchant',
|
|
23428
|
+
'duties_and_taxes_adjustment_from_merchant',
|
|
23429
|
+
'refund_from_merchant',
|
|
23430
|
+
]),
|
|
23276
23431
|
|
|
23277
23432
|
'io.flow.payment.v0.models.ach_authorization_form': (): io.flow.payment.v0.models.AchAuthorizationForm => ({
|
|
23278
23433
|
discriminator: 'ach_authorization_form',
|
|
@@ -23485,6 +23640,7 @@ const factories = {
|
|
|
23485
23640
|
}),
|
|
23486
23641
|
|
|
23487
23642
|
'io.flow.payment.v0.models.capture_reference': (): io.flow.payment.v0.models.CaptureReference => ({
|
|
23643
|
+
discriminator: 'capture_reference',
|
|
23488
23644
|
id: factories.string(),
|
|
23489
23645
|
key: factories.string(),
|
|
23490
23646
|
}),
|
|
@@ -23703,6 +23859,17 @@ const factories = {
|
|
|
23703
23859
|
account_holder_name: factories.string(),
|
|
23704
23860
|
}),
|
|
23705
23861
|
|
|
23862
|
+
'io.flow.payment.v0.models.dispute_reference': (): io.flow.payment.v0.models.DisputeReference => ({
|
|
23863
|
+
discriminator: 'dispute_reference',
|
|
23864
|
+
id: factories.string(),
|
|
23865
|
+
key: factories.string(),
|
|
23866
|
+
}),
|
|
23867
|
+
|
|
23868
|
+
'io.flow.payment.v0.models.exchanged_money': (): io.flow.payment.v0.models.ExchangedMoney => ({
|
|
23869
|
+
fx_rate: factories.decimal(),
|
|
23870
|
+
money: factories['io.flow.common.v0.models.money'](),
|
|
23871
|
+
}),
|
|
23872
|
+
|
|
23706
23873
|
'io.flow.payment.v0.models.expiration': (): io.flow.payment.v0.models.Expiration => ({
|
|
23707
23874
|
month: factories.integer(),
|
|
23708
23875
|
year: factories.integer(),
|
|
@@ -24059,6 +24226,7 @@ const factories = {
|
|
|
24059
24226
|
}),
|
|
24060
24227
|
|
|
24061
24228
|
'io.flow.payment.v0.models.refund_reference': (): io.flow.payment.v0.models.RefundReference => ({
|
|
24229
|
+
discriminator: 'refund_reference',
|
|
24062
24230
|
id: factories.string(),
|
|
24063
24231
|
key: factories.string(),
|
|
24064
24232
|
}),
|
|
@@ -24184,6 +24352,17 @@ const factories = {
|
|
|
24184
24352
|
network: factories['io.flow.payment.v0.enums.card_type'](),
|
|
24185
24353
|
}),
|
|
24186
24354
|
|
|
24355
|
+
'io.flow.payment.v0.models.transfer': (): io.flow.payment.v0.models.Transfer => ({
|
|
24356
|
+
id: factories.string(),
|
|
24357
|
+
type: factories['io.flow.payment.v0.enums.transfer_type'](),
|
|
24358
|
+
money: factories['io.flow.common.v0.models.money'](),
|
|
24359
|
+
transferred_money: factories['io.flow.payment.v0.models.exchanged_money'](),
|
|
24360
|
+
status: factories['io.flow.payment.v0.enums.transfer_status'](),
|
|
24361
|
+
created_at: factories.date_time_iso_8601(),
|
|
24362
|
+
reference: factories['io.flow.payment.v0.unions.transfer_reference'](),
|
|
24363
|
+
transferred_at: factories.date_time_iso_8601(),
|
|
24364
|
+
}),
|
|
24365
|
+
|
|
24187
24366
|
'io.flow.payment.v0.models.virtual_card': (): io.flow.payment.v0.models.VirtualCard => ({
|
|
24188
24367
|
id: factories.string(),
|
|
24189
24368
|
key: factories.string(),
|
|
@@ -24452,6 +24631,16 @@ const factories = {
|
|
|
24452
24631
|
return f();
|
|
24453
24632
|
},
|
|
24454
24633
|
|
|
24634
|
+
'io.flow.payment.v0.unions.transfer_reference': (): io.flow.payment.v0.unions.TransferReference => {
|
|
24635
|
+
const f = faker.helpers.arrayElement([
|
|
24636
|
+
() => factories['io.flow.payment.v0.models.capture_reference'](),
|
|
24637
|
+
() => factories['io.flow.payment.v0.models.refund_reference'](),
|
|
24638
|
+
() => factories['io.flow.payment.v0.models.dispute_reference'](),
|
|
24639
|
+
]);
|
|
24640
|
+
|
|
24641
|
+
return f();
|
|
24642
|
+
},
|
|
24643
|
+
|
|
24455
24644
|
'io.flow.permission.v0.enums.authentication_technique': (): io.flow.permission.v0.enums.AuthenticationTechnique => faker.helpers.arrayElement(['anonymous', 'session', 'token', 'partner_token', 'user']),
|
|
24456
24645
|
'io.flow.permission.v0.enums.flow_behavior': (): io.flow.permission.v0.enums.FlowBehavior => faker.helpers.arrayElement(['view_consumer_data']),
|
|
24457
24646
|
|
|
@@ -25035,6 +25224,13 @@ const factories = {
|
|
|
25035
25224
|
amount: factories['io.flow.common.v0.models.money'](),
|
|
25036
25225
|
}),
|
|
25037
25226
|
|
|
25227
|
+
'io.flow.ratecard.v0.models.overweight_piece_surcharge_service_fee': (): io.flow.ratecard.v0.models.OverweightPieceSurchargeServiceFee => ({
|
|
25228
|
+
discriminator: 'overweight_piece_surcharge_service_fee',
|
|
25229
|
+
weight_threshold: factories.decimal(),
|
|
25230
|
+
weight_unit: factories['io.flow.common.v0.enums.unit_of_measurement'](),
|
|
25231
|
+
amount: factories['io.flow.common.v0.models.money'](),
|
|
25232
|
+
}),
|
|
25233
|
+
|
|
25038
25234
|
'io.flow.ratecard.v0.models.peak_surcharge_by_weight_service_fee': (): io.flow.ratecard.v0.models.PeakSurchargeByWeightServiceFee => ({
|
|
25039
25235
|
discriminator: 'peak_surcharge_by_weight_service_fee',
|
|
25040
25236
|
amount: factories['io.flow.common.v0.models.money'](),
|
|
@@ -25140,6 +25336,8 @@ const factories = {
|
|
|
25140
25336
|
discriminator: 'ratecard_estimate_v4',
|
|
25141
25337
|
hops: arrayOf(() => factories['io.flow.ratecard.v0.models.hop_v2']()),
|
|
25142
25338
|
delivered_duty: factories['io.flow.common.v0.enums.delivered_duty'](),
|
|
25339
|
+
distance_unit_of_measurement: factories['io.flow.common.v0.enums.unit_of_measurement'](),
|
|
25340
|
+
weight_unit_of_measurement: factories['io.flow.common.v0.enums.unit_of_measurement'](),
|
|
25143
25341
|
dimensional_weight: factories['io.flow.common.v0.models.measurement'](),
|
|
25144
25342
|
gravitational_weight: factories['io.flow.common.v0.models.measurement'](),
|
|
25145
25343
|
ratecard_id: factories.string(),
|
|
@@ -25153,6 +25351,7 @@ const factories = {
|
|
|
25153
25351
|
'io.flow.ratecard.v0.models.ratecard_form': (): io.flow.ratecard.v0.models.RatecardForm => ({
|
|
25154
25352
|
direction: factories['io.flow.label.v0.enums.direction'](),
|
|
25155
25353
|
effective_at: factories.date_time_iso_8601(),
|
|
25354
|
+
published_at: factories.date_time_iso_8601(),
|
|
25156
25355
|
origination_zones: arrayOf(() => factories['io.flow.common.v0.models.zone']()),
|
|
25157
25356
|
service: factories.string(),
|
|
25158
25357
|
number: factories.string(),
|
|
@@ -25355,6 +25554,7 @@ const factories = {
|
|
|
25355
25554
|
() => factories['io.flow.ratecard.v0.models.peak_surcharge_by_weight_service_fee'](),
|
|
25356
25555
|
() => factories['io.flow.ratecard.v0.models.duties_taxes_paid_surcharge_service_fee'](),
|
|
25357
25556
|
() => factories['io.flow.ratecard.v0.models.oversize_piece_surcharge_service_fee'](),
|
|
25557
|
+
() => factories['io.flow.ratecard.v0.models.overweight_piece_surcharge_service_fee'](),
|
|
25358
25558
|
() => factories['io.flow.ratecard.v0.models.remote_area_by_weight_service_fee'](),
|
|
25359
25559
|
() => factories['io.flow.ratecard.v0.models.additional_handling_service_fee'](),
|
|
25360
25560
|
() => factories['io.flow.ratecard.v0.models.large_package_service_fee'](),
|
|
@@ -27651,6 +27851,7 @@ const factories = {
|
|
|
27651
27851
|
'orders/updated',
|
|
27652
27852
|
'orders/delete',
|
|
27653
27853
|
'orders/edited',
|
|
27854
|
+
'orders/risk_assessment_changed',
|
|
27654
27855
|
'products/create',
|
|
27655
27856
|
'products/delete',
|
|
27656
27857
|
'products/update',
|
|
@@ -28306,6 +28507,12 @@ const factories = {
|
|
|
28306
28507
|
total_tax_set: factories['io.flow.shopify.markets.v0.models.shopify_order_money_set'](),
|
|
28307
28508
|
}),
|
|
28308
28509
|
|
|
28510
|
+
'io.flow.shopify.markets.v0.models.shopify_order_risk_assessment_changed': (): io.flow.shopify.markets.v0.models.ShopifyOrderRiskAssessmentChanged => ({
|
|
28511
|
+
order_id: factories.long(),
|
|
28512
|
+
risk_level: factories.string(),
|
|
28513
|
+
created_at: factories.date_time_iso_8601(),
|
|
28514
|
+
}),
|
|
28515
|
+
|
|
28309
28516
|
'io.flow.shopify.markets.v0.models.shopify_order_shipping_line': (): io.flow.shopify.markets.v0.models.ShopifyOrderShippingLine => ({
|
|
28310
28517
|
code: factories.string(),
|
|
28311
28518
|
price: factories.string(),
|
|
@@ -28997,13 +29204,59 @@ const factories = {
|
|
|
28997
29204
|
'io.flow.stripe.v0.enums.check_outcome': (): io.flow.stripe.v0.enums.CheckOutcome => faker.helpers.arrayElement(['pass', 'fail', 'unavailable', 'unchecked']),
|
|
28998
29205
|
'io.flow.stripe.v0.enums.code_verification_status': (): io.flow.stripe.v0.enums.CodeVerificationStatus => faker.helpers.arrayElement(['pending', 'succeeded', 'failed']),
|
|
28999
29206
|
'io.flow.stripe.v0.enums.confirmation_method': (): io.flow.stripe.v0.enums.ConfirmationMethod => faker.helpers.arrayElement(['automatic', 'manual']),
|
|
29000
|
-
'io.flow.stripe.v0.enums.connect_report_reporting_category': (): io.flow.stripe.v0.enums.ConnectReportReportingCategory => faker.helpers.arrayElement(['charge', 'refund', 'payout_reversal', 'transfer', 'transfer_reversal']),
|
|
29001
|
-
'io.flow.stripe.v0.enums.connect_report_shop_plan': (): io.flow.stripe.v0.enums.ConnectReportShopPlan => faker.helpers.arrayElement(['shopify_plus', 'standard']),
|
|
29002
29207
|
|
|
29003
|
-
'io.flow.stripe.v0.enums.
|
|
29004
|
-
'
|
|
29005
|
-
'
|
|
29006
|
-
'
|
|
29208
|
+
'io.flow.stripe.v0.enums.connect_report_balance_reporting_category': (): io.flow.stripe.v0.enums.ConnectReportBalanceReportingCategory => faker.helpers.arrayElement([
|
|
29209
|
+
'anticipation_repayment',
|
|
29210
|
+
'climate_order_purchase',
|
|
29211
|
+
'climate_order_refund',
|
|
29212
|
+
'contribution',
|
|
29213
|
+
'currency_conversion',
|
|
29214
|
+
'fee',
|
|
29215
|
+
'other_adjustment',
|
|
29216
|
+
'payment_network_reserve_hold',
|
|
29217
|
+
'payment_network_reserve_release',
|
|
29218
|
+
'payout',
|
|
29219
|
+
'payout_minimum_balance_hold',
|
|
29220
|
+
'payout_minimum_balance_release',
|
|
29221
|
+
'payout_reversal',
|
|
29222
|
+
'risk_reserved_funds',
|
|
29223
|
+
'stripe_balance_payment_debit',
|
|
29224
|
+
'stripe_balance_payment_debit_reversal',
|
|
29225
|
+
'topup',
|
|
29226
|
+
'topup_reversal',
|
|
29227
|
+
'unreconciled_customer_funds',
|
|
29228
|
+
]),
|
|
29229
|
+
|
|
29230
|
+
'io.flow.stripe.v0.enums.connect_report_connect_reporting_category': (): io.flow.stripe.v0.enums.ConnectReportConnectReportingCategory => faker.helpers.arrayElement([
|
|
29231
|
+
'advance',
|
|
29232
|
+
'advance_funding',
|
|
29233
|
+
'connect_collection_transfer',
|
|
29234
|
+
'connect_reserved_funds',
|
|
29235
|
+
'platform_earning',
|
|
29236
|
+
'platform_earning_refund',
|
|
29237
|
+
'transfer',
|
|
29238
|
+
'transfer_reversal',
|
|
29239
|
+
]),
|
|
29240
|
+
|
|
29241
|
+
'io.flow.stripe.v0.enums.connect_report_issuing_reporting_category': (): io.flow.stripe.v0.enums.ConnectReportIssuingReportingCategory => faker.helpers.arrayElement([
|
|
29242
|
+
'issuing_authorization_hold',
|
|
29243
|
+
'issuing_authorization_release',
|
|
29244
|
+
'issuing_disbursement',
|
|
29245
|
+
'issuing_dispute',
|
|
29246
|
+
'issuing_dispute_fraud_liability_debit',
|
|
29247
|
+
'issuing_dispute_provisional_credit',
|
|
29248
|
+
'issuing_dispute_provisional_credit_reversal',
|
|
29249
|
+
'issuing_transaction',
|
|
29250
|
+
]),
|
|
29251
|
+
|
|
29252
|
+
'io.flow.stripe.v0.enums.connect_report_payment_reporting_category': (): io.flow.stripe.v0.enums.ConnectReportPaymentReportingCategory => faker.helpers.arrayElement([
|
|
29253
|
+
'charge',
|
|
29254
|
+
'charge_failure',
|
|
29255
|
+
'dispute',
|
|
29256
|
+
'dispute_reversal',
|
|
29257
|
+
'partial_capture_reversal',
|
|
29258
|
+
'refund',
|
|
29259
|
+
'refund_failure',
|
|
29007
29260
|
]),
|
|
29008
29261
|
|
|
29009
29262
|
'io.flow.stripe.v0.enums.decline_code': (): io.flow.stripe.v0.enums.DeclineCode => faker.helpers.arrayElement([
|
|
@@ -29635,46 +29888,6 @@ const factories = {
|
|
|
29635
29888
|
status: factories['io.flow.stripe.v0.enums.code_verification_status'](),
|
|
29636
29889
|
}),
|
|
29637
29890
|
|
|
29638
|
-
'io.flow.stripe.v0.models.connect_report_record': (): io.flow.stripe.v0.models.ConnectReportRecord => ({
|
|
29639
|
-
created_utc: factories.date_time_iso_8601(),
|
|
29640
|
-
charge_id: factories.string(),
|
|
29641
|
-
payment_intent_id: factories.string(),
|
|
29642
|
-
gross: factories.decimal(),
|
|
29643
|
-
fee: factories.decimal(),
|
|
29644
|
-
net: factories.decimal(),
|
|
29645
|
-
currency: factories.string(),
|
|
29646
|
-
connected_account: factories.string(),
|
|
29647
|
-
reporting_category: factories['io.flow.stripe.v0.enums.connect_report_reporting_category'](),
|
|
29648
|
-
dispute_reason: factories['io.flow.stripe.v0.enums.dispute_reason'](),
|
|
29649
|
-
available_on_utc: factories.date_time_iso_8601(),
|
|
29650
|
-
automatic_payout_effective_at_utc: factories.date_time_iso_8601(),
|
|
29651
|
-
source_id: factories.string(),
|
|
29652
|
-
customer_facing_amount: factories.decimal(),
|
|
29653
|
-
customer_facing_currency: factories.string(),
|
|
29654
|
-
payment_method_type: factories.string(),
|
|
29655
|
-
card_brand: factories.string(),
|
|
29656
|
-
statement_descriptor: factories.string(),
|
|
29657
|
-
payment_metadata: factories['io.flow.stripe.v0.models.connect_report_record_payment_metadata'](),
|
|
29658
|
-
transfer_metadata: factories.object(),
|
|
29659
|
-
}),
|
|
29660
|
-
|
|
29661
|
-
'io.flow.stripe.v0.models.connect_report_record_payment_metadata': (): io.flow.stripe.v0.models.ConnectReportRecordPaymentMetadata => ({
|
|
29662
|
-
shop_id: factories.integer(),
|
|
29663
|
-
shop_plan: factories['io.flow.stripe.v0.enums.connect_report_shop_plan'](),
|
|
29664
|
-
checkout_id: factories.string(),
|
|
29665
|
-
order_id: factories.integer(),
|
|
29666
|
-
order_transaction_id: factories.integer(),
|
|
29667
|
-
transfer_type: factories['io.flow.stripe.v0.enums.connect_report_transfer_type'](),
|
|
29668
|
-
transfer_exchange_rate: factories.decimal(),
|
|
29669
|
-
charge_total: factories.integer(),
|
|
29670
|
-
charge_currency: factories.string(),
|
|
29671
|
-
charge_exchange_rate: factories.decimal(),
|
|
29672
|
-
duties: factories.integer(),
|
|
29673
|
-
import_taxes: factories.integer(),
|
|
29674
|
-
mor_fee: factories.integer(),
|
|
29675
|
-
fx_fee: factories.integer(),
|
|
29676
|
-
}),
|
|
29677
|
-
|
|
29678
29891
|
'io.flow.stripe.v0.models.customer': (): io.flow.stripe.v0.models.Customer => ({
|
|
29679
29892
|
id: factories.string(),
|
|
29680
29893
|
object: factories.string(),
|
|
@@ -30691,6 +30904,24 @@ const factories = {
|
|
|
30691
30904
|
return f();
|
|
30692
30905
|
},
|
|
30693
30906
|
|
|
30907
|
+
'io.flow.stripe.v0.unions.connect_report_reporting_category': (): io.flow.stripe.v0.unions.ConnectReportReportingCategory => {
|
|
30908
|
+
const f = faker.helpers.arrayElement([() => ({
|
|
30909
|
+
discriminator: 'connect_report_payment_reporting_category' as const,
|
|
30910
|
+
value: factories['io.flow.stripe.v0.enums.connect_report_payment_reporting_category'](),
|
|
30911
|
+
}), () => ({
|
|
30912
|
+
discriminator: 'connect_report_balance_reporting_category' as const,
|
|
30913
|
+
value: factories['io.flow.stripe.v0.enums.connect_report_balance_reporting_category'](),
|
|
30914
|
+
}), () => ({
|
|
30915
|
+
discriminator: 'connect_report_issuing_reporting_category' as const,
|
|
30916
|
+
value: factories['io.flow.stripe.v0.enums.connect_report_issuing_reporting_category'](),
|
|
30917
|
+
}), () => ({
|
|
30918
|
+
discriminator: 'connect_report_connect_reporting_category' as const,
|
|
30919
|
+
value: factories['io.flow.stripe.v0.enums.connect_report_connect_reporting_category'](),
|
|
30920
|
+
})]);
|
|
30921
|
+
|
|
30922
|
+
return f();
|
|
30923
|
+
},
|
|
30924
|
+
|
|
30694
30925
|
'io.flow.stripe.v0.unions.payment_method_data': (): io.flow.stripe.v0.unions.PaymentMethodData => {
|
|
30695
30926
|
const f = faker.helpers.arrayElement([
|
|
30696
30927
|
() => factories['io.flow.stripe.v0.models.payment_method_data_card'](),
|
|
@@ -31540,6 +31771,8 @@ export const makeComplianceData = () => factories['io.flow.internal.v0.unions.co
|
|
|
31540
31771
|
export const makeComplianceForm = () => factories['io.flow.internal.v0.unions.compliance_form']();
|
|
31541
31772
|
export const makeComplianceType = () => factories['io.flow.internal.v0.enums.compliance_type']();
|
|
31542
31773
|
export const makeComponents = () => factories['io.flow.internal.v0.models.components']();
|
|
31774
|
+
export const makeConnectReportPaymentTransferType = () => factories['io.flow.internal.v0.enums.connect_report_payment_transfer_type']();
|
|
31775
|
+
export const makeConnectReportTransferTransferType = () => factories['io.flow.internal.v0.enums.connect_report_transfer_transfer_type']();
|
|
31543
31776
|
export const makeConsoleLabelRequestForm = () => factories['io.flow.internal.v0.models.console_label_request_form']();
|
|
31544
31777
|
export const makeConsoleLabelValidationForm = () => factories['io.flow.internal.v0.unions.console_label_validation_form']();
|
|
31545
31778
|
export const makeConsoleMarkUnresolvableForm = () => factories['io.flow.internal.v0.models.console_mark_unresolvable_form']();
|
|
@@ -32094,6 +32327,7 @@ export const makeMerchantGuidAssignmentDeleted = () => factories['io.flow.intern
|
|
|
32094
32327
|
export const makeMerchantGuidAssignmentUpserted = () => factories['io.flow.internal.v0.models.merchant_guid_assignment_upserted']();
|
|
32095
32328
|
export const makeMerchantHubOverride = () => factories['io.flow.internal.v0.models.merchant_hub_override']();
|
|
32096
32329
|
export const makeMerchantHubOverrideForm = () => factories['io.flow.internal.v0.models.merchant_hub_override_form']();
|
|
32330
|
+
export const makeMerchantOfRecord = () => factories['io.flow.internal.v0.enums.merchant_of_record']();
|
|
32097
32331
|
export const makeMerchantOfRecordEntitySettings = () => factories['io.flow.internal.v0.models.merchant_of_record_entity_settings']();
|
|
32098
32332
|
export const makeMerchantOfRecordEntitySettingsForm = () => factories['io.flow.internal.v0.models.merchant_of_record_entity_settings_form']();
|
|
32099
32333
|
export const makeMerchantOverride = () => factories['io.flow.internal.v0.models.merchant_override']();
|
|
@@ -32246,6 +32480,7 @@ export const makeOrganizationRestrictionStatusNote = () => factories['io.flow.in
|
|
|
32246
32480
|
export const makeOrganizationRestrictionStatusUpserted = () => factories['io.flow.internal.v0.models.organization_restriction_status_upserted']();
|
|
32247
32481
|
export const makeOrganizationSettings = () => factories['io.flow.internal.v0.models.organization_settings']();
|
|
32248
32482
|
export const makeOrganizationSettingsForm = () => factories['io.flow.internal.v0.models.organization_settings_form']();
|
|
32483
|
+
export const makeOrganizationSource = () => factories['io.flow.internal.v0.enums.organization_source']();
|
|
32249
32484
|
export const makeOrganizationStatusChange = () => factories['io.flow.internal.v0.models.organization_status_change']();
|
|
32250
32485
|
export const makeOrganizationStatusChangeDeleted = () => factories['io.flow.internal.v0.models.organization_status_change_deleted']();
|
|
32251
32486
|
export const makeOrganizationStatusChangeUpserted = () => factories['io.flow.internal.v0.models.organization_status_change_upserted']();
|
|
@@ -32288,6 +32523,9 @@ export const makePartnerOrganizationSettings = () => factories['io.flow.internal
|
|
|
32288
32523
|
export const makePartnerOrganizationSettingsDeleted = () => factories['io.flow.internal.v0.models.partner_organization_settings_deleted']();
|
|
32289
32524
|
export const makePartnerOrganizationSettingsForm = () => factories['io.flow.internal.v0.models.partner_organization_settings_form']();
|
|
32290
32525
|
export const makePartnerOrganizationSettingsUpserted = () => factories['io.flow.internal.v0.models.partner_organization_settings_upserted']();
|
|
32526
|
+
export const makePartnerRequest = () => factories['io.flow.internal.v0.models.partner_request']();
|
|
32527
|
+
export const makePartnerRequestDeleted = () => factories['io.flow.internal.v0.models.partner_request_deleted']();
|
|
32528
|
+
export const makePartnerRequestUpserted = () => factories['io.flow.internal.v0.models.partner_request_upserted']();
|
|
32291
32529
|
export const makePartnerTrackingSubscriptionDeleted = () => factories['io.flow.internal.v0.models.partner_tracking_subscription_deleted']();
|
|
32292
32530
|
export const makePartnerTrackingSubscriptionUpserted = () => factories['io.flow.internal.v0.models.partner_tracking_subscription_upserted']();
|
|
32293
32531
|
export const makePassphrase = () => factories['io.flow.internal.v0.models.passphrase']();
|
|
@@ -32543,6 +32781,7 @@ export const makeRestrictionOrganizationDecisionSummary = () => factories['io.fl
|
|
|
32543
32781
|
export const makeRestrictionOrganizationStatus = () => factories['io.flow.internal.v0.models.restriction_organization_status']();
|
|
32544
32782
|
export const makeRestrictionOrganizationStatusDeleted = () => factories['io.flow.internal.v0.models.restriction_organization_status_deleted']();
|
|
32545
32783
|
export const makeRestrictionOrganizationStatusUpserted = () => factories['io.flow.internal.v0.models.restriction_organization_status_upserted']();
|
|
32784
|
+
export const makeRestrictionOrganizationSummary = () => factories['io.flow.internal.v0.models.restriction_organization_summary']();
|
|
32546
32785
|
export const makeRestrictionPending = () => factories['io.flow.internal.v0.models.restriction_pending']();
|
|
32547
32786
|
export const makeRestrictionProduct = () => factories['io.flow.internal.v0.models.restriction_product']();
|
|
32548
32787
|
export const makeRestrictionProductDecisionForm = () => factories['io.flow.internal.v0.models.restriction_product_decision_form']();
|
|
@@ -32623,6 +32862,9 @@ export const makeShopifyChannelOrganizationTokens = () => factories['io.flow.int
|
|
|
32623
32862
|
export const makeShopifyCheckInventoryError = () => factories['io.flow.internal.v0.models.shopify_check_inventory_error']();
|
|
32624
32863
|
export const makeShopifyCheckInventoryErrorCode = () => factories['io.flow.internal.v0.enums.shopify_check_inventory_error_code']();
|
|
32625
32864
|
export const makeShopifyCodeForm = () => factories['io.flow.internal.v0.models.shopify_code_form']();
|
|
32865
|
+
export const makeShopifyDispute = () => factories['io.flow.internal.v0.models.shopify_dispute']();
|
|
32866
|
+
export const makeShopifyDisputeDeleted = () => factories['io.flow.internal.v0.models.shopify_dispute_deleted']();
|
|
32867
|
+
export const makeShopifyDisputeUpserted = () => factories['io.flow.internal.v0.models.shopify_dispute_upserted']();
|
|
32626
32868
|
export const makeShopifyExperienceShortId = () => factories['io.flow.internal.v0.models.shopify_experience_short_id']();
|
|
32627
32869
|
export const makeShopifyExperienceShortIdDeleted = () => factories['io.flow.internal.v0.models.shopify_experience_short_id_deleted']();
|
|
32628
32870
|
export const makeShopifyExperienceShortIdUpserted = () => factories['io.flow.internal.v0.models.shopify_experience_short_id_upserted']();
|
|
@@ -32816,6 +33058,9 @@ export const makeStripeCaptureDeleted = () => factories['io.flow.internal.v0.mod
|
|
|
32816
33058
|
export const makeStripeCaptureUpserted = () => factories['io.flow.internal.v0.models.stripe_capture_upserted']();
|
|
32817
33059
|
export const makeStripeConnectReportRecord = () => factories['io.flow.internal.v0.models.stripe_connect_report_record']();
|
|
32818
33060
|
export const makeStripeConnectReportRecordDeleted = () => factories['io.flow.internal.v0.models.stripe_connect_report_record_deleted']();
|
|
33061
|
+
export const makeStripeConnectReportRecordMetadata = () => factories['io.flow.internal.v0.unions.stripe_connect_report_record_metadata']();
|
|
33062
|
+
export const makeStripeConnectReportRecordPaymentMetadata = () => factories['io.flow.internal.v0.models.stripe_connect_report_record_payment_metadata']();
|
|
33063
|
+
export const makeStripeConnectReportRecordTransferMetadata = () => factories['io.flow.internal.v0.models.stripe_connect_report_record_transfer_metadata']();
|
|
32819
33064
|
export const makeStripeConnectReportRecordUpserted = () => factories['io.flow.internal.v0.models.stripe_connect_report_record_upserted']();
|
|
32820
33065
|
export const makeStripeDisputeDeleted = () => factories['io.flow.internal.v0.models.stripe_dispute_deleted']();
|
|
32821
33066
|
export const makeStripeDisputeUpserted = () => factories['io.flow.internal.v0.models.stripe_dispute_upserted']();
|