@hey-api/openapi-ts 0.66.0 → 0.66.1

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/index.d.cts CHANGED
@@ -7198,31 +7198,34 @@ interface Input {
7198
7198
  */
7199
7199
  commit_sha?: string;
7200
7200
  /**
7201
- * Prevent parts matching the regular expression from being processed.
7201
+ * Prevent parts matching the regular expression(s) from being processed.
7202
7202
  * You can select both operations and components by reference within
7203
- * the bundled input. In case of conflicts, `exclude` takes precedence
7204
- * over `include`.
7203
+ * the bundled input.
7204
+ *
7205
+ * In case of conflicts, `exclude` takes precedence over `include`.
7205
7206
  *
7206
7207
  * @example
7207
7208
  * operation: '^#/paths/api/v1/foo/get$'
7208
7209
  * schema: '^#/components/schemas/Foo$'
7210
+ * deprecated: '@deprecated'
7209
7211
  */
7210
- exclude?: string;
7212
+ exclude?: ReadonlyArray<string> | string;
7211
7213
  /**
7212
7214
  * You pass any valid Fetch API options to the request for fetching your
7213
7215
  * specification. This is useful if your file is behind auth for example.
7214
7216
  */
7215
7217
  fetch?: RequestInit;
7216
7218
  /**
7217
- * Process only parts matching the regular expression. You can select both
7218
- * operations and components by reference within the bundled input. In
7219
- * case of conflicts, `exclude` takes precedence over `include`.
7219
+ * Process only parts matching the regular expression(s). You can select both
7220
+ * operations and components by reference within the bundled input.
7221
+ *
7222
+ * In case of conflicts, `exclude` takes precedence over `include`.
7220
7223
  *
7221
7224
  * @example
7222
7225
  * operation: '^#/paths/api/v1/foo/get$'
7223
7226
  * schema: '^#/components/schemas/Foo$'
7224
7227
  */
7225
- include?: string;
7228
+ include?: ReadonlyArray<string> | string;
7226
7229
  /**
7227
7230
  * **Requires `path` to start with `https://get.heyapi.dev` or be undefined**
7228
7231
  *
package/dist/index.d.ts CHANGED
@@ -7198,31 +7198,34 @@ interface Input {
7198
7198
  */
7199
7199
  commit_sha?: string;
7200
7200
  /**
7201
- * Prevent parts matching the regular expression from being processed.
7201
+ * Prevent parts matching the regular expression(s) from being processed.
7202
7202
  * You can select both operations and components by reference within
7203
- * the bundled input. In case of conflicts, `exclude` takes precedence
7204
- * over `include`.
7203
+ * the bundled input.
7204
+ *
7205
+ * In case of conflicts, `exclude` takes precedence over `include`.
7205
7206
  *
7206
7207
  * @example
7207
7208
  * operation: '^#/paths/api/v1/foo/get$'
7208
7209
  * schema: '^#/components/schemas/Foo$'
7210
+ * deprecated: '@deprecated'
7209
7211
  */
7210
- exclude?: string;
7212
+ exclude?: ReadonlyArray<string> | string;
7211
7213
  /**
7212
7214
  * You pass any valid Fetch API options to the request for fetching your
7213
7215
  * specification. This is useful if your file is behind auth for example.
7214
7216
  */
7215
7217
  fetch?: RequestInit;
7216
7218
  /**
7217
- * Process only parts matching the regular expression. You can select both
7218
- * operations and components by reference within the bundled input. In
7219
- * case of conflicts, `exclude` takes precedence over `include`.
7219
+ * Process only parts matching the regular expression(s). You can select both
7220
+ * operations and components by reference within the bundled input.
7221
+ *
7222
+ * In case of conflicts, `exclude` takes precedence over `include`.
7220
7223
  *
7221
7224
  * @example
7222
7225
  * operation: '^#/paths/api/v1/foo/get$'
7223
7226
  * schema: '^#/components/schemas/Foo$'
7224
7227
  */
7225
- include?: string;
7228
+ include?: ReadonlyArray<string> | string;
7226
7229
  /**
7227
7230
  * **Requires `path` to start with `https://get.heyapi.dev` or be undefined**
7228
7231
  *