codify-schemas 1.0.81 → 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/apply-request-data-schema.json +4 -0
- package/dist/messages/get-resource-info-response-data-schema.json +6 -0
- package/dist/messages/initialize-response-data-schema.json +6 -0
- package/dist/messages/plan-response-data-schema.json +4 -0
- package/dist/types/index.d.ts +4 -0
- package/dist/types/index.js.map +1 -1
- package/package.json +1 -1
- package/src/messages/apply-request-data-schema.json +4 -0
- package/src/messages/apply-request-data-schema.test.ts +1 -0
- package/src/messages/get-resource-info-response-data-schema.json +6 -0
- package/src/messages/initialize-response-data-schema.json +6 -0
- package/src/messages/plan-response-data-schema.json +4 -0
- package/src/messages/plan-response-data-schema.test.ts +2 -1
- package/src/types/index.ts +4 -0
package/dist/types/index.d.ts
CHANGED
|
@@ -80,6 +80,7 @@ export interface PlanResponseData {
|
|
|
80
80
|
operation: ParameterOperation;
|
|
81
81
|
previousValue: unknown | null;
|
|
82
82
|
newValue: unknown | null;
|
|
83
|
+
isSensitive?: boolean;
|
|
83
84
|
}>;
|
|
84
85
|
}
|
|
85
86
|
export interface GetResourceInfoRequestData {
|
|
@@ -96,6 +97,7 @@ export interface GetResourceInfoResponseData {
|
|
|
96
97
|
import?: {
|
|
97
98
|
requiredParameters: string[] | null;
|
|
98
99
|
};
|
|
100
|
+
operatingSystems?: 'Darwin' | 'Linux' | 'Windows_NT';
|
|
99
101
|
importAndDestroy?: {
|
|
100
102
|
requiredParameters: string[] | null;
|
|
101
103
|
preventImport?: boolean;
|
|
@@ -140,12 +142,14 @@ export interface ApplyRequestData {
|
|
|
140
142
|
operation: ParameterOperation;
|
|
141
143
|
newValue: unknown | null;
|
|
142
144
|
previousValue: unknown | null;
|
|
145
|
+
isSensitive?: boolean;
|
|
143
146
|
}>;
|
|
144
147
|
};
|
|
145
148
|
}
|
|
146
149
|
export interface ResourceDefinition {
|
|
147
150
|
type: string;
|
|
148
151
|
dependencies: string[];
|
|
152
|
+
operatingSystems?: 'Darwin' | 'Linux' | 'Windows_NT';
|
|
149
153
|
sensitiveParameters?: string[];
|
|
150
154
|
}
|
|
151
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
|
@@ -94,6 +94,7 @@ export interface PlanResponseData {
|
|
|
94
94
|
operation: ParameterOperation;
|
|
95
95
|
previousValue: unknown | null;
|
|
96
96
|
newValue: unknown | null;
|
|
97
|
+
isSensitive?: boolean;
|
|
97
98
|
}>
|
|
98
99
|
}
|
|
99
100
|
|
|
@@ -112,6 +113,7 @@ export interface GetResourceInfoResponseData {
|
|
|
112
113
|
import?: {
|
|
113
114
|
requiredParameters: string[] | null;
|
|
114
115
|
},
|
|
116
|
+
operatingSystems?: 'Darwin' | 'Linux' | 'Windows_NT';
|
|
115
117
|
importAndDestroy?: {
|
|
116
118
|
requiredParameters: string[] | null;
|
|
117
119
|
preventImport?: boolean;
|
|
@@ -161,6 +163,7 @@ export interface ApplyRequestData {
|
|
|
161
163
|
operation: ParameterOperation;
|
|
162
164
|
newValue: unknown | null;
|
|
163
165
|
previousValue: unknown | null;
|
|
166
|
+
isSensitive?: boolean;
|
|
164
167
|
}>
|
|
165
168
|
}
|
|
166
169
|
}
|
|
@@ -168,6 +171,7 @@ export interface ApplyRequestData {
|
|
|
168
171
|
export interface ResourceDefinition {
|
|
169
172
|
type: string;
|
|
170
173
|
dependencies: string[];
|
|
174
|
+
operatingSystems?: 'Darwin' | 'Linux' | 'Windows_NT';
|
|
171
175
|
sensitiveParameters?: string[];
|
|
172
176
|
}
|
|
173
177
|
|