codify-schemas 1.0.83 → 1.0.85

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.
@@ -22,6 +22,12 @@
22
22
  "type": "string"
23
23
  }
24
24
  },
25
+ "operatingSystems": {
26
+ "type": "array",
27
+ "items": {
28
+ "enum": ["Darwin", "Linux", "Windows_NT"]
29
+ }
30
+ },
25
31
  "import": {
26
32
  "type": "object",
27
33
  "properties": {
@@ -24,6 +24,12 @@
24
24
  "items": {
25
25
  "type": "string"
26
26
  }
27
+ },
28
+ "operatingSystems": {
29
+ "type": "array",
30
+ "items": {
31
+ "enum": ["Darwin", "Linux", "Windows_NT"]
32
+ }
27
33
  }
28
34
  },
29
35
  "required": [
@@ -97,6 +97,7 @@ export interface GetResourceInfoResponseData {
97
97
  import?: {
98
98
  requiredParameters: string[] | null;
99
99
  };
100
+ operatingSystems?: OS;
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?: OS;
151
153
  sensitiveParameters?: string[];
152
154
  }
153
155
  export interface InitializeRequestData {
@@ -175,3 +177,8 @@ export declare enum SpawnStatus {
175
177
  SUCCESS = "success",
176
178
  ERROR = "error"
177
179
  }
180
+ export declare enum OS {
181
+ Darwin = "Darwin",
182
+ Linux = "Linux",
183
+ Windows = "Windows_NT"
184
+ }
@@ -23,4 +23,10 @@ export var SpawnStatus;
23
23
  SpawnStatus["SUCCESS"] = "success";
24
24
  SpawnStatus["ERROR"] = "error";
25
25
  })(SpawnStatus || (SpawnStatus = {}));
26
+ export var OS;
27
+ (function (OS) {
28
+ OS["Darwin"] = "Darwin";
29
+ OS["Linux"] = "Linux";
30
+ OS["Windows"] = "Windows_NT";
31
+ })(OS || (OS = {}));
26
32
  //# sourceMappingURL=index.js.map
@@ -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;AAsHD,MAAM,CAAN,IAAY,WAGX;AAHD,WAAY,WAAW;IACrB,kCAAmB,CAAA;IACnB,8BAAe,CAAA;AACjB,CAAC,EAHW,WAAW,KAAX,WAAW,QAGtB"}
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;AAED,MAAM,CAAN,IAAY,EAIX;AAJD,WAAY,EAAE;IACZ,uBAAiB,CAAA;IACjB,qBAAe,CAAA;IACf,4BAAsB,CAAA;AACxB,CAAC,EAJW,EAAE,KAAF,EAAE,QAIb"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codify-schemas",
3
- "version": "1.0.83",
3
+ "version": "1.0.85",
4
4
  "description": "",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -22,6 +22,12 @@
22
22
  "type": "string"
23
23
  }
24
24
  },
25
+ "operatingSystems": {
26
+ "type": "array",
27
+ "items": {
28
+ "enum": ["Darwin", "Linux", "Windows_NT"]
29
+ }
30
+ },
25
31
  "import": {
26
32
  "type": "object",
27
33
  "properties": {
@@ -24,6 +24,12 @@
24
24
  "items": {
25
25
  "type": "string"
26
26
  }
27
+ },
28
+ "operatingSystems": {
29
+ "type": "array",
30
+ "items": {
31
+ "enum": ["Darwin", "Linux", "Windows_NT"]
32
+ }
27
33
  }
28
34
  },
29
35
  "required": [
@@ -113,6 +113,7 @@ export interface GetResourceInfoResponseData {
113
113
  import?: {
114
114
  requiredParameters: string[] | null;
115
115
  },
116
+ operatingSystems?: OS;
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?: OS;
173
175
  sensitiveParameters?: string[];
174
176
  }
175
177
 
@@ -203,3 +205,9 @@ export enum SpawnStatus {
203
205
  SUCCESS = 'success',
204
206
  ERROR = 'error',
205
207
  }
208
+
209
+ export enum OS {
210
+ Darwin = 'Darwin',
211
+ Linux = 'Linux',
212
+ Windows = 'Windows_NT',
213
+ }