@zuplo/runtime 6.57.16 → 6.57.18
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/out/esm/index.js +21 -21
- package/out/types/index.d.ts +26 -2
- package/package.json +1 -1
package/out/types/index.d.ts
CHANGED
|
@@ -527,7 +527,7 @@ export declare interface Auth0JwtInboundPolicyOptions {
|
|
|
527
527
|
*/
|
|
528
528
|
audience?: string;
|
|
529
529
|
/**
|
|
530
|
-
*
|
|
530
|
+
* Flag that determines whether OAuth protected resource metadata is enabled.
|
|
531
531
|
*/
|
|
532
532
|
oAuthResourceMetadataEnabled?: boolean;
|
|
533
533
|
}
|
|
@@ -1474,6 +1474,10 @@ export declare interface ClerkJwtInboundPolicyOptions {
|
|
|
1474
1474
|
* Your Clerk frontend api url, i.e. `https://sensible-skunk-49.clerk.accounts.dev`. Can be found in the Clerk portal: https://dashboard.clerk.com/last-active?path=api-keys.
|
|
1475
1475
|
*/
|
|
1476
1476
|
frontendApiUrl: string;
|
|
1477
|
+
/**
|
|
1478
|
+
* Flag that determines whether OAuth protected resource metadata is enabled.
|
|
1479
|
+
*/
|
|
1480
|
+
oAuthResourceMetadataEnabled?: boolean;
|
|
1477
1481
|
}
|
|
1478
1482
|
|
|
1479
1483
|
/**
|
|
@@ -1533,6 +1537,10 @@ export declare interface CognitoJwtInboundPolicyOptions {
|
|
|
1533
1537
|
* The user pool identifier.
|
|
1534
1538
|
*/
|
|
1535
1539
|
userPoolId: string;
|
|
1540
|
+
/**
|
|
1541
|
+
* Flag that determines whether OAuth protected resource metadata is enabled.
|
|
1542
|
+
*/
|
|
1543
|
+
oAuthResourceMetadataEnabled?: boolean;
|
|
1536
1544
|
}
|
|
1537
1545
|
|
|
1538
1546
|
/**
|
|
@@ -2215,6 +2223,10 @@ export declare interface FirebaseJwtInboundPolicyOptions {
|
|
|
2215
2223
|
* Your Firebase Project ID.
|
|
2216
2224
|
*/
|
|
2217
2225
|
projectId: string;
|
|
2226
|
+
/**
|
|
2227
|
+
* Flag that determines whether OAuth protected resource metadata is enabled.
|
|
2228
|
+
*/
|
|
2229
|
+
oAuthResourceMetadataEnabled?: boolean;
|
|
2218
2230
|
}
|
|
2219
2231
|
|
|
2220
2232
|
/**
|
|
@@ -5333,6 +5345,10 @@ export declare interface OktaJwtInboundPolicyOptions {
|
|
|
5333
5345
|
* The Okta audience of your API, for example `api://my-api`.
|
|
5334
5346
|
*/
|
|
5335
5347
|
audience?: string;
|
|
5348
|
+
/**
|
|
5349
|
+
* Flag that determines whether OAuth protected resource metadata is enabled.
|
|
5350
|
+
*/
|
|
5351
|
+
oAuthResourceMetadataEnabled?: boolean;
|
|
5336
5352
|
}
|
|
5337
5353
|
|
|
5338
5354
|
/**
|
|
@@ -6084,7 +6100,7 @@ export declare interface OpenIdJwtInboundPolicyOptions {
|
|
|
6084
6100
|
[k: string]: string;
|
|
6085
6101
|
};
|
|
6086
6102
|
/**
|
|
6087
|
-
*
|
|
6103
|
+
* Flag that determines whether OAuth protected resource metadata is enabled.
|
|
6088
6104
|
*/
|
|
6089
6105
|
oAuthResourceMetadataEnabled?: boolean;
|
|
6090
6106
|
}
|
|
@@ -6530,6 +6546,10 @@ export declare interface PropelAuthJwtInboundPolicyOptions {
|
|
|
6530
6546
|
* Your public (verifier) key that is used to verify access tokens. This key has a value that begins with '-----BEGIN PUBLIC KEY-----'. Make sure to remove all line breaks from the key before saving the variable.
|
|
6531
6547
|
*/
|
|
6532
6548
|
verifierKey: string;
|
|
6549
|
+
/**
|
|
6550
|
+
* Flag that determines whether OAuth protected resource metadata is enabled.
|
|
6551
|
+
*/
|
|
6552
|
+
oAuthResourceMetadataEnabled?: boolean;
|
|
6533
6553
|
}
|
|
6534
6554
|
|
|
6535
6555
|
/**
|
|
@@ -8125,6 +8145,10 @@ export declare interface SupabaseJwtInboundPolicyOptions {
|
|
|
8125
8145
|
requiredClaims?: {
|
|
8126
8146
|
[k: string]: string[];
|
|
8127
8147
|
};
|
|
8148
|
+
/**
|
|
8149
|
+
* Flag that determines whether OAuth protected resource metadata is enabled.
|
|
8150
|
+
*/
|
|
8151
|
+
oAuthResourceMetadataEnabled?: boolean;
|
|
8128
8152
|
}
|
|
8129
8153
|
|
|
8130
8154
|
/* Excluded from this release type: SYSTEM_LOGGER */
|