@ce-rise/hex-core-sdk-typescript 0.0.1 → 0.0.4
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/README.md +1 -1
- package/dist/src/apis/AdminApi.d.ts +22 -2
- package/dist/src/apis/AdminApi.js +47 -1
- package/dist/src/apis/AdminApi.js.map +1 -1
- package/dist/src/apis/DiscoveryApi.d.ts +1 -1
- package/dist/src/apis/DiscoveryApi.js +1 -1
- package/dist/src/apis/ModelsApi.d.ts +1 -1
- package/dist/src/apis/ModelsApi.js +1 -1
- package/dist/src/models/CreateRequest.d.ts +1 -1
- package/dist/src/models/CreateRequest.js +1 -1
- package/dist/src/models/ErrorResponse.d.ts +1 -1
- package/dist/src/models/ErrorResponse.js +1 -1
- package/dist/src/models/HealthResponse.d.ts +1 -1
- package/dist/src/models/HealthResponse.js +1 -1
- package/dist/src/models/ModelCountResponse.d.ts +32 -0
- package/dist/src/models/ModelCountResponse.js +51 -0
- package/dist/src/models/ModelCountResponse.js.map +1 -0
- package/dist/src/models/ModelVersion.d.ts +1 -1
- package/dist/src/models/ModelVersion.js +1 -1
- package/dist/src/models/ModelsResponse.d.ts +1 -1
- package/dist/src/models/ModelsResponse.js +1 -1
- package/dist/src/models/QueryRequest.d.ts +1 -1
- package/dist/src/models/QueryRequest.js +1 -1
- package/dist/src/models/QueryResponse.d.ts +1 -1
- package/dist/src/models/QueryResponse.js +1 -1
- package/dist/src/models/ReadyResponse.d.ts +1 -1
- package/dist/src/models/ReadyResponse.js +1 -1
- package/dist/src/models/Record.d.ts +1 -1
- package/dist/src/models/Record.js +1 -1
- package/dist/src/models/ValidateRequest.d.ts +1 -1
- package/dist/src/models/ValidateRequest.js +1 -1
- package/dist/src/models/ValidationReport.d.ts +1 -1
- package/dist/src/models/ValidationReport.js +1 -1
- package/dist/src/models/ValidationResult.d.ts +1 -1
- package/dist/src/models/ValidationResult.js +1 -1
- package/dist/src/models/VersionResponse.d.ts +44 -0
- package/dist/src/models/VersionResponse.js +59 -0
- package/dist/src/models/VersionResponse.js.map +1 -0
- package/dist/src/models/index.d.ts +2 -0
- package/dist/src/models/index.js +2 -0
- package/dist/src/models/index.js.map +1 -1
- package/dist/src/runtime.d.ts +1 -1
- package/dist/src/runtime.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# CE-RISE TypeScript Software Development Kit for Hexagonal Core Service
|
|
2
2
|
|
|
3
3
|
[](https://www.npmjs.com/package/@ce-rise/hex-core-sdk-typescript)
|
|
4
|
-
[](https://doi.org/10.5281/zenodo.18954440)
|
|
5
5
|
|
|
6
6
|
A TypeScript SDK for the CE-RISE Hex Core Service:
|
|
7
7
|
https://codeberg.org/CE-RISE-software/hex-core-service
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* CE-RISE Hex Core Service API
|
|
3
3
|
* Public and admin API for validating, creating, and querying records against versioned CE-RISE model artifacts.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 0.0.
|
|
5
|
+
* The version of the OpenAPI document: 0.0.4
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
import * as runtime from '../runtime';
|
|
13
|
-
import type { HealthResponse, ReadyResponse } from '../models/index';
|
|
13
|
+
import type { HealthResponse, ModelCountResponse, ReadyResponse, VersionResponse } from '../models/index';
|
|
14
14
|
/**
|
|
15
15
|
*
|
|
16
16
|
*/
|
|
@@ -35,6 +35,16 @@ export declare class AdminApi extends runtime.BaseAPI {
|
|
|
35
35
|
* Prometheus metrics
|
|
36
36
|
*/
|
|
37
37
|
metrics(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<string>;
|
|
38
|
+
/**
|
|
39
|
+
* Returns the number of model/version entries currently loaded in the active registry index.
|
|
40
|
+
* Current model count
|
|
41
|
+
*/
|
|
42
|
+
modelsCountRaw(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<ModelCountResponse>>;
|
|
43
|
+
/**
|
|
44
|
+
* Returns the number of model/version entries currently loaded in the active registry index.
|
|
45
|
+
* Current model count
|
|
46
|
+
*/
|
|
47
|
+
modelsCount(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ModelCountResponse>;
|
|
38
48
|
/**
|
|
39
49
|
* Returns readiness based on runtime adapter and registry state.
|
|
40
50
|
* Readiness probe
|
|
@@ -59,4 +69,14 @@ export declare class AdminApi extends runtime.BaseAPI {
|
|
|
59
69
|
status(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<{
|
|
60
70
|
[key: string]: any;
|
|
61
71
|
}>;
|
|
72
|
+
/**
|
|
73
|
+
* Returns running service version and bundled OpenAPI specification version.
|
|
74
|
+
* Service and OpenAPI version
|
|
75
|
+
*/
|
|
76
|
+
versionRaw(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<VersionResponse>>;
|
|
77
|
+
/**
|
|
78
|
+
* Returns running service version and bundled OpenAPI specification version.
|
|
79
|
+
* Service and OpenAPI version
|
|
80
|
+
*/
|
|
81
|
+
version(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<VersionResponse>;
|
|
62
82
|
}
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* CE-RISE Hex Core Service API
|
|
6
6
|
* Public and admin API for validating, creating, and querying records against versioned CE-RISE model artifacts.
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 0.0.
|
|
8
|
+
* The version of the OpenAPI document: 0.0.4
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -104,6 +104,29 @@ class AdminApi extends runtime.BaseAPI {
|
|
|
104
104
|
const response = await this.metricsRaw(initOverrides);
|
|
105
105
|
return await response.value();
|
|
106
106
|
}
|
|
107
|
+
/**
|
|
108
|
+
* Returns the number of model/version entries currently loaded in the active registry index.
|
|
109
|
+
* Current model count
|
|
110
|
+
*/
|
|
111
|
+
async modelsCountRaw(initOverrides) {
|
|
112
|
+
const queryParameters = {};
|
|
113
|
+
const headerParameters = {};
|
|
114
|
+
const response = await this.request({
|
|
115
|
+
path: `/admin/models/count`,
|
|
116
|
+
method: 'GET',
|
|
117
|
+
headers: headerParameters,
|
|
118
|
+
query: queryParameters,
|
|
119
|
+
}, initOverrides);
|
|
120
|
+
return new runtime.JSONApiResponse(response, (jsonValue) => (0, index_1.ModelCountResponseFromJSON)(jsonValue));
|
|
121
|
+
}
|
|
122
|
+
/**
|
|
123
|
+
* Returns the number of model/version entries currently loaded in the active registry index.
|
|
124
|
+
* Current model count
|
|
125
|
+
*/
|
|
126
|
+
async modelsCount(initOverrides) {
|
|
127
|
+
const response = await this.modelsCountRaw(initOverrides);
|
|
128
|
+
return await response.value();
|
|
129
|
+
}
|
|
107
130
|
/**
|
|
108
131
|
* Returns readiness based on runtime adapter and registry state.
|
|
109
132
|
* Readiness probe
|
|
@@ -157,6 +180,29 @@ class AdminApi extends runtime.BaseAPI {
|
|
|
157
180
|
const response = await this.statusRaw(initOverrides);
|
|
158
181
|
return await response.value();
|
|
159
182
|
}
|
|
183
|
+
/**
|
|
184
|
+
* Returns running service version and bundled OpenAPI specification version.
|
|
185
|
+
* Service and OpenAPI version
|
|
186
|
+
*/
|
|
187
|
+
async versionRaw(initOverrides) {
|
|
188
|
+
const queryParameters = {};
|
|
189
|
+
const headerParameters = {};
|
|
190
|
+
const response = await this.request({
|
|
191
|
+
path: `/admin/version`,
|
|
192
|
+
method: 'GET',
|
|
193
|
+
headers: headerParameters,
|
|
194
|
+
query: queryParameters,
|
|
195
|
+
}, initOverrides);
|
|
196
|
+
return new runtime.JSONApiResponse(response, (jsonValue) => (0, index_1.VersionResponseFromJSON)(jsonValue));
|
|
197
|
+
}
|
|
198
|
+
/**
|
|
199
|
+
* Returns running service version and bundled OpenAPI specification version.
|
|
200
|
+
* Service and OpenAPI version
|
|
201
|
+
*/
|
|
202
|
+
async version(initOverrides) {
|
|
203
|
+
const response = await this.versionRaw(initOverrides);
|
|
204
|
+
return await response.value();
|
|
205
|
+
}
|
|
160
206
|
}
|
|
161
207
|
exports.AdminApi = AdminApi;
|
|
162
208
|
//# sourceMappingURL=AdminApi.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"AdminApi.js","sourceRoot":"","sources":["../../../src/apis/AdminApi.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAGH,oDAAsC;
|
|
1
|
+
{"version":3,"file":"AdminApi.js","sourceRoot":"","sources":["../../../src/apis/AdminApi.ts"],"names":[],"mappings":"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"}
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* CE-RISE Hex Core Service API
|
|
3
3
|
* Public and admin API for validating, creating, and querying records against versioned CE-RISE model artifacts.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 0.0.
|
|
5
|
+
* The version of the OpenAPI document: 0.0.4
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* CE-RISE Hex Core Service API
|
|
6
6
|
* Public and admin API for validating, creating, and querying records against versioned CE-RISE model artifacts.
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 0.0.
|
|
8
|
+
* The version of the OpenAPI document: 0.0.4
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* CE-RISE Hex Core Service API
|
|
3
3
|
* Public and admin API for validating, creating, and querying records against versioned CE-RISE model artifacts.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 0.0.
|
|
5
|
+
* The version of the OpenAPI document: 0.0.4
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* CE-RISE Hex Core Service API
|
|
6
6
|
* Public and admin API for validating, creating, and querying records against versioned CE-RISE model artifacts.
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 0.0.
|
|
8
|
+
* The version of the OpenAPI document: 0.0.4
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* CE-RISE Hex Core Service API
|
|
3
3
|
* Public and admin API for validating, creating, and querying records against versioned CE-RISE model artifacts.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 0.0.
|
|
5
|
+
* The version of the OpenAPI document: 0.0.4
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* CE-RISE Hex Core Service API
|
|
6
6
|
* Public and admin API for validating, creating, and querying records against versioned CE-RISE model artifacts.
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 0.0.
|
|
8
|
+
* The version of the OpenAPI document: 0.0.4
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* CE-RISE Hex Core Service API
|
|
3
3
|
* Public and admin API for validating, creating, and querying records against versioned CE-RISE model artifacts.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 0.0.
|
|
5
|
+
* The version of the OpenAPI document: 0.0.4
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* CE-RISE Hex Core Service API
|
|
6
6
|
* Public and admin API for validating, creating, and querying records against versioned CE-RISE model artifacts.
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 0.0.
|
|
8
|
+
* The version of the OpenAPI document: 0.0.4
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* CE-RISE Hex Core Service API
|
|
3
3
|
* Public and admin API for validating, creating, and querying records against versioned CE-RISE model artifacts.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 0.0.
|
|
5
|
+
* The version of the OpenAPI document: 0.0.4
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* CE-RISE Hex Core Service API
|
|
6
6
|
* Public and admin API for validating, creating, and querying records against versioned CE-RISE model artifacts.
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 0.0.
|
|
8
|
+
* The version of the OpenAPI document: 0.0.4
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* CE-RISE Hex Core Service API
|
|
3
|
+
* Public and admin API for validating, creating, and querying records against versioned CE-RISE model artifacts.
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 0.0.4
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface ModelCountResponse
|
|
16
|
+
*/
|
|
17
|
+
export interface ModelCountResponse {
|
|
18
|
+
/**
|
|
19
|
+
* Number of models currently indexed by the registry.
|
|
20
|
+
* @type {number}
|
|
21
|
+
* @memberof ModelCountResponse
|
|
22
|
+
*/
|
|
23
|
+
modelsCount: number;
|
|
24
|
+
}
|
|
25
|
+
/**
|
|
26
|
+
* Check if a given object implements the ModelCountResponse interface.
|
|
27
|
+
*/
|
|
28
|
+
export declare function instanceOfModelCountResponse(value: object): value is ModelCountResponse;
|
|
29
|
+
export declare function ModelCountResponseFromJSON(json: any): ModelCountResponse;
|
|
30
|
+
export declare function ModelCountResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ModelCountResponse;
|
|
31
|
+
export declare function ModelCountResponseToJSON(json: any): ModelCountResponse;
|
|
32
|
+
export declare function ModelCountResponseToJSONTyped(value?: ModelCountResponse | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* CE-RISE Hex Core Service API
|
|
6
|
+
* Public and admin API for validating, creating, and querying records against versioned CE-RISE model artifacts.
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 0.0.4
|
|
9
|
+
*
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.instanceOfModelCountResponse = instanceOfModelCountResponse;
|
|
17
|
+
exports.ModelCountResponseFromJSON = ModelCountResponseFromJSON;
|
|
18
|
+
exports.ModelCountResponseFromJSONTyped = ModelCountResponseFromJSONTyped;
|
|
19
|
+
exports.ModelCountResponseToJSON = ModelCountResponseToJSON;
|
|
20
|
+
exports.ModelCountResponseToJSONTyped = ModelCountResponseToJSONTyped;
|
|
21
|
+
/**
|
|
22
|
+
* Check if a given object implements the ModelCountResponse interface.
|
|
23
|
+
*/
|
|
24
|
+
function instanceOfModelCountResponse(value) {
|
|
25
|
+
if (!('modelsCount' in value) || value['modelsCount'] === undefined)
|
|
26
|
+
return false;
|
|
27
|
+
return true;
|
|
28
|
+
}
|
|
29
|
+
function ModelCountResponseFromJSON(json) {
|
|
30
|
+
return ModelCountResponseFromJSONTyped(json, false);
|
|
31
|
+
}
|
|
32
|
+
function ModelCountResponseFromJSONTyped(json, ignoreDiscriminator) {
|
|
33
|
+
if (json == null) {
|
|
34
|
+
return json;
|
|
35
|
+
}
|
|
36
|
+
return {
|
|
37
|
+
'modelsCount': json['models_count'],
|
|
38
|
+
};
|
|
39
|
+
}
|
|
40
|
+
function ModelCountResponseToJSON(json) {
|
|
41
|
+
return ModelCountResponseToJSONTyped(json, false);
|
|
42
|
+
}
|
|
43
|
+
function ModelCountResponseToJSONTyped(value, ignoreDiscriminator = false) {
|
|
44
|
+
if (value == null) {
|
|
45
|
+
return value;
|
|
46
|
+
}
|
|
47
|
+
return {
|
|
48
|
+
'models_count': value['modelsCount'],
|
|
49
|
+
};
|
|
50
|
+
}
|
|
51
|
+
//# sourceMappingURL=ModelCountResponse.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ModelCountResponse.js","sourceRoot":"","sources":["../../../src/models/ModelCountResponse.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG;;AAoBH,oEAGC;AAED,gEAEC;AAED,0EAQC;AAED,4DAEC;AAED,sEASC;AAnCD;;GAEG;AACH,SAAgB,4BAA4B,CAAC,KAAa;IACtD,IAAI,CAAC,CAAC,aAAa,IAAI,KAAK,CAAC,IAAI,KAAK,CAAC,aAAa,CAAC,KAAK,SAAS;QAAE,OAAO,KAAK,CAAC;IAClF,OAAO,IAAI,CAAC;AAChB,CAAC;AAED,SAAgB,0BAA0B,CAAC,IAAS;IAChD,OAAO,+BAA+B,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;AACxD,CAAC;AAED,SAAgB,+BAA+B,CAAC,IAAS,EAAE,mBAA4B;IACnF,IAAI,IAAI,IAAI,IAAI,EAAE,CAAC;QACf,OAAO,IAAI,CAAC;IAChB,CAAC;IACD,OAAO;QAEH,aAAa,EAAE,IAAI,CAAC,cAAc,CAAC;KACtC,CAAC;AACN,CAAC;AAED,SAAgB,wBAAwB,CAAC,IAAS;IAC9C,OAAO,6BAA6B,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;AACtD,CAAC;AAED,SAAgB,6BAA6B,CAAC,KAAiC,EAAE,sBAA+B,KAAK;IACjH,IAAI,KAAK,IAAI,IAAI,EAAE,CAAC;QAChB,OAAO,KAAK,CAAC;IACjB,CAAC;IAED,OAAO;QAEH,cAAc,EAAE,KAAK,CAAC,aAAa,CAAC;KACvC,CAAC;AACN,CAAC"}
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* CE-RISE Hex Core Service API
|
|
3
3
|
* Public and admin API for validating, creating, and querying records against versioned CE-RISE model artifacts.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 0.0.
|
|
5
|
+
* The version of the OpenAPI document: 0.0.4
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* CE-RISE Hex Core Service API
|
|
6
6
|
* Public and admin API for validating, creating, and querying records against versioned CE-RISE model artifacts.
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 0.0.
|
|
8
|
+
* The version of the OpenAPI document: 0.0.4
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* CE-RISE Hex Core Service API
|
|
3
3
|
* Public and admin API for validating, creating, and querying records against versioned CE-RISE model artifacts.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 0.0.
|
|
5
|
+
* The version of the OpenAPI document: 0.0.4
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* CE-RISE Hex Core Service API
|
|
6
6
|
* Public and admin API for validating, creating, and querying records against versioned CE-RISE model artifacts.
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 0.0.
|
|
8
|
+
* The version of the OpenAPI document: 0.0.4
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* CE-RISE Hex Core Service API
|
|
3
3
|
* Public and admin API for validating, creating, and querying records against versioned CE-RISE model artifacts.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 0.0.
|
|
5
|
+
* The version of the OpenAPI document: 0.0.4
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* CE-RISE Hex Core Service API
|
|
6
6
|
* Public and admin API for validating, creating, and querying records against versioned CE-RISE model artifacts.
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 0.0.
|
|
8
|
+
* The version of the OpenAPI document: 0.0.4
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* CE-RISE Hex Core Service API
|
|
3
3
|
* Public and admin API for validating, creating, and querying records against versioned CE-RISE model artifacts.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 0.0.
|
|
5
|
+
* The version of the OpenAPI document: 0.0.4
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* CE-RISE Hex Core Service API
|
|
6
6
|
* Public and admin API for validating, creating, and querying records against versioned CE-RISE model artifacts.
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 0.0.
|
|
8
|
+
* The version of the OpenAPI document: 0.0.4
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* CE-RISE Hex Core Service API
|
|
3
3
|
* Public and admin API for validating, creating, and querying records against versioned CE-RISE model artifacts.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 0.0.
|
|
5
|
+
* The version of the OpenAPI document: 0.0.4
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* CE-RISE Hex Core Service API
|
|
6
6
|
* Public and admin API for validating, creating, and querying records against versioned CE-RISE model artifacts.
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 0.0.
|
|
8
|
+
* The version of the OpenAPI document: 0.0.4
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* CE-RISE Hex Core Service API
|
|
3
3
|
* Public and admin API for validating, creating, and querying records against versioned CE-RISE model artifacts.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 0.0.
|
|
5
|
+
* The version of the OpenAPI document: 0.0.4
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* CE-RISE Hex Core Service API
|
|
6
6
|
* Public and admin API for validating, creating, and querying records against versioned CE-RISE model artifacts.
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 0.0.
|
|
8
|
+
* The version of the OpenAPI document: 0.0.4
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* CE-RISE Hex Core Service API
|
|
3
3
|
* Public and admin API for validating, creating, and querying records against versioned CE-RISE model artifacts.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 0.0.
|
|
5
|
+
* The version of the OpenAPI document: 0.0.4
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* CE-RISE Hex Core Service API
|
|
6
6
|
* Public and admin API for validating, creating, and querying records against versioned CE-RISE model artifacts.
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 0.0.
|
|
8
|
+
* The version of the OpenAPI document: 0.0.4
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* CE-RISE Hex Core Service API
|
|
3
3
|
* Public and admin API for validating, creating, and querying records against versioned CE-RISE model artifacts.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 0.0.
|
|
5
|
+
* The version of the OpenAPI document: 0.0.4
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* CE-RISE Hex Core Service API
|
|
6
6
|
* Public and admin API for validating, creating, and querying records against versioned CE-RISE model artifacts.
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 0.0.
|
|
8
|
+
* The version of the OpenAPI document: 0.0.4
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* CE-RISE Hex Core Service API
|
|
3
3
|
* Public and admin API for validating, creating, and querying records against versioned CE-RISE model artifacts.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 0.0.
|
|
5
|
+
* The version of the OpenAPI document: 0.0.4
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* CE-RISE Hex Core Service API
|
|
6
6
|
* Public and admin API for validating, creating, and querying records against versioned CE-RISE model artifacts.
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 0.0.
|
|
8
|
+
* The version of the OpenAPI document: 0.0.4
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* CE-RISE Hex Core Service API
|
|
3
|
+
* Public and admin API for validating, creating, and querying records against versioned CE-RISE model artifacts.
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 0.0.4
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface VersionResponse
|
|
16
|
+
*/
|
|
17
|
+
export interface VersionResponse {
|
|
18
|
+
/**
|
|
19
|
+
* Stable service identifier.
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof VersionResponse
|
|
22
|
+
*/
|
|
23
|
+
service: string;
|
|
24
|
+
/**
|
|
25
|
+
* Running service build version from crate metadata.
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof VersionResponse
|
|
28
|
+
*/
|
|
29
|
+
serviceVersion: string;
|
|
30
|
+
/**
|
|
31
|
+
* Bundled OpenAPI document version from info.version.
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof VersionResponse
|
|
34
|
+
*/
|
|
35
|
+
openapiVersion: string;
|
|
36
|
+
}
|
|
37
|
+
/**
|
|
38
|
+
* Check if a given object implements the VersionResponse interface.
|
|
39
|
+
*/
|
|
40
|
+
export declare function instanceOfVersionResponse(value: object): value is VersionResponse;
|
|
41
|
+
export declare function VersionResponseFromJSON(json: any): VersionResponse;
|
|
42
|
+
export declare function VersionResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): VersionResponse;
|
|
43
|
+
export declare function VersionResponseToJSON(json: any): VersionResponse;
|
|
44
|
+
export declare function VersionResponseToJSONTyped(value?: VersionResponse | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* CE-RISE Hex Core Service API
|
|
6
|
+
* Public and admin API for validating, creating, and querying records against versioned CE-RISE model artifacts.
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 0.0.4
|
|
9
|
+
*
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.instanceOfVersionResponse = instanceOfVersionResponse;
|
|
17
|
+
exports.VersionResponseFromJSON = VersionResponseFromJSON;
|
|
18
|
+
exports.VersionResponseFromJSONTyped = VersionResponseFromJSONTyped;
|
|
19
|
+
exports.VersionResponseToJSON = VersionResponseToJSON;
|
|
20
|
+
exports.VersionResponseToJSONTyped = VersionResponseToJSONTyped;
|
|
21
|
+
/**
|
|
22
|
+
* Check if a given object implements the VersionResponse interface.
|
|
23
|
+
*/
|
|
24
|
+
function instanceOfVersionResponse(value) {
|
|
25
|
+
if (!('service' in value) || value['service'] === undefined)
|
|
26
|
+
return false;
|
|
27
|
+
if (!('serviceVersion' in value) || value['serviceVersion'] === undefined)
|
|
28
|
+
return false;
|
|
29
|
+
if (!('openapiVersion' in value) || value['openapiVersion'] === undefined)
|
|
30
|
+
return false;
|
|
31
|
+
return true;
|
|
32
|
+
}
|
|
33
|
+
function VersionResponseFromJSON(json) {
|
|
34
|
+
return VersionResponseFromJSONTyped(json, false);
|
|
35
|
+
}
|
|
36
|
+
function VersionResponseFromJSONTyped(json, ignoreDiscriminator) {
|
|
37
|
+
if (json == null) {
|
|
38
|
+
return json;
|
|
39
|
+
}
|
|
40
|
+
return {
|
|
41
|
+
'service': json['service'],
|
|
42
|
+
'serviceVersion': json['service_version'],
|
|
43
|
+
'openapiVersion': json['openapi_version'],
|
|
44
|
+
};
|
|
45
|
+
}
|
|
46
|
+
function VersionResponseToJSON(json) {
|
|
47
|
+
return VersionResponseToJSONTyped(json, false);
|
|
48
|
+
}
|
|
49
|
+
function VersionResponseToJSONTyped(value, ignoreDiscriminator = false) {
|
|
50
|
+
if (value == null) {
|
|
51
|
+
return value;
|
|
52
|
+
}
|
|
53
|
+
return {
|
|
54
|
+
'service': value['service'],
|
|
55
|
+
'service_version': value['serviceVersion'],
|
|
56
|
+
'openapi_version': value['openapiVersion'],
|
|
57
|
+
};
|
|
58
|
+
}
|
|
59
|
+
//# sourceMappingURL=VersionResponse.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"VersionResponse.js","sourceRoot":"","sources":["../../../src/models/VersionResponse.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG;;AAgCH,8DAKC;AAED,0DAEC;AAED,oEAUC;AAED,sDAEC;AAED,gEAWC;AAzCD;;GAEG;AACH,SAAgB,yBAAyB,CAAC,KAAa;IACnD,IAAI,CAAC,CAAC,SAAS,IAAI,KAAK,CAAC,IAAI,KAAK,CAAC,SAAS,CAAC,KAAK,SAAS;QAAE,OAAO,KAAK,CAAC;IAC1E,IAAI,CAAC,CAAC,gBAAgB,IAAI,KAAK,CAAC,IAAI,KAAK,CAAC,gBAAgB,CAAC,KAAK,SAAS;QAAE,OAAO,KAAK,CAAC;IACxF,IAAI,CAAC,CAAC,gBAAgB,IAAI,KAAK,CAAC,IAAI,KAAK,CAAC,gBAAgB,CAAC,KAAK,SAAS;QAAE,OAAO,KAAK,CAAC;IACxF,OAAO,IAAI,CAAC;AAChB,CAAC;AAED,SAAgB,uBAAuB,CAAC,IAAS;IAC7C,OAAO,4BAA4B,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;AACrD,CAAC;AAED,SAAgB,4BAA4B,CAAC,IAAS,EAAE,mBAA4B;IAChF,IAAI,IAAI,IAAI,IAAI,EAAE,CAAC;QACf,OAAO,IAAI,CAAC;IAChB,CAAC;IACD,OAAO;QAEH,SAAS,EAAE,IAAI,CAAC,SAAS,CAAC;QAC1B,gBAAgB,EAAE,IAAI,CAAC,iBAAiB,CAAC;QACzC,gBAAgB,EAAE,IAAI,CAAC,iBAAiB,CAAC;KAC5C,CAAC;AACN,CAAC;AAED,SAAgB,qBAAqB,CAAC,IAAS;IAC3C,OAAO,0BAA0B,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;AACnD,CAAC;AAED,SAAgB,0BAA0B,CAAC,KAA8B,EAAE,sBAA+B,KAAK;IAC3G,IAAI,KAAK,IAAI,IAAI,EAAE,CAAC;QAChB,OAAO,KAAK,CAAC;IACjB,CAAC;IAED,OAAO;QAEH,SAAS,EAAE,KAAK,CAAC,SAAS,CAAC;QAC3B,iBAAiB,EAAE,KAAK,CAAC,gBAAgB,CAAC;QAC1C,iBAAiB,EAAE,KAAK,CAAC,gBAAgB,CAAC;KAC7C,CAAC;AACN,CAAC"}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export * from './CreateRequest';
|
|
2
2
|
export * from './ErrorResponse';
|
|
3
3
|
export * from './HealthResponse';
|
|
4
|
+
export * from './ModelCountResponse';
|
|
4
5
|
export * from './ModelVersion';
|
|
5
6
|
export * from './ModelsResponse';
|
|
6
7
|
export * from './QueryRequest';
|
|
@@ -10,3 +11,4 @@ export * from './Record';
|
|
|
10
11
|
export * from './ValidateRequest';
|
|
11
12
|
export * from './ValidationReport';
|
|
12
13
|
export * from './ValidationResult';
|
|
14
|
+
export * from './VersionResponse';
|
package/dist/src/models/index.js
CHANGED
|
@@ -19,6 +19,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
19
19
|
__exportStar(require("./CreateRequest"), exports);
|
|
20
20
|
__exportStar(require("./ErrorResponse"), exports);
|
|
21
21
|
__exportStar(require("./HealthResponse"), exports);
|
|
22
|
+
__exportStar(require("./ModelCountResponse"), exports);
|
|
22
23
|
__exportStar(require("./ModelVersion"), exports);
|
|
23
24
|
__exportStar(require("./ModelsResponse"), exports);
|
|
24
25
|
__exportStar(require("./QueryRequest"), exports);
|
|
@@ -28,4 +29,5 @@ __exportStar(require("./Record"), exports);
|
|
|
28
29
|
__exportStar(require("./ValidateRequest"), exports);
|
|
29
30
|
__exportStar(require("./ValidationReport"), exports);
|
|
30
31
|
__exportStar(require("./ValidationResult"), exports);
|
|
32
|
+
__exportStar(require("./VersionResponse"), exports);
|
|
31
33
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/models/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,oBAAoB;AACpB,oBAAoB;AACpB,kDAAgC;AAChC,kDAAgC;AAChC,mDAAiC;AACjC,iDAA+B;AAC/B,mDAAiC;AACjC,iDAA+B;AAC/B,kDAAgC;AAChC,kDAAgC;AAChC,2CAAyB;AACzB,oDAAkC;AAClC,qDAAmC;AACnC,qDAAmC"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/models/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,oBAAoB;AACpB,oBAAoB;AACpB,kDAAgC;AAChC,kDAAgC;AAChC,mDAAiC;AACjC,uDAAqC;AACrC,iDAA+B;AAC/B,mDAAiC;AACjC,iDAA+B;AAC/B,kDAAgC;AAChC,kDAAgC;AAChC,2CAAyB;AACzB,oDAAkC;AAClC,qDAAmC;AACnC,qDAAmC;AACnC,oDAAkC"}
|
package/dist/src/runtime.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* CE-RISE Hex Core Service API
|
|
3
3
|
* Public and admin API for validating, creating, and querying records against versioned CE-RISE model artifacts.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 0.0.
|
|
5
|
+
* The version of the OpenAPI document: 0.0.4
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/src/runtime.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* CE-RISE Hex Core Service API
|
|
6
6
|
* Public and admin API for validating, creating, and querying records against versioned CE-RISE model artifacts.
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 0.0.
|
|
8
|
+
* The version of the OpenAPI document: 0.0.4
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|