@redocly/replay 0.83.0-rc.4 → 0.83.0-rc.6
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/dist/replay.cjs +356 -343
- package/dist/replay.d.ts +12 -0
- package/dist/replay.js +16745 -11596
- package/package.json +4 -2
package/dist/replay.d.ts
CHANGED
|
@@ -76,6 +76,17 @@ security: {
|
|
|
76
76
|
username: string;
|
|
77
77
|
password: string;
|
|
78
78
|
};
|
|
79
|
+
"Digest Auth": {
|
|
80
|
+
username: string;
|
|
81
|
+
password: string;
|
|
82
|
+
nc: string;
|
|
83
|
+
realm: string | undefined;
|
|
84
|
+
nonce: string | undefined;
|
|
85
|
+
opaque: string | undefined;
|
|
86
|
+
qop: string | undefined;
|
|
87
|
+
algorithm: string | undefined;
|
|
88
|
+
cnonce: string | undefined;
|
|
89
|
+
};
|
|
79
90
|
JWT: {
|
|
80
91
|
token: string;
|
|
81
92
|
};
|
|
@@ -401,6 +412,7 @@ declare enum SecurityFlows {
|
|
|
401
412
|
declare enum SecurityTypes {
|
|
402
413
|
NoAuth = "No Auth",
|
|
403
414
|
BasicAuth = "Basic Auth",
|
|
415
|
+
DigestAuth = "Digest Auth",
|
|
404
416
|
JWT = "JWT",
|
|
405
417
|
APIKey = "API key",
|
|
406
418
|
OAuth2 = "OAuth 2.0",
|