codify-schemas 1.0.73 → 1.0.74

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.
@@ -0,0 +1,16 @@
1
+ {
2
+ "version": "2.0.0",
3
+ "tasks": [
4
+ {
5
+ "type": "deno",
6
+ "command": "cache",
7
+ "problemMatcher": [
8
+ "$deno"
9
+ ],
10
+ "group": "build",
11
+ "label": "deno: cache"
12
+ }
13
+
14
+
15
+ ]
16
+ }
@@ -9,6 +9,11 @@
9
9
  },
10
10
  "parameters": {
11
11
  "type": "object"
12
+ },
13
+ "autoSearchAll": {
14
+ "type": "boolean",
15
+ "default": false,
16
+ "description": "If autoSearchAll is enabled then the resource will attempt to find all instances automatically and no input parameters are required. If it can't find anything then nothing will be returned."
12
17
  }
13
18
  },
14
19
  "required": ["core", "parameters"]
@@ -4,6 +4,12 @@
4
4
  "title": "Initialize Request Schema Data",
5
5
  "description": "Initialize the plugin",
6
6
  "type": "object",
7
- "properties": {},
7
+ "properties": {
8
+ "verbosityLevel": {
9
+ "type": "number",
10
+ "default": 0,
11
+ "description": "Initializes the plugin to return logs at a specified verbosity level with 0 being the lowest"
12
+ }
13
+ },
8
14
  "additionalProperties": false
9
15
  }
@@ -121,6 +121,7 @@ export interface MatchResponseData {
121
121
  export interface ImportRequestData {
122
122
  core: ResourceConfig;
123
123
  parameters: Record<string, unknown>;
124
+ autoSearchAll?: boolean;
124
125
  }
125
126
  export interface ImportResponseData {
126
127
  request: ResourceJson;
@@ -146,6 +147,7 @@ export interface ResourceDefinition {
146
147
  dependencies: string[];
147
148
  }
148
149
  export interface InitializeRequestData {
150
+ verbosityLevel?: number;
149
151
  }
150
152
  export interface InitializeResponseData {
151
153
  resourceDefinitions: Array<ResourceDefinition>;
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/types/index.ts"],"names":[],"mappings":"AAsBA,MAAM,CAAN,IAAY,aAGX;AAHD,WAAY,aAAa;IACvB,oCAAmB,CAAA;IACnB,gCAAe,CAAA;AACjB,CAAC,EAHW,aAAa,KAAb,aAAa,QAGxB;AA6CD,MAAM,CAAN,IAAY,iBAMX;AAND,WAAY,iBAAiB;IAC3B,sCAAiB,CAAA;IACjB,wCAAmB,CAAA;IACnB,sCAAiB,CAAA;IACjB,0CAAqB,CAAA;IACrB,kCAAa,CAAA;AACf,CAAC,EANW,iBAAiB,KAAjB,iBAAiB,QAM5B;AAED,MAAM,CAAN,IAAY,kBAKX;AALD,WAAY,kBAAkB;IAC5B,iCAAW,CAAA;IACX,uCAAiB,CAAA;IACjB,uCAAiB,CAAA;IACjB,mCAAa,CAAA;AACf,CAAC,EALW,kBAAkB,KAAlB,kBAAkB,QAK7B;AAoGD,MAAM,CAAN,IAAY,WAGX;AAHD,WAAY,WAAW;IACrB,kCAAmB,CAAA;IACnB,8BAAe,CAAA;AACjB,CAAC,EAHW,WAAW,KAAX,WAAW,QAGtB"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/types/index.ts"],"names":[],"mappings":"AAsBA,MAAM,CAAN,IAAY,aAGX;AAHD,WAAY,aAAa;IACvB,oCAAmB,CAAA;IACnB,gCAAe,CAAA;AACjB,CAAC,EAHW,aAAa,KAAb,aAAa,QAGxB;AA6CD,MAAM,CAAN,IAAY,iBAMX;AAND,WAAY,iBAAiB;IAC3B,sCAAiB,CAAA;IACjB,wCAAmB,CAAA;IACnB,sCAAiB,CAAA;IACjB,0CAAqB,CAAA;IACrB,kCAAa,CAAA;AACf,CAAC,EANW,iBAAiB,KAAjB,iBAAiB,QAM5B;AAED,MAAM,CAAN,IAAY,kBAKX;AALD,WAAY,kBAAkB;IAC5B,iCAAW,CAAA;IACX,uCAAiB,CAAA;IACjB,uCAAiB,CAAA;IACjB,mCAAa,CAAA;AACf,CAAC,EALW,kBAAkB,KAAlB,kBAAkB,QAK7B;AAuGD,MAAM,CAAN,IAAY,WAGX;AAHD,WAAY,WAAW;IACrB,kCAAmB,CAAA;IACnB,8BAAe,CAAA;AACjB,CAAC,EAHW,WAAW,KAAX,WAAW,QAGtB"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codify-schemas",
3
- "version": "1.0.73",
3
+ "version": "1.0.74",
4
4
  "description": "",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -9,6 +9,11 @@
9
9
  },
10
10
  "parameters": {
11
11
  "type": "object"
12
+ },
13
+ "autoSearchAll": {
14
+ "type": "boolean",
15
+ "default": false,
16
+ "description": "If autoSearchAll is enabled then the resource will attempt to find all instances automatically and no input parameters are required. If it can't find anything then nothing will be returned."
12
17
  }
13
18
  },
