@byline/client 0.10.1 → 0.10.3

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/client.d.ts CHANGED
@@ -57,4 +57,3 @@ export declare class BylineClient {
57
57
  * Create a new Byline client instance.
58
58
  */
59
59
  export declare function createBylineClient(config: BylineClientConfig): BylineClient;
60
- //# sourceMappingURL=client.d.ts.map
package/dist/client.js CHANGED
@@ -155,4 +155,3 @@ export class BylineClient {
155
155
  export function createBylineClient(config) {
156
156
  return new BylineClient(config);
157
157
  }
158
- //# sourceMappingURL=client.js.map
@@ -179,4 +179,3 @@ export declare class CollectionHandle {
179
179
  */
180
180
  private shapeWithPopulated;
181
181
  }
182
- //# sourceMappingURL=collection-handle.d.ts.map
@@ -508,4 +508,3 @@ function trimFields(raw, select) {
508
508
  delete fields[k];
509
509
  }
510
510
  }
511
- //# sourceMappingURL=collection-handle.js.map
package/dist/index.d.ts CHANGED
@@ -9,4 +9,3 @@ export { type ChangeStatusResult, type CreateDocumentResult, type CycleRelationV
9
9
  export { BylineClient, createBylineClient } from './client.js';
10
10
  export { CollectionHandle } from './collection-handle.js';
11
11
  export type { BylineClientConfig, ClientDocument, CreateOptions, FilterOperators, FindByIdOptions, FindByPathOptions, FindOneOptions, FindOptions, FindResult, PopulatedRelation, SortDirection, SortSpec, UpdateOptions, WhereClause, WhereValue, WithPopulated, } from './types.js';
12
- //# sourceMappingURL=index.d.ts.map
package/dist/index.js CHANGED
@@ -8,4 +8,3 @@
8
8
  export { createReadContext, ERR_CONFLICT, ERR_INVALID_TRANSITION, ERR_NOT_FOUND, ERR_READ_BUDGET_EXCEEDED, ERR_VALIDATION, } from '@byline/core';
9
9
  export { BylineClient, createBylineClient } from './client.js';
10
10
  export { CollectionHandle } from './collection-handle.js';
11
- //# sourceMappingURL=index.js.map
@@ -24,4 +24,3 @@ export declare function shapeDocument<F = Record<string, any>>(raw: Record<strin
24
24
  * entries) and returns the possibly-rewritten value for scalar inputs.
25
25
  */
26
26
  export declare function shapePopulatedInPlace(value: unknown): unknown;
27
- //# sourceMappingURL=response.d.ts.map
package/dist/response.js CHANGED
@@ -77,4 +77,3 @@ export function shapePopulatedInPlace(value) {
77
77
  }
78
78
  return obj;
79
79
  }
80
- //# sourceMappingURL=response.js.map
package/dist/types.d.ts CHANGED
@@ -320,4 +320,3 @@ export interface PopulatedRelation<T> {
320
320
  export type WithPopulated<F, K extends keyof F, Target> = {
321
321
  [P in keyof F]: P extends K ? PopulatedRelation<Target> : F[P];
322
322
  };
323
- //# sourceMappingURL=types.d.ts.map
package/dist/types.js CHANGED
@@ -6,4 +6,3 @@
6
6
  * Copyright (c) Infonomic Company Limited
7
7
  */
8
8
  export {};
9
- //# sourceMappingURL=types.js.map
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@byline/client",
3
3
  "private": false,
4
4
  "license": "MPL-2.0",
5
- "version": "0.10.1",
5
+ "version": "0.10.3",
6
6
  "engines": {
7
7
  "node": ">=20.9.0"
8
8
  },
@@ -38,8 +38,8 @@
38
38
  ],
39
39
  "dependencies": {
40
40
  "npm-run-all": "^4.1.5",
41
- "@byline/auth": "0.10.1",
42
- "@byline/core": "0.10.1"
41
+ "@byline/core": "0.10.3",
42
+ "@byline/auth": "0.10.3"
43
43
  },
44
44
  "devDependencies": {
45
45
  "@biomejs/biome": "2.4.14",
@@ -51,7 +51,7 @@
51
51
  "tsx": "^4.21.0",
52
52
  "typescript": "6.0.3",
53
53
  "vitest": "^4.1.5",
54
- "@byline/db-postgres": "0.10.1"
54
+ "@byline/db-postgres": "0.10.3"
55
55
  },
56
56
  "publishConfig": {
57
57
  "access": "public",