@flowio/api-factories 0.0.62 → 0.0.64
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 +513 -57
- package/dist/esm/api.js +459 -26
- package/dist/types/api.d.ts +24 -2
- package/package.json +2 -2
- package/src/api.ts +532 -27
package/src/api.ts
CHANGED
|
@@ -111,6 +111,147 @@ const factories = {
|
|
|
111
111
|
identifier: factories.string(),
|
|
112
112
|
}),
|
|
113
113
|
|
|
114
|
+
'io.flow.ben.test.internal.v0.models.generate_load_multiple_orgs': (): io.flow.ben.test.internal.v0.models.GenerateLoadMultipleOrgs => ({
|
|
115
|
+
discriminator: 'generate_load_multiple_orgs',
|
|
116
|
+
organization_ids: arrayOf(() => factories.string()),
|
|
117
|
+
num_events: factories.long(),
|
|
118
|
+
}),
|
|
119
|
+
|
|
120
|
+
'io.flow.ben.test.internal.v0.models.generate_load_single_org': (): io.flow.ben.test.internal.v0.models.GenerateLoadSingleOrg => ({
|
|
121
|
+
discriminator: 'generate_load_single_org',
|
|
122
|
+
organization_id: factories.string(),
|
|
123
|
+
num_events: factories.long(),
|
|
124
|
+
}),
|
|
125
|
+
|
|
126
|
+
'io.flow.ben.test.internal.v0.models.test': (): io.flow.ben.test.internal.v0.models.Test => ({
|
|
127
|
+
id: factories.string(),
|
|
128
|
+
name: factories.string(),
|
|
129
|
+
}),
|
|
130
|
+
|
|
131
|
+
'io.flow.ben.test.internal.v0.models.test_form': (): io.flow.ben.test.internal.v0.models.TestForm => ({
|
|
132
|
+
name: factories.string(),
|
|
133
|
+
}),
|
|
134
|
+
|
|
135
|
+
'io.flow.ben.test.internal.v0.unions.generate_load': (): io.flow.ben.test.internal.v0.unions.GenerateLoad => {
|
|
136
|
+
const f = faker.helpers.arrayElement([
|
|
137
|
+
() => factories['io.flow.ben.test.internal.v0.models.generate_load_single_org'](),
|
|
138
|
+
() => factories['io.flow.ben.test.internal.v0.models.generate_load_multiple_orgs'](),
|
|
139
|
+
]);
|
|
140
|
+
|
|
141
|
+
return f();
|
|
142
|
+
},
|
|
143
|
+
|
|
144
|
+
'io.flow.billing.true.up.v0.enums.true_up_surcharge_type': (): io.flow.billing.RESERVED_WORD_true.up.v0.enums.TrueUpSurchargeType => faker.helpers.arrayElement(['fuel', 'remote_area', 'oversize', 'duties_paid', 'emergency', 'peak']),
|
|
145
|
+
'io.flow.billing.true.up.v0.enums.weight_selection': (): io.flow.billing.RESERVED_WORD_true.up.v0.enums.WeightSelection => faker.helpers.arrayElement(['dead', 'dimensional']),
|
|
146
|
+
|
|
147
|
+
'io.flow.billing.true.up.v0.models.label_base': (): io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelBase => ({
|
|
148
|
+
amount: factories.decimal(),
|
|
149
|
+
weight: factories.decimal(),
|
|
150
|
+
}),
|
|
151
|
+
|
|
152
|
+
'io.flow.billing.true.up.v0.models.label_destination': (): io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelDestination => ({
|
|
153
|
+
country: factories.string(),
|
|
154
|
+
}),
|
|
155
|
+
|
|
156
|
+
'io.flow.billing.true.up.v0.models.label_invoice_request': (): io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelInvoiceRequest => ({
|
|
157
|
+
id: factories.string(),
|
|
158
|
+
label: factories['io.flow.billing.true.up.v0.models.true_up_label_summary'](),
|
|
159
|
+
units: factories['io.flow.billing.true.up.v0.models.label_units'](),
|
|
160
|
+
base: factories['io.flow.billing.true.up.v0.models.label_base'](),
|
|
161
|
+
surcharges: arrayOf(() => factories['io.flow.billing.true.up.v0.models.label_surcharge']()),
|
|
162
|
+
total: factories.decimal(),
|
|
163
|
+
destination: factories['io.flow.billing.true.up.v0.models.label_destination'](),
|
|
164
|
+
metadata: factories['io.flow.billing.true.up.v0.models.label_metadata'](),
|
|
165
|
+
}),
|
|
166
|
+
|
|
167
|
+
'io.flow.billing.true.up.v0.models.label_metadata': (): io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelMetadata => ({
|
|
168
|
+
ratecard: factories['io.flow.billing.true.up.v0.models.metadata_ratecard'](),
|
|
169
|
+
weights: factories['io.flow.billing.true.up.v0.models.metadata_weights'](),
|
|
170
|
+
}),
|
|
171
|
+
|
|
172
|
+
'io.flow.billing.true.up.v0.models.label_surcharge': (): io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurcharge => ({
|
|
173
|
+
amount: factories.decimal(),
|
|
174
|
+
type: factories['io.flow.billing.true.up.v0.enums.true_up_surcharge_type'](),
|
|
175
|
+
detail: factories['io.flow.billing.true.up.v0.unions.label_surcharge_detail'](),
|
|
176
|
+
}),
|
|
177
|
+
|
|
178
|
+
'io.flow.billing.true.up.v0.models.label_surcharge_detail_flat': (): io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurchargeDetailFlat => ({
|
|
179
|
+
discriminator: 'flat',
|
|
180
|
+
placeholder: factories.string(),
|
|
181
|
+
}),
|
|
182
|
+
|
|
183
|
+
'io.flow.billing.true.up.v0.models.label_surcharge_detail_per_weight_unit': (): io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurchargeDetailPerWeightUnit => ({
|
|
184
|
+
discriminator: 'per_weight_unit',
|
|
185
|
+
fee: factories.decimal(),
|
|
186
|
+
}),
|
|
187
|
+
|
|
188
|
+
'io.flow.billing.true.up.v0.models.label_surcharge_detail_percentage': (): io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurchargeDetailPercentage => ({
|
|
189
|
+
discriminator: 'percentage',
|
|
190
|
+
percentage: factories.decimal(),
|
|
191
|
+
}),
|
|
192
|
+
|
|
193
|
+
'io.flow.billing.true.up.v0.models.label_units': (): io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelUnits => ({
|
|
194
|
+
currency: factories.string(),
|
|
195
|
+
weight: factories['io.flow.units.v0.enums.unit_of_weight'](),
|
|
196
|
+
length: factories['io.flow.units.v0.enums.unit_of_length'](),
|
|
197
|
+
}),
|
|
198
|
+
|
|
199
|
+
'io.flow.billing.true.up.v0.models.metadata_proposition': (): io.flow.billing.RESERVED_WORD_true.up.v0.models.MetadataProposition => ({
|
|
200
|
+
shipping_method: factories['io.flow.billing.true.up.v0.models.shipping_method_reference'](),
|
|
201
|
+
name: factories.string(),
|
|
202
|
+
}),
|
|
203
|
+
|
|
204
|
+
'io.flow.billing.true.up.v0.models.metadata_ratecard': (): io.flow.billing.RESERVED_WORD_true.up.v0.models.MetadataRatecard => ({
|
|
205
|
+
id: factories.string(),
|
|
206
|
+
proposition: factories['io.flow.billing.true.up.v0.models.metadata_proposition'](),
|
|
207
|
+
}),
|
|
208
|
+
|
|
209
|
+
'io.flow.billing.true.up.v0.models.metadata_weights': (): io.flow.billing.RESERVED_WORD_true.up.v0.models.MetadataWeights => ({
|
|
210
|
+
selected: factories['io.flow.billing.true.up.v0.enums.weight_selection'](),
|
|
211
|
+
dead: factories['io.flow.billing.true.up.v0.models.weights_dead'](),
|
|
212
|
+
dimensional: factories['io.flow.billing.true.up.v0.models.weights_dimensional'](),
|
|
213
|
+
}),
|
|
214
|
+
|
|
215
|
+
'io.flow.billing.true.up.v0.models.shipping_method_reference': (): io.flow.billing.RESERVED_WORD_true.up.v0.models.ShippingMethodReference => ({
|
|
216
|
+
id: factories.string(),
|
|
217
|
+
}),
|
|
218
|
+
|
|
219
|
+
'io.flow.billing.true.up.v0.models.true_up_label_summary': (): io.flow.billing.RESERVED_WORD_true.up.v0.models.TrueUpLabelSummary => ({
|
|
220
|
+
id: factories.string(),
|
|
221
|
+
carrier_service_id: factories.string(),
|
|
222
|
+
carrier_tracking_number: factories.string(),
|
|
223
|
+
flow_tracking_number: factories.string(),
|
|
224
|
+
created_at: factories.date_time_iso_8601(),
|
|
225
|
+
}),
|
|
226
|
+
|
|
227
|
+
'io.flow.billing.true.up.v0.models.weights_dead': (): io.flow.billing.RESERVED_WORD_true.up.v0.models.WeightsDead => ({
|
|
228
|
+
weight: factories.decimal(),
|
|
229
|
+
}),
|
|
230
|
+
|
|
231
|
+
'io.flow.billing.true.up.v0.models.weights_dimensional': (): io.flow.billing.RESERVED_WORD_true.up.v0.models.WeightsDimensional => ({
|
|
232
|
+
weight: factories.decimal(),
|
|
233
|
+
length: factories.decimal(),
|
|
234
|
+
width: factories.decimal(),
|
|
235
|
+
height: factories.decimal(),
|
|
236
|
+
}),
|
|
237
|
+
|
|
238
|
+
'io.flow.billing.true.up.v0.unions.label_surcharge_detail': (): io.flow.billing.RESERVED_WORD_true.up.v0.unions.LabelSurchargeDetail => {
|
|
239
|
+
const f = faker.helpers.arrayElement([
|
|
240
|
+
() => factories['io.flow.billing.true.up.v0.models.label_surcharge_detail_flat'](),
|
|
241
|
+
() => factories['io.flow.billing.true.up.v0.models.label_surcharge_detail_percentage'](),
|
|
242
|
+
() => factories['io.flow.billing.true.up.v0.models.label_surcharge_detail_per_weight_unit'](),
|
|
243
|
+
]);
|
|
244
|
+
|
|
245
|
+
return f();
|
|
246
|
+
},
|
|
247
|
+
|
|
248
|
+
'io.flow.error.v0.enums.generic_error_code': (): io.flow.error.v0.enums.GenericErrorCode => faker.helpers.arrayElement(['generic_error', 'client_error', 'server_error']),
|
|
249
|
+
|
|
250
|
+
'io.flow.error.v0.models.generic_error': (): io.flow.error.v0.models.GenericError => ({
|
|
251
|
+
code: factories['io.flow.error.v0.enums.generic_error_code'](),
|
|
252
|
+
messages: arrayOf(() => factories.string()),
|
|
253
|
+
}),
|
|
254
|
+
|
|
114
255
|
'io.flow.google.pay.v0.enums.auth_method': (): io.flow.google.pay.v0.enums.AuthMethod => faker.helpers.arrayElement(['PAN_ONLY', 'CRYPTOGRAM_3DS']),
|
|
115
256
|
'io.flow.google.pay.v0.enums.billing_address_format': (): io.flow.google.pay.v0.enums.BillingAddressFormat => faker.helpers.arrayElement(['MIN', 'FULL']),
|
|
116
257
|
'io.flow.google.pay.v0.enums.card_gateway': (): io.flow.google.pay.v0.enums.CardGateway => faker.helpers.arrayElement(['adyen', 'stripe']),
|
|
@@ -449,7 +590,7 @@ const factories = {
|
|
|
449
590
|
starts_at: factories.date_time_iso_8601(),
|
|
450
591
|
ends_at: factories.date_time_iso_8601(),
|
|
451
592
|
prerequisite_subtotal_range: factories['io.flow.shopify.external.v0.models.price_rule_greater_than_range'](),
|
|
452
|
-
|
|
593
|
+
prerequisite_shipping_price_range: factories['io.flow.shopify.external.v0.models.price_rule_less_than_range'](),
|
|
453
594
|
usage_limit: factories.long(),
|
|
454
595
|
entitled_product_ids: arrayOf(() => factories.long()),
|
|
455
596
|
entitled_variant_ids: arrayOf(() => factories.long()),
|
|
@@ -459,7 +600,7 @@ const factories = {
|
|
|
459
600
|
once_per_customer: factories.boolean(),
|
|
460
601
|
target_selection: factories['io.flow.shopify.external.v0.enums.price_rule_target_selection'](),
|
|
461
602
|
customer_selection: factories['io.flow.shopify.external.v0.enums.price_rule_customer_selection'](),
|
|
462
|
-
|
|
603
|
+
customer_segment_prerequisite_ids: arrayOf(() => factories.long()),
|
|
463
604
|
prerequisite_customer_ids: arrayOf(() => factories.long()),
|
|
464
605
|
prerequisite_quantity_range: factories['io.flow.shopify.external.v0.models.price_rule_greater_than_range'](),
|
|
465
606
|
prerequisite_product_ids: arrayOf(() => factories.long()),
|
|
@@ -1325,6 +1466,7 @@ const factories = {
|
|
|
1325
1466
|
}),
|
|
1326
1467
|
|
|
1327
1468
|
'io.flow.stripe.v0.enums.account_type': (): io.flow.stripe.v0.enums.AccountType => faker.helpers.arrayElement(['platform', 'custom', 'standard', 'express']),
|
|
1469
|
+
'io.flow.stripe.v0.enums.apple_pay_type': (): io.flow.stripe.v0.enums.ApplePayType => faker.helpers.arrayElement(['apple_pay', 'apple_pay_later']),
|
|
1328
1470
|
|
|
1329
1471
|
'io.flow.stripe.v0.enums.cancellation_reason': (): io.flow.stripe.v0.enums.CancellationReason => faker.helpers.arrayElement([
|
|
1330
1472
|
'abandoned',
|
|
@@ -1363,6 +1505,21 @@ const factories = {
|
|
|
1363
1505
|
]),
|
|
1364
1506
|
|
|
1365
1507
|
'io.flow.stripe.v0.enums.card_funding_type': (): io.flow.stripe.v0.enums.CardFundingType => faker.helpers.arrayElement(['credit', 'debit', 'prepaid', 'unknown']),
|
|
1508
|
+
|
|
1509
|
+
'io.flow.stripe.v0.enums.card_network': (): io.flow.stripe.v0.enums.CardNetwork => faker.helpers.arrayElement([
|
|
1510
|
+
'amex',
|
|
1511
|
+
'cartes_bancaires',
|
|
1512
|
+
'diners',
|
|
1513
|
+
'discover',
|
|
1514
|
+
'eftpos_au',
|
|
1515
|
+
'interac',
|
|
1516
|
+
'jcb',
|
|
1517
|
+
'mastercard',
|
|
1518
|
+
'unionpay',
|
|
1519
|
+
'visa',
|
|
1520
|
+
'unknown',
|
|
1521
|
+
]),
|
|
1522
|
+
|
|
1366
1523
|
'io.flow.stripe.v0.enums.check_outcome': (): io.flow.stripe.v0.enums.CheckOutcome => faker.helpers.arrayElement(['pass', 'fail', 'unavailable', 'unchecked']),
|
|
1367
1524
|
'io.flow.stripe.v0.enums.code_verification_status': (): io.flow.stripe.v0.enums.CodeVerificationStatus => faker.helpers.arrayElement(['pending', 'succeeded', 'failed']),
|
|
1368
1525
|
'io.flow.stripe.v0.enums.confirmation_method': (): io.flow.stripe.v0.enums.ConfirmationMethod => faker.helpers.arrayElement(['automatic', 'manual']),
|
|
@@ -1469,9 +1626,58 @@ const factories = {
|
|
|
1469
1626
|
'succeeded',
|
|
1470
1627
|
]),
|
|
1471
1628
|
|
|
1629
|
+
'io.flow.stripe.v0.enums.payment_method_category_klarna': (): io.flow.stripe.v0.enums.PaymentMethodCategoryKlarna => faker.helpers.arrayElement(['pay_later', 'pay_now', 'pay_with_financing', 'pay_in_installments']),
|
|
1472
1630
|
'io.flow.stripe.v0.enums.payment_method_type': (): io.flow.stripe.v0.enums.PaymentMethodType => faker.helpers.arrayElement(['card', 'card_present']),
|
|
1473
1631
|
'io.flow.stripe.v0.enums.payment_outcome_type': (): io.flow.stripe.v0.enums.PaymentOutcomeType => faker.helpers.arrayElement(['authorized', 'manual_review', 'issuer_declined', 'blocked', 'invalid']),
|
|
1474
1632
|
'io.flow.stripe.v0.enums.payment_status': (): io.flow.stripe.v0.enums.PaymentStatus => faker.helpers.arrayElement(['succeeded', 'pending', 'failed']),
|
|
1633
|
+
|
|
1634
|
+
'io.flow.stripe.v0.enums.preferred_locale_klarna': (): io.flow.stripe.v0.enums.PreferredLocaleKlarna => faker.helpers.arrayElement([
|
|
1635
|
+
'de-AT',
|
|
1636
|
+
'en-AT',
|
|
1637
|
+
'nl-BE',
|
|
1638
|
+
'fr-BE',
|
|
1639
|
+
'en-BE',
|
|
1640
|
+
'de-DE',
|
|
1641
|
+
'en-DE',
|
|
1642
|
+
'da-DK',
|
|
1643
|
+
'en-DK',
|
|
1644
|
+
'es-ES',
|
|
1645
|
+
'en-ES',
|
|
1646
|
+
'fi-FI',
|
|
1647
|
+
'sv-FI',
|
|
1648
|
+
'en-FI',
|
|
1649
|
+
'en-GB',
|
|
1650
|
+
'en-IE',
|
|
1651
|
+
'it-IT',
|
|
1652
|
+
'en-IT',
|
|
1653
|
+
'nl-NL',
|
|
1654
|
+
'en-NL',
|
|
1655
|
+
'nb-NO',
|
|
1656
|
+
'en-NO',
|
|
1657
|
+
'sv-SE',
|
|
1658
|
+
'en-SE',
|
|
1659
|
+
'en-US',
|
|
1660
|
+
'es-US',
|
|
1661
|
+
'fr-FR',
|
|
1662
|
+
'en-FR',
|
|
1663
|
+
'cs-CZ',
|
|
1664
|
+
'en-CZ',
|
|
1665
|
+
'el-GR',
|
|
1666
|
+
'en-GR',
|
|
1667
|
+
'en-AU',
|
|
1668
|
+
'en-NZ',
|
|
1669
|
+
'en-CA',
|
|
1670
|
+
'fr-CA',
|
|
1671
|
+
'pl-PL',
|
|
1672
|
+
'en-PL',
|
|
1673
|
+
'pt-PT',
|
|
1674
|
+
'en-PT',
|
|
1675
|
+
'de-CH',
|
|
1676
|
+
'fr-CH',
|
|
1677
|
+
'it-CH',
|
|
1678
|
+
'en-CH',
|
|
1679
|
+
]),
|
|
1680
|
+
|
|
1475
1681
|
'io.flow.stripe.v0.enums.refund_failure_reason': (): io.flow.stripe.v0.enums.RefundFailureReason => faker.helpers.arrayElement(['lost_or_stolen_card', 'expired_or_canceled_card', 'unknown']),
|
|
1476
1682
|
'io.flow.stripe.v0.enums.refund_reason': (): io.flow.stripe.v0.enums.RefundReason => faker.helpers.arrayElement(['duplicate', 'fraudulent', 'requested_by_customer']),
|
|
1477
1683
|
'io.flow.stripe.v0.enums.refund_status': (): io.flow.stripe.v0.enums.RefundStatus => faker.helpers.arrayElement(['succeeded', 'failed', 'pending', 'canceled']),
|
|
@@ -1501,6 +1707,27 @@ const factories = {
|
|
|
1501
1707
|
|
|
1502
1708
|
'io.flow.stripe.v0.enums.source_usage_type': (): io.flow.stripe.v0.enums.SourceUsageType => faker.helpers.arrayElement(['reusable', 'single_use']),
|
|
1503
1709
|
'io.flow.stripe.v0.enums.three_d_secure_support': (): io.flow.stripe.v0.enums.ThreeDSecureSupport => faker.helpers.arrayElement(['required', 'recommended', 'optional', 'not_supported']),
|
|
1710
|
+
'io.flow.stripe.v0.enums.three_ds_authentication_flow': (): io.flow.stripe.v0.enums.ThreeDsAuthenticationFlow => faker.helpers.arrayElement(['challenge', 'frictionless']),
|
|
1711
|
+
|
|
1712
|
+
'io.flow.stripe.v0.enums.three_ds_result': (): io.flow.stripe.v0.enums.ThreeDsResult => faker.helpers.arrayElement([
|
|
1713
|
+
'authenticated',
|
|
1714
|
+
'attempt_acknowledged',
|
|
1715
|
+
'exempted',
|
|
1716
|
+
'not_supported',
|
|
1717
|
+
'failed',
|
|
1718
|
+
'processing_error',
|
|
1719
|
+
]),
|
|
1720
|
+
|
|
1721
|
+
'io.flow.stripe.v0.enums.three_ds_result_reason': (): io.flow.stripe.v0.enums.ThreeDsResultReason => faker.helpers.arrayElement([
|
|
1722
|
+
'card_not_enrolled',
|
|
1723
|
+
'network_not_supported',
|
|
1724
|
+
'abandoned',
|
|
1725
|
+
'canceled',
|
|
1726
|
+
'rejected',
|
|
1727
|
+
'bypassed',
|
|
1728
|
+
'protocol_error',
|
|
1729
|
+
]),
|
|
1730
|
+
|
|
1504
1731
|
'io.flow.stripe.v0.enums.token_type': (): io.flow.stripe.v0.enums.TokenType => faker.helpers.arrayElement(['account', 'bank_account', 'card', 'pii']),
|
|
1505
1732
|
'io.flow.stripe.v0.enums.use_stripe_sdk_type': (): io.flow.stripe.v0.enums.UseStripeSdkType => faker.helpers.arrayElement(['three_d_secure_redirect', 'stripe_3ds2_fingerprint']),
|
|
1506
1733
|
|
|
@@ -1548,6 +1775,16 @@ const factories = {
|
|
|
1548
1775
|
state: factories.string(),
|
|
1549
1776
|
}),
|
|
1550
1777
|
|
|
1778
|
+
'io.flow.stripe.v0.models.apple_pay': (): io.flow.stripe.v0.models.ApplePay => ({
|
|
1779
|
+
type: 'apple_pay',
|
|
1780
|
+
apple_pay: factories['io.flow.stripe.v0.models.apple_pay_information'](),
|
|
1781
|
+
dynamic_last4: factories.string(),
|
|
1782
|
+
}),
|
|
1783
|
+
|
|
1784
|
+
'io.flow.stripe.v0.models.apple_pay_information': (): io.flow.stripe.v0.models.ApplePayInformation => ({
|
|
1785
|
+
type: factories['io.flow.stripe.v0.enums.apple_pay_type'](),
|
|
1786
|
+
}),
|
|
1787
|
+
|
|
1551
1788
|
'io.flow.stripe.v0.models.card': (): io.flow.stripe.v0.models.Card => ({
|
|
1552
1789
|
id: factories.string(),
|
|
1553
1790
|
object: factories.string(),
|
|
@@ -1573,6 +1810,12 @@ const factories = {
|
|
|
1573
1810
|
tokenization_method: factories.string(),
|
|
1574
1811
|
}),
|
|
1575
1812
|
|
|
1813
|
+
'io.flow.stripe.v0.models.card_checks': (): io.flow.stripe.v0.models.CardChecks => ({
|
|
1814
|
+
address_line1_check: factories['io.flow.stripe.v0.enums.check_outcome'](),
|
|
1815
|
+
address_postal_code_check: factories['io.flow.stripe.v0.enums.check_outcome'](),
|
|
1816
|
+
cvc_check: factories['io.flow.stripe.v0.enums.check_outcome'](),
|
|
1817
|
+
}),
|
|
1818
|
+
|
|
1576
1819
|
'io.flow.stripe.v0.models.card_request': (): io.flow.stripe.v0.models.CardRequest => ({
|
|
1577
1820
|
object: factories.string(),
|
|
1578
1821
|
exp_month: factories.string(),
|
|
@@ -1616,7 +1859,7 @@ const factories = {
|
|
|
1616
1859
|
payment_intent: factories.string(),
|
|
1617
1860
|
calculated_statement_descriptor: factories.string(),
|
|
1618
1861
|
statement_descriptor: factories.string(),
|
|
1619
|
-
payment_method_details: factories.
|
|
1862
|
+
payment_method_details: factories['io.flow.stripe.v0.unions.payment_method_details'](),
|
|
1620
1863
|
}),
|
|
1621
1864
|
|
|
1622
1865
|
'io.flow.stripe.v0.models.charge_destination': (): io.flow.stripe.v0.models.ChargeDestination => ({
|
|
@@ -1666,7 +1909,7 @@ const factories = {
|
|
|
1666
1909
|
payment_intent: factories.string(),
|
|
1667
1910
|
calculated_statement_descriptor: factories.string(),
|
|
1668
1911
|
statement_descriptor: factories.string(),
|
|
1669
|
-
payment_method_details: factories.
|
|
1912
|
+
payment_method_details: factories['io.flow.stripe.v0.unions.payment_method_details'](),
|
|
1670
1913
|
}),
|
|
1671
1914
|
|
|
1672
1915
|
'io.flow.stripe.v0.models.code_verification': (): io.flow.stripe.v0.models.CodeVerification => ({
|
|
@@ -1725,12 +1968,29 @@ const factories = {
|
|
|
1725
1968
|
additional_owners: arrayOf(() => factories['io.flow.stripe.v0.models.owner']()),
|
|
1726
1969
|
}),
|
|
1727
1970
|
|
|
1971
|
+
'io.flow.stripe.v0.models.masterpass': (): io.flow.stripe.v0.models.Masterpass => ({
|
|
1972
|
+
type: 'masterpass',
|
|
1973
|
+
masterpass: factories['io.flow.stripe.v0.models.masterpass_information'](),
|
|
1974
|
+
dynamic_last4: factories.string(),
|
|
1975
|
+
}),
|
|
1976
|
+
|
|
1977
|
+
'io.flow.stripe.v0.models.masterpass_information': (): io.flow.stripe.v0.models.MasterpassInformation => ({
|
|
1978
|
+
billing_address: factories['io.flow.stripe.v0.models.address'](),
|
|
1979
|
+
email: factories.string(),
|
|
1980
|
+
name: factories.string(),
|
|
1981
|
+
shipping_address: factories['io.flow.stripe.v0.models.address'](),
|
|
1982
|
+
}),
|
|
1983
|
+
|
|
1728
1984
|
'io.flow.stripe.v0.models.metadata': (): io.flow.stripe.v0.models.Metadata => ({
|
|
1729
1985
|
order_number: factories.string(),
|
|
1730
1986
|
authorization_id: factories.string(),
|
|
1731
1987
|
organization_id: factories.string(),
|
|
1732
1988
|
}),
|
|
1733
1989
|
|
|
1990
|
+
'io.flow.stripe.v0.models.network_token_used': (): io.flow.stripe.v0.models.NetworkTokenUsed => ({
|
|
1991
|
+
used: factories.boolean(),
|
|
1992
|
+
}),
|
|
1993
|
+
|
|
1734
1994
|
'io.flow.stripe.v0.models.next_action': (): io.flow.stripe.v0.models.NextAction => ({
|
|
1735
1995
|
type: factories['io.flow.stripe.v0.enums.next_action_type'](),
|
|
1736
1996
|
use_stripe_sdk: factories.object(),
|
|
@@ -1912,6 +2172,43 @@ const factories = {
|
|
|
1912
2172
|
phone: factories.string(),
|
|
1913
2173
|
}),
|
|
1914
2174
|
|
|
2175
|
+
'io.flow.stripe.v0.models.payment_method_details_card': (): io.flow.stripe.v0.models.PaymentMethodDetailsCard => ({
|
|
2176
|
+
type: 'card',
|
|
2177
|
+
card: factories['io.flow.stripe.v0.models.payment_method_details_card_information'](),
|
|
2178
|
+
}),
|
|
2179
|
+
|
|
2180
|
+
'io.flow.stripe.v0.models.payment_method_details_card_information': (): io.flow.stripe.v0.models.PaymentMethodDetailsCardInformation => ({
|
|
2181
|
+
brand: factories.string(),
|
|
2182
|
+
checks: factories['io.flow.stripe.v0.models.card_checks'](),
|
|
2183
|
+
country: factories.string(),
|
|
2184
|
+
exp_month: factories.integer(),
|
|
2185
|
+
exp_year: factories.integer(),
|
|
2186
|
+
fingerprint: factories.string(),
|
|
2187
|
+
funding: factories['io.flow.stripe.v0.enums.card_funding_type'](),
|
|
2188
|
+
installments: factories['io.flow.stripe.v0.models.plan'](),
|
|
2189
|
+
last4: factories.string(),
|
|
2190
|
+
mandate: factories.string(),
|
|
2191
|
+
network: factories['io.flow.stripe.v0.enums.card_network'](),
|
|
2192
|
+
network_token: factories['io.flow.stripe.v0.models.network_token_used'](),
|
|
2193
|
+
three_d_secure: factories['io.flow.stripe.v0.models.three_d_secure_charge'](),
|
|
2194
|
+
capture_before: factories.long(),
|
|
2195
|
+
description: factories.string(),
|
|
2196
|
+
iin: factories.string(),
|
|
2197
|
+
issuer: factories.string(),
|
|
2198
|
+
wallet: factories['io.flow.stripe.v0.unions.card_wallet'](),
|
|
2199
|
+
network_transaction_id: factories.string(),
|
|
2200
|
+
}),
|
|
2201
|
+
|
|
2202
|
+
'io.flow.stripe.v0.models.payment_method_details_klarna': (): io.flow.stripe.v0.models.PaymentMethodDetailsKlarna => ({
|
|
2203
|
+
type: 'klarna',
|
|
2204
|
+
klarna: factories['io.flow.stripe.v0.models.payment_method_details_klarna_information'](),
|
|
2205
|
+
}),
|
|
2206
|
+
|
|
2207
|
+
'io.flow.stripe.v0.models.payment_method_details_klarna_information': (): io.flow.stripe.v0.models.PaymentMethodDetailsKlarnaInformation => ({
|
|
2208
|
+
payment_method_category: factories['io.flow.stripe.v0.enums.payment_method_category_klarna'](),
|
|
2209
|
+
preferred_locale: factories['io.flow.stripe.v0.enums.preferred_locale_klarna'](),
|
|
2210
|
+
}),
|
|
2211
|
+
|
|
1915
2212
|
'io.flow.stripe.v0.models.payment_method_form': (): io.flow.stripe.v0.models.PaymentMethodForm => ({
|
|
1916
2213
|
type: factories['io.flow.stripe.v0.enums.payment_method_type'](),
|
|
1917
2214
|
billing_details: factories['io.flow.stripe.v0.models.payment_method_billing_details'](),
|
|
@@ -1934,6 +2231,12 @@ const factories = {
|
|
|
1934
2231
|
type: factories['io.flow.stripe.v0.enums.payment_outcome_type'](),
|
|
1935
2232
|
}),
|
|
1936
2233
|
|
|
2234
|
+
'io.flow.stripe.v0.models.plan': (): io.flow.stripe.v0.models.Plan => ({
|
|
2235
|
+
count: factories.integer(),
|
|
2236
|
+
interval: factories.string(),
|
|
2237
|
+
type: factories.string(),
|
|
2238
|
+
}),
|
|
2239
|
+
|
|
1937
2240
|
'io.flow.stripe.v0.models.receiver': (): io.flow.stripe.v0.models.Receiver => ({
|
|
1938
2241
|
address: factories.string(),
|
|
1939
2242
|
amount_charged: factories.integer(),
|
|
@@ -2155,6 +2458,15 @@ const factories = {
|
|
|
2155
2458
|
customer: factories.string(),
|
|
2156
2459
|
}),
|
|
2157
2460
|
|
|
2461
|
+
'io.flow.stripe.v0.models.three_d_secure_charge': (): io.flow.stripe.v0.models.ThreeDSecureCharge => ({
|
|
2462
|
+
authenticated: factories.boolean(),
|
|
2463
|
+
authentication_flow: factories['io.flow.stripe.v0.enums.three_ds_authentication_flow'](),
|
|
2464
|
+
result: factories['io.flow.stripe.v0.enums.three_ds_result'](),
|
|
2465
|
+
result_reason: factories['io.flow.stripe.v0.enums.three_ds_result_reason'](),
|
|
2466
|
+
succeeded: factories.boolean(),
|
|
2467
|
+
version: factories.string(),
|
|
2468
|
+
}),
|
|
2469
|
+
|
|
2158
2470
|
'io.flow.stripe.v0.models.three_d_secure_redirect': (): io.flow.stripe.v0.models.ThreeDSecureRedirect => ({
|
|
2159
2471
|
type: factories['io.flow.stripe.v0.enums.use_stripe_sdk_type'](),
|
|
2160
2472
|
stripe_js: factories.string(),
|
|
@@ -2182,6 +2494,41 @@ const factories = {
|
|
|
2182
2494
|
destination: factories.string(),
|
|
2183
2495
|
}),
|
|
2184
2496
|
|
|
2497
|
+
'io.flow.stripe.v0.models.visa_checkout': (): io.flow.stripe.v0.models.VisaCheckout => ({
|
|
2498
|
+
type: 'visa_checkout',
|
|
2499
|
+
visa_checkout: factories['io.flow.stripe.v0.models.visa_checkout_information'](),
|
|
2500
|
+
dynamic_last4: factories.string(),
|
|
2501
|
+
}),
|
|
2502
|
+
|
|
2503
|
+
'io.flow.stripe.v0.models.visa_checkout_information': (): io.flow.stripe.v0.models.VisaCheckoutInformation => ({
|
|
2504
|
+
billing_address: factories['io.flow.stripe.v0.models.address'](),
|
|
2505
|
+
email: factories.string(),
|
|
2506
|
+
name: factories.string(),
|
|
2507
|
+
shipping_address: factories['io.flow.stripe.v0.models.address'](),
|
|
2508
|
+
}),
|
|
2509
|
+
|
|
2510
|
+
'io.flow.stripe.v0.unions.card_wallet': (): io.flow.stripe.v0.unions.CardWallet => {
|
|
2511
|
+
const f = faker.helpers.arrayElement([
|
|
2512
|
+
() => factories['io.flow.stripe.v0.models.masterpass'](),
|
|
2513
|
+
() => factories['io.flow.stripe.v0.models.apple_pay'](),
|
|
2514
|
+
() => factories['io.flow.stripe.v0.models.visa_checkout'](),
|
|
2515
|
+
]);
|
|
2516
|
+
|
|
2517
|
+
return f();
|
|
2518
|
+
},
|
|
2519
|
+
|
|
2520
|
+
'io.flow.stripe.v0.unions.payment_method_details': (): io.flow.stripe.v0.unions.PaymentMethodDetails => {
|
|
2521
|
+
const f = faker.helpers.arrayElement([
|
|
2522
|
+
() => factories['io.flow.stripe.v0.models.payment_method_details_card'](),
|
|
2523
|
+
() => factories['io.flow.stripe.v0.models.payment_method_details_klarna'](),
|
|
2524
|
+
]);
|
|
2525
|
+
|
|
2526
|
+
return f();
|
|
2527
|
+
},
|
|
2528
|
+
|
|
2529
|
+
'io.flow.units.v0.enums.unit_of_length': (): io.flow.units.v0.enums.UnitOfLength => faker.helpers.arrayElement(['millimeter', 'centimeter', 'inch', 'foot', 'meter']),
|
|
2530
|
+
'io.flow.units.v0.enums.unit_of_volume': (): io.flow.units.v0.enums.UnitOfVolume => faker.helpers.arrayElement(['cubic_inch', 'cubic_meter']),
|
|
2531
|
+
'io.flow.units.v0.enums.unit_of_weight': (): io.flow.units.v0.enums.UnitOfWeight => faker.helpers.arrayElement(['gram', 'kilogram', 'ounce', 'pound']),
|
|
2185
2532
|
'io.flow.v0.enums.abandoned_order_promotion_status': (): io.flow.v0.enums.AbandonedOrderPromotionStatus => faker.helpers.arrayElement(['active', 'inactive']),
|
|
2186
2533
|
'io.flow.v0.enums.abandoned_order_setting_status': (): io.flow.v0.enums.AbandonedOrderSettingStatus => faker.helpers.arrayElement(['active', 'inactive']),
|
|
2187
2534
|
|
|
@@ -2388,6 +2735,7 @@ const factories = {
|
|
|
2388
2735
|
|
|
2389
2736
|
'io.flow.v0.enums.event_type': (): io.flow.v0.enums.EventType => faker.helpers.arrayElement([
|
|
2390
2737
|
'test_upserted',
|
|
2738
|
+
'generate_load',
|
|
2391
2739
|
'transaction_upserted',
|
|
2392
2740
|
'organization_transaction_upserted',
|
|
2393
2741
|
'organization_transaction_deleted',
|
|
@@ -2872,6 +3220,7 @@ const factories = {
|
|
|
2872
3220
|
'io.flow.v0.enums.organization_payment_method_tag': (): io.flow.v0.enums.OrganizationPaymentMethodTag => faker.helpers.arrayElement(['deny']),
|
|
2873
3221
|
'io.flow.v0.enums.organization_status': (): io.flow.v0.enums.OrganizationStatus => faker.helpers.arrayElement(['active', 'inactive', 'deactivated', 'provisioned']),
|
|
2874
3222
|
'io.flow.v0.enums.organization_type': (): io.flow.v0.enums.OrganizationType => faker.helpers.arrayElement(['standalone', 'channel']),
|
|
3223
|
+
'io.flow.v0.enums.package_dimensions_source': (): io.flow.v0.enums.PackageDimensionsSource => faker.helpers.arrayElement(['provided', 'dimensions_estimated']),
|
|
2875
3224
|
|
|
2876
3225
|
'io.flow.v0.enums.payment_action_type': (): io.flow.v0.enums.PaymentActionType => faker.helpers.arrayElement([
|
|
2877
3226
|
'redirect',
|
|
@@ -2927,6 +3276,7 @@ const factories = {
|
|
|
2927
3276
|
'order_unsupported_destination',
|
|
2928
3277
|
'order_missing_information',
|
|
2929
3278
|
'order_domestic',
|
|
3279
|
+
'order_mismatched_currencies',
|
|
2930
3280
|
]),
|
|
2931
3281
|
|
|
2932
3282
|
'io.flow.v0.enums.payment_request_review_status': (): io.flow.v0.enums.PaymentRequestReviewStatus => faker.helpers.arrayElement(['pending', 'approved', 'rejected']),
|
|
@@ -2963,6 +3313,7 @@ const factories = {
|
|
|
2963
3313
|
'io.flow.v0.enums.permitted_http_method': (): io.flow.v0.enums.PermittedHttpMethod => faker.helpers.arrayElement(['GET', 'POST', 'PUT', 'DELETE', 'PATCH']),
|
|
2964
3314
|
'io.flow.v0.enums.physical_delivery_special_serivce': (): io.flow.v0.enums.PhysicalDeliverySpecialSerivce => faker.helpers.arrayElement(['cold_storage', 'hazardous', 'perishable']),
|
|
2965
3315
|
'io.flow.v0.enums.postal_type': (): io.flow.v0.enums.PostalType => faker.helpers.arrayElement(['eircode', 'pin', 'postal', 'zip']),
|
|
3316
|
+
'io.flow.v0.enums.preferred_service_selection_strategy': (): io.flow.v0.enums.PreferredServiceSelectionStrategy => faker.helpers.arrayElement(['calculated_rate', 'flat_rate', 'custom_rate']),
|
|
2966
3317
|
'io.flow.v0.enums.price_accuracy': (): io.flow.v0.enums.PriceAccuracy => faker.helpers.arrayElement(['calculated', 'estimated_from_partial_destination']),
|
|
2967
3318
|
'io.flow.v0.enums.price_book_status': (): io.flow.v0.enums.PriceBookStatus => faker.helpers.arrayElement(['draft', 'published', 'archived']),
|
|
2968
3319
|
|
|
@@ -3074,6 +3425,7 @@ const factories = {
|
|
|
3074
3425
|
'io.flow.v0.enums.shopify_sync_check': (): io.flow.v0.enums.ShopifySyncCheck => faker.helpers.arrayElement(['localized_variants', 'flow_variant_metafields']),
|
|
3075
3426
|
'io.flow.v0.enums.sort_direction': (): io.flow.v0.enums.SortDirection => faker.helpers.arrayElement(['ascending', 'descending']),
|
|
3076
3427
|
'io.flow.v0.enums.statement_attachment_type': (): io.flow.v0.enums.StatementAttachmentType => faker.helpers.arrayElement(['csv']),
|
|
3428
|
+
'io.flow.v0.enums.stored_method_usage_step': (): io.flow.v0.enums.StoredMethodUsageStep => faker.helpers.arrayElement(['initial', 'subsequent']),
|
|
3077
3429
|
'io.flow.v0.enums.strategy': (): io.flow.v0.enums.Strategy => faker.helpers.arrayElement(['range', 'from', 'to']),
|
|
3078
3430
|
'io.flow.v0.enums.subcatalog_item_status': (): io.flow.v0.enums.SubcatalogItemStatus => faker.helpers.arrayElement(['excluded', 'included', 'restricted']),
|
|
3079
3431
|
'io.flow.v0.enums.surcharge_responsible_party': (): io.flow.v0.enums.SurchargeResponsibleParty => faker.helpers.arrayElement(['organization', 'customer']),
|
|
@@ -3135,6 +3487,15 @@ const factories = {
|
|
|
3135
3487
|
'io.flow.v0.enums.trade_agreement_name': (): io.flow.v0.enums.TradeAgreementName => faker.helpers.arrayElement(['USMCA', 'T-MEC', 'CUSMA', 'TCA']),
|
|
3136
3488
|
'io.flow.v0.enums.trade_agreement_status': (): io.flow.v0.enums.TradeAgreementStatus => faker.helpers.arrayElement(['supported', 'not_supported']),
|
|
3137
3489
|
|
|
3490
|
+
'io.flow.v0.enums.transaction_payout_pending_reason': (): io.flow.v0.enums.TransactionPayoutPendingReason => faker.helpers.arrayElement([
|
|
3491
|
+
'waiting_for_full_refund',
|
|
3492
|
+
'waiting_for_fulfillment',
|
|
3493
|
+
'waiting_for_in_transit',
|
|
3494
|
+
'waiting_for_next_payout_date',
|
|
3495
|
+
'external_fulfillment_missing_tracking_info',
|
|
3496
|
+
'waiting_for_positive_account_balance',
|
|
3497
|
+
]),
|
|
3498
|
+
|
|
3138
3499
|
'io.flow.v0.enums.transaction_source': (): io.flow.v0.enums.TransactionSource => faker.helpers.arrayElement([
|
|
3139
3500
|
'capture',
|
|
3140
3501
|
'refund',
|
|
@@ -3157,6 +3518,8 @@ const factories = {
|
|
|
3157
3518
|
'virtual_card_refund',
|
|
3158
3519
|
]),
|
|
3159
3520
|
|
|
3521
|
+
'io.flow.v0.enums.unit_of_length': (): io.flow.v0.enums.UnitOfLength => faker.helpers.arrayElement(['millimeter', 'centimeter', 'inch', 'foot', 'meter']),
|
|
3522
|
+
|
|
3160
3523
|
'io.flow.v0.enums.unit_of_measurement': (): io.flow.v0.enums.UnitOfMeasurement => faker.helpers.arrayElement([
|
|
3161
3524
|
'millimeter',
|
|
3162
3525
|
'centimeter',
|
|
@@ -3172,12 +3535,14 @@ const factories = {
|
|
|
3172
3535
|
]),
|
|
3173
3536
|
|
|
3174
3537
|
'io.flow.v0.enums.unit_of_time': (): io.flow.v0.enums.UnitOfTime => faker.helpers.arrayElement(['year', 'month', 'week', 'day', 'hour', 'minute']),
|
|
3538
|
+
'io.flow.v0.enums.unit_of_volume': (): io.flow.v0.enums.UnitOfVolume => faker.helpers.arrayElement(['cubic_inch', 'cubic_meter']),
|
|
3539
|
+
'io.flow.v0.enums.unit_of_weight': (): io.flow.v0.enums.UnitOfWeight => faker.helpers.arrayElement(['gram', 'kilogram', 'ounce', 'pound']),
|
|
3175
3540
|
'io.flow.v0.enums.update_policy': (): io.flow.v0.enums.UpdatePolicy => faker.helpers.arrayElement(['auto', 'queue', 'discard']),
|
|
3176
3541
|
'io.flow.v0.enums.update_type': (): io.flow.v0.enums.UpdateType => faker.helpers.arrayElement(['change', 'set']),
|
|
3177
3542
|
'io.flow.v0.enums.user_status': (): io.flow.v0.enums.UserStatus => faker.helpers.arrayElement(['pending', 'active', 'inactive']),
|
|
3178
3543
|
'io.flow.v0.enums.value_added_service': (): io.flow.v0.enums.ValueAddedService => faker.helpers.arrayElement(['Hazardous Material']),
|
|
3179
3544
|
'io.flow.v0.enums.visibility': (): io.flow.v0.enums.Visibility => faker.helpers.arrayElement(['public', 'private']),
|
|
3180
|
-
'io.flow.v0.enums.webhook_status': (): io.flow.v0.enums.WebhookStatus => faker.helpers.arrayElement(['pending', 'success', 'failure']),
|
|
3545
|
+
'io.flow.v0.enums.webhook_status': (): io.flow.v0.enums.WebhookStatus => faker.helpers.arrayElement(['pending', 'success', 'failure', 'ignored']),
|
|
3181
3546
|
'io.flow.v0.enums.withholding_deduction_type': (): io.flow.v0.enums.WithholdingDeductionType => faker.helpers.arrayElement(['tax', 'duty', 'freight', 'insurance']),
|
|
3182
3547
|
'io.flow.v0.enums.zero_amount_indicator': (): io.flow.v0.enums.ZeroAmountIndicator => faker.helpers.arrayElement(['zero', 'free']),
|
|
3183
3548
|
|
|
@@ -4233,6 +4598,8 @@ const factories = {
|
|
|
4233
4598
|
expires_at: factories.date_time_iso_8601(),
|
|
4234
4599
|
base: factories['io.flow.v0.models.money'](),
|
|
4235
4600
|
processor: factories['io.flow.v0.unions.expandable_payment_processor'](),
|
|
4601
|
+
stored_method_usage_step: factories['io.flow.v0.enums.stored_method_usage_step'](),
|
|
4602
|
+
authorized_at: factories.date_time_iso_8601(),
|
|
4236
4603
|
}),
|
|
4237
4604
|
|
|
4238
4605
|
'io.flow.v0.models.card_authorization_deleted_v2': (): io.flow.v0.models.CardAuthorizationDeletedV2 => ({
|
|
@@ -4793,6 +5160,7 @@ const factories = {
|
|
|
4793
5160
|
'io.flow.v0.models.channel_transaction': (): io.flow.v0.models.ChannelTransaction => ({
|
|
4794
5161
|
statement: factories['io.flow.v0.models.billing_channel_statement_reference'](),
|
|
4795
5162
|
id: factories.string(),
|
|
5163
|
+
metadata: factories['io.flow.v0.unions.transaction_metadata'](),
|
|
4796
5164
|
order: factories['io.flow.v0.models.billing_channel_order_summary'](),
|
|
4797
5165
|
payment_request: factories['io.flow.v0.models.billing_channel_payment_request_reference'](),
|
|
4798
5166
|
currency: factories.string(),
|
|
@@ -4824,6 +5192,12 @@ const factories = {
|
|
|
4824
5192
|
id: factories.string(),
|
|
4825
5193
|
}),
|
|
4826
5194
|
|
|
5195
|
+
'io.flow.v0.models.channel_transaction_payout': (): io.flow.v0.models.ChannelTransactionPayout => ({
|
|
5196
|
+
transaction: factories['io.flow.v0.models.transaction_reference'](),
|
|
5197
|
+
waiting_for: factories['io.flow.v0.enums.transaction_payout_pending_reason'](),
|
|
5198
|
+
payout: factories['io.flow.v0.models.payout_reference'](),
|
|
5199
|
+
}),
|
|
5200
|
+
|
|
4827
5201
|
'io.flow.v0.models.channel_transaction_upserted': (): io.flow.v0.models.ChannelTransactionUpserted => ({
|
|
4828
5202
|
discriminator: 'channel_transaction_upserted',
|
|
4829
5203
|
event_id: factories.string(),
|
|
@@ -5149,6 +5523,14 @@ const factories = {
|
|
|
5149
5523
|
language: factories.string(),
|
|
5150
5524
|
}),
|
|
5151
5525
|
|
|
5526
|
+
'io.flow.v0.models.country_of_origin': (): io.flow.v0.models.CountryOfOrigin => ({
|
|
5527
|
+
country: factories['io.flow.v0.models.country'](),
|
|
5528
|
+
}),
|
|
5529
|
+
|
|
5530
|
+
'io.flow.v0.models.country_of_origin_form': (): io.flow.v0.models.CountryOfOriginForm => ({
|
|
5531
|
+
country: factories.string(),
|
|
5532
|
+
}),
|
|
5533
|
+
|
|
5152
5534
|
'io.flow.v0.models.country_picker': (): io.flow.v0.models.CountryPicker => ({
|
|
5153
5535
|
id: factories.string(),
|
|
5154
5536
|
source: factories['io.flow.v0.enums.country_picker_source'](),
|
|
@@ -5496,6 +5878,10 @@ const factories = {
|
|
|
5496
5878
|
amount: factories.decimal(),
|
|
5497
5879
|
}),
|
|
5498
5880
|
|
|
5881
|
+
'io.flow.v0.models.deactivation_put_form': (): io.flow.v0.models.DeactivationPutForm => ({
|
|
5882
|
+
reason: factories.string(),
|
|
5883
|
+
}),
|
|
5884
|
+
|
|
5499
5885
|
'io.flow.v0.models.default_bank_account_form': (): io.flow.v0.models.DefaultBankAccountForm => ({
|
|
5500
5886
|
bank_account_id: factories.string(),
|
|
5501
5887
|
}),
|
|
@@ -5645,6 +6031,7 @@ const factories = {
|
|
|
5645
6031
|
order_number: factories.string(),
|
|
5646
6032
|
service: factories.string(),
|
|
5647
6033
|
shipment_recipient: factories['io.flow.v0.enums.shipment_recipient'](),
|
|
6034
|
+
package_dimensions_source: factories['io.flow.v0.enums.package_dimensions_source'](),
|
|
5648
6035
|
}),
|
|
5649
6036
|
|
|
5650
6037
|
'io.flow.v0.models.detailed_shipping_notification_form': (): io.flow.v0.models.DetailedShippingNotificationForm => ({
|
|
@@ -6655,6 +7042,15 @@ const factories = {
|
|
|
6655
7042
|
landed_costs: arrayOf(() => factories['io.flow.v0.models.lane_landed_cost']()),
|
|
6656
7043
|
}),
|
|
6657
7044
|
|
|
7045
|
+
'io.flow.v0.models.generate_load': (): io.flow.v0.models.GenerateLoad => ({
|
|
7046
|
+
discriminator: 'generate_load',
|
|
7047
|
+
event_id: factories.string(),
|
|
7048
|
+
timestamp: factories.date_time_iso_8601(),
|
|
7049
|
+
organization: factories.string(),
|
|
7050
|
+
test_name: factories.string(),
|
|
7051
|
+
num_tests: factories.integer(),
|
|
7052
|
+
}),
|
|
7053
|
+
|
|
6658
7054
|
'io.flow.v0.models.generic_error': (): io.flow.v0.models.GenericError => ({
|
|
6659
7055
|
code: factories['io.flow.v0.enums.generic_error_code'](),
|
|
6660
7056
|
messages: arrayOf(() => factories.string()),
|
|
@@ -7462,6 +7858,8 @@ const factories = {
|
|
|
7462
7858
|
'io.flow.v0.models.know_your_business_usa': (): io.flow.v0.models.KnowYourBusinessUsa => ({
|
|
7463
7859
|
discriminator: 'know_your_business_usa',
|
|
7464
7860
|
id: factories.string(),
|
|
7861
|
+
organization_id: factories.string(),
|
|
7862
|
+
shop: factories['io.flow.v0.models.shop'](),
|
|
7465
7863
|
primary_entity: factories['io.flow.v0.unions.entity'](),
|
|
7466
7864
|
parent_company: factories['io.flow.v0.models.company'](),
|
|
7467
7865
|
ultimate_parent_company: factories['io.flow.v0.models.company'](),
|
|
@@ -7531,6 +7929,7 @@ const factories = {
|
|
|
7531
7929
|
label: factories['io.flow.v0.models.label_reference'](),
|
|
7532
7930
|
in_transit: factories['io.flow.v0.models.label_tracking_summary_update'](),
|
|
7533
7931
|
delivered: factories['io.flow.v0.models.label_tracking_summary_update'](),
|
|
7932
|
+
rejected: factories['io.flow.v0.models.label_tracking_summary_update'](),
|
|
7534
7933
|
}),
|
|
7535
7934
|
|
|
7536
7935
|
'io.flow.v0.models.label_tracking_summary_update': (): io.flow.v0.models.LabelTrackingSummaryUpdate => ({
|
|
@@ -7941,6 +8340,11 @@ const factories = {
|
|
|
7941
8340
|
merchant_application: factories['io.flow.v0.unions.merchant_application'](),
|
|
7942
8341
|
}),
|
|
7943
8342
|
|
|
8343
|
+
'io.flow.v0.models.merchant_deactivated': (): io.flow.v0.models.MerchantDeactivated => ({
|
|
8344
|
+
discriminator: 'merchant_deactivated',
|
|
8345
|
+
reason: factories.string(),
|
|
8346
|
+
}),
|
|
8347
|
+
|
|
7944
8348
|
'io.flow.v0.models.merchant_gift_card_balance': (): io.flow.v0.models.MerchantGiftCardBalance => ({
|
|
7945
8349
|
amount: factories.decimal(),
|
|
7946
8350
|
currency: factories.string(),
|
|
@@ -8163,6 +8567,7 @@ const factories = {
|
|
|
8163
8567
|
base: factories['io.flow.v0.models.money'](),
|
|
8164
8568
|
processor: factories['io.flow.v0.unions.expandable_payment_processor'](),
|
|
8165
8569
|
confirmation_details: factories['io.flow.v0.unions.confirmation_details'](),
|
|
8570
|
+
authorized_at: factories.date_time_iso_8601(),
|
|
8166
8571
|
}),
|
|
8167
8572
|
|
|
8168
8573
|
'io.flow.v0.models.online_authorization_deleted_v2': (): io.flow.v0.models.OnlineAuthorizationDeletedV2 => ({
|
|
@@ -8189,7 +8594,6 @@ const factories = {
|
|
|
8189
8594
|
}),
|
|
8190
8595
|
|
|
8191
8596
|
'io.flow.v0.models.operations_contact': (): io.flow.v0.models.OperationsContact => ({
|
|
8192
|
-
full_name: factories.string(),
|
|
8193
8597
|
company: factories.string(),
|
|
8194
8598
|
email: factories.string(),
|
|
8195
8599
|
phone: factories.string(),
|
|
@@ -9073,6 +9477,7 @@ const factories = {
|
|
|
9073
9477
|
time_blocked: factories.long(),
|
|
9074
9478
|
blocked_since: factories.date_time_iso_8601(),
|
|
9075
9479
|
completed_at: factories.date_time_iso_8601(),
|
|
9480
|
+
onboarding_started_at: factories.date_time_iso_8601(),
|
|
9076
9481
|
}),
|
|
9077
9482
|
|
|
9078
9483
|
'io.flow.v0.models.organization_onboarding_state_deleted': (): io.flow.v0.models.OrganizationOnboardingStateDeleted => ({
|
|
@@ -9227,6 +9632,12 @@ const factories = {
|
|
|
9227
9632
|
id: factories.string(),
|
|
9228
9633
|
}),
|
|
9229
9634
|
|
|
9635
|
+
'io.flow.v0.models.organization_transaction_payout': (): io.flow.v0.models.OrganizationTransactionPayout => ({
|
|
9636
|
+
transaction: factories['io.flow.v0.models.transaction_reference'](),
|
|
9637
|
+
waiting_for: factories['io.flow.v0.enums.transaction_payout_pending_reason'](),
|
|
9638
|
+
payout: factories['io.flow.v0.models.payout_reference'](),
|
|
9639
|
+
}),
|
|
9640
|
+
|
|
9230
9641
|
'io.flow.v0.models.organization_transaction_upserted': (): io.flow.v0.models.OrganizationTransactionUpserted => ({
|
|
9231
9642
|
discriminator: 'organization_transaction_upserted',
|
|
9232
9643
|
event_id: factories.string(),
|
|
@@ -9275,12 +9686,30 @@ const factories = {
|
|
|
9275
9686
|
amount: factories['io.flow.v0.models.money'](),
|
|
9276
9687
|
}),
|
|
9277
9688
|
|
|
9278
|
-
'io.flow.v0.models.
|
|
9279
|
-
discriminator: '
|
|
9689
|
+
'io.flow.v0.models.oversize_piece_surcharge_ratecard_fee': (): io.flow.v0.models.OversizePieceSurchargeRatecardFee => ({
|
|
9690
|
+
discriminator: 'oversize_piece_surcharge_ratecard_fee',
|
|
9691
|
+
dimensional_threshold: factories.decimal(),
|
|
9692
|
+
dimensional_unit: factories['io.flow.v0.enums.unit_of_measurement'](),
|
|
9280
9693
|
weight_threshold: factories.decimal(),
|
|
9281
9694
|
weight_unit: factories['io.flow.v0.enums.unit_of_measurement'](),
|
|
9282
|
-
|
|
9283
|
-
|
|
9695
|
+
amount: factories['io.flow.v0.models.money'](),
|
|
9696
|
+
}),
|
|
9697
|
+
|
|
9698
|
+
'io.flow.v0.models.oversize_piece_surcharge_service_fee': (): io.flow.v0.models.OversizePieceSurchargeServiceFee => ({
|
|
9699
|
+
discriminator: 'oversize_piece_surcharge_service_fee',
|
|
9700
|
+
dimensional_threshold: factories.decimal(),
|
|
9701
|
+
dimensional_unit: factories['io.flow.v0.enums.unit_of_measurement'](),
|
|
9702
|
+
weight_threshold: factories.decimal(),
|
|
9703
|
+
weight_unit: factories['io.flow.v0.enums.unit_of_measurement'](),
|
|
9704
|
+
amount: factories['io.flow.v0.models.money'](),
|
|
9705
|
+
}),
|
|
9706
|
+
|
|
9707
|
+
'io.flow.v0.models.package_dimensions': (): io.flow.v0.models.PackageDimensions => ({
|
|
9708
|
+
dimensions: arrayOf(() => factories['io.flow.v0.models.dimension']()),
|
|
9709
|
+
}),
|
|
9710
|
+
|
|
9711
|
+
'io.flow.v0.models.package_dimensions_form': (): io.flow.v0.models.PackageDimensionsForm => ({
|
|
9712
|
+
dimensions: arrayOf(() => factories['io.flow.v0.models.dimension']()),
|
|
9284
9713
|
}),
|
|
9285
9714
|
|
|
9286
9715
|
'io.flow.v0.models.packaging': (): io.flow.v0.models.Packaging => ({
|
|
@@ -9958,6 +10387,10 @@ const factories = {
|
|
|
9958
10387
|
url: factories.string(),
|
|
9959
10388
|
}),
|
|
9960
10389
|
|
|
10390
|
+
'io.flow.v0.models.payout_reference': (): io.flow.v0.models.PayoutReference => ({
|
|
10391
|
+
id: factories.string(),
|
|
10392
|
+
}),
|
|
10393
|
+
|
|
9961
10394
|
'io.flow.v0.models.payout_status_failed': (): io.flow.v0.models.PayoutStatusFailed => ({
|
|
9962
10395
|
code: 'failed',
|
|
9963
10396
|
timestamp: factories.date_time_iso_8601(),
|
|
@@ -9976,6 +10409,7 @@ const factories = {
|
|
|
9976
10409
|
|
|
9977
10410
|
'io.flow.v0.models.payout_transaction': (): io.flow.v0.models.PayoutTransaction => ({
|
|
9978
10411
|
id: factories.string(),
|
|
10412
|
+
metadata: factories['io.flow.v0.unions.transaction_metadata'](),
|
|
9979
10413
|
order: factories['io.flow.v0.models.billing_channel_order_summary'](),
|
|
9980
10414
|
payment_request: factories['io.flow.v0.models.billing_channel_payment_request_reference'](),
|
|
9981
10415
|
currency: factories.string(),
|
|
@@ -10085,6 +10519,12 @@ const factories = {
|
|
|
10085
10519
|
total: factories['io.flow.v0.models.localized_total'](),
|
|
10086
10520
|
goods_supply: factories['io.flow.v0.enums.goods_supply'](),
|
|
10087
10521
|
merchant_of_record_flow_entity: factories['io.flow.v0.enums.flow_entity'](),
|
|
10522
|
+
preferred_service: factories['io.flow.v0.models.physical_delivery_preferred_service'](),
|
|
10523
|
+
}),
|
|
10524
|
+
|
|
10525
|
+
'io.flow.v0.models.physical_delivery_preferred_service': (): io.flow.v0.models.PhysicalDeliveryPreferredService => ({
|
|
10526
|
+
id: factories.string(),
|
|
10527
|
+
selection_stratey: factories['io.flow.v0.enums.preferred_service_selection_strategy'](),
|
|
10088
10528
|
}),
|
|
10089
10529
|
|
|
10090
10530
|
'io.flow.v0.models.post_payment_redirect_urls': (): io.flow.v0.models.PostPaymentRedirectUrls => ({
|
|
@@ -10534,12 +10974,16 @@ const factories = {
|
|
|
10534
10974
|
'io.flow.v0.models.ratecard': (): io.flow.v0.models.Ratecard => ({
|
|
10535
10975
|
id: factories.string(),
|
|
10536
10976
|
number: factories.string(),
|
|
10977
|
+
rate_level_key: factories.string(),
|
|
10537
10978
|
direction: factories['io.flow.v0.enums.direction'](),
|
|
10538
10979
|
effective_at: factories.date_time_iso_8601(),
|
|
10539
10980
|
origination_zones: arrayOf(() => factories['io.flow.v0.models.zone']()),
|
|
10540
10981
|
service: factories['io.flow.v0.models.ratecard_service_summary'](),
|
|
10541
10982
|
published_at: factories.date_time_iso_8601(),
|
|
10542
10983
|
ratecard_owner: factories['io.flow.v0.enums.ratecard_owner'](),
|
|
10984
|
+
glbe_shipping_method_id: factories.string(),
|
|
10985
|
+
glbe_proposition_name: factories.string(),
|
|
10986
|
+
channel_revenue_share_percentage: factories.decimal(),
|
|
10543
10987
|
}),
|
|
10544
10988
|
|
|
10545
10989
|
'io.flow.v0.models.ratecard_carrier_summary': (): io.flow.v0.models.RatecardCarrierSummary => ({
|
|
@@ -10618,6 +11062,10 @@ const factories = {
|
|
|
10618
11062
|
dimensional_weight: factories['io.flow.v0.models.measurement'](),
|
|
10619
11063
|
gravitational_weight: factories['io.flow.v0.models.measurement'](),
|
|
10620
11064
|
ratecard_id: factories.string(),
|
|
11065
|
+
glbe_shipping_method_id: factories.string(),
|
|
11066
|
+
glbe_proposition_name: factories.string(),
|
|
11067
|
+
channel_revenue_share_percentage: factories.decimal(),
|
|
11068
|
+
rate_level_key: factories.string(),
|
|
10621
11069
|
line_items: arrayOf(() => factories['io.flow.v0.models.line_item_form']()),
|
|
10622
11070
|
}),
|
|
10623
11071
|
|
|
@@ -10627,7 +11075,12 @@ const factories = {
|
|
|
10627
11075
|
origination_zones: arrayOf(() => factories['io.flow.v0.models.zone']()),
|
|
10628
11076
|
service: factories.string(),
|
|
10629
11077
|
number: factories.string(),
|
|
11078
|
+
rate_level_key: factories.string(),
|
|
10630
11079
|
ratecard_owner: factories['io.flow.v0.enums.ratecard_owner'](),
|
|
11080
|
+
glbe_shipping_method_id: factories.string(),
|
|
11081
|
+
glbe_proposition_name: factories.string(),
|
|
11082
|
+
channel_revenue_share_percentage: factories.decimal(),
|
|
11083
|
+
data: objectOf(() => factories.string()),
|
|
10631
11084
|
}),
|
|
10632
11085
|
|
|
10633
11086
|
'io.flow.v0.models.ratecard_lane': (): io.flow.v0.models.RatecardLane => ({
|
|
@@ -11558,6 +12011,9 @@ const factories = {
|
|
|
11558
12011
|
carrier_tracking_number_url: factories.string(),
|
|
11559
12012
|
cost_estimate_source: factories['io.flow.v0.enums.cost_estimate_source'](),
|
|
11560
12013
|
cost: factories['io.flow.v0.models.price'](),
|
|
12014
|
+
delivered_duty: factories['io.flow.v0.enums.delivered_duty'](),
|
|
12015
|
+
taxes_owed: factories['io.flow.v0.models.money'](),
|
|
12016
|
+
duties_owed: factories['io.flow.v0.models.money'](),
|
|
11561
12017
|
destination: factories['io.flow.v0.models.shipping_address'](),
|
|
11562
12018
|
flow_tracking_number: factories.string(),
|
|
11563
12019
|
flow_tracking_number_url: factories.string(),
|
|
@@ -11569,6 +12025,7 @@ const factories = {
|
|
|
11569
12025
|
'return': factories['io.flow.v0.models.shipping_label_document'](),
|
|
11570
12026
|
order: factories['io.flow.v0.models.label_order_summary'](),
|
|
11571
12027
|
'package': factories['io.flow.v0.models.shipping_label_package'](),
|
|
12028
|
+
package_dimension_source: factories['io.flow.v0.enums.package_dimensions_source'](),
|
|
11572
12029
|
order_identifier: factories.string(),
|
|
11573
12030
|
fulfillment_key: factories.string(),
|
|
11574
12031
|
shipment_recipient: factories['io.flow.v0.enums.shipment_recipient'](),
|
|
@@ -11588,9 +12045,16 @@ const factories = {
|
|
|
11588
12045
|
required: factories.boolean(),
|
|
11589
12046
|
}),
|
|
11590
12047
|
|
|
12048
|
+
'io.flow.v0.models.shipping_label_hop_cost_itemized_estimate': (): io.flow.v0.models.ShippingLabelHopCostItemizedEstimate => ({
|
|
12049
|
+
units: factories['io.flow.billing.true.up.v0.models.label_units'](),
|
|
12050
|
+
base: factories['io.flow.billing.true.up.v0.models.label_base'](),
|
|
12051
|
+
surcharges: arrayOf(() => factories['io.flow.billing.true.up.v0.models.label_surcharge']()),
|
|
12052
|
+
}),
|
|
12053
|
+
|
|
11591
12054
|
'io.flow.v0.models.shipping_label_hop_summary': (): io.flow.v0.models.ShippingLabelHopSummary => ({
|
|
11592
12055
|
lane: factories['io.flow.v0.models.shipping_label_lane_summary'](),
|
|
11593
12056
|
cost: factories['io.flow.v0.models.money'](),
|
|
12057
|
+
itemized_estimate: factories['io.flow.v0.models.shipping_label_hop_cost_itemized_estimate'](),
|
|
11594
12058
|
}),
|
|
11595
12059
|
|
|
11596
12060
|
'io.flow.v0.models.shipping_label_lane_summary': (): io.flow.v0.models.ShippingLabelLaneSummary => ({
|
|
@@ -11600,6 +12064,7 @@ const factories = {
|
|
|
11600
12064
|
|
|
11601
12065
|
'io.flow.v0.models.shipping_label_package': (): io.flow.v0.models.ShippingLabelPackage => ({
|
|
11602
12066
|
dimensions: factories['io.flow.v0.models.dimension'](),
|
|
12067
|
+
volumetric_weight: factories.decimal(),
|
|
11603
12068
|
items: arrayOf(() => factories['io.flow.v0.models.line_item_form']()),
|
|
11604
12069
|
reference_number: factories.string(),
|
|
11605
12070
|
}),
|
|
@@ -11607,6 +12072,11 @@ const factories = {
|
|
|
11607
12072
|
'io.flow.v0.models.shipping_label_ratecard_summary': (): io.flow.v0.models.ShippingLabelRatecardSummary => ({
|
|
11608
12073
|
id: factories.string(),
|
|
11609
12074
|
ratecard_owner: factories['io.flow.v0.enums.ratecard_owner'](),
|
|
12075
|
+
rate_level_key: factories.string(),
|
|
12076
|
+
glbe_shipping_method_id: factories.string(),
|
|
12077
|
+
glbe_proposition_name: factories.string(),
|
|
12078
|
+
channel_revenue_share_percentage: factories.decimal(),
|
|
12079
|
+
shopify_grc_gid: factories.string(),
|
|
11610
12080
|
}),
|
|
11611
12081
|
|
|
11612
12082
|
'io.flow.v0.models.shipping_label_summary': (): io.flow.v0.models.ShippingLabelSummary => ({
|
|
@@ -11904,7 +12374,6 @@ const factories = {
|
|
|
11904
12374
|
status: factories['io.flow.v0.enums.onboarding_application_status'](),
|
|
11905
12375
|
company: factories['io.flow.v0.models.merchant_info'](),
|
|
11906
12376
|
indirect_tax: factories['io.flow.v0.models.indirect_tax'](),
|
|
11907
|
-
parent_company: factories['io.flow.v0.models.merchant_info'](),
|
|
11908
12377
|
beneficiary: factories.string(),
|
|
11909
12378
|
ultimate_beneficiary_owner: factories['io.flow.v0.models.ultimate_beneficiary_owner'](),
|
|
11910
12379
|
business_url: factories.string(),
|
|
@@ -11914,31 +12383,30 @@ const factories = {
|
|
|
11914
12383
|
chargeback_percentage: factories.decimal(),
|
|
11915
12384
|
bank_account_number: factories.string(),
|
|
11916
12385
|
aba_routing_transit_number: factories.string(),
|
|
11917
|
-
trade_sectors: arrayOf(() => factories['io.flow.v0.enums.onboarding_trade_sector']()),
|
|
11918
12386
|
other_trade_sector: factories.string(),
|
|
11919
12387
|
third_party_logistics_partners: arrayOf(() => factories['io.flow.v0.models.third_party_logistics_partner']()),
|
|
12388
|
+
center_contact: factories['io.flow.v0.models.operations_contact'](),
|
|
11920
12389
|
average_order_weight: factories.decimal(),
|
|
11921
12390
|
package_dimensions: arrayOf(() => factories['io.flow.v0.models.dimension']()),
|
|
11922
12391
|
monthly_average: factories['io.flow.v0.models.monthly_average'](),
|
|
11923
|
-
dangerous_goods: factories.boolean(),
|
|
11924
12392
|
default_country_of_origin: factories.string(),
|
|
11925
12393
|
ratecard: factories['io.flow.v0.models.ratecard_reference'](),
|
|
11926
12394
|
rate_card: factories.string(),
|
|
11927
12395
|
created_at: factories.date_time_iso_8601(),
|
|
11928
12396
|
activated_at: factories.date_time_iso_8601(),
|
|
11929
12397
|
status_updated_at: factories.date_time_iso_8601(),
|
|
11930
|
-
logistics_format: factories['io.flow.v0.models.logistics_format'](),
|
|
11931
12398
|
shop: factories['io.flow.v0.models.shop'](),
|
|
11932
12399
|
last_year_xborder_gmv: factories['io.flow.v0.models.money'](),
|
|
11933
12400
|
last_month_xborder_gmv: factories['io.flow.v0.models.money'](),
|
|
11934
12401
|
average_order_value: factories['io.flow.v0.models.money'](),
|
|
12402
|
+
glbe_merchant_guid: factories.string(),
|
|
12403
|
+
mcc_codes: arrayOf(() => factories.long()),
|
|
11935
12404
|
}),
|
|
11936
12405
|
|
|
11937
12406
|
'io.flow.v0.models.shopify_merchant_application_form': (): io.flow.v0.models.ShopifyMerchantApplicationForm => ({
|
|
11938
12407
|
discriminator: 'shopify_merchant_application_form',
|
|
11939
12408
|
company: factories['io.flow.v0.models.merchant_info'](),
|
|
11940
12409
|
indirect_tax: factories['io.flow.v0.models.indirect_tax'](),
|
|
11941
|
-
parent_company: factories['io.flow.v0.models.merchant_info'](),
|
|
11942
12410
|
beneficiary: factories.string(),
|
|
11943
12411
|
ultimate_beneficiary_owner: factories['io.flow.v0.models.ultimate_beneficiary_owner'](),
|
|
11944
12412
|
business_url: factories.string(),
|
|
@@ -11948,23 +12416,22 @@ const factories = {
|
|
|
11948
12416
|
chargeback_percentage: factories.decimal(),
|
|
11949
12417
|
bank_account_number: factories.string(),
|
|
11950
12418
|
aba_routing_transit_number: factories.string(),
|
|
11951
|
-
trade_sectors: arrayOf(() => factories['io.flow.v0.enums.onboarding_trade_sector']()),
|
|
11952
12419
|
other_trade_sector: factories.string(),
|
|
11953
12420
|
third_party_logistics_partners: arrayOf(() => factories['io.flow.v0.models.third_party_logistics_partner']()),
|
|
12421
|
+
center_contact: factories['io.flow.v0.models.operations_contact'](),
|
|
11954
12422
|
average_order_weight: factories.decimal(),
|
|
11955
12423
|
package_dimensions: arrayOf(() => factories['io.flow.v0.models.dimension']()),
|
|
11956
12424
|
monthly_average_volume_amount: factories.decimal(),
|
|
11957
12425
|
monthly_average_volume_currency: factories.string(),
|
|
11958
12426
|
monthly_average_number_transactions: factories.long(),
|
|
11959
|
-
dangerous_goods: factories.boolean(),
|
|
11960
12427
|
default_country_of_origin: factories.string(),
|
|
11961
12428
|
ratecard_id: factories.string(),
|
|
11962
12429
|
rate_card: factories.string(),
|
|
11963
|
-
logistics_format: factories['io.flow.v0.models.logistics_format'](),
|
|
11964
12430
|
shop: factories['io.flow.v0.models.shop'](),
|
|
11965
12431
|
last_year_xborder_gmv: factories['io.flow.v0.models.money'](),
|
|
11966
12432
|
last_month_xborder_gmv: factories['io.flow.v0.models.money'](),
|
|
11967
12433
|
average_order_value: factories['io.flow.v0.models.money'](),
|
|
12434
|
+
mcc_codes: arrayOf(() => factories.long()),
|
|
11968
12435
|
}),
|
|
11969
12436
|
|
|
11970
12437
|
'io.flow.v0.models.shopify_merchant_application_put_form': (): io.flow.v0.models.ShopifyMerchantApplicationPutForm => ({
|
|
@@ -12469,16 +12936,11 @@ const factories = {
|
|
|
12469
12936
|
email_recipients: arrayOf(() => factories.string()),
|
|
12470
12937
|
}),
|
|
12471
12938
|
|
|
12472
|
-
'io.flow.v0.models.test': (): io.flow.v0.models.Test => ({
|
|
12473
|
-
id: factories.string(),
|
|
12474
|
-
}),
|
|
12475
|
-
|
|
12476
12939
|
'io.flow.v0.models.test_upserted': (): io.flow.v0.models.TestUpserted => ({
|
|
12477
12940
|
discriminator: 'test_upserted',
|
|
12478
12941
|
event_id: factories.string(),
|
|
12479
12942
|
timestamp: factories.date_time_iso_8601(),
|
|
12480
|
-
|
|
12481
|
-
test: factories['io.flow.v0.models.test'](),
|
|
12943
|
+
test: factories['io.flow.ben.test.internal.v0.models.test'](),
|
|
12482
12944
|
}),
|
|
12483
12945
|
|
|
12484
12946
|
'io.flow.v0.models.third_party_logistics_partner': (): io.flow.v0.models.ThirdPartyLogisticsPartner => ({
|
|
@@ -12810,6 +13272,7 @@ const factories = {
|
|
|
12810
13272
|
'io.flow.v0.models.transaction': (): io.flow.v0.models.Transaction => ({
|
|
12811
13273
|
statement: factories['io.flow.v0.models.billing_channel_statement_reference'](),
|
|
12812
13274
|
id: factories.string(),
|
|
13275
|
+
metadata: factories['io.flow.v0.unions.transaction_metadata'](),
|
|
12813
13276
|
order: factories['io.flow.v0.models.billing_channel_order_summary'](),
|
|
12814
13277
|
payment_request: factories['io.flow.v0.models.billing_channel_payment_request_reference'](),
|
|
12815
13278
|
currency: factories.string(),
|
|
@@ -12832,11 +13295,20 @@ const factories = {
|
|
|
12832
13295
|
network_details: factories['io.flow.v0.models.transaction_network_details_card'](),
|
|
12833
13296
|
}),
|
|
12834
13297
|
|
|
13298
|
+
'io.flow.v0.models.transaction_metadata_shipping_label': (): io.flow.v0.models.TransactionMetadataShippingLabel => ({
|
|
13299
|
+
discriminator: 'shipping_label',
|
|
13300
|
+
request_method: factories['io.flow.v0.enums.label_request_method'](),
|
|
13301
|
+
}),
|
|
13302
|
+
|
|
12835
13303
|
'io.flow.v0.models.transaction_network_details_card': (): io.flow.v0.models.TransactionNetworkDetailsCard => ({
|
|
12836
13304
|
network_transaction_id: factories.string(),
|
|
12837
13305
|
network: factories['io.flow.v0.enums.card_type'](),
|
|
12838
13306
|
}),
|
|
12839
13307
|
|
|
13308
|
+
'io.flow.v0.models.transaction_reference': (): io.flow.v0.models.TransactionReference => ({
|
|
13309
|
+
id: factories.string(),
|
|
13310
|
+
}),
|
|
13311
|
+
|
|
12840
13312
|
'io.flow.v0.models.transaction_upserted': (): io.flow.v0.models.TransactionUpserted => ({
|
|
12841
13313
|
discriminator: 'transaction_upserted',
|
|
12842
13314
|
event_id: factories.string(),
|
|
@@ -13361,6 +13833,7 @@ const factories = {
|
|
|
13361
13833
|
'io.flow.v0.unions.event': (): io.flow.v0.unions.Event => {
|
|
13362
13834
|
const f = faker.helpers.arrayElement([
|
|
13363
13835
|
() => factories['io.flow.v0.models.test_upserted'](),
|
|
13836
|
+
() => factories['io.flow.v0.models.generate_load'](),
|
|
13364
13837
|
() => factories['io.flow.v0.models.transaction_upserted'](),
|
|
13365
13838
|
() => factories['io.flow.v0.models.organization_transaction_upserted'](),
|
|
13366
13839
|
() => factories['io.flow.v0.models.organization_transaction_deleted'](),
|
|
@@ -13786,6 +14259,7 @@ const factories = {
|
|
|
13786
14259
|
() => factories['io.flow.v0.models.setup_blocked'](),
|
|
13787
14260
|
() => factories['io.flow.v0.models.setup_completed'](),
|
|
13788
14261
|
() => factories['io.flow.v0.models.merchant_activated'](),
|
|
14262
|
+
() => factories['io.flow.v0.models.merchant_deactivated'](),
|
|
13789
14263
|
]);
|
|
13790
14264
|
|
|
13791
14265
|
return f();
|
|
@@ -14073,7 +14547,7 @@ const factories = {
|
|
|
14073
14547
|
const f = faker.helpers.arrayElement([
|
|
14074
14548
|
() => factories['io.flow.v0.models.ddp_ratecard_fee'](),
|
|
14075
14549
|
() => factories['io.flow.v0.models.fuel_surcharge_ratecard_fee'](),
|
|
14076
|
-
() => factories['io.flow.v0.models.
|
|
14550
|
+
() => factories['io.flow.v0.models.oversize_piece_surcharge_ratecard_fee'](),
|
|
14077
14551
|
() => factories['io.flow.v0.models.return_package_ratecard_fee'](),
|
|
14078
14552
|
() => factories['io.flow.v0.models.crossdock_ratecard_fee'](),
|
|
14079
14553
|
() => factories['io.flow.v0.models.remote_area_ratecard_fee'](),
|
|
@@ -14142,6 +14616,7 @@ const factories = {
|
|
|
14142
14616
|
() => factories['io.flow.v0.models.peak_surcharge_service_fee'](),
|
|
14143
14617
|
() => factories['io.flow.v0.models.peak_surcharge_by_weight_service_fee'](),
|
|
14144
14618
|
() => factories['io.flow.v0.models.duties_taxes_paid_surcharge_service_fee'](),
|
|
14619
|
+
() => factories['io.flow.v0.models.oversize_piece_surcharge_service_fee'](),
|
|
14145
14620
|
]);
|
|
14146
14621
|
|
|
14147
14622
|
return f();
|
|
@@ -14275,6 +14750,14 @@ const factories = {
|
|
|
14275
14750
|
const f = faker.helpers.arrayElement([() => factories['io.flow.v0.models.transaction_details_card']()]);
|
|
14276
14751
|
return f();
|
|
14277
14752
|
},
|
|
14753
|
+
|
|
14754
|
+
'io.flow.v0.unions.transaction_metadata': (): io.flow.v0.unions.TransactionMetadata => {
|
|
14755
|
+
const f = faker.helpers.arrayElement(
|
|
14756
|
+
[() => factories['io.flow.v0.models.transaction_metadata_shipping_label']()],
|
|
14757
|
+
);
|
|
14758
|
+
|
|
14759
|
+
return f();
|
|
14760
|
+
},
|
|
14278
14761
|
};
|
|
14279
14762
|
|
|
14280
14763
|
export const makeAbandonedOrderEmailSettings = () => factories['io.flow.v0.models.abandoned_order_email_settings']();
|
|
@@ -14539,6 +15022,7 @@ export const makeChannelTokenReference = () => factories['io.flow.v0.models.chan
|
|
|
14539
15022
|
export const makeChannelTransaction = () => factories['io.flow.v0.models.channel_transaction']();
|
|
14540
15023
|
export const makeChannelTransactionDeleted = () => factories['io.flow.v0.models.channel_transaction_deleted']();
|
|
14541
15024
|
export const makeChannelTransactionDeletedV2 = () => factories['io.flow.v0.models.channel_transaction_deleted_v2']();
|
|
15025
|
+
export const makeChannelTransactionPayout = () => factories['io.flow.v0.models.channel_transaction_payout']();
|
|
14542
15026
|
export const makeChannelTransactionUpserted = () => factories['io.flow.v0.models.channel_transaction_upserted']();
|
|
14543
15027
|
export const makeChannelUpserted = () => factories['io.flow.v0.models.channel_upserted']();
|
|
14544
15028
|
export const makeChannelViesRegistration = () => factories['io.flow.v0.models.channel_vies_registration']();
|
|
@@ -14592,6 +15076,8 @@ export const makeCostEstimateSource = () => factories['io.flow.v0.enums.cost_est
|
|
|
14592
15076
|
export const makeCountry = () => factories['io.flow.v0.models.country']();
|
|
14593
15077
|
export const makeCountryAvailability = () => factories['io.flow.v0.models.country_availability']();
|
|
14594
15078
|
export const makeCountryDefaults = () => factories['io.flow.v0.models.country_defaults']();
|
|
15079
|
+
export const makeCountryOfOrigin = () => factories['io.flow.v0.models.country_of_origin']();
|
|
15080
|
+
export const makeCountryOfOriginForm = () => factories['io.flow.v0.models.country_of_origin_form']();
|
|
14595
15081
|
export const makeCountryPicker = () => factories['io.flow.v0.models.country_picker']();
|
|
14596
15082
|
export const makeCountryPickerForm = () => factories['io.flow.v0.models.country_picker_form']();
|
|
14597
15083
|
export const makeCountryPickerSource = () => factories['io.flow.v0.enums.country_picker_source']();
|
|
@@ -14653,6 +15139,7 @@ export const makeDatetimeRange = () => factories['io.flow.v0.models.datetime_ran
|
|
|
14653
15139
|
export const makeDatetimeWithTimezone = () => factories['io.flow.v0.models.datetime_with_timezone']();
|
|
14654
15140
|
export const makeDayOfWeek = () => factories['io.flow.v0.enums.day_of_week']();
|
|
14655
15141
|
export const makeDdpRatecardFee = () => factories['io.flow.v0.models.ddp_ratecard_fee']();
|
|
15142
|
+
export const makeDeactivationPutForm = () => factories['io.flow.v0.models.deactivation_put_form']();
|
|
14656
15143
|
export const makeDefaultBankAccountForm = () => factories['io.flow.v0.models.default_bank_account_form']();
|
|
14657
15144
|
export const makeDeliveredDuty = () => factories['io.flow.v0.enums.delivered_duty']();
|
|
14658
15145
|
export const makeDeliveredDutyDisplayType = () => factories['io.flow.v0.enums.delivered_duty_display_type']();
|
|
@@ -14882,6 +15369,7 @@ export const makeFulfillmentRouting = () => factories['io.flow.v0.enums.fulfillm
|
|
|
14882
15369
|
export const makeFullyHarmonizedItemUpserted = () => factories['io.flow.v0.models.fully_harmonized_item_upserted']();
|
|
14883
15370
|
export const makeGatewayAuthenticationData = () => factories['io.flow.v0.unions.gateway_authentication_data']();
|
|
14884
15371
|
export const makeGatewayAuthenticationDataForm = () => factories['io.flow.v0.unions.gateway_authentication_data_form']();
|
|
15372
|
+
export const makeGenerateLoad = () => factories['io.flow.v0.models.generate_load']();
|
|
14885
15373
|
export const makeGenericError = () => factories['io.flow.v0.models.generic_error']();
|
|
14886
15374
|
export const makeGenericErrorCode = () => factories['io.flow.v0.enums.generic_error_code']();
|
|
14887
15375
|
export const makeGenericReservationError = () => factories['io.flow.v0.models.generic_reservation_error']();
|
|
@@ -15096,6 +15584,7 @@ export const makeMerchantApplicationForm = () => factories['io.flow.v0.unions.me
|
|
|
15096
15584
|
export const makeMerchantApplicationPutForm = () => factories['io.flow.v0.unions.merchant_application_put_form']();
|
|
15097
15585
|
export const makeMerchantApplicationUpserted = () => factories['io.flow.v0.models.merchant_application_upserted']();
|
|
15098
15586
|
export const makeMerchantApplicationsSummary = () => factories['io.flow.v0.unions.merchant_applications_summary']();
|
|
15587
|
+
export const makeMerchantDeactivated = () => factories['io.flow.v0.models.merchant_deactivated']();
|
|
15099
15588
|
export const makeMerchantGiftCardBalance = () => factories['io.flow.v0.models.merchant_gift_card_balance']();
|
|
15100
15589
|
export const makeMerchantGiftCardBalanceForm = () => factories['io.flow.v0.models.merchant_gift_card_balance_form']();
|
|
15101
15590
|
export const makeMerchantGiftCardError = () => factories['io.flow.v0.models.merchant_gift_card_error']();
|
|
@@ -15304,6 +15793,7 @@ export const makeOrganizationTokenReference = () => factories['io.flow.v0.models
|
|
|
15304
15793
|
export const makeOrganizationTokenV2 = () => factories['io.flow.v0.models.organization_token_v2']();
|
|
15305
15794
|
export const makeOrganizationTokenV2Reference = () => factories['io.flow.v0.models.organization_token_v2_reference']();
|
|
15306
15795
|
export const makeOrganizationTransactionDeleted = () => factories['io.flow.v0.models.organization_transaction_deleted']();
|
|
15796
|
+
export const makeOrganizationTransactionPayout = () => factories['io.flow.v0.models.organization_transaction_payout']();
|
|
15307
15797
|
export const makeOrganizationTransactionUpserted = () => factories['io.flow.v0.models.organization_transaction_upserted']();
|
|
15308
15798
|
export const makeOrganizationType = () => factories['io.flow.v0.enums.organization_type']();
|
|
15309
15799
|
export const makeOrganizationUpserted = () => factories['io.flow.v0.models.organization_upserted']();
|
|
@@ -15311,7 +15801,11 @@ export const makeOrganizationUpsertedV2 = () => factories['io.flow.v0.models.org
|
|
|
15311
15801
|
export const makeOrganizationVersion = () => factories['io.flow.v0.models.organization_version']();
|
|
15312
15802
|
export const makeOriginalPrices = () => factories['io.flow.v0.models.original_prices']();
|
|
15313
15803
|
export const makeOutboundCartonFee = () => factories['io.flow.v0.models.outbound_carton_fee']();
|
|
15314
|
-
export const
|
|
15804
|
+
export const makeOversizePieceSurchargeRatecardFee = () => factories['io.flow.v0.models.oversize_piece_surcharge_ratecard_fee']();
|
|
15805
|
+
export const makeOversizePieceSurchargeServiceFee = () => factories['io.flow.v0.models.oversize_piece_surcharge_service_fee']();
|
|
15806
|
+
export const makePackageDimensions = () => factories['io.flow.v0.models.package_dimensions']();
|
|
15807
|
+
export const makePackageDimensionsForm = () => factories['io.flow.v0.models.package_dimensions_form']();
|
|
15808
|
+
export const makePackageDimensionsSource = () => factories['io.flow.v0.enums.package_dimensions_source']();
|
|
15315
15809
|
export const makePackaging = () => factories['io.flow.v0.models.packaging']();
|
|
15316
15810
|
export const makeParentTransactionSummary = () => factories['io.flow.v0.models.parent_transaction_summary']();
|
|
15317
15811
|
export const makePartnerCenter = () => factories['io.flow.v0.models.partner_center']();
|
|
@@ -15448,6 +15942,7 @@ export const makePaymentUpserted = () => factories['io.flow.v0.models.payment_up
|
|
|
15448
15942
|
export const makePaymentVersion = () => factories['io.flow.v0.models.payment_version']();
|
|
15449
15943
|
export const makePayoutAttachment = () => factories['io.flow.v0.models.payout_attachment']();
|
|
15450
15944
|
export const makePayoutAttachmentType = () => factories['io.flow.v0.enums.payout_attachment_type']();
|
|
15945
|
+
export const makePayoutReference = () => factories['io.flow.v0.models.payout_reference']();
|
|
15451
15946
|
export const makePayoutStatus = () => factories['io.flow.v0.unions.payout_status']();
|
|
15452
15947
|
export const makePayoutStatusFailed = () => factories['io.flow.v0.models.payout_status_failed']();
|
|
15453
15948
|
export const makePayoutStatusFailureCode = () => factories['io.flow.v0.enums.payout_status_failure_code']();
|
|
@@ -15468,9 +15963,11 @@ export const makePfsInventoryCheckResponse = () => factories['io.flow.v0.models.
|
|
|
15468
15963
|
export const makePfsInventoryCheckResponseItem = () => factories['io.flow.v0.models.pfs_inventory_check_response_item']();
|
|
15469
15964
|
export const makePfsInventoryStatus = () => factories['io.flow.v0.models.pfs_inventory_status']();
|
|
15470
15965
|
export const makePhysicalDelivery = () => factories['io.flow.v0.models.physical_delivery']();
|
|
15966
|
+
export const makePhysicalDeliveryPreferredService = () => factories['io.flow.v0.models.physical_delivery_preferred_service']();
|
|
15471
15967
|
export const makePhysicalDeliverySpecialSerivce = () => factories['io.flow.v0.enums.physical_delivery_special_serivce']();
|
|
15472
15968
|
export const makePostPaymentRedirectUrls = () => factories['io.flow.v0.models.post_payment_redirect_urls']();
|
|
15473
15969
|
export const makePostalType = () => factories['io.flow.v0.enums.postal_type']();
|
|
15970
|
+
export const makePreferredServiceSelectionStrategy = () => factories['io.flow.v0.enums.preferred_service_selection_strategy']();
|
|
15474
15971
|
export const makePrice = () => factories['io.flow.v0.models.price']();
|
|
15475
15972
|
export const makePriceAccuracy = () => factories['io.flow.v0.enums.price_accuracy']();
|
|
15476
15973
|
export const makePriceBook = () => factories['io.flow.v0.models.price_book']();
|
|
@@ -15719,6 +16216,7 @@ export const makeShippingConfigurationVersion = () => factories['io.flow.v0.mode
|
|
|
15719
16216
|
export const makeShippingLabel = () => factories['io.flow.v0.models.shipping_label']();
|
|
15720
16217
|
export const makeShippingLabelDocument = () => factories['io.flow.v0.models.shipping_label_document']();
|
|
15721
16218
|
export const makeShippingLabelForm = () => factories['io.flow.v0.unions.shipping_label_form']();
|
|
16219
|
+
export const makeShippingLabelHopCostItemizedEstimate = () => factories['io.flow.v0.models.shipping_label_hop_cost_itemized_estimate']();
|
|
15722
16220
|
export const makeShippingLabelHopSummary = () => factories['io.flow.v0.models.shipping_label_hop_summary']();
|
|
15723
16221
|
export const makeShippingLabelLaneSummary = () => factories['io.flow.v0.models.shipping_label_lane_summary']();
|
|
15724
16222
|
export const makeShippingLabelPackage = () => factories['io.flow.v0.models.shipping_label_package']();
|
|
@@ -15793,6 +16291,7 @@ export const makeStatement = () => factories['io.flow.v0.models.statement']();
|
|
|
15793
16291
|
export const makeStatementAttachmentType = () => factories['io.flow.v0.enums.statement_attachment_type']();
|
|
15794
16292
|
export const makeStatementDeleted = () => factories['io.flow.v0.models.statement_deleted']();
|
|
15795
16293
|
export const makeStatementUpserted = () => factories['io.flow.v0.models.statement_upserted']();
|
|
16294
|
+
export const makeStoredMethodUsageStep = () => factories['io.flow.v0.enums.stored_method_usage_step']();
|
|
15796
16295
|
export const makeStrategy = () => factories['io.flow.v0.enums.strategy']();
|
|
15797
16296
|
export const makeStreetAddress = () => factories['io.flow.v0.models.street_address']();
|
|
15798
16297
|
export const makeStripeAuthenticationData = () => factories['io.flow.v0.models.stripe_authentication_data']();
|
|
@@ -15855,7 +16354,6 @@ export const makeTaxSetting = () => factories['io.flow.v0.unions.tax_setting']()
|
|
|
15855
16354
|
export const makeTaxVerificationResult = () => factories['io.flow.v0.enums.tax_verification_result']();
|
|
15856
16355
|
export const makeTaxabilityType = () => factories['io.flow.v0.enums.taxability_type']();
|
|
15857
16356
|
export const makeTaxabilityValue = () => factories['io.flow.v0.enums.taxability_value']();
|
|
15858
|
-
export const makeTest = () => factories['io.flow.v0.models.test']();
|
|
15859
16357
|
export const makeTestUpserted = () => factories['io.flow.v0.models.test_upserted']();
|
|
15860
16358
|
export const makeThirdPartyLogisticsPartner = () => factories['io.flow.v0.models.third_party_logistics_partner']();
|
|
15861
16359
|
export const makeThreeDSecure = () => factories['io.flow.v0.models.three_d_secure']();
|
|
@@ -15918,15 +16416,22 @@ export const makeTradeAgreementStatus = () => factories['io.flow.v0.enums.trade_
|
|
|
15918
16416
|
export const makeTransaction = () => factories['io.flow.v0.models.transaction']();
|
|
15919
16417
|
export const makeTransactionDetails = () => factories['io.flow.v0.unions.transaction_details']();
|
|
15920
16418
|
export const makeTransactionDetailsCard = () => factories['io.flow.v0.models.transaction_details_card']();
|
|
16419
|
+
export const makeTransactionMetadata = () => factories['io.flow.v0.unions.transaction_metadata']();
|
|
16420
|
+
export const makeTransactionMetadataShippingLabel = () => factories['io.flow.v0.models.transaction_metadata_shipping_label']();
|
|
15921
16421
|
export const makeTransactionNetworkDetailsCard = () => factories['io.flow.v0.models.transaction_network_details_card']();
|
|
16422
|
+
export const makeTransactionPayoutPendingReason = () => factories['io.flow.v0.enums.transaction_payout_pending_reason']();
|
|
16423
|
+
export const makeTransactionReference = () => factories['io.flow.v0.models.transaction_reference']();
|
|
15922
16424
|
export const makeTransactionSource = () => factories['io.flow.v0.enums.transaction_source']();
|
|
15923
16425
|
export const makeTransactionUpserted = () => factories['io.flow.v0.models.transaction_upserted']();
|
|
15924
16426
|
export const makeTransitEstimate = () => factories['io.flow.v0.models.transit_estimate']();
|
|
15925
16427
|
export const makeTransitWindow = () => factories['io.flow.v0.models.transit_window']();
|
|
15926
16428
|
export const makeUltimateBeneficiaryOwner = () => factories['io.flow.v0.models.ultimate_beneficiary_owner']();
|
|
15927
16429
|
export const makeUnharmonizedItemExportType = () => factories['io.flow.v0.models.unharmonized_item_export_type']();
|
|
16430
|
+
export const makeUnitOfLength = () => factories['io.flow.v0.enums.unit_of_length']();
|
|
15928
16431
|
export const makeUnitOfMeasurement = () => factories['io.flow.v0.enums.unit_of_measurement']();
|
|
15929
16432
|
export const makeUnitOfTime = () => factories['io.flow.v0.enums.unit_of_time']();
|
|
16433
|
+
export const makeUnitOfVolume = () => factories['io.flow.v0.enums.unit_of_volume']();
|
|
16434
|
+
export const makeUnitOfWeight = () => factories['io.flow.v0.enums.unit_of_weight']();
|
|
15930
16435
|
export const makeUpdatePolicy = () => factories['io.flow.v0.enums.update_policy']();
|
|
15931
16436
|
export const makeUpdateType = () => factories['io.flow.v0.enums.update_type']();
|
|
15932
16437
|
export const makeUpload = () => factories['io.flow.v0.models.upload']();
|