@pluv/platform-pluv 0.37.4 → 0.37.6

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.
@@ -1,5 +1,5 @@
1
1
 
2
- > @pluv/platform-pluv@0.37.4 build /home/runner/work/pluv/pluv/packages/platform-pluv
2
+ > @pluv/platform-pluv@0.37.6 build /home/runner/work/pluv/pluv/packages/platform-pluv
3
3
  > tsup src/index.ts --format esm,cjs --dts
4
4
 
5
5
  CLI Building entry: src/index.ts
@@ -9,10 +9,10 @@
9
9
  ESM Build start
10
10
  CJS Build start
11
11
  ESM dist/index.mjs 9.79 KB
12
- ESM ⚡️ Build success in 137ms
12
+ ESM ⚡️ Build success in 88ms
13
13
  CJS dist/index.js 10.68 KB
14
- CJS ⚡️ Build success in 138ms
14
+ CJS ⚡️ Build success in 88ms
15
15
  DTS Build start
16
- DTS ⚡️ Build success in 6457ms
17
- DTS dist/index.d.mts 3.54 KB
18
- DTS dist/index.d.ts 3.54 KB
16
+ DTS ⚡️ Build success in 6253ms
17
+ DTS dist/index.d.mts 3.56 KB
18
+ DTS dist/index.d.ts 3.56 KB
package/CHANGELOG.md CHANGED
@@ -1,5 +1,23 @@
1
1
  # @pluv/platform-pluv
2
2
 
3
+ ## 0.37.6
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [3a874f1]
8
+ - @pluv/io@0.37.6
9
+ - @pluv/crdt@0.37.6
10
+ - @pluv/types@0.37.6
11
+
12
+ ## 0.37.5
13
+
14
+ ### Patch Changes
15
+
16
+ - Updated dependencies [9a9ecee]
17
+ - @pluv/io@0.37.5
18
+ - @pluv/crdt@0.37.5
19
+ - @pluv/types@0.37.5
20
+
3
21
  ## 0.37.4
4
22
 
5
23
  ### Patch Changes
package/dist/index.d.mts CHANGED
@@ -85,7 +85,7 @@ declare class PluvPlatform extends AbstractPlatform<any, {}, {}, {
85
85
  initialize(config: AbstractPlatformConfig<{}>): this;
86
86
  parseData(data: string | ArrayBuffer): Record<string, any>;
87
87
  randomUUID(): string;
88
- setSerializedState(webSocket: AbstractWebSocket, state: WebSocketSerializedState): void;
88
+ setSerializedState(webSocket: AbstractWebSocket, state: WebSocketSerializedState): WebSocketSerializedState;
89
89
  validateConfig(config: any): void;
90
90
  private _webhooks;
91
91
  }
package/dist/index.d.ts CHANGED
@@ -85,7 +85,7 @@ declare class PluvPlatform extends AbstractPlatform<any, {}, {}, {
85
85
  initialize(config: AbstractPlatformConfig<{}>): this;
86
86
  parseData(data: string | ArrayBuffer): Record<string, any>;
87
87
  randomUUID(): string;
88
- setSerializedState(webSocket: AbstractWebSocket, state: WebSocketSerializedState): void;
88
+ setSerializedState(webSocket: AbstractWebSocket, state: WebSocketSerializedState): WebSocketSerializedState;
89
89
  validateConfig(config: any): void;
90
90
  private _webhooks;
91
91
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pluv/platform-pluv",
3
- "version": "0.37.4",
3
+ "version": "0.37.6",
4
4
  "description": "@pluv/io adapter for pluv.io",
5
5
  "author": "leedavidcs",
6
6
  "license": "MIT",
@@ -18,18 +18,18 @@
18
18
  },
19
19
  "dependencies": {
20
20
  "@types/node": "^22.13.9",
21
- "hono": "^4.7.2",
21
+ "hono": "^4.7.4",
22
22
  "zod": "^3.24.2",
23
- "@pluv/crdt": "^0.37.4",
24
- "@pluv/io": "^0.37.4",
25
- "@pluv/types": "^0.37.4"
23
+ "@pluv/crdt": "^0.37.6",
24
+ "@pluv/io": "^0.37.6",
25
+ "@pluv/types": "^0.37.6"
26
26
  },
27
27
  "devDependencies": {
28
28
  "eslint": "^8.57.1",
29
29
  "tsup": "^8.4.0",
30
30
  "typescript": "^5.8.2",
31
- "@pluv/tsconfig": "^0.37.4",
32
- "eslint-config-pluv": "^0.37.4"
31
+ "@pluv/tsconfig": "^0.37.6",
32
+ "eslint-config-pluv": "^0.37.6"
33
33
  },
34
34
  "scripts": {
35
35
  "build": "tsup src/index.ts --format esm,cjs --dts",
@@ -157,7 +157,7 @@ export class PluvPlatform extends AbstractPlatform<
157
157
  throw new Error("Not implemented");
158
158
  }
159
159
 
160
- public setSerializedState(webSocket: AbstractWebSocket, state: WebSocketSerializedState): void {
160
+ public setSerializedState(webSocket: AbstractWebSocket, state: WebSocketSerializedState): WebSocketSerializedState {
161
161
  throw new Error("Not implemented");
162
162
  }
163
163