socket.io-client
Advanced tools
Comparing version 4.7.2 to 4.7.3
@@ -17,3 +17,2 @@ import { Manager, ManagerOptions } from "./manager.js"; | ||
declare function lookup(uri: string, opts?: Partial<ManagerOptions & SocketOptions>): Socket; | ||
declare function lookup(uri: string | Partial<ManagerOptions & SocketOptions>, opts?: Partial<ManagerOptions & SocketOptions>): Socket; | ||
/** | ||
@@ -20,0 +19,0 @@ * Protocol version. |
{ | ||
"name": "socket.io-client", | ||
"version": "4.4.0", | ||
"type": "module" | ||
} |
@@ -87,3 +87,3 @@ import { Packet } from "socket.io-parser"; | ||
/** | ||
* A unique identifier for the session. | ||
* A unique identifier for the session. `undefined` when the socket is not connected. | ||
* | ||
@@ -99,3 +99,3 @@ * @example | ||
*/ | ||
id: string; | ||
id: string | undefined; | ||
/** | ||
@@ -102,0 +102,0 @@ * The session ID used for connection state recovery, which must not be shared (unlike {@link id}). |
@@ -17,3 +17,2 @@ import { Manager, ManagerOptions } from "./manager.js"; | ||
declare function lookup(uri: string, opts?: Partial<ManagerOptions & SocketOptions>): Socket; | ||
declare function lookup(uri: string | Partial<ManagerOptions & SocketOptions>, opts?: Partial<ManagerOptions & SocketOptions>): Socket; | ||
/** | ||
@@ -20,0 +19,0 @@ * Protocol version. |
{ | ||
"name": "socket.io-client", | ||
"version": "4.4.0", | ||
"type": "module" | ||
} |
@@ -87,3 +87,3 @@ import { Packet } from "socket.io-parser"; | ||
/** | ||
* A unique identifier for the session. | ||
* A unique identifier for the session. `undefined` when the socket is not connected. | ||
* | ||
@@ -99,3 +99,3 @@ * @example | ||
*/ | ||
id: string; | ||
id: string | undefined; | ||
/** | ||
@@ -102,0 +102,0 @@ * The session ID used for connection state recovery, which must not be shared (unlike {@link id}). |
/*! | ||
* Socket.IO v4.7.2 | ||
* (c) 2014-2023 Guillermo Rauch | ||
* Socket.IO v4.7.3 | ||
* (c) 2014-2024 Guillermo Rauch | ||
* Released under the MIT License. | ||
@@ -5,0 +5,0 @@ */ |
/*! | ||
* Socket.IO v4.7.2 | ||
* (c) 2014-2023 Guillermo Rauch | ||
* Socket.IO v4.7.3 | ||
* (c) 2014-2024 Guillermo Rauch | ||
* Released under the MIT License. | ||
@@ -5,0 +5,0 @@ */ |
/*! | ||
* Socket.IO v4.7.2 | ||
* (c) 2014-2023 Guillermo Rauch | ||
* Socket.IO v4.7.3 | ||
* (c) 2014-2024 Guillermo Rauch | ||
* Released under the MIT License. | ||
@@ -5,0 +5,0 @@ */ |
{ | ||
"name": "socket.io-client", | ||
"version": "4.7.2", | ||
"version": "4.7.3", | ||
"description": "Realtime application framework client", | ||
@@ -25,12 +25,21 @@ "keywords": [ | ||
".": { | ||
"types": "./build/esm/index.d.ts", | ||
"import": { | ||
"types": "./build/esm/index.d.ts", | ||
"node": "./build/esm-debug/index.js", | ||
"default": "./build/esm/index.js" | ||
}, | ||
"require": "./build/cjs/index.js" | ||
"require": { | ||
"types": "./build/cjs/index.d.ts", | ||
"default": "./build/cjs/index.js" | ||
} | ||
}, | ||
"./debug": { | ||
"import": "./build/esm-debug/index.js", | ||
"require": "./build/cjs/index.js" | ||
"import": { | ||
"types": "./build/esm/index.d.ts", | ||
"default": "./build/esm-debug/index.js" | ||
}, | ||
"require": { | ||
"types": "./build/cjs/index.d.ts", | ||
"default": "./build/cjs/index.js" | ||
} | ||
} | ||
@@ -37,0 +46,0 @@ }, |
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
1312317
55
12002