@seekora-ai/admin-api 1.0.2 → 1.0.3
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 +2 -2
- package/api.ts +36 -0
- package/dist/api.d.ts +36 -0
- package/dist/esm/api.d.ts +36 -0
- package/package.json +1 -1
- package/seekora-ai-admin-api-1.0.3.tgz +0 -0
- package/seekora-ai-admin-api-1.0.2.tgz +0 -0
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## @seekora-ai/admin-api@1.0.
|
|
1
|
+
## @seekora-ai/admin-api@1.0.3
|
|
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.0.
|
|
39
|
+
npm install @seekora-ai/admin-api@1.0.3 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
package/api.ts
CHANGED
|
@@ -1138,6 +1138,12 @@ export interface DataTypesLoginResponse {
|
|
|
1138
1138
|
* @memberof DataTypesLoginResponse
|
|
1139
1139
|
*/
|
|
1140
1140
|
'message'?: string;
|
|
1141
|
+
/**
|
|
1142
|
+
*
|
|
1143
|
+
* @type {string}
|
|
1144
|
+
* @memberof DataTypesLoginResponse
|
|
1145
|
+
*/
|
|
1146
|
+
'onboardingStep'?: string;
|
|
1141
1147
|
/**
|
|
1142
1148
|
*
|
|
1143
1149
|
* @type {number}
|
|
@@ -3719,6 +3725,12 @@ export interface DataTypesUser {
|
|
|
3719
3725
|
* @memberof DataTypesUser
|
|
3720
3726
|
*/
|
|
3721
3727
|
'modifiedUserId'?: number;
|
|
3728
|
+
/**
|
|
3729
|
+
*
|
|
3730
|
+
* @type {string}
|
|
3731
|
+
* @memberof DataTypesUser
|
|
3732
|
+
*/
|
|
3733
|
+
'onboardingstep'?: string;
|
|
3722
3734
|
/**
|
|
3723
3735
|
*
|
|
3724
3736
|
* @type {number}
|
|
@@ -3892,6 +3904,12 @@ export interface DataTypesValidationErrorResult {
|
|
|
3892
3904
|
* @interface DataTypesVerifyOTPResponse
|
|
3893
3905
|
*/
|
|
3894
3906
|
export interface DataTypesVerifyOTPResponse {
|
|
3907
|
+
/**
|
|
3908
|
+
*
|
|
3909
|
+
* @type {string}
|
|
3910
|
+
* @memberof DataTypesVerifyOTPResponse
|
|
3911
|
+
*/
|
|
3912
|
+
'email'?: string;
|
|
3895
3913
|
/**
|
|
3896
3914
|
*
|
|
3897
3915
|
* @type {string}
|
|
@@ -3904,12 +3922,30 @@ export interface DataTypesVerifyOTPResponse {
|
|
|
3904
3922
|
* @memberof DataTypesVerifyOTPResponse
|
|
3905
3923
|
*/
|
|
3906
3924
|
'nextStepUrl'?: string;
|
|
3925
|
+
/**
|
|
3926
|
+
*
|
|
3927
|
+
* @type {number}
|
|
3928
|
+
* @memberof DataTypesVerifyOTPResponse
|
|
3929
|
+
*/
|
|
3930
|
+
'roleId'?: number;
|
|
3907
3931
|
/**
|
|
3908
3932
|
*
|
|
3909
3933
|
* @type {string}
|
|
3910
3934
|
* @memberof DataTypesVerifyOTPResponse
|
|
3911
3935
|
*/
|
|
3912
3936
|
'token'?: string;
|
|
3937
|
+
/**
|
|
3938
|
+
*
|
|
3939
|
+
* @type {string}
|
|
3940
|
+
* @memberof DataTypesVerifyOTPResponse
|
|
3941
|
+
*/
|
|
3942
|
+
'userCode'?: string;
|
|
3943
|
+
/**
|
|
3944
|
+
*
|
|
3945
|
+
* @type {number}
|
|
3946
|
+
* @memberof DataTypesVerifyOTPResponse
|
|
3947
|
+
*/
|
|
3948
|
+
'userId'?: number;
|
|
3913
3949
|
/**
|
|
3914
3950
|
*
|
|
3915
3951
|
* @type {boolean}
|
package/dist/api.d.ts
CHANGED
|
@@ -1131,6 +1131,12 @@ export interface DataTypesLoginResponse {
|
|
|
1131
1131
|
* @memberof DataTypesLoginResponse
|
|
1132
1132
|
*/
|
|
1133
1133
|
'message'?: string;
|
|
1134
|
+
/**
|
|
1135
|
+
*
|
|
1136
|
+
* @type {string}
|
|
1137
|
+
* @memberof DataTypesLoginResponse
|
|
1138
|
+
*/
|
|
1139
|
+
'onboardingStep'?: string;
|
|
1134
1140
|
/**
|
|
1135
1141
|
*
|
|
1136
1142
|
* @type {number}
|
|
@@ -3714,6 +3720,12 @@ export interface DataTypesUser {
|
|
|
3714
3720
|
* @memberof DataTypesUser
|
|
3715
3721
|
*/
|
|
3716
3722
|
'modifiedUserId'?: number;
|
|
3723
|
+
/**
|
|
3724
|
+
*
|
|
3725
|
+
* @type {string}
|
|
3726
|
+
* @memberof DataTypesUser
|
|
3727
|
+
*/
|
|
3728
|
+
'onboardingstep'?: string;
|
|
3717
3729
|
/**
|
|
3718
3730
|
*
|
|
3719
3731
|
* @type {number}
|
|
@@ -3887,6 +3899,12 @@ export interface DataTypesValidationErrorResult {
|
|
|
3887
3899
|
* @interface DataTypesVerifyOTPResponse
|
|
3888
3900
|
*/
|
|
3889
3901
|
export interface DataTypesVerifyOTPResponse {
|
|
3902
|
+
/**
|
|
3903
|
+
*
|
|
3904
|
+
* @type {string}
|
|
3905
|
+
* @memberof DataTypesVerifyOTPResponse
|
|
3906
|
+
*/
|
|
3907
|
+
'email'?: string;
|
|
3890
3908
|
/**
|
|
3891
3909
|
*
|
|
3892
3910
|
* @type {string}
|
|
@@ -3899,12 +3917,30 @@ export interface DataTypesVerifyOTPResponse {
|
|
|
3899
3917
|
* @memberof DataTypesVerifyOTPResponse
|
|
3900
3918
|
*/
|
|
3901
3919
|
'nextStepUrl'?: string;
|
|
3920
|
+
/**
|
|
3921
|
+
*
|
|
3922
|
+
* @type {number}
|
|
3923
|
+
* @memberof DataTypesVerifyOTPResponse
|
|
3924
|
+
*/
|
|
3925
|
+
'roleId'?: number;
|
|
3902
3926
|
/**
|
|
3903
3927
|
*
|
|
3904
3928
|
* @type {string}
|
|
3905
3929
|
* @memberof DataTypesVerifyOTPResponse
|
|
3906
3930
|
*/
|
|
3907
3931
|
'token'?: string;
|
|
3932
|
+
/**
|
|
3933
|
+
*
|
|
3934
|
+
* @type {string}
|
|
3935
|
+
* @memberof DataTypesVerifyOTPResponse
|
|
3936
|
+
*/
|
|
3937
|
+
'userCode'?: string;
|
|
3938
|
+
/**
|
|
3939
|
+
*
|
|
3940
|
+
* @type {number}
|
|
3941
|
+
* @memberof DataTypesVerifyOTPResponse
|
|
3942
|
+
*/
|
|
3943
|
+
'userId'?: number;
|
|
3908
3944
|
/**
|
|
3909
3945
|
*
|
|
3910
3946
|
* @type {boolean}
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -1131,6 +1131,12 @@ export interface DataTypesLoginResponse {
|
|
|
1131
1131
|
* @memberof DataTypesLoginResponse
|
|
1132
1132
|
*/
|
|
1133
1133
|
'message'?: string;
|
|
1134
|
+
/**
|
|
1135
|
+
*
|
|
1136
|
+
* @type {string}
|
|
1137
|
+
* @memberof DataTypesLoginResponse
|
|
1138
|
+
*/
|
|
1139
|
+
'onboardingStep'?: string;
|
|
1134
1140
|
/**
|
|
1135
1141
|
*
|
|
1136
1142
|
* @type {number}
|
|
@@ -3714,6 +3720,12 @@ export interface DataTypesUser {
|
|
|
3714
3720
|
* @memberof DataTypesUser
|
|
3715
3721
|
*/
|
|
3716
3722
|
'modifiedUserId'?: number;
|
|
3723
|
+
/**
|
|
3724
|
+
*
|
|
3725
|
+
* @type {string}
|
|
3726
|
+
* @memberof DataTypesUser
|
|
3727
|
+
*/
|
|
3728
|
+
'onboardingstep'?: string;
|
|
3717
3729
|
/**
|
|
3718
3730
|
*
|
|
3719
3731
|
* @type {number}
|
|
@@ -3887,6 +3899,12 @@ export interface DataTypesValidationErrorResult {
|
|
|
3887
3899
|
* @interface DataTypesVerifyOTPResponse
|
|
3888
3900
|
*/
|
|
3889
3901
|
export interface DataTypesVerifyOTPResponse {
|
|
3902
|
+
/**
|
|
3903
|
+
*
|
|
3904
|
+
* @type {string}
|
|
3905
|
+
* @memberof DataTypesVerifyOTPResponse
|
|
3906
|
+
*/
|
|
3907
|
+
'email'?: string;
|
|
3890
3908
|
/**
|
|
3891
3909
|
*
|
|
3892
3910
|
* @type {string}
|
|
@@ -3899,12 +3917,30 @@ export interface DataTypesVerifyOTPResponse {
|
|
|
3899
3917
|
* @memberof DataTypesVerifyOTPResponse
|
|
3900
3918
|
*/
|
|
3901
3919
|
'nextStepUrl'?: string;
|
|
3920
|
+
/**
|
|
3921
|
+
*
|
|
3922
|
+
* @type {number}
|
|
3923
|
+
* @memberof DataTypesVerifyOTPResponse
|
|
3924
|
+
*/
|
|
3925
|
+
'roleId'?: number;
|
|
3902
3926
|
/**
|
|
3903
3927
|
*
|
|
3904
3928
|
* @type {string}
|
|
3905
3929
|
* @memberof DataTypesVerifyOTPResponse
|
|
3906
3930
|
*/
|
|
3907
3931
|
'token'?: string;
|
|
3932
|
+
/**
|
|
3933
|
+
*
|
|
3934
|
+
* @type {string}
|
|
3935
|
+
* @memberof DataTypesVerifyOTPResponse
|
|
3936
|
+
*/
|
|
3937
|
+
'userCode'?: string;
|
|
3938
|
+
/**
|
|
3939
|
+
*
|
|
3940
|
+
* @type {number}
|
|
3941
|
+
* @memberof DataTypesVerifyOTPResponse
|
|
3942
|
+
*/
|
|
3943
|
+
'userId'?: number;
|
|
3908
3944
|
/**
|
|
3909
3945
|
*
|
|
3910
3946
|
* @type {boolean}
|
package/package.json
CHANGED
|
Binary file
|
|
Binary file
|