@moltzap/protocol 2026.502.0 → 2026.503.0
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/helpers.d.ts +9 -3
- package/dist/helpers.d.ts.map +1 -1
- package/dist/helpers.js +39 -2
- package/dist/helpers.js.map +1 -1
- package/dist/rpc-registry.d.ts +93 -31
- package/dist/rpc-registry.d.ts.map +1 -1
- package/dist/schema/apps.d.ts +12 -4
- package/dist/schema/apps.d.ts.map +1 -1
- package/dist/schema/contacts.d.ts +6 -2
- package/dist/schema/contacts.d.ts.map +1 -1
- package/dist/schema/conversations.d.ts +21 -7
- package/dist/schema/conversations.d.ts.map +1 -1
- package/dist/schema/delivery.d.ts +6 -2
- package/dist/schema/delivery.d.ts.map +1 -1
- package/dist/schema/events.d.ts +24 -8
- package/dist/schema/events.d.ts.map +1 -1
- package/dist/schema/identity.d.ts +12 -4
- package/dist/schema/identity.d.ts.map +1 -1
- package/dist/schema/invites.d.ts +12 -4
- package/dist/schema/invites.d.ts.map +1 -1
- package/dist/schema/methods/apps.d.ts +21 -7
- package/dist/schema/methods/apps.d.ts.map +1 -1
- package/dist/schema/methods/auth.d.ts +36 -12
- package/dist/schema/methods/auth.d.ts.map +1 -1
- package/dist/schema/methods/contacts.d.ts +12 -4
- package/dist/schema/methods/contacts.d.ts.map +1 -1
- package/dist/schema/methods/conversations.d.ts +33 -11
- package/dist/schema/methods/conversations.d.ts.map +1 -1
- package/dist/schema/methods/presence.d.ts +6 -2
- package/dist/schema/methods/presence.d.ts.map +1 -1
- package/dist/schema/methods/push.d.ts +3 -1
- package/dist/schema/methods/push.d.ts.map +1 -1
- package/dist/schema/presence.d.ts +6 -2
- package/dist/schema/presence.d.ts.map +1 -1
- package/dist/validators.d.ts +9 -9
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/package.json +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"push.d.ts","sourceRoot":"","sources":["../../../src/schema/methods/push.ts"],"names":[],"mappings":"AAAA,OAAO,EAAQ,KAAK,MAAM,EAAE,MAAM,mBAAmB,CAAC;AAItD,eAAO,MAAM,YAAY
|
|
1
|
+
{"version":3,"file":"push.d.ts","sourceRoot":"","sources":["../../../src/schema/methods/push.ts"],"names":[],"mappings":"AAAA,OAAO,EAAQ,KAAK,MAAM,EAAE,MAAM,mBAAmB,CAAC;AAItD,eAAO,MAAM,YAAY;;;;;4CAUvB,CAAC;AAEH,eAAO,MAAM,cAAc;;4CASzB,CAAC;AAEH;;;GAGG;AACH,eAAO,MAAM,qBAAqB;;;;EAOjC,CAAC;AAIF,MAAM,MAAM,eAAe,GAAG,MAAM,CAAC,OAAO,qBAAqB,CAAC,CAAC"}
|
|
@@ -1,8 +1,12 @@
|
|
|
1
1
|
import { type Static } from "@sinclair/typebox";
|
|
2
|
-
export declare const PresenceStatusEnum: import("@sinclair/typebox").
|
|
2
|
+
export declare const PresenceStatusEnum: import("@sinclair/typebox").TString & {
|
|
3
|
+
static: "online" | "offline" | "away";
|
|
4
|
+
};
|
|
3
5
|
export declare const PresenceEntrySchema: import("@sinclair/typebox").TObject<{
|
|
4
6
|
agentId: import("@sinclair/typebox").TString;
|
|
5
|
-
status: import("@sinclair/typebox").
|
|
7
|
+
status: import("@sinclair/typebox").TString & {
|
|
8
|
+
static: "online" | "offline" | "away";
|
|
9
|
+
};
|
|
6
10
|
}>;
|
|
7
11
|
export type PresenceEntry = Static<typeof PresenceEntrySchema>;
|
|
8
12
|
//# sourceMappingURL=presence.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"presence.d.ts","sourceRoot":"","sources":["../../src/schema/presence.ts"],"names":[],"mappings":"AAAA,OAAO,EAAQ,KAAK,MAAM,EAAE,MAAM,mBAAmB,CAAC;AAItD,eAAO,MAAM,kBAAkB,
|
|
1
|
+
{"version":3,"file":"presence.d.ts","sourceRoot":"","sources":["../../src/schema/presence.ts"],"names":[],"mappings":"AAAA,OAAO,EAAQ,KAAK,MAAM,EAAE,MAAM,mBAAmB,CAAC;AAItD,eAAO,MAAM,kBAAkB;;CAA4C,CAAC;AAE5E,eAAO,MAAM,mBAAmB;;;;;EAM/B,CAAC;AAEF,MAAM,MAAM,aAAa,GAAG,MAAM,CAAC,OAAO,mBAAmB,CAAC,CAAC"}
|
package/dist/validators.d.ts
CHANGED
|
@@ -6,15 +6,15 @@
|
|
|
6
6
|
*/
|
|
7
7
|
export declare const validators: {
|
|
8
8
|
readonly requestFrame: import("ajv").ValidateFunction<{
|
|
9
|
-
type: any;
|
|
10
9
|
id: any;
|
|
10
|
+
type: any;
|
|
11
11
|
jsonrpc: any;
|
|
12
12
|
direction: any;
|
|
13
13
|
method: any;
|
|
14
|
-
} & {
|
|
15
|
-
type: any;
|
|
16
14
|
} & {
|
|
17
15
|
id: any;
|
|
16
|
+
} & {
|
|
17
|
+
type: any;
|
|
18
18
|
} & {
|
|
19
19
|
jsonrpc: any;
|
|
20
20
|
} & {
|
|
@@ -23,27 +23,27 @@ export declare const validators: {
|
|
|
23
23
|
method: any;
|
|
24
24
|
}>;
|
|
25
25
|
readonly responseFrame: import("ajv").ValidateFunction<{
|
|
26
|
-
type: any;
|
|
27
26
|
id: any;
|
|
27
|
+
type: any;
|
|
28
28
|
jsonrpc: any;
|
|
29
29
|
direction: any;
|
|
30
|
-
} & {
|
|
31
|
-
type: any;
|
|
32
30
|
} & {
|
|
33
31
|
id: any;
|
|
32
|
+
} & {
|
|
33
|
+
type: any;
|
|
34
34
|
} & {
|
|
35
35
|
jsonrpc: any;
|
|
36
36
|
} & {
|
|
37
37
|
direction: any;
|
|
38
38
|
}>;
|
|
39
39
|
readonly eventFrame: import("ajv").ValidateFunction<{
|
|
40
|
-
type: any;
|
|
41
40
|
event: any;
|
|
42
|
-
jsonrpc: any;
|
|
43
|
-
} & {
|
|
44
41
|
type: any;
|
|
42
|
+
jsonrpc: any;
|
|
45
43
|
} & {
|
|
46
44
|
event: any;
|
|
45
|
+
} & {
|
|
46
|
+
type: any;
|
|
47
47
|
} & {
|
|
48
48
|
jsonrpc: any;
|
|
49
49
|
}>;
|
package/dist/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const PROTOCOL_VERSION = "2026.
|
|
1
|
+
export declare const PROTOCOL_VERSION = "2026.503.0";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/dist/version.js
CHANGED