@jentic/arazzo-resolver 1.0.0-alpha.18 → 1.0.0-alpha.19

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
@@ -3,6 +3,12 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [1.0.0-alpha.19](https://github.com/jentic/jentic-arazzo-tools/compare/v1.0.0-alpha.18...v1.0.0-alpha.19) (2026-02-23)
7
+
8
+ ### Features
9
+
10
+ - **arazzo-ui:** add CLI for opening any URL from command cli ([#103](https://github.com/jentic/jentic-arazzo-tools/issues/103)) ([6923e7b](https://github.com/jentic/jentic-arazzo-tools/commit/6923e7bdcb62e86266789e18ef6af5dc27459110)), closes [#96](https://github.com/jentic/jentic-arazzo-tools/issues/96)
11
+
6
12
  # [1.0.0-alpha.18](https://github.com/jentic/jentic-arazzo-tools/compare/v1.0.0-alpha.17...v1.0.0-alpha.18) (2026-02-20)
7
13
 
8
14
  ### Features
package/README.md CHANGED
@@ -242,6 +242,7 @@ const parseResult = await dereferenceArazzo('/path/to/arazzo.json', {
242
242
  },
243
243
  parse: {
244
244
  parserOpts: {
245
+ strict: false, // Required for sourceMap and style (default: true)
245
246
  sourceMap: true, // Include source maps in parsed documents
246
247
  style: true, // Capture format-specific style information for round-trip preservation
247
248
  },
@@ -165,10 +165,12 @@ const defaultOptions = {
165
165
  * const result = await dereferenceArazzo('https://example.com/arazzo.yaml');
166
166
  *
167
167
  * @example
168
- * // Dereference with source descriptions
168
+ * Dereference with source descriptions
169
+ * ```typescript
169
170
  * const result = await dereferenceArazzo('/path/to/arazzo.json', {
170
171
  * dereference: { strategyOpts: { sourceDescriptions: true } },
171
172
  * });
173
+ * ```
172
174
  *
173
175
  * @example
174
176
  * // Dereference with custom options
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jentic/arazzo-resolver",
3
- "version": "1.0.0-alpha.18",
3
+ "version": "1.0.0-alpha.19",
4
4
  "description": "Resolver for Arazzo Documents.",
5
5
  "keywords": [
6
6
  "arazzo",
@@ -69,5 +69,5 @@
69
69
  "README.md",
70
70
  "CHANGELOG.md"
71
71
  ],
72
- "gitHead": "72d17ffa07c1ac857526b248a1c4504a75c94ff9"
72
+ "gitHead": "06f968a2268a2914eb9e2762f5554dcdceb32906"
73
73
  }
@@ -120,10 +120,12 @@ const defaultOptions = exports.defaultOptions = {
120
120
  * const result = await dereferenceArazzo('https://example.com/arazzo.yaml');
121
121
  *
122
122
  * @example
123
- * // Dereference with source descriptions
123
+ * Dereference with source descriptions
124
+ * ```typescript
124
125
  * const result = await dereferenceArazzo('/path/to/arazzo.json', {
125
126
  * dereference: { strategyOpts: { sourceDescriptions: true } },
126
127
  * });
128
+ * ```
127
129
  *
128
130
  * @example
129
131
  * // Dereference with custom options
@@ -112,10 +112,12 @@ export const defaultOptions = {
112
112
  * const result = await dereferenceArazzo('https://example.com/arazzo.yaml');
113
113
  *
114
114
  * @example
115
- * // Dereference with source descriptions
115
+ * Dereference with source descriptions
116
+ * ```typescript
116
117
  * const result = await dereferenceArazzo('/path/to/arazzo.json', {
117
118
  * dereference: { strategyOpts: { sourceDescriptions: true } },
118
119
  * });
120
+ * ```
119
121
  *
120
122
  * @example
121
123
  * // Dereference with custom options
@@ -43,10 +43,12 @@ export declare const defaultDereferenceOpenAPIOptions: DereferenceOpenAPIOptions
43
43
  * const result = await dereferenceArazzo('https://example.com/arazzo.yaml');
44
44
  *
45
45
  * @example
46
- * // Dereference with source descriptions
46
+ * Dereference with source descriptions
47
+ * ```typescript
47
48
  * const result = await dereferenceArazzo('/path/to/arazzo.json', {
48
49
  * dereference: { strategyOpts: { sourceDescriptions: true } },
49
50
  * });
51
+ * ```
50
52
  *
51
53
  * @example
52
54
  * // Dereference with custom options