gdc-common-utils-ts 2.7.6 → 2.7.7
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.
|
@@ -18,6 +18,22 @@ export declare const IdentityAuthRouteSegments: Readonly<{
|
|
|
18
18
|
readonly Section: "identity";
|
|
19
19
|
readonly Format: "auth";
|
|
20
20
|
}>;
|
|
21
|
+
/** Resource discriminators used by identity/auth routes after DCR. */
|
|
22
|
+
export declare const IdentityAuthResourceTypes: Readonly<{
|
|
23
|
+
readonly Smart: "smart";
|
|
24
|
+
}>;
|
|
25
|
+
/**
|
|
26
|
+
* SMART post-DCR actions.
|
|
27
|
+
*
|
|
28
|
+
* `TokenResponse` is the canonical polling action. `LegacyBatchResponse` is
|
|
29
|
+
* accepted temporarily for installed clients; `_token` is intentionally not
|
|
30
|
+
* part of the contract.
|
|
31
|
+
*/
|
|
32
|
+
export declare const SmartPostDcrActions: Readonly<{
|
|
33
|
+
readonly Token: "token";
|
|
34
|
+
readonly TokenResponse: "token-response";
|
|
35
|
+
readonly LegacyBatchResponse: "_batch-response";
|
|
36
|
+
}>;
|
|
21
37
|
/** Wire-level request keys used by identity/auth operations. */
|
|
22
38
|
export declare const IdentityAuthRequestFields: Readonly<{
|
|
23
39
|
readonly SubjectToken: "subject_token";
|
|
@@ -18,6 +18,22 @@ export const IdentityAuthRouteSegments = Object.freeze({
|
|
|
18
18
|
Section: 'identity',
|
|
19
19
|
Format: 'auth',
|
|
20
20
|
});
|
|
21
|
+
/** Resource discriminators used by identity/auth routes after DCR. */
|
|
22
|
+
export const IdentityAuthResourceTypes = Object.freeze({
|
|
23
|
+
Smart: 'smart',
|
|
24
|
+
});
|
|
25
|
+
/**
|
|
26
|
+
* SMART post-DCR actions.
|
|
27
|
+
*
|
|
28
|
+
* `TokenResponse` is the canonical polling action. `LegacyBatchResponse` is
|
|
29
|
+
* accepted temporarily for installed clients; `_token` is intentionally not
|
|
30
|
+
* part of the contract.
|
|
31
|
+
*/
|
|
32
|
+
export const SmartPostDcrActions = Object.freeze({
|
|
33
|
+
Token: 'token',
|
|
34
|
+
TokenResponse: 'token-response',
|
|
35
|
+
LegacyBatchResponse: '_batch-response',
|
|
36
|
+
});
|
|
21
37
|
/** Wire-level request keys used by identity/auth operations. */
|
|
22
38
|
export const IdentityAuthRequestFields = Object.freeze({
|
|
23
39
|
SubjectToken: 'subject_token',
|