codify-schemas 1.0.72 → 1.0.73

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.
@@ -16,6 +16,5 @@
16
16
  },
17
17
  "required": ["core", "parameters"]
18
18
  }
19
- },
20
- "required": ["match"]
19
+ }
21
20
  }
@@ -113,7 +113,7 @@ export interface MatchRequestData {
113
113
  }>;
114
114
  }
115
115
  export interface MatchResponseData {
116
- match: {
116
+ match?: {
117
117
  core: ResourceConfig;
118
118
  parameters: Record<string, unknown>;
119
119
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codify-schemas",
3
- "version": "1.0.72",
3
+ "version": "1.0.73",
4
4
  "description": "",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -16,6 +16,5 @@
16
16
  },
17
17
  "required": ["core", "parameters"]
18
18
  }
19
- },
20
- "required": ["match"]
19
+ }
21
20
  }
@@ -131,7 +131,7 @@ export interface MatchRequestData {
131
131
  }
132
132
 
133
133
  export interface MatchResponseData {
134
- match: {
134
+ match?: {
135
135
  core: ResourceConfig;
136
136
  parameters: Record<string, unknown>;
137
137
  }