codify-schemas 1.0.50 → 1.0.51

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.
@@ -81,7 +81,7 @@ export interface ImportRequestData {
81
81
  }
82
82
  export interface ImportResponseData {
83
83
  request: ResourceConfig;
84
- result: ResourceConfig;
84
+ result: ResourceConfig[];
85
85
  }
86
86
  export interface ApplyRequestData {
87
87
  planId?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codify-schemas",
3
- "version": "1.0.50",
3
+ "version": "1.0.51",
4
4
  "description": "",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -96,7 +96,7 @@ export interface ImportRequestData {
96
96
 
97
97
  export interface ImportResponseData {
98
98
  request: ResourceConfig;
99
- result: ResourceConfig;
99
+ result: ResourceConfig[];
100
100
  }
101
101
 
102
102
  export interface ApplyRequestData {