@ce-rise/hex-core-sdk-typescript 0.0.1 → 0.0.5
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 +5 -6
- package/dist/src/models/QueryRequest.js +4 -3
- package/dist/src/models/QueryRequest.js.map +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/RecordQueryCondition.d.ts +59 -0
- package/dist/src/models/RecordQueryCondition.js +74 -0
- package/dist/src/models/RecordQueryCondition.js.map +1 -0
- package/dist/src/models/RecordQueryFilter.d.ts +52 -0
- package/dist/src/models/RecordQueryFilter.js +59 -0
- package/dist/src/models/RecordQueryFilter.js.map +1 -0
- package/dist/src/models/RecordQuerySort.d.ts +46 -0
- package/dist/src/models/RecordQuerySort.js +63 -0
- package/dist/src/models/RecordQuerySort.js.map +1 -0
- 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 +5 -0
- package/dist/src/models/index.js +5 -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.5
|
|
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.5
|
|
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.5
|
|
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.5
|
|
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.5
|
|
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.5
|
|
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.5
|
|
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.5
|
|
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.5
|
|
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.5
|
|
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.5
|
|
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.5
|
|
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.5
|
|
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.5
|
|
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.5
|
|
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.5
|
|
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.5
|
|
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.5
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -2,13 +2,14 @@
|
|
|
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.5
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
+
import type { RecordQueryFilter } from './RecordQueryFilter';
|
|
12
13
|
/**
|
|
13
14
|
*
|
|
14
15
|
* @export
|
|
@@ -16,13 +17,11 @@
|
|
|
16
17
|
*/
|
|
17
18
|
export interface QueryRequest {
|
|
18
19
|
/**
|
|
19
|
-
*
|
|
20
|
-
* @type {
|
|
20
|
+
*
|
|
21
|
+
* @type {RecordQueryFilter}
|
|
21
22
|
* @memberof QueryRequest
|
|
22
23
|
*/
|
|
23
|
-
filter:
|
|
24
|
-
[key: string]: any;
|
|
25
|
-
};
|
|
24
|
+
filter: RecordQueryFilter;
|
|
26
25
|
}
|
|
27
26
|
/**
|
|
28
27
|
* Check if a given object implements the QueryRequest interface.
|
|
@@ -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.5
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -18,6 +18,7 @@ exports.QueryRequestFromJSON = QueryRequestFromJSON;
|
|
|
18
18
|
exports.QueryRequestFromJSONTyped = QueryRequestFromJSONTyped;
|
|
19
19
|
exports.QueryRequestToJSON = QueryRequestToJSON;
|
|
20
20
|
exports.QueryRequestToJSONTyped = QueryRequestToJSONTyped;
|
|
21
|
+
const RecordQueryFilter_1 = require("./RecordQueryFilter");
|
|
21
22
|
/**
|
|
22
23
|
* Check if a given object implements the QueryRequest interface.
|
|
23
24
|
*/
|
|
@@ -34,7 +35,7 @@ function QueryRequestFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
34
35
|
return json;
|
|
35
36
|
}
|
|
36
37
|
return {
|
|
37
|
-
'filter': json['filter'],
|
|
38
|
+
'filter': (0, RecordQueryFilter_1.RecordQueryFilterFromJSON)(json['filter']),
|
|
38
39
|
};
|
|
39
40
|
}
|
|
40
41
|
function QueryRequestToJSON(json) {
|
|
@@ -45,7 +46,7 @@ function QueryRequestToJSONTyped(value, ignoreDiscriminator = false) {
|
|
|
45
46
|
return value;
|
|
46
47
|
}
|
|
47
48
|
return {
|
|
48
|
-
'filter': value['filter'],
|
|
49
|
+
'filter': (0, RecordQueryFilter_1.RecordQueryFilterToJSON)(value['filter']),
|
|
49
50
|
};
|
|
50
51
|
}
|
|
51
52
|
//# sourceMappingURL=QueryRequest.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"QueryRequest.js","sourceRoot":"","sources":["../../../src/models/QueryRequest.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG;;
|
|
1
|
+
{"version":3,"file":"QueryRequest.js","sourceRoot":"","sources":["../../../src/models/QueryRequest.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG;;AA4BH,wDAGC;AAED,oDAEC;AAED,8DAQC;AAED,gDAEC;AAED,0DASC;AAxDD,2DAK6B;AAgB7B;;GAEG;AACH,SAAgB,sBAAsB,CAAC,KAAa;IAChD,IAAI,CAAC,CAAC,QAAQ,IAAI,KAAK,CAAC,IAAI,KAAK,CAAC,QAAQ,CAAC,KAAK,SAAS;QAAE,OAAO,KAAK,CAAC;IACxE,OAAO,IAAI,CAAC;AAChB,CAAC;AAED,SAAgB,oBAAoB,CAAC,IAAS;IAC1C,OAAO,yBAAyB,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;AAClD,CAAC;AAED,SAAgB,yBAAyB,CAAC,IAAS,EAAE,mBAA4B;IAC7E,IAAI,IAAI,IAAI,IAAI,EAAE,CAAC;QACf,OAAO,IAAI,CAAC;IAChB,CAAC;IACD,OAAO;QAEH,QAAQ,EAAE,IAAA,6CAAyB,EAAC,IAAI,CAAC,QAAQ,CAAC,CAAC;KACtD,CAAC;AACN,CAAC;AAED,SAAgB,kBAAkB,CAAC,IAAS;IACxC,OAAO,uBAAuB,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;AAChD,CAAC;AAED,SAAgB,uBAAuB,CAAC,KAA2B,EAAE,sBAA+B,KAAK;IACrG,IAAI,KAAK,IAAI,IAAI,EAAE,CAAC;QAChB,OAAO,KAAK,CAAC;IACjB,CAAC;IAED,OAAO;QAEH,QAAQ,EAAE,IAAA,2CAAuB,EAAC,KAAK,CAAC,QAAQ,CAAC,CAAC;KACrD,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.5
|
|
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.5
|
|
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.5
|
|
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.5
|
|
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.5
|
|
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.5
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -0,0 +1,59 @@
|
|
|
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.5
|
|
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 RecordQueryCondition
|
|
16
|
+
*/
|
|
17
|
+
export interface RecordQueryCondition {
|
|
18
|
+
/**
|
|
19
|
+
* Field path such as `id` or `payload.record_scope`.
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof RecordQueryCondition
|
|
22
|
+
*/
|
|
23
|
+
field: string;
|
|
24
|
+
/**
|
|
25
|
+
* Comparison operator.
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof RecordQueryCondition
|
|
28
|
+
*/
|
|
29
|
+
op: RecordQueryConditionOpEnum;
|
|
30
|
+
/**
|
|
31
|
+
* Operand value. For `in` this must be an array. For `exists` this should be boolean.
|
|
32
|
+
* @type {any}
|
|
33
|
+
* @memberof RecordQueryCondition
|
|
34
|
+
*/
|
|
35
|
+
value: any | null;
|
|
36
|
+
}
|
|
37
|
+
/**
|
|
38
|
+
* @export
|
|
39
|
+
*/
|
|
40
|
+
export declare const RecordQueryConditionOpEnum: {
|
|
41
|
+
readonly Eq: "eq";
|
|
42
|
+
readonly Ne: "ne";
|
|
43
|
+
readonly In: "in";
|
|
44
|
+
readonly Contains: "contains";
|
|
45
|
+
readonly Exists: "exists";
|
|
46
|
+
readonly Gt: "gt";
|
|
47
|
+
readonly Gte: "gte";
|
|
48
|
+
readonly Lt: "lt";
|
|
49
|
+
readonly Lte: "lte";
|
|
50
|
+
};
|
|
51
|
+
export type RecordQueryConditionOpEnum = typeof RecordQueryConditionOpEnum[keyof typeof RecordQueryConditionOpEnum];
|
|
52
|
+
/**
|
|
53
|
+
* Check if a given object implements the RecordQueryCondition interface.
|
|
54
|
+
*/
|
|
55
|
+
export declare function instanceOfRecordQueryCondition(value: object): value is RecordQueryCondition;
|
|
56
|
+
export declare function RecordQueryConditionFromJSON(json: any): RecordQueryCondition;
|
|
57
|
+
export declare function RecordQueryConditionFromJSONTyped(json: any, ignoreDiscriminator: boolean): RecordQueryCondition;
|
|
58
|
+
export declare function RecordQueryConditionToJSON(json: any): RecordQueryCondition;
|
|
59
|
+
export declare function RecordQueryConditionToJSONTyped(value?: RecordQueryCondition | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -0,0 +1,74 @@
|
|
|
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.5
|
|
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.RecordQueryConditionOpEnum = void 0;
|
|
17
|
+
exports.instanceOfRecordQueryCondition = instanceOfRecordQueryCondition;
|
|
18
|
+
exports.RecordQueryConditionFromJSON = RecordQueryConditionFromJSON;
|
|
19
|
+
exports.RecordQueryConditionFromJSONTyped = RecordQueryConditionFromJSONTyped;
|
|
20
|
+
exports.RecordQueryConditionToJSON = RecordQueryConditionToJSON;
|
|
21
|
+
exports.RecordQueryConditionToJSONTyped = RecordQueryConditionToJSONTyped;
|
|
22
|
+
/**
|
|
23
|
+
* @export
|
|
24
|
+
*/
|
|
25
|
+
exports.RecordQueryConditionOpEnum = {
|
|
26
|
+
Eq: 'eq',
|
|
27
|
+
Ne: 'ne',
|
|
28
|
+
In: 'in',
|
|
29
|
+
Contains: 'contains',
|
|
30
|
+
Exists: 'exists',
|
|
31
|
+
Gt: 'gt',
|
|
32
|
+
Gte: 'gte',
|
|
33
|
+
Lt: 'lt',
|
|
34
|
+
Lte: 'lte'
|
|
35
|
+
};
|
|
36
|
+
/**
|
|
37
|
+
* Check if a given object implements the RecordQueryCondition interface.
|
|
38
|
+
*/
|
|
39
|
+
function instanceOfRecordQueryCondition(value) {
|
|
40
|
+
if (!('field' in value) || value['field'] === undefined)
|
|
41
|
+
return false;
|
|
42
|
+
if (!('op' in value) || value['op'] === undefined)
|
|
43
|
+
return false;
|
|
44
|
+
if (!('value' in value) || value['value'] === undefined)
|
|
45
|
+
return false;
|
|
46
|
+
return true;
|
|
47
|
+
}
|
|
48
|
+
function RecordQueryConditionFromJSON(json) {
|
|
49
|
+
return RecordQueryConditionFromJSONTyped(json, false);
|
|
50
|
+
}
|
|
51
|
+
function RecordQueryConditionFromJSONTyped(json, ignoreDiscriminator) {
|
|
52
|
+
if (json == null) {
|
|
53
|
+
return json;
|
|
54
|
+
}
|
|
55
|
+
return {
|
|
56
|
+
'field': json['field'],
|
|
57
|
+
'op': json['op'],
|
|
58
|
+
'value': json['value'],
|
|
59
|
+
};
|
|
60
|
+
}
|
|
61
|
+
function RecordQueryConditionToJSON(json) {
|
|
62
|
+
return RecordQueryConditionToJSONTyped(json, false);
|
|
63
|
+
}
|
|
64
|
+
function RecordQueryConditionToJSONTyped(value, ignoreDiscriminator = false) {
|
|
65
|
+
if (value == null) {
|
|
66
|
+
return value;
|
|
67
|
+
}
|
|
68
|
+
return {
|
|
69
|
+
'field': value['field'],
|
|
70
|
+
'op': value['op'],
|
|
71
|
+
'value': value['value'],
|
|
72
|
+
};
|
|
73
|
+
}
|
|
74
|
+
//# sourceMappingURL=RecordQueryCondition.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"RecordQueryCondition.js","sourceRoot":"","sources":["../../../src/models/RecordQueryCondition.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG;;;AAkDH,wEAKC;AAED,oEAEC;AAED,8EAUC;AAED,gEAEC;AAED,0EAWC;AA1DD;;GAEG;AACU,QAAA,0BAA0B,GAAG;IACtC,EAAE,EAAE,IAAI;IACR,EAAE,EAAE,IAAI;IACR,EAAE,EAAE,IAAI;IACR,QAAQ,EAAE,UAAU;IACpB,MAAM,EAAE,QAAQ;IAChB,EAAE,EAAE,IAAI;IACR,GAAG,EAAE,KAAK;IACV,EAAE,EAAE,IAAI;IACR,GAAG,EAAE,KAAK;CACJ,CAAC;AAIX;;GAEG;AACH,SAAgB,8BAA8B,CAAC,KAAa;IACxD,IAAI,CAAC,CAAC,OAAO,IAAI,KAAK,CAAC,IAAI,KAAK,CAAC,OAAO,CAAC,KAAK,SAAS;QAAE,OAAO,KAAK,CAAC;IACtE,IAAI,CAAC,CAAC,IAAI,IAAI,KAAK,CAAC,IAAI,KAAK,CAAC,IAAI,CAAC,KAAK,SAAS;QAAE,OAAO,KAAK,CAAC;IAChE,IAAI,CAAC,CAAC,OAAO,IAAI,KAAK,CAAC,IAAI,KAAK,CAAC,OAAO,CAAC,KAAK,SAAS;QAAE,OAAO,KAAK,CAAC;IACtE,OAAO,IAAI,CAAC;AAChB,CAAC;AAED,SAAgB,4BAA4B,CAAC,IAAS;IAClD,OAAO,iCAAiC,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;AAC1D,CAAC;AAED,SAAgB,iCAAiC,CAAC,IAAS,EAAE,mBAA4B;IACrF,IAAI,IAAI,IAAI,IAAI,EAAE,CAAC;QACf,OAAO,IAAI,CAAC;IAChB,CAAC;IACD,OAAO;QAEH,OAAO,EAAE,IAAI,CAAC,OAAO,CAAC;QACtB,IAAI,EAAE,IAAI,CAAC,IAAI,CAAC;QAChB,OAAO,EAAE,IAAI,CAAC,OAAO,CAAC;KACzB,CAAC;AACN,CAAC;AAED,SAAgB,0BAA0B,CAAC,IAAS;IAChD,OAAO,+BAA+B,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;AACxD,CAAC;AAED,SAAgB,+BAA+B,CAAC,KAAmC,EAAE,sBAA+B,KAAK;IACrH,IAAI,KAAK,IAAI,IAAI,EAAE,CAAC;QAChB,OAAO,KAAK,CAAC;IACjB,CAAC;IAED,OAAO;QAEH,OAAO,EAAE,KAAK,CAAC,OAAO,CAAC;QACvB,IAAI,EAAE,KAAK,CAAC,IAAI,CAAC;QACjB,OAAO,EAAE,KAAK,CAAC,OAAO,CAAC;KAC1B,CAAC;AACN,CAAC"}
|
|
@@ -0,0 +1,52 @@
|
|
|
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.5
|
|
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
|
+
import type { RecordQuerySort } from './RecordQuerySort';
|
|
13
|
+
import type { RecordQueryCondition } from './RecordQueryCondition';
|
|
14
|
+
/**
|
|
15
|
+
* Canonical backend query dialect shared across record store adapters.
|
|
16
|
+
* @export
|
|
17
|
+
* @interface RecordQueryFilter
|
|
18
|
+
*/
|
|
19
|
+
export interface RecordQueryFilter {
|
|
20
|
+
/**
|
|
21
|
+
* AND-only list of query predicates.
|
|
22
|
+
* @type {Array<RecordQueryCondition>}
|
|
23
|
+
* @memberof RecordQueryFilter
|
|
24
|
+
*/
|
|
25
|
+
where: Array<RecordQueryCondition>;
|
|
26
|
+
/**
|
|
27
|
+
* Optional list of sort directives applied in order.
|
|
28
|
+
* @type {Array<RecordQuerySort>}
|
|
29
|
+
* @memberof RecordQueryFilter
|
|
30
|
+
*/
|
|
31
|
+
sort?: Array<RecordQuerySort>;
|
|
32
|
+
/**
|
|
33
|
+
* Maximum number of records to return.
|
|
34
|
+
* @type {number}
|
|
35
|
+
* @memberof RecordQueryFilter
|
|
36
|
+
*/
|
|
37
|
+
limit?: number;
|
|
38
|
+
/**
|
|
39
|
+
* Zero-based row offset for pagination.
|
|
40
|
+
* @type {number}
|
|
41
|
+
* @memberof RecordQueryFilter
|
|
42
|
+
*/
|
|
43
|
+
offset?: number;
|
|
44
|
+
}
|
|
45
|
+
/**
|
|
46
|
+
* Check if a given object implements the RecordQueryFilter interface.
|
|
47
|
+
*/
|
|
48
|
+
export declare function instanceOfRecordQueryFilter(value: object): value is RecordQueryFilter;
|
|
49
|
+
export declare function RecordQueryFilterFromJSON(json: any): RecordQueryFilter;
|
|
50
|
+
export declare function RecordQueryFilterFromJSONTyped(json: any, ignoreDiscriminator: boolean): RecordQueryFilter;
|
|
51
|
+
export declare function RecordQueryFilterToJSON(json: any): RecordQueryFilter;
|
|
52
|
+
export declare function RecordQueryFilterToJSONTyped(value?: RecordQueryFilter | 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.5
|
|
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.instanceOfRecordQueryFilter = instanceOfRecordQueryFilter;
|
|
17
|
+
exports.RecordQueryFilterFromJSON = RecordQueryFilterFromJSON;
|
|
18
|
+
exports.RecordQueryFilterFromJSONTyped = RecordQueryFilterFromJSONTyped;
|
|
19
|
+
exports.RecordQueryFilterToJSON = RecordQueryFilterToJSON;
|
|
20
|
+
exports.RecordQueryFilterToJSONTyped = RecordQueryFilterToJSONTyped;
|
|
21
|
+
const RecordQuerySort_1 = require("./RecordQuerySort");
|
|
22
|
+
const RecordQueryCondition_1 = require("./RecordQueryCondition");
|
|
23
|
+
/**
|
|
24
|
+
* Check if a given object implements the RecordQueryFilter interface.
|
|
25
|
+
*/
|
|
26
|
+
function instanceOfRecordQueryFilter(value) {
|
|
27
|
+
if (!('where' in value) || value['where'] === undefined)
|
|
28
|
+
return false;
|
|
29
|
+
return true;
|
|
30
|
+
}
|
|
31
|
+
function RecordQueryFilterFromJSON(json) {
|
|
32
|
+
return RecordQueryFilterFromJSONTyped(json, false);
|
|
33
|
+
}
|
|
34
|
+
function RecordQueryFilterFromJSONTyped(json, ignoreDiscriminator) {
|
|
35
|
+
if (json == null) {
|
|
36
|
+
return json;
|
|
37
|
+
}
|
|
38
|
+
return {
|
|
39
|
+
'where': (json['where'].map(RecordQueryCondition_1.RecordQueryConditionFromJSON)),
|
|
40
|
+
'sort': json['sort'] == null ? undefined : (json['sort'].map(RecordQuerySort_1.RecordQuerySortFromJSON)),
|
|
41
|
+
'limit': json['limit'] == null ? undefined : json['limit'],
|
|
42
|
+
'offset': json['offset'] == null ? undefined : json['offset'],
|
|
43
|
+
};
|
|
44
|
+
}
|
|
45
|
+
function RecordQueryFilterToJSON(json) {
|
|
46
|
+
return RecordQueryFilterToJSONTyped(json, false);
|
|
47
|
+
}
|
|
48
|
+
function RecordQueryFilterToJSONTyped(value, ignoreDiscriminator = false) {
|
|
49
|
+
if (value == null) {
|
|
50
|
+
return value;
|
|
51
|
+
}
|
|
52
|
+
return {
|
|
53
|
+
'where': (value['where'].map(RecordQueryCondition_1.RecordQueryConditionToJSON)),
|
|
54
|
+
'sort': value['sort'] == null ? undefined : (value['sort'].map(RecordQuerySort_1.RecordQuerySortToJSON)),
|
|
55
|
+
'limit': value['limit'],
|
|
56
|
+
'offset': value['offset'],
|
|
57
|
+
};
|
|
58
|
+
}
|
|
59
|
+
//# sourceMappingURL=RecordQueryFilter.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"RecordQueryFilter.js","sourceRoot":"","sources":["../../../src/models/RecordQueryFilter.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG;;AAqDH,kEAGC;AAED,8DAEC;AAED,wEAWC;AAED,0DAEC;AAED,oEAYC;AAvFD,uDAK2B;AAE3B,iEAKgC;AAkChC;;GAEG;AACH,SAAgB,2BAA2B,CAAC,KAAa;IACrD,IAAI,CAAC,CAAC,OAAO,IAAI,KAAK,CAAC,IAAI,KAAK,CAAC,OAAO,CAAC,KAAK,SAAS;QAAE,OAAO,KAAK,CAAC;IACtE,OAAO,IAAI,CAAC;AAChB,CAAC;AAED,SAAgB,yBAAyB,CAAC,IAAS;IAC/C,OAAO,8BAA8B,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;AACvD,CAAC;AAED,SAAgB,8BAA8B,CAAC,IAAS,EAAE,mBAA4B;IAClF,IAAI,IAAI,IAAI,IAAI,EAAE,CAAC;QACf,OAAO,IAAI,CAAC;IAChB,CAAC;IACD,OAAO;QAEH,OAAO,EAAE,CAAE,IAAI,CAAC,OAAO,CAAgB,CAAC,GAAG,CAAC,mDAA4B,CAAC,CAAC;QAC1E,MAAM,EAAE,IAAI,CAAC,MAAM,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,CAAE,IAAI,CAAC,MAAM,CAAgB,CAAC,GAAG,CAAC,yCAAuB,CAAC,CAAC;QACtG,OAAO,EAAE,IAAI,CAAC,OAAO,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC;QAC1D,QAAQ,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC;KAChE,CAAC;AACN,CAAC;AAED,SAAgB,uBAAuB,CAAC,IAAS;IAC7C,OAAO,4BAA4B,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;AACrD,CAAC;AAED,SAAgB,4BAA4B,CAAC,KAAgC,EAAE,sBAA+B,KAAK;IAC/G,IAAI,KAAK,IAAI,IAAI,EAAE,CAAC;QAChB,OAAO,KAAK,CAAC;IACjB,CAAC;IAED,OAAO;QAEH,OAAO,EAAE,CAAE,KAAK,CAAC,OAAO,CAAgB,CAAC,GAAG,CAAC,iDAA0B,CAAC,CAAC;QACzE,MAAM,EAAE,KAAK,CAAC,MAAM,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,CAAE,KAAK,CAAC,MAAM,CAAgB,CAAC,GAAG,CAAC,uCAAqB,CAAC,CAAC;QACtG,OAAO,EAAE,KAAK,CAAC,OAAO,CAAC;QACvB,QAAQ,EAAE,KAAK,CAAC,QAAQ,CAAC;KAC5B,CAAC;AACN,CAAC"}
|
|
@@ -0,0 +1,46 @@
|
|
|
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.5
|
|
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 RecordQuerySort
|
|
16
|
+
*/
|
|
17
|
+
export interface RecordQuerySort {
|
|
18
|
+
/**
|
|
19
|
+
* Sortable field path such as `created_at` or `payload.record_scope`.
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof RecordQuerySort
|
|
22
|
+
*/
|
|
23
|
+
field: string;
|
|
24
|
+
/**
|
|
25
|
+
* Sort direction.
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof RecordQuerySort
|
|
28
|
+
*/
|
|
29
|
+
direction: RecordQuerySortDirectionEnum;
|
|
30
|
+
}
|
|
31
|
+
/**
|
|
32
|
+
* @export
|
|
33
|
+
*/
|
|
34
|
+
export declare const RecordQuerySortDirectionEnum: {
|
|
35
|
+
readonly Asc: "asc";
|
|
36
|
+
readonly Desc: "desc";
|
|
37
|
+
};
|
|
38
|
+
export type RecordQuerySortDirectionEnum = typeof RecordQuerySortDirectionEnum[keyof typeof RecordQuerySortDirectionEnum];
|
|
39
|
+
/**
|
|
40
|
+
* Check if a given object implements the RecordQuerySort interface.
|
|
41
|
+
*/
|
|
42
|
+
export declare function instanceOfRecordQuerySort(value: object): value is RecordQuerySort;
|
|
43
|
+
export declare function RecordQuerySortFromJSON(json: any): RecordQuerySort;
|
|
44
|
+
export declare function RecordQuerySortFromJSONTyped(json: any, ignoreDiscriminator: boolean): RecordQuerySort;
|
|
45
|
+
export declare function RecordQuerySortToJSON(json: any): RecordQuerySort;
|
|
46
|
+
export declare function RecordQuerySortToJSONTyped(value?: RecordQuerySort | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -0,0 +1,63 @@
|
|
|
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.5
|
|
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.RecordQuerySortDirectionEnum = void 0;
|
|
17
|
+
exports.instanceOfRecordQuerySort = instanceOfRecordQuerySort;
|
|
18
|
+
exports.RecordQuerySortFromJSON = RecordQuerySortFromJSON;
|
|
19
|
+
exports.RecordQuerySortFromJSONTyped = RecordQuerySortFromJSONTyped;
|
|
20
|
+
exports.RecordQuerySortToJSON = RecordQuerySortToJSON;
|
|
21
|
+
exports.RecordQuerySortToJSONTyped = RecordQuerySortToJSONTyped;
|
|
22
|
+
/**
|
|
23
|
+
* @export
|
|
24
|
+
*/
|
|
25
|
+
exports.RecordQuerySortDirectionEnum = {
|
|
26
|
+
Asc: 'asc',
|
|
27
|
+
Desc: 'desc'
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* Check if a given object implements the RecordQuerySort interface.
|
|
31
|
+
*/
|
|
32
|
+
function instanceOfRecordQuerySort(value) {
|
|
33
|
+
if (!('field' in value) || value['field'] === undefined)
|
|
34
|
+
return false;
|
|
35
|
+
if (!('direction' in value) || value['direction'] === undefined)
|
|
36
|
+
return false;
|
|
37
|
+
return true;
|
|
38
|
+
}
|
|
39
|
+
function RecordQuerySortFromJSON(json) {
|
|
40
|
+
return RecordQuerySortFromJSONTyped(json, false);
|
|
41
|
+
}
|
|
42
|
+
function RecordQuerySortFromJSONTyped(json, ignoreDiscriminator) {
|
|
43
|
+
if (json == null) {
|
|
44
|
+
return json;
|
|
45
|
+
}
|
|
46
|
+
return {
|
|
47
|
+
'field': json['field'],
|
|
48
|
+
'direction': json['direction'],
|
|
49
|
+
};
|
|
50
|
+
}
|
|
51
|
+
function RecordQuerySortToJSON(json) {
|
|
52
|
+
return RecordQuerySortToJSONTyped(json, false);
|
|
53
|
+
}
|
|
54
|
+
function RecordQuerySortToJSONTyped(value, ignoreDiscriminator = false) {
|
|
55
|
+
if (value == null) {
|
|
56
|
+
return value;
|
|
57
|
+
}
|
|
58
|
+
return {
|
|
59
|
+
'field': value['field'],
|
|
60
|
+
'direction': value['direction'],
|
|
61
|
+
};
|
|
62
|
+
}
|
|
63
|
+
//# sourceMappingURL=RecordQuerySort.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"RecordQuerySort.js","sourceRoot":"","sources":["../../../src/models/RecordQuerySort.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG;;;AAqCH,8DAIC;AAED,0DAEC;AAED,oEASC;AAED,sDAEC;AAED,gEAUC;AAhDD;;GAEG;AACU,QAAA,4BAA4B,GAAG;IACxC,GAAG,EAAE,KAAK;IACV,IAAI,EAAE,MAAM;CACN,CAAC;AAIX;;GAEG;AACH,SAAgB,yBAAyB,CAAC,KAAa;IACnD,IAAI,CAAC,CAAC,OAAO,IAAI,KAAK,CAAC,IAAI,KAAK,CAAC,OAAO,CAAC,KAAK,SAAS;QAAE,OAAO,KAAK,CAAC;IACtE,IAAI,CAAC,CAAC,WAAW,IAAI,KAAK,CAAC,IAAI,KAAK,CAAC,WAAW,CAAC,KAAK,SAAS;QAAE,OAAO,KAAK,CAAC;IAC9E,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,OAAO,EAAE,IAAI,CAAC,OAAO,CAAC;QACtB,WAAW,EAAE,IAAI,CAAC,WAAW,CAAC;KACjC,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,OAAO,EAAE,KAAK,CAAC,OAAO,CAAC;QACvB,WAAW,EAAE,KAAK,CAAC,WAAW,CAAC;KAClC,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.5
|
|
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.5
|
|
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.5
|
|
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.5
|
|
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.5
|
|
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.5
|
|
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.5
|
|
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.5
|
|
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,12 +1,17 @@
|
|
|
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';
|
|
7
8
|
export * from './QueryResponse';
|
|
8
9
|
export * from './ReadyResponse';
|
|
9
10
|
export * from './Record';
|
|
11
|
+
export * from './RecordQueryCondition';
|
|
12
|
+
export * from './RecordQueryFilter';
|
|
13
|
+
export * from './RecordQuerySort';
|
|
10
14
|
export * from './ValidateRequest';
|
|
11
15
|
export * from './ValidationReport';
|
|
12
16
|
export * from './ValidationResult';
|
|
17
|
+
export * from './VersionResponse';
|
package/dist/src/models/index.js
CHANGED
|
@@ -19,13 +19,18 @@ 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);
|
|
25
26
|
__exportStar(require("./QueryResponse"), exports);
|
|
26
27
|
__exportStar(require("./ReadyResponse"), exports);
|
|
27
28
|
__exportStar(require("./Record"), exports);
|
|
29
|
+
__exportStar(require("./RecordQueryCondition"), exports);
|
|
30
|
+
__exportStar(require("./RecordQueryFilter"), exports);
|
|
31
|
+
__exportStar(require("./RecordQuerySort"), exports);
|
|
28
32
|
__exportStar(require("./ValidateRequest"), exports);
|
|
29
33
|
__exportStar(require("./ValidationReport"), exports);
|
|
30
34
|
__exportStar(require("./ValidationResult"), exports);
|
|
35
|
+
__exportStar(require("./VersionResponse"), exports);
|
|
31
36
|
//# 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,yDAAuC;AACvC,sDAAoC;AACpC,oDAAkC;AAClC,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.5
|
|
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.5
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|