14
19
  "required": ["core", "parameters"]
@@ -4,6 +4,12 @@
4
4
  "title": "Initialize Request Schema Data",
5
5
  "description": "Initialize the plugin",
6
6
  "type": "object",
7
- "properties": {},
7
+ "properties": {
8
+ "verbosityLevel": {
9
+ "type": "number",
10
+ "default": 0,
11
+ "description": "Initializes the plugin to return logs at a specified verbosity level with 0 being the lowest"
12
+ }
13
+ },
8
14
  "additionalProperties": false
9
15
  }
@@ -111,6 +111,11 @@
111
111
  "type": "boolean",
112
112
  "description": "Whether or not to prepend to the path."
113
113
  },
114
+ "declarationsOnly": {
115
+ "type": "boolean",
116
+ "default": false,
117
+ "description": "Only plan and manage explicitly declared paths found in shell startup scripts. This value is forced to true for stateful mode"
118
+ },
114
119
  "name": {
115
120
  "description": "Optional name. Useful for specifying multiple resources of the same type",
116
121
  "type": "string",
@@ -139,7 +144,7 @@
139
144
  "properties": {
140
145
  "alias": {
141
146
  "type": "string",
142
- "pattern": "^[^ \t\n/$`=|&;()<>'\"]*$",
147
+ "pattern": "^[^ \t\n/\\$`=|&;()<>'\"]*$",
143
148
  "description": "The name of the alias"
144
149
  },
145
150
  "value": {
@@ -808,19 +813,6 @@
808
813
  "type": "string"
809
814
  }
810
815
  },
811
- "oneOf": [
812
- {
813
- "required": [
814
- "plugin",
815
- "versions"
816
- ]
817
- },
818
- {
819
- "required": [
820
- "directory"
821
- ]
822
- }
823
- ],
824
816
  "additionalProperties": false,
825
817
  "required": [
826
818
  "type"
@@ -140,6 +140,7 @@ export interface MatchResponseData {
140
140
  export interface ImportRequestData {
141
141
  core: ResourceConfig;
142
142
  parameters: Record<string, unknown>;
143
+ autoSearchAll?: boolean;
143
144
  }
144
145
 
145
146
  export interface ImportResponseData {
@@ -168,7 +169,9 @@ export interface ResourceDefinition {
168
169
  dependencies: string[];
169
170
  }
170
171
 
171
- export interface InitializeRequestData {}
172
+ export interface InitializeRequestData {
173
+ verbosityLevel?: number;
174
+ }
172
175
 
173
176
  export interface InitializeResponseData {
174
177
  resourceDefinitions: Array<ResourceDefinition>;