@flowio/api-factories 0.0.23 → 0.0.24
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 +1 -1
- package/dist/esm/api.js +1 -1
- package/package.json +2 -2
- package/src/api.ts +1 -1
package/dist/cjs/api.js
CHANGED
|
@@ -3456,6 +3456,7 @@ var factories = {
|
|
|
3456
3456
|
}); },
|
|
3457
3457
|
'io.flow.v0.models.billing_channel_payment_request_reference': function () { return ({
|
|
3458
3458
|
id: factories.string(),
|
|
3459
|
+
reference: factories.string(),
|
|
3459
3460
|
}); },
|
|
3460
3461
|
'io.flow.v0.models.billing_channel_statement_reference': function () { return ({
|
|
3461
3462
|
id: factories.string(),
|
|
@@ -10486,7 +10487,6 @@ var factories = {
|
|
|
10486
10487
|
}); },
|
|
10487
10488
|
'io.flow.v0.models.transaction': function () { return ({
|
|
10488
10489
|
id: factories.string(),
|
|
10489
|
-
external_transaction_id: factories.string(),
|
|
10490
10490
|
order: factories['io.flow.v0.models.billing_channel_order_reference'](),
|
|
10491
10491
|
statement: factories['io.flow.v0.models.billing_channel_statement_reference'](),
|
|
10492
10492
|
payment_request: factories['io.flow.v0.models.billing_channel_payment_request_reference'](),
|
package/dist/esm/api.js
CHANGED
|
@@ -3419,6 +3419,7 @@ var factories = {
|
|
|
3419
3419
|
}); },
|
|
3420
3420
|
'io.flow.v0.models.billing_channel_payment_request_reference': function () { return ({
|
|
3421
3421
|
id: factories.string(),
|
|
3422
|
+
reference: factories.string(),
|
|
3422
3423
|
}); },
|
|
3423
3424
|
'io.flow.v0.models.billing_channel_statement_reference': function () { return ({
|
|
3424
3425
|
id: factories.string(),
|
|
@@ -10449,7 +10450,6 @@ var factories = {
|
|
|
10449
10450
|
}); },
|
|
10450
10451
|
'io.flow.v0.models.transaction': function () { return ({
|
|
10451
10452
|
id: factories.string(),
|
|
10452
|
-
external_transaction_id: factories.string(),
|
|
10453
10453
|
order: factories['io.flow.v0.models.billing_channel_order_reference'](),
|
|
10454
10454
|
statement: factories['io.flow.v0.models.billing_channel_statement_reference'](),
|
|
10455
10455
|
payment_request: factories['io.flow.v0.models.billing_channel_payment_request_reference'](),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@flowio/api-factories",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.24",
|
|
4
4
|
"description": "Flow API mock data factories",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"flow",
|
|
@@ -36,5 +36,5 @@
|
|
|
36
36
|
"@faker-js/faker": "^6.2.0",
|
|
37
37
|
"@flowio/api-types": "file:../api-types"
|
|
38
38
|
},
|
|
39
|
-
"gitHead": "
|
|
39
|
+
"gitHead": "fdff09214debd93ef272d05c24a88e5c108deded"
|
|
40
40
|
}
|
package/src/api.ts
CHANGED
|
@@ -3890,6 +3890,7 @@ const factories = {
|
|
|
3890
3890
|
|
|
3891
3891
|
'io.flow.v0.models.billing_channel_payment_request_reference': (): io.flow.v0.models.BillingChannelPaymentRequestReference => ({
|
|
3892
3892
|
id: factories.string(),
|
|
3893
|
+
reference: factories.string(),
|
|
3893
3894
|
}),
|
|
3894
3895
|
|
|
3895
3896
|
'io.flow.v0.models.billing_channel_statement_reference': (): io.flow.v0.models.BillingChannelStatementReference => ({
|
|
@@ -12076,7 +12077,6 @@ const factories = {
|
|
|
12076
12077
|
|
|
12077
12078
|
'io.flow.v0.models.transaction': (): io.flow.v0.models.Transaction => ({
|
|
12078
12079
|
id: factories.string(),
|
|
12079
|
-
external_transaction_id: factories.string(),
|
|
12080
12080
|
order: factories['io.flow.v0.models.billing_channel_order_reference'](),
|
|
12081
12081
|
statement: factories['io.flow.v0.models.billing_channel_statement_reference'](),
|
|
12082
12082
|
payment_request: factories['io.flow.v0.models.billing_channel_payment_request_reference'](),
|