@seekora-ai/admin-api 1.1.4 → 1.1.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- ## @seekora-ai/admin-api@1.1.4
1
+ ## @seekora-ai/admin-api@1.1.5
2
2
 
3
3
  This generator creates TypeScript/JavaScript client that utilizes [axios](https://github.com/axios/axios). The generated Node module can be used in the following environments:
4
4
 
@@ -36,7 +36,7 @@ navigate to the folder of your consuming project and run one of the following co
36
36
  _published:_
37
37
 
38
38
  ```
39
- npm install @seekora-ai/admin-api@1.1.4 --save
39
+ npm install @seekora-ai/admin-api@1.1.5 --save
40
40
  ```
41
41
 
42
42
  _unPublished (not recommended):_
@@ -653,6 +653,7 @@ Class | Method | HTTP request | Description
653
653
  - [DataTypesLimit](docs/DataTypesLimit.md)
654
654
  - [DataTypesLimitResponse](docs/DataTypesLimitResponse.md)
655
655
  - [DataTypesLimitsListResponse](docs/DataTypesLimitsListResponse.md)
656
+ - [DataTypesLoginAudit](docs/DataTypesLoginAudit.md)
656
657
  - [DataTypesLoginRequest](docs/DataTypesLoginRequest.md)
657
658
  - [DataTypesLoginResponse](docs/DataTypesLoginResponse.md)
658
659
  - [DataTypesLoginResponseWrapper](docs/DataTypesLoginResponseWrapper.md)
package/api.ts CHANGED
@@ -12182,6 +12182,97 @@ export interface DataTypesLimitsListResponse {
12182
12182
  */
12183
12183
  'status'?: number;
12184
12184
  }
12185
+ /**
12186
+ *
12187
+ * @export
12188
+ * @interface DataTypesLoginAudit
12189
+ */
12190
+ export interface DataTypesLoginAudit {
12191
+ /**
12192
+ *
12193
+ * @type {string}
12194
+ * @memberof DataTypesLoginAudit
12195
+ */
12196
+ 'browser'?: string;
12197
+ /**
12198
+ *
12199
+ * @type {number}
12200
+ * @memberof DataTypesLoginAudit
12201
+ */
12202
+ 'createdBy'?: number;
12203
+ /**
12204
+ *
12205
+ * @type {string}
12206
+ * @memberof DataTypesLoginAudit
12207
+ */
12208
+ 'deviceName'?: string;
12209
+ /**
12210
+ *
12211
+ * @type {string}
12212
+ * @memberof DataTypesLoginAudit
12213
+ */
12214
+ 'failureReason'?: string;
12215
+ /**
12216
+ *
12217
+ * @type {string}
12218
+ * @memberof DataTypesLoginAudit
12219
+ */
12220
+ 'ipaddress'?: string;
12221
+ /**
12222
+ *
12223
+ * @type {string}
12224
+ * @memberof DataTypesLoginAudit
12225
+ */
12226
+ 'location'?: string;
12227
+ /**
12228
+ *
12229
+ * @type {number}
12230
+ * @memberof DataTypesLoginAudit
12231
+ */
12232
+ 'logID'?: number;
12233
+ /**
12234
+ *
12235
+ * @type {string}
12236
+ * @memberof DataTypesLoginAudit
12237
+ */
12238
+ 'loginTime'?: string;
12239
+ /**
12240
+ *
12241
+ * @type {string}
12242
+ * @memberof DataTypesLoginAudit
12243
+ */
12244
+ 'loginType'?: string;
12245
+ /**
12246
+ *
12247
+ * @type {string}
12248
+ * @memberof DataTypesLoginAudit
12249
+ */
12250
+ 'os'?: string;
12251
+ /**
12252
+ *
12253
+ * @type {string}
12254
+ * @memberof DataTypesLoginAudit
12255
+ */
12256
+ 'sessionID'?: string;
12257
+ /**
12258
+ *
12259
+ * @type {string}
12260
+ * @memberof DataTypesLoginAudit
12261
+ */
12262
+ 'status'?: string;
12263
+ /**
12264
+ *
12265
+ * @type {string}
12266
+ * @memberof DataTypesLoginAudit
12267
+ */
12268
+ 'userAgent'?: string;
12269
+ /**
12270
+ *
12271
+ * @type {number}
12272
+ * @memberof DataTypesLoginAudit
12273
+ */
12274
+ 'userID'?: number;
12275
+ }
12185
12276
  /**
12186
12277
  *
12187
12278
  * @export
@@ -14770,6 +14861,12 @@ export interface DataTypesProfileResponse {
14770
14861
  * @memberof DataTypesProfileResponse
14771
14862
  */
14772
14863
  'has_password'?: boolean;
14864
+ /**
14865
+ *
14866
+ * @type {Array<DataTypesLoginAudit>}
14867
+ * @memberof DataTypesProfileResponse
14868
+ */
14869
+ 'last_logins'?: Array<DataTypesLoginAudit>;
14773
14870
  /**
14774
14871
  *
14775
14872
  * @type {string}
@@ -20709,7 +20806,7 @@ export const AccountSettingsApiAxiosParamCreator = function (configuration?: Con
20709
20806
  };
20710
20807
  },
20711
20808
  /**
20712
- * Retrieves the profile of the currently logged-in user
20809
+ * Retrieves the full profile of the currently logged-in user including last login history
20713
20810
  * @summary Retrieve user profile
20714
20811
  * @param {*} [options] Override http request option.
20715
20812
  * @throws {RequiredError}
@@ -20893,7 +20990,7 @@ export const AccountSettingsApiFp = function(configuration?: Configuration) {
20893
20990
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
20894
20991
  },
20895
20992
  /**
20896
- * Retrieves the profile of the currently logged-in user
20993
+ * Retrieves the full profile of the currently logged-in user including last login history
20897
20994
  * @summary Retrieve user profile
20898
20995
  * @param {*} [options] Override http request option.
20899
20996
  * @throws {RequiredError}
@@ -20989,7 +21086,7 @@ export const AccountSettingsApiFactory = function (configuration?: Configuration
20989
21086
  return localVarFp.accountSettingsPasswordPut(dataTypesUpdatePasswordRequest, options).then((request) => request(axios, basePath));
20990
21087
  },
20991
21088
  /**
20992
- * Retrieves the profile of the currently logged-in user
21089
+ * Retrieves the full profile of the currently logged-in user including last login history
20993
21090
  * @summary Retrieve user profile
20994
21091
  * @param {*} [options] Override http request option.
20995
21092
  * @throws {RequiredError}
@@ -21086,7 +21183,7 @@ export class AccountSettingsApi extends BaseAPI {
21086
21183
  }
21087
21184
 
21088
21185
  /**
21089
- * Retrieves the profile of the currently logged-in user
21186
+ * Retrieves the full profile of the currently logged-in user including last login history
21090
21187
  * @summary Retrieve user profile
21091
21188
  * @param {*} [options] Override http request option.
21092
21189
  * @throws {RequiredError}
package/dist/api.d.ts CHANGED
@@ -12196,6 +12196,97 @@ export interface DataTypesLimitsListResponse {
12196
12196
  */
12197
12197
  'status'?: number;
12198
12198
  }
