@pluv/platform-pluv 0.37.3 → 0.37.5

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.3 build /home/runner/work/pluv/pluv/packages/platform-pluv
2
+ > @pluv/platform-pluv@0.37.5 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
@@ -8,11 +8,11 @@
8
8
  CLI Target: es6
9
9
  ESM Build start
10
10
  CJS Build start
11
- ESM dist/index.mjs 9.79 KB
12
- ESM ⚡️ Build success in 90ms
13
11
  CJS dist/index.js 10.68 KB
14
- CJS ⚡️ Build success in 103ms
12
+ CJS ⚡️ Build success in 105ms
13
+ ESM dist/index.mjs 9.79 KB
14
+ ESM ⚡️ Build success in 106ms
15
15
  DTS Build start
16
- DTS ⚡️ Build success in 6441ms
17
- DTS dist/index.d.mts 3.54 KB
18
- DTS dist/index.d.ts 3.54 KB
16
+ DTS ⚡️ Build success in 6361ms
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,22 @@
1
1
  # @pluv/platform-pluv
2
2
 
3
+ ## 0.37.5
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [9a9ecee]
8
+ - @pluv/io@0.37.5
9
+ - @pluv/crdt@0.37.5
10
+ - @pluv/types@0.37.5
11
+
12
+ ## 0.37.4
13
+
14
+ ### Patch Changes
15
+
16
+ - @pluv/crdt@0.37.4
17
+ - @pluv/io@0.37.4
18
+ - @pluv/types@0.37.4
19
+
3
20
  ## 0.37.3
4
21
 
5
22
  ### 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.3",
3
+ "version": "0.37.5",
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.3",
24
- "@pluv/io": "^0.37.3",
25
- "@pluv/types": "^0.37.3"
23
+ "@pluv/io": "^0.37.5",
24
+ "@pluv/types": "^0.37.5",
25
+ "@pluv/crdt": "^0.37.5"
26
26
  },
27
27
  "devDependencies": {
28
28
  "eslint": "^8.57.1",
29
29
  "tsup": "^8.4.0",
30
30
  "typescript": "^5.8.2",
31
- "eslint-config-pluv": "^0.37.3",
32
- "@pluv/tsconfig": "^0.37.3"
31
+ "@pluv/tsconfig": "^0.37.5",
32
+ "eslint-config-pluv": "^0.37.5"
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