@fabriktor/client 0.0.69 → 0.0.70

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.
@@ -4,10 +4,6 @@ export type CompletePayload<T> = T extends object ? {
4
4
  export type ExactlyOne<T extends object, K extends keyof T> = Omit<T, K> & {
5
5
  [P in K]: Required<Pick<T, P>> & Partial<Record<Exclude<K, P>, never>>;
6
6
  }[K];
7
- export type ReplaceField<T extends object, K extends keyof T, V> = Omit<T, K> & {
8
- [P in K]: V;
9
- };
10
7
  export type ReplaceOptionalField<T extends object, K extends keyof T, V> = Omit<T, K> & {
11
8
  [P in K]?: V;
12
9
  };
13
- export type OptionalField<T extends object, K extends keyof T> = Omit<T, K> & Partial<Pick<T, K>>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fabriktor/client",
3
- "version": "0.0.69",
3
+ "version": "0.0.70",
4
4
  "description": "![Fabriktor Logo](./img/fabriktor-character.gif)",
5
5
  "type": "module",
6
6
  "exports": {