12199
+ /**
12200
+ *
12201
+ * @export
12202
+ * @interface DataTypesLoginAudit
12203
+ */
12204
+ export interface DataTypesLoginAudit {
12205
+ /**
12206
+ *
12207
+ * @type {string}
12208
+ * @memberof DataTypesLoginAudit
12209
+ */
12210
+ 'browser'?: string;
12211
+ /**
12212
+ *
12213
+ * @type {number}
12214
+ * @memberof DataTypesLoginAudit
12215
+ */
12216
+ 'createdBy'?: number;
12217
+ /**
12218
+ *
12219
+ * @type {string}
12220
+ * @memberof DataTypesLoginAudit
12221
+ */
12222
+ 'deviceName'?: string;
12223
+ /**
12224
+ *
12225
+ * @type {string}
12226
+ * @memberof DataTypesLoginAudit
12227
+ */
12228
+ 'failureReason'?: string;
12229
+ /**
12230
+ *
12231
+ * @type {string}
12232
+ * @memberof DataTypesLoginAudit
12233
+ */
12234
+ 'ipaddress'?: string;
12235
+ /**
12236
+ *
12237
+ * @type {string}
12238
+ * @memberof DataTypesLoginAudit
12239
+ */
12240
+ 'location'?: string;
12241
+ /**
12242
+ *
12243
+ * @type {number}
12244
+ * @memberof DataTypesLoginAudit
12245
+ */
12246
+ 'logID'?: number;
12247
+ /**
12248
+ *
12249
+ * @type {string}
12250
+ * @memberof DataTypesLoginAudit
12251
+ */
12252
+ 'loginTime'?: string;
12253
+ /**
12254
+ *
12255
+ * @type {string}
12256
+ * @memberof DataTypesLoginAudit
12257
+ */
12258
+ 'loginType'?: string;
12259
+ /**
12260
+ *
12261
+ * @type {string}
12262
+ * @memberof DataTypesLoginAudit
12263
+ */
12264
+ 'os'?: string;
12265
+ /**
12266
+ *
12267
+ * @type {string}
12268
+ * @memberof DataTypesLoginAudit
12269
+ */
12270
+ 'sessionID'?: string;
12271
+ /**
12272
+ *
12273
+ * @type {string}
12274
+ * @memberof DataTypesLoginAudit
12275
+ */
12276
+ 'status'?: string;
12277
+ /**
12278
+ *
12279
+ * @type {string}
12280
+ * @memberof DataTypesLoginAudit
12281
+ */
12282
+ 'userAgent'?: string;
12283
+ /**
12284
+ *
12285
+ * @type {number}
12286
+ * @memberof DataTypesLoginAudit
12287
+ */
12288
+ 'userID'?: number;
12289
+ }
12199
12290
  /**
12200
12291
  *
12201
12292
  * @export
@@ -14809,6 +14900,12 @@ export interface DataTypesProfileResponse {
14809
14900
  * @memberof DataTypesProfileResponse
14810
14901
  */
