@flipdish/authorization 0.0.59-rc.1775835995 → 0.0.60-rc.1776267109

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/api.ts CHANGED
@@ -196,6 +196,12 @@ export interface AuthenticateAndAuthorizeResponse {
196
196
  * @memberof AuthenticateAndAuthorizeResponse
197
197
  */
198
198
  'authentication': AuthenticateAndCheckIsInRoleResponseAuthentication;
199
+ /**
200
+ * Opaque credential to forward to downstream services. Callers should propagate this value without inspecting it.
201
+ * @type {string}
202
+ * @memberof AuthenticateAndAuthorizeResponse
203
+ */
204
+ 'forwardableCredential'?: string;
199
205
  /**
200
206
  *
201
207
  * @type {AuthorizationResponse}
package/configuration.ts CHANGED
@@ -100,7 +100,7 @@ export class Configuration {
100
100
 
101
101
  const extraHeaders = param.useDefaultUserAgent ? {} : {
102
102
  headers: {
103
- "user-agent": "Flipdish authorization typescript SDK / 0.0.59-rc.1775835995"
103
+ "user-agent": "Flipdish authorization typescript SDK / 0.0.60-rc.1776267109"
104
104
  }
105
105
  };
106
106
 
package/dist/api.d.ts CHANGED
@@ -182,6 +182,12 @@ export interface AuthenticateAndAuthorizeResponse {
182
182
  * @memberof AuthenticateAndAuthorizeResponse
183
183
  */
184
184
  'authentication': AuthenticateAndCheckIsInRoleResponseAuthentication;
185
+ /**
186
+ * Opaque credential to forward to downstream services. Callers should propagate this value without inspecting it.
187
+ * @type {string}
188
+ * @memberof AuthenticateAndAuthorizeResponse
189
+ */
190
+ 'forwardableCredential'?: string;
185
191
  /**
186
192
  *
187
193
  * @type {AuthorizationResponse}
@@ -36,7 +36,7 @@ var Configuration = /** @class */ (function () {
36
36
  this.serverIndex = param.serverIndex;
37
37
  var extraHeaders = param.useDefaultUserAgent ? {} : {
38
38
  headers: {
39
- "user-agent": "Flipdish authorization typescript SDK / 0.0.59-rc.1775835995"
39
+ "user-agent": "Flipdish authorization typescript SDK / 0.0.60-rc.1776267109"
40
40
  }
41
41
  };
42
42
  this.baseOptions = __assign(__assign({}, extraHeaders), param.baseOptions);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flipdish/authorization",
3
- "version": "0.0.59-rc.1775835995",
3
+ "version": "0.0.60-rc.1776267109",
4
4
  "description": "OpenAPI client for @flipdish/authorization",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {