@expofp/data 3.6.0 → 3.6.1

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/dist/lib/ref.d.ts CHANGED
@@ -1,6 +1,6 @@
1
- export type Ref<T> = {
1
+ export interface Ref<T> {
2
2
  $ref: string;
3
3
  __type?: T;
4
- };
4
+ }
5
5
  export type RefTarget<R> = R extends Ref<infer T> ? T : never;
6
6
  //# sourceMappingURL=ref.d.ts.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@expofp/data",
3
- "version": "3.6.0",
3
+ "version": "3.6.1",
4
4
  "type": "module",
5
5
  "description": "ExpoFP SDK internal: data layer and schemas",
6
6
  "homepage": "https://developer.expofp.com/",
@@ -27,6 +27,6 @@
27
27
  ],
28
28
  "dependencies": {
29
29
  "tslib": "^2.3.0",
30
- "@expofp/debug": "3.6.0"
30
+ "@expofp/debug": "3.6.1"
31
31
  }
32
32
  }