@travetto/openapi 5.0.19 → 5.0.21

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@travetto/openapi",
3
- "version": "5.0.19",
3
+ "version": "5.0.21",
4
4
  "description": "OpenAPI integration support for the Travetto framework",
5
5
  "keywords": [
6
6
  "rest",
@@ -22,18 +22,18 @@
22
22
  ],
23
23
  "main": "__index__.ts",
24
24
  "repository": {
25
- "url": "https://github.com/travetto/travetto.git",
25
+ "url": "git+https://github.com/travetto/travetto.git",
26
26
  "directory": "module/openapi"
27
27
  },
28
28
  "dependencies": {
29
- "@travetto/config": "^5.0.14",
30
- "@travetto/rest": "^5.0.18",
31
- "@travetto/schema": "^5.0.14",
29
+ "@travetto/config": "^5.0.16",
30
+ "@travetto/rest": "^5.0.20",
31
+ "@travetto/schema": "^5.0.16",
32
32
  "openapi3-ts": "^4.4.0",
33
33
  "yaml": "^2.6.1"
34
34
  },
35
35
  "peerDependencies": {
36
- "@travetto/cli": "^5.0.17"
36
+ "@travetto/cli": "^5.0.19"
37
37
  },
38
38
  "peerDependenciesMeta": {
39
39
  "@travetto/cli": {
@@ -7,7 +7,7 @@ import type {
7
7
  import { EndpointConfig, ControllerConfig, ParamConfig, EndpointIOType, ControllerVisitor } from '@travetto/rest';
8
8
  import { Class, describeFunction } from '@travetto/runtime';
9
9
  import { SchemaRegistry, FieldConfig, ClassConfig, SchemaNameResolver } from '@travetto/schema';
10
- import { AllViewⲐ } from '@travetto/schema/src/internal/types';
10
+ import { AllViewSymbol } from '@travetto/schema/src/internal/types';
11
11
 
12
12
  import { ApiSpecConfig } from './config';
13
13
 
@@ -206,7 +206,7 @@ export class OpenapiVisitor implements ControllerVisitor<GeneratedSpec> {
206
206
  };
207
207
 
208
208
  const properties: Record<string, SchemaObject> = {};
209
- const def = config.views[AllViewⲐ];
209
+ const def = config.views[AllViewSymbol];
210
210
  const required: string[] = [];
211
211
 
212
212
  for (const fieldName of def.fields) {