@flowio/api-factories 0.0.127 → 0.0.129
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 +2 -0
- package/dist/esm/api.js +2 -0
- package/package.json +1 -1
- package/src/api.ts +2 -0
package/dist/cjs/api.js
CHANGED
|
@@ -558,6 +558,7 @@ var factories = {
|
|
|
558
558
|
rejection_reason: factories['io.flow.channel.internal.v0.enums.channel_order_acceptance_rejection_reason'](),
|
|
559
559
|
}); },
|
|
560
560
|
'io.flow.channel.internal.v0.models.channel_order_tax_and_duty_inclusivity_setting': function () { return ({
|
|
561
|
+
id: factories.string(),
|
|
561
562
|
organization: factories['io.flow.common.v0.models.organization_reference'](),
|
|
562
563
|
order_number: factories.string(),
|
|
563
564
|
channel: factories['io.flow.common.v0.models.channel_reference'](),
|
|
@@ -8812,6 +8813,7 @@ var factories = {
|
|
|
8812
8813
|
'b2b_fee_shipping_tax',
|
|
8813
8814
|
'flat_rate_label',
|
|
8814
8815
|
'flat_rate_label_subsidy',
|
|
8816
|
+
'credit_refund',
|
|
8815
8817
|
]); },
|
|
8816
8818
|
'io.flow.v0.enums.transfer_status': function () { return faker_1.default.helpers.arrayElement(['succeeded', 'canceled']); },
|
|
8817
8819
|
'io.flow.v0.enums.transfer_type': function () { return faker_1.default.helpers.arrayElement([
|
package/dist/esm/api.js
CHANGED
|
@@ -517,6 +517,7 @@ var factories = {
|
|
|
517
517
|
rejection_reason: factories['io.flow.channel.internal.v0.enums.channel_order_acceptance_rejection_reason'](),
|
|
518
518
|
}); },
|
|
519
519
|
'io.flow.channel.internal.v0.models.channel_order_tax_and_duty_inclusivity_setting': function () { return ({
|
|
520
|
+
id: factories.string(),
|
|
520
521
|
organization: factories['io.flow.common.v0.models.organization_reference'](),
|
|
521
522
|
order_number: factories.string(),
|
|
522
523
|
channel: factories['io.flow.common.v0.models.channel_reference'](),
|
|
@@ -8771,6 +8772,7 @@ var factories = {
|
|
|
8771
8772
|
'b2b_fee_shipping_tax',
|
|
8772
8773
|
'flat_rate_label',
|
|
8773
8774
|
'flat_rate_label_subsidy',
|
|
8775
|
+
'credit_refund',
|
|
8774
8776
|
]); },
|
|
8775
8777
|
'io.flow.v0.enums.transfer_status': function () { return faker.helpers.arrayElement(['succeeded', 'canceled']); },
|
|
8776
8778
|
'io.flow.v0.enums.transfer_type': function () { return faker.helpers.arrayElement([
|
package/package.json
CHANGED
package/src/api.ts
CHANGED
|
@@ -606,6 +606,7 @@ const factories = {
|
|
|
606
606
|
}),
|
|
607
607
|
|
|
608
608
|
'io.flow.channel.internal.v0.models.channel_order_tax_and_duty_inclusivity_setting': (): io.flow.channel.internal.v0.models.ChannelOrderTaxAndDutyInclusivitySetting => ({
|
|
609
|
+
id: factories.string(),
|
|
609
610
|
organization: factories['io.flow.common.v0.models.organization_reference'](),
|
|
610
611
|
order_number: factories.string(),
|
|
611
612
|
channel: factories['io.flow.common.v0.models.channel_reference'](),
|
|
@@ -10246,6 +10247,7 @@ const factories = {
|
|
|
10246
10247
|
'b2b_fee_shipping_tax',
|
|
10247
10248
|
'flat_rate_label',
|
|
10248
10249
|
'flat_rate_label_subsidy',
|
|
10250
|
+
'credit_refund',
|
|
10249
10251
|
]),
|
|
10250
10252
|
|
|
10251
10253
|
'io.flow.v0.enums.transfer_status': (): io.flow.v0.enums.TransferStatus => faker.helpers.arrayElement(['succeeded', 'canceled']),
|