@seekora-ai/admin-api 1.0.21 → 1.0.22

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/dist/esm/api.d.ts CHANGED
@@ -3352,6 +3352,61 @@ export interface DataTypesPlansListResponse {
3352
3352
  */
3353
3353
  'status'?: number;
3354
3354
  }
3355
+ /**
3356
+ *
3357
+ * @export
3358
+ * @interface DataTypesProfileResponse
3359
+ */
3360
+ export interface DataTypesProfileResponse {
3361
+ /**
3362
+ *
3363
+ * @type {string}
3364
+ * @memberof DataTypesProfileResponse
3365
+ */
3366
+ 'firstname'?: string;
3367
+ /**
3368
+ *
3369
+ * @type {string}
3370
+ * @memberof DataTypesProfileResponse
3371
+ */
3372
+ 'lastname'?: string;
3373
+ /**
3374
+ *
3375
+ * @type {string}
3376
+ * @memberof DataTypesProfileResponse
3377
+ */
3378
+ 'profileimagepath'?: string;
3379
+ /**
3380
+ *
3381
+ * @type {string}
3382
+ * @memberof DataTypesProfileResponse
3383
+ */
3384
+ 'usercode'?: string;
3385
+ /**
3386
+ *
3387
+ * @type {string}
3388
+ * @memberof DataTypesProfileResponse
3389
+ */
3390
+ 'useremailid'?: string;
3391
+ /**
3392
+ *
3393
+ * @type {number}
3394
+ * @memberof DataTypesProfileResponse
3395
+ */
3396
+ 'userid'?: number;
3397
+ /**
3398
+ *
3399
+ * @type {string}
3400
+ * @memberof DataTypesProfileResponse
3401
+ */
3402
+ 'username'?: string;
3403
+ /**
3404
+ *
3405
+ * @type {string}
3406
+ * @memberof DataTypesProfileResponse
3407
+ */
3408
+ 'userphone'?: string;
3409
+ }
3355
3410
  /**
3356
3411
  *
3357
3412
  * @export
@@ -5011,6 +5066,68 @@ export interface DataTypesUpdateIndexSchemaRequestFieldsInner {
5011
5066
  */
5012
5067
  'sort'?: boolean;
5013
5068
  }
5069
+ /**
5070
+ *
5071
+ * @export
5072
+ * @interface DataTypesUpdatePasswordRequest
5073
+ */
5074
+ export interface DataTypesUpdatePasswordRequest {
5075
+ /**
5076
+ *
5077
+ * @type {string}
5078
+ * @memberof DataTypesUpdatePasswordRequest
5079
+ */
5080
+ 'currentpassword': string;
5081
+ /**
5082
+ *
5083
+ * @type {string}
5084
+ * @memberof DataTypesUpdatePasswordRequest
5085
+ */
5086
+ 'newpassword': string;
5087
+ }
5088
+ /**
5089
+ *
5090
+ * @export
5091
+ * @interface DataTypesUpdateProfileRequest
5092
+ */
5093
+ export interface DataTypesUpdateProfileRequest {
5094
+ /**
5095
+ *
5096
+ * @type {string}
5097
+ * @memberof DataTypesUpdateProfileRequest
5098
+ */
5099
+ 'firstname': string;
5100
+ /**
5101
+ *
5102
+ * @type {string}
5103
+ * @memberof DataTypesUpdateProfileRequest
5104
+ */
5105
+ 'lastname': string;
5106
+ /**
5107
+ *
5108
+ * @type {string}
5109
+ * @memberof DataTypesUpdateProfileRequest
5110
+ */
5111
+ 'profileimagepath'?: string;
5112
+ /**
5113
+ *
5114
+ * @type {string}
5115
+ * @memberof DataTypesUpdateProfileRequest
5116
+ */
5117
+ 'useremailid': string;
5118
+ /**
5119
+ *
5120
+ * @type {string}
5121
+ * @memberof DataTypesUpdateProfileRequest
5122
+ */
5123
+ 'username': string;
5124
+ /**
5125
+ *
5126
+ * @type {string}
5127
+ * @memberof DataTypesUpdateProfileRequest
5128
+ */
5129
+ 'userphone': string;
5130
+ }
5014
5131
  /**
5015
5132
  *
5016
5133
  * @export
@@ -5442,6 +5559,25 @@ export interface DataTypesVerifyOTPResponseWrapper {
5442
5559
  */
