@scalar/postman-to-openapi 0.3.48 → 0.3.52

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +41 -0
  2. package/package.json +6 -7
package/CHANGELOG.md CHANGED
@@ -1,5 +1,46 @@
1
1
  # @scalar/postman-to-openapi
2
2
 
3
+ ## 0.3.52
4
+
5
+ ### Patch Changes
6
+
7
+ #### Updated Dependencies
8
+
9
+ - **@scalar/helpers@0.2.4**
10
+ - [#7581](https://github.com/scalar/scalar/pull/7581): fix: npm publish job
11
+ - [#7567](https://github.com/scalar/scalar/pull/7567): feat: add code samples to client v2
12
+
13
+ - **@scalar/oas-utils@0.6.11**
14
+ - [#7581](https://github.com/scalar/scalar/pull/7581): fix: npm publish job
15
+
16
+ ## 0.3.51
17
+
18
+ ### Patch Changes
19
+
20
+ #### Updated Dependencies
21
+
22
+ - **@scalar/helpers@0.2.3**
23
+ - [#7575](https://github.com/scalar/scalar/pull/7575): feat: add support for object examples + hide body when empty
24
+
25
+ - **@scalar/oas-utils@0.6.10**
26
+
27
+ ## 0.3.50
28
+
29
+ ### Patch Changes
30
+
31
+ - Updated dependencies []:
32
+ - @scalar/oas-utils@0.6.9
33
+ - @scalar/helpers@0.2.2
34
+ - @scalar/openapi-types@0.5.3
35
+
36
+ ## 0.3.49
37
+
38
+ ### Patch Changes
39
+
40
+ - Updated dependencies [[`f7c24e4`](https://github.com/scalar/scalar/commit/f7c24e4995580649dbc3cb87007a683f5dd91f7c)]:
41
+ - @scalar/helpers@0.2.2
42
+ - @scalar/oas-utils@0.6.8
43
+
3
44
  ## 0.3.48
4
45
 
5
46
  ### Patch Changes
package/package.json CHANGED
@@ -19,7 +19,7 @@
19
19
  "export",
20
20
  "scalar"
21
21
  ],
22
- "version": "0.3.48",
22
+ "version": "0.3.52",
23
23
  "engines": {
24
24
  "node": ">=20"
25
25
  },
@@ -38,12 +38,12 @@
38
38
  "CHANGELOG.md"
39
39
  ],
40
40
  "dependencies": {
41
- "@scalar/helpers": "0.2.1",
42
- "@scalar/oas-utils": "0.6.7",
43
- "@scalar/openapi-types": "0.5.3"
41
+ "@scalar/openapi-types": "0.5.3",
42
+ "@scalar/helpers": "0.2.4",
43
+ "@scalar/oas-utils": "0.6.11"
44
44
  },
45
45
  "devDependencies": {
46
- "@scalar/build-tooling": "0.3.1"
46
+ "@scalar/build-tooling": "0.4.0"
47
47
  },
48
48
  "scripts": {
49
49
  "build": "scalar-build-esbuild",
@@ -52,7 +52,6 @@
52
52
  "lint:fix": "eslint . --fix",
53
53
  "test": "vitest",
54
54
  "types:build": "scalar-types-build",
55
- "types:check": "scalar-types-check",
56
- "watch": "scalar-build-rollup -w"
55
+ "types:check": "scalar-types-check"
57
56
  }
58
57
  }