@azure/arm-attestation 2.1.1-alpha.20250613.1 → 2.1.1-alpha.20250616.1
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/package.json
CHANGED
|
@@ -154,7 +154,7 @@ export type CreatedByType = string;
|
|
|
154
154
|
export function getContinuationToken(page: unknown): string | undefined;
|
|
155
155
|
|
|
156
156
|
// @public (undocumented)
|
|
157
|
-
interface
|
|
157
|
+
export interface JsonWebKey {
|
|
158
158
|
alg?: string;
|
|
159
159
|
crv?: string;
|
|
160
160
|
d?: string;
|
|
@@ -173,11 +173,10 @@ interface JsonWebKey_2 {
|
|
|
173
173
|
x5C?: string[];
|
|
174
174
|
y?: string;
|
|
175
175
|
}
|
|
176
|
-
export { JsonWebKey_2 as JsonWebKey }
|
|
177
176
|
|
|
178
177
|
// @public (undocumented)
|
|
179
178
|
export interface JsonWebKeySet {
|
|
180
|
-
keys?:
|
|
179
|
+
keys?: JsonWebKey[];
|
|
181
180
|
}
|
|
182
181
|
|
|
183
182
|
// @public
|