keplar-api 0.0.19 → 0.0.20
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/.openapi-generator/FILES +0 -7
- package/.openapi-generator/VERSION +1 -1
- package/README.md +2 -2
- package/dist/apis/DefaultApi.d.ts +49 -4
- package/dist/apis/DefaultApi.js +43 -1
- package/dist/models/ApiFilesFileIdSignedUrlPostRequest.d.ts +10 -3
- package/dist/models/ApiFilesFileIdSignedUrlPostRequest.js +10 -3
- package/dist/models/ApiProjectsProjectIdAnalysisPostRequest.d.ts +10 -3
- package/dist/models/ApiProjectsProjectIdAnalysisPostRequest.js +10 -3
- package/dist/models/ArtifactMetadata.d.ts +12 -3
- package/dist/models/ArtifactMetadata.js +12 -3
- package/dist/models/Login400Response.d.ts +18 -3
- package/dist/models/Login400Response.js +18 -3
- package/dist/models/Login400ResponseAnyOf.d.ts +18 -3
- package/dist/models/Login400ResponseAnyOf.js +18 -3
- package/dist/models/OpenAiModelConfig.d.ts +10 -3
- package/dist/models/OpenAiModelConfig.js +10 -4
- package/dist/models/ScreenerQuestionResponse.d.ts +2 -2
- package/dist/models/SelectFilterSchema.d.ts +10 -3
- package/dist/models/SelectFilterSchema.js +10 -3
- package/dist/models/index.d.ts +0 -7
- package/dist/models/index.js +0 -7
- package/package.json +2 -2
- package/src/apis/DefaultApi.ts +49 -6
- package/src/models/ApiFilesFileIdSignedUrlPostRequest.ts +15 -12
- package/src/models/ApiProjectsProjectIdAnalysisPostRequest.ts +15 -12
- package/src/models/ArtifactMetadata.ts +17 -12
- package/src/models/Login400Response.ts +23 -11
- package/src/models/Login400ResponseAnyOf.ts +23 -12
- package/src/models/OpenAiModelConfig.ts +13 -12
- package/src/models/ScreenerQuestionResponse.ts +2 -2
- package/src/models/SelectFilterSchema.ts +15 -12
- package/src/models/index.ts +0 -7
- package/dist/models/ApiFilesFileIdSignedUrlPostRequestAction.d.ts +0 -26
- package/dist/models/ApiFilesFileIdSignedUrlPostRequestAction.js +0 -39
- package/dist/models/ApiProjectsProjectIdAnalysisPostRequestKind.d.ts +0 -26
- package/dist/models/ApiProjectsProjectIdAnalysisPostRequestKind.js +0 -39
- package/dist/models/ArtifactMetadataStatus.d.ts +0 -26
- package/dist/models/ArtifactMetadataStatus.js +0 -39
- package/dist/models/GetSharedInviteResponsesStatusesParameterInner.d.ts +0 -26
- package/dist/models/GetSharedInviteResponsesStatusesParameterInner.js +0 -39
- package/dist/models/Login400ResponseAnyOfError.d.ts +0 -26
- package/dist/models/Login400ResponseAnyOfError.js +0 -39
- package/dist/models/OpenAiModelConfigModel.d.ts +0 -26
- package/dist/models/OpenAiModelConfigModel.js +0 -39
- package/dist/models/SelectFilterSchemaKind.d.ts +0 -26
- package/dist/models/SelectFilterSchemaKind.js +0 -39
- package/src/models/ApiFilesFileIdSignedUrlPostRequestAction.ts +0 -46
- package/src/models/ApiProjectsProjectIdAnalysisPostRequestKind.ts +0 -46
- package/src/models/ArtifactMetadataStatus.ts +0 -46
- package/src/models/GetSharedInviteResponsesStatusesParameterInner.ts +0 -46
- package/src/models/Login400ResponseAnyOfError.ts +0 -46
- package/src/models/OpenAiModelConfigModel.ts +0 -46
- package/src/models/SelectFilterSchemaKind.ts +0 -46
|
@@ -13,14 +13,6 @@
|
|
|
13
13
|
*/
|
|
14
14
|
|
|
15
15
|
import { mapValues } from '../runtime';
|
|
16
|
-
import type { OpenAiModelConfigModel } from './OpenAiModelConfigModel';
|
|
17
|
-
import {
|
|
18
|
-
OpenAiModelConfigModelFromJSON,
|
|
19
|
-
OpenAiModelConfigModelFromJSONTyped,
|
|
20
|
-
OpenAiModelConfigModelToJSON,
|
|
21
|
-
OpenAiModelConfigModelToJSONTyped,
|
|
22
|
-
} from './OpenAiModelConfigModel';
|
|
23
|
-
|
|
24
16
|
/**
|
|
25
17
|
*
|
|
26
18
|
* @export
|
|
@@ -35,10 +27,10 @@ export interface OpenAiModelConfig {
|
|
|
35
27
|
provider: OpenAiModelConfigProviderEnum;
|
|
36
28
|
/**
|
|
37
29
|
*
|
|
38
|
-
* @type {
|
|
30
|
+
* @type {string}
|
|
39
31
|
* @memberof OpenAiModelConfig
|
|
40
32
|
*/
|
|
41
|
-
model:
|
|
33
|
+
model: OpenAiModelConfigModelEnum;
|
|
42
34
|
}
|
|
43
35
|
|
|
44
36
|
|
|
@@ -50,6 +42,15 @@ export const OpenAiModelConfigProviderEnum = {
|
|
|
50
42
|
} as const;
|
|
51
43
|
export type OpenAiModelConfigProviderEnum = typeof OpenAiModelConfigProviderEnum[keyof typeof OpenAiModelConfigProviderEnum];
|
|
52
44
|
|
|
45
|
+
/**
|
|
46
|
+
* @export
|
|
47
|
+
*/
|
|
48
|
+
export const OpenAiModelConfigModelEnum = {
|
|
49
|
+
Gpt41: 'gpt-4.1',
|
|
50
|
+
Gpt5: 'gpt-5'
|
|
51
|
+
} as const;
|
|
52
|
+
export type OpenAiModelConfigModelEnum = typeof OpenAiModelConfigModelEnum[keyof typeof OpenAiModelConfigModelEnum];
|
|
53
|
+
|
|
53
54
|
|
|
54
55
|
/**
|
|
55
56
|
* Check if a given object implements the OpenAiModelConfig interface.
|
|
@@ -71,7 +72,7 @@ export function OpenAiModelConfigFromJSONTyped(json: any, ignoreDiscriminator: b
|
|
|
71
72
|
return {
|
|
72
73
|
|
|
73
74
|
'provider': json['provider'],
|
|
74
|
-
'model':
|
|
75
|
+
'model': json['model'],
|
|
75
76
|
};
|
|
76
77
|
}
|
|
77
78
|
|
|
@@ -87,7 +88,7 @@ export function OpenAiModelConfigToJSONTyped(value?: OpenAiModelConfig | null, i
|
|
|
87
88
|
return {
|
|
88
89
|
|
|
89
90
|
'provider': value['provider'],
|
|
90
|
-
'model':
|
|
91
|
+
'model': value['model'],
|
|
91
92
|
};
|
|
92
93
|
}
|
|
93
94
|
|
|
@@ -13,14 +13,6 @@
|
|
|
13
13
|
*/
|
|
14
14
|
|
|
15
15
|
import { mapValues } from '../runtime';
|
|
16
|
-
import type { SelectFilterSchemaKind } from './SelectFilterSchemaKind';
|
|
17
|
-
import {
|
|
18
|
-
SelectFilterSchemaKindFromJSON,
|
|
19
|
-
SelectFilterSchemaKindFromJSONTyped,
|
|
20
|
-
SelectFilterSchemaKindToJSON,
|
|
21
|
-
SelectFilterSchemaKindToJSONTyped,
|
|
22
|
-
} from './SelectFilterSchemaKind';
|
|
23
|
-
|
|
24
16
|
/**
|
|
25
17
|
*
|
|
26
18
|
* @export
|
|
@@ -29,10 +21,10 @@ import {
|
|
|
29
21
|
export interface SelectFilterSchema {
|
|
30
22
|
/**
|
|
31
23
|
*
|
|
32
|
-
* @type {
|
|
24
|
+
* @type {string}
|
|
33
25
|
* @memberof SelectFilterSchema
|
|
34
26
|
*/
|
|
35
|
-
kind:
|
|
27
|
+
kind: SelectFilterSchemaKindEnum;
|
|
36
28
|
/**
|
|
37
29
|
*
|
|
38
30
|
* @type {string}
|
|
@@ -47,6 +39,17 @@ export interface SelectFilterSchema {
|
|
|
47
39
|
values: Array<string>;
|
|
48
40
|
}
|
|
49
41
|
|
|
42
|
+
|
|
43
|
+
/**
|
|
44
|
+
* @export
|
|
45
|
+
*/
|
|
46
|
+
export const SelectFilterSchemaKindEnum = {
|
|
47
|
+
Single: 'single',
|
|
48
|
+
Multi: 'multi'
|
|
49
|
+
} as const;
|
|
50
|
+
export type SelectFilterSchemaKindEnum = typeof SelectFilterSchemaKindEnum[keyof typeof SelectFilterSchemaKindEnum];
|
|
51
|
+
|
|
52
|
+
|
|
50
53
|
/**
|
|
51
54
|
* Check if a given object implements the SelectFilterSchema interface.
|
|
52
55
|
*/
|
|
@@ -67,7 +70,7 @@ export function SelectFilterSchemaFromJSONTyped(json: any, ignoreDiscriminator:
|
|
|
67
70
|
}
|
|
68
71
|
return {
|
|
69
72
|
|
|
70
|
-
'kind':
|
|
73
|
+
'kind': json['kind'],
|
|
71
74
|
'id': json['id'],
|
|
72
75
|
'values': json['values'],
|
|
73
76
|
};
|
|
@@ -84,7 +87,7 @@ export function SelectFilterSchemaToJSONTyped(value?: SelectFilterSchema | null,
|
|
|
84
87
|
|
|
85
88
|
return {
|
|
86
89
|
|
|
87
|
-
'kind':
|
|
90
|
+
'kind': value['kind'],
|
|
88
91
|
'id': value['id'],
|
|
89
92
|
'values': value['values'],
|
|
90
93
|
};
|
package/src/models/index.ts
CHANGED
|
@@ -3,7 +3,6 @@
|
|
|
3
3
|
export * from './ApiDemosCreateDemoInvitePostRequest';
|
|
4
4
|
export * from './ApiFilesFileIdSignedUrlPost200Response';
|
|
5
5
|
export * from './ApiFilesFileIdSignedUrlPostRequest';
|
|
6
|
-
export * from './ApiFilesFileIdSignedUrlPostRequestAction';
|
|
7
6
|
export * from './ApiInvitesIdParticipantInvitesGet200Response';
|
|
8
7
|
export * from './ApiInvitesIdParticipantInvitesParticipantIdPutRequest';
|
|
9
8
|
export * from './ApiInvitesIdParticipantInvitesPostRequest';
|
|
@@ -16,7 +15,6 @@ export * from './ApiProjectsPostRequest';
|
|
|
16
15
|
export * from './ApiProjectsPostRequestThreadAssetsInner';
|
|
17
16
|
export * from './ApiProjectsProjectIdAnalysisPost200Response';
|
|
18
17
|
export * from './ApiProjectsProjectIdAnalysisPostRequest';
|
|
19
|
-
export * from './ApiProjectsProjectIdAnalysisPostRequestKind';
|
|
20
18
|
export * from './ApiProjectsProjectIdFilesFileIdPutRequest';
|
|
21
19
|
export * from './ApiProjectsProjectIdFilesGet200Response';
|
|
22
20
|
export * from './ApiProjectsProjectIdFilesPostRequest';
|
|
@@ -35,7 +33,6 @@ export * from './ArtifactDataThematicAnalysisData';
|
|
|
35
33
|
export * from './ArtifactDataThematicAnalysisDataThemesInner';
|
|
36
34
|
export * from './ArtifactKind';
|
|
37
35
|
export * from './ArtifactMetadata';
|
|
38
|
-
export * from './ArtifactMetadataStatus';
|
|
39
36
|
export * from './ArtifactVersionGroup';
|
|
40
37
|
export * from './Attribute';
|
|
41
38
|
export * from './AttributeFilterGroupSchemaInner';
|
|
@@ -90,7 +87,6 @@ export * from './GetProjectShares200Response';
|
|
|
90
87
|
export * from './GetProjects200Response';
|
|
91
88
|
export * from './GetSharedArtifactVersionGroups200Response';
|
|
92
89
|
export * from './GetSharedInviteResponses200Response';
|
|
93
|
-
export * from './GetSharedInviteResponsesStatusesParameterInner';
|
|
94
90
|
export * from './InboundCallResponse';
|
|
95
91
|
export * from './InternalServerErrorResponse';
|
|
96
92
|
export * from './Invite';
|
|
@@ -120,7 +116,6 @@ export * from './Login200Response';
|
|
|
120
116
|
export * from './Login200ResponseAnyOf';
|
|
121
117
|
export * from './Login400Response';
|
|
122
118
|
export * from './Login400ResponseAnyOf';
|
|
123
|
-
export * from './Login400ResponseAnyOfError';
|
|
124
119
|
export * from './LoginRequest';
|
|
125
120
|
export * from './ModelFile';
|
|
126
121
|
export * from './Moderator';
|
|
@@ -129,7 +124,6 @@ export * from './ModeratorVisibility';
|
|
|
129
124
|
export * from './NotFoundErrorResponse';
|
|
130
125
|
export * from './NumberFilterSchema';
|
|
131
126
|
export * from './OpenAiModelConfig';
|
|
132
|
-
export * from './OpenAiModelConfigModel';
|
|
133
127
|
export * from './OptionKind';
|
|
134
128
|
export * from './Org';
|
|
135
129
|
export * from './OrgData';
|
|
@@ -195,7 +189,6 @@ export * from './SearchSharedResponseMessages200ResponseInner';
|
|
|
195
189
|
export * from './SearchSharedResponseMessagesRequest';
|
|
196
190
|
export * from './SearchSharedResponseMessagesRequestInviteResponseMessagesInner';
|
|
197
191
|
export * from './SelectFilterSchema';
|
|
198
|
-
export * from './SelectFilterSchemaKind';
|
|
199
192
|
export * from './ShareEntity';
|
|
200
193
|
export * from './ShareEntityConfig';
|
|
201
194
|
export * from './ShareEntityCreatedByKind';
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Fastify Template API
|
|
3
|
-
* API documentation using Swagger
|
|
4
|
-
*
|
|
5
|
-
* The version of the OpenAPI document: 1.0.0
|
|
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 ApiFilesFileIdSignedUrlPostRequestAction
|
|
16
|
-
*/
|
|
17
|
-
export interface ApiFilesFileIdSignedUrlPostRequestAction {
|
|
18
|
-
}
|
|
19
|
-
/**
|
|
20
|
-
* Check if a given object implements the ApiFilesFileIdSignedUrlPostRequestAction interface.
|
|
21
|
-
*/
|
|
22
|
-
export declare function instanceOfApiFilesFileIdSignedUrlPostRequestAction(value: object): value is ApiFilesFileIdSignedUrlPostRequestAction;
|
|
23
|
-
export declare function ApiFilesFileIdSignedUrlPostRequestActionFromJSON(json: any): ApiFilesFileIdSignedUrlPostRequestAction;
|
|
24
|
-
export declare function ApiFilesFileIdSignedUrlPostRequestActionFromJSONTyped(json: any, ignoreDiscriminator: boolean): ApiFilesFileIdSignedUrlPostRequestAction;
|
|
25
|
-
export declare function ApiFilesFileIdSignedUrlPostRequestActionToJSON(json: any): ApiFilesFileIdSignedUrlPostRequestAction;
|
|
26
|
-
export declare function ApiFilesFileIdSignedUrlPostRequestActionToJSONTyped(value?: ApiFilesFileIdSignedUrlPostRequestAction | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -1,39 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
/* tslint:disable */
|
|
3
|
-
/* eslint-disable */
|
|
4
|
-
/**
|
|
5
|
-
* Fastify Template API
|
|
6
|
-
* API documentation using Swagger
|
|
7
|
-
*
|
|
8
|
-
* The version of the OpenAPI document: 1.0.0
|
|
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.instanceOfApiFilesFileIdSignedUrlPostRequestAction = instanceOfApiFilesFileIdSignedUrlPostRequestAction;
|
|
17
|
-
exports.ApiFilesFileIdSignedUrlPostRequestActionFromJSON = ApiFilesFileIdSignedUrlPostRequestActionFromJSON;
|
|
18
|
-
exports.ApiFilesFileIdSignedUrlPostRequestActionFromJSONTyped = ApiFilesFileIdSignedUrlPostRequestActionFromJSONTyped;
|
|
19
|
-
exports.ApiFilesFileIdSignedUrlPostRequestActionToJSON = ApiFilesFileIdSignedUrlPostRequestActionToJSON;
|
|
20
|
-
exports.ApiFilesFileIdSignedUrlPostRequestActionToJSONTyped = ApiFilesFileIdSignedUrlPostRequestActionToJSONTyped;
|
|
21
|
-
/**
|
|
22
|
-
* Check if a given object implements the ApiFilesFileIdSignedUrlPostRequestAction interface.
|
|
23
|
-
*/
|
|
24
|
-
function instanceOfApiFilesFileIdSignedUrlPostRequestAction(value) {
|
|
25
|
-
return true;
|
|
26
|
-
}
|
|
27
|
-
function ApiFilesFileIdSignedUrlPostRequestActionFromJSON(json) {
|
|
28
|
-
return ApiFilesFileIdSignedUrlPostRequestActionFromJSONTyped(json, false);
|
|
29
|
-
}
|
|
30
|
-
function ApiFilesFileIdSignedUrlPostRequestActionFromJSONTyped(json, ignoreDiscriminator) {
|
|
31
|
-
return json;
|
|
32
|
-
}
|
|
33
|
-
function ApiFilesFileIdSignedUrlPostRequestActionToJSON(json) {
|
|
34
|
-
return ApiFilesFileIdSignedUrlPostRequestActionToJSONTyped(json, false);
|
|
35
|
-
}
|
|
36
|
-
function ApiFilesFileIdSignedUrlPostRequestActionToJSONTyped(value, ignoreDiscriminator) {
|
|
37
|
-
if (ignoreDiscriminator === void 0) { ignoreDiscriminator = false; }
|
|
38
|
-
return value;
|
|
39
|
-
}
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Fastify Template API
|
|
3
|
-
* API documentation using Swagger
|
|
4
|
-
*
|
|
5
|
-
* The version of the OpenAPI document: 1.0.0
|
|
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 ApiProjectsProjectIdAnalysisPostRequestKind
|
|
16
|
-
*/
|
|
17
|
-
export interface ApiProjectsProjectIdAnalysisPostRequestKind {
|
|
18
|
-
}
|
|
19
|
-
/**
|
|
20
|
-
* Check if a given object implements the ApiProjectsProjectIdAnalysisPostRequestKind interface.
|
|
21
|
-
*/
|
|
22
|
-
export declare function instanceOfApiProjectsProjectIdAnalysisPostRequestKind(value: object): value is ApiProjectsProjectIdAnalysisPostRequestKind;
|
|
23
|
-
export declare function ApiProjectsProjectIdAnalysisPostRequestKindFromJSON(json: any): ApiProjectsProjectIdAnalysisPostRequestKind;
|
|
24
|
-
export declare function ApiProjectsProjectIdAnalysisPostRequestKindFromJSONTyped(json: any, ignoreDiscriminator: boolean): ApiProjectsProjectIdAnalysisPostRequestKind;
|
|
25
|
-
export declare function ApiProjectsProjectIdAnalysisPostRequestKindToJSON(json: any): ApiProjectsProjectIdAnalysisPostRequestKind;
|
|
26
|
-
export declare function ApiProjectsProjectIdAnalysisPostRequestKindToJSONTyped(value?: ApiProjectsProjectIdAnalysisPostRequestKind | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -1,39 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
/* tslint:disable */
|
|
3
|
-
/* eslint-disable */
|
|
4
|
-
/**
|
|
5
|
-
* Fastify Template API
|
|
6
|
-
* API documentation using Swagger
|
|
7
|
-
*
|
|
8
|
-
* The version of the OpenAPI document: 1.0.0
|
|
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.instanceOfApiProjectsProjectIdAnalysisPostRequestKind = instanceOfApiProjectsProjectIdAnalysisPostRequestKind;
|
|
17
|
-
exports.ApiProjectsProjectIdAnalysisPostRequestKindFromJSON = ApiProjectsProjectIdAnalysisPostRequestKindFromJSON;
|
|
18
|
-
exports.ApiProjectsProjectIdAnalysisPostRequestKindFromJSONTyped = ApiProjectsProjectIdAnalysisPostRequestKindFromJSONTyped;
|
|
19
|
-
exports.ApiProjectsProjectIdAnalysisPostRequestKindToJSON = ApiProjectsProjectIdAnalysisPostRequestKindToJSON;
|
|
20
|
-
exports.ApiProjectsProjectIdAnalysisPostRequestKindToJSONTyped = ApiProjectsProjectIdAnalysisPostRequestKindToJSONTyped;
|
|
21
|
-
/**
|
|
22
|
-
* Check if a given object implements the ApiProjectsProjectIdAnalysisPostRequestKind interface.
|
|
23
|
-
*/
|
|
24
|
-
function instanceOfApiProjectsProjectIdAnalysisPostRequestKind(value) {
|
|
25
|
-
return true;
|
|
26
|
-
}
|
|
27
|
-
function ApiProjectsProjectIdAnalysisPostRequestKindFromJSON(json) {
|
|
28
|
-
return ApiProjectsProjectIdAnalysisPostRequestKindFromJSONTyped(json, false);
|
|
29
|
-
}
|
|
30
|
-
function ApiProjectsProjectIdAnalysisPostRequestKindFromJSONTyped(json, ignoreDiscriminator) {
|
|
31
|
-
return json;
|
|
32
|
-
}
|
|
33
|
-
function ApiProjectsProjectIdAnalysisPostRequestKindToJSON(json) {
|
|
34
|
-
return ApiProjectsProjectIdAnalysisPostRequestKindToJSONTyped(json, false);
|
|
35
|
-
}
|
|
36
|
-
function ApiProjectsProjectIdAnalysisPostRequestKindToJSONTyped(value, ignoreDiscriminator) {
|
|
37
|
-
if (ignoreDiscriminator === void 0) { ignoreDiscriminator = false; }
|
|
38
|
-
return value;
|
|
39
|
-
}
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Fastify Template API
|
|
3
|
-
* API documentation using Swagger
|
|
4
|
-
*
|
|
5
|
-
* The version of the OpenAPI document: 1.0.0
|
|
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 ArtifactMetadataStatus
|
|
16
|
-
*/
|
|
17
|
-
export interface ArtifactMetadataStatus {
|
|
18
|
-
}
|
|
19
|
-
/**
|
|
20
|
-
* Check if a given object implements the ArtifactMetadataStatus interface.
|
|
21
|
-
*/
|
|
22
|
-
export declare function instanceOfArtifactMetadataStatus(value: object): value is ArtifactMetadataStatus;
|
|
23
|
-
export declare function ArtifactMetadataStatusFromJSON(json: any): ArtifactMetadataStatus;
|
|
24
|
-
export declare function ArtifactMetadataStatusFromJSONTyped(json: any, ignoreDiscriminator: boolean): ArtifactMetadataStatus;
|
|
25
|
-
export declare function ArtifactMetadataStatusToJSON(json: any): ArtifactMetadataStatus;
|
|
26
|
-
export declare function ArtifactMetadataStatusToJSONTyped(value?: ArtifactMetadataStatus | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -1,39 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
/* tslint:disable */
|
|
3
|
-
/* eslint-disable */
|
|
4
|
-
/**
|
|
5
|
-
* Fastify Template API
|
|
6
|
-
* API documentation using Swagger
|
|
7
|
-
*
|
|
8
|
-
* The version of the OpenAPI document: 1.0.0
|
|
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.instanceOfArtifactMetadataStatus = instanceOfArtifactMetadataStatus;
|
|
17
|
-
exports.ArtifactMetadataStatusFromJSON = ArtifactMetadataStatusFromJSON;
|
|
18
|
-
exports.ArtifactMetadataStatusFromJSONTyped = ArtifactMetadataStatusFromJSONTyped;
|
|
19
|
-
exports.ArtifactMetadataStatusToJSON = ArtifactMetadataStatusToJSON;
|
|
20
|
-
exports.ArtifactMetadataStatusToJSONTyped = ArtifactMetadataStatusToJSONTyped;
|
|
21
|
-
/**
|
|
22
|
-
* Check if a given object implements the ArtifactMetadataStatus interface.
|
|
23
|
-
*/
|
|
24
|
-
function instanceOfArtifactMetadataStatus(value) {
|
|
25
|
-
return true;
|
|
26
|
-
}
|
|
27
|
-
function ArtifactMetadataStatusFromJSON(json) {
|
|
28
|
-
return ArtifactMetadataStatusFromJSONTyped(json, false);
|
|
29
|
-
}
|
|
30
|
-
function ArtifactMetadataStatusFromJSONTyped(json, ignoreDiscriminator) {
|
|
31
|
-
return json;
|
|
32
|
-
}
|
|
33
|
-
function ArtifactMetadataStatusToJSON(json) {
|
|
34
|
-
return ArtifactMetadataStatusToJSONTyped(json, false);
|
|
35
|
-
}
|
|
36
|
-
function ArtifactMetadataStatusToJSONTyped(value, ignoreDiscriminator) {
|
|
37
|
-
if (ignoreDiscriminator === void 0) { ignoreDiscriminator = false; }
|
|
38
|
-
return value;
|
|
39
|
-
}
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Fastify Template API
|
|
3
|
-
* API documentation using Swagger
|
|
4
|
-
*
|
|
5
|
-
* The version of the OpenAPI document: 1.0.0
|
|
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 GetSharedInviteResponsesStatusesParameterInner
|
|
16
|
-
*/
|
|
17
|
-
export interface GetSharedInviteResponsesStatusesParameterInner {
|
|
18
|
-
}
|
|
19
|
-
/**
|
|
20
|
-
* Check if a given object implements the GetSharedInviteResponsesStatusesParameterInner interface.
|
|
21
|
-
*/
|
|
22
|
-
export declare function instanceOfGetSharedInviteResponsesStatusesParameterInner(value: object): value is GetSharedInviteResponsesStatusesParameterInner;
|
|
23
|
-
export declare function GetSharedInviteResponsesStatusesParameterInnerFromJSON(json: any): GetSharedInviteResponsesStatusesParameterInner;
|
|
24
|
-
export declare function GetSharedInviteResponsesStatusesParameterInnerFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetSharedInviteResponsesStatusesParameterInner;
|
|
25
|
-
export declare function GetSharedInviteResponsesStatusesParameterInnerToJSON(json: any): GetSharedInviteResponsesStatusesParameterInner;
|
|
26
|
-
export declare function GetSharedInviteResponsesStatusesParameterInnerToJSONTyped(value?: GetSharedInviteResponsesStatusesParameterInner | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -1,39 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
/* tslint:disable */
|
|
3
|
-
/* eslint-disable */
|
|
4
|
-
/**
|
|
5
|
-
* Fastify Template API
|
|
6
|
-
* API documentation using Swagger
|
|
7
|
-
*
|
|
8
|
-
* The version of the OpenAPI document: 1.0.0
|
|
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.instanceOfGetSharedInviteResponsesStatusesParameterInner = instanceOfGetSharedInviteResponsesStatusesParameterInner;
|
|
17
|
-
exports.GetSharedInviteResponsesStatusesParameterInnerFromJSON = GetSharedInviteResponsesStatusesParameterInnerFromJSON;
|
|
18
|
-
exports.GetSharedInviteResponsesStatusesParameterInnerFromJSONTyped = GetSharedInviteResponsesStatusesParameterInnerFromJSONTyped;
|
|
19
|
-
exports.GetSharedInviteResponsesStatusesParameterInnerToJSON = GetSharedInviteResponsesStatusesParameterInnerToJSON;
|
|
20
|
-
exports.GetSharedInviteResponsesStatusesParameterInnerToJSONTyped = GetSharedInviteResponsesStatusesParameterInnerToJSONTyped;
|
|
21
|
-
/**
|
|
22
|
-
* Check if a given object implements the GetSharedInviteResponsesStatusesParameterInner interface.
|
|
23
|
-
*/
|
|
24
|
-
function instanceOfGetSharedInviteResponsesStatusesParameterInner(value) {
|
|
25
|
-
return true;
|
|
26
|
-
}
|
|
27
|
-
function GetSharedInviteResponsesStatusesParameterInnerFromJSON(json) {
|
|
28
|
-
return GetSharedInviteResponsesStatusesParameterInnerFromJSONTyped(json, false);
|
|
29
|
-
}
|
|
30
|
-
function GetSharedInviteResponsesStatusesParameterInnerFromJSONTyped(json, ignoreDiscriminator) {
|
|
31
|
-
return json;
|
|
32
|
-
}
|
|
33
|
-
function GetSharedInviteResponsesStatusesParameterInnerToJSON(json) {
|
|
34
|
-
return GetSharedInviteResponsesStatusesParameterInnerToJSONTyped(json, false);
|
|
35
|
-
}
|
|
36
|
-
function GetSharedInviteResponsesStatusesParameterInnerToJSONTyped(value, ignoreDiscriminator) {
|
|
37
|
-
if (ignoreDiscriminator === void 0) { ignoreDiscriminator = false; }
|
|
38
|
-
return value;
|
|
39
|
-
}
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Fastify Template API
|
|
3
|
-
* API documentation using Swagger
|
|
4
|
-
*
|
|
5
|
-
* The version of the OpenAPI document: 1.0.0
|
|
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 Login400ResponseAnyOfError
|
|
16
|
-
*/
|
|
17
|
-
export interface Login400ResponseAnyOfError {
|
|
18
|
-
}
|
|
19
|
-
/**
|
|
20
|
-
* Check if a given object implements the Login400ResponseAnyOfError interface.
|
|
21
|
-
*/
|
|
22
|
-
export declare function instanceOfLogin400ResponseAnyOfError(value: object): value is Login400ResponseAnyOfError;
|
|
23
|
-
export declare function Login400ResponseAnyOfErrorFromJSON(json: any): Login400ResponseAnyOfError;
|
|
24
|
-
export declare function Login400ResponseAnyOfErrorFromJSONTyped(json: any, ignoreDiscriminator: boolean): Login400ResponseAnyOfError;
|
|
25
|
-
export declare function Login400ResponseAnyOfErrorToJSON(json: any): Login400ResponseAnyOfError;
|
|
26
|
-
export declare function Login400ResponseAnyOfErrorToJSONTyped(value?: Login400ResponseAnyOfError | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -1,39 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
/* tslint:disable */
|
|
3
|
-
/* eslint-disable */
|
|
4
|
-
/**
|
|
5
|
-
* Fastify Template API
|
|
6
|
-
* API documentation using Swagger
|
|
7
|
-
*
|
|
8
|
-
* The version of the OpenAPI document: 1.0.0
|
|
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.instanceOfLogin400ResponseAnyOfError = instanceOfLogin400ResponseAnyOfError;
|
|
17
|
-
exports.Login400ResponseAnyOfErrorFromJSON = Login400ResponseAnyOfErrorFromJSON;
|
|
18
|
-
exports.Login400ResponseAnyOfErrorFromJSONTyped = Login400ResponseAnyOfErrorFromJSONTyped;
|
|
19
|
-
exports.Login400ResponseAnyOfErrorToJSON = Login400ResponseAnyOfErrorToJSON;
|
|
20
|
-
exports.Login400ResponseAnyOfErrorToJSONTyped = Login400ResponseAnyOfErrorToJSONTyped;
|
|
21
|
-
/**
|
|
22
|
-
* Check if a given object implements the Login400ResponseAnyOfError interface.
|
|
23
|
-
*/
|
|
24
|
-
function instanceOfLogin400ResponseAnyOfError(value) {
|
|
25
|
-
return true;
|
|
26
|
-
}
|
|
27
|
-
function Login400ResponseAnyOfErrorFromJSON(json) {
|
|
28
|
-
return Login400ResponseAnyOfErrorFromJSONTyped(json, false);
|
|
29
|
-
}
|
|
30
|
-
function Login400ResponseAnyOfErrorFromJSONTyped(json, ignoreDiscriminator) {
|
|
31
|
-
return json;
|
|
32
|
-
}
|
|
33
|
-
function Login400ResponseAnyOfErrorToJSON(json) {
|
|
34
|
-
return Login400ResponseAnyOfErrorToJSONTyped(json, false);
|
|
35
|
-
}
|
|
36
|
-
function Login400ResponseAnyOfErrorToJSONTyped(value, ignoreDiscriminator) {
|
|
37
|
-
if (ignoreDiscriminator === void 0) { ignoreDiscriminator = false; }
|
|
38
|
-
return value;
|
|
39
|
-
}
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Fastify Template API
|
|
3
|
-
* API documentation using Swagger
|
|
4
|
-
*
|
|
5
|
-
* The version of the OpenAPI document: 1.0.0
|
|
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 OpenAiModelConfigModel
|
|
16
|
-
*/
|
|
17
|
-
export interface OpenAiModelConfigModel {
|
|
18
|
-
}
|
|
19
|
-
/**
|
|
20
|
-
* Check if a given object implements the OpenAiModelConfigModel interface.
|
|
21
|
-
*/
|
|
22
|
-
export declare function instanceOfOpenAiModelConfigModel(value: object): value is OpenAiModelConfigModel;
|
|
23
|
-
export declare function OpenAiModelConfigModelFromJSON(json: any): OpenAiModelConfigModel;
|
|
24
|
-
export declare function OpenAiModelConfigModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): OpenAiModelConfigModel;
|
|
25
|
-
export declare function OpenAiModelConfigModelToJSON(json: any): OpenAiModelConfigModel;
|
|
26
|
-
export declare function OpenAiModelConfigModelToJSONTyped(value?: OpenAiModelConfigModel | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -1,39 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
/* tslint:disable */
|
|
3
|
-
/* eslint-disable */
|
|
4
|
-
/**
|
|
5
|
-
* Fastify Template API
|
|
6
|
-
* API documentation using Swagger
|
|
7
|
-
*
|
|
8
|
-
* The version of the OpenAPI document: 1.0.0
|
|
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.instanceOfOpenAiModelConfigModel = instanceOfOpenAiModelConfigModel;
|
|
17
|
-
exports.OpenAiModelConfigModelFromJSON = OpenAiModelConfigModelFromJSON;
|
|
18
|
-
exports.OpenAiModelConfigModelFromJSONTyped = OpenAiModelConfigModelFromJSONTyped;
|
|
19
|
-
exports.OpenAiModelConfigModelToJSON = OpenAiModelConfigModelToJSON;
|
|
20
|
-
exports.OpenAiModelConfigModelToJSONTyped = OpenAiModelConfigModelToJSONTyped;
|
|
21
|
-
/**
|
|
22
|
-
* Check if a given object implements the OpenAiModelConfigModel interface.
|
|
23
|
-
*/
|
|
24
|
-
function instanceOfOpenAiModelConfigModel(value) {
|
|
25
|
-
return true;
|
|
26
|
-
}
|
|
27
|
-
function OpenAiModelConfigModelFromJSON(json) {
|
|
28
|
-
return OpenAiModelConfigModelFromJSONTyped(json, false);
|
|
29
|
-
}
|
|
30
|
-
function OpenAiModelConfigModelFromJSONTyped(json, ignoreDiscriminator) {
|
|
31
|
-
return json;
|
|
32
|
-
}
|
|
33
|
-
function OpenAiModelConfigModelToJSON(json) {
|
|
34
|
-
return OpenAiModelConfigModelToJSONTyped(json, false);
|
|
35
|
-
}
|
|
36
|
-
function OpenAiModelConfigModelToJSONTyped(value, ignoreDiscriminator) {
|
|
37
|
-
if (ignoreDiscriminator === void 0) { ignoreDiscriminator = false; }
|
|
38
|
-
return value;
|
|
39
|
-
}
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Fastify Template API
|
|
3
|
-
* API documentation using Swagger
|
|
4
|
-
*
|
|
5
|
-
* The version of the OpenAPI document: 1.0.0
|
|
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 SelectFilterSchemaKind
|
|
16
|
-
*/
|
|
17
|
-
export interface SelectFilterSchemaKind {
|
|
18
|
-
}
|
|
19
|
-
/**
|
|
20
|
-
* Check if a given object implements the SelectFilterSchemaKind interface.
|
|
21
|
-
*/
|
|
22
|
-
export declare function instanceOfSelectFilterSchemaKind(value: object): value is SelectFilterSchemaKind;
|
|
23
|
-
export declare function SelectFilterSchemaKindFromJSON(json: any): SelectFilterSchemaKind;
|
|
24
|
-
export declare function SelectFilterSchemaKindFromJSONTyped(json: any, ignoreDiscriminator: boolean): SelectFilterSchemaKind;
|
|
25
|
-
export declare function SelectFilterSchemaKindToJSON(json: any): SelectFilterSchemaKind;
|
|
26
|
-
export declare function SelectFilterSchemaKindToJSONTyped(value?: SelectFilterSchemaKind | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -1,39 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
/* tslint:disable */
|
|
3
|
-
/* eslint-disable */
|
|
4
|
-
/**
|
|
5
|
-
* Fastify Template API
|
|
6
|
-
* API documentation using Swagger
|
|
7
|
-
*
|
|
8
|
-
* The version of the OpenAPI document: 1.0.0
|
|
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.instanceOfSelectFilterSchemaKind = instanceOfSelectFilterSchemaKind;
|
|
17
|
-
exports.SelectFilterSchemaKindFromJSON = SelectFilterSchemaKindFromJSON;
|
|
18
|
-
exports.SelectFilterSchemaKindFromJSONTyped = SelectFilterSchemaKindFromJSONTyped;
|
|
19
|
-
exports.SelectFilterSchemaKindToJSON = SelectFilterSchemaKindToJSON;
|
|
20
|
-
exports.SelectFilterSchemaKindToJSONTyped = SelectFilterSchemaKindToJSONTyped;
|
|
21
|
-
/**
|
|
22
|
-
* Check if a given object implements the SelectFilterSchemaKind interface.
|
|
23
|
-
*/
|
|
24
|
-
function instanceOfSelectFilterSchemaKind(value) {
|
|
25
|
-
return true;
|
|
26
|
-
}
|
|
27
|
-
function SelectFilterSchemaKindFromJSON(json) {
|
|
28
|
-
return SelectFilterSchemaKindFromJSONTyped(json, false);
|
|
29
|
-
}
|
|
30
|
-
function SelectFilterSchemaKindFromJSONTyped(json, ignoreDiscriminator) {
|
|
31
|
-
return json;
|
|
32
|
-
}
|
|
33
|
-
function SelectFilterSchemaKindToJSON(json) {
|
|
34
|
-
return SelectFilterSchemaKindToJSONTyped(json, false);
|
|
35
|
-
}
|
|
36
|
-
function SelectFilterSchemaKindToJSONTyped(value, ignoreDiscriminator) {
|
|
37
|
-
if (ignoreDiscriminator === void 0) { ignoreDiscriminator = false; }
|
|
38
|
-
return value;
|
|
39
|
-
}
|