aeria-sdk 0.0.205 → 0.0.207

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/mirror.js CHANGED
@@ -29,7 +29,7 @@ ${config.integrated
29
29
  : `declare global {
30
30
  type Collections = {
31
31
  [K in keyof MirrorDescriptions]: {
32
- item: SchemaWithId<MirrorDescriptions[K]>
32
+ item: SchemaWithId<MirrorDescriptions[K], { useObjectIds: false }>
33
33
  }
34
34
  }
35
35
  }\n`}
@@ -50,9 +50,9 @@ declare module 'aeria-sdk' {
50
50
  ? MakeEndpoint<
51
51
  TRoute,
52
52
  Method,
53
- InferProperties<RouteResponse>,
53
+ InferProperties<RouteResponse, { useObjectIds: false }>,
54
54
  RoutePayload extends {}
55
- ? PackReferences<InferProperty<RoutePayload>>
55
+ ? PackReferences<InferProperty<RoutePayload, { useObjectIds: false }>>
56
56
  : undefined
57
57
  >
58
58
  : MakeEndpoint<TRoute, Method>
package/dist/mirror.mjs CHANGED
@@ -30,7 +30,7 @@ declare type MirrorApiSchema = ${JSON.stringify(router, null, 2)}
30
30
  ${config.integrated ? "" : `declare global {
31
31
  type Collections = {
32
32
  [K in keyof MirrorDescriptions]: {
33
- item: SchemaWithId<MirrorDescriptions[K]>
33
+ item: SchemaWithId<MirrorDescriptions[K], { useObjectIds: false }>
34
34
  }
35
35
  }
36
36
  }
@@ -52,9 +52,9 @@ declare module 'aeria-sdk' {
52
52
  ? MakeEndpoint<
53
53
  TRoute,
54
54
  Method,
55
- InferProperties<RouteResponse>,
55
+ InferProperties<RouteResponse, { useObjectIds: false }>,
56
56
  RoutePayload extends {}
57
- ? PackReferences<InferProperty<RoutePayload>>
57
+ ? PackReferences<InferProperty<RoutePayload, { useObjectIds: false }>>
58
58
  : undefined
59
59
  >
60
60
  : MakeEndpoint<TRoute, Method>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aeria-sdk",
3
- "version": "0.0.205",
3
+ "version": "0.0.207",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -52,8 +52,8 @@
52
52
  "@aeriajs/types": "link:../types"
53
53
  },
54
54
  "peerDependencies": {
55
- "@aeriajs/common": "^0.0.154",
56
- "@aeriajs/types": "^0.0.132"
55
+ "@aeriajs/common": "^0.0.156",
56
+ "@aeriajs/types": "^0.0.134"
57
57
  },
58
58
  "scripts": {
59
59
  "test": "echo skipping",