codify-plugin-lib 1.0.127 → 1.0.128
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/plan/plan.js +1 -0
- package/package.json +2 -2
- package/src/plan/plan.ts +1 -0
- package/src/pty/vitest.config.ts +0 -1
- package/vitest.config.ts +0 -1
package/dist/plan/plan.js
CHANGED
|
@@ -276,6 +276,7 @@ export class Plan {
|
|
|
276
276
|
return {
|
|
277
277
|
planId: this.id,
|
|
278
278
|
operation: this.changeSet.operation,
|
|
279
|
+
statefulMode: this.statefulMode,
|
|
279
280
|
resourceName: this.coreParameters.name,
|
|
280
281
|
resourceType: this.coreParameters.type,
|
|
281
282
|
parameters: this.changeSet.parameterChanges,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "codify-plugin-lib",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.128",
|
|
4
4
|
"description": "Library plugin library",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"typings": "dist/index.d.ts",
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"dependencies": {
|
|
15
15
|
"ajv": "^8.12.0",
|
|
16
16
|
"ajv-formats": "^2.1.1",
|
|
17
|
-
"codify-schemas": "1.0.
|
|
17
|
+
"codify-schemas": "1.0.58",
|
|
18
18
|
"@npmcli/promise-spawn": "^7.0.1",
|
|
19
19
|
"@homebridge/node-pty-prebuilt-multiarch": "^0.12.0-beta.5",
|
|
20
20
|
"uuid": "^10.0.0",
|
package/src/plan/plan.ts
CHANGED
|
@@ -426,6 +426,7 @@ export class Plan<T extends StringIndexedObject> {
|
|
|
426
426
|
return {
|
|
427
427
|
planId: this.id,
|
|
428
428
|
operation: this.changeSet.operation,
|
|
429
|
+
statefulMode: this.statefulMode,
|
|
429
430
|
resourceName: this.coreParameters.name,
|
|
430
431
|
resourceType: this.coreParameters.type,
|
|
431
432
|
parameters: this.changeSet.parameterChanges,
|
package/src/pty/vitest.config.ts
CHANGED