@xemahq/space-registry-api-client 0.1.2 → 0.2.1
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/LICENSE +2 -1
- package/dist/endpoints/spaces/spaces.d.ts +5 -3
- package/dist/endpoints/spaces/spaces.js +4 -0
- package/dist/models/createSpaceDto.d.ts +1 -3
- package/dist/models/createSpaceDtoLabels.d.ts +1 -3
- package/dist/models/createSpaceDtoLabels.js +1 -3
- package/dist/models/dataClassification.d.ts +1 -3
- package/dist/models/dataClassification.js +1 -3
- package/dist/models/spaceAncestorsDto.d.ts +1 -3
- package/dist/models/spaceAncestorsDtoDataEnvelope.d.ts +1 -3
- package/dist/models/spaceClassificationDto.d.ts +1 -3
- package/dist/models/spaceClassificationDtoDataEnvelope.d.ts +1 -3
- package/dist/models/spaceClassificationDtoResolvedFromRefUri.d.ts +1 -3
- package/dist/models/spaceClassificationDtoResolvedFromRefUri.js +1 -3
- package/dist/models/spaceDto.d.ts +1 -3
- package/dist/models/spaceDtoAppId.d.ts +1 -3
- package/dist/models/spaceDtoAppId.js +1 -3
- package/dist/models/spaceDtoBiomeId.d.ts +1 -3
- package/dist/models/spaceDtoBiomeId.js +1 -3
- package/dist/models/spaceDtoDataArrayEnvelope.d.ts +1 -3
- package/dist/models/spaceDtoDataEnvelope.d.ts +1 -3
- package/dist/models/spaceDtoLabels.d.ts +1 -3
- package/dist/models/spaceDtoLabels.js +1 -3
- package/dist/models/spaceDtoOrgId.d.ts +1 -3
- package/dist/models/spaceDtoOrgId.js +1 -3
- package/dist/models/spaceDtoParentId.d.ts +1 -3
- package/dist/models/spaceDtoParentId.js +1 -3
- package/dist/models/spaceDtoProjectId.d.ts +1 -3
- package/dist/models/spaceDtoProjectId.js +1 -3
- package/dist/models/spaceDtoSessionId.d.ts +1 -3
- package/dist/models/spaceDtoSessionId.js +1 -3
- package/dist/models/spaceDtoUserId.d.ts +1 -3
- package/dist/models/spaceDtoUserId.js +1 -3
- package/dist/models/spaceKind.d.ts +1 -3
- package/dist/models/spaceKind.js +1 -3
- package/dist/models/spacesControllerAncestorsParams.d.ts +1 -3
- package/dist/models/spacesControllerAncestorsParams.js +1 -3
- package/dist/models/spacesControllerClassificationParams.d.ts +1 -3
- package/dist/models/spacesControllerClassificationParams.js +1 -3
- package/dist/models/spacesControllerListParams.d.ts +1 -3
- package/dist/models/spacesControllerListParams.js +1 -3
- package/dist/models/spacesControllerResolveParams.d.ts +1 -3
- package/dist/models/spacesControllerResolveParams.js +1 -3
- package/dist/models/updateClassificationDto.d.ts +1 -3
- package/package.json +3 -3
package/LICENSE
CHANGED
|
@@ -9,7 +9,7 @@ Parameters
|
|
|
9
9
|
|
|
10
10
|
Licensor: Neuralchowder Inc.
|
|
11
11
|
|
|
12
|
-
Licensed Work: Xema. The Licensed Work is (c) 2026 Neuralchowder Inc
|
|
12
|
+
Licensed Work: Xema. The Licensed Work is (c) 2026 Neuralchowder Inc.
|
|
13
13
|
|
|
14
14
|
The Licensed Work includes, without limitation, Xema Core, Xema Runtime,
|
|
15
15
|
Xema Kernel, Xema control plane, Xema application runtime, Xema biome
|
|
@@ -116,6 +116,7 @@ the interpretation of, the Additional Use Grant set out above.
|
|
|
116
116
|
and effect. The Licensor reserves all rights not expressly granted
|
|
117
117
|
by this License.
|
|
118
118
|
|
|
119
|
+
|
|
119
120
|
Change Date: Four years from the date the specific version of the Licensed
|
|
120
121
|
Work is first publicly released by Licensor.
|
|
121
122
|
|
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Generated by
|
|
3
|
-
* Do not edit manually.
|
|
2
|
+
* Generated by @xemahq/api-client-generator — do not edit manually.
|
|
4
3
|
* Space Registry API
|
|
5
|
-
* Authoritative Space ownership + data-classification plane: Space CRUD, hierarchy, and most-specific-wins classification resolution.
|
|
6
4
|
* OpenAPI spec version: 0.1.0
|
|
7
5
|
*/
|
|
8
6
|
import type { CreateSpaceDto, SpaceAncestorsDtoDataEnvelope, SpaceClassificationDtoDataEnvelope, SpaceDtoDataArrayEnvelope, SpaceDtoDataEnvelope, SpacesControllerAncestorsParams, SpacesControllerClassificationParams, SpacesControllerListParams, SpacesControllerResolveParams, UpdateClassificationDto } from '../../models';
|
|
@@ -18,21 +16,25 @@ export declare const getSpacesControllerListUrl: (params?: SpacesControllerListP
|
|
|
18
16
|
export declare const spacesControllerList: (params?: SpacesControllerListParams, options?: RequestInit) => Promise<SpaceDtoDataArrayEnvelope>;
|
|
19
17
|
export declare const getSpacesControllerResolveUrl: (params: SpacesControllerResolveParams) => string;
|
|
20
18
|
/**
|
|
19
|
+
* The organization is selected through the X-Xema-Org-Id request context, NOT through the ref. A ref naming a different organization is refused with 403 SPACE_CROSS_ORG_ACCESS_FORBIDDEN — never silently preferred. Org-less refs (xema://system, xema://biomes/<id>, xema://users/<id>, xema://sessions/<id>) are platform-global and remain readable by every authenticated caller.
|
|
21
20
|
* @summary Resolve a Space by its xema:// URI.
|
|
22
21
|
*/
|
|
23
22
|
export declare const spacesControllerResolve: (params: SpacesControllerResolveParams, options?: RequestInit) => Promise<SpaceDtoDataEnvelope>;
|
|
24
23
|
export declare const getSpacesControllerAncestorsUrl: (params: SpacesControllerAncestorsParams) => string;
|
|
25
24
|
/**
|
|
25
|
+
* Same tenant rule as /spaces/resolve: the ref is fenced against the request-context organization. The org-less System tail of the chain is returned for every caller — it is what carries the inherited classification floor.
|
|
26
26
|
* @summary Persisted ancestor chain (closest-first, self at index 0) up to System.
|
|
27
27
|
*/
|
|
28
28
|
export declare const spacesControllerAncestors: (params: SpacesControllerAncestorsParams, options?: RequestInit) => Promise<SpaceAncestorsDtoDataEnvelope>;
|
|
29
29
|
export declare const getSpacesControllerClassificationUrl: (params: SpacesControllerClassificationParams) => string;
|
|
30
30
|
/**
|
|
31
|
+
* Same tenant rule as /spaces/resolve. A data-classification label is exactly the kind of metadata a cross-tenant read must not expose, so a ref naming another organization is refused with 403.
|
|
31
32
|
* @summary Resolve effective (most-specific-wins) classification over the ancestry.
|
|
32
33
|
*/
|
|
33
34
|
export declare const spacesControllerClassification: (params: SpacesControllerClassificationParams, options?: RequestInit) => Promise<SpaceClassificationDtoDataEnvelope>;
|
|
34
35
|
export declare const getSpacesControllerGetByIdUrl: (id: string) => string;
|
|
35
36
|
/**
|
|
37
|
+
* A Space owned by another organization returns the SAME 404 as an unknown id — an opaque id names no tenant, so a distinct 403 would make this route a cross-tenant existence oracle.
|
|
36
38
|
* @summary Fetch a Space by opaque id.
|
|
37
39
|
*/
|
|
38
40
|
export declare const spacesControllerGetById: (id: string, options?: RequestInit) => Promise<SpaceDtoDataEnvelope>;
|
|
@@ -75,6 +75,7 @@ const getSpacesControllerResolveUrl = (params) => {
|
|
|
75
75
|
};
|
|
76
76
|
exports.getSpacesControllerResolveUrl = getSpacesControllerResolveUrl;
|
|
77
77
|
/**
|
|
78
|
+
* The organization is selected through the X-Xema-Org-Id request context, NOT through the ref. A ref naming a different organization is refused with 403 SPACE_CROSS_ORG_ACCESS_FORBIDDEN — never silently preferred. Org-less refs (xema://system, xema://biomes/<id>, xema://users/<id>, xema://sessions/<id>) are platform-global and remain readable by every authenticated caller.
|
|
78
79
|
* @summary Resolve a Space by its xema:// URI.
|
|
79
80
|
*/
|
|
80
81
|
const spacesControllerResolve = async (params, options) => {
|
|
@@ -108,6 +109,7 @@ const getSpacesControllerAncestorsUrl = (params) => {
|
|
|
108
109
|
};
|
|
109
110
|
exports.getSpacesControllerAncestorsUrl = getSpacesControllerAncestorsUrl;
|
|
110
111
|
/**
|
|
112
|
+
* Same tenant rule as /spaces/resolve: the ref is fenced against the request-context organization. The org-less System tail of the chain is returned for every caller — it is what carries the inherited classification floor.
|
|
111
113
|
* @summary Persisted ancestor chain (closest-first, self at index 0) up to System.
|
|
112
114
|
*/
|
|
113
115
|
const spacesControllerAncestors = async (params, options) => {
|
|
@@ -141,6 +143,7 @@ const getSpacesControllerClassificationUrl = (params) => {
|
|
|
141
143
|
};
|
|
142
144
|
exports.getSpacesControllerClassificationUrl = getSpacesControllerClassificationUrl;
|
|
143
145
|
/**
|
|
146
|
+
* Same tenant rule as /spaces/resolve. A data-classification label is exactly the kind of metadata a cross-tenant read must not expose, so a ref naming another organization is refused with 403.
|
|
144
147
|
* @summary Resolve effective (most-specific-wins) classification over the ancestry.
|
|
145
148
|
*/
|
|
146
149
|
const spacesControllerClassification = async (params, options) => {
|
|
@@ -155,6 +158,7 @@ const getSpacesControllerGetByIdUrl = (id) => {
|
|
|
155
158
|
};
|
|
156
159
|
exports.getSpacesControllerGetByIdUrl = getSpacesControllerGetByIdUrl;
|
|
157
160
|
/**
|
|
161
|
+
* A Space owned by another organization returns the SAME 404 as an unknown id — an opaque id names no tenant, so a distinct 403 would make this route a cross-tenant existence oracle.
|
|
158
162
|
* @summary Fetch a Space by opaque id.
|
|
159
163
|
*/
|
|
160
164
|
const spacesControllerGetById = async (id, options) => {
|
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Generated by
|
|
3
|
-
* Do not edit manually.
|
|
2
|
+
* Generated by @xemahq/api-client-generator — do not edit manually.
|
|
4
3
|
* Space Registry API
|
|
5
|
-
* Authoritative Space ownership + data-classification plane: Space CRUD, hierarchy, and most-specific-wins classification resolution.
|
|
6
4
|
* OpenAPI spec version: 0.1.0
|
|
7
5
|
*/
|
|
8
6
|
import type { CreateSpaceDtoLabels } from './createSpaceDtoLabels.js';
|
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Generated by
|
|
3
|
-
* Do not edit manually.
|
|
2
|
+
* Generated by @xemahq/api-client-generator — do not edit manually.
|
|
4
3
|
* Space Registry API
|
|
5
|
-
* Authoritative Space ownership + data-classification plane: Space CRUD, hierarchy, and most-specific-wins classification resolution.
|
|
6
4
|
* OpenAPI spec version: 0.1.0
|
|
7
5
|
*/
|
|
8
6
|
export type CreateSpaceDtoLabels = {
|
|
@@ -1,9 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
/**
|
|
3
|
-
* Generated by
|
|
4
|
-
* Do not edit manually.
|
|
3
|
+
* Generated by @xemahq/api-client-generator — do not edit manually.
|
|
5
4
|
* Space Registry API
|
|
6
|
-
* Authoritative Space ownership + data-classification plane: Space CRUD, hierarchy, and most-specific-wins classification resolution.
|
|
7
5
|
* OpenAPI spec version: 0.1.0
|
|
8
6
|
*/
|
|
9
7
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Generated by
|
|
3
|
-
* Do not edit manually.
|
|
2
|
+
* Generated by @xemahq/api-client-generator — do not edit manually.
|
|
4
3
|
* Space Registry API
|
|
5
|
-
* Authoritative Space ownership + data-classification plane: Space CRUD, hierarchy, and most-specific-wins classification resolution.
|
|
6
4
|
* OpenAPI spec version: 0.1.0
|
|
7
5
|
*/
|
|
8
6
|
/**
|
|
@@ -1,9 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
/**
|
|
3
|
-
* Generated by
|
|
4
|
-
* Do not edit manually.
|
|
3
|
+
* Generated by @xemahq/api-client-generator — do not edit manually.
|
|
5
4
|
* Space Registry API
|
|
6
|
-
* Authoritative Space ownership + data-classification plane: Space CRUD, hierarchy, and most-specific-wins classification resolution.
|
|
7
5
|
* OpenAPI spec version: 0.1.0
|
|
8
6
|
*/
|
|
9
7
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Generated by
|
|
3
|
-
* Do not edit manually.
|
|
2
|
+
* Generated by @xemahq/api-client-generator — do not edit manually.
|
|
4
3
|
* Space Registry API
|
|
5
|
-
* Authoritative Space ownership + data-classification plane: Space CRUD, hierarchy, and most-specific-wins classification resolution.
|
|
6
4
|
* OpenAPI spec version: 0.1.0
|
|
7
5
|
*/
|
|
8
6
|
import type { SpaceDto } from './spaceDto.js';
|
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Generated by
|
|
3
|
-
* Do not edit manually.
|
|
2
|
+
* Generated by @xemahq/api-client-generator — do not edit manually.
|
|
4
3
|
* Space Registry API
|
|
5
|
-
* Authoritative Space ownership + data-classification plane: Space CRUD, hierarchy, and most-specific-wins classification resolution.
|
|
6
4
|
* OpenAPI spec version: 0.1.0
|
|
7
5
|
*/
|
|
8
6
|
import type { SpaceAncestorsDto } from './spaceAncestorsDto.js';
|
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Generated by
|
|
3
|
-
* Do not edit manually.
|
|
2
|
+
* Generated by @xemahq/api-client-generator — do not edit manually.
|
|
4
3
|
* Space Registry API
|
|
5
|
-
* Authoritative Space ownership + data-classification plane: Space CRUD, hierarchy, and most-specific-wins classification resolution.
|
|
6
4
|
* OpenAPI spec version: 0.1.0
|
|
7
5
|
*/
|
|
8
6
|
import type { DataClassification } from './dataClassification.js';
|
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Generated by
|
|
3
|
-
* Do not edit manually.
|
|
2
|
+
* Generated by @xemahq/api-client-generator — do not edit manually.
|
|
4
3
|
* Space Registry API
|
|
5
|
-
* Authoritative Space ownership + data-classification plane: Space CRUD, hierarchy, and most-specific-wins classification resolution.
|
|
6
4
|
* OpenAPI spec version: 0.1.0
|
|
7
5
|
*/
|
|
8
6
|
import type { SpaceClassificationDto } from './spaceClassificationDto.js';
|
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Generated by
|
|
3
|
-
* Do not edit manually.
|
|
2
|
+
* Generated by @xemahq/api-client-generator — do not edit manually.
|
|
4
3
|
* Space Registry API
|
|
5
|
-
* Authoritative Space ownership + data-classification plane: Space CRUD, hierarchy, and most-specific-wins classification resolution.
|
|
6
4
|
* OpenAPI spec version: 0.1.0
|
|
7
5
|
*/
|
|
8
6
|
/**
|
|
@@ -1,9 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
/**
|
|
3
|
-
* Generated by
|
|
4
|
-
* Do not edit manually.
|
|
3
|
+
* Generated by @xemahq/api-client-generator — do not edit manually.
|
|
5
4
|
* Space Registry API
|
|
6
|
-
* Authoritative Space ownership + data-classification plane: Space CRUD, hierarchy, and most-specific-wins classification resolution.
|
|
7
5
|
* OpenAPI spec version: 0.1.0
|
|
8
6
|
*/
|
|
9
7
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Generated by
|
|
3
|
-
* Do not edit manually.
|
|
2
|
+
* Generated by @xemahq/api-client-generator — do not edit manually.
|
|
4
3
|
* Space Registry API
|
|
5
|
-
* Authoritative Space ownership + data-classification plane: Space CRUD, hierarchy, and most-specific-wins classification resolution.
|
|
6
4
|
* OpenAPI spec version: 0.1.0
|
|
7
5
|
*/
|
|
8
6
|
import type { DataClassification } from './dataClassification.js';
|
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Generated by
|
|
3
|
-
* Do not edit manually.
|
|
2
|
+
* Generated by @xemahq/api-client-generator — do not edit manually.
|
|
4
3
|
* Space Registry API
|
|
5
|
-
* Authoritative Space ownership + data-classification plane: Space CRUD, hierarchy, and most-specific-wins classification resolution.
|
|
6
4
|
* OpenAPI spec version: 0.1.0
|
|
7
5
|
*/
|
|
8
6
|
/**
|
|
@@ -1,9 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
/**
|
|
3
|
-
* Generated by
|
|
4
|
-
* Do not edit manually.
|
|
3
|
+
* Generated by @xemahq/api-client-generator — do not edit manually.
|
|
5
4
|
* Space Registry API
|
|
6
|
-
* Authoritative Space ownership + data-classification plane: Space CRUD, hierarchy, and most-specific-wins classification resolution.
|
|
7
5
|
* OpenAPI spec version: 0.1.0
|
|
8
6
|
*/
|
|
9
7
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Generated by
|
|
3
|
-
* Do not edit manually.
|
|
2
|
+
* Generated by @xemahq/api-client-generator — do not edit manually.
|
|
4
3
|
* Space Registry API
|
|
5
|
-
* Authoritative Space ownership + data-classification plane: Space CRUD, hierarchy, and most-specific-wins classification resolution.
|
|
6
4
|
* OpenAPI spec version: 0.1.0
|
|
7
5
|
*/
|
|
8
6
|
/**
|
|
@@ -1,9 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
/**
|
|
3
|
-
* Generated by
|
|
4
|
-
* Do not edit manually.
|
|
3
|
+
* Generated by @xemahq/api-client-generator — do not edit manually.
|
|
5
4
|
* Space Registry API
|
|
6
|
-
* Authoritative Space ownership + data-classification plane: Space CRUD, hierarchy, and most-specific-wins classification resolution.
|
|
7
5
|
* OpenAPI spec version: 0.1.0
|
|
8
6
|
*/
|
|
9
7
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Generated by
|
|
3
|
-
* Do not edit manually.
|
|
2
|
+
* Generated by @xemahq/api-client-generator — do not edit manually.
|
|
4
3
|
* Space Registry API
|
|
5
|
-
* Authoritative Space ownership + data-classification plane: Space CRUD, hierarchy, and most-specific-wins classification resolution.
|
|
6
4
|
* OpenAPI spec version: 0.1.0
|
|
7
5
|
*/
|
|
8
6
|
import type { SpaceDto } from './spaceDto.js';
|
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Generated by
|
|
3
|
-
* Do not edit manually.
|
|
2
|
+
* Generated by @xemahq/api-client-generator — do not edit manually.
|
|
4
3
|
* Space Registry API
|
|
5
|
-
* Authoritative Space ownership + data-classification plane: Space CRUD, hierarchy, and most-specific-wins classification resolution.
|
|
6
4
|
* OpenAPI spec version: 0.1.0
|
|
7
5
|
*/
|
|
8
6
|
import type { SpaceDto } from './spaceDto.js';
|
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Generated by
|
|
3
|
-
* Do not edit manually.
|
|
2
|
+
* Generated by @xemahq/api-client-generator — do not edit manually.
|
|
4
3
|
* Space Registry API
|
|
5
|
-
* Authoritative Space ownership + data-classification plane: Space CRUD, hierarchy, and most-specific-wins classification resolution.
|
|
6
4
|
* OpenAPI spec version: 0.1.0
|
|
7
5
|
*/
|
|
8
6
|
/**
|
|
@@ -1,9 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
/**
|
|
3
|
-
* Generated by
|
|
4
|
-
* Do not edit manually.
|
|
3
|
+
* Generated by @xemahq/api-client-generator — do not edit manually.
|
|
5
4
|
* Space Registry API
|
|
6
|
-
* Authoritative Space ownership + data-classification plane: Space CRUD, hierarchy, and most-specific-wins classification resolution.
|
|
7
5
|
* OpenAPI spec version: 0.1.0
|
|
8
6
|
*/
|
|
9
7
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Generated by
|
|
3
|
-
* Do not edit manually.
|
|
2
|
+
* Generated by @xemahq/api-client-generator — do not edit manually.
|
|
4
3
|
* Space Registry API
|
|
5
|
-
* Authoritative Space ownership + data-classification plane: Space CRUD, hierarchy, and most-specific-wins classification resolution.
|
|
6
4
|
* OpenAPI spec version: 0.1.0
|
|
7
5
|
*/
|
|
8
6
|
/**
|
|
@@ -1,9 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
/**
|
|
3
|
-
* Generated by
|
|
4
|
-
* Do not edit manually.
|
|
3
|
+
* Generated by @xemahq/api-client-generator — do not edit manually.
|
|
5
4
|
* Space Registry API
|
|
6
|
-
* Authoritative Space ownership + data-classification plane: Space CRUD, hierarchy, and most-specific-wins classification resolution.
|
|
7
5
|
* OpenAPI spec version: 0.1.0
|
|
8
6
|
*/
|
|
9
7
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Generated by
|
|
3
|
-
* Do not edit manually.
|
|
2
|
+
* Generated by @xemahq/api-client-generator — do not edit manually.
|
|
4
3
|
* Space Registry API
|
|
5
|
-
* Authoritative Space ownership + data-classification plane: Space CRUD, hierarchy, and most-specific-wins classification resolution.
|
|
6
4
|
* OpenAPI spec version: 0.1.0
|
|
7
5
|
*/
|
|
8
6
|
/**
|
|
@@ -1,9 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
/**
|
|
3
|
-
* Generated by
|
|
4
|
-
* Do not edit manually.
|
|
3
|
+
* Generated by @xemahq/api-client-generator — do not edit manually.
|
|
5
4
|
* Space Registry API
|
|
6
|
-
* Authoritative Space ownership + data-classification plane: Space CRUD, hierarchy, and most-specific-wins classification resolution.
|
|
7
5
|
* OpenAPI spec version: 0.1.0
|
|
8
6
|
*/
|
|
9
7
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Generated by
|
|
3
|
-
* Do not edit manually.
|
|
2
|
+
* Generated by @xemahq/api-client-generator — do not edit manually.
|
|
4
3
|
* Space Registry API
|
|
5
|
-
* Authoritative Space ownership + data-classification plane: Space CRUD, hierarchy, and most-specific-wins classification resolution.
|
|
6
4
|
* OpenAPI spec version: 0.1.0
|
|
7
5
|
*/
|
|
8
6
|
/**
|
|
@@ -1,9 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
/**
|
|
3
|
-
* Generated by
|
|
4
|
-
* Do not edit manually.
|
|
3
|
+
* Generated by @xemahq/api-client-generator — do not edit manually.
|
|
5
4
|
* Space Registry API
|
|
6
|
-
* Authoritative Space ownership + data-classification plane: Space CRUD, hierarchy, and most-specific-wins classification resolution.
|
|
7
5
|
* OpenAPI spec version: 0.1.0
|
|
8
6
|
*/
|
|
9
7
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Generated by
|
|
3
|
-
* Do not edit manually.
|
|
2
|
+
* Generated by @xemahq/api-client-generator — do not edit manually.
|
|
4
3
|
* Space Registry API
|
|
5
|
-
* Authoritative Space ownership + data-classification plane: Space CRUD, hierarchy, and most-specific-wins classification resolution.
|
|
6
4
|
* OpenAPI spec version: 0.1.0
|
|
7
5
|
*/
|
|
8
6
|
/**
|
|
@@ -1,9 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
/**
|
|
3
|
-
* Generated by
|
|
4
|
-
* Do not edit manually.
|
|
3
|
+
* Generated by @xemahq/api-client-generator — do not edit manually.
|
|
5
4
|
* Space Registry API
|
|
6
|
-
* Authoritative Space ownership + data-classification plane: Space CRUD, hierarchy, and most-specific-wins classification resolution.
|
|
7
5
|
* OpenAPI spec version: 0.1.0
|
|
8
6
|
*/
|
|
9
7
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Generated by
|
|
3
|
-
* Do not edit manually.
|
|
2
|
+
* Generated by @xemahq/api-client-generator — do not edit manually.
|
|
4
3
|
* Space Registry API
|
|
5
|
-
* Authoritative Space ownership + data-classification plane: Space CRUD, hierarchy, and most-specific-wins classification resolution.
|
|
6
4
|
* OpenAPI spec version: 0.1.0
|
|
7
5
|
*/
|
|
8
6
|
/**
|
|
@@ -1,9 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
/**
|
|
3
|
-
* Generated by
|
|
4
|
-
* Do not edit manually.
|
|
3
|
+
* Generated by @xemahq/api-client-generator — do not edit manually.
|
|
5
4
|
* Space Registry API
|
|
6
|
-
* Authoritative Space ownership + data-classification plane: Space CRUD, hierarchy, and most-specific-wins classification resolution.
|
|
7
5
|
* OpenAPI spec version: 0.1.0
|
|
8
6
|
*/
|
|
9
7
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Generated by
|
|
3
|
-
* Do not edit manually.
|
|
2
|
+
* Generated by @xemahq/api-client-generator — do not edit manually.
|
|
4
3
|
* Space Registry API
|
|
5
|
-
* Authoritative Space ownership + data-classification plane: Space CRUD, hierarchy, and most-specific-wins classification resolution.
|
|
6
4
|
* OpenAPI spec version: 0.1.0
|
|
7
5
|
*/
|
|
8
6
|
export type SpaceKind = typeof SpaceKind[keyof typeof SpaceKind];
|
package/dist/models/spaceKind.js
CHANGED
|
@@ -1,9 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
/**
|
|
3
|
-
* Generated by
|
|
4
|
-
* Do not edit manually.
|
|
3
|
+
* Generated by @xemahq/api-client-generator — do not edit manually.
|
|
5
4
|
* Space Registry API
|
|
6
|
-
* Authoritative Space ownership + data-classification plane: Space CRUD, hierarchy, and most-specific-wins classification resolution.
|
|
7
5
|
* OpenAPI spec version: 0.1.0
|
|
8
6
|
*/
|
|
9
7
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Generated by
|
|
3
|
-
* Do not edit manually.
|
|
2
|
+
* Generated by @xemahq/api-client-generator — do not edit manually.
|
|
4
3
|
* Space Registry API
|
|
5
|
-
* Authoritative Space ownership + data-classification plane: Space CRUD, hierarchy, and most-specific-wins classification resolution.
|
|
6
4
|
* OpenAPI spec version: 0.1.0
|
|
7
5
|
*/
|
|
8
6
|
export type SpacesControllerAncestorsParams = {
|
|
@@ -1,9 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
/**
|
|
3
|
-
* Generated by
|
|
4
|
-
* Do not edit manually.
|
|
3
|
+
* Generated by @xemahq/api-client-generator — do not edit manually.
|
|
5
4
|
* Space Registry API
|
|
6
|
-
* Authoritative Space ownership + data-classification plane: Space CRUD, hierarchy, and most-specific-wins classification resolution.
|
|
7
5
|
* OpenAPI spec version: 0.1.0
|
|
8
6
|
*/
|
|
9
7
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Generated by
|
|
3
|
-
* Do not edit manually.
|
|
2
|
+
* Generated by @xemahq/api-client-generator — do not edit manually.
|
|
4
3
|
* Space Registry API
|
|
5
|
-
* Authoritative Space ownership + data-classification plane: Space CRUD, hierarchy, and most-specific-wins classification resolution.
|
|
6
4
|
* OpenAPI spec version: 0.1.0
|
|
7
5
|
*/
|
|
8
6
|
export type SpacesControllerClassificationParams = {
|
|
@@ -1,9 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
/**
|
|
3
|
-
* Generated by
|
|
4
|
-
* Do not edit manually.
|
|
3
|
+
* Generated by @xemahq/api-client-generator — do not edit manually.
|
|
5
4
|
* Space Registry API
|
|
6
|
-
* Authoritative Space ownership + data-classification plane: Space CRUD, hierarchy, and most-specific-wins classification resolution.
|
|
7
5
|
* OpenAPI spec version: 0.1.0
|
|
8
6
|
*/
|
|
9
7
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Generated by
|
|
3
|
-
* Do not edit manually.
|
|
2
|
+
* Generated by @xemahq/api-client-generator — do not edit manually.
|
|
4
3
|
* Space Registry API
|
|
5
|
-
* Authoritative Space ownership + data-classification plane: Space CRUD, hierarchy, and most-specific-wins classification resolution.
|
|
6
4
|
* OpenAPI spec version: 0.1.0
|
|
7
5
|
*/
|
|
8
6
|
export type SpacesControllerListParams = {
|
|
@@ -1,9 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
/**
|
|
3
|
-
* Generated by
|
|
4
|
-
* Do not edit manually.
|
|
3
|
+
* Generated by @xemahq/api-client-generator — do not edit manually.
|
|
5
4
|
* Space Registry API
|
|
6
|
-
* Authoritative Space ownership + data-classification plane: Space CRUD, hierarchy, and most-specific-wins classification resolution.
|
|
7
5
|
* OpenAPI spec version: 0.1.0
|
|
8
6
|
*/
|
|
9
7
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Generated by
|
|
3
|
-
* Do not edit manually.
|
|
2
|
+
* Generated by @xemahq/api-client-generator — do not edit manually.
|
|
4
3
|
* Space Registry API
|
|
5
|
-
* Authoritative Space ownership + data-classification plane: Space CRUD, hierarchy, and most-specific-wins classification resolution.
|
|
6
4
|
* OpenAPI spec version: 0.1.0
|
|
7
5
|
*/
|
|
8
6
|
export type SpacesControllerResolveParams = {
|
|
@@ -1,9 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
/**
|
|
3
|
-
* Generated by
|
|
4
|
-
* Do not edit manually.
|
|
3
|
+
* Generated by @xemahq/api-client-generator — do not edit manually.
|
|
5
4
|
* Space Registry API
|
|
6
|
-
* Authoritative Space ownership + data-classification plane: Space CRUD, hierarchy, and most-specific-wins classification resolution.
|
|
7
5
|
* OpenAPI spec version: 0.1.0
|
|
8
6
|
*/
|
|
9
7
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Generated by
|
|
3
|
-
* Do not edit manually.
|
|
2
|
+
* Generated by @xemahq/api-client-generator — do not edit manually.
|
|
4
3
|
* Space Registry API
|
|
5
|
-
* Authoritative Space ownership + data-classification plane: Space CRUD, hierarchy, and most-specific-wins classification resolution.
|
|
6
4
|
* OpenAPI spec version: 0.1.0
|
|
7
5
|
*/
|
|
8
6
|
import type { DataClassification } from './dataClassification.js';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xemahq/space-registry-api-client",
|
|
3
|
-
"version": "0.1
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"main": "./dist/index.js",
|
|
5
5
|
"types": "./dist/index.d.ts",
|
|
6
6
|
"files": [
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"service": "space-registry-api",
|
|
20
20
|
"biome": "space-registry",
|
|
21
21
|
"target": "server",
|
|
22
|
-
"generator": "@xemahq/api-client-generator@0.
|
|
22
|
+
"generator": "@xemahq/api-client-generator@0.5.0",
|
|
23
23
|
"source": "openapi.public.json"
|
|
24
24
|
},
|
|
25
25
|
"license": "LicenseRef-Xema-BSL-1.1",
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"bugs": "https://github.com/xema-dev/xema-community/issues",
|
|
29
29
|
"repository": {
|
|
30
30
|
"type": "git",
|
|
31
|
-
"url": "git+https://github.com/xema-dev/xema-
|
|
31
|
+
"url": "git+https://github.com/xema-dev/xema-base.git",
|
|
32
32
|
"directory": "packages/clients/space-registry-api"
|
|
33
33
|
},
|
|
34
34
|
"description": "Generated public API client for the Xema space-registry-api service.",
|