@knowledge-stack/ksapi 1.0.2 → 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.openapi-generator/FILES +29 -0
- package/README.md +2 -2
- package/dist/apis/AuthApi.d.ts +299 -0
- package/dist/apis/AuthApi.js +380 -0
- package/dist/apis/DefaultApi.d.ts +17 -17
- package/dist/apis/DefaultApi.js +11 -16
- package/dist/apis/InvitesApi.d.ts +119 -0
- package/dist/apis/InvitesApi.js +143 -0
- package/dist/apis/TenantsApi.d.ts +208 -0
- package/dist/apis/TenantsApi.js +238 -0
- package/dist/apis/UsersApi.d.ts +82 -0
- package/dist/apis/UsersApi.js +94 -0
- package/dist/apis/index.d.ts +4 -0
- package/dist/apis/index.js +4 -0
- package/dist/esm/apis/AuthApi.d.ts +299 -0
- package/dist/esm/apis/AuthApi.js +376 -0
- package/dist/esm/apis/DefaultApi.d.ts +17 -17
- package/dist/esm/apis/DefaultApi.js +12 -17
- package/dist/esm/apis/InvitesApi.d.ts +119 -0
- package/dist/esm/apis/InvitesApi.js +139 -0
- package/dist/esm/apis/TenantsApi.d.ts +208 -0
- package/dist/esm/apis/TenantsApi.js +234 -0
- package/dist/esm/apis/UsersApi.d.ts +82 -0
- package/dist/esm/apis/UsersApi.js +90 -0
- package/dist/esm/apis/index.d.ts +4 -0
- package/dist/esm/apis/index.js +4 -0
- package/dist/esm/models/CreatePasswordUserRequest.d.ts +53 -0
- package/dist/esm/models/CreatePasswordUserRequest.js +52 -0
- package/dist/esm/models/CreateTenantRequest.d.ts +54 -0
- package/dist/esm/models/CreateTenantRequest.js +47 -0
- package/dist/esm/models/EmailSentResponse.d.ts +47 -0
- package/dist/esm/models/EmailSentResponse.js +44 -0
- package/dist/esm/models/EmailVerificationRequest.d.ts +47 -0
- package/dist/esm/models/EmailVerificationRequest.js +44 -0
- package/dist/esm/models/HTTPValidationError.d.ts +48 -0
- package/dist/esm/models/HTTPValidationError.js +43 -0
- package/dist/esm/models/HealthCheckResponse.d.ts +0 -5
- package/dist/esm/models/HealthCheckResponse.js +8 -3
- package/dist/esm/models/IdpType.d.ts +26 -0
- package/dist/esm/models/IdpType.js +44 -0
- package/dist/esm/models/InviteResponse.d.ts +95 -0
- package/dist/esm/models/InviteResponse.js +72 -0
- package/dist/esm/models/InviteStatus.d.ts +26 -0
- package/dist/esm/models/InviteStatus.js +44 -0
- package/dist/esm/models/InviteUserRequest.d.ts +60 -0
- package/dist/esm/models/InviteUserRequest.js +51 -0
- package/dist/esm/models/OAuth2Config.d.ts +65 -0
- package/dist/esm/models/OAuth2Config.js +56 -0
- package/dist/esm/models/PaginatedResponseInviteResponse.d.ts +66 -0
- package/dist/esm/models/PaginatedResponseInviteResponse.js +70 -0
- package/dist/esm/models/PaginatedResponseTenantResponse.d.ts +66 -0
- package/dist/esm/models/PaginatedResponseTenantResponse.js +70 -0
- package/dist/esm/models/PaginatedResponseTenantUserInTenantResponse.d.ts +66 -0
- package/dist/esm/models/PaginatedResponseTenantUserInTenantResponse.js +70 -0
- package/dist/esm/models/PasswordResetRequest.d.ts +53 -0
- package/dist/esm/models/PasswordResetRequest.js +52 -0
- package/dist/esm/models/PasswordResetWithTokenRequest.d.ts +59 -0
- package/dist/esm/models/PasswordResetWithTokenRequest.js +56 -0
- package/dist/esm/models/RootResponse.d.ts +53 -0
- package/dist/esm/models/RootResponse.js +44 -0
- package/dist/esm/models/SignInRequest.d.ts +59 -0
- package/dist/esm/models/SignInRequest.js +50 -0
- package/dist/esm/models/TenantResponse.d.ts +61 -0
- package/dist/esm/models/TenantResponse.js +50 -0
- package/dist/esm/models/TenantUserInTenantResponse.d.ts +66 -0
- package/dist/esm/models/TenantUserInTenantResponse.js +55 -0
- package/dist/esm/models/TenantUserRole.d.ts +26 -0
- package/dist/esm/models/TenantUserRole.js +44 -0
- package/dist/esm/models/UpdateTenantRequest.d.ts +54 -0
- package/dist/esm/models/UpdateTenantRequest.js +45 -0
- package/dist/esm/models/UpdateUserRequest.d.ts +47 -0
- package/dist/esm/models/UpdateUserRequest.js +44 -0
- package/dist/esm/models/UserResponse.d.ts +79 -0
- package/dist/esm/models/UserResponse.js +66 -0
- package/dist/esm/models/ValidationError.d.ts +60 -0
- package/dist/esm/models/ValidationError.js +53 -0
- package/dist/esm/models/ValidationErrorLocInner.d.ts +41 -0
- package/dist/esm/models/ValidationErrorLocInner.js +32 -0
- package/dist/esm/models/index.d.ts +25 -0
- package/dist/esm/models/index.js +25 -0
- package/dist/models/CreatePasswordUserRequest.d.ts +53 -0
- package/dist/models/CreatePasswordUserRequest.js +60 -0
- package/dist/models/CreateTenantRequest.d.ts +54 -0
- package/dist/models/CreateTenantRequest.js +55 -0
- package/dist/models/EmailSentResponse.d.ts +47 -0
- package/dist/models/EmailSentResponse.js +52 -0
- package/dist/models/EmailVerificationRequest.d.ts +47 -0
- package/dist/models/EmailVerificationRequest.js +52 -0
- package/dist/models/HTTPValidationError.d.ts +48 -0
- package/dist/models/HTTPValidationError.js +51 -0
- package/dist/models/HealthCheckResponse.d.ts +0 -5
- package/dist/models/HealthCheckResponse.js +9 -4
- package/dist/models/IdpType.d.ts +26 -0
- package/dist/models/IdpType.js +52 -0
- package/dist/models/InviteResponse.d.ts +95 -0
- package/dist/models/InviteResponse.js +80 -0
- package/dist/models/InviteStatus.d.ts +26 -0
- package/dist/models/InviteStatus.js +52 -0
- package/dist/models/InviteUserRequest.d.ts +60 -0
- package/dist/models/InviteUserRequest.js +59 -0
- package/dist/models/OAuth2Config.d.ts +65 -0
- package/dist/models/OAuth2Config.js +64 -0
- package/dist/models/PaginatedResponseInviteResponse.d.ts +66 -0
- package/dist/models/PaginatedResponseInviteResponse.js +78 -0
- package/dist/models/PaginatedResponseTenantResponse.d.ts +66 -0
- package/dist/models/PaginatedResponseTenantResponse.js +78 -0
- package/dist/models/PaginatedResponseTenantUserInTenantResponse.d.ts +66 -0
- package/dist/models/PaginatedResponseTenantUserInTenantResponse.js +78 -0
- package/dist/models/PasswordResetRequest.d.ts +53 -0
- package/dist/models/PasswordResetRequest.js +60 -0
- package/dist/models/PasswordResetWithTokenRequest.d.ts +59 -0
- package/dist/models/PasswordResetWithTokenRequest.js +64 -0
- package/dist/models/RootResponse.d.ts +53 -0
- package/dist/models/RootResponse.js +52 -0
- package/dist/models/SignInRequest.d.ts +59 -0
- package/dist/models/SignInRequest.js +58 -0
- package/dist/models/TenantResponse.d.ts +61 -0
- package/dist/models/TenantResponse.js +58 -0
- package/dist/models/TenantUserInTenantResponse.d.ts +66 -0
- package/dist/models/TenantUserInTenantResponse.js +63 -0
- package/dist/models/TenantUserRole.d.ts +26 -0
- package/dist/models/TenantUserRole.js +52 -0
- package/dist/models/UpdateTenantRequest.d.ts +54 -0
- package/dist/models/UpdateTenantRequest.js +53 -0
- package/dist/models/UpdateUserRequest.d.ts +47 -0
- package/dist/models/UpdateUserRequest.js +52 -0
- package/dist/models/UserResponse.d.ts +79 -0
- package/dist/models/UserResponse.js +74 -0
- package/dist/models/ValidationError.d.ts +60 -0
- package/dist/models/ValidationError.js +61 -0
- package/dist/models/ValidationErrorLocInner.d.ts +41 -0
- package/dist/models/ValidationErrorLocInner.js +40 -0
- package/dist/models/index.d.ts +25 -0
- package/dist/models/index.js +25 -0
- package/package.json +1 -1
- package/src/apis/AuthApi.ts +693 -0
- package/src/apis/DefaultApi.ts +22 -23
- package/src/apis/InvitesApi.ts +254 -0
- package/src/apis/TenantsApi.ts +447 -0
- package/src/apis/UsersApi.ts +159 -0
- package/src/apis/index.ts +4 -0
- package/src/models/CreatePasswordUserRequest.ts +95 -0
- package/src/models/CreateTenantRequest.ts +99 -0
- package/src/models/EmailSentResponse.ts +83 -0
- package/src/models/EmailVerificationRequest.ts +83 -0
- package/src/models/HTTPValidationError.ts +90 -0
- package/src/models/HealthCheckResponse.ts +0 -6
- package/src/models/IdpType.ts +54 -0
- package/src/models/InviteResponse.ts +153 -0
- package/src/models/InviteStatus.ts +54 -0
- package/src/models/InviteUserRequest.ts +110 -0
- package/src/models/OAuth2Config.ts +110 -0
- package/src/models/PaginatedResponseInviteResponse.ts +130 -0
- package/src/models/PaginatedResponseTenantResponse.ts +130 -0
- package/src/models/PaginatedResponseTenantUserInTenantResponse.ts +130 -0
- package/src/models/PasswordResetRequest.ts +95 -0
- package/src/models/PasswordResetWithTokenRequest.ts +104 -0
- package/src/models/RootResponse.ts +90 -0
- package/src/models/SignInRequest.ts +100 -0
- package/src/models/TenantResponse.ts +100 -0
- package/src/models/TenantUserInTenantResponse.ts +119 -0
- package/src/models/TenantUserRole.ts +54 -0
- package/src/models/UpdateTenantRequest.ts +98 -0
- package/src/models/UpdateUserRequest.ts +83 -0
- package/src/models/UserResponse.ts +145 -0
- package/src/models/ValidationError.ts +109 -0
- package/src/models/ValidationErrorLocInner.ts +63 -0
- package/src/models/index.ts +25 -0
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Knowledge Stack API
|
|
5
|
+
* Knowledge Stack backend API for authentication and knowledge management
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 0.1.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
|
+
import { IdpTypeFromJSON, IdpTypeToJSON, } from './IdpType';
|
|
15
|
+
import { TenantUserRoleFromJSON, TenantUserRoleToJSON, } from './TenantUserRole';
|
|
16
|
+
/**
|
|
17
|
+
* Check if a given object implements the UserResponse interface.
|
|
18
|
+
*/
|
|
19
|
+
export function instanceOfUserResponse(value) {
|
|
20
|
+
if (!('id' in value) || value['id'] === undefined)
|
|
21
|
+
return false;
|
|
22
|
+
if (!('email' in value) || value['email'] === undefined)
|
|
23
|
+
return false;
|
|
24
|
+
if (!('idpType' in value) || value['idpType'] === undefined)
|
|
25
|
+
return false;
|
|
26
|
+
if (!('currentTenantId' in value) || value['currentTenantId'] === undefined)
|
|
27
|
+
return false;
|
|
28
|
+
if (!('currentTenantRole' in value) || value['currentTenantRole'] === undefined)
|
|
29
|
+
return false;
|
|
30
|
+
if (!('defaultTenantId' in value) || value['defaultTenantId'] === undefined)
|
|
31
|
+
return false;
|
|
32
|
+
return true;
|
|
33
|
+
}
|
|
34
|
+
export function UserResponseFromJSON(json) {
|
|
35
|
+
return UserResponseFromJSONTyped(json, false);
|
|
36
|
+
}
|
|
37
|
+
export function UserResponseFromJSONTyped(json, ignoreDiscriminator) {
|
|
38
|
+
if (json == null) {
|
|
39
|
+
return json;
|
|
40
|
+
}
|
|
41
|
+
return {
|
|
42
|
+
'id': json['id'],
|
|
43
|
+
'email': json['email'],
|
|
44
|
+
'idpType': IdpTypeFromJSON(json['idp_type']),
|
|
45
|
+
'currentTenantId': json['current_tenant_id'],
|
|
46
|
+
'currentTenantRole': TenantUserRoleFromJSON(json['current_tenant_role']),
|
|
47
|
+
'defaultTenantId': json['default_tenant_id'],
|
|
48
|
+
};
|
|
49
|
+
}
|
|
50
|
+
export function UserResponseToJSON(json) {
|
|
51
|
+
return UserResponseToJSONTyped(json, false);
|
|
52
|
+
}
|
|
53
|
+
export function UserResponseToJSONTyped(value, ignoreDiscriminator = false) {
|
|
54
|
+
if (value == null) {
|
|
55
|
+
return value;
|
|
56
|
+
}
|
|
57
|
+
return {
|
|
58
|
+
'id': value['id'],
|
|
59
|
+
'email': value['email'],
|
|
60
|
+
'idp_type': IdpTypeToJSON(value['idpType']),
|
|
61
|
+
'current_tenant_id': value['currentTenantId'],
|
|
62
|
+
'current_tenant_role': TenantUserRoleToJSON(value['currentTenantRole']),
|
|
63
|
+
'default_tenant_id': value['defaultTenantId'],
|
|
64
|
+
};
|
|
65
|
+
}
|
|
66
|
+
export const UserResponsePropertyValidationAttributesMap = {};
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Knowledge Stack API
|
|
3
|
+
* Knowledge Stack backend API for authentication and knowledge management
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 0.1.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
|
+
import type { ValidationErrorLocInner } from './ValidationErrorLocInner';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface ValidationError
|
|
17
|
+
*/
|
|
18
|
+
export interface ValidationError {
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @type {Array<ValidationErrorLocInner>}
|
|
22
|
+
* @memberof ValidationError
|
|
23
|
+
*/
|
|
24
|
+
loc: Array<ValidationErrorLocInner>;
|
|
25
|
+
/**
|
|
26
|
+
*
|
|
27
|
+
* @type {string}
|
|
28
|
+
* @memberof ValidationError
|
|
29
|
+
*/
|
|
30
|
+
msg: string;
|
|
31
|
+
/**
|
|
32
|
+
*
|
|
33
|
+
* @type {string}
|
|
34
|
+
* @memberof ValidationError
|
|
35
|
+
*/
|
|
36
|
+
type: string;
|
|
37
|
+
}
|
|
38
|
+
/**
|
|
39
|
+
* Check if a given object implements the ValidationError interface.
|
|
40
|
+
*/
|
|
41
|
+
export declare function instanceOfValidationError(value: object): value is ValidationError;
|
|
42
|
+
export declare function ValidationErrorFromJSON(json: any): ValidationError;
|
|
43
|
+
export declare function ValidationErrorFromJSONTyped(json: any, ignoreDiscriminator: boolean): ValidationError;
|
|
44
|
+
export declare function ValidationErrorToJSON(json: any): ValidationError;
|
|
45
|
+
export declare function ValidationErrorToJSONTyped(value?: ValidationError | null, ignoreDiscriminator?: boolean): any;
|
|
46
|
+
export declare const ValidationErrorPropertyValidationAttributesMap: {
|
|
47
|
+
[property: string]: {
|
|
48
|
+
maxLength?: number;
|
|
49
|
+
minLength?: number;
|
|
50
|
+
pattern?: string;
|
|
51
|
+
maximum?: number;
|
|
52
|
+
exclusiveMaximum?: boolean;
|
|
53
|
+
minimum?: number;
|
|
54
|
+
exclusiveMinimum?: boolean;
|
|
55
|
+
multipleOf?: number;
|
|
56
|
+
maxItems?: number;
|
|
57
|
+
minItems?: number;
|
|
58
|
+
uniqueItems?: boolean;
|
|
59
|
+
};
|
|
60
|
+
};
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Knowledge Stack API
|
|
5
|
+
* Knowledge Stack backend API for authentication and knowledge management
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 0.1.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
|
+
import { ValidationErrorLocInnerFromJSON, ValidationErrorLocInnerToJSON, } from './ValidationErrorLocInner';
|
|
15
|
+
/**
|
|
16
|
+
* Check if a given object implements the ValidationError interface.
|
|
17
|
+
*/
|
|
18
|
+
export function instanceOfValidationError(value) {
|
|
19
|
+
if (!('loc' in value) || value['loc'] === undefined)
|
|
20
|
+
return false;
|
|
21
|
+
if (!('msg' in value) || value['msg'] === undefined)
|
|
22
|
+
return false;
|
|
23
|
+
if (!('type' in value) || value['type'] === undefined)
|
|
24
|
+
return false;
|
|
25
|
+
return true;
|
|
26
|
+
}
|
|
27
|
+
export function ValidationErrorFromJSON(json) {
|
|
28
|
+
return ValidationErrorFromJSONTyped(json, false);
|
|
29
|
+
}
|
|
30
|
+
export function ValidationErrorFromJSONTyped(json, ignoreDiscriminator) {
|
|
31
|
+
if (json == null) {
|
|
32
|
+
return json;
|
|
33
|
+
}
|
|
34
|
+
return {
|
|
35
|
+
'loc': (json['loc'].map(ValidationErrorLocInnerFromJSON)),
|
|
36
|
+
'msg': json['msg'],
|
|
37
|
+
'type': json['type'],
|
|
38
|
+
};
|
|
39
|
+
}
|
|
40
|
+
export function ValidationErrorToJSON(json) {
|
|
41
|
+
return ValidationErrorToJSONTyped(json, false);
|
|
42
|
+
}
|
|
43
|
+
export function ValidationErrorToJSONTyped(value, ignoreDiscriminator = false) {
|
|
44
|
+
if (value == null) {
|
|
45
|
+
return value;
|
|
46
|
+
}
|
|
47
|
+
return {
|
|
48
|
+
'loc': (value['loc'].map(ValidationErrorLocInnerToJSON)),
|
|
49
|
+
'msg': value['msg'],
|
|
50
|
+
'type': value['type'],
|
|
51
|
+
};
|
|
52
|
+
}
|
|
53
|
+
export const ValidationErrorPropertyValidationAttributesMap = {};
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Knowledge Stack API
|
|
3
|
+
* Knowledge Stack backend API for authentication and knowledge management
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 0.1.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 ValidationErrorLocInner
|
|
16
|
+
*/
|
|
17
|
+
export interface ValidationErrorLocInner {
|
|
18
|
+
}
|
|
19
|
+
/**
|
|
20
|
+
* Check if a given object implements the ValidationErrorLocInner interface.
|
|
21
|
+
*/
|
|
22
|
+
export declare function instanceOfValidationErrorLocInner(value: object): value is ValidationErrorLocInner;
|
|
23
|
+
export declare function ValidationErrorLocInnerFromJSON(json: any): ValidationErrorLocInner;
|
|
24
|
+
export declare function ValidationErrorLocInnerFromJSONTyped(json: any, ignoreDiscriminator: boolean): ValidationErrorLocInner;
|
|
25
|
+
export declare function ValidationErrorLocInnerToJSON(json: any): ValidationErrorLocInner;
|
|
26
|
+
export declare function ValidationErrorLocInnerToJSONTyped(value?: ValidationErrorLocInner | null, ignoreDiscriminator?: boolean): any;
|
|
27
|
+
export declare const ValidationErrorLocInnerPropertyValidationAttributesMap: {
|
|
28
|
+
[property: string]: {
|
|
29
|
+
maxLength?: number;
|
|
30
|
+
minLength?: number;
|
|
31
|
+
pattern?: string;
|
|
32
|
+
maximum?: number;
|
|
33
|
+
exclusiveMaximum?: boolean;
|
|
34
|
+
minimum?: number;
|
|
35
|
+
exclusiveMinimum?: boolean;
|
|
36
|
+
multipleOf?: number;
|
|
37
|
+
maxItems?: number;
|
|
38
|
+
minItems?: number;
|
|
39
|
+
uniqueItems?: boolean;
|
|
40
|
+
};
|
|
41
|
+
};
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Knowledge Stack API
|
|
5
|
+
* Knowledge Stack backend API for authentication and knowledge management
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 0.1.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
|
+
* Check if a given object implements the ValidationErrorLocInner interface.
|
|
16
|
+
*/
|
|
17
|
+
export function instanceOfValidationErrorLocInner(value) {
|
|
18
|
+
return true;
|
|
19
|
+
}
|
|
20
|
+
export function ValidationErrorLocInnerFromJSON(json) {
|
|
21
|
+
return ValidationErrorLocInnerFromJSONTyped(json, false);
|
|
22
|
+
}
|
|
23
|
+
export function ValidationErrorLocInnerFromJSONTyped(json, ignoreDiscriminator) {
|
|
24
|
+
return json;
|
|
25
|
+
}
|
|
26
|
+
export function ValidationErrorLocInnerToJSON(json) {
|
|
27
|
+
return ValidationErrorLocInnerToJSONTyped(json, false);
|
|
28
|
+
}
|
|
29
|
+
export function ValidationErrorLocInnerToJSONTyped(value, ignoreDiscriminator = false) {
|
|
30
|
+
return value;
|
|
31
|
+
}
|
|
32
|
+
export const ValidationErrorLocInnerPropertyValidationAttributesMap = {};
|
|
@@ -1 +1,26 @@
|
|
|
1
|
+
export * from './CreatePasswordUserRequest';
|
|
2
|
+
export * from './CreateTenantRequest';
|
|
3
|
+
export * from './EmailSentResponse';
|
|
4
|
+
export * from './EmailVerificationRequest';
|
|
5
|
+
export * from './HTTPValidationError';
|
|
1
6
|
export * from './HealthCheckResponse';
|
|
7
|
+
export * from './IdpType';
|
|
8
|
+
export * from './InviteResponse';
|
|
9
|
+
export * from './InviteStatus';
|
|
10
|
+
export * from './InviteUserRequest';
|
|
11
|
+
export * from './OAuth2Config';
|
|
12
|
+
export * from './PaginatedResponseInviteResponse';
|
|
13
|
+
export * from './PaginatedResponseTenantResponse';
|
|
14
|
+
export * from './PaginatedResponseTenantUserInTenantResponse';
|
|
15
|
+
export * from './PasswordResetRequest';
|
|
16
|
+
export * from './PasswordResetWithTokenRequest';
|
|
17
|
+
export * from './RootResponse';
|
|
18
|
+
export * from './SignInRequest';
|
|
19
|
+
export * from './TenantResponse';
|
|
20
|
+
export * from './TenantUserInTenantResponse';
|
|
21
|
+
export * from './TenantUserRole';
|
|
22
|
+
export * from './UpdateTenantRequest';
|
|
23
|
+
export * from './UpdateUserRequest';
|
|
24
|
+
export * from './UserResponse';
|
|
25
|
+
export * from './ValidationError';
|
|
26
|
+
export * from './ValidationErrorLocInner';
|
package/dist/esm/models/index.js
CHANGED
|
@@ -1,3 +1,28 @@
|
|
|
1
1
|
/* tslint:disable */
|
|
2
2
|
/* eslint-disable */
|
|
3
|
+
export * from './CreatePasswordUserRequest';
|
|
4
|
+
export * from './CreateTenantRequest';
|
|
5
|
+
export * from './EmailSentResponse';
|
|
6
|
+
export * from './EmailVerificationRequest';
|
|
7
|
+
export * from './HTTPValidationError';
|
|
3
8
|
export * from './HealthCheckResponse';
|
|
9
|
+
export * from './IdpType';
|
|
10
|
+
export * from './InviteResponse';
|
|
11
|
+
export * from './InviteStatus';
|
|
12
|
+
export * from './InviteUserRequest';
|
|
13
|
+
export * from './OAuth2Config';
|
|
14
|
+
export * from './PaginatedResponseInviteResponse';
|
|
15
|
+
export * from './PaginatedResponseTenantResponse';
|
|
16
|
+
export * from './PaginatedResponseTenantUserInTenantResponse';
|
|
17
|
+
export * from './PasswordResetRequest';
|
|
18
|
+
export * from './PasswordResetWithTokenRequest';
|
|
19
|
+
export * from './RootResponse';
|
|
20
|
+
export * from './SignInRequest';
|
|
21
|
+
export * from './TenantResponse';
|
|
22
|
+
export * from './TenantUserInTenantResponse';
|
|
23
|
+
export * from './TenantUserRole';
|
|
24
|
+
export * from './UpdateTenantRequest';
|
|
25
|
+
export * from './UpdateUserRequest';
|
|
26
|
+
export * from './UserResponse';
|
|
27
|
+
export * from './ValidationError';
|
|
28
|
+
export * from './ValidationErrorLocInner';
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Knowledge Stack API
|
|
3
|
+
* Knowledge Stack backend API for authentication and knowledge management
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 0.1.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 CreatePasswordUserRequest
|
|
16
|
+
*/
|
|
17
|
+
export interface CreatePasswordUserRequest {
|
|
18
|
+
/**
|
|
19
|
+
* Password
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof CreatePasswordUserRequest
|
|
22
|
+
*/
|
|
23
|
+
password: string;
|
|
24
|
+
/**
|
|
25
|
+
* Email verification token
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof CreatePasswordUserRequest
|
|
28
|
+
*/
|
|
29
|
+
emailToken: string;
|
|
30
|
+
}
|
|
31
|
+
/**
|
|
32
|
+
* Check if a given object implements the CreatePasswordUserRequest interface.
|
|
33
|
+
*/
|
|
34
|
+
export declare function instanceOfCreatePasswordUserRequest(value: object): value is CreatePasswordUserRequest;
|
|
35
|
+
export declare function CreatePasswordUserRequestFromJSON(json: any): CreatePasswordUserRequest;
|
|
36
|
+
export declare function CreatePasswordUserRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreatePasswordUserRequest;
|
|
37
|
+
export declare function CreatePasswordUserRequestToJSON(json: any): CreatePasswordUserRequest;
|
|
38
|
+
export declare function CreatePasswordUserRequestToJSONTyped(value?: CreatePasswordUserRequest | null, ignoreDiscriminator?: boolean): any;
|
|
39
|
+
export declare const CreatePasswordUserRequestPropertyValidationAttributesMap: {
|
|
40
|
+
[property: string]: {
|
|
41
|
+
maxLength?: number;
|
|
42
|
+
minLength?: number;
|
|
43
|
+
pattern?: string;
|
|
44
|
+
maximum?: number;
|
|
45
|
+
exclusiveMaximum?: boolean;
|
|
46
|
+
minimum?: number;
|
|
47
|
+
exclusiveMinimum?: boolean;
|
|
48
|
+
multipleOf?: number;
|
|
49
|
+
maxItems?: number;
|
|
50
|
+
minItems?: number;
|
|
51
|
+
uniqueItems?: boolean;
|
|
52
|
+
};
|
|
53
|
+
};
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Knowledge Stack API
|
|
6
|
+
* Knowledge Stack backend API for authentication and knowledge management
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 0.1.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.CreatePasswordUserRequestPropertyValidationAttributesMap = void 0;
|
|
17
|
+
exports.instanceOfCreatePasswordUserRequest = instanceOfCreatePasswordUserRequest;
|
|
18
|
+
exports.CreatePasswordUserRequestFromJSON = CreatePasswordUserRequestFromJSON;
|
|
19
|
+
exports.CreatePasswordUserRequestFromJSONTyped = CreatePasswordUserRequestFromJSONTyped;
|
|
20
|
+
exports.CreatePasswordUserRequestToJSON = CreatePasswordUserRequestToJSON;
|
|
21
|
+
exports.CreatePasswordUserRequestToJSONTyped = CreatePasswordUserRequestToJSONTyped;
|
|
22
|
+
/**
|
|
23
|
+
* Check if a given object implements the CreatePasswordUserRequest interface.
|
|
24
|
+
*/
|
|
25
|
+
function instanceOfCreatePasswordUserRequest(value) {
|
|
26
|
+
if (!('password' in value) || value['password'] === undefined)
|
|
27
|
+
return false;
|
|
28
|
+
if (!('emailToken' in value) || value['emailToken'] === undefined)
|
|
29
|
+
return false;
|
|
30
|
+
return true;
|
|
31
|
+
}
|
|
32
|
+
function CreatePasswordUserRequestFromJSON(json) {
|
|
33
|
+
return CreatePasswordUserRequestFromJSONTyped(json, false);
|
|
34
|
+
}
|
|
35
|
+
function CreatePasswordUserRequestFromJSONTyped(json, ignoreDiscriminator) {
|
|
36
|
+
if (json == null) {
|
|
37
|
+
return json;
|
|
38
|
+
}
|
|
39
|
+
return {
|
|
40
|
+
'password': json['password'],
|
|
41
|
+
'emailToken': json['email_token'],
|
|
42
|
+
};
|
|
43
|
+
}
|
|
44
|
+
function CreatePasswordUserRequestToJSON(json) {
|
|
45
|
+
return CreatePasswordUserRequestToJSONTyped(json, false);
|
|
46
|
+
}
|
|
47
|
+
function CreatePasswordUserRequestToJSONTyped(value, ignoreDiscriminator = false) {
|
|
48
|
+
if (value == null) {
|
|
49
|
+
return value;
|
|
50
|
+
}
|
|
51
|
+
return {
|
|
52
|
+
'password': value['password'],
|
|
53
|
+
'email_token': value['emailToken'],
|
|
54
|
+
};
|
|
55
|
+
}
|
|
56
|
+
exports.CreatePasswordUserRequestPropertyValidationAttributesMap = {
|
|
57
|
+
password: {
|
|
58
|
+
minLength: 8,
|
|
59
|
+
},
|
|
60
|
+
};
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Knowledge Stack API
|
|
3
|
+
* Knowledge Stack backend API for authentication and knowledge management
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 0.1.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
|
+
import type { OAuth2Config } from './OAuth2Config';
|
|
13
|
+
/**
|
|
14
|
+
* Create tenant request model.
|
|
15
|
+
* @export
|
|
16
|
+
* @interface CreateTenantRequest
|
|
17
|
+
*/
|
|
18
|
+
export interface CreateTenantRequest {
|
|
19
|
+
/**
|
|
20
|
+
* Tenant name
|
|
21
|
+
* @type {string}
|
|
22
|
+
* @memberof CreateTenantRequest
|
|
23
|
+
*/
|
|
24
|
+
name: string;
|
|
25
|
+
/**
|
|
26
|
+
* Optional external IdP configuration
|
|
27
|
+
* @type {OAuth2Config}
|
|
28
|
+
* @memberof CreateTenantRequest
|
|
29
|
+
*/
|
|
30
|
+
idpConfig?: OAuth2Config;
|
|
31
|
+
}
|
|
32
|
+
/**
|
|
33
|
+
* Check if a given object implements the CreateTenantRequest interface.
|
|
34
|
+
*/
|
|
35
|
+
export declare function instanceOfCreateTenantRequest(value: object): value is CreateTenantRequest;
|
|
36
|
+
export declare function CreateTenantRequestFromJSON(json: any): CreateTenantRequest;
|
|
37
|
+
export declare function CreateTenantRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateTenantRequest;
|
|
38
|
+
export declare function CreateTenantRequestToJSON(json: any): CreateTenantRequest;
|
|
39
|
+
export declare function CreateTenantRequestToJSONTyped(value?: CreateTenantRequest | null, ignoreDiscriminator?: boolean): any;
|
|
40
|
+
export declare const CreateTenantRequestPropertyValidationAttributesMap: {
|
|
41
|
+
[property: string]: {
|
|
42
|
+
maxLength?: number;
|
|
43
|
+
minLength?: number;
|
|
44
|
+
pattern?: string;
|
|
45
|
+
maximum?: number;
|
|
46
|
+
exclusiveMaximum?: boolean;
|
|
47
|
+
minimum?: number;
|
|
48
|
+
exclusiveMinimum?: boolean;
|
|
49
|
+
multipleOf?: number;
|
|
50
|
+
maxItems?: number;
|
|
51
|
+
minItems?: number;
|
|
52
|
+
uniqueItems?: boolean;
|
|
53
|
+
};
|
|
54
|
+
};
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Knowledge Stack API
|
|
6
|
+
* Knowledge Stack backend API for authentication and knowledge management
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 0.1.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.CreateTenantRequestPropertyValidationAttributesMap = void 0;
|
|
17
|
+
exports.instanceOfCreateTenantRequest = instanceOfCreateTenantRequest;
|
|
18
|
+
exports.CreateTenantRequestFromJSON = CreateTenantRequestFromJSON;
|
|
19
|
+
exports.CreateTenantRequestFromJSONTyped = CreateTenantRequestFromJSONTyped;
|
|
20
|
+
exports.CreateTenantRequestToJSON = CreateTenantRequestToJSON;
|
|
21
|
+
exports.CreateTenantRequestToJSONTyped = CreateTenantRequestToJSONTyped;
|
|
22
|
+
const OAuth2Config_1 = require("./OAuth2Config");
|
|
23
|
+
/**
|
|
24
|
+
* Check if a given object implements the CreateTenantRequest interface.
|
|
25
|
+
*/
|
|
26
|
+
function instanceOfCreateTenantRequest(value) {
|
|
27
|
+
if (!('name' in value) || value['name'] === undefined)
|
|
28
|
+
return false;
|
|
29
|
+
return true;
|
|
30
|
+
}
|
|
31
|
+
function CreateTenantRequestFromJSON(json) {
|
|
32
|
+
return CreateTenantRequestFromJSONTyped(json, false);
|
|
33
|
+
}
|
|
34
|
+
function CreateTenantRequestFromJSONTyped(json, ignoreDiscriminator) {
|
|
35
|
+
if (json == null) {
|
|
36
|
+
return json;
|
|
37
|
+
}
|
|
38
|
+
return {
|
|
39
|
+
'name': json['name'],
|
|
40
|
+
'idpConfig': json['idp_config'] == null ? undefined : (0, OAuth2Config_1.OAuth2ConfigFromJSON)(json['idp_config']),
|
|
41
|
+
};
|
|
42
|
+
}
|
|
43
|
+
function CreateTenantRequestToJSON(json) {
|
|
44
|
+
return CreateTenantRequestToJSONTyped(json, false);
|
|
45
|
+
}
|
|
46
|
+
function CreateTenantRequestToJSONTyped(value, ignoreDiscriminator = false) {
|
|
47
|
+
if (value == null) {
|
|
48
|
+
return value;
|
|
49
|
+
}
|
|
50
|
+
return {
|
|
51
|
+
'name': value['name'],
|
|
52
|
+
'idp_config': (0, OAuth2Config_1.OAuth2ConfigToJSON)(value['idpConfig']),
|
|
53
|
+
};
|
|
54
|
+
}
|
|
55
|
+
exports.CreateTenantRequestPropertyValidationAttributesMap = {};
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Knowledge Stack API
|
|
3
|
+
* Knowledge Stack backend API for authentication and knowledge management
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 0.1.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 EmailSentResponse
|
|
16
|
+
*/
|
|
17
|
+
export interface EmailSentResponse {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof EmailSentResponse
|
|
22
|
+
*/
|
|
23
|
+
emailId: string;
|
|
24
|
+
}
|
|
25
|
+
/**
|
|
26
|
+
* Check if a given object implements the EmailSentResponse interface.
|
|
27
|
+
*/
|
|
28
|
+
export declare function instanceOfEmailSentResponse(value: object): value is EmailSentResponse;
|
|
29
|
+
export declare function EmailSentResponseFromJSON(json: any): EmailSentResponse;
|
|
30
|
+
export declare function EmailSentResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): EmailSentResponse;
|
|
31
|
+
export declare function EmailSentResponseToJSON(json: any): EmailSentResponse;
|
|
32
|
+
export declare function EmailSentResponseToJSONTyped(value?: EmailSentResponse | null, ignoreDiscriminator?: boolean): any;
|
|
33
|
+
export declare const EmailSentResponsePropertyValidationAttributesMap: {
|
|
34
|
+
[property: string]: {
|
|
35
|
+
maxLength?: number;
|
|
36
|
+
minLength?: number;
|
|
37
|
+
pattern?: string;
|
|
38
|
+
maximum?: number;
|
|
39
|
+
exclusiveMaximum?: boolean;
|
|
40
|
+
minimum?: number;
|
|
41
|
+
exclusiveMinimum?: boolean;
|
|
42
|
+
multipleOf?: number;
|
|
43
|
+
maxItems?: number;
|
|
44
|
+
minItems?: number;
|
|
45
|
+
uniqueItems?: boolean;
|
|
46
|
+
};
|
|
47
|
+
};
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Knowledge Stack API
|
|
6
|
+
* Knowledge Stack backend API for authentication and knowledge management
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 0.1.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.EmailSentResponsePropertyValidationAttributesMap = void 0;
|
|
17
|
+
exports.instanceOfEmailSentResponse = instanceOfEmailSentResponse;
|
|
18
|
+
exports.EmailSentResponseFromJSON = EmailSentResponseFromJSON;
|
|
19
|
+
exports.EmailSentResponseFromJSONTyped = EmailSentResponseFromJSONTyped;
|
|
20
|
+
exports.EmailSentResponseToJSON = EmailSentResponseToJSON;
|
|
21
|
+
exports.EmailSentResponseToJSONTyped = EmailSentResponseToJSONTyped;
|
|
22
|
+
/**
|
|
23
|
+
* Check if a given object implements the EmailSentResponse interface.
|
|
24
|
+
*/
|
|
25
|
+
function instanceOfEmailSentResponse(value) {
|
|
26
|
+
if (!('emailId' in value) || value['emailId'] === undefined)
|
|
27
|
+
return false;
|
|
28
|
+
return true;
|
|
29
|
+
}
|
|
30
|
+
function EmailSentResponseFromJSON(json) {
|
|
31
|
+
return EmailSentResponseFromJSONTyped(json, false);
|
|
32
|
+
}
|
|
33
|
+
function EmailSentResponseFromJSONTyped(json, ignoreDiscriminator) {
|
|
34
|
+
if (json == null) {
|
|
35
|
+
return json;
|
|
36
|
+
}
|
|
37
|
+
return {
|
|
38
|
+
'emailId': json['email_id'],
|
|
39
|
+
};
|
|
40
|
+
}
|
|
41
|
+
function EmailSentResponseToJSON(json) {
|
|
42
|
+
return EmailSentResponseToJSONTyped(json, false);
|
|
43
|
+
}
|
|
44
|
+
function EmailSentResponseToJSONTyped(value, ignoreDiscriminator = false) {
|
|
45
|
+
if (value == null) {
|
|
46
|
+
return value;
|
|
47
|
+
}
|
|
48
|
+
return {
|
|
49
|
+
'email_id': value['emailId'],
|
|
50
|
+
};
|
|
51
|
+
}
|
|
52
|
+
exports.EmailSentResponsePropertyValidationAttributesMap = {};
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Knowledge Stack API
|
|
3
|
+
* Knowledge Stack backend API for authentication and knowledge management
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 0.1.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 EmailVerificationRequest
|
|
16
|
+
*/
|
|
17
|
+
export interface EmailVerificationRequest {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof EmailVerificationRequest
|
|
22
|
+
*/
|
|
23
|
+
email: string;
|
|
24
|
+
}
|
|
25
|
+
/**
|
|
26
|
+
* Check if a given object implements the EmailVerificationRequest interface.
|
|
27
|
+
*/
|
|
28
|
+
export declare function instanceOfEmailVerificationRequest(value: object): value is EmailVerificationRequest;
|
|
29
|
+
export declare function EmailVerificationRequestFromJSON(json: any): EmailVerificationRequest;
|
|
30
|
+
export declare function EmailVerificationRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): EmailVerificationRequest;
|
|
31
|
+
export declare function EmailVerificationRequestToJSON(json: any): EmailVerificationRequest;
|
|
32
|
+
export declare function EmailVerificationRequestToJSONTyped(value?: EmailVerificationRequest | null, ignoreDiscriminator?: boolean): any;
|
|
33
|
+
export declare const EmailVerificationRequestPropertyValidationAttributesMap: {
|
|
34
|
+
[property: string]: {
|
|
35
|
+
maxLength?: number;
|
|
36
|
+
minLength?: number;
|
|
37
|
+
pattern?: string;
|
|
38
|
+
maximum?: number;
|
|
39
|
+
exclusiveMaximum?: boolean;
|
|
40
|
+
minimum?: number;
|
|
41
|
+
exclusiveMinimum?: boolean;
|
|
42
|
+
multipleOf?: number;
|
|
43
|
+
maxItems?: number;
|
|
44
|
+
minItems?: number;
|
|
45
|
+
uniqueItems?: boolean;
|
|
46
|
+
};
|
|
47
|
+
};
|