@scalar/types 0.6.3 → 0.6.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/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,38 @@
|
|
|
1
1
|
# @scalar/types
|
|
2
2
|
|
|
3
|
+
## 0.6.6
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#8212](https://github.com/scalar/scalar/pull/8212): chore: version bump
|
|
8
|
+
|
|
9
|
+
#### Updated Dependencies
|
|
10
|
+
|
|
11
|
+
- **@scalar/helpers@0.2.15**
|
|
12
|
+
- [#8212](https://github.com/scalar/scalar/pull/8212): chore: version bump
|
|
13
|
+
|
|
14
|
+
## 0.6.5
|
|
15
|
+
|
|
16
|
+
### Patch Changes
|
|
17
|
+
|
|
18
|
+
- [#8207](https://github.com/scalar/scalar/pull/8207): chore: version bump
|
|
19
|
+
|
|
20
|
+
#### Updated Dependencies
|
|
21
|
+
|
|
22
|
+
- **@scalar/helpers@0.2.14**
|
|
23
|
+
- [#8207](https://github.com/scalar/scalar/pull/8207): chore: version bump
|
|
24
|
+
|
|
25
|
+
## 0.6.4
|
|
26
|
+
|
|
27
|
+
### Patch Changes
|
|
28
|
+
|
|
29
|
+
- [#8174](https://github.com/scalar/scalar/pull/8174): feat: add `createAnySecurityScheme` config option to control generic auth scheme creation
|
|
30
|
+
|
|
31
|
+
#### Updated Dependencies
|
|
32
|
+
|
|
33
|
+
- **@scalar/helpers@0.2.13**
|
|
34
|
+
- [#7826](https://github.com/scalar/scalar/pull/7826): feat: added migrator for v1 local storage to v2 indexdb
|
|
35
|
+
|
|
3
36
|
## 0.6.3
|
|
4
37
|
|
|
5
38
|
### Patch Changes
|
|
@@ -49,5 +49,11 @@ export type AuthenticationConfiguration = {
|
|
|
49
49
|
*
|
|
50
50
|
*/
|
|
51
51
|
securitySchemes?: Record<string, PartialDeep<SecurityScheme>>;
|
|
52
|
+
/**
|
|
53
|
+
* Allows adding authentication which is not in the document.
|
|
54
|
+
* When true, generic options (API Key, HTTP Basic, OAuth2, etc.) are shown in the auth dropdown.
|
|
55
|
+
* @default false
|
|
56
|
+
*/
|
|
57
|
+
createAnySecurityScheme?: boolean;
|
|
52
58
|
};
|
|
53
59
|
//# sourceMappingURL=authentication-configuration.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"authentication-configuration.d.ts","sourceRoot":"","sources":["../../src/api-reference/authentication-configuration.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,WAAW,CAAA;AAE5C,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,6BAA6B,CAAA;AAEjE;;;GAGG;AACH,MAAM,MAAM,2BAA2B,GAAG;IACxC;;;;;;OAMG;IACH,uBAAuB,CAAC,EAAE,MAAM,GAAG,CAAC,MAAM,GAAG,MAAM,EAAE,CAAC,EAAE,GAAG,IAAI,CAAA;IAE/D;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OAkCG;IACH,eAAe,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,WAAW,CAAC,cAAc,CAAC,CAAC,CAAA;
|
|
1
|
+
{"version":3,"file":"authentication-configuration.d.ts","sourceRoot":"","sources":["../../src/api-reference/authentication-configuration.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,WAAW,CAAA;AAE5C,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,6BAA6B,CAAA;AAEjE;;;GAGG;AACH,MAAM,MAAM,2BAA2B,GAAG;IACxC;;;;;;OAMG;IACH,uBAAuB,CAAC,EAAE,MAAM,GAAG,CAAC,MAAM,GAAG,MAAM,EAAE,CAAC,EAAE,GAAG,IAAI,CAAA;IAE/D;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OAkCG;IACH,eAAe,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,WAAW,CAAC,cAAc,CAAC,CAAC,CAAA;IAE7D;;;;OAIG;IACH,uBAAuB,CAAC,EAAE,OAAO,CAAA;CAClC,CAAA"}
|
package/package.json
CHANGED
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"scalar",
|
|
17
17
|
"references"
|
|
18
18
|
],
|
|
19
|
-
"version": "0.6.
|
|
19
|
+
"version": "0.6.6",
|
|
20
20
|
"engines": {
|
|
21
21
|
"node": ">=20"
|
|
22
22
|
},
|
|
@@ -62,7 +62,7 @@
|
|
|
62
62
|
"nanoid": "^5.1.6",
|
|
63
63
|
"type-fest": "^5.3.1",
|
|
64
64
|
"zod": "^4.3.5",
|
|
65
|
-
"@scalar/helpers": "0.2.
|
|
65
|
+
"@scalar/helpers": "0.2.15"
|
|
66
66
|
},
|
|
67
67
|
"devDependencies": {
|
|
68
68
|
"@types/har-format": "^1.2.16",
|