@flowio/api-prop-types 10.16.88 → 10.16.89
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/lib/api.d.ts +8 -53
- package/lib/api.js +1 -1
- package/package.json +2 -2
- package/src/api.d.ts +8 -53
- package/src/api.js +22 -53
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@flowio/api-prop-types",
|
|
3
|
-
"version": "10.16.
|
|
3
|
+
"version": "10.16.89",
|
|
4
4
|
"description": "PropType validators that work with Flow API",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"flow",
|
|
@@ -29,5 +29,5 @@
|
|
|
29
29
|
"peerDependencies": {
|
|
30
30
|
"prop-types": "^15.7.0"
|
|
31
31
|
},
|
|
32
|
-
"gitHead": "
|
|
32
|
+
"gitHead": "2e07a02edf9ba40b639c33c004df49e4d9b88ed2"
|
|
33
33
|
}
|
package/src/api.d.ts
CHANGED
|
@@ -4796,6 +4796,7 @@ declare namespace io.flow.v0.enums {
|
|
|
4796
4796
|
type ShipmentIntegrationType = 'direct' | 'information' | 'preadvice';
|
|
4797
4797
|
type ShipmentRecipient = 'customer' | 'return' | 'crossdock';
|
|
4798
4798
|
type ShippingConfigurationType = 'default' | 'variant';
|
|
4799
|
+
type ShippingLabelErrorCode = 'generic_error' | 'cancelled_order' | 'carrier_outage' | 'catalog_issue' | 'invalid_destination' | 'invalid_origin' | 'invalid_shipping_parameters' | 'merchant_error' | 'order_not_found' | 'order_processing' | 'restricted_item' | 'unsupported_lane';
|
|
4799
4800
|
type ShopifyGrant = 'customer' | 'discount' | 'gift_card' | 'metafield' | 'order';
|
|
4800
4801
|
type ShopifyLocalizationMethod = 'api' | 'ssr';
|
|
4801
4802
|
type ShopifySyncCheck = 'localized_variants' | 'flow_variant_metafields';
|
|
@@ -6822,19 +6823,6 @@ declare namespace io.flow.v0.models {
|
|
|
6822
6823
|
readonly 'phone'?: string;
|
|
6823
6824
|
}
|
|
6824
6825
|
|
|
6825
|
-
interface Context {
|
|
6826
|
-
readonly 'id': string;
|
|
6827
|
-
readonly 'experiments': io.flow.v0.models.SessionContextExperiment[];
|
|
6828
|
-
}
|
|
6829
|
-
|
|
6830
|
-
interface ContextForm {
|
|
6831
|
-
readonly 'experiments': io.flow.v0.models.SessionContextExperiment[];
|
|
6832
|
-
}
|
|
6833
|
-
|
|
6834
|
-
interface ContextReference {
|
|
6835
|
-
readonly 'id': string;
|
|
6836
|
-
}
|
|
6837
|
-
|
|
6838
6826
|
interface Country {
|
|
6839
6827
|
readonly 'name': string;
|
|
6840
6828
|
readonly 'iso_3166_2': string;
|
|
@@ -8106,10 +8094,6 @@ declare namespace io.flow.v0.models {
|
|
|
8106
8094
|
readonly 'experience': io.flow.v0.models.Experience;
|
|
8107
8095
|
}
|
|
8108
8096
|
|
|
8109
|
-
interface ExperimentVariant {
|
|
8110
|
-
readonly 'key': string;
|
|
8111
|
-
}
|
|
8112
|
-
|
|
8113
8097
|
interface Expiration {
|
|
8114
8098
|
readonly 'month': number;
|
|
8115
8099
|
readonly 'year': number;
|
|
@@ -9510,7 +9494,6 @@ declare namespace io.flow.v0.models {
|
|
|
9510
9494
|
readonly 'language': io.flow.v0.models.Language;
|
|
9511
9495
|
readonly 'locale': io.flow.v0.models.Locale;
|
|
9512
9496
|
readonly 'experience': io.flow.v0.models.ExperienceGeo;
|
|
9513
|
-
readonly 'experiment'?: io.flow.v0.models.SessionExperiment;
|
|
9514
9497
|
}
|
|
9515
9498
|
|
|
9516
9499
|
interface Locale {
|
|
@@ -10847,8 +10830,6 @@ declare namespace io.flow.v0.models {
|
|
|
10847
10830
|
readonly 'geo'?: io.flow.v0.models.SessionGeo;
|
|
10848
10831
|
readonly 'experience'?: io.flow.v0.models.ExperienceGeo;
|
|
10849
10832
|
readonly 'format'?: io.flow.v0.models.SessionFormat;
|
|
10850
|
-
readonly 'experiment'?: io.flow.v0.models.SessionExperiment;
|
|
10851
|
-
readonly 'context'?: io.flow.v0.models.ContextReference;
|
|
10852
10833
|
}
|
|
10853
10834
|
|
|
10854
10835
|
interface OrganizationSessionAuthorization {
|
|
@@ -13154,35 +13135,11 @@ declare namespace io.flow.v0.models {
|
|
|
13154
13135
|
readonly 'session': string;
|
|
13155
13136
|
}
|
|
13156
13137
|
|
|
13157
|
-
interface SessionContextExperiment {
|
|
13158
|
-
readonly 'key': string;
|
|
13159
|
-
readonly 'variant'?: io.flow.v0.models.ExperimentVariant;
|
|
13160
|
-
}
|
|
13161
|
-
|
|
13162
13138
|
interface SessionCurrencyFormat {
|
|
13163
13139
|
readonly 'symbol': io.flow.v0.enums.CurrencySymbolFormat;
|
|
13164
13140
|
readonly 'label_formatters': io.flow.v0.enums.CurrencyLabelFormatter[];
|
|
13165
13141
|
}
|
|
13166
13142
|
|
|
13167
|
-
interface SessionExperiment {
|
|
13168
|
-
readonly 'key': string;
|
|
13169
|
-
readonly 'variant'?: io.flow.v0.models.SessionExperimentVariant;
|
|
13170
|
-
}
|
|
13171
|
-
|
|
13172
|
-
interface SessionExperimentForm {
|
|
13173
|
-
readonly 'key': string;
|
|
13174
|
-
readonly 'variant'?: io.flow.v0.models.SessionExperimentVariantForm;
|
|
13175
|
-
}
|
|
13176
|
-
|
|
13177
|
-
interface SessionExperimentVariant {
|
|
13178
|
-
readonly 'key': string;
|
|
13179
|
-
readonly 'name': string;
|
|
13180
|
-
}
|
|
13181
|
-
|
|
13182
|
-
interface SessionExperimentVariantForm {
|
|
13183
|
-
readonly 'key': string;
|
|
13184
|
-
}
|
|
13185
|
-
|
|
13186
13143
|
interface SessionExpirationConfig {
|
|
13187
13144
|
readonly 'unit': io.flow.v0.enums.UnitOfTime;
|
|
13188
13145
|
readonly 'value': number;
|
|
@@ -13426,6 +13383,11 @@ declare namespace io.flow.v0.models {
|
|
|
13426
13383
|
readonly 'required': boolean;
|
|
13427
13384
|
}
|
|
13428
13385
|
|
|
13386
|
+
interface ShippingLabelError {
|
|
13387
|
+
readonly 'code': io.flow.v0.enums.ShippingLabelErrorCode;
|
|
13388
|
+
readonly 'messages': string[];
|
|
13389
|
+
}
|
|
13390
|
+
|
|
13429
13391
|
interface ShippingLabelHopCostItemizedEstimate {
|
|
13430
13392
|
readonly 'units': io.flow.v0.models.LabelUnits;
|
|
13431
13393
|
readonly 'base': io.flow.v0.models.LabelBase;
|
|
@@ -15360,6 +15322,7 @@ export const scheduleExceptionStatus: PropTypes.Requireable<io.flow.v0.enums.Sch
|
|
|
15360
15322
|
export const shipmentIntegrationType: PropTypes.Requireable<io.flow.v0.enums.ShipmentIntegrationType>;
|
|
15361
15323
|
export const shipmentRecipient: PropTypes.Requireable<io.flow.v0.enums.ShipmentRecipient>;
|
|
15362
15324
|
export const shippingConfigurationType: PropTypes.Requireable<io.flow.v0.enums.ShippingConfigurationType>;
|
|
15325
|
+
export const shippingLabelErrorCode: PropTypes.Requireable<io.flow.v0.enums.ShippingLabelErrorCode>;
|
|
15363
15326
|
export const shopifyGrant: PropTypes.Requireable<io.flow.v0.enums.ShopifyGrant>;
|
|
15364
15327
|
export const shopifyLocalizationMethod: PropTypes.Requireable<io.flow.v0.enums.ShopifyLocalizationMethod>;
|
|
15365
15328
|
export const shopifySyncCheck: PropTypes.Requireable<io.flow.v0.enums.ShopifySyncCheck>;
|
|
@@ -15670,9 +15633,6 @@ export const consumerInvoicePayment: PropTypes.Requireable<io.flow.v0.models.Con
|
|
|
15670
15633
|
export const consumerInvoiceReference: PropTypes.Requireable<io.flow.v0.models.ConsumerInvoiceReference>;
|
|
15671
15634
|
export const consumerInvoiceUpserted: PropTypes.Requireable<io.flow.v0.models.ConsumerInvoiceUpserted>;
|
|
15672
15635
|
export const contact: PropTypes.Requireable<io.flow.v0.models.Contact>;
|
|
15673
|
-
export const context: PropTypes.Requireable<io.flow.v0.models.Context>;
|
|
15674
|
-
export const contextForm: PropTypes.Requireable<io.flow.v0.models.ContextForm>;
|
|
15675
|
-
export const contextReference: PropTypes.Requireable<io.flow.v0.models.ContextReference>;
|
|
15676
15636
|
export const country: PropTypes.Requireable<io.flow.v0.models.Country>;
|
|
15677
15637
|
export const countryAvailability: PropTypes.Requireable<io.flow.v0.models.CountryAvailability>;
|
|
15678
15638
|
export const countryDefaults: PropTypes.Requireable<io.flow.v0.models.CountryDefaults>;
|
|
@@ -15857,7 +15817,6 @@ export const experienceSummary: PropTypes.Requireable<io.flow.v0.models.Experien
|
|
|
15857
15817
|
export const experienceUpserted: PropTypes.Requireable<io.flow.v0.models.ExperienceUpserted>;
|
|
15858
15818
|
export const experienceUpsertedV2: PropTypes.Requireable<io.flow.v0.models.ExperienceUpsertedV2>;
|
|
15859
15819
|
export const experienceVersion: PropTypes.Requireable<io.flow.v0.models.ExperienceVersion>;
|
|
15860
|
-
export const experimentVariant: PropTypes.Requireable<io.flow.v0.models.ExperimentVariant>;
|
|
15861
15820
|
export const expiration: PropTypes.Requireable<io.flow.v0.models.Expiration>;
|
|
15862
15821
|
export const UNSAFE_export: PropTypes.Requireable<io.flow.v0.models.Export>;
|
|
15863
15822
|
export const exportDeliveryEmail: PropTypes.Requireable<io.flow.v0.models.ExportDeliveryEmail>;
|
|
@@ -16557,12 +16516,7 @@ export const serviceReference: PropTypes.Requireable<io.flow.v0.models.ServiceRe
|
|
|
16557
16516
|
export const serviceSummary: PropTypes.Requireable<io.flow.v0.models.ServiceSummary>;
|
|
16558
16517
|
export const serviceUnknown: PropTypes.Requireable<io.flow.v0.models.ServiceUnknown>;
|
|
16559
16518
|
export const sessionAuthorizationForm: PropTypes.Requireable<io.flow.v0.models.SessionAuthorizationForm>;
|
|
16560
|
-
export const sessionContextExperiment: PropTypes.Requireable<io.flow.v0.models.SessionContextExperiment>;
|
|
16561
16519
|
export const sessionCurrencyFormat: PropTypes.Requireable<io.flow.v0.models.SessionCurrencyFormat>;
|
|
16562
|
-
export const sessionExperiment: PropTypes.Requireable<io.flow.v0.models.SessionExperiment>;
|
|
16563
|
-
export const sessionExperimentForm: PropTypes.Requireable<io.flow.v0.models.SessionExperimentForm>;
|
|
16564
|
-
export const sessionExperimentVariant: PropTypes.Requireable<io.flow.v0.models.SessionExperimentVariant>;
|
|
16565
|
-
export const sessionExperimentVariantForm: PropTypes.Requireable<io.flow.v0.models.SessionExperimentVariantForm>;
|
|
16566
16520
|
export const sessionExpirationConfig: PropTypes.Requireable<io.flow.v0.models.SessionExpirationConfig>;
|
|
16567
16521
|
export const sessionForm: PropTypes.Requireable<io.flow.v0.models.SessionForm>;
|
|
16568
16522
|
export const sessionFormat: PropTypes.Requireable<io.flow.v0.models.SessionFormat>;
|
|
@@ -16596,6 +16550,7 @@ export const shippingConfigurationUpserted: PropTypes.Requireable<io.flow.v0.mod
|
|
|
16596
16550
|
export const shippingConfigurationVersion: PropTypes.Requireable<io.flow.v0.models.ShippingConfigurationVersion>;
|
|
16597
16551
|
export const shippingLabel: PropTypes.Requireable<io.flow.v0.models.ShippingLabel>;
|
|
16598
16552
|
export const shippingLabelDocument: PropTypes.Requireable<io.flow.v0.models.ShippingLabelDocument>;
|
|
16553
|
+
export const shippingLabelError: PropTypes.Requireable<io.flow.v0.models.ShippingLabelError>;
|
|
16599
16554
|
export const shippingLabelHopCostItemizedEstimate: PropTypes.Requireable<io.flow.v0.models.ShippingLabelHopCostItemizedEstimate>;
|
|
16600
16555
|
export const shippingLabelHopSummary: PropTypes.Requireable<io.flow.v0.models.ShippingLabelHopSummary>;
|
|
16601
16556
|
export const shippingLabelLaneSummary: PropTypes.Requireable<io.flow.v0.models.ShippingLabelLaneSummary>;
|
package/src/api.js
CHANGED
|
@@ -6259,6 +6259,26 @@ T['io.flow.v0.models.label_base'] = PropTypes.exact({
|
|
|
6259
6259
|
weight: PropTypes.number.isRequired,
|
|
6260
6260
|
});
|
|
6261
6261
|
|
|
6262
|
+
T['io.flow.v0.enums.shipping_label_error_code'] = PropTypes.oneOf([
|
|
6263
|
+
'generic_error',
|
|
6264
|
+
'cancelled_order',
|
|
6265
|
+
'carrier_outage',
|
|
6266
|
+
'catalog_issue',
|
|
6267
|
+
'invalid_destination',
|
|
6268
|
+
'invalid_origin',
|
|
6269
|
+
'invalid_shipping_parameters',
|
|
6270
|
+
'merchant_error',
|
|
6271
|
+
'order_not_found',
|
|
6272
|
+
'order_processing',
|
|
6273
|
+
'restricted_item',
|
|
6274
|
+
'unsupported_lane',
|
|
6275
|
+
]);
|
|
6276
|
+
|
|
6277
|
+
T['io.flow.v0.models.shipping_label_error'] = PropTypes.exact({
|
|
6278
|
+
code: T['io.flow.v0.enums.shipping_label_error_code'].isRequired,
|
|
6279
|
+
messages: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
6280
|
+
});
|
|
6281
|
+
|
|
6262
6282
|
T['io.flow.v0.enums.lane_preselect_preference'] = PropTypes.oneOf(['lowest_cost', 'default_tier']);
|
|
6263
6283
|
T['io.flow.v0.enums.lane_strategy'] = PropTypes.oneOf(['oldest', 'fastest', 'lowest_cost', 'highest_priority']);
|
|
6264
6284
|
T['io.flow.v0.enums.shipping_configuration_type'] = PropTypes.oneOf(['default', 'variant']);
|
|
@@ -6280,15 +6300,6 @@ T['io.flow.v0.enums.onboarding_blocked_reason'] = PropTypes.oneOf([
|
|
|
6280
6300
|
'missing_logistics_contact_info',
|
|
6281
6301
|
]);
|
|
6282
6302
|
|
|
6283
|
-
T['io.flow.v0.models.session_experiment_variant_form'] = PropTypes.exact({
|
|
6284
|
-
key: PropTypes.string.isRequired,
|
|
6285
|
-
});
|
|
6286
|
-
|
|
6287
|
-
T['io.flow.v0.models.session_experiment_form'] = PropTypes.exact({
|
|
6288
|
-
key: PropTypes.string.isRequired,
|
|
6289
|
-
variant: T['io.flow.v0.models.session_experiment_variant_form'],
|
|
6290
|
-
});
|
|
6291
|
-
|
|
6292
6303
|
T['io.flow.v0.enums.return_policy_state'] = PropTypes.oneOf(['current', 'deleting', 'updating']);
|
|
6293
6304
|
|
|
6294
6305
|
T['io.flow.v0.models.return_policy_statistic'] = PropTypes.exact({
|
|
@@ -7124,10 +7135,6 @@ T['io.flow.v0.models.token_partner_reference'] = PropTypes.exact({
|
|
|
7124
7135
|
id: PropTypes.string.isRequired,
|
|
7125
7136
|
});
|
|
7126
7137
|
|
|
7127
|
-
T['io.flow.v0.models.context_reference'] = PropTypes.exact({
|
|
7128
|
-
id: PropTypes.string.isRequired,
|
|
7129
|
-
});
|
|
7130
|
-
|
|
7131
7138
|
T['io.flow.v0.models.session_visit'] = PropTypes.exact({
|
|
7132
7139
|
id: PropTypes.string.isRequired,
|
|
7133
7140
|
expires_at: PropTypes.string.isRequired,
|
|
@@ -7619,21 +7626,11 @@ T['io.flow.v0.models.order_summary_image'] = PropTypes.exact({
|
|
|
7619
7626
|
url: PropTypes.string.isRequired,
|
|
7620
7627
|
});
|
|
7621
7628
|
|
|
7622
|
-
T['io.flow.v0.models.session_experiment_variant'] = PropTypes.exact({
|
|
7623
|
-
key: PropTypes.string.isRequired,
|
|
7624
|
-
name: PropTypes.string.isRequired,
|
|
7625
|
-
});
|
|
7626
|
-
|
|
7627
7629
|
T['io.flow.v0.models.locale_numbers'] = PropTypes.exact({
|
|
7628
7630
|
decimal: PropTypes.string.isRequired,
|
|
7629
7631
|
group: PropTypes.string.isRequired,
|
|
7630
7632
|
});
|
|
7631
7633
|
|
|
7632
|
-
T['io.flow.v0.models.session_experiment'] = PropTypes.exact({
|
|
7633
|
-
key: PropTypes.string.isRequired,
|
|
7634
|
-
variant: T['io.flow.v0.models.session_experiment_variant'],
|
|
7635
|
-
});
|
|
7636
|
-
|
|
7637
7634
|
T['io.flow.v0.models.locale'] = PropTypes.exact({
|
|
7638
7635
|
id: PropTypes.string.isRequired,
|
|
7639
7636
|
name: PropTypes.string.isRequired,
|
|
@@ -9186,24 +9183,6 @@ T['io.flow.v0.models.country_availability'] = PropTypes.exact({
|
|
|
9186
9183
|
countries: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
9187
9184
|
});
|
|
9188
9185
|
|
|
9189
|
-
T['io.flow.v0.models.experiment_variant'] = PropTypes.exact({
|
|
9190
|
-
key: PropTypes.string.isRequired,
|
|
9191
|
-
});
|
|
9192
|
-
|
|
9193
|
-
T['io.flow.v0.models.session_context_experiment'] = PropTypes.exact({
|
|
9194
|
-
key: PropTypes.string.isRequired,
|
|
9195
|
-
variant: T['io.flow.v0.models.experiment_variant'],
|
|
9196
|
-
});
|
|
9197
|
-
|
|
9198
|
-
T['io.flow.v0.models.context_form'] = PropTypes.exact({
|
|
9199
|
-
experiments: PropTypes.arrayOf(T['io.flow.v0.models.session_context_experiment']).isRequired,
|
|
9200
|
-
});
|
|
9201
|
-
|
|
9202
|
-
T['io.flow.v0.models.context'] = PropTypes.exact({
|
|
9203
|
-
id: PropTypes.string.isRequired,
|
|
9204
|
-
experiments: PropTypes.arrayOf(T['io.flow.v0.models.session_context_experiment']).isRequired,
|
|
9205
|
-
});
|
|
9206
|
-
|
|
9207
9186
|
T['io.flow.v0.models.consumer_invoice_levy_form'] = PropTypes.exact({
|
|
9208
9187
|
rate: PropTypes.number.isRequired,
|
|
9209
9188
|
amount: PropTypes.number.isRequired,
|
|
@@ -11254,7 +11233,6 @@ T['io.flow.v0.models.local_session'] = PropTypes.exact({
|
|
|
11254
11233
|
language: T['io.flow.v0.models.language'].isRequired,
|
|
11255
11234
|
locale: T['io.flow.v0.models.locale'].isRequired,
|
|
11256
11235
|
experience: T['io.flow.v0.models.experience_geo'].isRequired,
|
|
11257
|
-
experiment: T['io.flow.v0.models.session_experiment'],
|
|
11258
11236
|
});
|
|
11259
11237
|
|
|
11260
11238
|
T['io.flow.v0.models.organization_session'] = PropTypes.exact({
|
|
@@ -11270,8 +11248,6 @@ T['io.flow.v0.models.organization_session'] = PropTypes.exact({
|
|
|
11270
11248
|
geo: T['io.flow.v0.models.session_geo'],
|
|
11271
11249
|
experience: T['io.flow.v0.models.experience_geo'],
|
|
11272
11250
|
format: T['io.flow.v0.models.session_format'],
|
|
11273
|
-
experiment: T['io.flow.v0.models.session_experiment'],
|
|
11274
|
-
context: T['io.flow.v0.models.context_reference'],
|
|
11275
11251
|
});
|
|
11276
11252
|
|
|
11277
11253
|
T['io.flow.v0.unions.session'] = PropTypes.oneOfType([T['io.flow.v0.models.organization_session']]);
|
|
@@ -18033,9 +18009,6 @@ export const consumerInvoiceReference = T['io.flow.v0.models.consumer_invoice_re
|
|
|
18033
18009
|
export const consumerInvoiceStatus = T['io.flow.v0.enums.consumer_invoice_status'];
|
|
18034
18010
|
export const consumerInvoiceUpserted = T['io.flow.v0.models.consumer_invoice_upserted'];
|
|
18035
18011
|
export const contact = T['io.flow.v0.models.contact'];
|
|
18036
|
-
export const context = T['io.flow.v0.models.context'];
|
|
18037
|
-
export const contextForm = T['io.flow.v0.models.context_form'];
|
|
18038
|
-
export const contextReference = T['io.flow.v0.models.context_reference'];
|
|
18039
18012
|
export const costEstimateSource = T['io.flow.v0.enums.cost_estimate_source'];
|
|
18040
18013
|
export const country = T['io.flow.v0.models.country'];
|
|
18041
18014
|
export const countryAvailability = T['io.flow.v0.models.country_availability'];
|
|
@@ -18269,7 +18242,6 @@ export const experienceSummary = T['io.flow.v0.models.experience_summary'];
|
|
|
18269
18242
|
export const experienceUpserted = T['io.flow.v0.models.experience_upserted'];
|
|
18270
18243
|
export const experienceUpsertedV2 = T['io.flow.v0.models.experience_upserted_v2'];
|
|
18271
18244
|
export const experienceVersion = T['io.flow.v0.models.experience_version'];
|
|
18272
|
-
export const experimentVariant = T['io.flow.v0.models.experiment_variant'];
|
|
18273
18245
|
export const expiration = T['io.flow.v0.models.expiration'];
|
|
18274
18246
|
export const UNSAFE_export = T['io.flow.v0.models.export'];
|
|
18275
18247
|
export const exportDelivery = T['io.flow.v0.unions.export_delivery'];
|
|
@@ -19137,12 +19109,7 @@ export const serviceUnknown = T['io.flow.v0.models.service_unknown'];
|
|
|
19137
19109
|
export const session = T['io.flow.v0.unions.session'];
|
|
19138
19110
|
export const sessionAuthorization = T['io.flow.v0.unions.session_authorization'];
|
|
19139
19111
|
export const sessionAuthorizationForm = T['io.flow.v0.models.session_authorization_form'];
|
|
19140
|
-
export const sessionContextExperiment = T['io.flow.v0.models.session_context_experiment'];
|
|
19141
19112
|
export const sessionCurrencyFormat = T['io.flow.v0.models.session_currency_format'];
|
|
19142
|
-
export const sessionExperiment = T['io.flow.v0.models.session_experiment'];
|
|
19143
|
-
export const sessionExperimentForm = T['io.flow.v0.models.session_experiment_form'];
|
|
19144
|
-
export const sessionExperimentVariant = T['io.flow.v0.models.session_experiment_variant'];
|
|
19145
|
-
export const sessionExperimentVariantForm = T['io.flow.v0.models.session_experiment_variant_form'];
|
|
19146
19113
|
export const sessionExpirationConfig = T['io.flow.v0.models.session_expiration_config'];
|
|
19147
19114
|
export const sessionForm = T['io.flow.v0.models.session_form'];
|
|
19148
19115
|
export const sessionFormat = T['io.flow.v0.models.session_format'];
|
|
@@ -19180,6 +19147,8 @@ export const shippingConfigurationUpserted = T['io.flow.v0.models.shipping_confi
|
|
|
19180
19147
|
export const shippingConfigurationVersion = T['io.flow.v0.models.shipping_configuration_version'];
|
|
19181
19148
|
export const shippingLabel = T['io.flow.v0.models.shipping_label'];
|
|
19182
19149
|
export const shippingLabelDocument = T['io.flow.v0.models.shipping_label_document'];
|
|
19150
|
+
export const shippingLabelError = T['io.flow.v0.models.shipping_label_error'];
|
|
19151
|
+
export const shippingLabelErrorCode = T['io.flow.v0.enums.shipping_label_error_code'];
|
|
19183
19152
|
export const shippingLabelForm = T['io.flow.v0.unions.shipping_label_form'];
|
|
19184
19153
|
export const shippingLabelHopCostItemizedEstimate = T['io.flow.v0.models.shipping_label_hop_cost_itemized_estimate'];
|
|
19185
19154
|
export const shippingLabelHopSummary = T['io.flow.v0.models.shipping_label_hop_summary'];
|