UNPKG

@xmtp/proto

Version:

Protobuf client and generated classes for GRPC API

326 lines 13.6 kB
"use strict"; var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; Object.defineProperty(exports, "__esModule", { value: true }); exports.FrameAction = exports.FrameActionBody = exports.protobufPackage = void 0; /* eslint-disable */ const long_1 = __importDefault(require("long")); const signature_pb_1 = require("./signature.pb"); const public_key_pb_1 = require("./public_key.pb"); const minimal_1 = __importDefault(require("protobufjs/minimal")); exports.protobufPackage = "xmtp.message_contents"; function createBaseFrameActionBody() { return { frameUrl: "", buttonIndex: 0, timestamp: long_1.default.UZERO, opaqueConversationIdentifier: "", unixTimestamp: 0, inputText: "", state: "", address: "", transactionId: "", }; } exports.FrameActionBody = { encode(message, writer = minimal_1.default.Writer.create()) { if (message.frameUrl !== "") { writer.uint32(10).string(message.frameUrl); } if (message.buttonIndex !== 0) { writer.uint32(16).int32(message.buttonIndex); } if (!message.timestamp.isZero()) { writer.uint32(24).uint64(message.timestamp); } if (message.opaqueConversationIdentifier !== "") { writer.uint32(34).string(message.opaqueConversationIdentifier); } if (message.unixTimestamp !== 0) { writer.uint32(40).uint32(message.unixTimestamp); } if (message.inputText !== "") { writer.uint32(50).string(message.inputText); } if (message.state !== "") { writer.uint32(58).string(message.state); } if (message.address !== "") { writer.uint32(66).string(message.address); } if (message.transactionId !== "") { writer.uint32(74).string(message.transactionId); } return writer; }, decode(input, length) { const reader = input instanceof minimal_1.default.Reader ? input : new minimal_1.default.Reader(input); let end = length === undefined ? reader.len : reader.pos + length; const message = createBaseFrameActionBody(); while (reader.pos < end) { const tag = reader.uint32(); switch (tag >>> 3) { case 1: message.frameUrl = reader.string(); break; case 2: message.buttonIndex = reader.int32(); break; case 3: message.timestamp = reader.uint64(); break; case 4: message.opaqueConversationIdentifier = reader.string(); break; case 5: message.unixTimestamp = reader.uint32(); break; case 6: message.inputText = reader.string(); break; case 7: message.state = reader.string(); break; case 8: message.address = reader.string(); break; case 9: message.transactionId = reader.string(); break; default: reader.skipType(tag & 7); break; } } return message; }, fromJSON(object) { return { frameUrl: isSet(object.frameUrl) ? String(object.frameUrl) : "", buttonIndex: isSet(object.buttonIndex) ? Number(object.buttonIndex) : 0, timestamp: isSet(object.timestamp) ? long_1.default.fromValue(object.timestamp) : long_1.default.UZERO, opaqueConversationIdentifier: isSet(object.opaqueConversationIdentifier) ? String(object.opaqueConversationIdentifier) : "", unixTimestamp: isSet(object.unixTimestamp) ? Number(object.unixTimestamp) : 0, inputText: isSet(object.inputText) ? String(object.inputText) : "", state: isSet(object.state) ? String(object.state) : "", address: isSet(object.address) ? String(object.address) : "", transactionId: isSet(object.transactionId) ? String(object.transactionId) : "", }; }, toJSON(message) { const obj = {}; message.frameUrl !== undefined && (obj.frameUrl = message.frameUrl); message.buttonIndex !== undefined && (obj.buttonIndex = Math.round(message.buttonIndex)); message.timestamp !== undefined && (obj.timestamp = (message.timestamp || long_1.default.UZERO).toString()); message.opaqueConversationIdentifier !== undefined && (obj.opaqueConversationIdentifier = message.opaqueConversationIdentifier); message.unixTimestamp !== undefined && (obj.unixTimestamp = Math.round(message.unixTimestamp)); message.inputText !== undefined && (obj.inputText = message.inputText); message.state !== undefined && (obj.state = message.state); message.address !== undefined && (obj.address = message.address); message.transactionId !== undefined && (obj.transactionId = message.transactionId); return obj; }, fromPartial(object) { var _a, _b, _c, _d, _e, _f, _g, _h; const message = createBaseFrameActionBody(); message.frameUrl = (_a = object.frameUrl) !== null && _a !== void 0 ? _a : ""; message.buttonIndex = (_b = object.buttonIndex) !== null && _b !== void 0 ? _b : 0; message.timestamp = object.timestamp !== undefined && object.timestamp !== null ? long_1.default.fromValue(object.timestamp) : long_1.default.UZERO; message.opaqueConversationIdentifier = (_c = object.opaqueConversationIdentifier) !== null && _c !== void 0 ? _c : ""; message.unixTimestamp = (_d = object.unixTimestamp) !== null && _d !== void 0 ? _d : 0; message.inputText = (_e = object.inputText) !== null && _e !== void 0 ? _e : ""; message.state = (_f = object.state) !== null && _f !== void 0 ? _f : ""; message.address = (_g = object.address) !== null && _g !== void 0 ? _g : ""; message.transactionId = (_h = object.transactionId) !== null && _h !== void 0 ? _h : ""; return message; }, }; function createBaseFrameAction() { return { signature: undefined, signedPublicKeyBundle: undefined, actionBody: new Uint8Array(), installationSignature: new Uint8Array(), installationId: new Uint8Array(), inboxId: "", }; } exports.FrameAction = { encode(message, writer = minimal_1.default.Writer.create()) { if (message.signature !== undefined) { signature_pb_1.Signature.encode(message.signature, writer.uint32(10).fork()).ldelim(); } if (message.signedPublicKeyBundle !== undefined) { public_key_pb_1.SignedPublicKeyBundle.encode(message.signedPublicKeyBundle, writer.uint32(18).fork()).ldelim(); } if (message.actionBody.length !== 0) { writer.uint32(26).bytes(message.actionBody); } if (message.installationSignature.length !== 0) { writer.uint32(34).bytes(message.installationSignature); } if (message.installationId.length !== 0) { writer.uint32(42).bytes(message.installationId); } if (message.inboxId !== "") { writer.uint32(50).string(message.inboxId); } return writer; }, decode(input, length) { const reader = input instanceof minimal_1.default.Reader ? input : new minimal_1.default.Reader(input); let end = length === undefined ? reader.len : reader.pos + length; const message = createBaseFrameAction(); while (reader.pos < end) { const tag = reader.uint32(); switch (tag >>> 3) { case 1: message.signature = signature_pb_1.Signature.decode(reader, reader.uint32()); break; case 2: message.signedPublicKeyBundle = public_key_pb_1.SignedPublicKeyBundle.decode(reader, reader.uint32()); break; case 3: message.actionBody = reader.bytes(); break; case 4: message.installationSignature = reader.bytes(); break; case 5: message.installationId = reader.bytes(); break; case 6: message.inboxId = reader.string(); break; default: reader.skipType(tag & 7); break; } } return message; }, fromJSON(object) { return { signature: isSet(object.signature) ? signature_pb_1.Signature.fromJSON(object.signature) : undefined, signedPublicKeyBundle: isSet(object.signedPublicKeyBundle) ? public_key_pb_1.SignedPublicKeyBundle.fromJSON(object.signedPublicKeyBundle) : undefined, actionBody: isSet(object.actionBody) ? bytesFromBase64(object.actionBody) : new Uint8Array(), installationSignature: isSet(object.installationSignature) ? bytesFromBase64(object.installationSignature) : new Uint8Array(), installationId: isSet(object.installationId) ? bytesFromBase64(object.installationId) : new Uint8Array(), inboxId: isSet(object.inboxId) ? String(object.inboxId) : "", }; }, toJSON(message) { const obj = {}; message.signature !== undefined && (obj.signature = message.signature ? signature_pb_1.Signature.toJSON(message.signature) : undefined); message.signedPublicKeyBundle !== undefined && (obj.signedPublicKeyBundle = message.signedPublicKeyBundle ? public_key_pb_1.SignedPublicKeyBundle.toJSON(message.signedPublicKeyBundle) : undefined); message.actionBody !== undefined && (obj.actionBody = base64FromBytes(message.actionBody !== undefined ? message.actionBody : new Uint8Array())); message.installationSignature !== undefined && (obj.installationSignature = base64FromBytes(message.installationSignature !== undefined ? message.installationSignature : new Uint8Array())); message.installationId !== undefined && (obj.installationId = base64FromBytes(message.installationId !== undefined ? message.installationId : new Uint8Array())); message.inboxId !== undefined && (obj.inboxId = message.inboxId); return obj; }, fromPartial(object) { var _a, _b, _c, _d; const message = createBaseFrameAction(); message.signature = object.signature !== undefined && object.signature !== null ? signature_pb_1.Signature.fromPartial(object.signature) : undefined; message.signedPublicKeyBundle = object.signedPublicKeyBundle !== undefined && object.signedPublicKeyBundle !== null ? public_key_pb_1.SignedPublicKeyBundle.fromPartial(object.signedPublicKeyBundle) : undefined; message.actionBody = (_a = object.actionBody) !== null && _a !== void 0 ? _a : new Uint8Array(); message.installationSignature = (_b = object.installationSignature) !== null && _b !== void 0 ? _b : new Uint8Array(); message.installationId = (_c = object.installationId) !== null && _c !== void 0 ? _c : new Uint8Array(); message.inboxId = (_d = object.inboxId) !== null && _d !== void 0 ? _d : ""; return message; }, }; var globalThis = (() => { if (typeof globalThis !== "undefined") return globalThis; if (typeof self !== "undefined") return self; if (typeof window !== "undefined") return window; if (typeof global !== "undefined") return global; throw "Unable to locate global object"; })(); function bytesFromBase64(b64) { if (globalThis.Buffer) { return Uint8Array.from(globalThis.Buffer.from(b64, "base64")); } else { const bin = globalThis.atob(b64); const arr = new Uint8Array(bin.length); for (let i = 0; i < bin.length; ++i) { arr[i] = bin.charCodeAt(i); } return arr; } } function base64FromBytes(arr) { if (globalThis.Buffer) { return globalThis.Buffer.from(arr).toString("base64"); } else { const bin = []; arr.forEach((byte) => { bin.push(String.fromCharCode(byte)); }); return globalThis.btoa(bin.join("")); } } if (minimal_1.default.util.Long !== long_1.default) { minimal_1.default.util.Long = long_1.default; minimal_1.default.configure(); } function isSet(value) { return value !== null && value !== undefined; } //# sourceMappingURL=frames.pb.js.map