keplar-api 0.0.19 → 0.0.21
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
|
@@ -1,46 +0,0 @@
|
|
|
1
|
-
/* tslint:disable */
|
|
2
|
-
/* eslint-disable */
|
|
3
|
-
/**
|
|
4
|
-
* Fastify Template API
|
|
5
|
-
* API documentation using Swagger
|
|
6
|
-
*
|
|
7
|
-
* The version of the OpenAPI document: 1.0.0
|
|
8
|
-
*
|
|
9
|
-
*
|
|
10
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
-
* https://openapi-generator.tech
|
|
12
|
-
* Do not edit the class manually.
|
|
13
|
-
*/
|
|
14
|
-
|
|
15
|
-
import { mapValues } from '../runtime';
|
|
16
|
-
/**
|
|
17
|
-
*
|
|
18
|
-
* @export
|
|
19
|
-
* @interface ApiFilesFileIdSignedUrlPostRequestAction
|
|
20
|
-
*/
|
|
21
|
-
export interface ApiFilesFileIdSignedUrlPostRequestAction {
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
/**
|
|
25
|
-
* Check if a given object implements the ApiFilesFileIdSignedUrlPostRequestAction interface.
|
|
26
|
-
*/
|
|
27
|
-
export function instanceOfApiFilesFileIdSignedUrlPostRequestAction(value: object): value is ApiFilesFileIdSignedUrlPostRequestAction {
|
|
28
|
-
return true;
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
export function ApiFilesFileIdSignedUrlPostRequestActionFromJSON(json: any): ApiFilesFileIdSignedUrlPostRequestAction {
|
|
32
|
-
return ApiFilesFileIdSignedUrlPostRequestActionFromJSONTyped(json, false);
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
export function ApiFilesFileIdSignedUrlPostRequestActionFromJSONTyped(json: any, ignoreDiscriminator: boolean): ApiFilesFileIdSignedUrlPostRequestAction {
|
|
36
|
-
return json;
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
export function ApiFilesFileIdSignedUrlPostRequestActionToJSON(json: any): ApiFilesFileIdSignedUrlPostRequestAction {
|
|
40
|
-
return ApiFilesFileIdSignedUrlPostRequestActionToJSONTyped(json, false);
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
export function ApiFilesFileIdSignedUrlPostRequestActionToJSONTyped(value?: ApiFilesFileIdSignedUrlPostRequestAction | null, ignoreDiscriminator: boolean = false): any {
|
|
44
|
-
return value;
|
|
45
|
-
}
|
|
46
|
-
|
|
@@ -1,46 +0,0 @@
|
|
|
1
|
-
/* tslint:disable */
|
|
2
|
-
/* eslint-disable */
|
|
3
|
-
/**
|
|
4
|
-
* Fastify Template API
|
|
5
|
-
* API documentation using Swagger
|
|
6
|
-
*
|
|
7
|
-
* The version of the OpenAPI document: 1.0.0
|
|
8
|
-
*
|
|
9
|
-
*
|
|
10
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
-
* https://openapi-generator.tech
|
|
12
|
-
* Do not edit the class manually.
|
|
13
|
-
*/
|
|
14
|
-
|
|
15
|
-
import { mapValues } from '../runtime';
|
|
16
|
-
/**
|
|
17
|
-
*
|
|
18
|
-
* @export
|
|
19
|
-
* @interface ApiProjectsProjectIdAnalysisPostRequestKind
|
|
20
|
-
*/
|
|
21
|
-
export interface ApiProjectsProjectIdAnalysisPostRequestKind {
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
/**
|
|
25
|
-
* Check if a given object implements the ApiProjectsProjectIdAnalysisPostRequestKind interface.
|
|
26
|
-
*/
|
|
27
|
-
export function instanceOfApiProjectsProjectIdAnalysisPostRequestKind(value: object): value is ApiProjectsProjectIdAnalysisPostRequestKind {
|
|
28
|
-
return true;
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
export function ApiProjectsProjectIdAnalysisPostRequestKindFromJSON(json: any): ApiProjectsProjectIdAnalysisPostRequestKind {
|
|
32
|
-
return ApiProjectsProjectIdAnalysisPostRequestKindFromJSONTyped(json, false);
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
export function ApiProjectsProjectIdAnalysisPostRequestKindFromJSONTyped(json: any, ignoreDiscriminator: boolean): ApiProjectsProjectIdAnalysisPostRequestKind {
|
|
36
|
-
return json;
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
export function ApiProjectsProjectIdAnalysisPostRequestKindToJSON(json: any): ApiProjectsProjectIdAnalysisPostRequestKind {
|
|
40
|
-
return ApiProjectsProjectIdAnalysisPostRequestKindToJSONTyped(json, false);
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
export function ApiProjectsProjectIdAnalysisPostRequestKindToJSONTyped(value?: ApiProjectsProjectIdAnalysisPostRequestKind | null, ignoreDiscriminator: boolean = false): any {
|
|
44
|
-
return value;
|
|
45
|
-
}
|
|
46
|
-
|
|
@@ -1,46 +0,0 @@
|
|
|
1
|
-
/* tslint:disable */
|
|
2
|
-
/* eslint-disable */
|
|
3
|
-
/**
|
|
4
|
-
* Fastify Template API
|
|
5
|
-
* API documentation using Swagger
|
|
6
|
-
*
|
|
7
|
-
* The version of the OpenAPI document: 1.0.0
|
|
8
|
-
*
|
|
9
|
-
*
|
|
10
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
-
* https://openapi-generator.tech
|
|
12
|
-
* Do not edit the class manually.
|
|
13
|
-
*/
|
|
14
|
-
|
|
15
|
-
import { mapValues } from '../runtime';
|
|
16
|
-
/**
|
|
17
|
-
*
|
|
18
|
-
* @export
|
|
19
|
-
* @interface ArtifactMetadataStatus
|
|
20
|
-
*/
|
|
21
|
-
export interface ArtifactMetadataStatus {
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
/**
|
|
25
|
-
* Check if a given object implements the ArtifactMetadataStatus interface.
|
|
26
|
-
*/
|
|
27
|
-
export function instanceOfArtifactMetadataStatus(value: object): value is ArtifactMetadataStatus {
|
|
28
|
-
return true;
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
export function ArtifactMetadataStatusFromJSON(json: any): ArtifactMetadataStatus {
|
|
32
|
-
return ArtifactMetadataStatusFromJSONTyped(json, false);
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
export function ArtifactMetadataStatusFromJSONTyped(json: any, ignoreDiscriminator: boolean): ArtifactMetadataStatus {
|
|
36
|
-
return json;
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
export function ArtifactMetadataStatusToJSON(json: any): ArtifactMetadataStatus {
|
|
40
|
-
return ArtifactMetadataStatusToJSONTyped(json, false);
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
export function ArtifactMetadataStatusToJSONTyped(value?: ArtifactMetadataStatus | null, ignoreDiscriminator: boolean = false): any {
|
|
44
|
-
return value;
|
|
45
|
-
}
|
|
46
|
-
|
|
@@ -1,46 +0,0 @@
|
|
|
1
|
-
/* tslint:disable */
|
|
2
|
-
/* eslint-disable */
|
|
3
|
-
/**
|
|
4
|
-
* Fastify Template API
|
|
5
|
-
* API documentation using Swagger
|
|
6
|
-
*
|
|
7
|
-
* The version of the OpenAPI document: 1.0.0
|
|
8
|
-
*
|
|
9
|
-
*
|
|
10
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
-
* https://openapi-generator.tech
|
|
12
|
-
* Do not edit the class manually.
|
|
13
|
-
*/
|
|
14
|
-
|
|
15
|
-
import { mapValues } from '../runtime';
|
|
16
|
-
/**
|
|
17
|
-
*
|
|
18
|
-
* @export
|
|
19
|
-
* @interface GetSharedInviteResponsesStatusesParameterInner
|
|
20
|
-
*/
|
|
21
|
-
export interface GetSharedInviteResponsesStatusesParameterInner {
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
/**
|
|
25
|
-
* Check if a given object implements the GetSharedInviteResponsesStatusesParameterInner interface.
|
|
26
|
-
*/
|
|
27
|
-
export function instanceOfGetSharedInviteResponsesStatusesParameterInner(value: object): value is GetSharedInviteResponsesStatusesParameterInner {
|
|
28
|
-
return true;
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
export function GetSharedInviteResponsesStatusesParameterInnerFromJSON(json: any): GetSharedInviteResponsesStatusesParameterInner {
|
|
32
|
-
return GetSharedInviteResponsesStatusesParameterInnerFromJSONTyped(json, false);
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
export function GetSharedInviteResponsesStatusesParameterInnerFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetSharedInviteResponsesStatusesParameterInner {
|
|
36
|
-
return json;
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
export function GetSharedInviteResponsesStatusesParameterInnerToJSON(json: any): GetSharedInviteResponsesStatusesParameterInner {
|
|
40
|
-
return GetSharedInviteResponsesStatusesParameterInnerToJSONTyped(json, false);
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
export function GetSharedInviteResponsesStatusesParameterInnerToJSONTyped(value?: GetSharedInviteResponsesStatusesParameterInner | null, ignoreDiscriminator: boolean = false): any {
|
|
44
|
-
return value;
|
|
45
|
-
}
|
|
46
|
-
|
|
@@ -1,46 +0,0 @@
|
|
|
1
|
-
/* tslint:disable */
|
|
2
|
-
/* eslint-disable */
|
|
3
|
-
/**
|
|
4
|
-
* Fastify Template API
|
|
5
|
-
* API documentation using Swagger
|
|
6
|
-
*
|
|
7
|
-
* The version of the OpenAPI document: 1.0.0
|
|
8
|
-
*
|
|
9
|
-
*
|
|
10
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
-
* https://openapi-generator.tech
|
|
12
|
-
* Do not edit the class manually.
|
|
13
|
-
*/
|
|
14
|
-
|
|
15
|
-
import { mapValues } from '../runtime';
|
|
16
|
-
/**
|
|
17
|
-
*
|
|
18
|
-
* @export
|
|
19
|
-
* @interface Login400ResponseAnyOfError
|
|
20
|
-
*/
|
|
21
|
-
export interface Login400ResponseAnyOfError {
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
/**
|
|
25
|
-
* Check if a given object implements the Login400ResponseAnyOfError interface.
|
|
26
|
-
*/
|
|
27
|
-
export function instanceOfLogin400ResponseAnyOfError(value: object): value is Login400ResponseAnyOfError {
|
|
28
|
-
return true;
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
export function Login400ResponseAnyOfErrorFromJSON(json: any): Login400ResponseAnyOfError {
|
|
32
|
-
return Login400ResponseAnyOfErrorFromJSONTyped(json, false);
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
export function Login400ResponseAnyOfErrorFromJSONTyped(json: any, ignoreDiscriminator: boolean): Login400ResponseAnyOfError {
|
|
36
|
-
return json;
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
export function Login400ResponseAnyOfErrorToJSON(json: any): Login400ResponseAnyOfError {
|
|
40
|
-
return Login400ResponseAnyOfErrorToJSONTyped(json, false);
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
export function Login400ResponseAnyOfErrorToJSONTyped(value?: Login400ResponseAnyOfError | null, ignoreDiscriminator: boolean = false): any {
|
|
44
|
-
return value;
|
|
45
|
-
}
|
|
46
|
-
|
|
@@ -1,46 +0,0 @@
|
|
|
1
|
-
/* tslint:disable */
|
|
2
|
-
/* eslint-disable */
|
|
3
|
-
/**
|
|
4
|
-
* Fastify Template API
|
|
5
|
-
* API documentation using Swagger
|
|
6
|
-
*
|
|
7
|
-
* The version of the OpenAPI document: 1.0.0
|
|
8
|
-
*
|
|
9
|
-
*
|
|
10
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
-
* https://openapi-generator.tech
|
|
12
|
-
* Do not edit the class manually.
|
|
13
|
-
*/
|
|
14
|
-
|
|
15
|
-
import { mapValues } from '../runtime';
|
|
16
|
-
/**
|
|
17
|
-
*
|
|
18
|
-
* @export
|
|
19
|
-
* @interface OpenAiModelConfigModel
|
|
20
|
-
*/
|
|
21
|
-
export interface OpenAiModelConfigModel {
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
/**
|
|
25
|
-
* Check if a given object implements the OpenAiModelConfigModel interface.
|
|
26
|
-
*/
|
|
27
|
-
export function instanceOfOpenAiModelConfigModel(value: object): value is OpenAiModelConfigModel {
|
|
28
|
-
return true;
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
export function OpenAiModelConfigModelFromJSON(json: any): OpenAiModelConfigModel {
|
|
32
|
-
return OpenAiModelConfigModelFromJSONTyped(json, false);
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
export function OpenAiModelConfigModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): OpenAiModelConfigModel {
|
|
36
|
-
return json;
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
export function OpenAiModelConfigModelToJSON(json: any): OpenAiModelConfigModel {
|
|
40
|
-
return OpenAiModelConfigModelToJSONTyped(json, false);
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
export function OpenAiModelConfigModelToJSONTyped(value?: OpenAiModelConfigModel | null, ignoreDiscriminator: boolean = false): any {
|
|
44
|
-
return value;
|
|
45
|
-
}
|
|
46
|
-
|
|
@@ -1,46 +0,0 @@
|
|
|
1
|
-
/* tslint:disable */
|
|
2
|
-
/* eslint-disable */
|
|
3
|
-
/**
|
|
4
|
-
* Fastify Template API
|
|
5
|
-
* API documentation using Swagger
|
|
6
|
-
*
|
|
7
|
-
* The version of the OpenAPI document: 1.0.0
|
|
8
|
-
*
|
|
9
|
-
*
|
|
10
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
-
* https://openapi-generator.tech
|
|
12
|
-
* Do not edit the class manually.
|
|
13
|
-
*/
|
|
14
|
-
|
|
15
|
-
import { mapValues } from '../runtime';
|
|
16
|
-
/**
|
|
17
|
-
*
|
|
18
|
-
* @export
|
|
19
|
-
* @interface SelectFilterSchemaKind
|
|
20
|
-
*/
|
|
21
|
-
export interface SelectFilterSchemaKind {
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
/**
|
|
25
|
-
* Check if a given object implements the SelectFilterSchemaKind interface.
|
|
26
|
-
*/
|
|
27
|
-
export function instanceOfSelectFilterSchemaKind(value: object): value is SelectFilterSchemaKind {
|
|
28
|
-
return true;
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
export function SelectFilterSchemaKindFromJSON(json: any): SelectFilterSchemaKind {
|
|
32
|
-
return SelectFilterSchemaKindFromJSONTyped(json, false);
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
export function SelectFilterSchemaKindFromJSONTyped(json: any, ignoreDiscriminator: boolean): SelectFilterSchemaKind {
|
|
36
|
-
return json;
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
export function SelectFilterSchemaKindToJSON(json: any): SelectFilterSchemaKind {
|
|
40
|
-
return SelectFilterSchemaKindToJSONTyped(json, false);
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
export function SelectFilterSchemaKindToJSONTyped(value?: SelectFilterSchemaKind | null, ignoreDiscriminator: boolean = false): any {
|
|
44
|
-
return value;
|
|
45
|
-
}
|
|
46
|
-
|