@codifycli/plugin-core 1.1.0-beta3 → 1.1.0-beta4
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.
|
@@ -181,7 +181,7 @@ export interface ResourceSettings<T extends StringIndexedObject> {
|
|
|
181
181
|
* A collection of example configs used to give users an idea on how to use this specific resource. These examples
|
|
182
182
|
* don't need to be limited to just the current resource. They can include other resources as well
|
|
183
183
|
*/
|
|
184
|
-
exampleConfigs
|
|
184
|
+
exampleConfigs?: ExampleConfigs;
|
|
185
185
|
}
|
|
186
186
|
/**
|
|
187
187
|
* The type of parameter. This value is mainly used to determine a pre-set equality method for comparing the current
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codifycli/plugin-core",
|
|
3
|
-
"version": "1.1.0-
|
|
3
|
+
"version": "1.1.0-beta4",
|
|
4
4
|
"description": "TypeScript library for building Codify plugins to manage system resources (applications, CLI tools, settings) through infrastructure-as-code",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"typings": "dist/index.d.ts",
|
|
@@ -217,7 +217,7 @@ export interface ResourceSettings<T extends StringIndexedObject> {
|
|
|
217
217
|
* A collection of example configs used to give users an idea on how to use this specific resource. These examples
|
|
218
218
|
* don't need to be limited to just the current resource. They can include other resources as well
|
|
219
219
|
*/
|
|
220
|
-
exampleConfigs
|
|
220
|
+
exampleConfigs?: ExampleConfigs
|
|
221
221
|
}
|
|
222
222
|
|
|
223
223
|
/**
|