@scalar/fastify-api-reference 0.6.7 → 0.6.8

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,11 @@
1
1
  # @scalar/fastify-api-reference
2
2
 
3
+ ## 0.6.8
4
+
5
+ ### Patch Changes
6
+
7
+ - @scalar/api-reference@0.6.8
8
+
3
9
  ## 0.6.7
4
10
 
5
11
  ### Patch Changes
@@ -38817,14 +38817,17 @@ Component that was made reactive: `,
38817
38817
  fontFamily: "var(--theme-font-code, var(--default-theme-font-code))"
38818
38818
  },
38819
38819
  styles: [
38820
- { tag: [I.standard(I.tagName), I.tagName], color: "#EDBE20" },
38820
+ {
38821
+ tag: [I.standard(I.tagName), I.tagName],
38822
+ color: "var(--theme-color-yellow, var(--default-theme-color-yellow))"
38823
+ },
38821
38824
  {
38822
38825
  tag: [I.comment],
38823
38826
  color: "var(--theme-color-3, var(--default-theme-color-3))"
38824
38827
  },
38825
38828
  {
38826
38829
  tag: [I.className],
38827
- color: "#FB892C"
38830
+ color: "var(--theme-color-orange, var(--default-theme-color-orange))"
38828
38831
  },
38829
38832
  {
38830
38833
  tag: [I.variableName, I.propertyName, I.attributeName],
@@ -38836,15 +38839,15 @@ Component that was made reactive: `,
38836
38839
  },
38837
38840
  {
38838
38841
  tag: [I.keyword, I.typeName, I.typeOperator],
38839
- color: "#069061"
38842
+ color: "var(--theme-color-green, var(--default-theme-color-green))"
38840
38843
  },
38841
38844
  {
38842
38845
  tag: [I.string],
38843
- color: "#0082D0"
38846
+ color: "var(--theme-color-blue, var(--default-theme-color-blue))"
38844
38847
  },
38845
38848
  {
38846
38849
  tag: [I.bracket, I.number, I.regexp, I.meta],
38847
- color: "#5203D1"
38850
+ color: "var(--theme-color-purple, var(--default-theme-color-purple))"
38848
38851
  },
38849
38852
  { tag: [I.name, I.quote], color: "#22863a" },
38850
38853
  { tag: [I.heading], color: "#24292e", fontWeight: "bold" },
@@ -38874,14 +38877,17 @@ Component that was made reactive: `,
38874
38877
  fontFamily: "var(--theme-font-code, var(--default-theme-font-code))"
38875
38878
  },
38876
38879
  styles: [
38877
- { tag: [I.standard(I.tagName), I.tagName], color: "#FCD245" },
38880
+ {
38881
+ tag: [I.standard(I.tagName), I.tagName],
38882
+ color: "var(--theme-color-yellow, var(--default-theme-color-yellow))"
38883
+ },
38878
38884
  {
38879
38885
  tag: [I.comment],
38880
38886
  color: "var(--theme-color-3, var(--default-theme-color-3))"
38881
38887
  },
38882
38888
  {
38883
38889
  tag: [I.className],
38884
- color: "#FC9B4B"
38890
+ color: "var(--theme-color-orange, var(--default-theme-color-orange))"
38885
38891
  },
38886
38892
  {
38887
38893
  tag: [I.variableName, I.propertyName, I.attributeName],
@@ -38893,15 +38899,15 @@ Component that was made reactive: `,
38893
38899
  },
38894
38900
  {
38895
38901
  tag: [I.keyword, I.typeName, I.typeOperator],
38896
- color: "#2BA179"
38902
+ color: "var(--theme-color-green, var(--default-theme-color-green))"
38897
38903
  },
38898
38904
  {
38899
38905
  tag: [I.string],
38900
- color: "#2695D7"
38906
+ color: "var(--theme-color-blue, var(--default-theme-color-blue))"
38901
38907
  },
38902
38908
  {
38903
38909
  tag: [I.bracket, I.number, I.regexp, I.meta],
38904
- color: "#864FDF"
38910
+ color: "var(--theme-color-purple, var(--default-theme-color-purple))"
38905
38911
  },
38906
38912
  { tag: [I.name, I.quote], color: "#22863a" },
38907
38913
  { tag: [I.heading], color: "#24292e", fontWeight: "bold" },
