@configura/web-api-auth 2.1.0-alpha.2 → 2.2.0-alpha.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.
@@ -14,7 +14,7 @@ export interface DtoAuthAPIConfig {
14
14
  export interface DtoAuthorizeRequest {
15
15
  permissions?: Array<DtoCataloguePermission>;
16
16
  }
17
- /** AuthorizeResponse */
17
+ /** AuthorizeResponse - The response to an authorize request. It contains an endpoint, a session token and an API session. The endpoint is the URL to access the API. The secret token is used to validate each request to the API. The API session contains information about the user's catalogue access. */
18
18
  export interface DtoAuthorizeResponse {
19
19
  endpoint: string;
20
20
  secretToken: string;
@@ -86,7 +86,7 @@ export interface DtoProductParamsWithCid extends DtoCatalogueParamsWithCid {
86
86
  export interface DtoProductParamsWithCidAndLang extends DtoProductParamsWithCid {
87
87
  lang: string;
88
88
  }
89
- /** RefreshSessionTokenResponse */
89
+ /** RefreshSessionTokenResponse - The response to a refresh session token request. It contains a new API session. */
90
90
  export interface DtoRefreshSessionTokenResponse {
91
91
  apiSession: DtoCatalogueAPISession;
92
92
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@configura/web-api-auth",
3
- "version": "2.1.0-alpha.2",
3
+ "version": "2.2.0-alpha.0",
4
4
  "license": "Apache-2.0",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.js",
@@ -16,10 +16,10 @@
16
16
  "devDependencies": {
17
17
  "@types/node": "^15.9.0",
18
18
  "del-cli": "^3.0.0",
19
- "typescript": "4.2"
19
+ "typescript": "4.5"
20
20
  },
21
21
  "publishConfig": {
22
22
  "access": "public"
23
23
  },
24
- "gitHead": "0aa712ce445c807477b8ce42dc43285c7c086fcd"
24
+ "gitHead": "b01f3df9b902478356fb957c7b85ec6e3f2c5e9c"
25
25
  }