@azure/web-pubsub-client-protobuf 1.0.0-alpha.20250618.1 → 1.0.0-alpha.20250718.1
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/browser/webPubSubProtobufProtocol.js +8 -10
- package/dist/browser/webPubSubProtobufProtocol.js.map +1 -1
- package/dist/browser/webPubSubProtobufReliableProtocol.js +8 -10
- package/dist/browser/webPubSubProtobufReliableProtocol.js.map +1 -1
- package/dist/commonjs/tsdoc-metadata.json +11 -11
- package/dist/commonjs/webPubSubProtobufProtocol.js +8 -10
- package/dist/commonjs/webPubSubProtobufProtocol.js.map +1 -1
- package/dist/commonjs/webPubSubProtobufReliableProtocol.js +8 -10
- package/dist/commonjs/webPubSubProtobufReliableProtocol.js.map +1 -1
- package/dist/esm/webPubSubProtobufProtocol.js +8 -10
- package/dist/esm/webPubSubProtobufProtocol.js.map +1 -1
- package/dist/esm/webPubSubProtobufReliableProtocol.js +8 -10
- package/dist/esm/webPubSubProtobufReliableProtocol.js.map +1 -1
- package/dist/react-native/webPubSubProtobufProtocol.js +8 -10
- package/dist/react-native/webPubSubProtobufProtocol.js.map +1 -1
- package/dist/react-native/webPubSubProtobufReliableProtocol.js +8 -10
- package/dist/react-native/webPubSubProtobufReliableProtocol.js.map +1 -1
- package/package.json +2 -2
|
@@ -5,16 +5,14 @@ import { WebPubSubProtobufProtocolBase } from "./webPubSubProtobufProtocolBase.j
|
|
|
5
5
|
* The "protobuf.reliable.webpubsub.azure.v1" protocol
|
|
6
6
|
*/
|
|
7
7
|
export class WebPubSubProtobufProtocolImpl {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
this.name = "protobuf.webpubsub.azure.v1";
|
|
17
|
-
}
|
|
8
|
+
/**
|
|
9
|
+
* True if the protocol supports reliable features
|
|
10
|
+
*/
|
|
11
|
+
isReliableSubProtocol = false;
|
|
12
|
+
/**
|
|
13
|
+
* The name of subprotocol. Name will be used in websocket subprotocol
|
|
14
|
+
*/
|
|
15
|
+
name = "protobuf.webpubsub.azure.v1";
|
|
18
16
|
/**
|
|
19
17
|
* Creates WebPubSubMessage objects from the specified serialized representation.
|
|
20
18
|
* @param input - The serialized representation
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"webPubSubProtobufProtocol.js","sourceRoot":"","sources":["../../src/webPubSubProtobufProtocol.ts"],"names":[],"mappings":"AAAA,uCAAuC;AACvC,kCAAkC;AAGlC,OAAO,EAAE,6BAA6B,EAAE,MAAM,oCAAoC,CAAC;AAEnF;;GAEG;AACH,MAAM,OAAO,6BAA6B;
|
|
1
|
+
{"version":3,"file":"webPubSubProtobufProtocol.js","sourceRoot":"","sources":["../../src/webPubSubProtobufProtocol.ts"],"names":[],"mappings":"AAAA,uCAAuC;AACvC,kCAAkC;AAGlC,OAAO,EAAE,6BAA6B,EAAE,MAAM,oCAAoC,CAAC;AAEnF;;GAEG;AACH,MAAM,OAAO,6BAA6B;IACxC;;OAEG;IACa,qBAAqB,GAAG,KAAK,CAAC;IAE9C;;OAEG;IACa,IAAI,GAAG,6BAA6B,CAAC;IAErD;;;OAGG;IACI,aAAa,CAAC,KAAkB;QACrC,OAAO,6BAA6B,CAAC,aAAa,CAAC,KAAK,CAAC,CAAC;IAC5D,CAAC;IAED;;;OAGG;IACI,YAAY,CAAC,OAAyB;QAC3C,OAAO,6BAA6B,CAAC,YAAY,CAAC,OAAO,CAAC,CAAC;IAC7D,CAAC;CACF","sourcesContent":["// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n\nimport type { WebPubSubMessage, WebPubSubClientProtocol } from \"@azure/web-pubsub-client\";\nimport { WebPubSubProtobufProtocolBase } from \"./webPubSubProtobufProtocolBase.js\";\n\n/**\n * The \"protobuf.reliable.webpubsub.azure.v1\" protocol\n */\nexport class WebPubSubProtobufProtocolImpl implements WebPubSubClientProtocol {\n /**\n * True if the protocol supports reliable features\n */\n public readonly isReliableSubProtocol = false;\n\n /**\n * The name of subprotocol. Name will be used in websocket subprotocol\n */\n public readonly name = \"protobuf.webpubsub.azure.v1\";\n\n /**\n * Creates WebPubSubMessage objects from the specified serialized representation.\n * @param input - The serialized representation\n */\n public parseMessages(input: ArrayBuffer): WebPubSubMessage | null {\n return WebPubSubProtobufProtocolBase.parseMessages(input);\n }\n\n /**\n * Write WebPubSubMessage to string\n * @param message - The message to be written\n */\n public writeMessage(message: WebPubSubMessage): ArrayBuffer {\n return WebPubSubProtobufProtocolBase.writeMessage(message);\n }\n}\n"]}
|
|
@@ -5,16 +5,14 @@ import { WebPubSubProtobufProtocolBase } from "./webPubSubProtobufProtocolBase.j
|
|
|
5
5
|
* The "protobuf.reliable.webpubsub.azure.v1" protocol
|
|
6
6
|
*/
|
|
7
7
|
export class WebPubSubProtobufReliableProtocolImpl {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
this.name = "protobuf.reliable.webpubsub.azure.v1";
|
|
17
|
-
}
|
|
8
|
+
/**
|
|
9
|
+
* True if the protocol supports reliable features
|
|
10
|
+
*/
|
|
11
|
+
isReliableSubProtocol = true;
|
|
12
|
+
/**
|
|
13
|
+
* The name of subprotocol. Name will be used in websocket subprotocol
|
|
14
|
+
*/
|
|
15
|
+
name = "protobuf.reliable.webpubsub.azure.v1";
|
|
18
16
|
/**
|
|
19
17
|
* Creates WebPubSubMessage objects from the specified serialized representation.
|
|
20
18
|
* @param input - The serialized representation
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"webPubSubProtobufReliableProtocol.js","sourceRoot":"","sources":["../../src/webPubSubProtobufReliableProtocol.ts"],"names":[],"mappings":"AAAA,uCAAuC;AACvC,kCAAkC;AAGlC,OAAO,EAAE,6BAA6B,EAAE,MAAM,oCAAoC,CAAC;AAEnF;;GAEG;AACH,MAAM,OAAO,qCAAqC;
|
|
1
|
+
{"version":3,"file":"webPubSubProtobufReliableProtocol.js","sourceRoot":"","sources":["../../src/webPubSubProtobufReliableProtocol.ts"],"names":[],"mappings":"AAAA,uCAAuC;AACvC,kCAAkC;AAGlC,OAAO,EAAE,6BAA6B,EAAE,MAAM,oCAAoC,CAAC;AAEnF;;GAEG;AACH,MAAM,OAAO,qCAAqC;IAChD;;OAEG;IACa,qBAAqB,GAAG,IAAI,CAAC;IAE7C;;OAEG;IACa,IAAI,GAAG,sCAAsC,CAAC;IAE9D;;;OAGG;IACI,aAAa,CAAC,KAAkB;QACrC,OAAO,6BAA6B,CAAC,aAAa,CAAC,KAAK,CAAC,CAAC;IAC5D,CAAC;IAED;;;OAGG;IACI,YAAY,CAAC,OAAyB;QAC3C,OAAO,6BAA6B,CAAC,YAAY,CAAC,OAAO,CAAC,CAAC;IAC7D,CAAC;CACF","sourcesContent":["// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n\nimport type { WebPubSubMessage, WebPubSubClientProtocol } from \"@azure/web-pubsub-client\";\nimport { WebPubSubProtobufProtocolBase } from \"./webPubSubProtobufProtocolBase.js\";\n\n/**\n * The \"protobuf.reliable.webpubsub.azure.v1\" protocol\n */\nexport class WebPubSubProtobufReliableProtocolImpl implements WebPubSubClientProtocol {\n /**\n * True if the protocol supports reliable features\n */\n public readonly isReliableSubProtocol = true;\n\n /**\n * The name of subprotocol. Name will be used in websocket subprotocol\n */\n public readonly name = \"protobuf.reliable.webpubsub.azure.v1\";\n\n /**\n * Creates WebPubSubMessage objects from the specified serialized representation.\n * @param input - The serialized representation\n */\n public parseMessages(input: ArrayBuffer): WebPubSubMessage | null {\n return WebPubSubProtobufProtocolBase.parseMessages(input);\n }\n\n /**\n * Write WebPubSubMessage to string\n * @param message - The message to be written\n */\n public writeMessage(message: WebPubSubMessage): ArrayBuffer {\n return WebPubSubProtobufProtocolBase.writeMessage(message);\n }\n}\n"]}
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
// This file is read by tools that parse documentation comments conforming to the TSDoc standard.
|
|
2
|
-
// It should be published with your NPM package. It should not be tracked by Git.
|
|
3
|
-
{
|
|
4
|
-
"tsdocVersion": "0.12",
|
|
5
|
-
"toolPackages": [
|
|
6
|
-
{
|
|
7
|
-
"packageName": "@microsoft/api-extractor",
|
|
8
|
-
"packageVersion": "7.52.8"
|
|
9
|
-
}
|
|
10
|
-
]
|
|
11
|
-
}
|
|
1
|
+
// This file is read by tools that parse documentation comments conforming to the TSDoc standard.
|
|
2
|
+
// It should be published with your NPM package. It should not be tracked by Git.
|
|
3
|
+
{
|
|
4
|
+
"tsdocVersion": "0.12",
|
|
5
|
+
"toolPackages": [
|
|
6
|
+
{
|
|
7
|
+
"packageName": "@microsoft/api-extractor",
|
|
8
|
+
"packageVersion": "7.52.8"
|
|
9
|
+
}
|
|
10
|
+
]
|
|
11
|
+
}
|
|
@@ -8,16 +8,14 @@ const webPubSubProtobufProtocolBase_js_1 = require("./webPubSubProtobufProtocolB
|
|
|
8
8
|
* The "protobuf.reliable.webpubsub.azure.v1" protocol
|
|
9
9
|
*/
|
|
10
10
|
class WebPubSubProtobufProtocolImpl {
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
this.name = "protobuf.webpubsub.azure.v1";
|
|
20
|
-
}
|
|
11
|
+
/**
|
|
12
|
+
* True if the protocol supports reliable features
|
|
13
|
+
*/
|
|
14
|
+
isReliableSubProtocol = false;
|
|
15
|
+
/**
|
|
16
|
+
* The name of subprotocol. Name will be used in websocket subprotocol
|
|
17
|
+
*/
|
|
18
|
+
name = "protobuf.webpubsub.azure.v1";
|
|
21
19
|
/**
|
|
22
20
|
* Creates WebPubSubMessage objects from the specified serialized representation.
|
|
23
21
|
* @param input - The serialized representation
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"webPubSubProtobufProtocol.js","sourceRoot":"","sources":["../../src/webPubSubProtobufProtocol.ts"],"names":[],"mappings":";AAAA,uCAAuC;AACvC,kCAAkC;;;AAGlC,yFAAmF;AAEnF;;GAEG;AACH,MAAa,6BAA6B;
|
|
1
|
+
{"version":3,"file":"webPubSubProtobufProtocol.js","sourceRoot":"","sources":["../../src/webPubSubProtobufProtocol.ts"],"names":[],"mappings":";AAAA,uCAAuC;AACvC,kCAAkC;;;AAGlC,yFAAmF;AAEnF;;GAEG;AACH,MAAa,6BAA6B;IACxC;;OAEG;IACa,qBAAqB,GAAG,KAAK,CAAC;IAE9C;;OAEG;IACa,IAAI,GAAG,6BAA6B,CAAC;IAErD;;;OAGG;IACI,aAAa,CAAC,KAAkB;QACrC,OAAO,gEAA6B,CAAC,aAAa,CAAC,KAAK,CAAC,CAAC;IAC5D,CAAC;IAED;;;OAGG;IACI,YAAY,CAAC,OAAyB;QAC3C,OAAO,gEAA6B,CAAC,YAAY,CAAC,OAAO,CAAC,CAAC;IAC7D,CAAC;CACF;AA1BD,sEA0BC","sourcesContent":["// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n\nimport type { WebPubSubMessage, WebPubSubClientProtocol } from \"@azure/web-pubsub-client\";\nimport { WebPubSubProtobufProtocolBase } from \"./webPubSubProtobufProtocolBase.js\";\n\n/**\n * The \"protobuf.reliable.webpubsub.azure.v1\" protocol\n */\nexport class WebPubSubProtobufProtocolImpl implements WebPubSubClientProtocol {\n /**\n * True if the protocol supports reliable features\n */\n public readonly isReliableSubProtocol = false;\n\n /**\n * The name of subprotocol. Name will be used in websocket subprotocol\n */\n public readonly name = \"protobuf.webpubsub.azure.v1\";\n\n /**\n * Creates WebPubSubMessage objects from the specified serialized representation.\n * @param input - The serialized representation\n */\n public parseMessages(input: ArrayBuffer): WebPubSubMessage | null {\n return WebPubSubProtobufProtocolBase.parseMessages(input);\n }\n\n /**\n * Write WebPubSubMessage to string\n * @param message - The message to be written\n */\n public writeMessage(message: WebPubSubMessage): ArrayBuffer {\n return WebPubSubProtobufProtocolBase.writeMessage(message);\n }\n}\n"]}
|
|
@@ -8,16 +8,14 @@ const webPubSubProtobufProtocolBase_js_1 = require("./webPubSubProtobufProtocolB
|
|
|
8
8
|
* The "protobuf.reliable.webpubsub.azure.v1" protocol
|
|
9
9
|
*/
|
|
10
10
|
class WebPubSubProtobufReliableProtocolImpl {
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
this.name = "protobuf.reliable.webpubsub.azure.v1";
|
|
20
|
-
}
|
|
11
|
+
/**
|
|
12
|
+
* True if the protocol supports reliable features
|
|
13
|
+
*/
|
|
14
|
+
isReliableSubProtocol = true;
|
|
15
|
+
/**
|
|
16
|
+
* The name of subprotocol. Name will be used in websocket subprotocol
|
|
17
|
+
*/
|
|
18
|
+
name = "protobuf.reliable.webpubsub.azure.v1";
|
|
21
19
|
/**
|
|
22
20
|
* Creates WebPubSubMessage objects from the specified serialized representation.
|
|
23
21
|
* @param input - The serialized representation
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"webPubSubProtobufReliableProtocol.js","sourceRoot":"","sources":["../../src/webPubSubProtobufReliableProtocol.ts"],"names":[],"mappings":";AAAA,uCAAuC;AACvC,kCAAkC;;;AAGlC,yFAAmF;AAEnF;;GAEG;AACH,MAAa,qCAAqC;
|
|
1
|
+
{"version":3,"file":"webPubSubProtobufReliableProtocol.js","sourceRoot":"","sources":["../../src/webPubSubProtobufReliableProtocol.ts"],"names":[],"mappings":";AAAA,uCAAuC;AACvC,kCAAkC;;;AAGlC,yFAAmF;AAEnF;;GAEG;AACH,MAAa,qCAAqC;IAChD;;OAEG;IACa,qBAAqB,GAAG,IAAI,CAAC;IAE7C;;OAEG;IACa,IAAI,GAAG,sCAAsC,CAAC;IAE9D;;;OAGG;IACI,aAAa,CAAC,KAAkB;QACrC,OAAO,gEAA6B,CAAC,aAAa,CAAC,KAAK,CAAC,CAAC;IAC5D,CAAC;IAED;;;OAGG;IACI,YAAY,CAAC,OAAyB;QAC3C,OAAO,gEAA6B,CAAC,YAAY,CAAC,OAAO,CAAC,CAAC;IAC7D,CAAC;CACF;AA1BD,sFA0BC","sourcesContent":["// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n\nimport type { WebPubSubMessage, WebPubSubClientProtocol } from \"@azure/web-pubsub-client\";\nimport { WebPubSubProtobufProtocolBase } from \"./webPubSubProtobufProtocolBase.js\";\n\n/**\n * The \"protobuf.reliable.webpubsub.azure.v1\" protocol\n */\nexport class WebPubSubProtobufReliableProtocolImpl implements WebPubSubClientProtocol {\n /**\n * True if the protocol supports reliable features\n */\n public readonly isReliableSubProtocol = true;\n\n /**\n * The name of subprotocol. Name will be used in websocket subprotocol\n */\n public readonly name = \"protobuf.reliable.webpubsub.azure.v1\";\n\n /**\n * Creates WebPubSubMessage objects from the specified serialized representation.\n * @param input - The serialized representation\n */\n public parseMessages(input: ArrayBuffer): WebPubSubMessage | null {\n return WebPubSubProtobufProtocolBase.parseMessages(input);\n }\n\n /**\n * Write WebPubSubMessage to string\n * @param message - The message to be written\n */\n public writeMessage(message: WebPubSubMessage): ArrayBuffer {\n return WebPubSubProtobufProtocolBase.writeMessage(message);\n }\n}\n"]}
|
|
@@ -5,16 +5,14 @@ import { WebPubSubProtobufProtocolBase } from "./webPubSubProtobufProtocolBase.j
|
|
|
5
5
|
* The "protobuf.reliable.webpubsub.azure.v1" protocol
|
|
6
6
|
*/
|
|
7
7
|
export class WebPubSubProtobufProtocolImpl {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
this.name = "protobuf.webpubsub.azure.v1";
|
|
17
|
-
}
|
|
8
|
+
/**
|
|
9
|
+
* True if the protocol supports reliable features
|
|
10
|
+
*/
|
|
11
|
+
isReliableSubProtocol = false;
|
|
12
|
+
/**
|
|
13
|
+
* The name of subprotocol. Name will be used in websocket subprotocol
|
|
14
|
+
*/
|
|
15
|
+
name = "protobuf.webpubsub.azure.v1";
|
|
18
16
|
/**
|
|
19
17
|
* Creates WebPubSubMessage objects from the specified serialized representation.
|
|
20
18
|
* @param input - The serialized representation
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"webPubSubProtobufProtocol.js","sourceRoot":"","sources":["../../src/webPubSubProtobufProtocol.ts"],"names":[],"mappings":"AAAA,uCAAuC;AACvC,kCAAkC;AAGlC,OAAO,EAAE,6BAA6B,EAAE,MAAM,oCAAoC,CAAC;AAEnF;;GAEG;AACH,MAAM,OAAO,6BAA6B;
|
|
1
|
+
{"version":3,"file":"webPubSubProtobufProtocol.js","sourceRoot":"","sources":["../../src/webPubSubProtobufProtocol.ts"],"names":[],"mappings":"AAAA,uCAAuC;AACvC,kCAAkC;AAGlC,OAAO,EAAE,6BAA6B,EAAE,MAAM,oCAAoC,CAAC;AAEnF;;GAEG;AACH,MAAM,OAAO,6BAA6B;IACxC;;OAEG;IACa,qBAAqB,GAAG,KAAK,CAAC;IAE9C;;OAEG;IACa,IAAI,GAAG,6BAA6B,CAAC;IAErD;;;OAGG;IACI,aAAa,CAAC,KAAkB;QACrC,OAAO,6BAA6B,CAAC,aAAa,CAAC,KAAK,CAAC,CAAC;IAC5D,CAAC;IAED;;;OAGG;IACI,YAAY,CAAC,OAAyB;QAC3C,OAAO,6BAA6B,CAAC,YAAY,CAAC,OAAO,CAAC,CAAC;IAC7D,CAAC;CACF","sourcesContent":["// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n\nimport type { WebPubSubMessage, WebPubSubClientProtocol } from \"@azure/web-pubsub-client\";\nimport { WebPubSubProtobufProtocolBase } from \"./webPubSubProtobufProtocolBase.js\";\n\n/**\n * The \"protobuf.reliable.webpubsub.azure.v1\" protocol\n */\nexport class WebPubSubProtobufProtocolImpl implements WebPubSubClientProtocol {\n /**\n * True if the protocol supports reliable features\n */\n public readonly isReliableSubProtocol = false;\n\n /**\n * The name of subprotocol. Name will be used in websocket subprotocol\n */\n public readonly name = \"protobuf.webpubsub.azure.v1\";\n\n /**\n * Creates WebPubSubMessage objects from the specified serialized representation.\n * @param input - The serialized representation\n */\n public parseMessages(input: ArrayBuffer): WebPubSubMessage | null {\n return WebPubSubProtobufProtocolBase.parseMessages(input);\n }\n\n /**\n * Write WebPubSubMessage to string\n * @param message - The message to be written\n */\n public writeMessage(message: WebPubSubMessage): ArrayBuffer {\n return WebPubSubProtobufProtocolBase.writeMessage(message);\n }\n}\n"]}
|
|
@@ -5,16 +5,14 @@ import { WebPubSubProtobufProtocolBase } from "./webPubSubProtobufProtocolBase.j
|
|
|
5
5
|
* The "protobuf.reliable.webpubsub.azure.v1" protocol
|
|
6
6
|
*/
|
|
7
7
|
export class WebPubSubProtobufReliableProtocolImpl {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
this.name = "protobuf.reliable.webpubsub.azure.v1";
|
|
17
|
-
}
|
|
8
|
+
/**
|
|
9
|
+
* True if the protocol supports reliable features
|
|
10
|
+
*/
|
|
11
|
+
isReliableSubProtocol = true;
|
|
12
|
+
/**
|
|
13
|
+
* The name of subprotocol. Name will be used in websocket subprotocol
|
|
14
|
+
*/
|
|
15
|
+
name = "protobuf.reliable.webpubsub.azure.v1";
|
|
18
16
|
/**
|
|
19
17
|
* Creates WebPubSubMessage objects from the specified serialized representation.
|
|
20
18
|
* @param input - The serialized representation
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"webPubSubProtobufReliableProtocol.js","sourceRoot":"","sources":["../../src/webPubSubProtobufReliableProtocol.ts"],"names":[],"mappings":"AAAA,uCAAuC;AACvC,kCAAkC;AAGlC,OAAO,EAAE,6BAA6B,EAAE,MAAM,oCAAoC,CAAC;AAEnF;;GAEG;AACH,MAAM,OAAO,qCAAqC;
|
|
1
|
+
{"version":3,"file":"webPubSubProtobufReliableProtocol.js","sourceRoot":"","sources":["../../src/webPubSubProtobufReliableProtocol.ts"],"names":[],"mappings":"AAAA,uCAAuC;AACvC,kCAAkC;AAGlC,OAAO,EAAE,6BAA6B,EAAE,MAAM,oCAAoC,CAAC;AAEnF;;GAEG;AACH,MAAM,OAAO,qCAAqC;IAChD;;OAEG;IACa,qBAAqB,GAAG,IAAI,CAAC;IAE7C;;OAEG;IACa,IAAI,GAAG,sCAAsC,CAAC;IAE9D;;;OAGG;IACI,aAAa,CAAC,KAAkB;QACrC,OAAO,6BAA6B,CAAC,aAAa,CAAC,KAAK,CAAC,CAAC;IAC5D,CAAC;IAED;;;OAGG;IACI,YAAY,CAAC,OAAyB;QAC3C,OAAO,6BAA6B,CAAC,YAAY,CAAC,OAAO,CAAC,CAAC;IAC7D,CAAC;CACF","sourcesContent":["// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n\nimport type { WebPubSubMessage, WebPubSubClientProtocol } from \"@azure/web-pubsub-client\";\nimport { WebPubSubProtobufProtocolBase } from \"./webPubSubProtobufProtocolBase.js\";\n\n/**\n * The \"protobuf.reliable.webpubsub.azure.v1\" protocol\n */\nexport class WebPubSubProtobufReliableProtocolImpl implements WebPubSubClientProtocol {\n /**\n * True if the protocol supports reliable features\n */\n public readonly isReliableSubProtocol = true;\n\n /**\n * The name of subprotocol. Name will be used in websocket subprotocol\n */\n public readonly name = \"protobuf.reliable.webpubsub.azure.v1\";\n\n /**\n * Creates WebPubSubMessage objects from the specified serialized representation.\n * @param input - The serialized representation\n */\n public parseMessages(input: ArrayBuffer): WebPubSubMessage | null {\n return WebPubSubProtobufProtocolBase.parseMessages(input);\n }\n\n /**\n * Write WebPubSubMessage to string\n * @param message - The message to be written\n */\n public writeMessage(message: WebPubSubMessage): ArrayBuffer {\n return WebPubSubProtobufProtocolBase.writeMessage(message);\n }\n}\n"]}
|
|
@@ -5,16 +5,14 @@ import { WebPubSubProtobufProtocolBase } from "./webPubSubProtobufProtocolBase.j
|
|
|
5
5
|
* The "protobuf.reliable.webpubsub.azure.v1" protocol
|
|
6
6
|
*/
|
|
7
7
|
export class WebPubSubProtobufProtocolImpl {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
this.name = "protobuf.webpubsub.azure.v1";
|
|
17
|
-
}
|
|
8
|
+
/**
|
|
9
|
+
* True if the protocol supports reliable features
|
|
10
|
+
*/
|
|
11
|
+
isReliableSubProtocol = false;
|
|
12
|
+
/**
|
|
13
|
+
* The name of subprotocol. Name will be used in websocket subprotocol
|
|
14
|
+
*/
|
|
15
|
+
name = "protobuf.webpubsub.azure.v1";
|
|
18
16
|
/**
|
|
19
17
|
* Creates WebPubSubMessage objects from the specified serialized representation.
|
|
20
18
|
* @param input - The serialized representation
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"webPubSubProtobufProtocol.js","sourceRoot":"","sources":["../../src/webPubSubProtobufProtocol.ts"],"names":[],"mappings":"AAAA,uCAAuC;AACvC,kCAAkC;AAGlC,OAAO,EAAE,6BAA6B,EAAE,MAAM,oCAAoC,CAAC;AAEnF;;GAEG;AACH,MAAM,OAAO,6BAA6B;
|
|
1
|
+
{"version":3,"file":"webPubSubProtobufProtocol.js","sourceRoot":"","sources":["../../src/webPubSubProtobufProtocol.ts"],"names":[],"mappings":"AAAA,uCAAuC;AACvC,kCAAkC;AAGlC,OAAO,EAAE,6BAA6B,EAAE,MAAM,oCAAoC,CAAC;AAEnF;;GAEG;AACH,MAAM,OAAO,6BAA6B;IACxC;;OAEG;IACa,qBAAqB,GAAG,KAAK,CAAC;IAE9C;;OAEG;IACa,IAAI,GAAG,6BAA6B,CAAC;IAErD;;;OAGG;IACI,aAAa,CAAC,KAAkB;QACrC,OAAO,6BAA6B,CAAC,aAAa,CAAC,KAAK,CAAC,CAAC;IAC5D,CAAC;IAED;;;OAGG;IACI,YAAY,CAAC,OAAyB;QAC3C,OAAO,6BAA6B,CAAC,YAAY,CAAC,OAAO,CAAC,CAAC;IAC7D,CAAC;CACF","sourcesContent":["// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n\nimport type { WebPubSubMessage, WebPubSubClientProtocol } from \"@azure/web-pubsub-client\";\nimport { WebPubSubProtobufProtocolBase } from \"./webPubSubProtobufProtocolBase.js\";\n\n/**\n * The \"protobuf.reliable.webpubsub.azure.v1\" protocol\n */\nexport class WebPubSubProtobufProtocolImpl implements WebPubSubClientProtocol {\n /**\n * True if the protocol supports reliable features\n */\n public readonly isReliableSubProtocol = false;\n\n /**\n * The name of subprotocol. Name will be used in websocket subprotocol\n */\n public readonly name = \"protobuf.webpubsub.azure.v1\";\n\n /**\n * Creates WebPubSubMessage objects from the specified serialized representation.\n * @param input - The serialized representation\n */\n public parseMessages(input: ArrayBuffer): WebPubSubMessage | null {\n return WebPubSubProtobufProtocolBase.parseMessages(input);\n }\n\n /**\n * Write WebPubSubMessage to string\n * @param message - The message to be written\n */\n public writeMessage(message: WebPubSubMessage): ArrayBuffer {\n return WebPubSubProtobufProtocolBase.writeMessage(message);\n }\n}\n"]}
|
|
@@ -5,16 +5,14 @@ import { WebPubSubProtobufProtocolBase } from "./webPubSubProtobufProtocolBase.j
|
|
|
5
5
|
* The "protobuf.reliable.webpubsub.azure.v1" protocol
|
|
6
6
|
*/
|
|
7
7
|
export class WebPubSubProtobufReliableProtocolImpl {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
this.name = "protobuf.reliable.webpubsub.azure.v1";
|
|
17
|
-
}
|
|
8
|
+
/**
|
|
9
|
+
* True if the protocol supports reliable features
|
|
10
|
+
*/
|
|
11
|
+
isReliableSubProtocol = true;
|
|
12
|
+
/**
|
|
13
|
+
* The name of subprotocol. Name will be used in websocket subprotocol
|
|
14
|
+
*/
|
|
15
|
+
name = "protobuf.reliable.webpubsub.azure.v1";
|
|
18
16
|
/**
|
|
19
17
|
* Creates WebPubSubMessage objects from the specified serialized representation.
|
|
20
18
|
* @param input - The serialized representation
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"webPubSubProtobufReliableProtocol.js","sourceRoot":"","sources":["../../src/webPubSubProtobufReliableProtocol.ts"],"names":[],"mappings":"AAAA,uCAAuC;AACvC,kCAAkC;AAGlC,OAAO,EAAE,6BAA6B,EAAE,MAAM,oCAAoC,CAAC;AAEnF;;GAEG;AACH,MAAM,OAAO,qCAAqC;
|
|
1
|
+
{"version":3,"file":"webPubSubProtobufReliableProtocol.js","sourceRoot":"","sources":["../../src/webPubSubProtobufReliableProtocol.ts"],"names":[],"mappings":"AAAA,uCAAuC;AACvC,kCAAkC;AAGlC,OAAO,EAAE,6BAA6B,EAAE,MAAM,oCAAoC,CAAC;AAEnF;;GAEG;AACH,MAAM,OAAO,qCAAqC;IAChD;;OAEG;IACa,qBAAqB,GAAG,IAAI,CAAC;IAE7C;;OAEG;IACa,IAAI,GAAG,sCAAsC,CAAC;IAE9D;;;OAGG;IACI,aAAa,CAAC,KAAkB;QACrC,OAAO,6BAA6B,CAAC,aAAa,CAAC,KAAK,CAAC,CAAC;IAC5D,CAAC;IAED;;;OAGG;IACI,YAAY,CAAC,OAAyB;QAC3C,OAAO,6BAA6B,CAAC,YAAY,CAAC,OAAO,CAAC,CAAC;IAC7D,CAAC;CACF","sourcesContent":["// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n\nimport type { WebPubSubMessage, WebPubSubClientProtocol } from \"@azure/web-pubsub-client\";\nimport { WebPubSubProtobufProtocolBase } from \"./webPubSubProtobufProtocolBase.js\";\n\n/**\n * The \"protobuf.reliable.webpubsub.azure.v1\" protocol\n */\nexport class WebPubSubProtobufReliableProtocolImpl implements WebPubSubClientProtocol {\n /**\n * True if the protocol supports reliable features\n */\n public readonly isReliableSubProtocol = true;\n\n /**\n * The name of subprotocol. Name will be used in websocket subprotocol\n */\n public readonly name = \"protobuf.reliable.webpubsub.azure.v1\";\n\n /**\n * Creates WebPubSubMessage objects from the specified serialized representation.\n * @param input - The serialized representation\n */\n public parseMessages(input: ArrayBuffer): WebPubSubMessage | null {\n return WebPubSubProtobufProtocolBase.parseMessages(input);\n }\n\n /**\n * Write WebPubSubMessage to string\n * @param message - The message to be written\n */\n public writeMessage(message: WebPubSubMessage): ArrayBuffer {\n return WebPubSubProtobufProtocolBase.writeMessage(message);\n }\n}\n"]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@azure/web-pubsub-client-protobuf",
|
|
3
|
-
"version": "1.0.0-alpha.
|
|
3
|
+
"version": "1.0.0-alpha.20250718.1",
|
|
4
4
|
"description": "Azure Web PubSub Client Protobuf",
|
|
5
5
|
"sdk-type": "client",
|
|
6
6
|
"type": "module",
|
|
@@ -83,7 +83,7 @@
|
|
|
83
83
|
]
|
|
84
84
|
},
|
|
85
85
|
"tshy": {
|
|
86
|
-
"project": "
|
|
86
|
+
"project": "../../../tsconfig.src.build.json",
|
|
87
87
|
"exports": {
|
|
88
88
|
"./package.json": "./package.json",
|
|
89
89
|
".": "./src/index.ts"
|