Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
110 changes: 93 additions & 17 deletions dist/generated/Auth/api.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,7 @@ export interface ConfirmSignUpWithAwsMarketplaceParam {
'registration_token': string;
}
/**
*
* Either email or sign_in_id must be specified, but not both. - If email is specified: Email authentication user will be created. When password is not specified, a temporary password will be sent by email. - If sign_in_id is specified: Sign-in ID authentication user will be created. When password is not specified, it will be auto-generated and returned in the response.
* @export
* @interface CreateSaasUserParam
*/
Expand All @@ -371,9 +371,15 @@ export interface CreateSaasUserParam {
* @type {string}
* @memberof CreateSaasUserParam
*/
'email': string;
'email'?: string;
/**
* Password
* Sign-in ID (alphanumeric and symbols -_ only, max 50 characters)
* @type {string}
* @memberof CreateSaasUserParam
*/
'sign_in_id'?: string;
/**
* Password. For email authentication, if not specified, a temporary password will be sent by email. For sign-in ID authentication, if not specified, password will be auto-generated and returned.
* @type {string}
* @memberof CreateSaasUserParam
*/
Expand Down Expand Up @@ -418,7 +424,7 @@ export interface CreateTenantInvitationParam {
'envs': Array<InvitedUserEnvironmentInformationInner>;
}
/**
*
* Either email or sign_in_id must be specified, but not both.
* @export
* @interface CreateTenantUserParam
*/
Expand All @@ -428,7 +434,13 @@ export interface CreateTenantUserParam {
* @type {string}
* @memberof CreateTenantUserParam
*/
'email': string;
'email'?: string;
/**
* Sign-in ID (alphanumeric and symbols -_ only, max 50 characters)
* @type {string}
* @memberof CreateTenantUserParam
*/
'sign_in_id'?: string;
/**
* Attribute information (Get information set by defining user attributes in the SaaS development console)
* @type {{ [key: string]: any; }}
Expand All @@ -451,6 +463,58 @@ export interface CreateTenantUserRolesParam {
*/
'role_names': Array<string>;
}
/**
*
* @export
* @interface CreatedSaasUser
*/
export interface CreatedSaasUser {
/**
*
* @type {string}
* @memberof CreatedSaasUser
*/
'id': string;
/**
* E-mail. For sign-in ID authentication users, this field is not set.
* @type {string}
* @memberof CreatedSaasUser
*/
'email': string;
/**
* Sign-in ID. For email authentication users, this field is not set.
* @type {string}
* @memberof CreatedSaasUser
*/
'sign_in_id': string;
/**
* Attribute information
* @type {{ [key: string]: any; }}
* @memberof CreatedSaasUser
*/
'attributes': {
[key: string]: any;
};
/**
* Auto-generated password (only when sign_in_id authentication and password not specified)
* @type {string}
* @memberof CreatedSaasUser
*/
'password'?: string;
}
/**
*
* @export
* @interface CreatedSaasUserAllOf
*/
export interface CreatedSaasUserAllOf {
/**
* Auto-generated password (only when sign_in_id authentication and password not specified)
* @type {string}
* @memberof CreatedSaasUserAllOf
*/
'password'?: string;
}
/**
*
* @export
Expand Down Expand Up @@ -1434,11 +1498,17 @@ export interface SaasUser {
*/
'id': string;
/**
* E-mail
* E-mail. For sign-in ID authentication users, this field is not set.
* @type {string}
* @memberof SaasUser
*/
'email': string;
/**
* Sign-in ID. For email authentication users, this field is not set.
* @type {string}
* @memberof SaasUser
*/
'sign_in_id': string;
/**
* Attribute information
* @type {{ [key: string]: any; }}
Expand Down Expand Up @@ -2432,11 +2502,17 @@ export interface User {
*/
'tenant_name': string;
/**
* E-mail
* E-mail. For sign-in ID authentication users, this field is not set.
* @type {string}
* @memberof User
*/
'email': string;
/**
* Sign-in ID. For email authentication users, this field is not set.
* @type {string}
* @memberof User
*/
'sign_in_id': string;
/**
* Attribute information (Get information set by defining user attributes in the SaaS development console)
* @type {{ [key: string]: any; }}
Expand Down Expand Up @@ -3902,7 +3978,7 @@ export declare const SaasUserApiAxiosParamCreator: (configuration?: Configuratio
*/
createSecretCode: (userId: string, createSecretCodeParam?: CreateSecretCodeParam, options?: AxiosRequestConfig) => Promise<RequestArgs>;
/**
* Delete all users with matching user ID from the tenant and SaaS.
* Delete all users with matching user ID from the tenant and SaaS. Returns user information before deletion.
* @summary Delete User
* @param {string} userId User ID
* @param {*} [options] Override http request option.
Expand Down Expand Up @@ -4089,7 +4165,7 @@ export declare const SaasUserApiFp: (configuration?: Configuration) => {
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
createSaasUser(createSaasUserParam?: CreateSaasUserParam, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SaasUser>>;
createSaasUser(createSaasUserParam?: CreateSaasUserParam, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreatedSaasUser>>;
/**
* Create a secret code for authentication application registration.
* @summary Create secret code for authentication application registration
Expand All @@ -4100,13 +4176,13 @@ export declare const SaasUserApiFp: (configuration?: Configuration) => {
*/
createSecretCode(userId: string, createSecretCodeParam?: CreateSecretCodeParam, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SoftwareTokenSecretCode>>;
/**
* Delete all users with matching user ID from the tenant and SaaS.
* Delete all users with matching user ID from the tenant and SaaS. Returns user information before deletion.
* @summary Delete User
* @param {string} userId User ID
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
deleteSaasUser(userId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
deleteSaasUser(userId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserInfo>>;
/**
* Get user information based on user ID.
* @summary Get User
Expand Down Expand Up @@ -4287,7 +4363,7 @@ export declare const SaasUserApiFactory: (configuration?: Configuration, basePat
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
createSaasUser(createSaasUserParam?: CreateSaasUserParam, options?: any): AxiosPromise<SaasUser>;
createSaasUser(createSaasUserParam?: CreateSaasUserParam, options?: any): AxiosPromise<CreatedSaasUser>;
/**
* Create a secret code for authentication application registration.
* @summary Create secret code for authentication application registration
Expand All @@ -4298,13 +4374,13 @@ export declare const SaasUserApiFactory: (configuration?: Configuration, basePat
*/
createSecretCode(userId: string, createSecretCodeParam?: CreateSecretCodeParam, options?: any): AxiosPromise<SoftwareTokenSecretCode>;
/**
* Delete all users with matching user ID from the tenant and SaaS.
* Delete all users with matching user ID from the tenant and SaaS. Returns user information before deletion.
* @summary Delete User
* @param {string} userId User ID
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
deleteSaasUser(userId: string, options?: any): AxiosPromise<void>;
deleteSaasUser(userId: string, options?: any): AxiosPromise<UserInfo>;
/**
* Get user information based on user ID.
* @summary Get User
Expand Down Expand Up @@ -4491,7 +4567,7 @@ export declare class SaasUserApi extends BaseAPI {
* @throws {RequiredError}
* @memberof SaasUserApi
*/
createSaasUser(createSaasUserParam?: CreateSaasUserParam, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SaasUser, any>>;
createSaasUser(createSaasUserParam?: CreateSaasUserParam, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CreatedSaasUser, any>>;
/**
* Create a secret code for authentication application registration.
* @summary Create secret code for authentication application registration
Expand All @@ -4503,14 +4579,14 @@ export declare class SaasUserApi extends BaseAPI {
*/
createSecretCode(userId: string, createSecretCodeParam?: CreateSecretCodeParam, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SoftwareTokenSecretCode, any>>;
/**
* Delete all users with matching user ID from the tenant and SaaS.
* Delete all users with matching user ID from the tenant and SaaS. Returns user information before deletion.
* @summary Delete User
* @param {string} userId User ID
* @param {*} [options] Override http request option.
* @throws {RequiredError}
* @memberof SaasUserApi
*/
deleteSaasUser(userId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
deleteSaasUser(userId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<UserInfo, any>>;
/**
* Get user information based on user ID.
* @summary Get User
Expand Down
6 changes: 3 additions & 3 deletions dist/saasus-sdk.js
Original file line number Diff line number Diff line change
Expand Up @@ -2453,7 +2453,7 @@
};
},
/**
* Delete all users with matching user ID from the tenant and SaaS.
* Delete all users with matching user ID from the tenant and SaaS. Returns user information before deletion.
* @summary Delete User
* @param {string} userId User ID
* @param {*} [options] Override http request option.
Expand Down Expand Up @@ -3106,7 +3106,7 @@
return createRequestFunction$5(localVarAxiosArgs, globalAxios__default["default"], BASE_PATH$5, configuration);
},
/**
* Delete all users with matching user ID from the tenant and SaaS.
* Delete all users with matching user ID from the tenant and SaaS. Returns user information before deletion.
* @summary Delete User
* @param {string} userId User ID
* @param {*} [options] Override http request option.
Expand Down Expand Up @@ -3376,7 +3376,7 @@
return SaasUserApiFp(this.configuration).createSecretCode(userId, createSecretCodeParam, options).then((request) => request(this.axios, this.basePath));
}
/**
* Delete all users with matching user ID from the tenant and SaaS.
* Delete all users with matching user ID from the tenant and SaaS. Returns user information before deletion.
* @summary Delete User
* @param {string} userId User ID
* @param {*} [options] Override http request option.
Expand Down
12 changes: 6 additions & 6 deletions docs/classes/ApiLog_api.ApiLogApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ ApiLogApi

#### Defined in

[src/generated/ApiLog/base.ts:52](https://github.com/saasus-platform/saasus-sdk-javascript/blob/ea545cb/src/generated/ApiLog/base.ts#L52)
[src/generated/ApiLog/base.ts:52](https://github.com/saasus-platform/saasus-sdk-javascript/blob/7a3a70e/src/generated/ApiLog/base.ts#L52)

## Properties

Expand All @@ -71,7 +71,7 @@ ApiLogApi

#### Defined in

[src/generated/ApiLog/base.ts:52](https://github.com/saasus-platform/saasus-sdk-javascript/blob/ea545cb/src/generated/ApiLog/base.ts#L52)
[src/generated/ApiLog/base.ts:52](https://github.com/saasus-platform/saasus-sdk-javascript/blob/7a3a70e/src/generated/ApiLog/base.ts#L52)

___

Expand All @@ -85,7 +85,7 @@ ___

#### Defined in

[src/generated/ApiLog/base.ts:52](https://github.com/saasus-platform/saasus-sdk-javascript/blob/ea545cb/src/generated/ApiLog/base.ts#L52)
[src/generated/ApiLog/base.ts:52](https://github.com/saasus-platform/saasus-sdk-javascript/blob/7a3a70e/src/generated/ApiLog/base.ts#L52)

___

Expand All @@ -99,7 +99,7 @@ ___

#### Defined in

[src/generated/ApiLog/base.ts:50](https://github.com/saasus-platform/saasus-sdk-javascript/blob/ea545cb/src/generated/ApiLog/base.ts#L50)
[src/generated/ApiLog/base.ts:50](https://github.com/saasus-platform/saasus-sdk-javascript/blob/7a3a70e/src/generated/ApiLog/base.ts#L50)

## Methods

Expand Down Expand Up @@ -132,7 +132,7 @@ ApiLogApi

#### Defined in

[src/generated/ApiLog/api.ts:433](https://github.com/saasus-platform/saasus-sdk-javascript/blob/ea545cb/src/generated/ApiLog/api.ts#L433)
[src/generated/ApiLog/api.ts:433](https://github.com/saasus-platform/saasus-sdk-javascript/blob/7a3a70e/src/generated/ApiLog/api.ts#L433)

___

Expand Down Expand Up @@ -168,4 +168,4 @@ ApiLogApi

#### Defined in

[src/generated/ApiLog/api.ts:448](https://github.com/saasus-platform/saasus-sdk-javascript/blob/ea545cb/src/generated/ApiLog/api.ts#L448)
[src/generated/ApiLog/api.ts:448](https://github.com/saasus-platform/saasus-sdk-javascript/blob/7a3a70e/src/generated/ApiLog/api.ts#L448)
10 changes: 5 additions & 5 deletions docs/classes/ApiLog_api.ErrorApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ ErrorApi

#### Defined in

[src/generated/ApiLog/base.ts:52](https://github.com/saasus-platform/saasus-sdk-javascript/blob/ea545cb/src/generated/ApiLog/base.ts#L52)
[src/generated/ApiLog/base.ts:52](https://github.com/saasus-platform/saasus-sdk-javascript/blob/7a3a70e/src/generated/ApiLog/base.ts#L52)

## Properties

Expand All @@ -70,7 +70,7 @@ ErrorApi

#### Defined in

[src/generated/ApiLog/base.ts:52](https://github.com/saasus-platform/saasus-sdk-javascript/blob/ea545cb/src/generated/ApiLog/base.ts#L52)
[src/generated/ApiLog/base.ts:52](https://github.com/saasus-platform/saasus-sdk-javascript/blob/7a3a70e/src/generated/ApiLog/base.ts#L52)

___

Expand All @@ -84,7 +84,7 @@ ___

#### Defined in

[src/generated/ApiLog/base.ts:52](https://github.com/saasus-platform/saasus-sdk-javascript/blob/ea545cb/src/generated/ApiLog/base.ts#L52)
[src/generated/ApiLog/base.ts:52](https://github.com/saasus-platform/saasus-sdk-javascript/blob/7a3a70e/src/generated/ApiLog/base.ts#L52)

___

Expand All @@ -98,7 +98,7 @@ ___

#### Defined in

[src/generated/ApiLog/base.ts:50](https://github.com/saasus-platform/saasus-sdk-javascript/blob/ea545cb/src/generated/ApiLog/base.ts#L50)
[src/generated/ApiLog/base.ts:50](https://github.com/saasus-platform/saasus-sdk-javascript/blob/7a3a70e/src/generated/ApiLog/base.ts#L50)

## Methods

Expand Down Expand Up @@ -130,4 +130,4 @@ ErrorApi

#### Defined in

[src/generated/ApiLog/api.ts:550](https://github.com/saasus-platform/saasus-sdk-javascript/blob/ea545cb/src/generated/ApiLog/api.ts#L550)
[src/generated/ApiLog/api.ts:550](https://github.com/saasus-platform/saasus-sdk-javascript/blob/7a3a70e/src/generated/ApiLog/api.ts#L550)
8 changes: 4 additions & 4 deletions docs/classes/ApiLog_base.BaseAPI.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ BaseAPI

#### Defined in

[src/generated/ApiLog/base.ts:52](https://github.com/saasus-platform/saasus-sdk-javascript/blob/ea545cb/src/generated/ApiLog/base.ts#L52)
[src/generated/ApiLog/base.ts:52](https://github.com/saasus-platform/saasus-sdk-javascript/blob/7a3a70e/src/generated/ApiLog/base.ts#L52)

## Properties

Expand All @@ -58,7 +58,7 @@ BaseAPI

#### Defined in

[src/generated/ApiLog/base.ts:52](https://github.com/saasus-platform/saasus-sdk-javascript/blob/ea545cb/src/generated/ApiLog/base.ts#L52)
[src/generated/ApiLog/base.ts:52](https://github.com/saasus-platform/saasus-sdk-javascript/blob/7a3a70e/src/generated/ApiLog/base.ts#L52)

___

Expand All @@ -68,7 +68,7 @@ ___

#### Defined in

[src/generated/ApiLog/base.ts:52](https://github.com/saasus-platform/saasus-sdk-javascript/blob/ea545cb/src/generated/ApiLog/base.ts#L52)
[src/generated/ApiLog/base.ts:52](https://github.com/saasus-platform/saasus-sdk-javascript/blob/7a3a70e/src/generated/ApiLog/base.ts#L52)

___

Expand All @@ -78,4 +78,4 @@ ___

#### Defined in

[src/generated/ApiLog/base.ts:50](https://github.com/saasus-platform/saasus-sdk-javascript/blob/ea545cb/src/generated/ApiLog/base.ts#L50)
[src/generated/ApiLog/base.ts:50](https://github.com/saasus-platform/saasus-sdk-javascript/blob/7a3a70e/src/generated/ApiLog/base.ts#L50)
Loading