@spotto/contract 1.0.69-alpha.27 → 1.0.69-alpha.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.
@@ -10,4 +10,13 @@ export interface GetOrganisationResponse {
10
10
  integrations?: Integrations;
11
11
  meta?: IEntityMeta;
12
12
  children?: number;
13
+ /**
14
+ * Lightweight SSO state for the org, surfaced so the admin UI can suppress
15
+ * add/remove user flows on SSO-managed orgs without needing the super-user-
16
+ * only `GET /sso/orgs/:id` endpoint. Present only when the caller holds
17
+ * `users:view` — the same gate as the user management UI that consumes it.
18
+ */
19
+ sso?: {
20
+ enabled: boolean;
21
+ };
13
22
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@spotto/contract",
3
3
  "license": "ISC",
4
- "version": "1.0.69-alpha.27",
4
+ "version": "1.0.69-alpha.28",
5
5
  "description": "Spotto's API Contract type definitions",
6
6
  "main": "./dist/index.js",
7
7
  "files": [
@@ -18,5 +18,5 @@
18
18
  "@types/geojson": "^7946.0.11",
19
19
  "shx": "^0.3.4"
20
20
  },
21
- "gitHead": "c8b22d77af2952f711eb68c129f7007b8c61e4af"
21
+ "gitHead": "3ea851678291574d1641ad5cb7f43455b738d29c"
22
22
  }