@esri/hub-common 24.6.0 → 24.7.0
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.
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ISystemStatus.js","sourceRoot":"","sources":["../../../../src/core/types/ISystemStatus.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"ISystemStatus.js","sourceRoot":"","sources":["../../../../src/core/types/ISystemStatus.ts"],"names":[],"mappings":"AAiBA,MAAM,aAAa,GAAG;IACpB,QAAQ;IACR,aAAa;IACb,QAAQ;IACR,SAAS;IACT,eAAe;IACf,YAAY;IACZ,SAAS;IACT,eAAe;IACf,kBAAkB;CACV,CAAC;AAIX;;;;GAIG;AACH,MAAM,UAAU,YAAY,CAAC,YAAoB;IAC/C,OAAO,aAAa,CAAC,QAAQ,CAAC,YAA0B,CAAC,CAAC;AAC5D,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ISystemStatus.js","sourceRoot":"","sources":["../../../../src/core/types/ISystemStatus.ts"],"names":[],"mappings":";;
|
|
1
|
+
{"version":3,"file":"ISystemStatus.js","sourceRoot":"","sources":["../../../../src/core/types/ISystemStatus.ts"],"names":[],"mappings":";;AAoCA,oCAEC;AArBD,MAAM,aAAa,GAAG;IACpB,QAAQ;IACR,aAAa;IACb,QAAQ;IACR,SAAS;IACT,eAAe;IACf,YAAY;IACZ,SAAS;IACT,eAAe;IACf,kBAAkB;CACV,CAAC;AAIX;;;;GAIG;AACH,SAAgB,YAAY,CAAC,YAAoB;IAC/C,OAAO,aAAa,CAAC,QAAQ,CAAC,YAA0B,CAAC,CAAC;AAC5D,CAAC"}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* What is the status of a subsystem
|
|
3
3
|
*/
|
|
4
|
-
export type SystemStatus = "online" | "offline" | "maintenance" | "not-available";
|
|
4
|
+
export type SystemStatus = "online" | "offline" | "maintenance" | "read-only" | "not-available";
|
|
5
5
|
/**
|
|
6
6
|
* Hash of Services and their status
|
|
7
7
|
*/
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
/**`
|
|
2
2
|
* Human readable response from a policy check
|
|
3
3
|
*/
|
|
4
|
-
export type PolicyResponse = "granted" | "disabled-by-feature-flag" | "disabled-by-entity-flag" | "org-member" | "not-org-member" | "group-member" | "not-group-member" | "not-group-admin" | "is-user" | "not-owner" | "not-licensed" | "not-licensed-available" | "not-available" | "not-granted" | "no-edit-access" | "edit-access" | "no-delete-access" | "delete-access" | "invalid-permission" | "invalid-capability" | "privilege-required" | "service-offline" | "service-maintenance" | "service-not-available" | "entity-required" | "not-authenticated" | "not-alpha-org" | "not-beta-org" | "property-missing" | "property-not-array" | "property-has-no-length" | "array-contains-invalid-value" | "array-missing-required-value" | "property-mismatch" | "user-not-group-member" | "user-not-group-manager" | "user-not-group-owner" | "user-is-group-manager" | "user-is-group-member" | "user-is-group-owner" | "assertion-property-not-found" | "assertion-failed" | "assertion-requires-numeric-values" | "assertion-requires-array-value" | "property-match" | "feature-disabled" | "feature-enabled" | "not-in-environment" | "no-policy-exists" | "feature-flag-required" | "release-date-not-reached" | "retire-date-passed" | "platform-version-not-met";
|
|
4
|
+
export type PolicyResponse = "granted" | "disabled-by-feature-flag" | "disabled-by-entity-flag" | "org-member" | "not-org-member" | "group-member" | "not-group-member" | "not-group-admin" | "is-user" | "not-owner" | "not-licensed" | "not-licensed-available" | "not-available" | "not-granted" | "no-edit-access" | "edit-access" | "no-delete-access" | "delete-access" | "invalid-permission" | "invalid-capability" | "privilege-required" | "service-offline" | "service-read-only" | "service-maintenance" | "service-not-available" | "entity-required" | "not-authenticated" | "not-alpha-org" | "not-beta-org" | "property-missing" | "property-not-array" | "property-has-no-length" | "array-contains-invalid-value" | "array-missing-required-value" | "property-mismatch" | "user-not-group-member" | "user-not-group-manager" | "user-not-group-owner" | "user-is-group-manager" | "user-is-group-member" | "user-is-group-owner" | "assertion-property-not-found" | "assertion-failed" | "assertion-requires-numeric-values" | "assertion-requires-array-value" | "property-match" | "feature-disabled" | "feature-enabled" | "not-in-environment" | "no-policy-exists" | "feature-flag-required" | "release-date-not-reached" | "retire-date-passed" | "platform-version-not-met";
|