@axinom/mosaic-user-auth-utils 0.0.4-rc.4 → 0.0.5-rc.0
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/CHANGELOG.md +8 -0
- package/dist/common/enums.d.ts +3 -3
- package/dist/common/enums.d.ts.map +1 -1
- package/dist/common/enums.js +3 -3
- package/dist/common/enums.js.map +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
### [0.0.4](https://dev.azure.com/axinom/CMS/_git/Navy/branchCompare?baseVersion=GT@axinom/mosaic-user-auth-utils@0.0.3&targetVersion=GT@axinom/mosaic-user-auth-utils@0.0.4) (2021-12-09)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @axinom/mosaic-user-auth-utils
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
### [0.0.3](https://dev.azure.com/axinom/CMS/_git/Navy/branchCompare?baseVersion=GT@axinom/mosaic-user-auth-utils@0.0.2&targetVersion=GT@axinom/mosaic-user-auth-utils@0.0.3) (2021-11-24)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @axinom/mosaic-user-auth-utils
|
package/dist/common/enums.d.ts
CHANGED
|
@@ -7,7 +7,7 @@ export declare enum TokenResponseCode {
|
|
|
7
7
|
ACCOUNT_NOT_ACTIVE = "ACCOUNT_NOT_ACTIVE",
|
|
8
8
|
AUTH_FLOW_ERROR = "AUTH_FLOW_ERROR",
|
|
9
9
|
BAD_REQUEST = "BAD_REQUEST",
|
|
10
|
-
|
|
10
|
+
INTERNAL_SERVER_ERROR = "INTERNAL_SERVER_ERROR"
|
|
11
11
|
}
|
|
12
12
|
/**
|
|
13
13
|
* Sign out response code from User Service Auth API
|
|
@@ -15,7 +15,7 @@ export declare enum TokenResponseCode {
|
|
|
15
15
|
export declare enum SignOutResponseCode {
|
|
16
16
|
SUCCESS = "SUCCESS",
|
|
17
17
|
BAD_REQUEST = "BAD_REQUEST",
|
|
18
|
-
|
|
18
|
+
INTERNAL_SERVER_ERROR = "INTERNAL_SERVER_ERROR"
|
|
19
19
|
}
|
|
20
20
|
/**
|
|
21
21
|
* IDP Configuration response code from User Service Auth API
|
|
@@ -26,6 +26,6 @@ export declare enum IdpConfigurationResponseCode {
|
|
|
26
26
|
NO_ACTIVE_IDPS = "NO_ACTIVE_IDPS",
|
|
27
27
|
ACCOUNT_NOT_ACTIVE = "ACCOUNT_NOT_ACTIVE",
|
|
28
28
|
BAD_REQUEST = "BAD_REQUEST",
|
|
29
|
-
|
|
29
|
+
INTERNAL_SERVER_ERROR = "INTERNAL_SERVER_ERROR"
|
|
30
30
|
}
|
|
31
31
|
//# sourceMappingURL=enums.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"enums.d.ts","sourceRoot":"","sources":["../../src/common/enums.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,oBAAY,iBAAiB;IAC3B,OAAO,YAAY;IACnB,WAAW,gBAAgB;IAC3B,kBAAkB,uBAAuB;IACzC,eAAe,oBAAoB;IACnC,WAAW,gBAAgB;IAC3B,
|
|
1
|
+
{"version":3,"file":"enums.d.ts","sourceRoot":"","sources":["../../src/common/enums.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,oBAAY,iBAAiB;IAC3B,OAAO,YAAY;IACnB,WAAW,gBAAgB;IAC3B,kBAAkB,uBAAuB;IACzC,eAAe,oBAAoB;IACnC,WAAW,gBAAgB;IAC3B,qBAAqB,0BAA0B;CAChD;AAED;;GAEG;AACH,oBAAY,mBAAmB;IAC7B,OAAO,YAAY;IACnB,WAAW,gBAAgB;IAC3B,qBAAqB,0BAA0B;CAChD;AAED;;GAEG;AACH,oBAAY,4BAA4B;IACtC,OAAO,YAAY;IACnB,sBAAsB,2BAA2B;IACjD,cAAc,mBAAmB;IACjC,kBAAkB,uBAAuB;IACzC,WAAW,gBAAgB;IAC3B,qBAAqB,0BAA0B;CAChD"}
|
package/dist/common/enums.js
CHANGED
|
@@ -11,7 +11,7 @@ var TokenResponseCode;
|
|
|
11
11
|
TokenResponseCode["ACCOUNT_NOT_ACTIVE"] = "ACCOUNT_NOT_ACTIVE";
|
|
12
12
|
TokenResponseCode["AUTH_FLOW_ERROR"] = "AUTH_FLOW_ERROR";
|
|
13
13
|
TokenResponseCode["BAD_REQUEST"] = "BAD_REQUEST";
|
|
14
|
-
TokenResponseCode["
|
|
14
|
+
TokenResponseCode["INTERNAL_SERVER_ERROR"] = "INTERNAL_SERVER_ERROR";
|
|
15
15
|
})(TokenResponseCode = exports.TokenResponseCode || (exports.TokenResponseCode = {}));
|
|
16
16
|
/**
|
|
17
17
|
* Sign out response code from User Service Auth API
|
|
@@ -20,7 +20,7 @@ var SignOutResponseCode;
|
|
|
20
20
|
(function (SignOutResponseCode) {
|
|
21
21
|
SignOutResponseCode["SUCCESS"] = "SUCCESS";
|
|
22
22
|
SignOutResponseCode["BAD_REQUEST"] = "BAD_REQUEST";
|
|
23
|
-
SignOutResponseCode["
|
|
23
|
+
SignOutResponseCode["INTERNAL_SERVER_ERROR"] = "INTERNAL_SERVER_ERROR";
|
|
24
24
|
})(SignOutResponseCode = exports.SignOutResponseCode || (exports.SignOutResponseCode = {}));
|
|
25
25
|
/**
|
|
26
26
|
* IDP Configuration response code from User Service Auth API
|
|
@@ -32,6 +32,6 @@ var IdpConfigurationResponseCode;
|
|
|
32
32
|
IdpConfigurationResponseCode["NO_ACTIVE_IDPS"] = "NO_ACTIVE_IDPS";
|
|
33
33
|
IdpConfigurationResponseCode["ACCOUNT_NOT_ACTIVE"] = "ACCOUNT_NOT_ACTIVE";
|
|
34
34
|
IdpConfigurationResponseCode["BAD_REQUEST"] = "BAD_REQUEST";
|
|
35
|
-
IdpConfigurationResponseCode["
|
|
35
|
+
IdpConfigurationResponseCode["INTERNAL_SERVER_ERROR"] = "INTERNAL_SERVER_ERROR";
|
|
36
36
|
})(IdpConfigurationResponseCode = exports.IdpConfigurationResponseCode || (exports.IdpConfigurationResponseCode = {}));
|
|
37
37
|
//# sourceMappingURL=enums.js.map
|
package/dist/common/enums.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"enums.js","sourceRoot":"","sources":["../../src/common/enums.ts"],"names":[],"mappings":";;;AAAA;;GAEG;AACH,IAAY,iBAOX;AAPD,WAAY,iBAAiB;IAC3B,wCAAmB,CAAA;IACnB,gDAA2B,CAAA;IAC3B,8DAAyC,CAAA;IACzC,wDAAmC,CAAA;IACnC,gDAA2B,CAAA;IAC3B,
|
|
1
|
+
{"version":3,"file":"enums.js","sourceRoot":"","sources":["../../src/common/enums.ts"],"names":[],"mappings":";;;AAAA;;GAEG;AACH,IAAY,iBAOX;AAPD,WAAY,iBAAiB;IAC3B,wCAAmB,CAAA;IACnB,gDAA2B,CAAA;IAC3B,8DAAyC,CAAA;IACzC,wDAAmC,CAAA;IACnC,gDAA2B,CAAA;IAC3B,oEAA+C,CAAA;AACjD,CAAC,EAPW,iBAAiB,GAAjB,yBAAiB,KAAjB,yBAAiB,QAO5B;AAED;;GAEG;AACH,IAAY,mBAIX;AAJD,WAAY,mBAAmB;IAC7B,0CAAmB,CAAA;IACnB,kDAA2B,CAAA;IAC3B,sEAA+C,CAAA;AACjD,CAAC,EAJW,mBAAmB,GAAnB,2BAAmB,KAAnB,2BAAmB,QAI9B;AAED;;GAEG;AACH,IAAY,4BAOX;AAPD,WAAY,4BAA4B;IACtC,mDAAmB,CAAA;IACnB,iFAAiD,CAAA;IACjD,iEAAiC,CAAA;IACjC,yEAAyC,CAAA;IACzC,2DAA2B,CAAA;IAC3B,+EAA+C,CAAA;AACjD,CAAC,EAPW,4BAA4B,GAA5B,oCAA4B,KAA5B,oCAA4B,QAOvC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@axinom/mosaic-user-auth-utils",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.5-rc.0",
|
|
4
4
|
"description": "Shared types used by user-service for integration clients",
|
|
5
5
|
"author": "Axinom",
|
|
6
6
|
"license": "PROPRIETARY",
|
|
@@ -30,5 +30,5 @@
|
|
|
30
30
|
"publishConfig": {
|
|
31
31
|
"access": "public"
|
|
32
32
|
},
|
|
33
|
-
"gitHead": "
|
|
33
|
+
"gitHead": "4acbd08a3fa1c5ca134aa446b7b67d9d503072d5"
|
|
34
34
|
}
|