@seekora-ai/admin-api 1.0.21 → 1.0.23

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
@@ -5561,6 +5678,31 @@ export interface MultipartFileHeader {
5561
5678
  */
5562
5679
  'size'?: number;
5563
5680
  }
5681
+ /**
5682
+ *
5683
+ * @export
5684
+ * @interface ProfileGet200Response
5685
+ */
5686
+ export interface ProfileGet200Response {
5687
+ /**
5688
+ *
5689
+ * @type {DataTypesProfileResponse}
5690
+ * @memberof ProfileGet200Response
5691
+ */
5692
+ 'data'?: DataTypesProfileResponse;
5693
+ /**
5694
+ *
5695
+ * @type {string}
5696
+ * @memberof ProfileGet200Response
5697
+ */
5698
+ 'message'?: string;
5699
+ /**
5700
+ *
5701
+ * @type {number}
5702
+ * @memberof ProfileGet200Response
5703
+ */
5704
+ 'status'?: number;
5705
+ }
5564
5706
  /**
5565
5707
  *
5566
5708
  * @export
@@ -5789,6 +5931,127 @@ export declare class APICallsApi extends BaseAPI {
5789
5931
  */
5790
5932
  adminAPICallsPost(aPICall: DataTypesAPICallRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
5791
5933
  }
5934
+ /**
5935
+ * AccountSettingsApi - axios parameter creator
5936
+ * @export
5937
+ */
5938
+ export declare const AccountSettingsApiAxiosParamCreator: (configuration?: Configuration) => {
5939
+ /**
5940
+ * Updates the password of the currently logged-in user
5941
+ * @summary Update user password
5942
+ * @param {DataTypesUpdatePasswordRequest} password Password update request
5943
+ * @param {*} [options] Override http request option.
5944
+ * @throws {RequiredError}
5945
+ */
5946
+ passwordPut: (password: DataTypesUpdatePasswordRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5947
+ /**
5948
+ * Retrieves the profile of the currently logged-in user
5949
+ * @summary Retrieve user profile
5950
+ * @param {*} [options] Override http request option.
5951
+ * @throws {RequiredError}
5952
+ */
5953
+ profileGet: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5954
+ /**
5955
+ * Updates the profile of the currently logged-in user
5956
+ * @summary Update user profile
5957
+ * @param {DataTypesUpdateProfileRequest} profile Profile update request
5958
+ * @param {*} [options] Override http request option.
5959
+ * @throws {RequiredError}
5960
+ */
5961
+ profilePut: (profile: DataTypesUpdateProfileRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5962
+ };
5963
+ /**
5964
+ * AccountSettingsApi - functional programming interface
5965
+ * @export
5966
+ */
5967
+ export declare const AccountSettingsApiFp: (configuration?: Configuration) => {
5968
+ /**
5969
+ * Updates the password of the currently logged-in user
5970
+ * @summary Update user password
5971
+ * @param {DataTypesUpdatePasswordRequest} password Password update request
5972
+ * @param {*} [options] Override http request option.
5973
+ * @throws {RequiredError}
5974
+ */
5975
+ passwordPut(password: DataTypesUpdatePasswordRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>>;
5976
+ /**
5977
+ * Retrieves the profile of the currently logged-in user
5978
+ * @summary Retrieve user profile
5979
+ * @param {*} [options] Override http request option.
5980
+ * @throws {RequiredError}
5981
+ */
5982
+ profileGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProfileGet200Response>>;
5983
+ /**
5984
+ * Updates the profile of the currently logged-in user
5985
+ * @summary Update user profile
5986
+ * @param {DataTypesUpdateProfileRequest} profile Profile update request
5987
+ * @param {*} [options] Override http request option.
5988
+ * @throws {RequiredError}
5989
+ */
5990
+ profilePut(profile: DataTypesUpdateProfileRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProfileGet200Response>>;
5991
+ };
5992
+ /**
5993
+ * AccountSettingsApi - factory interface
5994
+ * @export
5995
+ */
5996
+ export declare const AccountSettingsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
5997
+ /**
5998
+ * Updates the password of the currently logged-in user
5999
+ * @summary Update user password
6000
+ * @param {DataTypesUpdatePasswordRequest} password Password update request
6001
+ * @param {*} [options] Override http request option.
6002
+ * @throws {RequiredError}
6003
+ */
6004
+ passwordPut(password: DataTypesUpdatePasswordRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse>;
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<ProfileGet200Response>;
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<ProfileGet200Response>;
6020
+ };
6021
+ /**
6022
+ * AccountSettingsApi - object-oriented interface
6023
+ * @export
6024
+ * @class AccountSettingsApi
6025
+ * @extends {BaseAPI}
6026
+ */
6027
+ export declare class AccountSettingsApi extends BaseAPI {
6028
+ /**
6029
+ * Updates the password of the currently logged-in user
6030
+ * @summary Update user password
6031
+ * @param {DataTypesUpdatePasswordRequest} password Password update request
6032
+ * @param {*} [options] Override http request option.
6033
+ * @throws {RequiredError}
6034
+ * @memberof AccountSettingsApi
6035
+ */
6036
+ passwordPut(password: DataTypesUpdatePasswordRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
6037
+ /**
6038
+ * Retrieves the profile of the currently logged-in user
6039
+ * @summary Retrieve user profile
6040
+ * @param {*} [options] Override http request option.
6041
+ * @throws {RequiredError}
6042
+ * @memberof AccountSettingsApi
6043
+ */
6044
+ profileGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProfileGet200Response, any>>;
6045
+ /**
6046
+ * Updates the profile of the currently logged-in user
6047
+ * @summary Update user profile
6048
+ * @param {DataTypesUpdateProfileRequest} profile Profile update request
6049
+ * @param {*} [options] Override http request option.
6050
+ * @throws {RequiredError}
6051
+ * @memberof AccountSettingsApi
6052
+ */
6053
+ profilePut(profile: DataTypesUpdateProfileRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProfileGet200Response, any>>;
6054
+ }
5792
6055
  /**
5793
6056
  * ArticlesApi - axios parameter creator
5794
6057
  * @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.23",
4
4
  "description": "OpenAPI client for @seekora-ai/admin-api",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {
Binary file
Binary file