codify-schemas 1.0.83 → 1.0.84
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/messages/get-resource-info-response-data-schema.json +6 -0
- package/dist/messages/initialize-response-data-schema.json +6 -0
- package/dist/types/index.d.ts +2 -0
- package/dist/types/index.js.map +1 -1
- package/package.json +1 -1
- package/src/messages/get-resource-info-response-data-schema.json +6 -0
- package/src/messages/initialize-response-data-schema.json +6 -0
- package/src/types/index.ts +2 -0
package/dist/types/index.d.ts
CHANGED
|
@@ -97,6 +97,7 @@ export interface GetResourceInfoResponseData {
|
|
|
97
97
|
import?: {
|
|
98
98
|
requiredParameters: string[] | null;
|
|
99
99
|
};
|
|
100
|
+
operatingSystems?: 'Darwin' | 'Linux' | 'Windows_NT';
|
|
100
101
|
importAndDestroy?: {
|
|
101
102
|
requiredParameters: string[] | null;
|
|
102
103
|
preventImport?: boolean;
|
|
@@ -148,6 +149,7 @@ export interface ApplyRequestData {
|
|
|
148
149
|
export interface ResourceDefinition {
|
|
149
150
|
type: string;
|
|
150
151
|
dependencies: string[];
|
|
152
|
+
operatingSystems?: 'Darwin' | 'Linux' | 'Windows_NT';
|
|
151
153
|
sensitiveParameters?: string[];
|
|
152
154
|
}
|
|
153
155
|
export interface InitializeRequestData {
|
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;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;
|
|
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;AAwHD,MAAM,CAAN,IAAY,WAGX;AAHD,WAAY,WAAW;IACrB,kCAAmB,CAAA;IACnB,8BAAe,CAAA;AACjB,CAAC,EAHW,WAAW,KAAX,WAAW,QAGtB"}
|
package/package.json
CHANGED
package/src/types/index.ts
CHANGED
|
@@ -113,6 +113,7 @@ export interface GetResourceInfoResponseData {
|
|
|
113
113
|
import?: {
|
|
114
114
|
requiredParameters: string[] | null;
|
|
115
115
|
},
|
|
116
|
+
operatingSystems?: 'Darwin' | 'Linux' | 'Windows_NT';
|
|
116
117
|
importAndDestroy?: {
|
|
117
118
|
requiredParameters: string[] | null;
|
|
118
119
|
preventImport?: boolean;
|
|
@@ -170,6 +171,7 @@ export interface ApplyRequestData {
|
|
|
170
171
|
export interface ResourceDefinition {
|
|
171
172
|
type: string;
|
|
172
173
|
dependencies: string[];
|
|
174
|
+
operatingSystems?: 'Darwin' | 'Linux' | 'Windows_NT';
|
|
173
175
|
sensitiveParameters?: string[];
|
|
174
176
|
}
|
|
175
177
|
|