@xemahq/space-registry-api-client 0.1.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.
- package/LICENSE +201 -0
- package/dist/custom-fetch.d.ts +52 -0
- package/dist/custom-fetch.js +152 -0
- package/dist/endpoints/health/health.d.ts +15 -0
- package/dist/endpoints/health/health.js +53 -0
- package/dist/endpoints/spaces/spaces.d.ts +38 -0
- package/dist/endpoints/spaces/spaces.js +149 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +25 -0
- package/dist/models/createSpaceDto.d.ts +20 -0
- package/dist/models/createSpaceDto.js +2 -0
- package/dist/models/createSpaceDtoLabels.d.ts +10 -0
- package/dist/models/createSpaceDtoLabels.js +9 -0
- package/dist/models/dataClassification.d.ts +18 -0
- package/dist/models/dataClassification.js +17 -0
- package/dist/models/index.d.ts +20 -0
- package/dist/models/index.js +37 -0
- package/dist/models/spaceAncestorsDto.d.ts +14 -0
- package/dist/models/spaceAncestorsDto.js +2 -0
- package/dist/models/spaceClassificationDto.d.ts +20 -0
- package/dist/models/spaceClassificationDto.js +2 -0
- package/dist/models/spaceClassificationDtoResolvedFromRefUri.d.ts +14 -0
- package/dist/models/spaceClassificationDtoResolvedFromRefUri.js +9 -0
- package/dist/models/spaceDto.d.ts +48 -0
- package/dist/models/spaceDto.js +2 -0
- package/dist/models/spaceDtoAppId.d.ts +13 -0
- package/dist/models/spaceDtoAppId.js +9 -0
- package/dist/models/spaceDtoBiomeId.d.ts +13 -0
- package/dist/models/spaceDtoBiomeId.js +9 -0
- package/dist/models/spaceDtoLabels.d.ts +13 -0
- package/dist/models/spaceDtoLabels.js +9 -0
- package/dist/models/spaceDtoOrgId.d.ts +13 -0
- package/dist/models/spaceDtoOrgId.js +9 -0
- package/dist/models/spaceDtoParentId.d.ts +14 -0
- package/dist/models/spaceDtoParentId.js +9 -0
- package/dist/models/spaceDtoProjectId.d.ts +13 -0
- package/dist/models/spaceDtoProjectId.js +9 -0
- package/dist/models/spaceDtoSessionId.d.ts +13 -0
- package/dist/models/spaceDtoSessionId.js +9 -0
- package/dist/models/spaceDtoUserId.d.ts +13 -0
- package/dist/models/spaceDtoUserId.js +9 -0
- package/dist/models/spaceKind.d.ts +17 -0
- package/dist/models/spaceKind.js +19 -0
- package/dist/models/spacesControllerAncestorsParams.d.ts +10 -0
- package/dist/models/spacesControllerAncestorsParams.js +9 -0
- package/dist/models/spacesControllerClassificationParams.d.ts +10 -0
- package/dist/models/spacesControllerClassificationParams.js +9 -0
- package/dist/models/spacesControllerResolveParams.d.ts +10 -0
- package/dist/models/spacesControllerResolveParams.js +9 -0
- package/dist/models/updateClassificationDto.d.ts +15 -0
- package/dist/models/updateClassificationDto.js +2 -0
- package/package.json +27 -0
package/package.json
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@xemahq/space-registry-api-client",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"main": "./dist/index.js",
|
|
5
|
+
"types": "./dist/index.d.ts",
|
|
6
|
+
"files": [
|
|
7
|
+
"dist"
|
|
8
|
+
],
|
|
9
|
+
"publishConfig": {
|
|
10
|
+
"registry": "https://npm.pkg.github.com"
|
|
11
|
+
},
|
|
12
|
+
"devDependencies": {
|
|
13
|
+
"typescript": "5.9.3"
|
|
14
|
+
},
|
|
15
|
+
"xema": {
|
|
16
|
+
"kind": "api-client",
|
|
17
|
+
"surface": "public",
|
|
18
|
+
"service": "space-registry-api",
|
|
19
|
+
"biome": "space-registry",
|
|
20
|
+
"target": "server",
|
|
21
|
+
"generator": "@xemahq/api-client-generator@0.1.0",
|
|
22
|
+
"source": "openapi.public.json"
|
|
23
|
+
},
|
|
24
|
+
"scripts": {
|
|
25
|
+
"build": "tsc -p tsconfig.json"
|
|
26
|
+
}
|
|
27
|
+
}
|