codify-schemas 1.0.53 → 1.0.54
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.
|
@@ -35,6 +35,10 @@
|
|
|
35
35
|
"description": "The resource name",
|
|
36
36
|
"type": ["string", "null"]
|
|
37
37
|
},
|
|
38
|
+
"statefulMode": {
|
|
39
|
+
"description": "Boolean value indicating if this plan was stateful",
|
|
40
|
+
"type": "boolean"
|
|
41
|
+
},
|
|
38
42
|
"parameters": {
|
|
39
43
|
"description": "The properties come from the provided config and is not necessarily every parameter on the ",
|
|
40
44
|
"type": "array",
|
|
@@ -71,7 +75,7 @@
|
|
|
71
75
|
}
|
|
72
76
|
}
|
|
73
77
|
},
|
|
74
|
-
"required": ["operation", "resourceType", "parameters"]
|
|
78
|
+
"required": ["operation", "resourceType", "parameters", "statefulMode"]
|
|
75
79
|
}
|
|
76
80
|
},
|
|
77
81
|
"required": ["plan"],
|
package/dist/types/index.d.ts
CHANGED
package/dist/types/index.js.map
CHANGED
|
@@ -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;AAmCD,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;
|
|
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;AAmCD,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;AA2ED,MAAM,CAAN,IAAY,WAGX;AAHD,WAAY,WAAW;IACrB,kCAAmB,CAAA;IACnB,8BAAe,CAAA;AACjB,CAAC,EAHW,WAAW,KAAX,WAAW,QAGtB"}
|
package/package.json
CHANGED
|
@@ -35,6 +35,10 @@
|
|
|
35
35
|
"description": "The resource name",
|
|
36
36
|
"type": ["string", "null"]
|
|
37
37
|
},
|
|
38
|
+
"statefulMode": {
|
|
39
|
+
"description": "Boolean value indicating if this plan was stateful",
|
|
40
|
+
"type": "boolean"
|
|
41
|
+
},
|
|
38
42
|
"parameters": {
|
|
39
43
|
"description": "The properties come from the provided config and is not necessarily every parameter on the ",
|
|
40
44
|
"type": "array",
|
|
@@ -71,7 +75,7 @@
|
|
|
71
75
|
}
|
|
72
76
|
}
|
|
73
77
|
},
|
|
74
|
-
"required": ["operation", "resourceType", "parameters"]
|
|
78
|
+
"required": ["operation", "resourceType", "parameters", "statefulMode"]
|
|
75
79
|
}
|
|
76
80
|
},
|
|
77
81
|
"required": ["plan"],
|
package/src/types/index.ts
CHANGED