- Consolidated duplicate UndoManagers to single instance - Fixed connection promise to only resolve on 'connected' status - Fixed WebSocketProvider import (WebsocketProvider) - Added proper doc.destroy() cleanup - Renamed isPresenceInitialized property to avoid conflict Co-Authored-By: Paperclip <noreply@paperclip.ing>
73 lines
1.9 KiB
JavaScript
73 lines
1.9 KiB
JavaScript
const require_codes = require('./codes-BfZsPdy-.cjs');
|
|
|
|
//#region src/unstable-core-do-not-import/procedure.ts
|
|
const procedureTypes = [
|
|
"query",
|
|
"mutation",
|
|
"subscription"
|
|
];
|
|
|
|
//#endregion
|
|
//#region src/unstable-core-do-not-import/rpc/parseTRPCMessage.ts
|
|
/* istanbul ignore next -- @preserve */
|
|
function assertIsObject(obj) {
|
|
if (!require_codes.isObject(obj)) throw new Error("Not an object");
|
|
}
|
|
/* istanbul ignore next -- @preserve */
|
|
function assertIsProcedureType(obj) {
|
|
if (!procedureTypes.includes(obj)) throw new Error("Invalid procedure type");
|
|
}
|
|
/* istanbul ignore next -- @preserve */
|
|
function assertIsRequestId(obj) {
|
|
if (obj !== null && typeof obj === "number" && isNaN(obj) && typeof obj !== "string") throw new Error("Invalid request id");
|
|
}
|
|
/* istanbul ignore next -- @preserve */
|
|
function assertIsString(obj) {
|
|
if (typeof obj !== "string") throw new Error("Invalid string");
|
|
}
|
|
/* istanbul ignore next -- @preserve */
|
|
function assertIsJSONRPC2OrUndefined(obj) {
|
|
if (typeof obj !== "undefined" && obj !== "2.0") throw new Error("Must be JSONRPC 2.0");
|
|
}
|
|
/** @public */
|
|
function parseTRPCMessage(obj, transformer) {
|
|
assertIsObject(obj);
|
|
const { id, jsonrpc, method, params } = obj;
|
|
assertIsRequestId(id);
|
|
assertIsJSONRPC2OrUndefined(jsonrpc);
|
|
if (method === "subscription.stop") return {
|
|
id,
|
|
jsonrpc,
|
|
method
|
|
};
|
|
assertIsProcedureType(method);
|
|
assertIsObject(params);
|
|
const { input: rawInput, path, lastEventId } = params;
|
|
assertIsString(path);
|
|
if (lastEventId !== void 0) assertIsString(lastEventId);
|
|
const input = transformer.input.deserialize(rawInput);
|
|
return {
|
|
id,
|
|
jsonrpc,
|
|
method,
|
|
params: {
|
|
input,
|
|
path,
|
|
lastEventId
|
|
}
|
|
};
|
|
}
|
|
|
|
//#endregion
|
|
Object.defineProperty(exports, 'parseTRPCMessage', {
|
|
enumerable: true,
|
|
get: function () {
|
|
return parseTRPCMessage;
|
|
}
|
|
});
|
|
Object.defineProperty(exports, 'procedureTypes', {
|
|
enumerable: true,
|
|
get: function () {
|
|
return procedureTypes;
|
|
}
|
|
}); |