@flowio/api-factories 0.0.61 → 0.0.62
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
|
@@ -5012,6 +5012,7 @@ var factories = {
|
|
|
5012
5012
|
cookie_created_at: factories.integer(),
|
|
5013
5013
|
session_duration: factories.integer(),
|
|
5014
5014
|
fingerprint: factories.string(),
|
|
5015
|
+
fraud_references: objectOf(function () { return factories.string(); }),
|
|
5015
5016
|
}); },
|
|
5016
5017
|
'io.flow.v0.models.device_fingerprint_details_browser': function () { return ({
|
|
5017
5018
|
type: 'browser',
|
package/dist/esm/api.js
CHANGED
|
@@ -4973,6 +4973,7 @@ var factories = {
|
|
|
4973
4973
|
cookie_created_at: factories.integer(),
|
|
4974
4974
|
session_duration: factories.integer(),
|
|
4975
4975
|
fingerprint: factories.string(),
|
|
4976
|
+
fraud_references: objectOf(function () { return factories.string(); }),
|
|
4976
4977
|
}); },
|
|
4977
4978
|
'io.flow.v0.models.device_fingerprint_details_browser': function () { return ({
|
|
4978
4979
|
type: 'browser',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@flowio/api-factories",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.62",
|
|
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": "a9aebda82a73c3cf583d7536bd0ab8cd24ad9660"
|
|
40
40
|
}
|
package/src/api.ts
CHANGED
|
@@ -5689,6 +5689,7 @@ const factories = {
|
|
|
5689
5689
|
cookie_created_at: factories.integer(),
|
|
5690
5690
|
session_duration: factories.integer(),
|
|
5691
5691
|
fingerprint: factories.string(),
|
|
5692
|
+
fraud_references: objectOf(() => factories.string()),
|
|
5692
5693
|
}),
|
|
5693
5694
|
|
|
5694
5695
|
'io.flow.v0.models.device_fingerprint_details_browser': (): io.flow.v0.models.DeviceFingerprintDetailsBrowser => ({
|