@dynamic-labs/sdk-api 0.0.124 → 0.0.126
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/package.json +1 -1
- package/src/models/UnprocessableEntityErrorCode.d.ts +2 -1
- package/src/models/UnprocessableEntityErrorCode.js +1 -0
- package/src/models/UnprocessableEntityErrorCode.js.map +1 -1
- package/src/models/UpdateSelfResponse.d.ts +3 -3
- package/src/models/UpdateSelfResponse.js +3 -3
- package/src/models/UpdateSelfResponse.js.map +1 -1
package/package.json
CHANGED
|
@@ -23,7 +23,8 @@ export declare enum UnprocessableEntityErrorCode {
|
|
|
23
23
|
MembersCannotDeleteThemself = "members_cannot_delete_themself",
|
|
24
24
|
UsernameAlreadyExists = "username_already_exists",
|
|
25
25
|
WrongEmailVerificationToken = "wrong_email_verification_token",
|
|
26
|
-
InvalidEmailVerification = "invalid_email_verification"
|
|
26
|
+
InvalidEmailVerification = "invalid_email_verification",
|
|
27
|
+
TooManyEmailVerificationAttempts = "too_many_email_verification_attempts"
|
|
27
28
|
}
|
|
28
29
|
export declare function UnprocessableEntityErrorCodeFromJSON(json: any): UnprocessableEntityErrorCode;
|
|
29
30
|
export declare function UnprocessableEntityErrorCodeFromJSONTyped(json: any, ignoreDiscriminator: boolean): UnprocessableEntityErrorCode;
|
|
@@ -30,6 +30,7 @@ var UnprocessableEntityErrorCode;
|
|
|
30
30
|
UnprocessableEntityErrorCode["UsernameAlreadyExists"] = "username_already_exists";
|
|
31
31
|
UnprocessableEntityErrorCode["WrongEmailVerificationToken"] = "wrong_email_verification_token";
|
|
32
32
|
UnprocessableEntityErrorCode["InvalidEmailVerification"] = "invalid_email_verification";
|
|
33
|
+
UnprocessableEntityErrorCode["TooManyEmailVerificationAttempts"] = "too_many_email_verification_attempts";
|
|
33
34
|
})(UnprocessableEntityErrorCode = exports.UnprocessableEntityErrorCode || (exports.UnprocessableEntityErrorCode = {}));
|
|
34
35
|
function UnprocessableEntityErrorCodeFromJSON(json) {
|
|
35
36
|
return UnprocessableEntityErrorCodeFromJSONTyped(json, false);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"UnprocessableEntityErrorCode.js","sourceRoot":"","sources":["../../../../../libs/sdk-api/src/models/UnprocessableEntityErrorCode.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG;;;AAEH;;;;GAIG;AACH,IAAY,
|
|
1
|
+
{"version":3,"file":"UnprocessableEntityErrorCode.js","sourceRoot":"","sources":["../../../../../libs/sdk-api/src/models/UnprocessableEntityErrorCode.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG;;;AAEH;;;;GAIG;AACH,IAAY,4BAWX;AAXD,WAAY,4BAA4B;IACpC,2EAA2C,CAAA;IAC3C,mFAAmD,CAAA;IACnD,8FAA8D,CAAA;IAC9D,6EAA6C,CAAA;IAC7C,iFAAiD,CAAA;IACjD,8FAA8D,CAAA;IAC9D,iFAAiD,CAAA;IACjD,8FAA8D,CAAA;IAC9D,uFAAuD,CAAA;IACvD,yGAAyE,CAAA;AAC7E,CAAC,EAXW,4BAA4B,GAA5B,oCAA4B,KAA5B,oCAA4B,QAWvC;AAED,SAAgB,oCAAoC,CAAC,IAAS;IAC1D,OAAO,yCAAyC,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;AAClE,CAAC;AAFD,oFAEC;AAED,SAAgB,yCAAyC,CAAC,IAAS,EAAE,mBAA4B;IAC7F,OAAO,IAAoC,CAAC;AAChD,CAAC;AAFD,8FAEC;AAED,SAAgB,kCAAkC,CAAC,KAA2C;IAC1F,OAAO,KAAY,CAAC;AACxB,CAAC;AAFD,gFAEC"}
|
|
@@ -23,13 +23,13 @@ export interface UpdateSelfResponse {
|
|
|
23
23
|
* @type {BasicUserResponse}
|
|
24
24
|
* @memberof UpdateSelfResponse
|
|
25
25
|
*/
|
|
26
|
-
user
|
|
26
|
+
user: BasicUserResponse;
|
|
27
27
|
/**
|
|
28
28
|
*
|
|
29
29
|
* @type {NextViewEnum}
|
|
30
30
|
* @memberof UpdateSelfResponse
|
|
31
31
|
*/
|
|
32
|
-
nextView
|
|
32
|
+
nextView: NextViewEnum;
|
|
33
33
|
/**
|
|
34
34
|
*
|
|
35
35
|
* @type {EmailVerificationCreateResponse}
|
|
@@ -41,7 +41,7 @@ export interface UpdateSelfResponse {
|
|
|
41
41
|
* @type {string}
|
|
42
42
|
* @memberof UpdateSelfResponse
|
|
43
43
|
*/
|
|
44
|
-
jwt
|
|
44
|
+
jwt: string;
|
|
45
45
|
}
|
|
46
46
|
export declare function UpdateSelfResponseFromJSON(json: any): UpdateSelfResponse;
|
|
47
47
|
export declare function UpdateSelfResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdateSelfResponse;
|
|
@@ -27,10 +27,10 @@ function UpdateSelfResponseFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
27
27
|
return json;
|
|
28
28
|
}
|
|
29
29
|
return {
|
|
30
|
-
'user':
|
|
31
|
-
'nextView':
|
|
30
|
+
'user': (0, BasicUserResponse_1.BasicUserResponseFromJSON)(json['user']),
|
|
31
|
+
'nextView': (0, NextViewEnum_1.NextViewEnumFromJSON)(json['nextView']),
|
|
32
32
|
'emailVerification': !(0, runtime_1.exists)(json, 'emailVerification') ? undefined : (0, EmailVerificationCreateResponse_1.EmailVerificationCreateResponseFromJSON)(json['emailVerification']),
|
|
33
|
-
'jwt':
|
|
33
|
+
'jwt': json['jwt'],
|
|
34
34
|
};
|
|
35
35
|
}
|
|
36
36
|
exports.UpdateSelfResponseFromJSONTyped = UpdateSelfResponseFromJSONTyped;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"UpdateSelfResponse.js","sourceRoot":"","sources":["../../../../../libs/sdk-api/src/models/UpdateSelfResponse.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG;;;AAEH,wCAA+C;AAC/C,2DAK6B;AAC7B,uFAK2C;AAC3C,iDAKwB;AAkCxB,SAAgB,0BAA0B,CAAC,IAAS;IAChD,OAAO,+BAA+B,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;AACxD,CAAC;AAFD,gEAEC;AAED,SAAgB,+BAA+B,CAAC,IAAS,EAAE,mBAA4B;IACnF,IAAI,CAAC,IAAI,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,KAAK,IAAI,CAAC,EAAE;QACzC,OAAO,IAAI,CAAC;KACf;IACD,OAAO;QAEH,MAAM,EAAE,
|
|
1
|
+
{"version":3,"file":"UpdateSelfResponse.js","sourceRoot":"","sources":["../../../../../libs/sdk-api/src/models/UpdateSelfResponse.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG;;;AAEH,wCAA+C;AAC/C,2DAK6B;AAC7B,uFAK2C;AAC3C,iDAKwB;AAkCxB,SAAgB,0BAA0B,CAAC,IAAS;IAChD,OAAO,+BAA+B,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;AACxD,CAAC;AAFD,gEAEC;AAED,SAAgB,+BAA+B,CAAC,IAAS,EAAE,mBAA4B;IACnF,IAAI,CAAC,IAAI,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,KAAK,IAAI,CAAC,EAAE;QACzC,OAAO,IAAI,CAAC;KACf;IACD,OAAO;QAEH,MAAM,EAAE,IAAA,6CAAyB,EAAC,IAAI,CAAC,MAAM,CAAC,CAAC;QAC/C,UAAU,EAAE,IAAA,mCAAoB,EAAC,IAAI,CAAC,UAAU,CAAC,CAAC;QAClD,mBAAmB,EAAE,CAAC,IAAA,gBAAM,EAAC,IAAI,EAAE,mBAAmB,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAA,yEAAuC,EAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC;QACxI,KAAK,EAAE,IAAI,CAAC,KAAK,CAAC;KACrB,CAAC;AACN,CAAC;AAXD,0EAWC;AAED,SAAgB,wBAAwB,CAAC,KAAiC;IACtE,IAAI,KAAK,KAAK,SAAS,EAAE;QACrB,OAAO,SAAS,CAAC;KACpB;IACD,IAAI,KAAK,KAAK,IAAI,EAAE;QAChB,OAAO,IAAI,CAAC;KACf;IACD,OAAO;QAEH,MAAM,EAAE,IAAA,2CAAuB,EAAC,KAAK,CAAC,IAAI,CAAC;QAC3C,UAAU,EAAE,IAAA,iCAAkB,EAAC,KAAK,CAAC,QAAQ,CAAC;QAC9C,mBAAmB,EAAE,IAAA,uEAAqC,EAAC,KAAK,CAAC,iBAAiB,CAAC;QACnF,KAAK,EAAE,KAAK,CAAC,GAAG;KACnB,CAAC;AACN,CAAC;AAdD,4DAcC"}
|