5443
5560
  'status'?: number;
5444
5561
  }
5562
+ /**
5563
+ *
5564
+ * @export
5565
+ * @interface FiberError
5566
+ */
5567
+ export interface FiberError {
5568
+ /**
5569
+ *
5570
+ * @type {number}
5571
+ * @memberof FiberError
5572
+ */
5573
+ 'code'?: number;
5574
+ /**
5575
+ *
5576
+ * @type {string}
5577
+ * @memberof FiberError
5578
+ */
5579
+ 'message'?: string;
5580
+ }
5445
5581
  /**
5446
5582
  *
5447
5583
  * @export
@@ -5789,6 +5925,139 @@ export declare class APICallsApi extends BaseAPI {
5789
5925
  */
5790
5926
  adminAPICallsPost(aPICall: DataTypesAPICallRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
5791
5927
  }
5928
+ /**
5929
+ * AccountSettingsApi - axios parameter creator
5930
+ * @export
5931
+ */
5932
+ export declare const AccountSettingsApiAxiosParamCreator: (configuration?: Configuration) => {
5933
+ /**
5934
+ * Updates the password of the currently logged-in user
5935
+ * @summary Update user password
5936
+ * @param {DataTypesUpdatePasswordRequest} password Password update request
5937
+ * @param {*} [options] Override http request option.
5938
+ * @throws {RequiredError}
5939
+ */
5940
+ passwordPut: (password: DataTypesUpdatePasswordRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5941
+ /**
5942
+ * Retrieves the profile of the currently logged-in user
5943
+ * @summary Retrieve user profile
5944
+ * @param {*} [options] Override http request option.
5945
+ * @throws {RequiredError}
5946
+ */
5947
+ profileGet: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5948
+ /**
5949
+ * Updates the profile of the currently logged-in user
5950
+ * @summary Update user profile
5951
+ * @param {DataTypesUpdateProfileRequest} profile Profile update request
5952
+ * @param {*} [options] Override http request option.
5953
+ * @throws {RequiredError}
5954
+ */
5955
+ profilePut: (profile: DataTypesUpdateProfileRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5956
+ };
5957
+ /**
5958
+ * AccountSettingsApi - functional programming interface
5959
+ * @export
5960
+ */
5961
+ export declare const AccountSettingsApiFp: (configuration?: Configuration) => {
5962
+ /**
5963
+ * Updates the password of the currently logged-in user
5964
+ * @summary Update user password
5965
+ * @param {DataTypesUpdatePasswordRequest} password Password update request
5966
+ * @param {*} [options] Override http request option.
5967
+ * @throws {RequiredError}
5968
+ */
5969
+ passwordPut(password: DataTypesUpdatePasswordRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<{
5970
+ [key: string]: any;
5971
+ }>>;
5972
+ /**
5973
+ * Retrieves the profile of the currently logged-in user
5974
+ * @summary Retrieve user profile
5975
+ * @param {*} [options] Override http request option.
5976
+ * @throws {RequiredError}
5977
+ */
5978
+ profileGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesProfileResponse>>;
5979
+ /**
5980
+ * Updates the profile of the currently logged-in user
5981
+ * @summary Update user profile
5982
+ * @param {DataTypesUpdateProfileRequest} profile Profile update request
5983
+ * @param {*} [options] Override http request option.
5984
+ * @throws {RequiredError}
5985
+ */
5986
+ profilePut(profile: DataTypesUpdateProfileRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<{
5987
+ [key: string]: any;
5988
+ }>>;
5989
+ };
5990
+ /**
5991
+ * AccountSettingsApi - factory interface
5992
+ * @export
5993
+ */
5994
+ export declare const AccountSettingsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
5995
+ /**
5996
+ * Updates the password of the currently logged-in user
5997
+ * @summary Update user password
5998
+ * @param {DataTypesUpdatePasswordRequest} password Password update request
5999
+ * @param {*} [options] Override http request option.
6000
+ * @throws {RequiredError}
6001
+ */
6002
+ passwordPut(password: DataTypesUpdatePasswordRequest, options?: RawAxiosRequestConfig): AxiosPromise<{
6003
+ [key: string]: any;
6004
+ }>;
6005
+ /**
6006
+ * Retrieves the profile of the currently logged-in user
6007
+ * @summary Retrieve user profile
6008
+ * @param {*} [options] Override http request option.
6009
+ * @throws {RequiredError}
6010
+ */
6011
+ profileGet(options?: RawAxiosRequestConfig): AxiosPromise<DataTypesProfileResponse>;
6012
+ /**
6013
+ * Updates the profile of the currently logged-in user
6014
+ * @summary Update user profile
6015
+ * @param {DataTypesUpdateProfileRequest} profile Profile update request
6016
+ * @param {*} [options] Override http request option.
6017
+ * @throws {RequiredError}
6018
+ */
6019
+ profilePut(profile: DataTypesUpdateProfileRequest, options?: RawAxiosRequestConfig): AxiosPromise<{
6020
+ [key: string]: any;
6021
+ }>;
6022
+ };
6023
+ /**
6024
+ * AccountSettingsApi - object-oriented interface
6025
+ * @export
6026
+ * @class AccountSettingsApi
6027
+ * @extends {BaseAPI}
6028
+ */
6029
+ export declare class AccountSettingsApi extends BaseAPI {
6030
+ /**
6031
+ * Updates the password of the currently logged-in user
6032
+ * @summary Update user password
6033
+ * @param {DataTypesUpdatePasswordRequest} password Password update request
6034
+ * @param {*} [options] Override http request option.
6035
+ * @throws {RequiredError}
6036
+ * @memberof AccountSettingsApi
6037
+ */
6038
+ passwordPut(password: DataTypesUpdatePasswordRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<{
6039
+ [key: string]: any;
6040
+ }, any>>;
6041
+ /**
6042
+ * Retrieves the profile of the currently logged-in user
6043
+ * @summary Retrieve user profile
6044
+ * @param {*} [options] Override http request option.
6045
+ * @throws {RequiredError}
6046
+ * @memberof AccountSettingsApi
6047
+ */
6048
+ profileGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesProfileResponse, any>>;
6049
+ /**
6050
+ * Updates the profile of the currently logged-in user
6051
+ * @summary Update user profile
6052
+ * @param {DataTypesUpdateProfileRequest} profile Profile update request
6053
+ * @param {*} [options] Override http request option.
6054
+ * @throws {RequiredError}
6055
+ * @memberof AccountSettingsApi
6056
+ */
6057
+ profilePut(profile: DataTypesUpdateProfileRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<{
6058
+ [key: string]: any;
6059
+ }, any>>;
6060
+ }
5792
6061
  /**
5793
6062
  * ArticlesApi - axios parameter creator
5794
6063
  * @export
package/dist/esm/api.js CHANGED
@@ -420,6 +420,239 @@ export class APICallsApi extends BaseAPI {
420
420
  return APICallsApiFp(this.configuration).adminAPICallsPost(aPICall, options).then((request) => request(this.axios, this.basePath));
421
421
  }
422
422
  }
423
+ /**
424
+ * AccountSettingsApi - axios parameter creator
425
+ * @export
426
+ */
427
+ export const AccountSettingsApiAxiosParamCreator = function (configuration) {
428
+ return {
429
+ /**
430
+ * Updates the password of the currently logged-in user
431
+ * @summary Update user password
432
+ * @param {DataTypesUpdatePasswordRequest} password Password update request
433
+ * @param {*} [options] Override http request option.
434
+ * @throws {RequiredError}
435
+ */
436
+ passwordPut: (password_1, ...args_1) => __awaiter(this, [password_1, ...args_1], void 0, function* (password, options = {}) {
437
+ // verify required parameter 'password' is not null or undefined
438
+ assertParamExists('passwordPut', 'password', password);
439
+ const localVarPath = `/password`;
440
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
441
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
442
+ let baseOptions;
443
+ if (configuration) {
444
+ baseOptions = configuration.baseOptions;
445
+ }
446
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'PUT' }, baseOptions), options);
447
+ const localVarHeaderParameter = {};
448
+ const localVarQueryParameter = {};
449
+ // authentication BearerAuth required
450
+ yield setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration);
451
+ localVarHeaderParameter['Content-Type'] = 'application/json';
452
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
453
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
454
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
455
+ localVarRequestOptions.data = serializeDataIfNeeded(password, localVarRequestOptions, configuration);
456
+ return {
457
+ url: toPathString(localVarUrlObj),
458
+ options: localVarRequestOptions,
459
+ };
460
+ }),
461
+ /**
462
+ * Retrieves the profile of the currently logged-in user
463
+ * @summary Retrieve user profile
464
+ * @param {*} [options] Override http request option.
465
+ * @throws {RequiredError}
466
+ */
467
+ profileGet: (...args_1) => __awaiter(this, [...args_1], void 0, function* (options = {}) {
468
+ const localVarPath = `/profile`;
469
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
470
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
471
+ let baseOptions;
472
+ if (configuration) {
473
+ baseOptions = configuration.baseOptions;
474
+ }
475
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
476
+ const localVarHeaderParameter = {};
477
+ const localVarQueryParameter = {};
478
+ // authentication BearerAuth required
479
+ yield setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration);
480
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
481
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
482
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
483
+ return {
484
+ url: toPathString(localVarUrlObj),
485
+ options: localVarRequestOptions,
486
+ };
487
+ }),
488
+ /**
489
+ * Updates the profile of the currently logged-in user
490
+ * @summary Update user profile
491
+ * @param {DataTypesUpdateProfileRequest} profile Profile update request
492
+ * @param {*} [options] Override http request option.
493
+ * @throws {RequiredError}
494
+ */
495
+ profilePut: (profile_1, ...args_1) => __awaiter(this, [profile_1, ...args_1], void 0, function* (profile, options = {}) {
496
+ // verify required parameter 'profile' is not null or undefined
497
+ assertParamExists('profilePut', 'profile', profile);
498
+ const localVarPath = `/profile`;
499
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
500
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
501
+ let baseOptions;
502
+ if (configuration) {
503
+ baseOptions = configuration.baseOptions;
504
+ }
505
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'PUT' }, baseOptions), options);
506
+ const localVarHeaderParameter = {};
507
+ const localVarQueryParameter = {};
508
+ // authentication BearerAuth required
509
+ yield setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration);
510
+ localVarHeaderParameter['Content-Type'] = 'application/json';
511
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
512
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
513
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
514
+ localVarRequestOptions.data = serializeDataIfNeeded(profile, localVarRequestOptions, configuration);
515
+ return {
516
+ url: toPathString(localVarUrlObj),
517
+ options: localVarRequestOptions,
518
+ };
519
+ }),
520
+ };
521
+ };
522
+ /**
523
+ * AccountSettingsApi - functional programming interface
524
+ * @export
525
+ */
526
+ export const AccountSettingsApiFp = function (configuration) {
527
+ const localVarAxiosParamCreator = AccountSettingsApiAxiosParamCreator(configuration);
528
+ return {
529
+ /**
530
+ * Updates the password of the currently logged-in user
531
+ * @summary Update user password
532
+ * @param {DataTypesUpdatePasswordRequest} password Password update request
533
+ * @param {*} [options] Override http request option.
534
+ * @throws {RequiredError}
535
+ */
536
+ passwordPut(password, options) {
537
+ return __awaiter(this, void 0, void 0, function* () {
538
+ var _a, _b, _c;
539
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.passwordPut(password, options);
540
+ const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
541
+ const localVarOperationServerBasePath = (_c = (_b = operationServerMap['AccountSettingsApi.passwordPut']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
542
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
543
+ });
544
+ },
545
+ /**
546
+ * Retrieves the profile of the currently logged-in user
547
+ * @summary Retrieve user profile
548
+ * @param {*} [options] Override http request option.
549
+ * @throws {RequiredError}
550
+ */
551
+ profileGet(options) {
552
+ return __awaiter(this, void 0, void 0, function* () {
553
+ var _a, _b, _c;
554
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.profileGet(options);
555
+ const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
556
+ const localVarOperationServerBasePath = (_c = (_b = operationServerMap['AccountSettingsApi.profileGet']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
557
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
558
+ });
559
+ },
560
+ /**
561
+ * Updates the profile of the currently logged-in user
562
+ * @summary Update user profile
563
+ * @param {DataTypesUpdateProfileRequest} profile Profile update request
564
+ * @param {*} [options] Override http request option.
565
+ * @throws {RequiredError}
566
+ */
567
+ profilePut(profile, options) {
568
+ return __awaiter(this, void 0, void 0, function* () {
569
+ var _a, _b, _c;
570
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.profilePut(profile, options);
571
+ const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
572
+ const localVarOperationServerBasePath = (_c = (_b = operationServerMap['AccountSettingsApi.profilePut']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
573
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
574
+ });
575
+ },
576
+ };
577
+ };
578
+ /**
579
+ * AccountSettingsApi - factory interface
580
+ * @export
581
+ */
582
+ export const AccountSettingsApiFactory = function (configuration, basePath, axios) {
583
+ const localVarFp = AccountSettingsApiFp(configuration);
584
+ return {
585
+ /**
586
+ * Updates the password of the currently logged-in user
587
+ * @summary Update user password
588
+ * @param {DataTypesUpdatePasswordRequest} password Password update request
589
+ * @param {*} [options] Override http request option.
590
+ * @throws {RequiredError}
591
+ */
592
+ passwordPut(password, options) {
593
+ return localVarFp.passwordPut(password, options).then((request) => request(axios, basePath));
594
+ },
595
+ /**
596
+ * Retrieves the profile of the currently logged-in user
597
+ * @summary Retrieve user profile
598
+ * @param {*} [options] Override http request option.
599
+ * @throws {RequiredError}
600
+ */
601
+ profileGet(options) {
602
+ return localVarFp.profileGet(options).then((request) => request(axios, basePath));
603
+ },
604
+ /**
605
+ * Updates the profile of the currently logged-in user
606
+ * @summary Update user profile
607
+ * @param {DataTypesUpdateProfileRequest} profile Profile update request
608
+ * @param {*} [options] Override http request option.
609
+ * @throws {RequiredError}
610
+ */
611
+ profilePut(profile, options) {
612
+ return localVarFp.profilePut(profile, options).then((request) => request(axios, basePath));
613
+ },
614
+ };
615
+ };
616
+ /**
617
+ * AccountSettingsApi - object-oriented interface
618
+ * @export
619
+ * @class AccountSettingsApi
620
+ * @extends {BaseAPI}
621
+ */
622
+ export class AccountSettingsApi extends BaseAPI {
623
+ /**
624
+ * Updates the password of the currently logged-in user
625
+ * @summary Update user password
626
+ * @param {DataTypesUpdatePasswordRequest} password Password update request
627
+ * @param {*} [options] Override http request option.
628
+ * @throws {RequiredError}
629
+ * @memberof AccountSettingsApi
630
+ */
631
+ passwordPut(password, options) {
632
+ return AccountSettingsApiFp(this.configuration).passwordPut(password, options).then((request) => request(this.axios, this.basePath));
633
+ }
634
+ /**
635
+ * Retrieves the profile of the currently logged-in user
636
+ * @summary Retrieve user profile
637
+ * @param {*} [options] Override http request option.
638
+ * @throws {RequiredError}
639
+ * @memberof AccountSettingsApi
640
+ */
641
+ profileGet(options) {
642
+ return AccountSettingsApiFp(this.configuration).profileGet(options).then((request) => request(this.axios, this.basePath));
643
+ }
644
+ /**
645
+ * Updates the profile of the currently logged-in user
646
+ * @summary Update user profile
647
+ * @param {DataTypesUpdateProfileRequest} profile Profile update request
648
+ * @param {*} [options] Override http request option.
649
+ * @throws {RequiredError}
650
+ * @memberof AccountSettingsApi
651
+ */
652
+ profilePut(profile, options) {
653
+ return AccountSettingsApiFp(this.configuration).profilePut(profile, options).then((request) => request(this.axios, this.basePath));
654
+ }
655
+ }
423
656
  /**
424
657
  * ArticlesApi - axios parameter creator
425
658
  * @export
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seekora-ai/admin-api",
3
- "version": "1.0.21",
3
+ "version": "1.0.22",
4
4
  "description": "OpenAPI client for @seekora-ai/admin-api",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {
Binary file
Binary file