@flowio/api-internal-factories 0.0.107 → 0.0.109
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 +89 -74
- package/dist/esm/api-internal.js +60 -42
- package/dist/types/api-internal.d.ts +2 -5
- package/package.json +2 -2
- package/src/api-internal.ts +70 -46
package/src/api-internal.ts
CHANGED
|
@@ -70,6 +70,9 @@ const factories = {
|
|
|
70
70
|
'SECOND_CHARGEBACK',
|
|
71
71
|
'PREARBITRATION_WON',
|
|
72
72
|
'PREARBITRATION_LOST',
|
|
73
|
+
'INFORMATION_SUPPLIED',
|
|
74
|
+
'DISPUTE_DEFENSE_PERIOD_ENDED',
|
|
75
|
+
'ISSUER_RESPONSE_TIMEFRAME_EXPIRED',
|
|
73
76
|
]),
|
|
74
77
|
|
|
75
78
|
'io.flow.adyen.v0.enums.http_redirect_method': (): io.flow.adyen.v0.enums.HttpRedirectMethod => faker.helpers.arrayElement(['GET', 'POST']),
|
|
@@ -111,6 +114,7 @@ const factories = {
|
|
|
111
114
|
'molpay_points',
|
|
112
115
|
'multibanco',
|
|
113
116
|
'onlineBanking_PL',
|
|
117
|
+
'paywithgoogle',
|
|
114
118
|
'qiwiwallet',
|
|
115
119
|
'sepadirectdebit',
|
|
116
120
|
'trustly',
|
|
@@ -148,6 +152,14 @@ const factories = {
|
|
|
148
152
|
country: factories.string(),
|
|
149
153
|
}),
|
|
150
154
|
|
|
155
|
+
'io.flow.adyen.v0.models.adyen_dispute_event': (): io.flow.adyen.v0.models.AdyenDisputeEvent => ({
|
|
156
|
+
live: factories.string(),
|
|
157
|
+
|
|
158
|
+
notificationItems: arrayOf(
|
|
159
|
+
() => factories['io.flow.adyen.v0.models.outer_notification_request_item'](),
|
|
160
|
+
),
|
|
161
|
+
}),
|
|
162
|
+
|
|
151
163
|
'io.flow.adyen.v0.models.amount': (): io.flow.adyen.v0.models.Amount => ({
|
|
152
164
|
value: factories.long(),
|
|
153
165
|
currency: factories.string(),
|
|
@@ -280,6 +292,7 @@ const factories = {
|
|
|
280
292
|
chargebackReasonCode: factories.string(),
|
|
281
293
|
modificationMerchantReferences: factories.string(),
|
|
282
294
|
chargebackSchemeCode: factories.string(),
|
|
295
|
+
defensePeriodEndsAt: factories.date_time_iso_8601(),
|
|
283
296
|
}),
|
|
284
297
|
|
|
285
298
|
'io.flow.adyen.v0.models.error': (): io.flow.adyen.v0.models.Error => ({
|
|
@@ -7142,6 +7155,12 @@ const factories = {
|
|
|
7142
7155
|
'accounts_with_final_statements_pending_transaction_total',
|
|
7143
7156
|
'edited_order_tax_amount_exceeding_transaction',
|
|
7144
7157
|
'edited_order_duty_amount_exceeding_transaction',
|
|
7158
|
+
'negative_balance_scheduled_total',
|
|
7159
|
+
'negative_balance_debited_total',
|
|
7160
|
+
'negative_balance_failed_to_be_debited_total',
|
|
7161
|
+
'number_of_orgs_eligible_to_negative_balance_debit',
|
|
7162
|
+
'number_of_orgs_with_failed_negative_debit',
|
|
7163
|
+
'negative_debit_success_rate',
|
|
7145
7164
|
]),
|
|
7146
7165
|
|
|
7147
7166
|
'io.flow.internal.v0.enums.billing_statement_attachment_key': (): io.flow.internal.v0.enums.BillingStatementAttachmentKey => faker.helpers.arrayElement([
|
|
@@ -7656,8 +7675,6 @@ const factories = {
|
|
|
7656
7675
|
'ratecard_rate_level_ratecard_deleted',
|
|
7657
7676
|
'ratecard_rate_level_organization_upserted',
|
|
7658
7677
|
'ratecard_rate_level_organization_deleted',
|
|
7659
|
-
'organization_restriction_snapshot_upserted',
|
|
7660
|
-
'organization_restriction_snapshot_deleted',
|
|
7661
7678
|
'restriction_organization_status_upserted',
|
|
7662
7679
|
'restriction_organization_status_deleted',
|
|
7663
7680
|
'organization_restriction_status_upserted',
|
|
@@ -7761,6 +7778,19 @@ const factories = {
|
|
|
7761
7778
|
|
|
7762
7779
|
'io.flow.internal.v0.enums.ftp_protocol': (): io.flow.internal.v0.enums.FtpProtocol => faker.helpers.arrayElement(['sftp', 'ftp']),
|
|
7763
7780
|
'io.flow.internal.v0.enums.google_analytics_plugin': (): io.flow.internal.v0.enums.GoogleAnalyticsPlugin => faker.helpers.arrayElement(['ec']),
|
|
7781
|
+
|
|
7782
|
+
'io.flow.internal.v0.enums.graphql_service_types': (): io.flow.internal.v0.enums.GraphqlServiceTypes => faker.helpers.arrayElement([
|
|
7783
|
+
'order_update_mutation',
|
|
7784
|
+
'shipping_address_validation',
|
|
7785
|
+
'bulk_publication_status',
|
|
7786
|
+
'country_catalog_sync',
|
|
7787
|
+
'inventory_item',
|
|
7788
|
+
'product_bundle',
|
|
7789
|
+
'shopify_location',
|
|
7790
|
+
'shopify_order',
|
|
7791
|
+
'sync_product_catalog',
|
|
7792
|
+
]),
|
|
7793
|
+
|
|
7764
7794
|
'io.flow.internal.v0.enums.harinath_item_type': (): io.flow.internal.v0.enums.HarinathItemType => faker.helpers.arrayElement(['digital', 'physical']),
|
|
7765
7795
|
'io.flow.internal.v0.enums.harmonization_decision_source': (): io.flow.internal.v0.enums.HarmonizationDecisionSource => faker.helpers.arrayElement(['human', 'legacy_model', 'enterprise_model']),
|
|
7766
7796
|
'io.flow.internal.v0.enums.http_method': (): io.flow.internal.v0.enums.HttpMethod => faker.helpers.arrayElement(['get', 'post']),
|
|
@@ -7983,7 +8013,7 @@ const factories = {
|
|
|
7983
8013
|
]),
|
|
7984
8014
|
|
|
7985
8015
|
'io.flow.internal.v0.enums.organization_capability': (): io.flow.internal.v0.enums.OrganizationCapability => faker.helpers.arrayElement(['organization', 'flow', 'dynamic']),
|
|
7986
|
-
'io.flow.internal.v0.enums.organization_metric_type': (): io.flow.internal.v0.enums.OrganizationMetricType => faker.helpers.arrayElement(['
|
|
8016
|
+
'io.flow.internal.v0.enums.organization_metric_type': (): io.flow.internal.v0.enums.OrganizationMetricType => faker.helpers.arrayElement(['organization_restriction_status']),
|
|
7987
8017
|
'io.flow.internal.v0.enums.organization_payment_status': (): io.flow.internal.v0.enums.OrganizationPaymentStatus => faker.helpers.arrayElement(['active', 'archived']),
|
|
7988
8018
|
'io.flow.internal.v0.enums.organization_restriction_approval_status': (): io.flow.internal.v0.enums.OrganizationRestrictionApprovalStatus => faker.helpers.arrayElement(['ready', 'not-ready']),
|
|
7989
8019
|
'io.flow.internal.v0.enums.organization_restriction_note_type': (): io.flow.internal.v0.enums.OrganizationRestrictionNoteType => faker.helpers.arrayElement(['internal', 'rejection_reason', 'additional_rejection_info']),
|
|
@@ -9490,13 +9520,6 @@ const factories = {
|
|
|
9490
9520
|
),
|
|
9491
9521
|
}),
|
|
9492
9522
|
|
|
9493
|
-
'io.flow.internal.v0.models.by_rule_snapshot': (): io.flow.internal.v0.models.ByRuleSnapshot => ({
|
|
9494
|
-
id: factories.string(),
|
|
9495
|
-
name: factories.string(),
|
|
9496
|
-
open_decision_count: factories.long(),
|
|
9497
|
-
restricted_product_count: factories.long(),
|
|
9498
|
-
}),
|
|
9499
|
-
|
|
9500
9523
|
'io.flow.internal.v0.models.calculated_tax_amount': (): io.flow.internal.v0.models.CalculatedTaxAmount => ({
|
|
9501
9524
|
discriminator: 'calculated_tax_amount',
|
|
9502
9525
|
amount: factories.decimal(),
|
|
@@ -13993,6 +14016,7 @@ const factories = {
|
|
|
13993
14016
|
carrier_id: factories.string(),
|
|
13994
14017
|
service_id: factories.string(),
|
|
13995
14018
|
errors: arrayOf(() => factories.string()),
|
|
14019
|
+
direction: factories['io.flow.label.v0.enums.direction'](),
|
|
13996
14020
|
}),
|
|
13997
14021
|
|
|
13998
14022
|
'io.flow.internal.v0.models.label_request_error_deleted': (): io.flow.internal.v0.models.LabelRequestErrorDeleted => ({
|
|
@@ -14045,6 +14069,7 @@ const factories = {
|
|
|
14045
14069
|
direct_delivery: factories['io.flow.internal.v0.models.label_surcharge_single_form'](),
|
|
14046
14070
|
saturday_stop: factories['io.flow.internal.v0.models.label_surcharge_single_form'](),
|
|
14047
14071
|
residential_extended_area_pickup: factories['io.flow.internal.v0.models.label_surcharge_single_form'](),
|
|
14072
|
+
package_level_detail: factories['io.flow.internal.v0.models.label_surcharge_single_form'](),
|
|
14048
14073
|
}),
|
|
14049
14074
|
|
|
14050
14075
|
'io.flow.internal.v0.models.label_surcharge_single_form': (): io.flow.internal.v0.models.LabelSurchargeSingleForm => ({
|
|
@@ -15649,6 +15674,7 @@ const factories = {
|
|
|
15649
15674
|
created_at: factories.string(),
|
|
15650
15675
|
cancelled_at: factories.date_time_iso_8601(),
|
|
15651
15676
|
resolved_at: factories.date_time_iso_8601(),
|
|
15677
|
+
environment: factories['io.flow.common.v0.enums.environment'](),
|
|
15652
15678
|
}),
|
|
15653
15679
|
|
|
15654
15680
|
'io.flow.internal.v0.models.order_validation_failure_upserted': (): io.flow.internal.v0.models.OrderValidationFailureUpserted => ({
|
|
@@ -15962,34 +15988,6 @@ const factories = {
|
|
|
15962
15988
|
onboarding_first_viewed_at: factories.date_time_iso_8601(),
|
|
15963
15989
|
}),
|
|
15964
15990
|
|
|
15965
|
-
'io.flow.internal.v0.models.organization_restriction_snapshot': (): io.flow.internal.v0.models.OrganizationRestrictionSnapshot => ({
|
|
15966
|
-
id: factories.string(),
|
|
15967
|
-
organization_id: factories.string(),
|
|
15968
|
-
organization_channel_id: factories.string(),
|
|
15969
|
-
organization_status: factories.string(),
|
|
15970
|
-
product_count: factories.long(),
|
|
15971
|
-
open_decision_count: factories.long(),
|
|
15972
|
-
restricted_product_count: factories.long(),
|
|
15973
|
-
count_by_rule: arrayOf(() => factories['io.flow.internal.v0.models.by_rule_snapshot']()),
|
|
15974
|
-
earliest_pending_decision_date: factories.date_time_iso_8601(),
|
|
15975
|
-
earliest_product_receipt_date: factories.date_time_iso_8601(),
|
|
15976
|
-
date: factories.date_time_iso_8601(),
|
|
15977
|
-
}),
|
|
15978
|
-
|
|
15979
|
-
'io.flow.internal.v0.models.organization_restriction_snapshot_deleted': (): io.flow.internal.v0.models.OrganizationRestrictionSnapshotDeleted => ({
|
|
15980
|
-
discriminator: 'organization_restriction_snapshot_deleted',
|
|
15981
|
-
event_id: factories.string(),
|
|
15982
|
-
timestamp: factories.date_time_iso_8601(),
|
|
15983
|
-
organization_restriction_snapshot: factories['io.flow.internal.v0.models.organization_restriction_snapshot'](),
|
|
15984
|
-
}),
|
|
15985
|
-
|
|
15986
|
-
'io.flow.internal.v0.models.organization_restriction_snapshot_upserted': (): io.flow.internal.v0.models.OrganizationRestrictionSnapshotUpserted => ({
|
|
15987
|
-
discriminator: 'organization_restriction_snapshot_upserted',
|
|
15988
|
-
event_id: factories.string(),
|
|
15989
|
-
timestamp: factories.date_time_iso_8601(),
|
|
15990
|
-
organization_restriction_snapshot: factories['io.flow.internal.v0.models.organization_restriction_snapshot'](),
|
|
15991
|
-
}),
|
|
15992
|
-
|
|
15993
15991
|
'io.flow.internal.v0.models.organization_restriction_status': (): io.flow.internal.v0.models.OrganizationRestrictionStatus => ({
|
|
15994
15992
|
id: factories.string(),
|
|
15995
15993
|
organization_id: factories.string(),
|
|
@@ -16762,6 +16760,7 @@ const factories = {
|
|
|
16762
16760
|
|
|
16763
16761
|
'io.flow.internal.v0.models.processed_payment_summary': (): io.flow.internal.v0.models.ProcessedPaymentSummary => ({
|
|
16764
16762
|
type: factories['io.flow.reference.v0.enums.payment_method_capability'](),
|
|
16763
|
+
amount: factories.decimal(),
|
|
16765
16764
|
currency: factories['io.flow.reference.v0.models.currency'](),
|
|
16766
16765
|
method: factories['io.flow.reference.v0.models.payment_method'](),
|
|
16767
16766
|
card_issuer_country: factories['io.flow.reference.v0.models.country'](),
|
|
@@ -17680,6 +17679,7 @@ const factories = {
|
|
|
17680
17679
|
lvg: factories.boolean(),
|
|
17681
17680
|
tax_inclusive: factories.boolean(),
|
|
17682
17681
|
duty_inclusive: factories.boolean(),
|
|
17682
|
+
manual_payment: factories.boolean(),
|
|
17683
17683
|
}),
|
|
17684
17684
|
|
|
17685
17685
|
'io.flow.internal.v0.models.reporting_fx': (): io.flow.internal.v0.models.ReportingFx => ({
|
|
@@ -17932,7 +17932,6 @@ const factories = {
|
|
|
17932
17932
|
() => factories['io.flow.internal.v0.models.restriction_status_metadata'](),
|
|
17933
17933
|
),
|
|
17934
17934
|
|
|
17935
|
-
rules: arrayOf(() => factories['io.flow.internal.v0.models.restriction_rule_metadata']()),
|
|
17936
17935
|
count: factories.long(),
|
|
17937
17936
|
}),
|
|
17938
17937
|
|
|
@@ -20916,8 +20915,6 @@ const factories = {
|
|
|
20916
20915
|
() => factories['io.flow.internal.v0.models.ratecard_rate_level_ratecard_deleted'](),
|
|
20917
20916
|
() => factories['io.flow.internal.v0.models.ratecard_rate_level_organization_upserted'](),
|
|
20918
20917
|
() => factories['io.flow.internal.v0.models.ratecard_rate_level_organization_deleted'](),
|
|
20919
|
-
() => factories['io.flow.internal.v0.models.organization_restriction_snapshot_upserted'](),
|
|
20920
|
-
() => factories['io.flow.internal.v0.models.organization_restriction_snapshot_deleted'](),
|
|
20921
20918
|
() => factories['io.flow.internal.v0.models.restriction_organization_status_upserted'](),
|
|
20922
20919
|
() => factories['io.flow.internal.v0.models.restriction_organization_status_deleted'](),
|
|
20923
20920
|
() => factories['io.flow.internal.v0.models.organization_restriction_status_upserted'](),
|
|
@@ -21851,6 +21848,7 @@ const factories = {
|
|
|
21851
21848
|
items: arrayOf(() => factories['io.flow.common.v0.models.line_item_form']()),
|
|
21852
21849
|
'package': factories['io.flow.label.v0.models.shipping_label_package'](),
|
|
21853
21850
|
origin: factories['io.flow.fulfillment.v0.models.shipping_address'](),
|
|
21851
|
+
direction: factories['io.flow.label.v0.enums.direction'](),
|
|
21854
21852
|
}),
|
|
21855
21853
|
|
|
21856
21854
|
'io.flow.label.v0.models.crossdock_shipment': (): io.flow.label.v0.models.CrossdockShipment => ({
|
|
@@ -21949,6 +21947,7 @@ const factories = {
|
|
|
21949
21947
|
additional_services_requested: arrayOf(() => factories['io.flow.label.v0.models.additional_services_requested']()),
|
|
21950
21948
|
created_at: factories.date_time_iso_8601(),
|
|
21951
21949
|
updated_at: factories.date_time_iso_8601(),
|
|
21950
|
+
direction: factories['io.flow.label.v0.enums.direction'](),
|
|
21952
21951
|
}),
|
|
21953
21952
|
|
|
21954
21953
|
'io.flow.label.v0.models.shipping_label_document': (): io.flow.label.v0.models.ShippingLabelDocument => ({
|
|
@@ -22049,6 +22048,7 @@ const factories = {
|
|
|
22049
22048
|
order_number: factories.string(),
|
|
22050
22049
|
items: arrayOf(() => factories['io.flow.common.v0.models.line_item_form']()),
|
|
22051
22050
|
center_key: factories.string(),
|
|
22051
|
+
direction: factories['io.flow.label.v0.enums.direction'](),
|
|
22052
22052
|
}),
|
|
22053
22053
|
|
|
22054
22054
|
'io.flow.label.v0.models.summary_shipping_notification_form': (): io.flow.label.v0.models.SummaryShippingNotificationForm => ({
|
|
@@ -22082,7 +22082,7 @@ const factories = {
|
|
|
22082
22082
|
},
|
|
22083
22083
|
|
|
22084
22084
|
'io.flow.merchant.of.record.v0.enums.economic_title_location': (): io.flow.merchant.of.record.v0.enums.EconomicTitleLocation => faker.helpers.arrayElement(['high_seas', 'origination', 'destination']),
|
|
22085
|
-
'io.flow.merchant.of.record.v0.enums.flow_entity': (): io.flow.merchant.of.record.v0.enums.FlowEntity => faker.helpers.arrayElement(['flow-usa', 'flow-irl', 'flow-can']),
|
|
22085
|
+
'io.flow.merchant.of.record.v0.enums.flow_entity': (): io.flow.merchant.of.record.v0.enums.FlowEntity => faker.helpers.arrayElement(['flow-usa', 'flow-irl', 'flow-can', 'ge-usa']),
|
|
22086
22086
|
'io.flow.merchant.onboarding.v0.enums.logistics_format_preference': (): io.flow.merchant.onboarding.v0.enums.LogisticsFormatPreference => faker.helpers.arrayElement(['shopify_console', 'existing_3pl_integration', 'byo_integration']),
|
|
22087
22087
|
'io.flow.merchant.onboarding.v0.enums.onboarding_application_status': (): io.flow.merchant.onboarding.v0.enums.OnboardingApplicationStatus => faker.helpers.arrayElement(['to_do', 'in_progress', 'on_hold', 'rejected', 'accepted']),
|
|
22088
22088
|
|
|
@@ -23007,6 +23007,7 @@ const factories = {
|
|
|
23007
23007
|
'bancontact',
|
|
23008
23008
|
'twint',
|
|
23009
23009
|
'przelewy24',
|
|
23010
|
+
'mobilepay',
|
|
23010
23011
|
]),
|
|
23011
23012
|
|
|
23012
23013
|
'io.flow.payment.gateway.v0.models.action_display_inline_window': (): io.flow.payment.gateway.v0.models.ActionDisplayInlineWindow => ({
|
|
@@ -23404,6 +23405,11 @@ const factories = {
|
|
|
23404
23405
|
reference: factories.string(),
|
|
23405
23406
|
}),
|
|
23406
23407
|
|
|
23408
|
+
'io.flow.payment.gateway.v0.models.payment_method_data_init_mobilepay': (): io.flow.payment.gateway.v0.models.PaymentMethodDataInitMobilepay => ({
|
|
23409
|
+
type: 'init_mobilepay',
|
|
23410
|
+
reference: factories.string(),
|
|
23411
|
+
}),
|
|
23412
|
+
|
|
23407
23413
|
'io.flow.payment.gateway.v0.models.payment_method_data_init_paypal': (): io.flow.payment.gateway.v0.models.PaymentMethodDataInitPaypal => ({
|
|
23408
23414
|
type: 'init_paypal',
|
|
23409
23415
|
reference: factories.string(),
|
|
@@ -23500,6 +23506,11 @@ const factories = {
|
|
|
23500
23506
|
merchant_of_record: factories['io.flow.common.v0.enums.merchant_of_record'](),
|
|
23501
23507
|
}),
|
|
23502
23508
|
|
|
23509
|
+
'io.flow.payment.gateway.v0.models.payment_method_summary_mobilepay': (): io.flow.payment.gateway.v0.models.PaymentMethodSummaryMobilepay => ({
|
|
23510
|
+
type: 'mobilepay',
|
|
23511
|
+
merchant_of_record: factories['io.flow.common.v0.enums.merchant_of_record'](),
|
|
23512
|
+
}),
|
|
23513
|
+
|
|
23503
23514
|
'io.flow.payment.gateway.v0.models.payment_method_summary_paypal': (): io.flow.payment.gateway.v0.models.PaymentMethodSummaryPaypal => ({
|
|
23504
23515
|
type: 'paypal',
|
|
23505
23516
|
merchant_of_record: factories['io.flow.common.v0.enums.merchant_of_record'](),
|
|
@@ -23755,6 +23766,7 @@ const factories = {
|
|
|
23755
23766
|
() => factories['io.flow.payment.gateway.v0.models.payment_method_data_init_sofort'](),
|
|
23756
23767
|
() => factories['io.flow.payment.gateway.v0.models.payment_method_data_init_twint'](),
|
|
23757
23768
|
() => factories['io.flow.payment.gateway.v0.models.payment_method_data_init_przelewy24'](),
|
|
23769
|
+
() => factories['io.flow.payment.gateway.v0.models.payment_method_data_init_mobilepay'](),
|
|
23758
23770
|
() => factories['io.flow.payment.gateway.v0.models.payment_method_data_init_bancontact'](),
|
|
23759
23771
|
() => factories['io.flow.payment.gateway.v0.models.payment_method_data_validate_applepay'](),
|
|
23760
23772
|
() => factories['io.flow.payment.gateway.v0.models.payment_method_data_authorize_card'](),
|
|
@@ -23815,6 +23827,7 @@ const factories = {
|
|
|
23815
23827
|
() => factories['io.flow.payment.gateway.v0.models.payment_method_summary_ideal'](),
|
|
23816
23828
|
() => factories['io.flow.payment.gateway.v0.models.payment_method_summary_twint'](),
|
|
23817
23829
|
() => factories['io.flow.payment.gateway.v0.models.payment_method_summary_przelewy24'](),
|
|
23830
|
+
() => factories['io.flow.payment.gateway.v0.models.payment_method_summary_mobilepay'](),
|
|
23818
23831
|
() => factories['io.flow.payment.gateway.v0.models.payment_method_summary_sofort'](),
|
|
23819
23832
|
() => factories['io.flow.payment.gateway.v0.models.payment_method_summary_bancontact'](),
|
|
23820
23833
|
]);
|
|
@@ -27779,6 +27792,19 @@ const factories = {
|
|
|
27779
27792
|
'io.flow.shopify.markets.internal.v0.enums.any_dangerous_goods': (): io.flow.shopify.markets.internal.v0.enums.AnyDangerousGoods => faker.helpers.arrayElement(['yes', 'no', 'i_dont_know']),
|
|
27780
27793
|
'io.flow.shopify.markets.internal.v0.enums.api_call_reference_id': (): io.flow.shopify.markets.internal.v0.enums.ApiCallReferenceId => faker.helpers.arrayElement(['duty_rates_data_event', 'integration_test', 'unit_test']),
|
|
27781
27794
|
'io.flow.shopify.markets.internal.v0.enums.channel_order_fulfillment_status_code': (): io.flow.shopify.markets.internal.v0.enums.ChannelOrderFulfillmentStatusCode => faker.helpers.arrayElement(['unfulfilled', 'fulfilled', 'partial', 'cancelled']),
|
|
27795
|
+
|
|
27796
|
+
'io.flow.shopify.markets.internal.v0.enums.graphql_service_types': (): io.flow.shopify.markets.internal.v0.enums.GraphqlServiceTypes => faker.helpers.arrayElement([
|
|
27797
|
+
'order_update_mutation',
|
|
27798
|
+
'shipping_address_validation',
|
|
27799
|
+
'bulk_publication_status',
|
|
27800
|
+
'country_catalog_sync',
|
|
27801
|
+
'inventory_item',
|
|
27802
|
+
'product_bundle',
|
|
27803
|
+
'shopify_location',
|
|
27804
|
+
'shopify_order',
|
|
27805
|
+
'sync_product_catalog',
|
|
27806
|
+
]),
|
|
27807
|
+
|
|
27782
27808
|
'io.flow.shopify.markets.internal.v0.enums.product_status': (): io.flow.shopify.markets.internal.v0.enums.ProductStatus => faker.helpers.arrayElement(['active', 'archived', 'draft']),
|
|
27783
27809
|
|
|
27784
27810
|
'io.flow.shopify.markets.internal.v0.enums.shopify_markets_dangerous_goods': (): io.flow.shopify.markets.internal.v0.enums.ShopifyMarketsDangerousGoods => faker.helpers.arrayElement([
|
|
@@ -31353,6 +31379,7 @@ const factories = {
|
|
|
31353
31379
|
'direct_delivery',
|
|
31354
31380
|
'saturday_stop',
|
|
31355
31381
|
'residential_extended_area_pickup',
|
|
31382
|
+
'package_level_detail',
|
|
31356
31383
|
]),
|
|
31357
31384
|
|
|
31358
31385
|
'io.flow.trueup.v0.models.dead_weight': (): io.flow.trueup.v0.models.DeadWeight => ({
|
|
@@ -31602,7 +31629,6 @@ export const makeBrowserBundlePaymentMethod = () => factories['io.flow.internal.
|
|
|
31602
31629
|
export const makeBrowserBundlePaymentMethodForm = () => factories['io.flow.internal.v0.models.browser_bundle_payment_method_form']();
|
|
31603
31630
|
export const makeBrowserBundlePaymentMethods = () => factories['io.flow.internal.v0.models.browser_bundle_payment_methods']();
|
|
31604
31631
|
export const makeBulkClassificationAction = () => factories['io.flow.internal.v0.models.bulk_classification_action']();
|
|
31605
|
-
export const makeByRuleSnapshot = () => factories['io.flow.internal.v0.models.by_rule_snapshot']();
|
|
31606
31632
|
export const makeCalculatedTaxAmount = () => factories['io.flow.internal.v0.models.calculated_tax_amount']();
|
|
31607
31633
|
export const makeCalculationStampingLineItem = () => factories['io.flow.internal.v0.models.calculation_stamping_line_item']();
|
|
31608
31634
|
export const makeCalculationStampingShippingLine = () => factories['io.flow.internal.v0.models.calculation_stamping_shipping_line']();
|
|
@@ -32170,6 +32196,7 @@ export const makeGoogleLinker = () => factories['io.flow.internal.v0.models.goog
|
|
|
32170
32196
|
export const makeGoogleShoppingAccountParameters = () => factories['io.flow.internal.v0.models.google_shopping_account_parameters']();
|
|
32171
32197
|
export const makeGoogleShoppingSetting = () => factories['io.flow.internal.v0.models.google_shopping_setting']();
|
|
32172
32198
|
export const makeGoogleTagManager = () => factories['io.flow.internal.v0.models.google_tag_manager']();
|
|
32199
|
+
export const makeGraphqlServiceTypes = () => factories['io.flow.internal.v0.enums.graphql_service_types']();
|
|
32173
32200
|
export const makeHarinathItem = () => factories['io.flow.internal.v0.models.harinath_item']();
|
|
32174
32201
|
export const makeHarinathItemDeleted = () => factories['io.flow.internal.v0.models.harinath_item_deleted']();
|
|
32175
32202
|
export const makeHarinathItemForm = () => factories['io.flow.internal.v0.models.harinath_item_form']();
|
|
@@ -32618,9 +32645,6 @@ export const makeOrganizationRestrictionReviewType = () => factories['io.flow.in
|
|
|
32618
32645
|
export const makeOrganizationRestrictionRiskLevel = () => factories['io.flow.internal.v0.enums.organization_restriction_risk_level']();
|
|
32619
32646
|
export const makeOrganizationRestrictionScreeningDecisionForm = () => factories['io.flow.internal.v0.models.organization_restriction_screening_decision_form']();
|
|
32620
32647
|
export const makeOrganizationRestrictionScreeningStatus = () => factories['io.flow.internal.v0.enums.organization_restriction_screening_status']();
|
|
32621
|
-
export const makeOrganizationRestrictionSnapshot = () => factories['io.flow.internal.v0.models.organization_restriction_snapshot']();
|
|
32622
|
-
export const makeOrganizationRestrictionSnapshotDeleted = () => factories['io.flow.internal.v0.models.organization_restriction_snapshot_deleted']();
|
|
32623
|
-
export const makeOrganizationRestrictionSnapshotUpserted = () => factories['io.flow.internal.v0.models.organization_restriction_snapshot_upserted']();
|
|
32624
32648
|
export const makeOrganizationRestrictionStatus = () => factories['io.flow.internal.v0.models.organization_restriction_status']();
|
|
32625
32649
|
export const makeOrganizationRestrictionStatusDeleted = () => factories['io.flow.internal.v0.models.organization_restriction_status_deleted']();
|
|
32626
32650
|
export const makeOrganizationRestrictionStatusNote = () => factories['io.flow.internal.v0.models.organization_restriction_status_note']();
|