@orpc/openapi 0.10.0 → 0.11.0

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.js CHANGED
@@ -4419,4 +4419,3 @@ function isFileSchema(schema) {
4419
4419
  export {
4420
4420
  generateOpenAPI
4421
4421
  };
4422
- //# sourceMappingURL=index.js.map
@@ -21,4 +21,3 @@ export interface GenerateOpenAPIOptions {
21
21
  export declare function generateOpenAPI(opts: {
22
22
  router: ContractRouter | Router<any>;
23
23
  } & Omit<OpenAPIObject, 'openapi'>, options?: GenerateOpenAPIOptions): OpenAPIObject;
24
- //# sourceMappingURL=generator.d.ts.map
@@ -1,3 +1,2 @@
1
1
  /** unnoq */
2
2
  export * from './generator';
3
- //# sourceMappingURL=index.d.ts.map
@@ -40,4 +40,3 @@ export declare function extractJSONSchema(schema: JSONSchema, check: (schema: JS
40
40
  schema: JSONSchema | undefined;
41
41
  matches: JSONSchema[];
42
42
  };
43
- //# sourceMappingURL=zod-to-json-schema.d.ts.map
package/package.json CHANGED
@@ -1,21 +1,17 @@
1
1
  {
2
2
  "name": "@orpc/openapi",
3
3
  "type": "module",
4
- "version": "0.10.0",
5
- "author": {
6
- "name": "unnoq",
7
- "email": "contact@unnoq.com",
8
- "url": "https://unnoq.com"
9
- },
4
+ "version": "0.11.0",
10
5
  "license": "MIT",
11
- "homepage": "https://github.com/unnoq/orpc",
6
+ "homepage": "https://orpc.unnoq.com",
12
7
  "repository": {
13
8
  "type": "git",
14
- "url": "https://github.com/unnoq/orpc.git",
9
+ "url": "git+https://github.com/unnoq/orpc.git",
15
10
  "directory": "packages/openapi"
16
11
  },
17
12
  "keywords": [
18
- "unnoq"
13
+ "unnoq",
14
+ "orpc"
19
15
  ],
20
16
  "exports": {
21
17
  ".": {
@@ -28,25 +24,25 @@
28
24
  }
29
25
  },
30
26
  "files": [
31
- "dist",
32
- "src"
27
+ "!dist/*.tsbuildinfo",
28
+ "dist"
33
29
  ],
34
30
  "dependencies": {
35
31
  "escape-string-regexp": "^5.0.0",
36
32
  "json-schema-typed": "^8.0.1",
37
33
  "openapi3-ts": "^4.4.0",
38
- "@orpc/server": "0.10.0",
39
- "@orpc/contract": "0.10.0",
40
- "@orpc/transformer": "0.10.0",
41
- "@orpc/shared": "0.10.0",
42
- "@orpc/zod": "0.10.0"
34
+ "@orpc/contract": "0.11.0",
35
+ "@orpc/server": "0.11.0",
36
+ "@orpc/shared": "0.11.0",
37
+ "@orpc/transformer": "0.11.0",
38
+ "@orpc/zod": "0.11.0"
43
39
  },
44
40
  "devDependencies": {
45
41
  "@readme/openapi-parser": "^2.6.0",
46
42
  "zod": "^3.23.8"
47
43
  },
48
44
  "scripts": {
49
- "build": "tsup --clean --sourcemap --entry.index=src/index.ts --format=esm --onSuccess='tsc -b --noCheck'",
45
+ "build": "tsup --clean --entry.index=src/index.ts --format=esm --onSuccess='tsc -b --noCheck'",
50
46
  "build:watch": "pnpm run build --watch",
51
47
  "type:check": "tsc -b"
52
48
  }