@nx/angular 22.7.0-beta.8 → 22.7.0-beta.9
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/executors.json +62 -62
- package/generators.json +185 -185
- package/migrations.json +2412 -2412
- package/ng-package.json +19 -19
- package/package.json +9 -9
- package/project.json +2 -8
- package/src/builders/dev-server/schema.json +163 -163
- package/src/builders/webpack-browser/schema.json +567 -567
- package/src/builders/webpack-server/schema.json +303 -303
- package/src/executors/application/schema.json +732 -732
- package/src/executors/browser-esbuild/schema.json +548 -548
- package/src/executors/delegate-build/schema.json +31 -31
- package/src/executors/extract-i18n/schema.json +47 -47
- package/src/executors/module-federation-dev-server/schema.json +164 -164
- package/src/executors/module-federation-ssr-dev-server/schema.json +119 -119
- package/src/executors/ng-packagr-lite/schema.json +35 -35
- package/src/executors/package/schema.json +35 -35
- package/src/executors/unit-test/schema.json +305 -305
- package/src/generators/add-linting/schema.json +48 -48
- package/src/generators/application/schema.json +188 -188
- package/src/generators/component/schema.json +123 -123
- package/src/generators/component-story/schema.json +50 -50
- package/src/generators/component-test/schema.json +52 -52
- package/src/generators/convert-to-application-executor/schema.json +23 -23
- package/src/generators/convert-to-rspack/schema.json +27 -27
- package/src/generators/convert-to-with-mf/schema.json +30 -30
- package/src/generators/cypress-component-configuration/schema.json +43 -43
- package/src/generators/directive/schema.json +89 -89
- package/src/generators/federate-module/schema.json +80 -80
- package/src/generators/host/schema.json +189 -189
- package/src/generators/init/schema.json +31 -31
- package/src/generators/library/schema.json +189 -189
- package/src/generators/library-secondary-entry-point/schema.json +40 -40
- package/src/generators/move/schema.json +53 -53
- package/src/generators/ng-add/schema.json +62 -63
- package/src/generators/ngrx/schema.json +99 -99
- package/src/generators/ngrx-feature-store/schema.json +69 -69
- package/src/generators/ngrx-root-store/schema.json +68 -68
- package/src/generators/pipe/schema.json +75 -75
- package/src/generators/remote/schema.json +182 -182
- package/src/generators/scam/schema.json +120 -120
- package/src/generators/scam-directive/schema.json +82 -82
- package/src/generators/scam-pipe/schema.json +64 -64
- package/src/generators/scam-to-standalone/schema.json +29 -29
- package/src/generators/setup-mf/schema.json +90 -90
- package/src/generators/setup-ssr/schema.json +70 -70
- package/src/generators/setup-tailwind/schema.json +39 -39
- package/src/generators/stories/schema.json +53 -53
- package/src/generators/storybook-configuration/schema.json +80 -80
- package/src/generators/web-worker/schema.json +45 -45
|
@@ -1,46 +1,46 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
2
|
+
"$schema": "https://json-schema.org/schema",
|
|
3
|
+
"$id": "NxAngularCypressComponentConfigurationGenerator",
|
|
4
|
+
"type": "object",
|
|
5
|
+
"cli": "nx",
|
|
6
|
+
"title": "Add Cypress component testing",
|
|
7
|
+
"description": "Add a Cypress component testing configuration to an existing project. Cypress v10.7.0 or higher is required.",
|
|
8
|
+
"properties": {
|
|
9
|
+
"project": {
|
|
10
|
+
"type": "string",
|
|
11
|
+
"description": "The name of the project to add cypress component testing configuration to",
|
|
12
|
+
"$default": {
|
|
13
|
+
"$source": "projectName"
|
|
14
|
+
},
|
|
15
|
+
"x-dropdown": "projects",
|
|
16
|
+
"x-prompt": "What project should we add Cypress component testing to?",
|
|
17
|
+
"x-priority": "important"
|
|
18
|
+
},
|
|
19
|
+
"generateTests": {
|
|
20
|
+
"type": "boolean",
|
|
21
|
+
"description": "Generate default component tests for existing components in the project",
|
|
22
|
+
"x-prompt": "Automatically generate tests for components declared in this project?",
|
|
23
|
+
"default": false
|
|
24
|
+
},
|
|
25
|
+
"buildTarget": {
|
|
26
|
+
"type": "string",
|
|
27
|
+
"description": "A build target used to configure Cypress component testing in the format of `project:target[:configuration]`. The build target should be an angular app. If not provided we will try to infer it from your projects usage.",
|
|
28
|
+
"pattern": "^[^:\\s]+:[^:\\s]+(:\\S+)?$",
|
|
29
|
+
"x-priority": "important"
|
|
30
|
+
},
|
|
31
|
+
"skipFormat": {
|
|
32
|
+
"type": "boolean",
|
|
33
|
+
"description": "Skip formatting files",
|
|
34
|
+
"default": false,
|
|
35
|
+
"x-priority": "internal"
|
|
36
|
+
},
|
|
37
|
+
"skipPackageJson": {
|
|
38
|
+
"type": "boolean",
|
|
39
|
+
"default": false,
|
|
40
|
+
"description": "Do not add dependencies to `package.json`.",
|
|
41
|
+
"x-priority": "internal"
|
|
42
|
+
}
|
|
18
43
|
},
|
|
19
|
-
"
|
|
20
|
-
|
|
21
|
-
"description": "Generate default component tests for existing components in the project",
|
|
22
|
-
"x-prompt": "Automatically generate tests for components declared in this project?",
|
|
23
|
-
"default": false
|
|
24
|
-
},
|
|
25
|
-
"buildTarget": {
|
|
26
|
-
"type": "string",
|
|
27
|
-
"description": "A build target used to configure Cypress component testing in the format of `project:target[:configuration]`. The build target should be an angular app. If not provided we will try to infer it from your projects usage.",
|
|
28
|
-
"pattern": "^[^:\\s]+:[^:\\s]+(:\\S+)?$",
|
|
29
|
-
"x-priority": "important"
|
|
30
|
-
},
|
|
31
|
-
"skipFormat": {
|
|
32
|
-
"type": "boolean",
|
|
33
|
-
"description": "Skip formatting files",
|
|
34
|
-
"default": false,
|
|
35
|
-
"x-priority": "internal"
|
|
36
|
-
},
|
|
37
|
-
"skipPackageJson": {
|
|
38
|
-
"type": "boolean",
|
|
39
|
-
"default": false,
|
|
40
|
-
"description": "Do not add dependencies to `package.json`.",
|
|
41
|
-
"x-priority": "internal"
|
|
42
|
-
}
|
|
43
|
-
},
|
|
44
|
-
"required": ["project"],
|
|
45
|
-
"examplesFile": "../../../docs/cypress-component-configuration-examples.md"
|
|
44
|
+
"required": ["project"],
|
|
45
|
+
"examplesFile": "../../../docs/cypress-component-configuration-examples.md"
|
|
46
46
|
}
|
|
@@ -1,96 +1,96 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
{
|
|
15
|
-
"description": "Generate a directive without providing the file extension. It results in the directive `Foo` at `mylib/src/lib/foo.ts`",
|
|
16
|
-
"command": "nx g @nx/angular:directive mylib/src/lib/foo"
|
|
17
|
-
},
|
|
18
|
-
{
|
|
19
|
-
"description": "Generate a directive with a given type/suffix. It results in the directive `FooDirective` at `mylib/src/lib/foo.directive.ts`",
|
|
20
|
-
"command": "nx g @nx/angular:directive mylib/src/lib/foo --type=directive"
|
|
21
|
-
},
|
|
22
|
-
{
|
|
23
|
-
"description": "Generate a directive with the exported symbol different from the file name. It results in the directive `Custom` at `mylib/src/lib/foo.ts`",
|
|
24
|
-
"command": "nx g @nx/angular:directive mylib/src/lib/foo --name=custom"
|
|
25
|
-
}
|
|
26
|
-
],
|
|
27
|
-
"properties": {
|
|
28
|
-
"path": {
|
|
29
|
-
"type": "string",
|
|
30
|
-
"description": "The file path to the directive. Relative to the current working directory.",
|
|
31
|
-
"$default": {
|
|
32
|
-
"$source": "argv",
|
|
33
|
-
"index": 0
|
|
34
|
-
},
|
|
35
|
-
"x-prompt": "What is the directive file path?"
|
|
36
|
-
},
|
|
37
|
-
"name": {
|
|
38
|
-
"type": "string",
|
|
39
|
-
"description": "The directive symbol name. Defaults to the last segment of the file path."
|
|
40
|
-
},
|
|
41
|
-
"prefix": {
|
|
42
|
-
"type": "string",
|
|
43
|
-
"description": "A prefix to apply to generated selectors.",
|
|
44
|
-
"alias": "p",
|
|
45
|
-
"oneOf": [
|
|
2
|
+
"$schema": "http://json-schema.org/draft-07/schema",
|
|
3
|
+
"$id": "GeneratorAngularDirective",
|
|
4
|
+
"cli": "nx",
|
|
5
|
+
"title": "Nx Angular Directive Options Schema",
|
|
6
|
+
"type": "object",
|
|
7
|
+
"description": "Creates a new Angular directive.",
|
|
8
|
+
"additionalProperties": false,
|
|
9
|
+
"examples": [
|
|
10
|
+
{
|
|
11
|
+
"description": "Generate a directive with the exported symbol matching the file name. It results in the directive `FooDirective` at `mylib/src/lib/foo.directive.ts`",
|
|
12
|
+
"command": "nx g @nx/angular:directive mylib/src/lib/foo.directive.ts"
|
|
13
|
+
},
|
|
46
14
|
{
|
|
47
|
-
|
|
15
|
+
"description": "Generate a directive without providing the file extension. It results in the directive `Foo` at `mylib/src/lib/foo.ts`",
|
|
16
|
+
"command": "nx g @nx/angular:directive mylib/src/lib/foo"
|
|
48
17
|
},
|
|
49
18
|
{
|
|
50
|
-
|
|
51
|
-
|
|
19
|
+
"description": "Generate a directive with a given type/suffix. It results in the directive `FooDirective` at `mylib/src/lib/foo.directive.ts`",
|
|
20
|
+
"command": "nx g @nx/angular:directive mylib/src/lib/foo --type=directive"
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"description": "Generate a directive with the exported symbol different from the file name. It results in the directive `Custom` at `mylib/src/lib/foo.ts`",
|
|
24
|
+
"command": "nx g @nx/angular:directive mylib/src/lib/foo --name=custom"
|
|
25
|
+
}
|
|
26
|
+
],
|
|
27
|
+
"properties": {
|
|
28
|
+
"path": {
|
|
29
|
+
"type": "string",
|
|
30
|
+
"description": "The file path to the directive. Relative to the current working directory.",
|
|
31
|
+
"$default": {
|
|
32
|
+
"$source": "argv",
|
|
33
|
+
"index": 0
|
|
34
|
+
},
|
|
35
|
+
"x-prompt": "What is the directive file path?"
|
|
36
|
+
},
|
|
37
|
+
"name": {
|
|
38
|
+
"type": "string",
|
|
39
|
+
"description": "The directive symbol name. Defaults to the last segment of the file path."
|
|
40
|
+
},
|
|
41
|
+
"prefix": {
|
|
42
|
+
"type": "string",
|
|
43
|
+
"description": "A prefix to apply to generated selectors.",
|
|
44
|
+
"alias": "p",
|
|
45
|
+
"oneOf": [
|
|
46
|
+
{
|
|
47
|
+
"maxLength": 0
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
"minLength": 1,
|
|
51
|
+
"format": "html-selector"
|
|
52
|
+
}
|
|
53
|
+
]
|
|
54
|
+
},
|
|
55
|
+
"skipTests": {
|
|
56
|
+
"type": "boolean",
|
|
57
|
+
"description": "Do not create \"spec.ts\" test files for the new class.",
|
|
58
|
+
"default": false
|
|
59
|
+
},
|
|
60
|
+
"skipImport": {
|
|
61
|
+
"type": "boolean",
|
|
62
|
+
"description": "Do not import this directive into the owning NgModule.",
|
|
63
|
+
"default": false
|
|
64
|
+
},
|
|
65
|
+
"selector": {
|
|
66
|
+
"type": "string",
|
|
67
|
+
"format": "html-selector",
|
|
68
|
+
"description": "The HTML selector to use for this directive."
|
|
69
|
+
},
|
|
70
|
+
"standalone": {
|
|
71
|
+
"description": "Whether the generated directive is standalone.",
|
|
72
|
+
"type": "boolean",
|
|
73
|
+
"default": true
|
|
74
|
+
},
|
|
75
|
+
"module": {
|
|
76
|
+
"type": "string",
|
|
77
|
+
"description": "The filename of the declaring NgModule.",
|
|
78
|
+
"alias": "m"
|
|
79
|
+
},
|
|
80
|
+
"export": {
|
|
81
|
+
"type": "boolean",
|
|
82
|
+
"default": false,
|
|
83
|
+
"description": "The declaring NgModule exports this directive."
|
|
84
|
+
},
|
|
85
|
+
"type": {
|
|
86
|
+
"type": "string",
|
|
87
|
+
"description": "Append a custom type to the directive's filename. It defaults to 'directive' for Angular versions below v20. For Angular v20 and above, no type is appended unless specified."
|
|
88
|
+
},
|
|
89
|
+
"skipFormat": {
|
|
90
|
+
"type": "boolean",
|
|
91
|
+
"default": false,
|
|
92
|
+
"description": "Skip formatting of files."
|
|
52
93
|
}
|
|
53
|
-
]
|
|
54
|
-
},
|
|
55
|
-
"skipTests": {
|
|
56
|
-
"type": "boolean",
|
|
57
|
-
"description": "Do not create \"spec.ts\" test files for the new class.",
|
|
58
|
-
"default": false
|
|
59
|
-
},
|
|
60
|
-
"skipImport": {
|
|
61
|
-
"type": "boolean",
|
|
62
|
-
"description": "Do not import this directive into the owning NgModule.",
|
|
63
|
-
"default": false
|
|
64
|
-
},
|
|
65
|
-
"selector": {
|
|
66
|
-
"type": "string",
|
|
67
|
-
"format": "html-selector",
|
|
68
|
-
"description": "The HTML selector to use for this directive."
|
|
69
|
-
},
|
|
70
|
-
"standalone": {
|
|
71
|
-
"description": "Whether the generated directive is standalone.",
|
|
72
|
-
"type": "boolean",
|
|
73
|
-
"default": true
|
|
74
|
-
},
|
|
75
|
-
"module": {
|
|
76
|
-
"type": "string",
|
|
77
|
-
"description": "The filename of the declaring NgModule.",
|
|
78
|
-
"alias": "m"
|
|
79
|
-
},
|
|
80
|
-
"export": {
|
|
81
|
-
"type": "boolean",
|
|
82
|
-
"default": false,
|
|
83
|
-
"description": "The declaring NgModule exports this directive."
|
|
84
|
-
},
|
|
85
|
-
"type": {
|
|
86
|
-
"type": "string",
|
|
87
|
-
"description": "Append a custom type to the directive's filename. It defaults to 'directive' for Angular versions below v20. For Angular v20 and above, no type is appended unless specified."
|
|
88
94
|
},
|
|
89
|
-
"
|
|
90
|
-
"type": "boolean",
|
|
91
|
-
"default": false,
|
|
92
|
-
"description": "Skip formatting of files."
|
|
93
|
-
}
|
|
94
|
-
},
|
|
95
|
-
"required": ["path"]
|
|
95
|
+
"required": ["path"]
|
|
96
96
|
}
|
|
@@ -1,83 +1,83 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
2
|
+
"$schema": "https://json-schema.org/schema",
|
|
3
|
+
"cli": "nx",
|
|
4
|
+
"$id": "NxReactFederateModule",
|
|
5
|
+
"title": "Federate Module",
|
|
6
|
+
"description": "Create a federated module, which is exposed by a Producer (remote) and can be subsequently loaded by a Consumer (host).",
|
|
7
|
+
"examples": [
|
|
8
|
+
{
|
|
9
|
+
"command": "nx g federate-module MyModule --path=./src/component/my-cmp.ts --remote=myRemoteApp --remoteDirectory=apps/myRemoteApp",
|
|
10
|
+
"description": "Create a federated module from my-remote-app, that exposes my-cmp from ./src/component/my-cmp.ts as MyModule."
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
"command": "nx g federate-module MyModule --path=./src/component/my-cmp.ts --producer=myProducer --producerDirectory=apps/myProducer",
|
|
14
|
+
"description": "Create a federated module from myProducer, that exposes my-cmp from ./src/component/my-cmp.ts as MyModule."
|
|
15
|
+
}
|
|
16
|
+
],
|
|
17
|
+
"type": "object",
|
|
18
|
+
"properties": {
|
|
19
|
+
"path": {
|
|
20
|
+
"type": "string",
|
|
21
|
+
"$default": {
|
|
22
|
+
"$source": "argv",
|
|
23
|
+
"index": 0
|
|
24
|
+
},
|
|
25
|
+
"description": "The path to locate the federated module.",
|
|
26
|
+
"x-prompt": "What is the path to the module to be federated?"
|
|
27
|
+
},
|
|
28
|
+
"name": {
|
|
29
|
+
"description": "The name of the module.",
|
|
30
|
+
"type": "string",
|
|
31
|
+
"x-prompt": "What name would you like to use for the module?",
|
|
32
|
+
"pattern": "^[a-zA-Z][^:]*$",
|
|
33
|
+
"x-priority": "important"
|
|
34
|
+
},
|
|
35
|
+
"remote": {
|
|
36
|
+
"type": "string",
|
|
37
|
+
"description": "The name of the Producer (remote).",
|
|
38
|
+
"x-prompt": "What is/should the Producer (remote) be named?",
|
|
39
|
+
"alias": "producer"
|
|
40
|
+
},
|
|
41
|
+
"remoteDirectory": {
|
|
42
|
+
"description": "The directory of the new Producer (remote) application if one needs to be created.",
|
|
43
|
+
"type": "string",
|
|
44
|
+
"alias": "producerDirectory"
|
|
45
|
+
},
|
|
46
|
+
"style": {
|
|
47
|
+
"description": "The file extension to be used for style files for the Producer (remote) if one needs to be created.",
|
|
48
|
+
"type": "string",
|
|
49
|
+
"default": "css",
|
|
50
|
+
"enum": ["css", "scss", "sass", "less"]
|
|
51
|
+
},
|
|
52
|
+
"skipFormat": {
|
|
53
|
+
"description": "Skip formatting files.",
|
|
54
|
+
"type": "boolean",
|
|
55
|
+
"default": false,
|
|
56
|
+
"x-priority": "internal"
|
|
57
|
+
},
|
|
58
|
+
"unitTestRunner": {
|
|
59
|
+
"type": "string",
|
|
60
|
+
"enum": ["vitest-analog", "jest", "none"],
|
|
61
|
+
"description": "Test runner to use for unit tests of the Producer (remote) if it needs to be created. `vitest-analog` uses AnalogJS-based setup with `@nx/vitest`. It defaults to `vitest-analog` for Angular versions >= 21.0.0, otherwise `jest`.",
|
|
62
|
+
"x-prompt": "Which unit test runner would you like to use?"
|
|
63
|
+
},
|
|
64
|
+
"e2eTestRunner": {
|
|
65
|
+
"type": "string",
|
|
66
|
+
"enum": ["cypress", "none"],
|
|
67
|
+
"description": "Test runner to use for end to end (e2e) tests of the Producer (remote) if it needs to be created.",
|
|
68
|
+
"default": "cypress"
|
|
69
|
+
},
|
|
70
|
+
"standalone": {
|
|
71
|
+
"description": "Whether to generate the Producer (remote) application with standalone components if it needs to be created.",
|
|
72
|
+
"type": "boolean",
|
|
73
|
+
"default": true
|
|
74
|
+
},
|
|
75
|
+
"host": {
|
|
76
|
+
"type": "string",
|
|
77
|
+
"description": "The Consumer (host) application for this Producer (remote).",
|
|
78
|
+
"alias": "consumer"
|
|
79
|
+
}
|
|
11
80
|
},
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
"description": "Create a federated module from myProducer, that exposes my-cmp from ./src/component/my-cmp.ts as MyModule."
|
|
15
|
-
}
|
|
16
|
-
],
|
|
17
|
-
"type": "object",
|
|
18
|
-
"properties": {
|
|
19
|
-
"path": {
|
|
20
|
-
"type": "string",
|
|
21
|
-
"$default": {
|
|
22
|
-
"$source": "argv",
|
|
23
|
-
"index": 0
|
|
24
|
-
},
|
|
25
|
-
"description": "The path to locate the federated module.",
|
|
26
|
-
"x-prompt": "What is the path to the module to be federated?"
|
|
27
|
-
},
|
|
28
|
-
"name": {
|
|
29
|
-
"description": "The name of the module.",
|
|
30
|
-
"type": "string",
|
|
31
|
-
"x-prompt": "What name would you like to use for the module?",
|
|
32
|
-
"pattern": "^[a-zA-Z][^:]*$",
|
|
33
|
-
"x-priority": "important"
|
|
34
|
-
},
|
|
35
|
-
"remote": {
|
|
36
|
-
"type": "string",
|
|
37
|
-
"description": "The name of the Producer (remote).",
|
|
38
|
-
"x-prompt": "What is/should the Producer (remote) be named?",
|
|
39
|
-
"alias": "producer"
|
|
40
|
-
},
|
|
41
|
-
"remoteDirectory": {
|
|
42
|
-
"description": "The directory of the new Producer (remote) application if one needs to be created.",
|
|
43
|
-
"type": "string",
|
|
44
|
-
"alias": "producerDirectory"
|
|
45
|
-
},
|
|
46
|
-
"style": {
|
|
47
|
-
"description": "The file extension to be used for style files for the Producer (remote) if one needs to be created.",
|
|
48
|
-
"type": "string",
|
|
49
|
-
"default": "css",
|
|
50
|
-
"enum": ["css", "scss", "sass", "less"]
|
|
51
|
-
},
|
|
52
|
-
"skipFormat": {
|
|
53
|
-
"description": "Skip formatting files.",
|
|
54
|
-
"type": "boolean",
|
|
55
|
-
"default": false,
|
|
56
|
-
"x-priority": "internal"
|
|
57
|
-
},
|
|
58
|
-
"unitTestRunner": {
|
|
59
|
-
"type": "string",
|
|
60
|
-
"enum": ["vitest-analog", "jest", "none"],
|
|
61
|
-
"description": "Test runner to use for unit tests of the Producer (remote) if it needs to be created. `vitest-analog` uses AnalogJS-based setup with `@nx/vitest`. It defaults to `vitest-analog` for Angular versions >= 21.0.0, otherwise `jest`.",
|
|
62
|
-
"x-prompt": "Which unit test runner would you like to use?"
|
|
63
|
-
},
|
|
64
|
-
"e2eTestRunner": {
|
|
65
|
-
"type": "string",
|
|
66
|
-
"enum": ["cypress", "none"],
|
|
67
|
-
"description": "Test runner to use for end to end (e2e) tests of the Producer (remote) if it needs to be created.",
|
|
68
|
-
"default": "cypress"
|
|
69
|
-
},
|
|
70
|
-
"standalone": {
|
|
71
|
-
"description": "Whether to generate the Producer (remote) application with standalone components if it needs to be created.",
|
|
72
|
-
"type": "boolean",
|
|
73
|
-
"default": true
|
|
74
|
-
},
|
|
75
|
-
"host": {
|
|
76
|
-
"type": "string",
|
|
77
|
-
"description": "The Consumer (host) application for this Producer (remote).",
|
|
78
|
-
"alias": "consumer"
|
|
79
|
-
}
|
|
80
|
-
},
|
|
81
|
-
"required": ["name", "path", "remote"],
|
|
82
|
-
"additionalProperties": false
|
|
81
|
+
"required": ["name", "path", "remote"],
|
|
82
|
+
"additionalProperties": false
|
|
83
83
|
}
|