@powersync/lib-services-framework 0.7.2 → 0.7.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/LICENSE +3 -3
- package/dist/codec/codecs.d.ts +6 -5
- package/dist/codec/codecs.js +4 -1
- package/dist/codec/codecs.js.map +1 -1
- package/dist/codec/parsers.d.ts +2 -2
- package/package.json +4 -3
package/LICENSE
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
# Functional Source License, Version 1.1,
|
|
1
|
+
# Functional Source License, Version 1.1, ALv2 Future License
|
|
2
2
|
|
|
3
3
|
## Abbreviation
|
|
4
4
|
|
|
5
|
-
FSL-1.1-
|
|
5
|
+
FSL-1.1-ALv2
|
|
6
6
|
|
|
7
7
|
## Notice
|
|
8
8
|
|
|
9
|
-
Copyright 2023-
|
|
9
|
+
Copyright 2023-2025 Journey Mobile, Inc.
|
|
10
10
|
|
|
11
11
|
## Terms and Conditions
|
|
12
12
|
|
package/dist/codec/codecs.d.ts
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import * as t from 'ts-codec';
|
|
2
2
|
import * as bson from 'bson';
|
|
3
|
+
import { DateTimeValue } from '@powersync/service-sync-rules';
|
|
3
4
|
export declare const buffer: t.Codec<Buffer<ArrayBufferLike>, string, string, t.CodecProps>;
|
|
4
|
-
export declare const date: t.Codec<Date, string, string, t.CodecProps>;
|
|
5
|
+
export declare const date: t.Codec<Date, string | DateTimeValue, string, t.CodecProps>;
|
|
5
6
|
export declare const ObjectId: t.Codec<bson.ObjectId, string, string, t.CodecProps>;
|
|
6
7
|
export declare const ResourceId: t.Codec<{
|
|
7
8
|
_id: bson.ObjectId;
|
|
@@ -9,16 +10,16 @@ export declare const ResourceId: t.Codec<{
|
|
|
9
10
|
id: string;
|
|
10
11
|
}, string, t.CodecProps>;
|
|
11
12
|
export declare const Timestamps: t.ObjectCodec<{
|
|
12
|
-
created_at: t.Codec<Date, string, string, t.CodecProps>;
|
|
13
|
-
updated_at: t.Codec<Date, string, string, t.CodecProps>;
|
|
13
|
+
created_at: t.Codec<Date, string | DateTimeValue, string, t.CodecProps>;
|
|
14
|
+
updated_at: t.Codec<Date, string | DateTimeValue, string, t.CodecProps>;
|
|
14
15
|
}>;
|
|
15
16
|
export declare const Resource: t.Intersection<t.Codec<{
|
|
16
17
|
_id: bson.ObjectId;
|
|
17
18
|
}, {
|
|
18
19
|
id: string;
|
|
19
20
|
}, string, t.CodecProps>, t.ObjectCodec<{
|
|
20
|
-
created_at: t.Codec<Date, string, string, t.CodecProps>;
|
|
21
|
-
updated_at: t.Codec<Date, string, string, t.CodecProps>;
|
|
21
|
+
created_at: t.Codec<Date, string | DateTimeValue, string, t.CodecProps>;
|
|
22
|
+
updated_at: t.Codec<Date, string | DateTimeValue, string, t.CodecProps>;
|
|
22
23
|
}>>;
|
|
23
24
|
export declare const QueryFilter: t.ObjectCodec<{
|
|
24
25
|
exists: t.IdentityCodec<t.CodecType.Boolean>;
|
package/dist/codec/codecs.js
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import * as t from 'ts-codec';
|
|
2
2
|
import * as bson from 'bson';
|
|
3
|
+
import { DateTimeValue } from '@powersync/service-sync-rules';
|
|
3
4
|
export const buffer = t.codec('Buffer', (buffer) => {
|
|
4
5
|
if (!Buffer.isBuffer(buffer)) {
|
|
5
6
|
throw new t.TransformError([`Expected buffer but got ${typeof buffer}`]);
|
|
@@ -12,7 +13,9 @@ export const date = t.codec('Date', (date) => {
|
|
|
12
13
|
}
|
|
13
14
|
return date.toISOString();
|
|
14
15
|
}, (date) => {
|
|
15
|
-
|
|
16
|
+
// In our jpgwire wrapper, we patch the row decoding logic to map timestamps into TimeValue instances, so we need to
|
|
17
|
+
// support those here.
|
|
18
|
+
const parsed = new Date(date instanceof DateTimeValue ? date.iso8601Representation : date);
|
|
16
19
|
if (isNaN(parsed.getTime())) {
|
|
17
20
|
throw new t.TransformError([`Invalid date`]);
|
|
18
21
|
}
|
package/dist/codec/codecs.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"codecs.js","sourceRoot":"","sources":["../../src/codec/codecs.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,UAAU,CAAC;AAC9B,OAAO,KAAK,IAAI,MAAM,MAAM,CAAC;
|
|
1
|
+
{"version":3,"file":"codecs.js","sourceRoot":"","sources":["../../src/codec/codecs.ts"],"names":[],"mappings":"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"}
|
package/dist/codec/parsers.d.ts
CHANGED
|
@@ -5,10 +5,10 @@ export declare const ResourceIdParser: t.Parser<string, t.Codec<{
|
|
|
5
5
|
}, {
|
|
6
6
|
id: string;
|
|
7
7
|
}, string, t.CodecProps>>;
|
|
8
|
-
export declare const DateParser: t.Parser<string, t.Codec<Date, string, string, t.CodecProps>>;
|
|
8
|
+
export declare const DateParser: t.Parser<string, t.Codec<Date, string | import("@powersync/service-sync-rules").DateTimeValue, string, t.CodecProps>>;
|
|
9
9
|
export declare const BufferParser: t.Parser<string, t.Codec<Buffer<ArrayBufferLike>, string, string, t.CodecProps>>;
|
|
10
10
|
export declare const parsers: (t.Parser<string, t.Codec<import("bson").ObjectId, string, string, t.CodecProps>> | t.Parser<string, t.Codec<{
|
|
11
11
|
_id: import("bson").ObjectId;
|
|
12
12
|
}, {
|
|
13
13
|
id: string;
|
|
14
|
-
}, string, t.CodecProps>> | t.Parser<string, t.Codec<Date, string, string, t.CodecProps>> | t.Parser<string, t.Codec<Buffer<ArrayBufferLike>, string, string, t.CodecProps>>)[];
|
|
14
|
+
}, string, t.CodecProps>> | t.Parser<string, t.Codec<Date, string | import("@powersync/service-sync-rules").DateTimeValue, string, t.CodecProps>> | t.Parser<string, t.Codec<Buffer<ArrayBufferLike>, string, string, t.CodecProps>>)[];
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@powersync/lib-services-framework",
|
|
3
3
|
"repository": "https://github.com/powersync-ja/powersync-service",
|
|
4
|
-
"version": "0.7.
|
|
4
|
+
"version": "0.7.3",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"types": "dist/index.d.ts",
|
|
8
|
-
"license": "FSL-1.1-
|
|
8
|
+
"license": "FSL-1.1-ALv2",
|
|
9
9
|
"files": [
|
|
10
10
|
"dist/**/*"
|
|
11
11
|
],
|
|
@@ -24,7 +24,8 @@
|
|
|
24
24
|
"uuid": "^11.1.0",
|
|
25
25
|
"winston": "^3.13.0",
|
|
26
26
|
"zod": "^3.23.8",
|
|
27
|
-
"@powersync/service-errors": "0.3.
|
|
27
|
+
"@powersync/service-errors": "0.3.4",
|
|
28
|
+
"@powersync/service-sync-rules": "0.29.0"
|
|
28
29
|
},
|
|
29
30
|
"devDependencies": {
|
|
30
31
|
"@types/lodash": "^4.17.5",
|