fets 0.4.13 → 0.4.14-alpha-20230908142233-e62ffa2

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fets",
3
- "version": "0.4.13",
3
+ "version": "0.4.14-alpha-20230908142233-e62ffa2",
4
4
  "description": "TypeScript HTTP Framework focusing on e2e type-safety, easy setup, performance & great developer experience",
5
5
  "sideEffects": false,
6
6
  "dependencies": {
@@ -131,7 +131,7 @@ type FixMissingTypeObject<T> = T extends {
131
131
  type FixMissingAdditionalProperties<T> = T extends {
132
132
  type: 'object';
133
133
  properties: any;
134
- } ? T & {
134
+ } ? Omit<T, 'additionalProperties'> & {
135
135
  additionalProperties: false;
136
136
  } : T;
137
137
  type FixExtraRequiredFields<T> = T extends {
@@ -131,7 +131,7 @@ type FixMissingTypeObject<T> = T extends {
131
131
  type FixMissingAdditionalProperties<T> = T extends {
132
132
  type: 'object';
133
133
  properties: any;
134
- } ? T & {
134
+ } ? Omit<T, 'additionalProperties'> & {
135
135
  additionalProperties: false;
136
136
  } : T;
137
137
  type FixExtraRequiredFields<T> = T extends {