@flowio/api-factories 0.0.28 → 0.0.29
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 -0
- package/dist/esm/api.js +1 -0
- package/package.json +2 -2
- package/src/api.ts +1 -0
package/dist/cjs/api.js
CHANGED
|
@@ -6636,6 +6636,7 @@ var factories = {
|
|
|
6636
6636
|
country: factories.string(),
|
|
6637
6637
|
region: factories['io.flow.v0.enums.region_type'](),
|
|
6638
6638
|
region_value: factories.string(),
|
|
6639
|
+
category_code: factories.string(),
|
|
6639
6640
|
}); },
|
|
6640
6641
|
'io.flow.v0.models.merchant_of_record_authorization_form': function () { return ({
|
|
6641
6642
|
discriminator: 'merchant_of_record_authorization_form',
|
package/dist/esm/api.js
CHANGED
|
@@ -6599,6 +6599,7 @@ var factories = {
|
|
|
6599
6599
|
country: factories.string(),
|
|
6600
6600
|
region: factories['io.flow.v0.enums.region_type'](),
|
|
6601
6601
|
region_value: factories.string(),
|
|
6602
|
+
category_code: factories.string(),
|
|
6602
6603
|
}); },
|
|
6603
6604
|
'io.flow.v0.models.merchant_of_record_authorization_form': function () { return ({
|
|
6604
6605
|
discriminator: 'merchant_of_record_authorization_form',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@flowio/api-factories",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.29",
|
|
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": "2710854f614efa1b51bc3d826818b082d7a90a61"
|
|
40
40
|
}
|
package/src/api.ts
CHANGED
|
@@ -7594,6 +7594,7 @@ const factories = {
|
|
|
7594
7594
|
country: factories.string(),
|
|
7595
7595
|
region: factories['io.flow.v0.enums.region_type'](),
|
|
7596
7596
|
region_value: factories.string(),
|
|
7597
|
+
category_code: factories.string(),
|
|
7597
7598
|
}),
|
|
7598
7599
|
|
|
7599
7600
|
'io.flow.v0.models.merchant_of_record_authorization_form': (): io.flow.v0.models.MerchantOfRecordAuthorizationForm => ({
|