@@ -117231,14 +117237,17 @@ Downloads a flow in .tfl or .tflx format.`,
117231
117237
  fontFamily: "var(--theme-font-code, var(--default-theme-font-code))"
117232
117238
  },
117233
117239
  styles: [
117234
- { tag: [D.standard(D.tagName), D.tagName], color: "#EDBE20" },
117240
+ {
117241
+ tag: [D.standard(D.tagName), D.tagName],
117242
+ color: "var(--theme-color-yellow, var(--default-theme-color-yellow))"
117243
+ },
117235
117244
  {
117236
117245
  tag: [D.comment],
117237
117246
  color: "var(--theme-color-3, var(--default-theme-color-3))"
117238
117247
  },
117239
117248
  {
117240
117249
  tag: [D.className],
117241
- color: "#FB892C"
117250
+ color: "var(--theme-color-orange, var(--default-theme-color-orange))"
117242
117251
  },
117243
117252
  {
117244
117253
  tag: [D.variableName, D.propertyName, D.attributeName],
@@ -117250,15 +117259,15 @@ Downloads a flow in .tfl or .tflx format.`,
117250
117259
  },
117251
117260
  {
117252
117261
  tag: [D.keyword, D.typeName, D.typeOperator],
117253
- color: "#069061"
117262
+ color: "var(--theme-color-green, var(--default-theme-color-green))"
117254
117263
  },
117255
117264
  {
117256
117265
  tag: [D.string],
117257
- color: "#0082D0"
117266
+ color: "var(--theme-color-blue, var(--default-theme-color-blue))"
117258
117267
  },
117259
117268
  {
117260
117269
  tag: [D.bracket, D.number, D.regexp, D.meta],
117261
- color: "#5203D1"
117270
+ color: "var(--theme-color-purple, var(--default-theme-color-purple))"
117262
117271
  },
117263
117272
  { tag: [D.name, D.quote], color: "#22863a" },
117264
117273
  { tag: [D.heading], color: "#24292e", fontWeight: "bold" },
@@ -117288,14 +117297,17 @@ Downloads a flow in .tfl or .tflx format.`,
117288
117297
  fontFamily: "var(--theme-font-code, var(--default-theme-font-code))"
117289
117298
  },
117290
117299
  styles: [
117291
- { tag: [D.standard(D.tagName), D.tagName], color: "#FCD245" },
117300
+ {
117301
+ tag: [D.standard(D.tagName), D.tagName],
117302
+ color: "var(--theme-color-yellow, var(--default-theme-color-yellow))"
117303
+ },
117292
117304
  {
117293
117305
  tag: [D.comment],
117294
117306
  color: "var(--theme-color-3, var(--default-theme-color-3))"
117295
117307
  },
117296
117308
  {
117297
117309
  tag: [D.className],
117298
- color: "#FC9B4B"
117310
+ color: "var(--theme-color-orange, var(--default-theme-color-orange))"
117299
117311
  },
117300
117312
  {
117301
117313
  tag: [D.variableName, D.propertyName, D.attributeName],
@@ -117307,15 +117319,15 @@ Downloads a flow in .tfl or .tflx format.`,
117307
117319
  },
117308
117320
  {
117309
117321
  tag: [D.keyword, D.typeName, D.typeOperator],
117310
- color: "#2BA179"
117322
+ color: "var(--theme-color-green, var(--default-theme-color-green))"
117311
117323
  },
117312
117324
  {
117313
117325
  tag: [D.string],
117314
- color: "#2695D7"
117326
+ color: "var(--theme-color-blue, var(--default-theme-color-blue))"
117315
117327
  },
117316
117328
  {
117317
117329
  tag: [D.bracket, D.number, D.regexp, D.meta],
117318
- color: "#864FDF"
117330
+ color: "var(--theme-color-purple, var(--default-theme-color-purple))"
117319
117331
  },
117320
117332
  { tag: [D.name, D.quote], color: "#22863a" },
117321
117333
  { tag: [D.heading], color: "#24292e", fontWeight: "bold" },
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@scalar/fastify-api-reference",
3
3
  "description": "a fastify plugin to render an API reference from a Swagger spec",
4
- "version": "0.6.7",
4
+ "version": "0.6.8",
5
5
  "author": "Scalar (https://github.com/scalar)",
6
6
  "bugs": "https://github.com/scalar/scalar/issues/new",
7
7
  "dependencies": {
8
8
  "ejs": "3.1.9",
9
- "@scalar/api-reference": "0.6.7"
9
+ "@scalar/api-reference": "0.6.8"
10
10
  },
11
11
  "devDependencies": {
12
12
  "@vitejs/plugin-vue": "4.3.4",