@flowio/api-factories 0.0.96 → 0.0.98
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 +89 -131
- package/dist/esm/api.js +55 -89
- package/dist/types/api.d.ts +5 -13
- package/package.json +2 -2
- package/src/api.ts +63 -103
package/src/api.ts
CHANGED
|
@@ -123,10 +123,6 @@ const factories = {
|
|
|
123
123
|
num_events: factories.long(),
|
|
124
124
|
}),
|
|
125
125
|
|
|
126
|
-
'io.flow.ben.test.internal.v0.models.svitlana_test': (): io.flow.ben.test.internal.v0.models.SvitlanaTest => ({
|
|
127
|
-
name: factories.string(),
|
|
128
|
-
}),
|
|
129
|
-
|
|
130
126
|
'io.flow.ben.test.internal.v0.models.test': (): io.flow.ben.test.internal.v0.models.Test => ({
|
|
131
127
|
id: factories.string(),
|
|
132
128
|
name: factories.string(),
|
|
@@ -4241,6 +4237,18 @@ const factories = {
|
|
|
4241
4237
|
'lost',
|
|
4242
4238
|
]),
|
|
4243
4239
|
|
|
4240
|
+
'io.flow.stripe.v0.enums.early_fraud_warning_event_type': (): io.flow.stripe.v0.enums.EarlyFraudWarningEventType => faker.helpers.arrayElement(['radar.early_fraud_warning']),
|
|
4241
|
+
|
|
4242
|
+
'io.flow.stripe.v0.enums.early_fraud_warning_type': (): io.flow.stripe.v0.enums.EarlyFraudWarningType => faker.helpers.arrayElement([
|
|
4243
|
+
'card_never_received',
|
|
4244
|
+
'fraudulent_card_application',
|
|
4245
|
+
'made_with_counterfeit_card',
|
|
4246
|
+
'made_with_lost_card',
|
|
4247
|
+
'made_with_stolen_card',
|
|
4248
|
+
'unauthorized_use_of_card',
|
|
4249
|
+
'misc',
|
|
4250
|
+
]),
|
|
4251
|
+
|
|
4244
4252
|
'io.flow.stripe.v0.enums.error_code': (): io.flow.stripe.v0.enums.ErrorCode => faker.helpers.arrayElement([
|
|
4245
4253
|
'invalid_number',
|
|
4246
4254
|
'invalid_expiry_month',
|
|
@@ -5537,6 +5545,17 @@ const factories = {
|
|
|
5537
5545
|
previous_attributes: factories.object(),
|
|
5538
5546
|
}),
|
|
5539
5547
|
|
|
5548
|
+
'io.flow.stripe.v0.models.stripe_early_fraud_warning_event': (): io.flow.stripe.v0.models.StripeEarlyFraudWarningEvent => ({
|
|
5549
|
+
id: factories.string(),
|
|
5550
|
+
object: factories['io.flow.stripe.v0.enums.early_fraud_warning_event_type'](),
|
|
5551
|
+
actionable: factories.boolean(),
|
|
5552
|
+
charge: factories.string(),
|
|
5553
|
+
created: factories.long(),
|
|
5554
|
+
fraud_type: factories['io.flow.stripe.v0.enums.early_fraud_warning_type'](),
|
|
5555
|
+
livemode: factories.boolean(),
|
|
5556
|
+
payment_intent: factories.string(),
|
|
5557
|
+
}),
|
|
5558
|
+
|
|
5540
5559
|
'io.flow.stripe.v0.models.stripe_error': (): io.flow.stripe.v0.models.StripeError => ({
|
|
5541
5560
|
type: factories['io.flow.stripe.v0.enums.error_type'](),
|
|
5542
5561
|
charge: factories.string(),
|
|
@@ -6004,10 +6023,6 @@ const factories = {
|
|
|
6004
6023
|
'fully_harmonized_item_upserted',
|
|
6005
6024
|
'import_completed_v2',
|
|
6006
6025
|
'import_failed_v2',
|
|
6007
|
-
'rule_upserted',
|
|
6008
|
-
'rule_deleted',
|
|
6009
|
-
'snapshot_upserted',
|
|
6010
|
-
'snapshot_deleted',
|
|
6011
6026
|
'label_upserted',
|
|
6012
6027
|
'label_deleted_v2',
|
|
6013
6028
|
'label_upserted_v2',
|
|
@@ -6172,6 +6187,7 @@ const factories = {
|
|
|
6172
6187
|
'DDU',
|
|
6173
6188
|
]),
|
|
6174
6189
|
|
|
6190
|
+
'io.flow.v0.enums.incoterm_configuration': (): io.flow.v0.enums.IncotermConfiguration => faker.helpers.arrayElement(['DDP', 'DAP', 'DDU', 'UNSUPPORTED']),
|
|
6175
6191
|
'io.flow.v0.enums.inline_window_viewport_size': (): io.flow.v0.enums.InlineWindowViewportSize => faker.helpers.arrayElement(['xxx_small', 'xx_small', 'x_small', 'small', 'fullscreen', 'responsive']),
|
|
6176
6192
|
'io.flow.v0.enums.input_specification_type': (): io.flow.v0.enums.InputSpecificationType => faker.helpers.arrayElement(['text', 'number']),
|
|
6177
6193
|
'io.flow.v0.enums.invitation_error_code': (): io.flow.v0.enums.InvitationErrorCode => faker.helpers.arrayElement(['expired', 'invalid_email']),
|
|
@@ -6633,6 +6649,22 @@ const factories = {
|
|
|
6633
6649
|
'io.flow.v0.enums.shipment_integration_type': (): io.flow.v0.enums.ShipmentIntegrationType => faker.helpers.arrayElement(['direct', 'information', 'preadvice']),
|
|
6634
6650
|
'io.flow.v0.enums.shipment_recipient': (): io.flow.v0.enums.ShipmentRecipient => faker.helpers.arrayElement(['customer', 'return', 'crossdock']),
|
|
6635
6651
|
'io.flow.v0.enums.shipping_configuration_type': (): io.flow.v0.enums.ShippingConfigurationType => faker.helpers.arrayElement(['default', 'variant']),
|
|
6652
|
+
|
|
6653
|
+
'io.flow.v0.enums.shipping_label_error_code': (): io.flow.v0.enums.ShippingLabelErrorCode => faker.helpers.arrayElement([
|
|
6654
|
+
'generic_error',
|
|
6655
|
+
'cancelled_order',
|
|
6656
|
+
'carrier_outage',
|
|
6657
|
+
'catalog_issue',
|
|
6658
|
+
'invalid_destination',
|
|
6659
|
+
'invalid_origin',
|
|
6660
|
+
'invalid_shipping_parameters',
|
|
6661
|
+
'merchant_error',
|
|
6662
|
+
'order_not_found',
|
|
6663
|
+
'order_processing',
|
|
6664
|
+
'restricted_item',
|
|
6665
|
+
'unsupported_lane',
|
|
6666
|
+
]),
|
|
6667
|
+
|
|
6636
6668
|
'io.flow.v0.enums.shopify_grant': (): io.flow.v0.enums.ShopifyGrant => faker.helpers.arrayElement(['customer', 'discount', 'gift_card', 'metafield', 'order']),
|
|
6637
6669
|
'io.flow.v0.enums.shopify_localization_method': (): io.flow.v0.enums.ShopifyLocalizationMethod => faker.helpers.arrayElement(['api', 'ssr']),
|
|
6638
6670
|
'io.flow.v0.enums.shopify_sync_check': (): io.flow.v0.enums.ShopifySyncCheck => faker.helpers.arrayElement(['localized_variants', 'flow_variant_metafields']),
|
|
@@ -8776,19 +8808,6 @@ const factories = {
|
|
|
8776
8808
|
phone: factories.string(),
|
|
8777
8809
|
}),
|
|
8778
8810
|
|
|
8779
|
-
'io.flow.v0.models.context': (): io.flow.v0.models.Context => ({
|
|
8780
|
-
id: factories.string(),
|
|
8781
|
-
experiments: arrayOf(() => factories['io.flow.v0.models.session_context_experiment']()),
|
|
8782
|
-
}),
|
|
8783
|
-
|
|
8784
|
-
'io.flow.v0.models.context_form': (): io.flow.v0.models.ContextForm => ({
|
|
8785
|
-
experiments: arrayOf(() => factories['io.flow.v0.models.session_context_experiment']()),
|
|
8786
|
-
}),
|
|
8787
|
-
|
|
8788
|
-
'io.flow.v0.models.context_reference': (): io.flow.v0.models.ContextReference => ({
|
|
8789
|
-
id: factories.string(),
|
|
8790
|
-
}),
|
|
8791
|
-
|
|
8792
8811
|
'io.flow.v0.models.country': (): io.flow.v0.models.Country => ({
|
|
8793
8812
|
name: factories.string(),
|
|
8794
8813
|
iso_3166_2: factories.string(),
|
|
@@ -10060,10 +10079,6 @@ const factories = {
|
|
|
10060
10079
|
experience: factories['io.flow.v0.models.experience'](),
|
|
10061
10080
|
}),
|
|
10062
10081
|
|
|
10063
|
-
'io.flow.v0.models.experiment_variant': (): io.flow.v0.models.ExperimentVariant => ({
|
|
10064
|
-
key: factories.string(),
|
|
10065
|
-
}),
|
|
10066
|
-
|
|
10067
10082
|
'io.flow.v0.models.expiration': (): io.flow.v0.models.Expiration => ({
|
|
10068
10083
|
month: factories.integer(),
|
|
10069
10084
|
year: factories.integer(),
|
|
@@ -10759,6 +10774,17 @@ const factories = {
|
|
|
10759
10774
|
label: factories.string(),
|
|
10760
10775
|
}),
|
|
10761
10776
|
|
|
10777
|
+
'io.flow.v0.models.incoterm_includes': (): io.flow.v0.models.IncotermIncludes => ({
|
|
10778
|
+
duties: factories.boolean(),
|
|
10779
|
+
taxes: factories.boolean(),
|
|
10780
|
+
}),
|
|
10781
|
+
|
|
10782
|
+
'io.flow.v0.models.incoterm_summary': (): io.flow.v0.models.IncotermSummary => ({
|
|
10783
|
+
configuration: factories['io.flow.v0.enums.incoterm_configuration'](),
|
|
10784
|
+
includes: factories['io.flow.v0.models.incoterm_includes'](),
|
|
10785
|
+
reason: factories.string(),
|
|
10786
|
+
}),
|
|
10787
|
+
|
|
10762
10788
|
'io.flow.v0.models.indirect_tax': (): io.flow.v0.models.IndirectTax => ({
|
|
10763
10789
|
number: factories.string(),
|
|
10764
10790
|
id: factories.string(),
|
|
@@ -11453,7 +11479,6 @@ const factories = {
|
|
|
11453
11479
|
language: factories['io.flow.v0.models.language'](),
|
|
11454
11480
|
locale: factories['io.flow.v0.models.locale'](),
|
|
11455
11481
|
experience: factories['io.flow.v0.models.experience_geo'](),
|
|
11456
|
-
experiment: factories['io.flow.v0.models.session_experiment'](),
|
|
11457
11482
|
}),
|
|
11458
11483
|
|
|
11459
11484
|
'io.flow.v0.models.locale': (): io.flow.v0.models.Locale => ({
|
|
@@ -11991,6 +12016,7 @@ const factories = {
|
|
|
11991
12016
|
geo: factories['io.flow.v0.models.order_geo'](),
|
|
11992
12017
|
device_details: factories['io.flow.v0.unions.device_details'](),
|
|
11993
12018
|
destination_contact_details: arrayOf(() => factories['io.flow.v0.models.destination_contact_detail']()),
|
|
12019
|
+
incoterm_summary: factories['io.flow.v0.models.incoterm_summary'](),
|
|
11994
12020
|
}),
|
|
11995
12021
|
|
|
11996
12022
|
'io.flow.v0.models.order_address': (): io.flow.v0.models.OrderAddress => ({
|
|
@@ -12793,8 +12819,6 @@ const factories = {
|
|
|
12793
12819
|
geo: factories['io.flow.v0.models.session_geo'](),
|
|
12794
12820
|
experience: factories['io.flow.v0.models.experience_geo'](),
|
|
12795
12821
|
format: factories['io.flow.v0.models.session_format'](),
|
|
12796
|
-
experiment: factories['io.flow.v0.models.session_experiment'](),
|
|
12797
|
-
context: factories['io.flow.v0.models.context_reference'](),
|
|
12798
12822
|
}),
|
|
12799
12823
|
|
|
12800
12824
|
'io.flow.v0.models.organization_session_authorization': (): io.flow.v0.models.OrganizationSessionAuthorization => ({
|
|
@@ -15028,21 +15052,6 @@ const factories = {
|
|
|
15028
15052
|
roles: arrayOf(() => factories['io.flow.v0.enums.flow_role']()),
|
|
15029
15053
|
}),
|
|
15030
15054
|
|
|
15031
|
-
'io.flow.v0.models.rule_deleted': (): io.flow.v0.models.RuleDeleted => ({
|
|
15032
|
-
discriminator: 'rule_deleted',
|
|
15033
|
-
event_id: factories.string(),
|
|
15034
|
-
timestamp: factories.date_time_iso_8601(),
|
|
15035
|
-
id: factories.string(),
|
|
15036
|
-
}),
|
|
15037
|
-
|
|
15038
|
-
'io.flow.v0.models.rule_upserted': (): io.flow.v0.models.RuleUpserted => ({
|
|
15039
|
-
discriminator: 'rule_upserted',
|
|
15040
|
-
event_id: factories.string(),
|
|
15041
|
-
timestamp: factories.date_time_iso_8601(),
|
|
15042
|
-
organization_id: factories.string(),
|
|
15043
|
-
rule: factories['io.flow.inventory.v0.models.inventory_rule'](),
|
|
15044
|
-
}),
|
|
15045
|
-
|
|
15046
15055
|
'io.flow.v0.models.schedule': (): io.flow.v0.models.Schedule => ({
|
|
15047
15056
|
calendar: factories['io.flow.v0.enums.calendar'](),
|
|
15048
15057
|
holiday: factories['io.flow.v0.enums.holiday_calendar'](),
|
|
@@ -15115,35 +15124,11 @@ const factories = {
|
|
|
15115
15124
|
session: factories.string(),
|
|
15116
15125
|
}),
|
|
15117
15126
|
|
|
15118
|
-
'io.flow.v0.models.session_context_experiment': (): io.flow.v0.models.SessionContextExperiment => ({
|
|
15119
|
-
key: factories.string(),
|
|
15120
|
-
variant: factories['io.flow.v0.models.experiment_variant'](),
|
|
15121
|
-
}),
|
|
15122
|
-
|
|
15123
15127
|
'io.flow.v0.models.session_currency_format': (): io.flow.v0.models.SessionCurrencyFormat => ({
|
|
15124
15128
|
symbol: factories['io.flow.v0.enums.currency_symbol_format'](),
|
|
15125
15129
|
label_formatters: arrayOf(() => factories['io.flow.v0.enums.currency_label_formatter']()),
|
|
15126
15130
|
}),
|
|
15127
15131
|
|
|
15128
|
-
'io.flow.v0.models.session_experiment': (): io.flow.v0.models.SessionExperiment => ({
|
|
15129
|
-
key: factories.string(),
|
|
15130
|
-
variant: factories['io.flow.v0.models.session_experiment_variant'](),
|
|
15131
|
-
}),
|
|
15132
|
-
|
|
15133
|
-
'io.flow.v0.models.session_experiment_form': (): io.flow.v0.models.SessionExperimentForm => ({
|
|
15134
|
-
key: factories.string(),
|
|
15135
|
-
variant: factories['io.flow.v0.models.session_experiment_variant_form'](),
|
|
15136
|
-
}),
|
|
15137
|
-
|
|
15138
|
-
'io.flow.v0.models.session_experiment_variant': (): io.flow.v0.models.SessionExperimentVariant => ({
|
|
15139
|
-
key: factories.string(),
|
|
15140
|
-
name: factories.string(),
|
|
15141
|
-
}),
|
|
15142
|
-
|
|
15143
|
-
'io.flow.v0.models.session_experiment_variant_form': (): io.flow.v0.models.SessionExperimentVariantForm => ({
|
|
15144
|
-
key: factories.string(),
|
|
15145
|
-
}),
|
|
15146
|
-
|
|
15147
15132
|
'io.flow.v0.models.session_expiration_config': (): io.flow.v0.models.SessionExpirationConfig => ({
|
|
15148
15133
|
unit: factories['io.flow.v0.enums.unit_of_time'](),
|
|
15149
15134
|
value: factories.long(),
|
|
@@ -15387,6 +15372,11 @@ const factories = {
|
|
|
15387
15372
|
required: factories.boolean(),
|
|
15388
15373
|
}),
|
|
15389
15374
|
|
|
15375
|
+
'io.flow.v0.models.shipping_label_error': (): io.flow.v0.models.ShippingLabelError => ({
|
|
15376
|
+
code: factories['io.flow.v0.enums.shipping_label_error_code'](),
|
|
15377
|
+
messages: arrayOf(() => factories.string()),
|
|
15378
|
+
}),
|
|
15379
|
+
|
|
15390
15380
|
'io.flow.v0.models.shipping_label_hop_cost_itemized_estimate': (): io.flow.v0.models.ShippingLabelHopCostItemizedEstimate => ({
|
|
15391
15381
|
units: factories['io.flow.v0.models.label_units'](),
|
|
15392
15382
|
base: factories['io.flow.v0.models.label_base'](),
|
|
@@ -15881,25 +15871,6 @@ const factories = {
|
|
|
15881
15871
|
shipment_recipient: factories['io.flow.v0.enums.shipment_recipient'](),
|
|
15882
15872
|
}),
|
|
15883
15873
|
|
|
15884
|
-
'io.flow.v0.models.snapshot_deleted': (): io.flow.v0.models.SnapshotDeleted => ({
|
|
15885
|
-
discriminator: 'snapshot_deleted',
|
|
15886
|
-
event_id: factories.string(),
|
|
15887
|
-
timestamp: factories.date_time_iso_8601(),
|
|
15888
|
-
snapshot_id: factories.string(),
|
|
15889
|
-
}),
|
|
15890
|
-
|
|
15891
|
-
'io.flow.v0.models.snapshot_upserted': (): io.flow.v0.models.SnapshotUpserted => ({
|
|
15892
|
-
discriminator: 'snapshot_upserted',
|
|
15893
|
-
event_id: factories.string(),
|
|
15894
|
-
timestamp: factories.date_time_iso_8601(),
|
|
15895
|
-
organization: factories.string(),
|
|
15896
|
-
snapshot_id: factories.string(),
|
|
15897
|
-
available: factories.long(),
|
|
15898
|
-
center_key: factories.string(),
|
|
15899
|
-
item_number: factories.string(),
|
|
15900
|
-
quantity: factories.long(),
|
|
15901
|
-
}),
|
|
15902
|
-
|
|
15903
15874
|
'io.flow.v0.models.solidus_product_export_type': (): io.flow.v0.models.SolidusProductExportType => ({
|
|
15904
15875
|
discriminator: 'solidus_product_export_type',
|
|
15905
15876
|
numbers: arrayOf(() => factories.string()),
|
|
@@ -16498,6 +16469,7 @@ const factories = {
|
|
|
16498
16469
|
status: factories['io.flow.v0.enums.tracking_status'](),
|
|
16499
16470
|
timestamp: factories.date_time_iso_8601(),
|
|
16500
16471
|
description: factories.string(),
|
|
16472
|
+
aggregator_status_code: factories.string(),
|
|
16501
16473
|
}),
|
|
16502
16474
|
|
|
16503
16475
|
'io.flow.v0.models.tracking_event_form': (): io.flow.v0.models.TrackingEventForm => ({
|
|
@@ -17455,10 +17427,6 @@ const factories = {
|
|
|
17455
17427
|
() => factories['io.flow.v0.models.fully_harmonized_item_upserted'](),
|
|
17456
17428
|
() => factories['io.flow.v0.models.import_completed_v2'](),
|
|
17457
17429
|
() => factories['io.flow.v0.models.import_failed_v2'](),
|
|
17458
|
-
() => factories['io.flow.v0.models.rule_upserted'](),
|
|
17459
|
-
() => factories['io.flow.v0.models.rule_deleted'](),
|
|
17460
|
-
() => factories['io.flow.v0.models.snapshot_upserted'](),
|
|
17461
|
-
() => factories['io.flow.v0.models.snapshot_deleted'](),
|
|
17462
17430
|
() => factories['io.flow.v0.models.label_upserted'](),
|
|
17463
17431
|
() => factories['io.flow.v0.models.label_deleted_v2'](),
|
|
17464
17432
|
() => factories['io.flow.v0.models.label_upserted_v2'](),
|
|
@@ -18618,9 +18586,6 @@ export const makeConsumerInvoiceReference = () => factories['io.flow.v0.models.c
|
|
|
18618
18586
|
export const makeConsumerInvoiceStatus = () => factories['io.flow.v0.enums.consumer_invoice_status']();
|
|
18619
18587
|
export const makeConsumerInvoiceUpserted = () => factories['io.flow.v0.models.consumer_invoice_upserted']();
|
|
18620
18588
|
export const makeContact = () => factories['io.flow.v0.models.contact']();
|
|
18621
|
-
export const makeContext = () => factories['io.flow.v0.models.context']();
|
|
18622
|
-
export const makeContextForm = () => factories['io.flow.v0.models.context_form']();
|
|
18623
|
-
export const makeContextReference = () => factories['io.flow.v0.models.context_reference']();
|
|
18624
18589
|
export const makeCostEstimateSource = () => factories['io.flow.v0.enums.cost_estimate_source']();
|
|
18625
18590
|
export const makeCountry = () => factories['io.flow.v0.models.country']();
|
|
18626
18591
|
export const makeCountryAvailability = () => factories['io.flow.v0.models.country_availability']();
|
|
@@ -18854,7 +18819,6 @@ export const makeExperienceSummary = () => factories['io.flow.v0.models.experien
|
|
|
18854
18819
|
export const makeExperienceUpserted = () => factories['io.flow.v0.models.experience_upserted']();
|
|
18855
18820
|
export const makeExperienceUpsertedV2 = () => factories['io.flow.v0.models.experience_upserted_v2']();
|
|
18856
18821
|
export const makeExperienceVersion = () => factories['io.flow.v0.models.experience_version']();
|
|
18857
|
-
export const makeExperimentVariant = () => factories['io.flow.v0.models.experiment_variant']();
|
|
18858
18822
|
export const makeExpiration = () => factories['io.flow.v0.models.expiration']();
|
|
18859
18823
|
export const makeExport = () => factories['io.flow.v0.models.export']();
|
|
18860
18824
|
export const makeExportDelivery = () => factories['io.flow.v0.unions.export_delivery']();
|
|
@@ -18986,6 +18950,9 @@ export const makeInboundCartonFee = () => factories['io.flow.v0.models.inbound_c
|
|
|
18986
18950
|
export const makeIncludedLevies = () => factories['io.flow.v0.models.included_levies']();
|
|
18987
18951
|
export const makeIncludedLevyKey = () => factories['io.flow.v0.enums.included_levy_key']();
|
|
18988
18952
|
export const makeIncoterm = () => factories['io.flow.v0.enums.incoterm']();
|
|
18953
|
+
export const makeIncotermConfiguration = () => factories['io.flow.v0.enums.incoterm_configuration']();
|
|
18954
|
+
export const makeIncotermIncludes = () => factories['io.flow.v0.models.incoterm_includes']();
|
|
18955
|
+
export const makeIncotermSummary = () => factories['io.flow.v0.models.incoterm_summary']();
|
|
18989
18956
|
export const makeIndirectTax = () => factories['io.flow.v0.models.indirect_tax']();
|
|
18990
18957
|
export const makeIndividual = () => factories['io.flow.v0.models.individual']();
|
|
18991
18958
|
export const makeInlineActionConfiguration = () => factories['io.flow.v0.unions.inline_action_configuration']();
|
|
@@ -19702,8 +19669,6 @@ export const makeRounding = () => factories['io.flow.v0.models.rounding']();
|
|
|
19702
19669
|
export const makeRoundingMethod = () => factories['io.flow.v0.enums.rounding_method']();
|
|
19703
19670
|
export const makeRoundingType = () => factories['io.flow.v0.enums.rounding_type']();
|
|
19704
19671
|
export const makeRouteAudit = () => factories['io.flow.v0.models.route_audit']();
|
|
19705
|
-
export const makeRuleDeleted = () => factories['io.flow.v0.models.rule_deleted']();
|
|
19706
|
-
export const makeRuleUpserted = () => factories['io.flow.v0.models.rule_upserted']();
|
|
19707
19672
|
export const makeSchedule = () => factories['io.flow.v0.models.schedule']();
|
|
19708
19673
|
export const makeScheduleExceptionStatus = () => factories['io.flow.v0.enums.schedule_exception_status']();
|
|
19709
19674
|
export const makeScheduledExport = () => factories['io.flow.v0.models.scheduled_export']();
|
|
@@ -19721,12 +19686,7 @@ export const makeServiceUnknown = () => factories['io.flow.v0.models.service_unk
|
|
|
19721
19686
|
export const makeSession = () => factories['io.flow.v0.unions.session']();
|
|
19722
19687
|
export const makeSessionAuthorization = () => factories['io.flow.v0.unions.session_authorization']();
|
|
19723
19688
|
export const makeSessionAuthorizationForm = () => factories['io.flow.v0.models.session_authorization_form']();
|
|
19724
|
-
export const makeSessionContextExperiment = () => factories['io.flow.v0.models.session_context_experiment']();
|
|
19725
19689
|
export const makeSessionCurrencyFormat = () => factories['io.flow.v0.models.session_currency_format']();
|
|
19726
|
-
export const makeSessionExperiment = () => factories['io.flow.v0.models.session_experiment']();
|
|
19727
|
-
export const makeSessionExperimentForm = () => factories['io.flow.v0.models.session_experiment_form']();
|
|
19728
|
-
export const makeSessionExperimentVariant = () => factories['io.flow.v0.models.session_experiment_variant']();
|
|
19729
|
-
export const makeSessionExperimentVariantForm = () => factories['io.flow.v0.models.session_experiment_variant_form']();
|
|
19730
19690
|
export const makeSessionExpirationConfig = () => factories['io.flow.v0.models.session_expiration_config']();
|
|
19731
19691
|
export const makeSessionForm = () => factories['io.flow.v0.models.session_form']();
|
|
19732
19692
|
export const makeSessionFormat = () => factories['io.flow.v0.models.session_format']();
|
|
@@ -19764,6 +19724,8 @@ export const makeShippingConfigurationUpserted = () => factories['io.flow.v0.mod
|
|
|
19764
19724
|
export const makeShippingConfigurationVersion = () => factories['io.flow.v0.models.shipping_configuration_version']();
|
|
19765
19725
|
export const makeShippingLabel = () => factories['io.flow.v0.models.shipping_label']();
|
|
19766
19726
|
export const makeShippingLabelDocument = () => factories['io.flow.v0.models.shipping_label_document']();
|
|
19727
|
+
export const makeShippingLabelError = () => factories['io.flow.v0.models.shipping_label_error']();
|
|
19728
|
+
export const makeShippingLabelErrorCode = () => factories['io.flow.v0.enums.shipping_label_error_code']();
|
|
19767
19729
|
export const makeShippingLabelForm = () => factories['io.flow.v0.unions.shipping_label_form']();
|
|
19768
19730
|
export const makeShippingLabelHopCostItemizedEstimate = () => factories['io.flow.v0.models.shipping_label_hop_cost_itemized_estimate']();
|
|
19769
19731
|
export const makeShippingLabelHopSummary = () => factories['io.flow.v0.models.shipping_label_hop_summary']();
|
|
@@ -19831,8 +19793,6 @@ export const makeShopifyVariantFlowMetafield = () => factories['io.flow.v0.model
|
|
|
19831
19793
|
export const makeShopifyVariantInventoryMetafield = () => factories['io.flow.v0.models.shopify_variant_inventory_metafield']();
|
|
19832
19794
|
export const makeSimplePermissionCheck = () => factories['io.flow.v0.models.simple_permission_check']();
|
|
19833
19795
|
export const makeSinglePackageShippingNotificationForm = () => factories['io.flow.v0.models.single_package_shipping_notification_form']();
|
|
19834
|
-
export const makeSnapshotDeleted = () => factories['io.flow.v0.models.snapshot_deleted']();
|
|
19835
|
-
export const makeSnapshotUpserted = () => factories['io.flow.v0.models.snapshot_upserted']();
|
|
19836
19796
|
export const makeSolidusProductExportType = () => factories['io.flow.v0.models.solidus_product_export_type']();
|
|
19837
19797
|
export const makeSolidusVariantExportType = () => factories['io.flow.v0.models.solidus_variant_export_type']();
|
|
19838
19798
|
export const makeSortDirection = () => factories['io.flow.v0.enums.sort_direction']();
|