@flowio/api-internal-constants 4.18.27 → 4.18.28
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/api-internal.d.ts +1 -1
- package/dist/api-internal.js +1 -1
- package/package.json +2 -2
- package/src/api-internal.ts +1 -1
package/dist/api-internal.d.ts
CHANGED
|
@@ -1294,7 +1294,7 @@ export declare enum OrganizationRestrictionRiskLevel {
|
|
|
1294
1294
|
}
|
|
1295
1295
|
export declare enum OrganizationRestrictionScreeningStatus {
|
|
1296
1296
|
IN_REVIEW = "in_review",
|
|
1297
|
-
|
|
1297
|
+
FULLY_REVIEWED = "fully_reviewed",
|
|
1298
1298
|
REJECTED = "rejected",
|
|
1299
1299
|
UNSCREENED = "unscreened"
|
|
1300
1300
|
}
|
package/dist/api-internal.js
CHANGED
|
@@ -1488,7 +1488,7 @@ var OrganizationRestrictionRiskLevel;
|
|
|
1488
1488
|
var OrganizationRestrictionScreeningStatus;
|
|
1489
1489
|
(function (OrganizationRestrictionScreeningStatus) {
|
|
1490
1490
|
OrganizationRestrictionScreeningStatus["IN_REVIEW"] = "in_review";
|
|
1491
|
-
OrganizationRestrictionScreeningStatus["
|
|
1491
|
+
OrganizationRestrictionScreeningStatus["FULLY_REVIEWED"] = "fully_reviewed";
|
|
1492
1492
|
OrganizationRestrictionScreeningStatus["REJECTED"] = "rejected";
|
|
1493
1493
|
OrganizationRestrictionScreeningStatus["UNSCREENED"] = "unscreened";
|
|
1494
1494
|
})(OrganizationRestrictionScreeningStatus = exports.OrganizationRestrictionScreeningStatus || (exports.OrganizationRestrictionScreeningStatus = {}));
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@flowio/api-internal-constants",
|
|
3
|
-
"version": "4.18.
|
|
3
|
+
"version": "4.18.28",
|
|
4
4
|
"description": "Definitions for enumerations found in internal Flow API",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"flow",
|
|
@@ -24,5 +24,5 @@
|
|
|
24
24
|
"generate": "apibuilder update",
|
|
25
25
|
"postgenerate": "npm run format"
|
|
26
26
|
},
|
|
27
|
-
"gitHead": "
|
|
27
|
+
"gitHead": "52061c2130395e8550acf7a142dd62fc9420faf6"
|
|
28
28
|
}
|
package/src/api-internal.ts
CHANGED
|
@@ -1480,7 +1480,7 @@ export enum OrganizationRestrictionRiskLevel {
|
|
|
1480
1480
|
|
|
1481
1481
|
export enum OrganizationRestrictionScreeningStatus {
|
|
1482
1482
|
IN_REVIEW = 'in_review',
|
|
1483
|
-
|
|
1483
|
+
FULLY_REVIEWED = 'fully_reviewed',
|
|
1484
1484
|
REJECTED = 'rejected',
|
|
1485
1485
|
UNSCREENED = 'unscreened',
|
|
1486
1486
|
}
|