14811
14902
  'has_password'?: boolean;
14903
+ /**
14904
+ *
14905
+ * @type {Array<DataTypesLoginAudit>}
14906
+ * @memberof DataTypesProfileResponse
14907
+ */
14908
+ 'last_logins'?: Array<DataTypesLoginAudit>;
14812
14909
  /**
14813
14910
  *
14814
14911
  * @type {string}
@@ -20391,7 +20488,7 @@ export declare const AccountSettingsApiAxiosParamCreator: (configuration?: Confi
20391
20488
  */
20392
20489
  accountSettingsPasswordPut: (dataTypesUpdatePasswordRequest: DataTypesUpdatePasswordRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
20393
20490
  /**
20394
- * Retrieves the profile of the currently logged-in user
20491
+ * Retrieves the full profile of the currently logged-in user including last login history
20395
20492
  * @summary Retrieve user profile
20396
20493
  * @param {*} [options] Override http request option.
20397
20494
  * @throws {RequiredError}
@@ -20458,7 +20555,7 @@ export declare const AccountSettingsApiFp: (configuration?: Configuration) => {
20458
20555
  */
20459
20556
  accountSettingsPasswordPut(dataTypesUpdatePasswordRequest: DataTypesUpdatePasswordRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>>;
20460
20557
  /**
20461
- * Retrieves the profile of the currently logged-in user
20558
+ * Retrieves the full profile of the currently logged-in user including last login history
20462
20559
  * @summary Retrieve user profile
20463
20560
  * @param {*} [options] Override http request option.
20464
20561
  * @throws {RequiredError}
@@ -20525,7 +20622,7 @@ export declare const AccountSettingsApiFactory: (configuration?: Configuration,
20525
20622
  */
20526
20623
  accountSettingsPasswordPut(dataTypesUpdatePasswordRequest: DataTypesUpdatePasswordRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse>;
20527
20624
  /**
20528
- * Retrieves the profile of the currently logged-in user
20625
+ * Retrieves the full profile of the currently logged-in user including last login history
20529
20626
  * @summary Retrieve user profile
20530
20627
  * @param {*} [options] Override http request option.
20531
20628
  * @throws {RequiredError}
@@ -20599,7 +20696,7 @@ export declare class AccountSettingsApi extends BaseAPI {
20599
20696
  */
20600
20697
  accountSettingsPasswordPut(dataTypesUpdatePasswordRequest: DataTypesUpdatePasswordRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
20601
20698
  /**
20602
- * Retrieves the profile of the currently logged-in user
20699
+ * Retrieves the full profile of the currently logged-in user including last login history
20603
20700
  * @summary Retrieve user profile
20604
20701
  * @param {*} [options] Override http request option.
20605
20702
  * @throws {RequiredError}
package/dist/api.js CHANGED
@@ -697,7 +697,7 @@ const AccountSettingsApiAxiosParamCreator = function (configuration) {
697
697
  };
698
698
  }),
699
699
  /**
700
- * Retrieves the profile of the currently logged-in user
700
+ * Retrieves the full profile of the currently logged-in user including last login history
701
701
  * @summary Retrieve user profile
702
702
  * @param {*} [options] Override http request option.
703
703
  * @throws {RequiredError}
@@ -876,7 +876,7 @@ const AccountSettingsApiFp = function (configuration) {
876
876
  });
877
877
  },
878
878
  /**
879
- * Retrieves the profile of the currently logged-in user
879
+ * Retrieves the full profile of the currently logged-in user including last login history
880
880
  * @summary Retrieve user profile
881
881
  * @param {*} [options] Override http request option.
882
882
  * @throws {RequiredError}
@@ -981,7 +981,7 @@ const AccountSettingsApiFactory = function (configuration, basePath, axios) {
981
981
  return localVarFp.accountSettingsPasswordPut(dataTypesUpdatePasswordRequest, options).then((request) => request(axios, basePath));
982
982
  },
983
983
  /**
984
- * Retrieves the profile of the currently logged-in user
984
+ * Retrieves the full profile of the currently logged-in user including last login history
985
985
  * @summary Retrieve user profile
986
986
  * @param {*} [options] Override http request option.
987
987
  * @throws {RequiredError}
@@ -1073,7 +1073,7 @@ class AccountSettingsApi extends base_1.BaseAPI {
1073
1073
  return (0, exports.AccountSettingsApiFp)(this.configuration).accountSettingsPasswordPut(dataTypesUpdatePasswordRequest, options).then((request) => request(this.axios, this.basePath));
1074
1074
  }
1075
1075
  /**
1076
- * Retrieves the profile of the currently logged-in user
1076
+ * Retrieves the full profile of the currently logged-in user including last login history
1077
1077
  * @summary Retrieve user profile
1078
1078
  * @param {*} [options] Override http request option.
1079
1079
  * @throws {RequiredError}
package/dist/esm/api.d.ts CHANGED
@@ -12196,6 +12196,97 @@ export interface DataTypesLimitsListResponse {
12196
12196
  */
12197
12197
  'status'?: number;
12198
12198
  }
12199
+ /**
12200
+ *
12201
+ * @export
12202
+ * @interface DataTypesLoginAudit
12203
+ */
12204
+ export interface DataTypesLoginAudit {
12205
+ /**
12206
+ *
12207
+ * @type {string}
12208
+ * @memberof DataTypesLoginAudit
12209
+ */
12210
+ 'browser'?: string;
12211
+ /**
12212
+ *
12213
+ * @type {number}
12214
+ * @memberof DataTypesLoginAudit
12215
+ */
12216
+ 'createdBy'?: number;
12217
+ /**
12218
+ *
12219
+ * @type {string}
12220
+ * @memberof DataTypesLoginAudit
12221
+ */
12222
+ 'deviceName'?: string;
12223
+ /**
12224
+ *
12225
+ * @type {string}
12226
+ * @memberof DataTypesLoginAudit
12227
+ */
12228
+ 'failureReason'?: string;
12229
+ /**
12230
+ *
12231
+ * @type {string}
12232
+ * @memberof DataTypesLoginAudit
12233
+ */
12234
+ 'ipaddress'?: string;
12235
+ /**
12236
+ *
12237
+ * @type {string}
12238
+ * @memberof DataTypesLoginAudit
12239
+ */
12240
+ 'location'?: string;
12241
+ /**
12242
+ *
12243
+ * @type {number}
12244
+ * @memberof DataTypesLoginAudit
12245
+ */
12246
+ 'logID'?: number;
12247
+ /**
12248
+ *
12249
+ * @type {string}
12250
+ * @memberof DataTypesLoginAudit
12251
+ */
12252
+ 'loginTime'?: string;
12253
+ /**
12254
+ *
12255
+ * @type {string}
12256
+ * @memberof DataTypesLoginAudit
12257
+ */
12258
+ 'loginType'?: string;
12259
+ /**
12260
+ *
12261
+ * @type {string}
12262
+ * @memberof DataTypesLoginAudit
12263
+ */
12264
+ 'os'?: string;
12265
+ /**
12266
+ *
12267
+ * @type {string}
12268
+ * @memberof DataTypesLoginAudit
12269
+ */
12270
+ 'sessionID'?: string;
12271
+ /**
12272
+ *
12273
+ * @type {string}
12274
+ * @memberof DataTypesLoginAudit
12275
+ */
12276
+ 'status'?: string;
12277
+ /**
12278
+ *
12279
+ * @type {string}
12280
+ * @memberof DataTypesLoginAudit
12281
+ */
12282
+ 'userAgent'?: string;
12283
+ /**
12284
+ *
12285
+ * @type {number}
12286
+ * @memberof DataTypesLoginAudit
12287
+ */
12288
+ 'userID'?: number;
12289
+ }
12199
12290
  /**
12200
12291
  *
12201
12292
  * @export
@@ -14809,6 +14900,12 @@ export interface DataTypesProfileResponse {
14809
14900
  * @memberof DataTypesProfileResponse
14810
14901
  */
14811
14902
  'has_password'?: boolean;
14903
+ /**
14904
+ *
14905
+ * @type {Array<DataTypesLoginAudit>}
14906
+ * @memberof DataTypesProfileResponse
14907
+ */
14908
+ 'last_logins'?: Array<DataTypesLoginAudit>;
14812
14909
  /**
14813
14910
  *
14814
14911
  * @type {string}
@@ -20391,7 +20488,7 @@ export declare const AccountSettingsApiAxiosParamCreator: (configuration?: Confi
20391
20488
  */
20392
20489
  accountSettingsPasswordPut: (dataTypesUpdatePasswordRequest: DataTypesUpdatePasswordRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
20393
20490
  /**
20394
- * Retrieves the profile of the currently logged-in user
20491
+ * Retrieves the full profile of the currently logged-in user including last login history
20395
20492
  * @summary Retrieve user profile
20396
20493
  * @param {*} [options] Override http request option.
20397
20494
  * @throws {RequiredError}
@@ -20458,7 +20555,7 @@ export declare const AccountSettingsApiFp: (configuration?: Configuration) => {
20458
20555
  */
20459
20556
  accountSettingsPasswordPut(dataTypesUpdatePasswordRequest: DataTypesUpdatePasswordRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>>;
20460
20557
  /**
20461
- * Retrieves the profile of the currently logged-in user
20558
+ * Retrieves the full profile of the currently logged-in user including last login history
20462
20559
  * @summary Retrieve user profile
20463
20560
  * @param {*} [options] Override http request option.
20464
20561
  * @throws {RequiredError}
@@ -20525,7 +20622,7 @@ export declare const AccountSettingsApiFactory: (configuration?: Configuration,
20525
20622
  */
20526
20623
  accountSettingsPasswordPut(dataTypesUpdatePasswordRequest: DataTypesUpdatePasswordRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse>;
20527
20624
  /**
20528
- * Retrieves the profile of the currently logged-in user
20625
+ * Retrieves the full profile of the currently logged-in user including last login history
20529
20626
  * @summary Retrieve user profile
20530
20627
  * @param {*} [options] Override http request option.
20531
20628
  * @throws {RequiredError}
@@ -20599,7 +20696,7 @@ export declare class AccountSettingsApi extends BaseAPI {
20599
20696
  */
20600
20697
  accountSettingsPasswordPut(dataTypesUpdatePasswordRequest: DataTypesUpdatePasswordRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
20601
20698
  /**
20602
- * Retrieves the profile of the currently logged-in user
20699
+ * Retrieves the full profile of the currently logged-in user including last login history
20603
20700
  * @summary Retrieve user profile
20604
20701
  * @param {*} [options] Override http request option.
20605
20702
  * @throws {RequiredError}
package/dist/esm/api.js CHANGED
@@ -685,7 +685,7 @@ export const AccountSettingsApiAxiosParamCreator = function (configuration) {
685
685
  };
686
686
  }),
687
687
  /**
688
- * Retrieves the profile of the currently logged-in user
688
+ * Retrieves the full profile of the currently logged-in user including last login history
689
689
  * @summary Retrieve user profile
690
690
  * @param {*} [options] Override http request option.
691
691
  * @throws {RequiredError}
@@ -863,7 +863,7 @@ export const AccountSettingsApiFp = function (configuration) {
863
863
  });
864
864
  },
865
865
  /**
866
- * Retrieves the profile of the currently logged-in user
866
+ * Retrieves the full profile of the currently logged-in user including last login history
867
867
  * @summary Retrieve user profile
868
868
  * @param {*} [options] Override http request option.
869
869
  * @throws {RequiredError}
@@ -967,7 +967,7 @@ export const AccountSettingsApiFactory = function (configuration, basePath, axio
967
967
  return localVarFp.accountSettingsPasswordPut(dataTypesUpdatePasswordRequest, options).then((request) => request(axios, basePath));
968
968
  },
969
969
  /**
970
- * Retrieves the profile of the currently logged-in user
970
+ * Retrieves the full profile of the currently logged-in user including last login history
971
971
  * @summary Retrieve user profile
972
972
  * @param {*} [options] Override http request option.
973
973
  * @throws {RequiredError}
@@ -1058,7 +1058,7 @@ export class AccountSettingsApi extends BaseAPI {
1058
1058
  return AccountSettingsApiFp(this.configuration).accountSettingsPasswordPut(dataTypesUpdatePasswordRequest, options).then((request) => request(this.axios, this.basePath));
1059
1059
  }
1060
1060
  /**
1061
- * Retrieves the profile of the currently logged-in user
1061
+ * Retrieves the full profile of the currently logged-in user including last login history
1062
1062
  * @summary Retrieve user profile
1063
1063
  * @param {*} [options] Override http request option.
1064
1064
  * @throws {RequiredError}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seekora-ai/admin-api",
3
- "version": "1.1.4",
3
+ "version": "1.1.5",
4
4
  "description": "OpenAPI client for @seekora-ai/admin-api",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {
Binary file
Binary file