@flowio/api-factories 0.0.55 → 0.0.56
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 +2 -2
- package/src/api.ts +2 -0
package/dist/cjs/api.js
CHANGED
|
@@ -3946,6 +3946,7 @@ var factories = {
|
|
|
3946
3946
|
id: factories.string(),
|
|
3947
3947
|
}); },
|
|
3948
3948
|
'io.flow.v0.models.catalog_statistics': function () { return ({
|
|
3949
|
+
id: factories.string(),
|
|
3949
3950
|
items: factories.long(),
|
|
3950
3951
|
categories: factories.long(),
|
|
3951
3952
|
}); },
|
|
@@ -7811,6 +7812,7 @@ var factories = {
|
|
|
7811
7812
|
type: factories['io.flow.v0.enums.organization_type'](),
|
|
7812
7813
|
}); },
|
|
7813
7814
|
'io.flow.v0.models.organization_onboarding_state': function () { return ({
|
|
7815
|
+
id: factories.string(),
|
|
7814
7816
|
organization: factories['io.flow.v0.models.organization_reference'](),
|
|
7815
7817
|
transitions: arrayOf(function () { return factories['io.flow.v0.models.onboarding_state_transition'](); }),
|
|
7816
7818
|
current_state: factories['io.flow.v0.unions.onboarding_state'](),
|
package/dist/esm/api.js
CHANGED
|
@@ -3907,6 +3907,7 @@ var factories = {
|
|
|
3907
3907
|
id: factories.string(),
|
|
3908
3908
|
}); },
|
|
3909
3909
|
'io.flow.v0.models.catalog_statistics': function () { return ({
|
|
3910
|
+
id: factories.string(),
|
|
3910
3911
|
items: factories.long(),
|
|
3911
3912
|
categories: factories.long(),
|
|
3912
3913
|
}); },
|
|
@@ -7772,6 +7773,7 @@ var factories = {
|
|
|
7772
7773
|
type: factories['io.flow.v0.enums.organization_type'](),
|
|
7773
7774
|
}); },
|
|
7774
7775
|
'io.flow.v0.models.organization_onboarding_state': function () { return ({
|
|
7776
|
+
id: factories.string(),
|
|
7775
7777
|
organization: factories['io.flow.v0.models.organization_reference'](),
|
|
7776
7778
|
transitions: arrayOf(function () { return factories['io.flow.v0.models.onboarding_state_transition'](); }),
|
|
7777
7779
|
current_state: factories['io.flow.v0.unions.onboarding_state'](),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@flowio/api-factories",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.56",
|
|
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": "*"
|
|
38
38
|
},
|
|
39
|
-
"gitHead": "
|
|
39
|
+
"gitHead": "46a04b6ac3cb8aabcc89d77f21c5586312ed2960"
|
|
40
40
|
}
|
package/src/api.ts
CHANGED
|
@@ -4453,6 +4453,7 @@ const factories = {
|
|
|
4453
4453
|
}),
|
|
4454
4454
|
|
|
4455
4455
|
'io.flow.v0.models.catalog_statistics': (): io.flow.v0.models.CatalogStatistics => ({
|
|
4456
|
+
id: factories.string(),
|
|
4456
4457
|
items: factories.long(),
|
|
4457
4458
|
categories: factories.long(),
|
|
4458
4459
|
}),
|
|
@@ -8961,6 +8962,7 @@ const factories = {
|
|
|
8961
8962
|
}),
|
|
8962
8963
|
|
|
8963
8964
|
'io.flow.v0.models.organization_onboarding_state': (): io.flow.v0.models.OrganizationOnboardingState => ({
|
|
8965
|
+
id: factories.string(),
|
|
8964
8966
|
organization: factories['io.flow.v0.models.organization_reference'](),
|
|
8965
8967
|
transitions: arrayOf(() => factories['io.flow.v0.models.onboarding_state_transition']()),
|
|
8966
8968
|
current_state: factories['io.flow.v0.unions.onboarding_state'](),
|