From 9b15e410a8a62014fe088b56f6b35cd99bfed322 Mon Sep 17 00:00:00 2001 From: Sehoon Shon Date: Tue, 24 Feb 2026 17:26:04 -0500 Subject: [PATCH] fix(teleporter): use coreTools constants for trajectory deserialization --- .prettierignore | 1 + .../src/telemetry/startupProfiler.test.ts | 17 +- packages/core/src/teleportation/converter.ts | 35 +- .../trajectory_teleporter.min.js | 37127 ++++++---------- 4 files changed, 14423 insertions(+), 22757 deletions(-) diff --git a/.prettierignore b/.prettierignore index 9009498d8d..a817e17169 100644 --- a/.prettierignore +++ b/.prettierignore @@ -22,3 +22,4 @@ Thumbs.db .pytest_cache **/SKILL.md packages/sdk/test-data/*.json +packages/core/src/teleportation/trajectory_teleporter.min.js diff --git a/packages/core/src/telemetry/startupProfiler.test.ts b/packages/core/src/telemetry/startupProfiler.test.ts index 973806b271..0a8cfd5e06 100644 --- a/packages/core/src/telemetry/startupProfiler.test.ts +++ b/packages/core/src/telemetry/startupProfiler.test.ts @@ -20,11 +20,18 @@ vi.mock('./loggers.js', () => ({ })); // Mock os module -vi.mock('node:os', () => ({ - platform: vi.fn(() => 'darwin'), - arch: vi.fn(() => 'x64'), - release: vi.fn(() => '22.6.0'), -})); +vi.mock('node:os', () => { + const mockOs = { + platform: vi.fn(() => 'darwin'), + arch: vi.fn(() => 'x64'), + release: vi.fn(() => '22.6.0'), + homedir: vi.fn(() => '/mocked/home'), + }; + return { + ...mockOs, + default: mockOs, + }; +}); // Mock fs module vi.mock('node:fs', () => ({ diff --git a/packages/core/src/teleportation/converter.ts b/packages/core/src/teleportation/converter.ts index 3158d10d8f..f52a2724d5 100644 --- a/packages/core/src/teleportation/converter.ts +++ b/packages/core/src/teleportation/converter.ts @@ -7,12 +7,19 @@ /* eslint-disable @typescript-eslint/no-unsafe-type-assertion */ /* eslint-disable @typescript-eslint/no-explicit-any */ -import { - type ConversationRecord, - type MessageRecord, - type ToolCallRecord, -} from '../services/chatRecordingService.js'; +import type { ConversationRecord, ToolCallRecord, MessageRecord } from '../types.js'; import { CoreToolCallStatus } from '../scheduler/types.js'; +import { + EDIT_TOOL_NAME, + GLOB_TOOL_NAME, + GREP_TOOL_NAME, + LS_TOOL_NAME, + READ_FILE_TOOL_NAME, + SHELL_TOOL_NAME, + WEB_FETCH_TOOL_NAME, + WEB_SEARCH_TOOL_NAME, + WRITE_FILE_TOOL_NAME, +} from '../tools/definitions/coreTools.js'; /** * Converts an Antigravity Trajectory JSON to a Gemini CLI ConversationRecord. @@ -153,43 +160,43 @@ function mapAgyStepToToolCall(step: Record): ToolCallRecord { let result: any = null; if (step['viewFile']) { - name = 'view_file'; + name = READ_FILE_TOOL_NAME; args = { AbsolutePath: step['viewFile']['absolutePathUri'] }; result = [{ text: step['viewFile']['content'] || '' }]; } else if (step['listDirectory']) { - name = 'list_dir'; + name = LS_TOOL_NAME; args = { DirectoryPath: step['listDirectory']['directoryPathUri'] }; } else if (step['grepSearch']) { - name = 'grep_search'; + name = GREP_TOOL_NAME; args = { Query: step['grepSearch']['query'], SearchPath: step['grepSearch']['searchPathUri'], }; result = [{ text: step['grepSearch']['rawOutput'] || '' }]; } else if (step['runCommand']) { - name = 'run_command'; + name = SHELL_TOOL_NAME; args = { CommandLine: step['runCommand']['commandLine'] }; result = [{ text: step['runCommand']['combinedOutput']?.['full'] || '' }]; } else if (step['fileChange']) { - name = 'replace_file_content'; // Or multi_replace_file_content + name = EDIT_TOOL_NAME; // Or multi_replace_file_content args = { TargetFile: step['fileChange']['absolutePathUri'] }; } else if (step['writeToFile']) { - name = 'write_file'; + name = WRITE_FILE_TOOL_NAME; args = { TargetFile: step['writeToFile']['targetFileUri'] }; } else if (step['find']) { - name = 'glob'; + name = GLOB_TOOL_NAME; args = { Pattern: step['find']['pattern'], SearchDirectory: step['find']['searchDirectory'], }; result = [{ text: step['find']['truncatedOutput'] || '' }]; } else if (step['readUrlContent']) { - name = 'web_fetch'; + name = WEB_FETCH_TOOL_NAME; args = { Url: step['readUrlContent']['url'] }; // We intentionally don't try fully mapping the complex KnowledgeBaseItem struct into a string here result = [{ text: 'successfully read url content' }]; } else if (step['searchWeb']) { - name = 'google_web_search'; // Usually mapped from 'searchWeb' + name = WEB_SEARCH_TOOL_NAME; // Usually mapped from 'searchWeb' args = { query: step['searchWeb']['query'] }; if (step['searchWeb']['domain']) { args['domain'] = step['searchWeb']['domain']; diff --git a/packages/core/src/teleportation/trajectory_teleporter.min.js b/packages/core/src/teleportation/trajectory_teleporter.min.js index f13ad8f563..1e5ee40320 100644 --- a/packages/core/src/teleportation/trajectory_teleporter.min.js +++ b/packages/core/src/teleportation/trajectory_teleporter.min.js @@ -1,5 +1,5 @@ // trajectory_teleporter_tmp.ts -import * as crypto from 'node:crypto'; +import * as crypto from "node:crypto"; // exa/proto_ts/node_modules/@bufbuild/protobuf/dist/esm/private/assert.js function assert(condition, msg) { @@ -13,41 +13,39 @@ var UINT32_MAX = 4294967295; var INT32_MAX = 2147483647; var INT32_MIN = -2147483648; function assertInt32(arg) { - if (typeof arg !== 'number') throw new Error('invalid int 32: ' + typeof arg); + if (typeof arg !== "number") + throw new Error("invalid int 32: " + typeof arg); if (!Number.isInteger(arg) || arg > INT32_MAX || arg < INT32_MIN) - throw new Error('invalid int 32: ' + arg); + throw new Error("invalid int 32: " + arg); } function assertUInt32(arg) { - if (typeof arg !== 'number') - throw new Error('invalid uint 32: ' + typeof arg); + if (typeof arg !== "number") + throw new Error("invalid uint 32: " + typeof arg); if (!Number.isInteger(arg) || arg > UINT32_MAX || arg < 0) - throw new Error('invalid uint 32: ' + arg); + throw new Error("invalid uint 32: " + arg); } function assertFloat32(arg) { - if (typeof arg !== 'number') - throw new Error('invalid float 32: ' + typeof arg); - if (!Number.isFinite(arg)) return; + if (typeof arg !== "number") + throw new Error("invalid float 32: " + typeof arg); + if (!Number.isFinite(arg)) + return; if (arg > FLOAT32_MAX || arg < FLOAT32_MIN) - throw new Error('invalid float 32: ' + arg); + throw new Error("invalid float 32: " + arg); } // exa/proto_ts/node_modules/@bufbuild/protobuf/dist/esm/private/enum.js -var enumTypeSymbol = /* @__PURE__ */ Symbol('@bufbuild/protobuf/enum-type'); +var enumTypeSymbol = /* @__PURE__ */ Symbol("@bufbuild/protobuf/enum-type"); function getEnumType(enumObject) { const t = enumObject[enumTypeSymbol]; - assert(t, 'missing enum type on enum object'); + assert(t, "missing enum type on enum object"); return t; } function setEnumType(enumObject, typeName, values, opt) { - enumObject[enumTypeSymbol] = makeEnumType( - typeName, - values.map((v) => ({ - no: v.no, - name: v.name, - localName: enumObject[v.no], - })), - opt, - ); + enumObject[enumTypeSymbol] = makeEnumType(typeName, values.map((v) => ({ + no: v.no, + name: v.name, + localName: enumObject[v.no] + })), opt); } function makeEnumType(typeName, values, _opt) { const names = /* @__PURE__ */ Object.create(null); @@ -69,7 +67,7 @@ function makeEnumType(typeName, values, _opt) { }, findNumber(no) { return numbers[no]; - }, + } }; } function makeEnum(typeName, values, opt) { @@ -83,7 +81,7 @@ function makeEnum(typeName, values, opt) { return enumObject; } function normalizeEnumValue(value) { - if ('localName' in value) { + if ("localName" in value) { return value; } return Object.assign(Object.assign({}, value), { localName: value.name }); @@ -114,9 +112,7 @@ var Message = class { * new data. */ fromBinary(bytes, options) { - const type = this.getType(), - format = type.runtime.bin, - opt = format.makeReadOptions(options); + const type = this.getType(), format = type.runtime.bin, opt = format.makeReadOptions(options); format.readMessage(this, opt.readerFactory(bytes), bytes.byteLength, opt); return this; } @@ -124,9 +120,7 @@ var Message = class { * Parse a message from a JSON value. */ fromJson(jsonValue, options) { - const type = this.getType(), - format = type.runtime.json, - opt = format.makeReadOptions(options); + const type = this.getType(), format = type.runtime.json, opt = format.makeReadOptions(options); format.readMessage(type, jsonValue, opt, this); return this; } @@ -138,9 +132,7 @@ var Message = class { try { json = JSON.parse(jsonString); } catch (e) { - throw new Error( - `cannot decode ${this.getType().typeName} from JSON: ${e instanceof Error ? e.message : String(e)}`, - ); + throw new Error(`cannot decode ${this.getType().typeName} from JSON: ${e instanceof Error ? e.message : String(e)}`); } return this.fromJson(json, options); } @@ -148,10 +140,7 @@ var Message = class { * Serialize the message to binary data. */ toBinary(options) { - const type = this.getType(), - bin = type.runtime.bin, - opt = bin.makeWriteOptions(options), - writer = opt.writerFactory(); + const type = this.getType(), bin = type.runtime.bin, opt = bin.makeWriteOptions(options), writer = opt.writerFactory(); bin.writeMessage(this, writer, opt); return writer.finish(); } @@ -160,9 +149,7 @@ var Message = class { * passed to JSON.stringify(). */ toJson(options) { - const type = this.getType(), - json = type.runtime.json, - opt = json.makeWriteOptions(options); + const type = this.getType(), json = type.runtime.json, opt = json.makeWriteOptions(options); return json.writeMessage(this, opt); } /** @@ -171,16 +158,7 @@ var Message = class { toJsonString(options) { var _a; const value = this.toJson(options); - return JSON.stringify( - value, - null, - (_a = - options === null || options === void 0 - ? void 0 - : options.prettySpaces) !== null && _a !== void 0 - ? _a - : 0, - ); + return JSON.stringify(value, null, (_a = options === null || options === void 0 ? void 0 : options.prettySpaces) !== null && _a !== void 0 ? _a : 0); } /** * Override for serialization behavior. This will be invoked when calling @@ -199,7 +177,7 @@ var Message = class { */ toJSON() { return this.toJson({ - emitDefaultValues: true, + emitDefaultValues: true }); } /** @@ -215,16 +193,12 @@ var Message = class { // exa/proto_ts/node_modules/@bufbuild/protobuf/dist/esm/private/message-type.js function makeMessageType(runtime, typeName, fields, opt) { var _a; - const localName = - (_a = opt === null || opt === void 0 ? void 0 : opt.localName) !== null && - _a !== void 0 - ? _a - : typeName.substring(typeName.lastIndexOf('.') + 1); + const localName = (_a = opt === null || opt === void 0 ? void 0 : opt.localName) !== null && _a !== void 0 ? _a : typeName.substring(typeName.lastIndexOf(".") + 1); const type = { - [localName]: function (data) { + [localName]: function(data) { runtime.util.initFields(this); runtime.util.initPartial(data, this); - }, + } }[localName]; Object.setPrototypeOf(type.prototype, new Message()); Object.assign(type, { @@ -242,7 +216,7 @@ function makeMessageType(runtime, typeName, fields, opt) { }, equals(a, b) { return runtime.util.equals(type, a, b); - }, + } }); return type; } @@ -274,7 +248,7 @@ function varint64read() { return [lowBits, highBits]; } } - throw new Error('invalid varint'); + throw new Error("invalid varint"); } function varint64write(lo, hi, bytes) { for (let i = 0; i < 28; i = i + 7) { @@ -286,7 +260,7 @@ function varint64write(lo, hi, bytes) { return; } } - const splitBits = ((lo >>> 28) & 15) | ((hi & 7) << 4); + const splitBits = lo >>> 28 & 15 | (hi & 7) << 4; const hasMoreBits = !(hi >> 3 == 0); bytes.push((hasMoreBits ? splitBits | 128 : splitBits) & 255); if (!hasMoreBits) { @@ -301,11 +275,11 @@ function varint64write(lo, hi, bytes) { return; } } - bytes.push((hi >>> 31) & 1); + bytes.push(hi >>> 31 & 1); } var TWO_PWR_32_DBL = 4294967296; function int64FromString(dec) { - const minus = dec[0] === '-'; + const minus = dec[0] === "-"; if (minus) { dec = dec.slice(1); } @@ -317,7 +291,7 @@ function int64FromString(dec) { highBits *= base; lowBits = lowBits * base + digit1e6; if (lowBits >= TWO_PWR_32_DBL) { - highBits = highBits + ((lowBits / TWO_PWR_32_DBL) | 0); + highBits = highBits + (lowBits / TWO_PWR_32_DBL | 0); lowBits = lowBits % TWO_PWR_32_DBL; } } @@ -334,7 +308,7 @@ function int64ToString(lo, hi) { bits = negate(bits.lo, bits.hi); } const result = uInt64ToString(bits.lo, bits.hi); - return negative ? '-' + result : result; + return negative ? "-" + result : result; } function uInt64ToString(lo, hi) { ({ lo, hi } = toUnsigned(lo, hi)); @@ -342,8 +316,8 @@ function uInt64ToString(lo, hi) { return String(TWO_PWR_32_DBL * hi + lo); } const low = lo & 16777215; - const mid = ((lo >>> 24) | (hi << 8)) & 16777215; - const high = (hi >> 16) & 65535; + const mid = (lo >>> 24 | hi << 8) & 16777215; + const high = hi >> 16 & 65535; let digitA = low + mid * 6777216 + high * 6710656; let digitB = mid + high * 8147497; let digitC = high * 2; @@ -356,11 +330,7 @@ function uInt64ToString(lo, hi) { digitC += Math.floor(digitB / base); digitB %= base; } - return ( - digitC.toString() + - decimalFrom1e7WithLeadingZeros(digitB) + - decimalFrom1e7WithLeadingZeros(digitA) - ); + return digitC.toString() + decimalFrom1e7WithLeadingZeros(digitB) + decimalFrom1e7WithLeadingZeros(digitA); } function toUnsigned(lo, hi) { return { lo: lo >>> 0, hi: hi >>> 0 }; @@ -379,18 +349,18 @@ function negate(lowBits, highBits) { } var decimalFrom1e7WithLeadingZeros = (digit1e7) => { const partial = String(digit1e7); - return '0000000'.slice(partial.length) + partial; + return "0000000".slice(partial.length) + partial; }; function varint32write(value, bytes) { if (value >= 0) { while (value > 127) { - bytes.push((value & 127) | 128); + bytes.push(value & 127 | 128); value = value >>> 7; } bytes.push(value); } else { for (let i = 0; i < 9; i++) { - bytes.push((value & 127) | 128); + bytes.push(value & 127 | 128); value = value >> 7; } bytes.push(1); @@ -425,7 +395,8 @@ function varint32read() { result |= (b & 15) << 28; for (let readBytes = 5; (b & 128) !== 0 && readBytes < 10; readBytes++) b = this.buf[this.pos++]; - if ((b & 128) != 0) throw new Error('invalid varint'); + if ((b & 128) != 0) + throw new Error("invalid varint"); this.assertBounds(); return result >>> 0; } @@ -433,32 +404,21 @@ function varint32read() { // exa/proto_ts/node_modules/@bufbuild/protobuf/dist/esm/proto-int64.js function makeInt64Support() { const dv = new DataView(new ArrayBuffer(8)); - const ok = - typeof BigInt === 'function' && - typeof dv.getBigInt64 === 'function' && - typeof dv.getBigUint64 === 'function' && - typeof dv.setBigInt64 === 'function' && - typeof dv.setBigUint64 === 'function' && - (typeof process != 'object' || - typeof process.env != 'object' || - process.env.BUF_BIGINT_DISABLE !== '1'); + const ok = typeof BigInt === "function" && typeof dv.getBigInt64 === "function" && typeof dv.getBigUint64 === "function" && typeof dv.setBigInt64 === "function" && typeof dv.setBigUint64 === "function" && (typeof process != "object" || typeof process.env != "object" || process.env.BUF_BIGINT_DISABLE !== "1"); if (ok) { - const MIN = BigInt('-9223372036854775808'), - MAX = BigInt('9223372036854775807'), - UMIN = BigInt('0'), - UMAX = BigInt('18446744073709551615'); + const MIN = BigInt("-9223372036854775808"), MAX = BigInt("9223372036854775807"), UMIN = BigInt("0"), UMAX = BigInt("18446744073709551615"); return { zero: BigInt(0), supported: true, parse(value) { - const bi = typeof value == 'bigint' ? value : BigInt(value); + const bi = typeof value == "bigint" ? value : BigInt(value); if (bi > MAX || bi < MIN) { throw new Error(`int64 invalid: ${value}`); } return bi; }, uParse(value) { - const bi = typeof value == 'bigint' ? value : BigInt(value); + const bi = typeof value == "bigint" ? value : BigInt(value); if (bi > UMAX || bi < UMIN) { throw new Error(`uint64 invalid: ${value}`); } @@ -468,14 +428,14 @@ function makeInt64Support() { dv.setBigInt64(0, this.parse(value), true); return { lo: dv.getInt32(0, true), - hi: dv.getInt32(4, true), + hi: dv.getInt32(4, true) }; }, uEnc(value) { dv.setBigInt64(0, this.uParse(value), true); return { lo: dv.getInt32(0, true), - hi: dv.getInt32(4, true), + hi: dv.getInt32(4, true) }; }, dec(lo, hi) { @@ -487,39 +447,37 @@ function makeInt64Support() { dv.setInt32(0, lo, true); dv.setInt32(4, hi, true); return dv.getBigUint64(0, true); - }, + } }; } - const assertInt64String = (value) => - assert(/^-?[0-9]+$/.test(value), `int64 invalid: ${value}`); - const assertUInt64String = (value) => - assert(/^[0-9]+$/.test(value), `uint64 invalid: ${value}`); + const assertInt64String = (value) => assert(/^-?[0-9]+$/.test(value), `int64 invalid: ${value}`); + const assertUInt64String = (value) => assert(/^[0-9]+$/.test(value), `uint64 invalid: ${value}`); return { - zero: '0', + zero: "0", supported: false, parse(value) { - if (typeof value != 'string') { + if (typeof value != "string") { value = value.toString(); } assertInt64String(value); return value; }, uParse(value) { - if (typeof value != 'string') { + if (typeof value != "string") { value = value.toString(); } assertUInt64String(value); return value; }, enc(value) { - if (typeof value != 'string') { + if (typeof value != "string") { value = value.toString(); } assertInt64String(value); return int64FromString(value); }, uEnc(value) { - if (typeof value != 'string') { + if (typeof value != "string") { value = value.toString(); } assertUInt64String(value); @@ -530,34 +488,34 @@ function makeInt64Support() { }, uDec(lo, hi) { return uInt64ToString(lo, hi); - }, + } }; } var protoInt64 = makeInt64Support(); // exa/proto_ts/node_modules/@bufbuild/protobuf/dist/esm/scalar.js var ScalarType; -(function (ScalarType2) { - ScalarType2[(ScalarType2['DOUBLE'] = 1)] = 'DOUBLE'; - ScalarType2[(ScalarType2['FLOAT'] = 2)] = 'FLOAT'; - ScalarType2[(ScalarType2['INT64'] = 3)] = 'INT64'; - ScalarType2[(ScalarType2['UINT64'] = 4)] = 'UINT64'; - ScalarType2[(ScalarType2['INT32'] = 5)] = 'INT32'; - ScalarType2[(ScalarType2['FIXED64'] = 6)] = 'FIXED64'; - ScalarType2[(ScalarType2['FIXED32'] = 7)] = 'FIXED32'; - ScalarType2[(ScalarType2['BOOL'] = 8)] = 'BOOL'; - ScalarType2[(ScalarType2['STRING'] = 9)] = 'STRING'; - ScalarType2[(ScalarType2['BYTES'] = 12)] = 'BYTES'; - ScalarType2[(ScalarType2['UINT32'] = 13)] = 'UINT32'; - ScalarType2[(ScalarType2['SFIXED32'] = 15)] = 'SFIXED32'; - ScalarType2[(ScalarType2['SFIXED64'] = 16)] = 'SFIXED64'; - ScalarType2[(ScalarType2['SINT32'] = 17)] = 'SINT32'; - ScalarType2[(ScalarType2['SINT64'] = 18)] = 'SINT64'; +(function(ScalarType2) { + ScalarType2[ScalarType2["DOUBLE"] = 1] = "DOUBLE"; + ScalarType2[ScalarType2["FLOAT"] = 2] = "FLOAT"; + ScalarType2[ScalarType2["INT64"] = 3] = "INT64"; + ScalarType2[ScalarType2["UINT64"] = 4] = "UINT64"; + ScalarType2[ScalarType2["INT32"] = 5] = "INT32"; + ScalarType2[ScalarType2["FIXED64"] = 6] = "FIXED64"; + ScalarType2[ScalarType2["FIXED32"] = 7] = "FIXED32"; + ScalarType2[ScalarType2["BOOL"] = 8] = "BOOL"; + ScalarType2[ScalarType2["STRING"] = 9] = "STRING"; + ScalarType2[ScalarType2["BYTES"] = 12] = "BYTES"; + ScalarType2[ScalarType2["UINT32"] = 13] = "UINT32"; + ScalarType2[ScalarType2["SFIXED32"] = 15] = "SFIXED32"; + ScalarType2[ScalarType2["SFIXED64"] = 16] = "SFIXED64"; + ScalarType2[ScalarType2["SINT32"] = 17] = "SINT32"; + ScalarType2[ScalarType2["SINT64"] = 18] = "SINT64"; })(ScalarType || (ScalarType = {})); var LongType; -(function (LongType2) { - LongType2[(LongType2['BIGINT'] = 0)] = 'BIGINT'; - LongType2[(LongType2['STRING'] = 1)] = 'STRING'; +(function(LongType2) { + LongType2[LongType2["BIGINT"] = 0] = "BIGINT"; + LongType2[LongType2["STRING"] = 1] = "STRING"; })(LongType || (LongType = {})); // exa/proto_ts/node_modules/@bufbuild/protobuf/dist/esm/private/scalars.js @@ -598,14 +556,14 @@ function scalarZeroValue(type, longType) { case ScalarType.INT64: case ScalarType.SFIXED64: case ScalarType.SINT64: - return longType == 0 ? protoInt64.zero : '0'; + return longType == 0 ? protoInt64.zero : "0"; case ScalarType.DOUBLE: case ScalarType.FLOAT: return 0; case ScalarType.BYTES: return new Uint8Array(0); case ScalarType.STRING: - return ''; + return ""; default: return 0; } @@ -615,7 +573,7 @@ function isScalarZeroValue(type, value) { case ScalarType.BOOL: return value === false; case ScalarType.STRING: - return value === ''; + return value === ""; case ScalarType.BYTES: return value instanceof Uint8Array && !value.byteLength; default: @@ -625,21 +583,18 @@ function isScalarZeroValue(type, value) { // exa/proto_ts/node_modules/@bufbuild/protobuf/dist/esm/binary-encoding.js var WireType; -(function (WireType2) { - WireType2[(WireType2['Varint'] = 0)] = 'Varint'; - WireType2[(WireType2['Bit64'] = 1)] = 'Bit64'; - WireType2[(WireType2['LengthDelimited'] = 2)] = 'LengthDelimited'; - WireType2[(WireType2['StartGroup'] = 3)] = 'StartGroup'; - WireType2[(WireType2['EndGroup'] = 4)] = 'EndGroup'; - WireType2[(WireType2['Bit32'] = 5)] = 'Bit32'; +(function(WireType2) { + WireType2[WireType2["Varint"] = 0] = "Varint"; + WireType2[WireType2["Bit64"] = 1] = "Bit64"; + WireType2[WireType2["LengthDelimited"] = 2] = "LengthDelimited"; + WireType2[WireType2["StartGroup"] = 3] = "StartGroup"; + WireType2[WireType2["EndGroup"] = 4] = "EndGroup"; + WireType2[WireType2["Bit32"] = 5] = "Bit32"; })(WireType || (WireType = {})); var BinaryWriter = class { constructor(textEncoder) { this.stack = []; - this.textEncoder = - textEncoder !== null && textEncoder !== void 0 - ? textEncoder - : new TextEncoder(); + this.textEncoder = textEncoder !== null && textEncoder !== void 0 ? textEncoder : new TextEncoder(); this.chunks = []; this.buf = []; } @@ -649,7 +604,8 @@ var BinaryWriter = class { finish() { this.chunks.push(new Uint8Array(this.buf)); let len = 0; - for (let i = 0; i < this.chunks.length; i++) len += this.chunks[i].length; + for (let i = 0; i < this.chunks.length; i++) + len += this.chunks[i].length; let bytes = new Uint8Array(len); let offset = 0; for (let i = 0; i < this.chunks.length; i++) { @@ -678,7 +634,8 @@ var BinaryWriter = class { join() { let chunk = this.finish(); let prev = this.stack.pop(); - if (!prev) throw new Error('invalid state, fork stack empty'); + if (!prev) + throw new Error("invalid state, fork stack empty"); this.chunks = prev.chunks; this.buf = prev.buf; this.uint32(chunk.byteLength); @@ -692,7 +649,7 @@ var BinaryWriter = class { * Generated code should compute the tag ahead of time and call `uint32()`. */ tag(fieldNo, type) { - return this.uint32(((fieldNo << 3) | type) >>> 0); + return this.uint32((fieldNo << 3 | type) >>> 0); } /** * Write a chunk of raw bytes. @@ -711,7 +668,7 @@ var BinaryWriter = class { uint32(value) { assertUInt32(value); while (value > 127) { - this.buf.push((value & 127) | 128); + this.buf.push(value & 127 | 128); value = value >>> 7; } this.buf.push(value); @@ -787,7 +744,7 @@ var BinaryWriter = class { */ sint32(value) { assertInt32(value); - value = ((value << 1) ^ (value >> 31)) >>> 0; + value = (value << 1 ^ value >> 31) >>> 0; varint32write(value, this.buf); return this; } @@ -795,9 +752,7 @@ var BinaryWriter = class { * Write a `fixed64` value, a signed, fixed-length 64-bit integer. */ sfixed64(value) { - let chunk = new Uint8Array(8), - view = new DataView(chunk.buffer), - tc = protoInt64.enc(value); + let chunk = new Uint8Array(8), view = new DataView(chunk.buffer), tc = protoInt64.enc(value); view.setInt32(0, tc.lo, true); view.setInt32(4, tc.hi, true); return this.raw(chunk); @@ -806,9 +761,7 @@ var BinaryWriter = class { * Write a `fixed64` value, an unsigned, fixed-length 64 bit integer. */ fixed64(value) { - let chunk = new Uint8Array(8), - view = new DataView(chunk.buffer), - tc = protoInt64.uEnc(value); + let chunk = new Uint8Array(8), view = new DataView(chunk.buffer), tc = protoInt64.uEnc(value); view.setInt32(0, tc.lo, true); view.setInt32(4, tc.hi, true); return this.raw(chunk); @@ -825,10 +778,7 @@ var BinaryWriter = class { * Write a `sint64` value, a signed, zig-zag-encoded 64-bit varint. */ sint64(value) { - let tc = protoInt64.enc(value), - sign = tc.hi >> 31, - lo = (tc.lo << 1) ^ sign, - hi = ((tc.hi << 1) | (tc.lo >>> 31)) ^ sign; + let tc = protoInt64.enc(value), sign = tc.hi >> 31, lo = tc.lo << 1 ^ sign, hi = (tc.hi << 1 | tc.lo >>> 31) ^ sign; varint64write(lo, hi, this.buf); return this; } @@ -849,22 +799,15 @@ var BinaryReader = class { this.len = buf.length; this.pos = 0; this.view = new DataView(buf.buffer, buf.byteOffset, buf.byteLength); - this.textDecoder = - textDecoder !== null && textDecoder !== void 0 - ? textDecoder - : new TextDecoder(); + this.textDecoder = textDecoder !== null && textDecoder !== void 0 ? textDecoder : new TextDecoder(); } /** * Reads a tag - field number and wire type. */ tag() { - let tag = this.uint32(), - fieldNo = tag >>> 3, - wireType = tag & 7; + let tag = this.uint32(), fieldNo = tag >>> 3, wireType = tag & 7; if (fieldNo <= 0 || wireType < 0 || wireType > 5) - throw new Error( - 'illegal tag: field no ' + fieldNo + ' wire type ' + wireType, - ); + throw new Error("illegal tag: field no " + fieldNo + " wire type " + wireType); return [fieldNo, wireType]; } /** @@ -875,7 +818,8 @@ var BinaryReader = class { let start = this.pos; switch (wireType) { case WireType.Varint: - while (this.buf[this.pos++] & 128) {} + while (this.buf[this.pos++] & 128) { + } break; // eslint-disable-next-line // @ts-ignore TS7029: Fallthrough case in switch @@ -897,7 +841,7 @@ var BinaryReader = class { } break; default: - throw new Error('cant skip wire type ' + wireType); + throw new Error("cant skip wire type " + wireType); } this.assertBounds(); return this.buf.subarray(start, this.pos); @@ -906,7 +850,8 @@ var BinaryReader = class { * Throws error if position in byte array is out of range. */ assertBounds() { - if (this.pos > this.len) throw new RangeError('premature EOF'); + if (this.pos > this.len) + throw new RangeError("premature EOF"); } /** * Read a `int32` field, a signed 32 bit varint. @@ -919,7 +864,7 @@ var BinaryReader = class { */ sint32() { let zze = this.uint32(); - return (zze >>> 1) ^ -(zze & 1); + return zze >>> 1 ^ -(zze & 1); } /** * Read a `int64` field, a signed 64-bit varint. @@ -939,8 +884,8 @@ var BinaryReader = class { sint64() { let [lo, hi] = this.varint64(); let s = -(lo & 1); - lo = ((lo >>> 1) | ((hi & 1) << 31)) ^ s; - hi = (hi >>> 1) ^ s; + lo = (lo >>> 1 | (hi & 1) << 31) ^ s; + hi = hi >>> 1 ^ s; return protoInt64.dec(lo, hi); } /** @@ -990,8 +935,7 @@ var BinaryReader = class { * Read a `bytes` field, length-delimited arbitrary data. */ bytes() { - let len = this.uint32(), - start = this.pos; + let len = this.uint32(), start = this.pos; this.pos += len; this.assertBounds(); return this.buf.subarray(start, start + len); @@ -1012,14 +956,14 @@ function makeExtension(runtime, typeName, extendee, field) { extendee, get field() { if (!fi) { - const i = typeof field == 'function' ? field() : field; - i.name = typeName.split('.').pop(); + const i = typeof field == "function" ? field() : field; + i.name = typeName.split(".").pop(); i.jsonName = `[${typeName}]`; fi = runtime.util.newFieldList([i]).list()[0]; } return fi; }, - runtime, + runtime }; } function createExtensionContainer(extension) { @@ -1037,20 +981,19 @@ function initExtensionField(ext) { return field.default; } switch (field.kind) { - case 'enum': + case "enum": return field.T.values[0].no; - case 'scalar': + case "scalar": return scalarZeroValue(field.T, field.L); - case 'message': - const T = field.T, - value = new T(); + case "message": + const T = field.T, value = new T(); return T.fieldWrapper ? T.fieldWrapper.unwrapField(value) : value; - case 'map': - throw 'map fields are not allowed to be extensions'; + case "map": + throw "map fields are not allowed to be extensions"; } } function filterUnknownFields(unknownFields, field) { - if (!field.repeated && (field.kind == 'enum' || field.kind == 'scalar')) { + if (!field.repeated && (field.kind == "enum" || field.kind == "scalar")) { for (let i = unknownFields.length - 1; i >= 0; --i) { if (unknownFields[i].no == field.no) { return [unknownFields[i]]; @@ -1062,13 +1005,12 @@ function filterUnknownFields(unknownFields, field) { } // exa/proto_ts/node_modules/@bufbuild/protobuf/dist/esm/proto-base64.js -var encTable = - 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/'.split(''); +var encTable = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".split(""); var decTable = []; for (let i = 0; i < encTable.length; i++) decTable[encTable[i].charCodeAt(0)] = i; -decTable['-'.charCodeAt(0)] = encTable.indexOf('+'); -decTable['_'.charCodeAt(0)] = encTable.indexOf('/'); +decTable["-".charCodeAt(0)] = encTable.indexOf("+"); +decTable["_".charCodeAt(0)] = encTable.indexOf("/"); var protoBase64 = { /** * Decodes a base64 string to a byte array. @@ -1082,31 +1024,29 @@ var protoBase64 = { * no padding */ dec(base64Str) { - let es = (base64Str.length * 3) / 4; - if (base64Str[base64Str.length - 2] == '=') es -= 2; - else if (base64Str[base64Str.length - 1] == '=') es -= 1; - let bytes = new Uint8Array(es), - bytePos = 0, - groupPos = 0, - b, - p = 0; + let es = base64Str.length * 3 / 4; + if (base64Str[base64Str.length - 2] == "=") + es -= 2; + else if (base64Str[base64Str.length - 1] == "=") + es -= 1; + let bytes = new Uint8Array(es), bytePos = 0, groupPos = 0, b, p = 0; for (let i = 0; i < base64Str.length; i++) { b = decTable[base64Str.charCodeAt(i)]; if (b === void 0) { switch (base64Str[i]) { // @ts-ignore TS7029: Fallthrough case in switch - case '=': + case "=": groupPos = 0; // reset state when padding found // @ts-ignore TS7029: Fallthrough case in switch - case '\n': - case '\r': - case ' ': - case ' ': + case "\n": + case "\r": + case " ": + case " ": continue; // skip white-space, and padding default: - throw Error('invalid base64 string.'); + throw Error("invalid base64 string."); } } switch (groupPos) { @@ -1115,32 +1055,30 @@ var protoBase64 = { groupPos = 1; break; case 1: - bytes[bytePos++] = (p << 2) | ((b & 48) >> 4); + bytes[bytePos++] = p << 2 | (b & 48) >> 4; p = b; groupPos = 2; break; case 2: - bytes[bytePos++] = ((p & 15) << 4) | ((b & 60) >> 2); + bytes[bytePos++] = (p & 15) << 4 | (b & 60) >> 2; p = b; groupPos = 3; break; case 3: - bytes[bytePos++] = ((p & 3) << 6) | b; + bytes[bytePos++] = (p & 3) << 6 | b; groupPos = 0; break; } } - if (groupPos == 1) throw Error('invalid base64 string.'); + if (groupPos == 1) + throw Error("invalid base64 string."); return bytes.subarray(0, bytePos); }, /** * Encode a byte array to a base64 string. */ enc(bytes) { - let base64 = '', - groupPos = 0, - b, - p = 0; + let base64 = "", groupPos = 0, b, p = 0; for (let i = 0; i < bytes.length; i++) { b = bytes[i]; switch (groupPos) { @@ -1150,12 +1088,12 @@ var protoBase64 = { groupPos = 1; break; case 1: - base64 += encTable[p | (b >> 4)]; + base64 += encTable[p | b >> 4]; p = (b & 15) << 2; groupPos = 2; break; case 2: - base64 += encTable[p | (b >> 6)]; + base64 += encTable[p | b >> 6]; base64 += encTable[b & 63]; groupPos = 0; break; @@ -1163,30 +1101,22 @@ var protoBase64 = { } if (groupPos) { base64 += encTable[p]; - base64 += '='; - if (groupPos == 1) base64 += '='; + base64 += "="; + if (groupPos == 1) + base64 += "="; } return base64; - }, + } }; // exa/proto_ts/node_modules/@bufbuild/protobuf/dist/esm/extension-accessor.js function getExtension(message, extension, options) { assertExtendee(extension, message); const opt = extension.runtime.bin.makeReadOptions(options); - const ufs = filterUnknownFields( - message.getType().runtime.bin.listUnknownFields(message), - extension.field, - ); + const ufs = filterUnknownFields(message.getType().runtime.bin.listUnknownFields(message), extension.field); const [container, get] = createExtensionContainer(extension); for (const uf of ufs) { - extension.runtime.bin.readField( - container, - opt.readerFactory(uf.data), - extension.field, - uf.wireType, - opt, - ); + extension.runtime.bin.readField(container, opt.readerFactory(uf.data), extension.field, uf.wireType, opt); } return get(); } @@ -1195,20 +1125,15 @@ function setExtension(message, extension, value, options) { const readOpt = extension.runtime.bin.makeReadOptions(options); const writeOpt = extension.runtime.bin.makeWriteOptions(options); if (hasExtension(message, extension)) { - const ufs = message - .getType() - .runtime.bin.listUnknownFields(message) - .filter((uf) => uf.no != extension.field.no); + const ufs = message.getType().runtime.bin.listUnknownFields(message).filter((uf) => uf.no != extension.field.no); message.getType().runtime.bin.discardUnknownFields(message); for (const uf of ufs) { - message - .getType() - .runtime.bin.onUnknownField(message, uf.no, uf.wireType, uf.data); + message.getType().runtime.bin.onUnknownField(message, uf.no, uf.wireType, uf.data); } } const writer = writeOpt.writerFactory(); let f = extension.field; - if (!f.opt && !f.repeated && (f.kind == 'enum' || f.kind == 'scalar')) { + if (!f.opt && !f.repeated && (f.kind == "enum" || f.kind == "scalar")) { f = Object.assign(Object.assign({}, extension.field), { opt: true }); } extension.runtime.bin.writeField(f, value, writer, writeOpt); @@ -1221,18 +1146,10 @@ function setExtension(message, extension, value, options) { } function hasExtension(message, extension) { const messageType = message.getType(); - return ( - extension.extendee.typeName === messageType.typeName && - !!messageType.runtime.bin - .listUnknownFields(message) - .find((uf) => uf.no == extension.field.no) - ); + return extension.extendee.typeName === messageType.typeName && !!messageType.runtime.bin.listUnknownFields(message).find((uf) => uf.no == extension.field.no); } function assertExtendee(extension, message) { - assert( - extension.extendee.typeName == message.getType().typeName, - `extension ${extension.typeName} can only be applied to message ${extension.extendee.typeName}`, - ); + assert(extension.extendee.typeName == message.getType().typeName, `extension ${extension.typeName} can only be applied to message ${extension.extendee.typeName}`); } // exa/proto_ts/node_modules/@bufbuild/protobuf/dist/esm/private/reflect.js @@ -1245,18 +1162,18 @@ function isFieldSet(field, target) { return target[field.oneof.localName].case === localName; } switch (field.kind) { - case 'enum': - case 'scalar': + case "enum": + case "scalar": if (field.opt || field.req) { return target[localName] !== void 0; } - if (field.kind == 'enum') { + if (field.kind == "enum") { return target[localName] !== field.T.values[0].no; } return !isScalarZeroValue(field.T, target[localName]); - case 'message': + case "message": return target[localName] !== void 0; - case 'map': + case "map": return Object.keys(target[localName]).length > 0; } } @@ -1269,18 +1186,16 @@ function clearField(field, target) { target[field.oneof.localName] = { case: void 0 }; } else { switch (field.kind) { - case 'map': + case "map": target[localName] = {}; break; - case 'enum': + case "enum": target[localName] = implicitPresence ? field.T.values[0].no : void 0; break; - case 'scalar': - target[localName] = implicitPresence - ? scalarZeroValue(field.T, field.L) - : void 0; + case "scalar": + target[localName] = implicitPresence ? scalarZeroValue(field.T, field.L) : void 0; break; - case 'message': + case "message": target[localName] = void 0; break; } @@ -1289,23 +1204,14 @@ function clearField(field, target) { // exa/proto_ts/node_modules/@bufbuild/protobuf/dist/esm/is-message.js function isMessage(arg, type) { - if (arg === null || typeof arg != 'object') { + if (arg === null || typeof arg != "object") { return false; } - if ( - !Object.getOwnPropertyNames(Message.prototype).every( - (m) => m in arg && typeof arg[m] == 'function', - ) - ) { + if (!Object.getOwnPropertyNames(Message.prototype).every((m) => m in arg && typeof arg[m] == "function")) { return false; } const actualType = arg.getType(); - if ( - actualType === null || - typeof actualType != 'function' || - !('typeName' in actualType) || - typeof actualType.typeName != 'string' - ) { + if (actualType === null || typeof actualType != "function" || !("typeName" in actualType) || typeof actualType.typeName != "string") { return false; } return type === void 0 ? true : actualType.typeName == type.typeName; @@ -1319,36 +1225,32 @@ function wrapField(type, value) { return type.fieldWrapper.wrapField(value); } var wktWrapperToScalarType = { - 'google.protobuf.DoubleValue': ScalarType.DOUBLE, - 'google.protobuf.FloatValue': ScalarType.FLOAT, - 'google.protobuf.Int64Value': ScalarType.INT64, - 'google.protobuf.UInt64Value': ScalarType.UINT64, - 'google.protobuf.Int32Value': ScalarType.INT32, - 'google.protobuf.UInt32Value': ScalarType.UINT32, - 'google.protobuf.BoolValue': ScalarType.BOOL, - 'google.protobuf.StringValue': ScalarType.STRING, - 'google.protobuf.BytesValue': ScalarType.BYTES, + "google.protobuf.DoubleValue": ScalarType.DOUBLE, + "google.protobuf.FloatValue": ScalarType.FLOAT, + "google.protobuf.Int64Value": ScalarType.INT64, + "google.protobuf.UInt64Value": ScalarType.UINT64, + "google.protobuf.Int32Value": ScalarType.INT32, + "google.protobuf.UInt32Value": ScalarType.UINT32, + "google.protobuf.BoolValue": ScalarType.BOOL, + "google.protobuf.StringValue": ScalarType.STRING, + "google.protobuf.BytesValue": ScalarType.BYTES }; // exa/proto_ts/node_modules/@bufbuild/protobuf/dist/esm/private/json-format.js var jsonReadDefaults = { - ignoreUnknownFields: false, + ignoreUnknownFields: false }; var jsonWriteDefaults = { emitDefaultValues: false, enumAsInteger: false, useProtoFieldName: false, - prettySpaces: 0, + prettySpaces: 0 }; function makeReadOptions(options) { - return options - ? Object.assign(Object.assign({}, jsonReadDefaults), options) - : jsonReadDefaults; + return options ? Object.assign(Object.assign({}, jsonReadDefaults), options) : jsonReadDefaults; } function makeWriteOptions(options) { - return options - ? Object.assign(Object.assign({}, jsonWriteDefaults), options) - : jsonWriteDefaults; + return options ? Object.assign(Object.assign({}, jsonWriteDefaults), options) : jsonWriteDefaults; } var tokenNull = /* @__PURE__ */ Symbol(); var tokenIgnoredUnknownEnum = /* @__PURE__ */ Symbol(); @@ -1357,10 +1259,8 @@ function makeJsonFormat() { makeReadOptions, makeWriteOptions, readMessage(type, json, options, message) { - if (json == null || Array.isArray(json) || typeof json != 'object') { - throw new Error( - `cannot decode message ${type.typeName} from JSON: ${debugJsonValue(json)}`, - ); + if (json == null || Array.isArray(json) || typeof json != "object") { + throw new Error(`cannot decode message ${type.typeName} from JSON: ${debugJsonValue(json)}`); } message = message !== null && message !== void 0 ? message : new type(); const oneofSeen = /* @__PURE__ */ new Map(); @@ -1369,30 +1269,20 @@ function makeJsonFormat() { const field = type.fields.findJsonName(jsonKey); if (field) { if (field.oneof) { - if (jsonValue === null && field.kind == 'scalar') { + if (jsonValue === null && field.kind == "scalar") { continue; } const seen = oneofSeen.get(field.oneof); if (seen !== void 0) { - throw new Error( - `cannot decode message ${type.typeName} from JSON: multiple keys for oneof "${field.oneof.name}" present: "${seen}", "${jsonKey}"`, - ); + throw new Error(`cannot decode message ${type.typeName} from JSON: multiple keys for oneof "${field.oneof.name}" present: "${seen}", "${jsonKey}"`); } oneofSeen.set(field.oneof, jsonKey); } readField(message, jsonValue, field, options, type); } else { let found = false; - if ( - (registry === null || registry === void 0 - ? void 0 - : registry.findExtension) && - jsonKey.startsWith('[') && - jsonKey.endsWith(']') - ) { - const ext = registry.findExtension( - jsonKey.substring(1, jsonKey.length - 1), - ); + if ((registry === null || registry === void 0 ? void 0 : registry.findExtension) && jsonKey.startsWith("[") && jsonKey.endsWith("]")) { + const ext = registry.findExtension(jsonKey.substring(1, jsonKey.length - 1)); if (ext && ext.extendee.typeName == type.typeName) { found = true; const [container, get] = createExtensionContainer(ext); @@ -1401,9 +1291,7 @@ function makeJsonFormat() { } } if (!found && !options.ignoreUnknownFields) { - throw new Error( - `cannot decode message ${type.typeName} from JSON: key "${jsonKey}" is unknown`, - ); + throw new Error(`cannot decode message ${type.typeName} from JSON: key "${jsonKey}" is unknown`); } } } @@ -1426,21 +1314,14 @@ function makeJsonFormat() { continue; } } - const value = field.oneof - ? message[field.oneof.localName].value - : message[field.localName]; + const value = field.oneof ? message[field.oneof.localName].value : message[field.localName]; const jsonValue = writeField(field, value, options); if (jsonValue !== void 0) { - json[options.useProtoFieldName ? field.name : field.jsonName] = - jsonValue; + json[options.useProtoFieldName ? field.name : field.jsonName] = jsonValue; } } const registry = options.typeRegistry; - if ( - registry === null || registry === void 0 - ? void 0 - : registry.findExtensionFor - ) { + if (registry === null || registry === void 0 ? void 0 : registry.findExtensionFor) { for (const uf of type.runtime.bin.listUnknownFields(message)) { const ext = registry.findExtensionFor(type.typeName, uf.no); if (ext && hasExtension(message, ext)) { @@ -1453,21 +1334,14 @@ function makeJsonFormat() { } } } catch (e) { - const m = field - ? `cannot encode field ${type.typeName}.${field.name} to JSON` - : `cannot encode message ${type.typeName} to JSON`; + const m = field ? `cannot encode field ${type.typeName}.${field.name} to JSON` : `cannot encode message ${type.typeName} to JSON`; const r = e instanceof Error ? e.message : String(e); - throw new Error(m + (r.length > 0 ? `: ${r}` : '')); + throw new Error(m + (r.length > 0 ? `: ${r}` : "")); } return json; }, readScalar(type, json, longType) { - return readScalar( - type, - json, - longType !== null && longType !== void 0 ? longType : LongType.BIGINT, - true, - ); + return readScalar(type, json, longType !== null && longType !== void 0 ? longType : LongType.BIGINT, true); }, writeScalar(type, value, emitDefaultValues) { if (value === void 0) { @@ -1478,18 +1352,18 @@ function makeJsonFormat() { } return void 0; }, - debug: debugJsonValue, + debug: debugJsonValue }; } function debugJsonValue(json) { if (json === null) { - return 'null'; + return "null"; } switch (typeof json) { - case 'object': - return Array.isArray(json) ? 'array' : 'object'; - case 'string': - return json.length > 100 ? 'string' : `"${json.split('"').join('\\"')}"`; + case "object": + return Array.isArray(json) ? "array" : "object"; + case "string": + return json.length > 100 ? "string" : `"${json.split('"').join('\\"')}"`; default: return String(json); } @@ -1497,38 +1371,29 @@ function debugJsonValue(json) { function readField(target, jsonValue, field, options, parentType) { let localName = field.localName; if (field.repeated) { - assert(field.kind != 'map'); + assert(field.kind != "map"); if (jsonValue === null) { return; } if (!Array.isArray(jsonValue)) { - throw new Error( - `cannot decode field ${parentType.typeName}.${field.name} from JSON: ${debugJsonValue(jsonValue)}`, - ); + throw new Error(`cannot decode field ${parentType.typeName}.${field.name} from JSON: ${debugJsonValue(jsonValue)}`); } const targetArray = target[localName]; for (const jsonItem of jsonValue) { if (jsonItem === null) { - throw new Error( - `cannot decode field ${parentType.typeName}.${field.name} from JSON: ${debugJsonValue(jsonItem)}`, - ); + throw new Error(`cannot decode field ${parentType.typeName}.${field.name} from JSON: ${debugJsonValue(jsonItem)}`); } switch (field.kind) { - case 'message': + case "message": targetArray.push(field.T.fromJson(jsonItem, options)); break; - case 'enum': - const enumValue = readEnum( - field.T, - jsonItem, - options.ignoreUnknownFields, - true, - ); + case "enum": + const enumValue = readEnum(field.T, jsonItem, options.ignoreUnknownFields, true); if (enumValue !== tokenIgnoredUnknownEnum) { targetArray.push(enumValue); } break; - case 'scalar': + case "scalar": try { targetArray.push(readScalar(field.T, jsonItem, field.L, true)); } catch (e) { @@ -1541,21 +1406,17 @@ function readField(target, jsonValue, field, options, parentType) { break; } } - } else if (field.kind == 'map') { + } else if (field.kind == "map") { if (jsonValue === null) { return; } - if (typeof jsonValue != 'object' || Array.isArray(jsonValue)) { - throw new Error( - `cannot decode field ${parentType.typeName}.${field.name} from JSON: ${debugJsonValue(jsonValue)}`, - ); + if (typeof jsonValue != "object" || Array.isArray(jsonValue)) { + throw new Error(`cannot decode field ${parentType.typeName}.${field.name} from JSON: ${debugJsonValue(jsonValue)}`); } const targetMap = target[localName]; for (const [jsonMapKey, jsonMapValue] of Object.entries(jsonValue)) { if (jsonMapValue === null) { - throw new Error( - `cannot decode field ${parentType.typeName}.${field.name} from JSON: map value null`, - ); + throw new Error(`cannot decode field ${parentType.typeName}.${field.name} from JSON: map value null`); } let key; try { @@ -1568,28 +1429,18 @@ function readField(target, jsonValue, field, options, parentType) { throw new Error(m); } switch (field.V.kind) { - case 'message': + case "message": targetMap[key] = field.V.T.fromJson(jsonMapValue, options); break; - case 'enum': - const enumValue = readEnum( - field.V.T, - jsonMapValue, - options.ignoreUnknownFields, - true, - ); + case "enum": + const enumValue = readEnum(field.V.T, jsonMapValue, options.ignoreUnknownFields, true); if (enumValue !== tokenIgnoredUnknownEnum) { targetMap[key] = enumValue; } break; - case 'scalar': + case "scalar": try { - targetMap[key] = readScalar( - field.V.T, - jsonMapValue, - LongType.BIGINT, - true, - ); + targetMap[key] = readScalar(field.V.T, jsonMapValue, LongType.BIGINT, true); } catch (e) { let m = `cannot decode map value for field ${parentType.typeName}.${field.name} from JSON: ${debugJsonValue(jsonValue)}`; if (e instanceof Error && e.message.length > 0) { @@ -1603,38 +1454,26 @@ function readField(target, jsonValue, field, options, parentType) { } else { if (field.oneof) { target = target[field.oneof.localName] = { case: localName }; - localName = 'value'; + localName = "value"; } switch (field.kind) { - case 'message': + case "message": const messageType = field.T; - if ( - jsonValue === null && - messageType.typeName != 'google.protobuf.Value' - ) { + if (jsonValue === null && messageType.typeName != "google.protobuf.Value") { return; } let currentValue = target[localName]; if (isMessage(currentValue)) { currentValue.fromJson(jsonValue, options); } else { - target[localName] = currentValue = messageType.fromJson( - jsonValue, - options, - ); + target[localName] = currentValue = messageType.fromJson(jsonValue, options); if (messageType.fieldWrapper && !field.oneof) { - target[localName] = - messageType.fieldWrapper.unwrapField(currentValue); + target[localName] = messageType.fieldWrapper.unwrapField(currentValue); } } break; - case 'enum': - const enumValue = readEnum( - field.T, - jsonValue, - options.ignoreUnknownFields, - false, - ); + case "enum": + const enumValue = readEnum(field.T, jsonValue, options.ignoreUnknownFields, false); switch (enumValue) { case tokenNull: clearField(field, target); @@ -1646,7 +1485,7 @@ function readField(target, jsonValue, field, options, parentType) { break; } break; - case 'scalar': + case "scalar": try { const scalarValue = readScalar(field.T, jsonValue, field.L, false); switch (scalarValue) { @@ -1671,10 +1510,10 @@ function readField(target, jsonValue, field, options, parentType) { function readMapKey(type, json) { if (type === ScalarType.BOOL) { switch (json) { - case 'true': + case "true": json = true; break; - case 'false': + case "false": json = false; break; } @@ -1693,16 +1532,19 @@ function readScalar(type, json, longType, nullAsZeroValue) { // Either numbers or strings are accepted. Exponent notation is also accepted. case ScalarType.DOUBLE: case ScalarType.FLOAT: - if (json === 'NaN') return Number.NaN; - if (json === 'Infinity') return Number.POSITIVE_INFINITY; - if (json === '-Infinity') return Number.NEGATIVE_INFINITY; - if (json === '') { + if (json === "NaN") + return Number.NaN; + if (json === "Infinity") + return Number.POSITIVE_INFINITY; + if (json === "-Infinity") + return Number.NEGATIVE_INFINITY; + if (json === "") { break; } - if (typeof json == 'string' && json.trim().length !== json.length) { + if (typeof json == "string" && json.trim().length !== json.length) { break; } - if (typeof json != 'string' && typeof json != 'number') { + if (typeof json != "string" && typeof json != "number") { break; } const float = Number(json); @@ -1712,7 +1554,8 @@ function readScalar(type, json, longType, nullAsZeroValue) { if (!Number.isFinite(float)) { break; } - if (type == ScalarType.FLOAT) assertFloat32(float); + if (type == ScalarType.FLOAT) + assertFloat32(float); return float; // int32, fixed32, uint32: JSON value will be a decimal number. Either numbers or strings are accepted. case ScalarType.INT32: @@ -1721,65 +1564,74 @@ function readScalar(type, json, longType, nullAsZeroValue) { case ScalarType.SINT32: case ScalarType.UINT32: let int32; - if (typeof json == 'number') int32 = json; - else if (typeof json == 'string' && json.length > 0) { - if (json.trim().length === json.length) int32 = Number(json); + if (typeof json == "number") + int32 = json; + else if (typeof json == "string" && json.length > 0) { + if (json.trim().length === json.length) + int32 = Number(json); } - if (int32 === void 0) break; + if (int32 === void 0) + break; if (type == ScalarType.UINT32 || type == ScalarType.FIXED32) assertUInt32(int32); - else assertInt32(int32); + else + assertInt32(int32); return int32; // int64, fixed64, uint64: JSON value will be a decimal string. Either numbers or strings are accepted. case ScalarType.INT64: case ScalarType.SFIXED64: case ScalarType.SINT64: - if (typeof json != 'number' && typeof json != 'string') break; + if (typeof json != "number" && typeof json != "string") + break; const long = protoInt64.parse(json); return longType ? long.toString() : long; case ScalarType.FIXED64: case ScalarType.UINT64: - if (typeof json != 'number' && typeof json != 'string') break; + if (typeof json != "number" && typeof json != "string") + break; const uLong = protoInt64.uParse(json); return longType ? uLong.toString() : uLong; // bool: case ScalarType.BOOL: - if (typeof json !== 'boolean') break; + if (typeof json !== "boolean") + break; return json; // string: case ScalarType.STRING: - if (typeof json !== 'string') { + if (typeof json !== "string") { break; } try { encodeURIComponent(json); } catch (e) { - throw new Error('invalid UTF8'); + throw new Error("invalid UTF8"); } return json; // bytes: JSON value will be the data encoded as a string using standard base64 encoding with paddings. // Either standard or URL-safe base64 encoding with/without paddings are accepted. case ScalarType.BYTES: - if (json === '') return new Uint8Array(0); - if (typeof json !== 'string') break; + if (json === "") + return new Uint8Array(0); + if (typeof json !== "string") + break; return protoBase64.dec(json); } throw new Error(); } function readEnum(type, json, ignoreUnknownFields, nullAsZeroValue) { if (json === null) { - if (type.typeName == 'google.protobuf.NullValue') { + if (type.typeName == "google.protobuf.NullValue") { return 0; } return nullAsZeroValue ? type.values[0].no : tokenNull; } switch (typeof json) { - case 'number': + case "number": if (Number.isInteger(json)) { return json; } break; - case 'string': + case "string": const value = type.findName(json); if (value !== void 0) { return value.no; @@ -1789,18 +1641,16 @@ function readEnum(type, json, ignoreUnknownFields, nullAsZeroValue) { } break; } - throw new Error( - `cannot decode enum ${type.typeName} from JSON: ${debugJsonValue(json)}`, - ); + throw new Error(`cannot decode enum ${type.typeName} from JSON: ${debugJsonValue(json)}`); } function canEmitFieldDefaultValue(field) { - if (field.repeated || field.kind == 'map') { + if (field.repeated || field.kind == "map") { return true; } if (field.oneof) { return false; } - if (field.kind == 'message') { + if (field.kind == "message") { return false; } if (field.opt || field.req) { @@ -1809,29 +1659,25 @@ function canEmitFieldDefaultValue(field) { return true; } function writeField(field, value, options) { - if (field.kind == 'map') { - assert(typeof value == 'object' && value != null); + if (field.kind == "map") { + assert(typeof value == "object" && value != null); const jsonObj = {}; const entries = Object.entries(value); switch (field.V.kind) { - case 'scalar': + case "scalar": for (const [entryKey, entryValue] of entries) { jsonObj[entryKey.toString()] = writeScalar(field.V.T, entryValue); } break; - case 'message': + case "message": for (const [entryKey, entryValue] of entries) { jsonObj[entryKey.toString()] = entryValue.toJson(options); } break; - case 'enum': + case "enum": const enumType = field.V.T; for (const [entryKey, entryValue] of entries) { - jsonObj[entryKey.toString()] = writeEnum( - enumType, - entryValue, - options.enumAsInteger, - ); + jsonObj[entryKey.toString()] = writeEnum(enumType, entryValue, options.enumAsInteger); } break; } @@ -1841,17 +1687,17 @@ function writeField(field, value, options) { assert(Array.isArray(value)); const jsonArr = []; switch (field.kind) { - case 'scalar': + case "scalar": for (let i = 0; i < value.length; i++) { jsonArr.push(writeScalar(field.T, value[i])); } break; - case 'enum': + case "enum": for (let i = 0; i < value.length; i++) { jsonArr.push(writeEnum(field.T, value[i], options.enumAsInteger)); } break; - case 'message': + case "message": for (let i = 0; i < value.length; i++) { jsonArr.push(value[i].toJson(options)); } @@ -1860,28 +1706,25 @@ function writeField(field, value, options) { return options.emitDefaultValues || jsonArr.length > 0 ? jsonArr : void 0; } switch (field.kind) { - case 'scalar': + case "scalar": return writeScalar(field.T, value); - case 'enum': + case "enum": return writeEnum(field.T, value, options.enumAsInteger); - case 'message': + case "message": return wrapField(field.T, value).toJson(options); } } function writeEnum(type, value, enumAsInteger) { var _a; - assert(typeof value == 'number'); - if (type.typeName == 'google.protobuf.NullValue') { + assert(typeof value == "number"); + if (type.typeName == "google.protobuf.NullValue") { return null; } if (enumAsInteger) { return value; } const val = type.findNumber(value); - return (_a = val === null || val === void 0 ? void 0 : val.name) !== null && - _a !== void 0 - ? _a - : value; + return (_a = val === null || val === void 0 ? void 0 : val.name) !== null && _a !== void 0 ? _a : value; } function writeScalar(type, value) { switch (type) { @@ -1891,25 +1734,28 @@ function writeScalar(type, value) { case ScalarType.SINT32: case ScalarType.FIXED32: case ScalarType.UINT32: - assert(typeof value == 'number'); + assert(typeof value == "number"); return value; // float, double: JSON value will be a number or one of the special string values "NaN", "Infinity", and "-Infinity". // Either numbers or strings are accepted. Exponent notation is also accepted. case ScalarType.FLOAT: // assertFloat32(value); case ScalarType.DOUBLE: - assert(typeof value == 'number'); - if (Number.isNaN(value)) return 'NaN'; - if (value === Number.POSITIVE_INFINITY) return 'Infinity'; - if (value === Number.NEGATIVE_INFINITY) return '-Infinity'; + assert(typeof value == "number"); + if (Number.isNaN(value)) + return "NaN"; + if (value === Number.POSITIVE_INFINITY) + return "Infinity"; + if (value === Number.NEGATIVE_INFINITY) + return "-Infinity"; return value; // string: case ScalarType.STRING: - assert(typeof value == 'string'); + assert(typeof value == "string"); return value; // bool: case ScalarType.BOOL: - assert(typeof value == 'boolean'); + assert(typeof value == "boolean"); return value; // JSON value will be a decimal string. Either numbers or strings are accepted. case ScalarType.UINT64: @@ -1917,11 +1763,7 @@ function writeScalar(type, value) { case ScalarType.INT64: case ScalarType.SFIXED64: case ScalarType.SINT64: - assert( - typeof value == 'bigint' || - typeof value == 'string' || - typeof value == 'number', - ); + assert(typeof value == "bigint" || typeof value == "string" || typeof value == "number"); return value.toString(); // bytes: JSON value will be the data encoded as a string using standard base64 encoding with paddings. // Either standard or URL-safe base64 encoding with/without paddings are accepted. @@ -1932,26 +1774,20 @@ function writeScalar(type, value) { } // exa/proto_ts/node_modules/@bufbuild/protobuf/dist/esm/private/binary-format.js -var unknownFieldsSymbol = /* @__PURE__ */ Symbol( - '@bufbuild/protobuf/unknown-fields', -); +var unknownFieldsSymbol = /* @__PURE__ */ Symbol("@bufbuild/protobuf/unknown-fields"); var readDefaults = { readUnknownFields: true, - readerFactory: (bytes) => new BinaryReader(bytes), + readerFactory: (bytes) => new BinaryReader(bytes) }; var writeDefaults = { writeUnknownFields: true, - writerFactory: () => new BinaryWriter(), + writerFactory: () => new BinaryWriter() }; function makeReadOptions2(options) { - return options - ? Object.assign(Object.assign({}, readDefaults), options) - : readDefaults; + return options ? Object.assign(Object.assign({}, readDefaults), options) : readDefaults; } function makeWriteOptions2(options) { - return options - ? Object.assign(Object.assign({}, writeDefaults), options) - : writeDefaults; + return options ? Object.assign(Object.assign({}, writeDefaults), options) : writeDefaults; } function makeBinaryFormat() { return { @@ -1959,9 +1795,7 @@ function makeBinaryFormat() { makeWriteOptions: makeWriteOptions2, listUnknownFields(message) { var _a; - return (_a = message[unknownFieldsSymbol]) !== null && _a !== void 0 - ? _a - : []; + return (_a = message[unknownFieldsSymbol]) !== null && _a !== void 0 ? _a : []; }, discardUnknownFields(message) { delete message[unknownFieldsSymbol]; @@ -1982,17 +1816,9 @@ function makeBinaryFormat() { } m[unknownFieldsSymbol].push({ no, wireType, data }); }, - readMessage( - message, - reader, - lengthOrEndTagFieldNo, - options, - delimitedMessageEncoding, - ) { + readMessage(message, reader, lengthOrEndTagFieldNo, options, delimitedMessageEncoding) { const type = message.getType(); - const end = delimitedMessageEncoding - ? reader.len - : reader.pos + lengthOrEndTagFieldNo; + const end = delimitedMessageEncoding ? reader.len : reader.pos + lengthOrEndTagFieldNo; let fieldNo, wireType; while (reader.pos < end) { [fieldNo, wireType] = reader.tag(); @@ -2009,10 +1835,8 @@ function makeBinaryFormat() { } readField2(message, reader, field, wireType, options); } - if ( - delimitedMessageEncoding && // eslint-disable-line @typescript-eslint/strict-boolean-expressions - (wireType != WireType.EndGroup || fieldNo !== lengthOrEndTagFieldNo) - ) { + if (delimitedMessageEncoding && // eslint-disable-line @typescript-eslint/strict-boolean-expressions + (wireType != WireType.EndGroup || fieldNo !== lengthOrEndTagFieldNo)) { throw new Error(`invalid end group tag`); } }, @@ -2022,15 +1846,11 @@ function makeBinaryFormat() { for (const field of type.fields.byNumber()) { if (!isFieldSet(field, message)) { if (field.req) { - throw new Error( - `cannot encode field ${type.typeName}.${field.name} to binary: required field not set`, - ); + throw new Error(`cannot encode field ${type.typeName}.${field.name} to binary: required field not set`); } continue; } - const value = field.oneof - ? message[field.oneof.localName].value - : message[field.localName]; + const value = field.oneof ? message[field.oneof.localName].value : message[field.localName]; writeField2(field, value, writer, options); } if (options.writeUnknownFields) { @@ -2043,7 +1863,7 @@ function makeBinaryFormat() { return void 0; } writeField2(field, value, writer, options); - }, + } }; } function readField2(target, reader, field, wireType, options) { @@ -2054,22 +1874,19 @@ function readField2(target, reader, field, wireType, options) { delete target.value; } target.case = localName; - localName = 'value'; + localName = "value"; } switch (field.kind) { - case 'scalar': - case 'enum': - const scalarType = field.kind == 'enum' ? ScalarType.INT32 : field.T; + case "scalar": + case "enum": + const scalarType = field.kind == "enum" ? ScalarType.INT32 : field.T; let read = readScalar2; - if (field.kind == 'scalar' && field.L > 0) { + if (field.kind == "scalar" && field.L > 0) { read = readScalarLTString; } if (repeated) { let arr = target[localName]; - const isPacked = - wireType == WireType.LengthDelimited && - scalarType != ScalarType.STRING && - scalarType != ScalarType.BYTES; + const isPacked = wireType == WireType.LengthDelimited && scalarType != ScalarType.STRING && scalarType != ScalarType.BYTES; if (isPacked) { let e = reader.uint32() + reader.pos; while (reader.pos < e) { @@ -2082,31 +1899,22 @@ function readField2(target, reader, field, wireType, options) { target[localName] = read(reader, scalarType); } break; - case 'message': + case "message": const messageType = field.T; if (repeated) { - target[localName].push( - readMessageField(reader, new messageType(), options, field), - ); + target[localName].push(readMessageField(reader, new messageType(), options, field)); } else { if (isMessage(target[localName])) { readMessageField(reader, target[localName], options, field); } else { - target[localName] = readMessageField( - reader, - new messageType(), - options, - field, - ); + target[localName] = readMessageField(reader, new messageType(), options, field); if (messageType.fieldWrapper && !field.oneof && !field.repeated) { - target[localName] = messageType.fieldWrapper.unwrapField( - target[localName], - ); + target[localName] = messageType.fieldWrapper.unwrapField(target[localName]); } } } break; - case 'map': + case "map": let [mapKey, mapVal] = readMapEntry(field, reader, options); target[localName][mapKey] = mapVal; break; @@ -2114,21 +1922,19 @@ function readField2(target, reader, field, wireType, options) { } function readMessageField(reader, message, options, field) { const format = message.getType().runtime.bin; - const delimited = - field === null || field === void 0 ? void 0 : field.delimited; + const delimited = field === null || field === void 0 ? void 0 : field.delimited; format.readMessage( message, reader, delimited ? field.no : reader.uint32(), // eslint-disable-line @typescript-eslint/strict-boolean-expressions options, - delimited, + delimited ); return message; } function readMapEntry(field, reader, options) { - const length = reader.uint32(), - end = reader.pos + length; + const length = reader.uint32(), end = reader.pos + length; let key, val; while (reader.pos < end) { const [fieldNo] = reader.tag(); @@ -2138,13 +1944,13 @@ function readMapEntry(field, reader, options) { break; case 2: switch (field.V.kind) { - case 'scalar': + case "scalar": val = readScalar2(reader, field.V.T); break; - case 'enum': + case "enum": val = reader.int32(); break; - case 'message': + case "message": val = readMessageField(reader, new field.V.T(), options, void 0); break; } @@ -2154,18 +1960,18 @@ function readMapEntry(field, reader, options) { if (key === void 0) { key = scalarZeroValue(field.K, LongType.BIGINT); } - if (typeof key != 'string' && typeof key != 'number') { + if (typeof key != "string" && typeof key != "number") { key = key.toString(); } if (val === void 0) { switch (field.V.kind) { - case 'scalar': + case "scalar": val = scalarZeroValue(field.V.T, LongType.BIGINT); break; - case 'enum': + case "enum": val = field.V.T.values[0].no; break; - case 'message': + case "message": val = new field.V.T(); break; } @@ -2174,7 +1980,7 @@ function readMapEntry(field, reader, options) { } function readScalarLTString(reader, type) { const v = readScalar2(reader, type); - return typeof v == 'bigint' ? v.toString() : v; + return typeof v == "bigint" ? v.toString() : v; } function readScalar2(reader, type) { switch (type) { @@ -2214,9 +2020,9 @@ function writeField2(field, value, writer, options) { assert(value !== void 0); const repeated = field.repeated; switch (field.kind) { - case 'scalar': - case 'enum': - let scalarType = field.kind == 'enum' ? ScalarType.INT32 : field.T; + case "scalar": + case "enum": + let scalarType = field.kind == "enum" ? ScalarType.INT32 : field.T; if (repeated) { assert(Array.isArray(value)); if (field.packed) { @@ -2230,7 +2036,7 @@ function writeField2(field, value, writer, options) { writeScalar2(writer, scalarType, field.no, value); } break; - case 'message': + case "message": if (repeated) { assert(Array.isArray(value)); for (const item of value) { @@ -2240,8 +2046,8 @@ function writeField2(field, value, writer, options) { writeMessageField(writer, options, field, value); } break; - case 'map': - assert(typeof value == 'object' && value != null); + case "map": + assert(typeof value == "object" && value != null); for (const [key, val] of Object.entries(value)) { writeMapEntry(writer, options, field, key, val); } @@ -2261,19 +2067,19 @@ function writeMapEntry(writer, options, field, key, value) { keyValue = Number.parseInt(key); break; case ScalarType.BOOL: - assert(key == 'true' || key == 'false'); - keyValue = key == 'true'; + assert(key == "true" || key == "false"); + keyValue = key == "true"; break; } writeScalar2(writer, field.K, 1, keyValue); switch (field.V.kind) { - case 'scalar': + case "scalar": writeScalar2(writer, field.V.T, 2, value); break; - case 'enum': + case "enum": writeScalar2(writer, ScalarType.INT32, 2, value); break; - case 'message': + case "message": assert(value !== void 0); writer.tag(2, WireType.LengthDelimited).bytes(value.toBinary(options)); break; @@ -2283,14 +2089,9 @@ function writeMapEntry(writer, options, field, key, value) { function writeMessageField(writer, options, field, value) { const message = wrapField(field.T, value); if (field.delimited) - writer - .tag(field.no, WireType.StartGroup) - .raw(message.toBinary(options)) - .tag(field.no, WireType.EndGroup); + writer.tag(field.no, WireType.StartGroup).raw(message.toBinary(options)).tag(field.no, WireType.EndGroup); else - writer - .tag(field.no, WireType.LengthDelimited) - .bytes(message.toBinary(options)); + writer.tag(field.no, WireType.LengthDelimited).bytes(message.toBinary(options)); } function writeScalar2(writer, type, fieldNo, value) { assert(value !== void 0); @@ -2340,47 +2141,37 @@ function makeUtilCommon() { } const type = target.getType(); for (const member of type.fields.byMember()) { - const localName = member.localName, - t = target, - s = source; + const localName = member.localName, t = target, s = source; if (s[localName] === void 0) { continue; } switch (member.kind) { - case 'oneof': + case "oneof": const sk = s[localName].case; if (sk === void 0) { continue; } const sourceField = member.findField(sk); let val = s[localName].value; - if ( - sourceField && - sourceField.kind == 'message' && - !isMessage(val, sourceField.T) - ) { + if (sourceField && sourceField.kind == "message" && !isMessage(val, sourceField.T)) { val = new sourceField.T(val); - } else if ( - sourceField && - sourceField.kind === 'scalar' && - sourceField.T === ScalarType.BYTES - ) { + } else if (sourceField && sourceField.kind === "scalar" && sourceField.T === ScalarType.BYTES) { val = toU8Arr(val); } t[localName] = { case: sk, value: val }; break; - case 'scalar': - case 'enum': + case "scalar": + case "enum": let copy = s[localName]; if (member.T === ScalarType.BYTES) { copy = member.repeated ? copy.map(toU8Arr) : toU8Arr(copy); } t[localName] = copy; break; - case 'map': + case "map": switch (member.V.kind) { - case 'scalar': - case 'enum': + case "scalar": + case "enum": if (member.V.T === ScalarType.BYTES) { for (const [k, v] of Object.entries(s[localName])) { t[localName][k] = toU8Arr(v); @@ -2389,7 +2180,7 @@ function makeUtilCommon() { Object.assign(t[localName], s[localName]); } break; - case 'message': + case "message": const messageType = member.V.T; for (const k of Object.keys(s[localName])) { let val2 = s[localName][k]; @@ -2401,18 +2192,16 @@ function makeUtilCommon() { break; } break; - case 'message': + case "message": const mt = member.T; if (member.repeated) { - t[localName] = s[localName].map((val2) => - isMessage(val2, mt) ? val2 : new mt(val2), - ); + t[localName] = s[localName].map((val2) => isMessage(val2, mt) ? val2 : new mt(val2)); } else { const val2 = s[localName]; if (mt.fieldWrapper) { if ( // We can't use BytesValue.typeName as that will create a circular import - mt.typeName === 'google.protobuf.BytesValue' + mt.typeName === "google.protobuf.BytesValue" ) { t[localName] = toU8Arr(val2); } else { @@ -2442,25 +2231,23 @@ function makeUtilCommon() { return false; } switch (m.kind) { - case 'message': + case "message": return va.every((a2, i) => m.T.equals(a2, vb[i])); - case 'scalar': + case "scalar": return va.every((a2, i) => scalarEquals(m.T, a2, vb[i])); - case 'enum': - return va.every((a2, i) => - scalarEquals(ScalarType.INT32, a2, vb[i]), - ); + case "enum": + return va.every((a2, i) => scalarEquals(ScalarType.INT32, a2, vb[i])); } throw new Error(`repeated cannot contain ${m.kind}`); } switch (m.kind) { - case 'message': + case "message": return m.T.equals(va, vb); - case 'enum': + case "enum": return scalarEquals(ScalarType.INT32, va, vb); - case 'scalar': + case "scalar": return scalarEquals(m.T, va, vb); - case 'oneof': + case "oneof": if (va.case !== vb.case) { return false; } @@ -2469,29 +2256,25 @@ function makeUtilCommon() { return true; } switch (s.kind) { - case 'message': + case "message": return s.T.equals(va.value, vb.value); - case 'enum': + case "enum": return scalarEquals(ScalarType.INT32, va.value, vb.value); - case 'scalar': + case "scalar": return scalarEquals(s.T, va.value, vb.value); } throw new Error(`oneof cannot contain ${s.kind}`); - case 'map': + case "map": const keys = Object.keys(va).concat(Object.keys(vb)); switch (m.V.kind) { - case 'message': + case "message": const messageType = m.V.T; return keys.every((k) => messageType.equals(va[k], vb[k])); - case 'enum': - return keys.every((k) => - scalarEquals(ScalarType.INT32, va[k], vb[k]), - ); - case 'scalar': + case "enum": + return keys.every((k) => scalarEquals(ScalarType.INT32, va[k], vb[k])); + case "scalar": const scalarType = m.V.T; - return keys.every((k) => - scalarEquals(scalarType, va[k], vb[k]), - ); + return keys.every((k) => scalarEquals(scalarType, va[k], vb[k])); } break; } @@ -2499,24 +2282,20 @@ function makeUtilCommon() { }, // TODO use isFieldSet() here to support future field presence clone(message) { - const type = message.getType(), - target = new type(), - any = target; + const type = message.getType(), target = new type(), any = target; for (const member of type.fields.byMember()) { const source = message[member.localName]; let copy; if (member.repeated) { copy = source.map(cloneSingularField); - } else if (member.kind == 'map') { + } else if (member.kind == "map") { copy = any[member.localName]; for (const [key, v] of Object.entries(source)) { copy[key] = cloneSingularField(v); } - } else if (member.kind == 'oneof') { + } else if (member.kind == "oneof") { const f = member.findField(source.case); - copy = f - ? { case: source.case, value: cloneSingularField(source.value) } - : { case: void 0 }; + copy = f ? { case: source.case, value: cloneSingularField(source.value) } : { case: void 0 }; } else { copy = cloneSingularField(source); } @@ -2526,7 +2305,7 @@ function makeUtilCommon() { type.runtime.bin.onUnknownField(any, uf.no, uf.wireType, uf.data); } return target; - }, + } }; } function cloneSingularField(value) { @@ -2555,7 +2334,7 @@ function makeProtoRuntime(syntax, newFieldList, initFields) { bin: makeBinaryFormat(), util: Object.assign(Object.assign({}, makeUtilCommon()), { newFieldList, - initFields, + initFields }), makeMessageType(typeName, fields, opt) { return makeMessageType(this, typeName, fields, opt); @@ -2565,7 +2344,7 @@ function makeProtoRuntime(syntax, newFieldList, initFields) { getEnumType, makeExtension(typeName, extendee, field) { return makeExtension(this, typeName, extendee, field); - }, + } }; } @@ -2603,9 +2382,7 @@ var InternalFieldList = class { } byNumber() { if (!this.numbersAsc) { - this.numbersAsc = this.list() - .concat() - .sort((a, b) => a.no - b.no); + this.numbersAsc = this.list().concat().sort((a, b) => a.no - b.no); } return this.numbersAsc; } @@ -2647,19 +2424,19 @@ function protoCamelCase(snakeCase) { for (let i = 0; i < snakeCase.length; i++) { let c = snakeCase.charAt(i); switch (c) { - case '_': + case "_": capNext = true; break; - case '0': - case '1': - case '2': - case '3': - case '4': - case '5': - case '6': - case '7': - case '8': - case '9': + case "0": + case "1": + case "2": + case "3": + case "4": + case "5": + case "6": + case "7": + case "8": + case "9": b.push(c); capNext = false; break; @@ -2672,28 +2449,28 @@ function protoCamelCase(snakeCase) { break; } } - return b.join(''); + return b.join(""); } var reservedObjectProperties = /* @__PURE__ */ new Set([ // names reserved by JavaScript - 'constructor', - 'toString', - 'toJSON', - 'valueOf', + "constructor", + "toString", + "toJSON", + "valueOf" ]); var reservedMessageProperties = /* @__PURE__ */ new Set([ // names reserved by the runtime - 'getType', - 'clone', - 'equals', - 'fromBinary', - 'fromJson', - 'fromJsonString', - 'toBinary', - 'toJson', - 'toJsonString', + "getType", + "clone", + "equals", + "fromBinary", + "fromJson", + "fromJsonString", + "toBinary", + "toJson", + "toJsonString", // names reserved by the runtime for the future - 'toObject', + "toObject" ]); var fallback = (name) => `${name}$`; var safeMessageProperty = (name) => { @@ -2712,7 +2489,7 @@ var safeObjectProperty = (name) => { // exa/proto_ts/node_modules/@bufbuild/protobuf/dist/esm/private/field.js var InternalOneofInfo = class { constructor(name) { - this.kind = 'oneof'; + this.kind = "oneof"; this.repeated = false; this.packed = false; this.opt = false; @@ -2742,17 +2519,12 @@ function normalizeFieldInfos(fieldInfos, packedByDefault) { var _a, _b, _c, _d, _e, _f; const r = []; let o; - for (const field of typeof fieldInfos == 'function' - ? fieldInfos() - : fieldInfos) { + for (const field of typeof fieldInfos == "function" ? fieldInfos() : fieldInfos) { const f = field; f.localName = localFieldName(field.name, field.oneof !== void 0); - f.jsonName = - (_a = field.jsonName) !== null && _a !== void 0 - ? _a - : fieldJsonName(field.name); + f.jsonName = (_a = field.jsonName) !== null && _a !== void 0 ? _a : fieldJsonName(field.name); f.repeated = (_b = field.repeated) !== null && _b !== void 0 ? _b : false; - if (field.kind == 'scalar') { + if (field.kind == "scalar") { f.L = (_c = field.L) !== null && _c !== void 0 ? _c : LongType.BIGINT; } f.delimited = (_d = field.delimited) !== null && _d !== void 0 ? _d : false; @@ -2760,18 +2532,13 @@ function normalizeFieldInfos(fieldInfos, packedByDefault) { f.opt = (_f = field.opt) !== null && _f !== void 0 ? _f : false; if (field.packed === void 0) { if (packedByDefault) { - f.packed = - field.kind == 'enum' || - (field.kind == 'scalar' && - field.T != ScalarType.BYTES && - field.T != ScalarType.STRING); + f.packed = field.kind == "enum" || field.kind == "scalar" && field.T != ScalarType.BYTES && field.T != ScalarType.STRING; } else { f.packed = false; } } if (field.oneof !== void 0) { - const ooname = - typeof field.oneof == 'string' ? field.oneof : field.oneof.name; + const ooname = typeof field.oneof == "string" ? field.oneof : field.oneof.name; if (!o || o.name != ooname) { o = new InternalOneofInfo(ooname); } @@ -2785,11 +2552,9 @@ function normalizeFieldInfos(fieldInfos, packedByDefault) { // exa/proto_ts/node_modules/@bufbuild/protobuf/dist/esm/proto3.js var proto3 = makeProtoRuntime( - 'proto3', + "proto3", (fields) => { - return new InternalFieldList(fields, (source) => - normalizeFieldInfos(source, true), - ); + return new InternalFieldList(fields, (source) => normalizeFieldInfos(source, true)); }, // TODO merge with proto2 and initExtensionField, also see initPartial, equals, clone (target) => { @@ -2797,30 +2562,29 @@ var proto3 = makeProtoRuntime( if (member.opt) { continue; } - const name = member.localName, - t = target; + const name = member.localName, t = target; if (member.repeated) { t[name] = []; continue; } switch (member.kind) { - case 'oneof': + case "oneof": t[name] = { case: void 0 }; break; - case 'enum': + case "enum": t[name] = 0; break; - case 'map': + case "map": t[name] = {}; break; - case 'scalar': + case "scalar": t[name] = scalarZeroValue(member.T, member.L); break; - case 'message': + case "message": break; } } - }, + } ); // exa/proto_ts/node_modules/@bufbuild/protobuf/dist/esm/google/protobuf/timestamp_pb.js @@ -2832,81 +2596,47 @@ var Timestamp = class _Timestamp extends Message { proto3.util.initPartial(data, this); } fromJson(json, options) { - if (typeof json !== 'string') { - throw new Error( - `cannot decode google.protobuf.Timestamp from JSON: ${proto3.json.debug(json)}`, - ); + if (typeof json !== "string") { + throw new Error(`cannot decode google.protobuf.Timestamp from JSON: ${proto3.json.debug(json)}`); } - const matches = json.match( - /^([0-9]{4})-([0-9]{2})-([0-9]{2})T([0-9]{2}):([0-9]{2}):([0-9]{2})(?:Z|\.([0-9]{3,9})Z|([+-][0-9][0-9]:[0-9][0-9]))$/, - ); + const matches = json.match(/^([0-9]{4})-([0-9]{2})-([0-9]{2})T([0-9]{2}):([0-9]{2}):([0-9]{2})(?:Z|\.([0-9]{3,9})Z|([+-][0-9][0-9]:[0-9][0-9]))$/); if (!matches) { - throw new Error( - `cannot decode google.protobuf.Timestamp from JSON: invalid RFC 3339 string`, - ); + throw new Error(`cannot decode google.protobuf.Timestamp from JSON: invalid RFC 3339 string`); } - const ms = Date.parse( - matches[1] + - '-' + - matches[2] + - '-' + - matches[3] + - 'T' + - matches[4] + - ':' + - matches[5] + - ':' + - matches[6] + - (matches[8] ? matches[8] : 'Z'), - ); + const ms = Date.parse(matches[1] + "-" + matches[2] + "-" + matches[3] + "T" + matches[4] + ":" + matches[5] + ":" + matches[6] + (matches[8] ? matches[8] : "Z")); if (Number.isNaN(ms)) { - throw new Error( - `cannot decode google.protobuf.Timestamp from JSON: invalid RFC 3339 string`, - ); + throw new Error(`cannot decode google.protobuf.Timestamp from JSON: invalid RFC 3339 string`); } - if ( - ms < Date.parse('0001-01-01T00:00:00Z') || - ms > Date.parse('9999-12-31T23:59:59Z') - ) { - throw new Error( - `cannot decode message google.protobuf.Timestamp from JSON: must be from 0001-01-01T00:00:00Z to 9999-12-31T23:59:59Z inclusive`, - ); + if (ms < Date.parse("0001-01-01T00:00:00Z") || ms > Date.parse("9999-12-31T23:59:59Z")) { + throw new Error(`cannot decode message google.protobuf.Timestamp from JSON: must be from 0001-01-01T00:00:00Z to 9999-12-31T23:59:59Z inclusive`); } this.seconds = protoInt64.parse(ms / 1e3); this.nanos = 0; if (matches[7]) { - this.nanos = - parseInt('1' + matches[7] + '0'.repeat(9 - matches[7].length)) - 1e9; + this.nanos = parseInt("1" + matches[7] + "0".repeat(9 - matches[7].length)) - 1e9; } return this; } toJson(options) { const ms = Number(this.seconds) * 1e3; - if ( - ms < Date.parse('0001-01-01T00:00:00Z') || - ms > Date.parse('9999-12-31T23:59:59Z') - ) { - throw new Error( - `cannot encode google.protobuf.Timestamp to JSON: must be from 0001-01-01T00:00:00Z to 9999-12-31T23:59:59Z inclusive`, - ); + if (ms < Date.parse("0001-01-01T00:00:00Z") || ms > Date.parse("9999-12-31T23:59:59Z")) { + throw new Error(`cannot encode google.protobuf.Timestamp to JSON: must be from 0001-01-01T00:00:00Z to 9999-12-31T23:59:59Z inclusive`); } if (this.nanos < 0) { - throw new Error( - `cannot encode google.protobuf.Timestamp to JSON: nanos must not be negative`, - ); + throw new Error(`cannot encode google.protobuf.Timestamp to JSON: nanos must not be negative`); } - let z = 'Z'; + let z = "Z"; if (this.nanos > 0) { const nanosStr = (this.nanos + 1e9).toString().substring(1); - if (nanosStr.substring(3) === '000000') { - z = '.' + nanosStr.substring(0, 3) + 'Z'; - } else if (nanosStr.substring(6) === '000') { - z = '.' + nanosStr.substring(0, 6) + 'Z'; + if (nanosStr.substring(3) === "000000") { + z = "." + nanosStr.substring(0, 3) + "Z"; + } else if (nanosStr.substring(6) === "000") { + z = "." + nanosStr.substring(0, 6) + "Z"; } else { - z = '.' + nanosStr + 'Z'; + z = "." + nanosStr + "Z"; } } - return new Date(ms).toISOString().replace('.000Z', z); + return new Date(ms).toISOString().replace(".000Z", z); } toDate() { return new Date(Number(this.seconds) * 1e3 + Math.ceil(this.nanos / 1e6)); @@ -2918,7 +2648,7 @@ var Timestamp = class _Timestamp extends Message { const ms = date.getTime(); return new _Timestamp({ seconds: protoInt64.parse(Math.floor(ms / 1e3)), - nanos: (ms % 1e3) * 1e6, + nanos: ms % 1e3 * 1e6 }); } static fromBinary(bytes, options) { @@ -2935,22 +2665,22 @@ var Timestamp = class _Timestamp extends Message { } }; Timestamp.runtime = proto3; -Timestamp.typeName = 'google.protobuf.Timestamp'; +Timestamp.typeName = "google.protobuf.Timestamp"; Timestamp.fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'seconds', - kind: 'scalar', - T: 3, + name: "seconds", + kind: "scalar", + T: 3 /* ScalarType.INT64 */ }, { no: 2, - name: 'nanos', - kind: 'scalar', - T: 5, + name: "nanos", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ - }, + } ]); // exa/proto_ts/node_modules/@bufbuild/protobuf/dist/esm/google/protobuf/duration_pb.js @@ -2962,26 +2692,20 @@ var Duration = class _Duration extends Message { proto3.util.initPartial(data, this); } fromJson(json, options) { - if (typeof json !== 'string') { - throw new Error( - `cannot decode google.protobuf.Duration from JSON: ${proto3.json.debug(json)}`, - ); + if (typeof json !== "string") { + throw new Error(`cannot decode google.protobuf.Duration from JSON: ${proto3.json.debug(json)}`); } const match = json.match(/^(-?[0-9]+)(?:\.([0-9]+))?s/); if (match === null) { - throw new Error( - `cannot decode google.protobuf.Duration from JSON: ${proto3.json.debug(json)}`, - ); + throw new Error(`cannot decode google.protobuf.Duration from JSON: ${proto3.json.debug(json)}`); } const longSeconds = Number(match[1]); if (longSeconds > 315576e6 || longSeconds < -315576e6) { - throw new Error( - `cannot decode google.protobuf.Duration from JSON: ${proto3.json.debug(json)}`, - ); + throw new Error(`cannot decode google.protobuf.Duration from JSON: ${proto3.json.debug(json)}`); } this.seconds = protoInt64.parse(longSeconds); - if (typeof match[2] == 'string') { - const nanosStr = match[2] + '0'.repeat(9 - match[2].length); + if (typeof match[2] == "string") { + const nanosStr = match[2] + "0".repeat(9 - match[2].length); this.nanos = parseInt(nanosStr); if (longSeconds < 0 || Object.is(longSeconds, -0)) { this.nanos = -this.nanos; @@ -2991,25 +2715,23 @@ var Duration = class _Duration extends Message { } toJson(options) { if (Number(this.seconds) > 315576e6 || Number(this.seconds) < -315576e6) { - throw new Error( - `cannot encode google.protobuf.Duration to JSON: value out of range`, - ); + throw new Error(`cannot encode google.protobuf.Duration to JSON: value out of range`); } let text = this.seconds.toString(); if (this.nanos !== 0) { let nanosStr = Math.abs(this.nanos).toString(); - nanosStr = '0'.repeat(9 - nanosStr.length) + nanosStr; - if (nanosStr.substring(3) === '000000') { + nanosStr = "0".repeat(9 - nanosStr.length) + nanosStr; + if (nanosStr.substring(3) === "000000") { nanosStr = nanosStr.substring(0, 3); - } else if (nanosStr.substring(6) === '000') { + } else if (nanosStr.substring(6) === "000") { nanosStr = nanosStr.substring(0, 6); } - text += '.' + nanosStr; + text += "." + nanosStr; if (this.nanos < 0 && Number(this.seconds) == 0) { - text = '-' + text; + text = "-" + text; } } - return text + 's'; + return text + "s"; } static fromBinary(bytes, options) { return new _Duration().fromBinary(bytes, options); @@ -3025,22 +2747,22 @@ var Duration = class _Duration extends Message { } }; Duration.runtime = proto3; -Duration.typeName = 'google.protobuf.Duration'; +Duration.typeName = "google.protobuf.Duration"; Duration.fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'seconds', - kind: 'scalar', - T: 3, + name: "seconds", + kind: "scalar", + T: 3 /* ScalarType.INT64 */ }, { no: 2, - name: 'nanos', - kind: 'scalar', - T: 5, + name: "nanos", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ - }, + } ]); // exa/proto_ts/node_modules/@bufbuild/protobuf/dist/esm/google/protobuf/empty_pb.js @@ -3063,7 +2785,7 @@ var Empty = class _Empty extends Message { } }; Empty.runtime = proto3; -Empty.typeName = 'google.protobuf.Empty'; +Empty.typeName = "google.protobuf.Empty"; Empty.fields = proto3.util.newFieldList(() => []); // exa/proto_ts/dist/exa/google/internal/cloud/code/v1internal/credits_pb.js @@ -3086,21 +2808,16 @@ var Credits = class _Credits extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'google.internal.cloud.code.v1internal.Credits'; + static typeName = "google.internal.cloud.code.v1internal.Credits"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'credit_type', - kind: 'enum', - T: proto3.getEnumType(Credits_CreditType), - }, + { no: 1, name: "credit_type", kind: "enum", T: proto3.getEnumType(Credits_CreditType) }, { no: 2, - name: 'credit_amount', - kind: 'scalar', - T: 3, + name: "credit_amount", + kind: "scalar", + T: 3 /* ScalarType.INT64 */ - }, + } ]); static fromBinary(bytes, options) { return new _Credits().fromBinary(bytes, options); @@ -3116,20 +2833,14 @@ var Credits = class _Credits extends Message { } }; var Credits_CreditType; -(function (Credits_CreditType2) { - Credits_CreditType2[(Credits_CreditType2['CREDIT_TYPE_UNSPECIFIED'] = 0)] = - 'CREDIT_TYPE_UNSPECIFIED'; - Credits_CreditType2[(Credits_CreditType2['GOOGLE_ONE_AI'] = 1)] = - 'GOOGLE_ONE_AI'; +(function(Credits_CreditType2) { + Credits_CreditType2[Credits_CreditType2["CREDIT_TYPE_UNSPECIFIED"] = 0] = "CREDIT_TYPE_UNSPECIFIED"; + Credits_CreditType2[Credits_CreditType2["GOOGLE_ONE_AI"] = 1] = "GOOGLE_ONE_AI"; })(Credits_CreditType || (Credits_CreditType = {})); -proto3.util.setEnumType( - Credits_CreditType, - 'google.internal.cloud.code.v1internal.Credits.CreditType', - [ - { no: 0, name: 'CREDIT_TYPE_UNSPECIFIED' }, - { no: 1, name: 'GOOGLE_ONE_AI' }, - ], -); +proto3.util.setEnumType(Credits_CreditType, "google.internal.cloud.code.v1internal.Credits.CreditType", [ + { no: 0, name: "CREDIT_TYPE_UNSPECIFIED" }, + { no: 1, name: "GOOGLE_ONE_AI" } +]); // exa/proto_ts/dist/exa/google/internal/cloud/code/v1internal/onboarding_pb.js var OnboardUserRequest = class _OnboardUserRequest extends Message { @@ -3138,7 +2849,7 @@ var OnboardUserRequest = class _OnboardUserRequest extends Message { * * @generated from field: string tier_id = 1; */ - tierId = ''; + tierId = ""; /** * Required if tier has user_defined_cloudaicompanion_project = true. * @@ -3156,23 +2867,17 @@ var OnboardUserRequest = class _OnboardUserRequest extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'google.internal.cloud.code.v1internal.OnboardUserRequest'; + static typeName = "google.internal.cloud.code.v1internal.OnboardUserRequest"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'tier_id', - kind: 'scalar', - T: 9, + name: "tier_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { - no: 2, - name: 'cloudaicompanion_project', - kind: 'scalar', - T: 9, - opt: true, - }, - { no: 3, name: 'metadata', kind: 'message', T: ClientMetadata }, + { no: 2, name: "cloudaicompanion_project", kind: "scalar", T: 9, opt: true }, + { no: 3, name: "metadata", kind: "message", T: ClientMetadata } ]); static fromBinary(bytes, options) { return new _OnboardUserRequest().fromBinary(bytes, options); @@ -3213,17 +2918,11 @@ var OnboardUserResponse = class _OnboardUserResponse extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'google.internal.cloud.code.v1internal.OnboardUserResponse'; + static typeName = "google.internal.cloud.code.v1internal.OnboardUserResponse"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'cloudaicompanion_project', kind: 'message', T: Project }, - { no: 4, name: 'status', kind: 'message', T: OnboardUserStatus, opt: true }, - { - no: 5, - name: 'release_channel', - kind: 'message', - T: ReleaseChannel, - opt: true, - }, + { no: 1, name: "cloudaicompanion_project", kind: "message", T: Project }, + { no: 4, name: "status", kind: "message", T: OnboardUserStatus, opt: true }, + { no: 5, name: "release_channel", kind: "message", T: ReleaseChannel, opt: true } ]); static fromBinary(bytes, options) { return new _OnboardUserResponse().fromBinary(bytes, options); @@ -3251,40 +2950,35 @@ var ReleaseChannel = class _ReleaseChannel extends Message { * * @generated from field: string name = 2; */ - name = ''; + name = ""; /** * A description message to show on-hover or focus. * * @generated from field: string description = 3; */ - description = ''; + description = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'google.internal.cloud.code.v1internal.ReleaseChannel'; + static typeName = "google.internal.cloud.code.v1internal.ReleaseChannel"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'type', - kind: 'enum', - T: proto3.getEnumType(ReleaseChannel_ChannelType), - }, + { no: 1, name: "type", kind: "enum", T: proto3.getEnumType(ReleaseChannel_ChannelType) }, { no: 2, - name: 'name', - kind: 'scalar', - T: 9, + name: "name", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 3, - name: 'description', - kind: 'scalar', - T: 9, + name: "description", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _ReleaseChannel().fromBinary(bytes, options); @@ -3300,24 +2994,16 @@ var ReleaseChannel = class _ReleaseChannel extends Message { } }; var ReleaseChannel_ChannelType; -(function (ReleaseChannel_ChannelType2) { - ReleaseChannel_ChannelType2[(ReleaseChannel_ChannelType2['UNKNOWN'] = 0)] = - 'UNKNOWN'; - ReleaseChannel_ChannelType2[(ReleaseChannel_ChannelType2['STABLE'] = 1)] = - 'STABLE'; - ReleaseChannel_ChannelType2[ - (ReleaseChannel_ChannelType2['EXPERIMENTAL'] = 2) - ] = 'EXPERIMENTAL'; +(function(ReleaseChannel_ChannelType2) { + ReleaseChannel_ChannelType2[ReleaseChannel_ChannelType2["UNKNOWN"] = 0] = "UNKNOWN"; + ReleaseChannel_ChannelType2[ReleaseChannel_ChannelType2["STABLE"] = 1] = "STABLE"; + ReleaseChannel_ChannelType2[ReleaseChannel_ChannelType2["EXPERIMENTAL"] = 2] = "EXPERIMENTAL"; })(ReleaseChannel_ChannelType || (ReleaseChannel_ChannelType = {})); -proto3.util.setEnumType( - ReleaseChannel_ChannelType, - 'google.internal.cloud.code.v1internal.ReleaseChannel.ChannelType', - [ - { no: 0, name: 'UNKNOWN' }, - { no: 1, name: 'STABLE' }, - { no: 2, name: 'EXPERIMENTAL' }, - ], -); +proto3.util.setEnumType(ReleaseChannel_ChannelType, "google.internal.cloud.code.v1internal.ReleaseChannel.ChannelType", [ + { no: 0, name: "UNKNOWN" }, + { no: 1, name: "STABLE" }, + { no: 2, name: "EXPERIMENTAL" } +]); var LoadCodeAssistRequest = class _LoadCodeAssistRequest extends Message { /** * project id saved on the client's side previously chosen by the user. @@ -3344,24 +3030,11 @@ var LoadCodeAssistRequest = class _LoadCodeAssistRequest extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = - 'google.internal.cloud.code.v1internal.LoadCodeAssistRequest'; + static typeName = "google.internal.cloud.code.v1internal.LoadCodeAssistRequest"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'cloudaicompanion_project', - kind: 'scalar', - T: 9, - opt: true, - }, - { no: 2, name: 'metadata', kind: 'message', T: ClientMetadata }, - { - no: 3, - name: 'mode', - kind: 'enum', - T: proto3.getEnumType(LoadCodeAssistRequest_Mode), - opt: true, - }, + { no: 1, name: "cloudaicompanion_project", kind: "scalar", T: 9, opt: true }, + { no: 2, name: "metadata", kind: "message", T: ClientMetadata }, + { no: 3, name: "mode", kind: "enum", T: proto3.getEnumType(LoadCodeAssistRequest_Mode), opt: true } ]); static fromBinary(bytes, options) { return new _LoadCodeAssistRequest().fromBinary(bytes, options); @@ -3377,26 +3050,16 @@ var LoadCodeAssistRequest = class _LoadCodeAssistRequest extends Message { } }; var LoadCodeAssistRequest_Mode; -(function (LoadCodeAssistRequest_Mode2) { - LoadCodeAssistRequest_Mode2[ - (LoadCodeAssistRequest_Mode2['MODE_UNSPECIFIED'] = 0) - ] = 'MODE_UNSPECIFIED'; - LoadCodeAssistRequest_Mode2[ - (LoadCodeAssistRequest_Mode2['FULL_ELIGIBILITY_CHECK'] = 1) - ] = 'FULL_ELIGIBILITY_CHECK'; - LoadCodeAssistRequest_Mode2[ - (LoadCodeAssistRequest_Mode2['HEALTH_CHECK'] = 2) - ] = 'HEALTH_CHECK'; +(function(LoadCodeAssistRequest_Mode2) { + LoadCodeAssistRequest_Mode2[LoadCodeAssistRequest_Mode2["MODE_UNSPECIFIED"] = 0] = "MODE_UNSPECIFIED"; + LoadCodeAssistRequest_Mode2[LoadCodeAssistRequest_Mode2["FULL_ELIGIBILITY_CHECK"] = 1] = "FULL_ELIGIBILITY_CHECK"; + LoadCodeAssistRequest_Mode2[LoadCodeAssistRequest_Mode2["HEALTH_CHECK"] = 2] = "HEALTH_CHECK"; })(LoadCodeAssistRequest_Mode || (LoadCodeAssistRequest_Mode = {})); -proto3.util.setEnumType( - LoadCodeAssistRequest_Mode, - 'google.internal.cloud.code.v1internal.LoadCodeAssistRequest.Mode', - [ - { no: 0, name: 'MODE_UNSPECIFIED' }, - { no: 1, name: 'FULL_ELIGIBILITY_CHECK' }, - { no: 2, name: 'HEALTH_CHECK' }, - ], -); +proto3.util.setEnumType(LoadCodeAssistRequest_Mode, "google.internal.cloud.code.v1internal.LoadCodeAssistRequest.Mode", [ + { no: 0, name: "MODE_UNSPECIFIED" }, + { no: 1, name: "FULL_ELIGIBILITY_CHECK" }, + { no: 2, name: "HEALTH_CHECK" } +]); var IneligibleTier = class _IneligibleTier extends Message { /** * mnemonic code representing the reason for in-eligibility. @@ -3409,19 +3072,19 @@ var IneligibleTier = class _IneligibleTier extends Message { * * @generated from field: string reason_message = 2; */ - reasonMessage = ''; + reasonMessage = ""; /** * id of the tier. * * @generated from field: string tier_id = 3; */ - tierId = ''; + tierId = ""; /** * human readable name of the tier. * * @generated from field: string tier_name = 4; */ - tierName = ''; + tierName = ""; /** * the validation error message. It includes all descriptions and all urls. * reason_message uses validation_error_message as a parameter in @@ -3429,100 +3092,95 @@ var IneligibleTier = class _IneligibleTier extends Message { * * @generated from field: string validation_error_message = 5; */ - validationErrorMessage = ''; + validationErrorMessage = ""; /** * text to display for the validation url link. * * @generated from field: string validation_url_link_text = 6; */ - validationUrlLinkText = ''; + validationUrlLinkText = ""; /** * url to the validation page. * * @generated from field: string validation_url = 7; */ - validationUrl = ''; + validationUrl = ""; /** * text to display for the learn more link. * * @generated from field: string validation_learn_more_link_text = 8; */ - validationLearnMoreLinkText = ''; + validationLearnMoreLinkText = ""; /** * url to the learn more page. * * @generated from field: string validation_learn_more_url = 9; */ - validationLearnMoreUrl = ''; + validationLearnMoreUrl = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'google.internal.cloud.code.v1internal.IneligibleTier'; + static typeName = "google.internal.cloud.code.v1internal.IneligibleTier"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'reason_code', - kind: 'enum', - T: proto3.getEnumType(IneligibleTier_IneligibleTierReasonCodes), - }, + { no: 1, name: "reason_code", kind: "enum", T: proto3.getEnumType(IneligibleTier_IneligibleTierReasonCodes) }, { no: 2, - name: 'reason_message', - kind: 'scalar', - T: 9, + name: "reason_message", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 3, - name: 'tier_id', - kind: 'scalar', - T: 9, + name: "tier_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 4, - name: 'tier_name', - kind: 'scalar', - T: 9, + name: "tier_name", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 5, - name: 'validation_error_message', - kind: 'scalar', - T: 9, + name: "validation_error_message", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 6, - name: 'validation_url_link_text', - kind: 'scalar', - T: 9, + name: "validation_url_link_text", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 7, - name: 'validation_url', - kind: 'scalar', - T: 9, + name: "validation_url", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 8, - name: 'validation_learn_more_link_text', - kind: 'scalar', - T: 9, + name: "validation_learn_more_link_text", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 9, - name: 'validation_learn_more_url', - kind: 'scalar', - T: 9, + name: "validation_learn_more_url", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _IneligibleTier().fromBinary(bytes, options); @@ -3538,61 +3196,32 @@ var IneligibleTier = class _IneligibleTier extends Message { } }; var IneligibleTier_IneligibleTierReasonCodes; -(function (IneligibleTier_IneligibleTierReasonCodes2) { - IneligibleTier_IneligibleTierReasonCodes2[ - (IneligibleTier_IneligibleTierReasonCodes2['UNKNOWN'] = 0) - ] = 'UNKNOWN'; - IneligibleTier_IneligibleTierReasonCodes2[ - (IneligibleTier_IneligibleTierReasonCodes2['INELIGIBLE_ACCOUNT'] = 1) - ] = 'INELIGIBLE_ACCOUNT'; - IneligibleTier_IneligibleTierReasonCodes2[ - (IneligibleTier_IneligibleTierReasonCodes2['UNKNOWN_LOCATION'] = 2) - ] = 'UNKNOWN_LOCATION'; - IneligibleTier_IneligibleTierReasonCodes2[ - (IneligibleTier_IneligibleTierReasonCodes2['UNSUPPORTED_LOCATION'] = 3) - ] = 'UNSUPPORTED_LOCATION'; - IneligibleTier_IneligibleTierReasonCodes2[ - (IneligibleTier_IneligibleTierReasonCodes2['RESTRICTED_NETWORK'] = 4) - ] = 'RESTRICTED_NETWORK'; - IneligibleTier_IneligibleTierReasonCodes2[ - (IneligibleTier_IneligibleTierReasonCodes2['RESTRICTED_AGE'] = 5) - ] = 'RESTRICTED_AGE'; - IneligibleTier_IneligibleTierReasonCodes2[ - (IneligibleTier_IneligibleTierReasonCodes2['NON_USER_ACCOUNT'] = 6) - ] = 'NON_USER_ACCOUNT'; - IneligibleTier_IneligibleTierReasonCodes2[ - (IneligibleTier_IneligibleTierReasonCodes2['DASHER_USER'] = 7) - ] = 'DASHER_USER'; - IneligibleTier_IneligibleTierReasonCodes2[ - (IneligibleTier_IneligibleTierReasonCodes2['BYOID_USER'] = 8) - ] = 'BYOID_USER'; - IneligibleTier_IneligibleTierReasonCodes2[ - (IneligibleTier_IneligibleTierReasonCodes2['RESTRICTED_DASHER_USER'] = 9) - ] = 'RESTRICTED_DASHER_USER'; - IneligibleTier_IneligibleTierReasonCodes2[ - (IneligibleTier_IneligibleTierReasonCodes2['VALIDATION_REQUIRED'] = 10) - ] = 'VALIDATION_REQUIRED'; -})( - IneligibleTier_IneligibleTierReasonCodes || - (IneligibleTier_IneligibleTierReasonCodes = {}), -); -proto3.util.setEnumType( - IneligibleTier_IneligibleTierReasonCodes, - 'google.internal.cloud.code.v1internal.IneligibleTier.IneligibleTierReasonCodes', - [ - { no: 0, name: 'UNKNOWN' }, - { no: 1, name: 'INELIGIBLE_ACCOUNT' }, - { no: 2, name: 'UNKNOWN_LOCATION' }, - { no: 3, name: 'UNSUPPORTED_LOCATION' }, - { no: 4, name: 'RESTRICTED_NETWORK' }, - { no: 5, name: 'RESTRICTED_AGE' }, - { no: 6, name: 'NON_USER_ACCOUNT' }, - { no: 7, name: 'DASHER_USER' }, - { no: 8, name: 'BYOID_USER' }, - { no: 9, name: 'RESTRICTED_DASHER_USER' }, - { no: 10, name: 'VALIDATION_REQUIRED' }, - ], -); +(function(IneligibleTier_IneligibleTierReasonCodes2) { + IneligibleTier_IneligibleTierReasonCodes2[IneligibleTier_IneligibleTierReasonCodes2["UNKNOWN"] = 0] = "UNKNOWN"; + IneligibleTier_IneligibleTierReasonCodes2[IneligibleTier_IneligibleTierReasonCodes2["INELIGIBLE_ACCOUNT"] = 1] = "INELIGIBLE_ACCOUNT"; + IneligibleTier_IneligibleTierReasonCodes2[IneligibleTier_IneligibleTierReasonCodes2["UNKNOWN_LOCATION"] = 2] = "UNKNOWN_LOCATION"; + IneligibleTier_IneligibleTierReasonCodes2[IneligibleTier_IneligibleTierReasonCodes2["UNSUPPORTED_LOCATION"] = 3] = "UNSUPPORTED_LOCATION"; + IneligibleTier_IneligibleTierReasonCodes2[IneligibleTier_IneligibleTierReasonCodes2["RESTRICTED_NETWORK"] = 4] = "RESTRICTED_NETWORK"; + IneligibleTier_IneligibleTierReasonCodes2[IneligibleTier_IneligibleTierReasonCodes2["RESTRICTED_AGE"] = 5] = "RESTRICTED_AGE"; + IneligibleTier_IneligibleTierReasonCodes2[IneligibleTier_IneligibleTierReasonCodes2["NON_USER_ACCOUNT"] = 6] = "NON_USER_ACCOUNT"; + IneligibleTier_IneligibleTierReasonCodes2[IneligibleTier_IneligibleTierReasonCodes2["DASHER_USER"] = 7] = "DASHER_USER"; + IneligibleTier_IneligibleTierReasonCodes2[IneligibleTier_IneligibleTierReasonCodes2["BYOID_USER"] = 8] = "BYOID_USER"; + IneligibleTier_IneligibleTierReasonCodes2[IneligibleTier_IneligibleTierReasonCodes2["RESTRICTED_DASHER_USER"] = 9] = "RESTRICTED_DASHER_USER"; + IneligibleTier_IneligibleTierReasonCodes2[IneligibleTier_IneligibleTierReasonCodes2["VALIDATION_REQUIRED"] = 10] = "VALIDATION_REQUIRED"; +})(IneligibleTier_IneligibleTierReasonCodes || (IneligibleTier_IneligibleTierReasonCodes = {})); +proto3.util.setEnumType(IneligibleTier_IneligibleTierReasonCodes, "google.internal.cloud.code.v1internal.IneligibleTier.IneligibleTierReasonCodes", [ + { no: 0, name: "UNKNOWN" }, + { no: 1, name: "INELIGIBLE_ACCOUNT" }, + { no: 2, name: "UNKNOWN_LOCATION" }, + { no: 3, name: "UNSUPPORTED_LOCATION" }, + { no: 4, name: "RESTRICTED_NETWORK" }, + { no: 5, name: "RESTRICTED_AGE" }, + { no: 6, name: "NON_USER_ACCOUNT" }, + { no: 7, name: "DASHER_USER" }, + { no: 8, name: "BYOID_USER" }, + { no: 9, name: "RESTRICTED_DASHER_USER" }, + { no: 10, name: "VALIDATION_REQUIRED" } +]); var ClientMetadata = class _ClientMetadata extends Message { /** * Type of the IDE. This is less granular than ide_name. @@ -3605,13 +3234,13 @@ var ClientMetadata = class _ClientMetadata extends Message { * * @generated from field: string ide_version = 2; */ - ideVersion = ''; + ideVersion = ""; /** * Plugin version, format is different per plugin. * * @generated from field: string plugin_version = 3; */ - pluginVersion = ''; + pluginVersion = ""; /** * The platform the client is running on. * @@ -3623,13 +3252,13 @@ var ClientMetadata = class _ClientMetadata extends Message { * * @generated from field: string update_channel = 5; */ - updateChannel = ''; + updateChannel = ""; /** * Duet project ID or number. * * @generated from field: string duet_project = 6; */ - duetProject = ''; + duetProject = ""; /** * Type of the plugin. * @@ -3641,67 +3270,52 @@ var ClientMetadata = class _ClientMetadata extends Message { * * @generated from field: string ide_name = 8; */ - ideName = ''; + ideName = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'google.internal.cloud.code.v1internal.ClientMetadata'; + static typeName = "google.internal.cloud.code.v1internal.ClientMetadata"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'ide_type', - kind: 'enum', - T: proto3.getEnumType(ClientMetadata_IdeType), - }, + { no: 1, name: "ide_type", kind: "enum", T: proto3.getEnumType(ClientMetadata_IdeType) }, { no: 2, - name: 'ide_version', - kind: 'scalar', - T: 9, + name: "ide_version", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 3, - name: 'plugin_version', - kind: 'scalar', - T: 9, + name: "plugin_version", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { - no: 4, - name: 'platform', - kind: 'enum', - T: proto3.getEnumType(ClientMetadata_Platform), - }, + { no: 4, name: "platform", kind: "enum", T: proto3.getEnumType(ClientMetadata_Platform) }, { no: 5, - name: 'update_channel', - kind: 'scalar', - T: 9, + name: "update_channel", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 6, - name: 'duet_project', - kind: 'scalar', - T: 9, + name: "duet_project", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { - no: 7, - name: 'plugin_type', - kind: 'enum', - T: proto3.getEnumType(ClientMetadata_PluginType), - }, + { no: 7, name: "plugin_type", kind: "enum", T: proto3.getEnumType(ClientMetadata_PluginType) }, { no: 8, - name: 'ide_name', - kind: 'scalar', - T: 9, + name: "ide_name", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _ClientMetadata().fromBinary(bytes, options); @@ -3717,115 +3331,74 @@ var ClientMetadata = class _ClientMetadata extends Message { } }; var ClientMetadata_IdeType; -(function (ClientMetadata_IdeType2) { - ClientMetadata_IdeType2[(ClientMetadata_IdeType2['IDE_UNSPECIFIED'] = 0)] = - 'IDE_UNSPECIFIED'; - ClientMetadata_IdeType2[(ClientMetadata_IdeType2['VSCODE'] = 1)] = 'VSCODE'; - ClientMetadata_IdeType2[(ClientMetadata_IdeType2['INTELLIJ'] = 2)] = - 'INTELLIJ'; - ClientMetadata_IdeType2[ - (ClientMetadata_IdeType2['VSCODE_CLOUD_WORKSTATION'] = 3) - ] = 'VSCODE_CLOUD_WORKSTATION'; - ClientMetadata_IdeType2[ - (ClientMetadata_IdeType2['INTELLIJ_CLOUD_WORKSTATION'] = 4) - ] = 'INTELLIJ_CLOUD_WORKSTATION'; - ClientMetadata_IdeType2[(ClientMetadata_IdeType2['CLOUD_SHELL'] = 5)] = - 'CLOUD_SHELL'; - ClientMetadata_IdeType2[(ClientMetadata_IdeType2['CIDER'] = 6)] = 'CIDER'; - ClientMetadata_IdeType2[(ClientMetadata_IdeType2['CLOUD_RUN'] = 7)] = - 'CLOUD_RUN'; - ClientMetadata_IdeType2[(ClientMetadata_IdeType2['ANDROID_STUDIO'] = 8)] = - 'ANDROID_STUDIO'; - ClientMetadata_IdeType2[(ClientMetadata_IdeType2['ANTIGRAVITY'] = 9)] = - 'ANTIGRAVITY'; - ClientMetadata_IdeType2[(ClientMetadata_IdeType2['JETSKI'] = 10)] = 'JETSKI'; - ClientMetadata_IdeType2[(ClientMetadata_IdeType2['COLAB'] = 11)] = 'COLAB'; - ClientMetadata_IdeType2[(ClientMetadata_IdeType2['FIREBASE'] = 12)] = - 'FIREBASE'; - ClientMetadata_IdeType2[(ClientMetadata_IdeType2['CHROME_DEVTOOLS'] = 13)] = - 'CHROME_DEVTOOLS'; - ClientMetadata_IdeType2[(ClientMetadata_IdeType2['GEMINI_CLI'] = 14)] = - 'GEMINI_CLI'; +(function(ClientMetadata_IdeType2) { + ClientMetadata_IdeType2[ClientMetadata_IdeType2["IDE_UNSPECIFIED"] = 0] = "IDE_UNSPECIFIED"; + ClientMetadata_IdeType2[ClientMetadata_IdeType2["VSCODE"] = 1] = "VSCODE"; + ClientMetadata_IdeType2[ClientMetadata_IdeType2["INTELLIJ"] = 2] = "INTELLIJ"; + ClientMetadata_IdeType2[ClientMetadata_IdeType2["VSCODE_CLOUD_WORKSTATION"] = 3] = "VSCODE_CLOUD_WORKSTATION"; + ClientMetadata_IdeType2[ClientMetadata_IdeType2["INTELLIJ_CLOUD_WORKSTATION"] = 4] = "INTELLIJ_CLOUD_WORKSTATION"; + ClientMetadata_IdeType2[ClientMetadata_IdeType2["CLOUD_SHELL"] = 5] = "CLOUD_SHELL"; + ClientMetadata_IdeType2[ClientMetadata_IdeType2["CIDER"] = 6] = "CIDER"; + ClientMetadata_IdeType2[ClientMetadata_IdeType2["CLOUD_RUN"] = 7] = "CLOUD_RUN"; + ClientMetadata_IdeType2[ClientMetadata_IdeType2["ANDROID_STUDIO"] = 8] = "ANDROID_STUDIO"; + ClientMetadata_IdeType2[ClientMetadata_IdeType2["ANTIGRAVITY"] = 9] = "ANTIGRAVITY"; + ClientMetadata_IdeType2[ClientMetadata_IdeType2["JETSKI"] = 10] = "JETSKI"; + ClientMetadata_IdeType2[ClientMetadata_IdeType2["COLAB"] = 11] = "COLAB"; + ClientMetadata_IdeType2[ClientMetadata_IdeType2["FIREBASE"] = 12] = "FIREBASE"; + ClientMetadata_IdeType2[ClientMetadata_IdeType2["CHROME_DEVTOOLS"] = 13] = "CHROME_DEVTOOLS"; + ClientMetadata_IdeType2[ClientMetadata_IdeType2["GEMINI_CLI"] = 14] = "GEMINI_CLI"; })(ClientMetadata_IdeType || (ClientMetadata_IdeType = {})); -proto3.util.setEnumType( - ClientMetadata_IdeType, - 'google.internal.cloud.code.v1internal.ClientMetadata.IdeType', - [ - { no: 0, name: 'IDE_UNSPECIFIED' }, - { no: 1, name: 'VSCODE' }, - { no: 2, name: 'INTELLIJ' }, - { no: 3, name: 'VSCODE_CLOUD_WORKSTATION' }, - { no: 4, name: 'INTELLIJ_CLOUD_WORKSTATION' }, - { no: 5, name: 'CLOUD_SHELL' }, - { no: 6, name: 'CIDER' }, - { no: 7, name: 'CLOUD_RUN' }, - { no: 8, name: 'ANDROID_STUDIO' }, - { no: 9, name: 'ANTIGRAVITY' }, - { no: 10, name: 'JETSKI' }, - { no: 11, name: 'COLAB' }, - { no: 12, name: 'FIREBASE' }, - { no: 13, name: 'CHROME_DEVTOOLS' }, - { no: 14, name: 'GEMINI_CLI' }, - ], -); +proto3.util.setEnumType(ClientMetadata_IdeType, "google.internal.cloud.code.v1internal.ClientMetadata.IdeType", [ + { no: 0, name: "IDE_UNSPECIFIED" }, + { no: 1, name: "VSCODE" }, + { no: 2, name: "INTELLIJ" }, + { no: 3, name: "VSCODE_CLOUD_WORKSTATION" }, + { no: 4, name: "INTELLIJ_CLOUD_WORKSTATION" }, + { no: 5, name: "CLOUD_SHELL" }, + { no: 6, name: "CIDER" }, + { no: 7, name: "CLOUD_RUN" }, + { no: 8, name: "ANDROID_STUDIO" }, + { no: 9, name: "ANTIGRAVITY" }, + { no: 10, name: "JETSKI" }, + { no: 11, name: "COLAB" }, + { no: 12, name: "FIREBASE" }, + { no: 13, name: "CHROME_DEVTOOLS" }, + { no: 14, name: "GEMINI_CLI" } +]); var ClientMetadata_Platform; -(function (ClientMetadata_Platform2) { - ClientMetadata_Platform2[ - (ClientMetadata_Platform2['PLATFORM_UNSPECIFIED'] = 0) - ] = 'PLATFORM_UNSPECIFIED'; - ClientMetadata_Platform2[(ClientMetadata_Platform2['DARWIN_AMD64'] = 1)] = - 'DARWIN_AMD64'; - ClientMetadata_Platform2[(ClientMetadata_Platform2['DARWIN_ARM64'] = 2)] = - 'DARWIN_ARM64'; - ClientMetadata_Platform2[(ClientMetadata_Platform2['LINUX_AMD64'] = 3)] = - 'LINUX_AMD64'; - ClientMetadata_Platform2[(ClientMetadata_Platform2['LINUX_ARM64'] = 4)] = - 'LINUX_ARM64'; - ClientMetadata_Platform2[(ClientMetadata_Platform2['WINDOWS_AMD64'] = 5)] = - 'WINDOWS_AMD64'; +(function(ClientMetadata_Platform2) { + ClientMetadata_Platform2[ClientMetadata_Platform2["PLATFORM_UNSPECIFIED"] = 0] = "PLATFORM_UNSPECIFIED"; + ClientMetadata_Platform2[ClientMetadata_Platform2["DARWIN_AMD64"] = 1] = "DARWIN_AMD64"; + ClientMetadata_Platform2[ClientMetadata_Platform2["DARWIN_ARM64"] = 2] = "DARWIN_ARM64"; + ClientMetadata_Platform2[ClientMetadata_Platform2["LINUX_AMD64"] = 3] = "LINUX_AMD64"; + ClientMetadata_Platform2[ClientMetadata_Platform2["LINUX_ARM64"] = 4] = "LINUX_ARM64"; + ClientMetadata_Platform2[ClientMetadata_Platform2["WINDOWS_AMD64"] = 5] = "WINDOWS_AMD64"; })(ClientMetadata_Platform || (ClientMetadata_Platform = {})); -proto3.util.setEnumType( - ClientMetadata_Platform, - 'google.internal.cloud.code.v1internal.ClientMetadata.Platform', - [ - { no: 0, name: 'PLATFORM_UNSPECIFIED' }, - { no: 1, name: 'DARWIN_AMD64' }, - { no: 2, name: 'DARWIN_ARM64' }, - { no: 3, name: 'LINUX_AMD64' }, - { no: 4, name: 'LINUX_ARM64' }, - { no: 5, name: 'WINDOWS_AMD64' }, - ], -); +proto3.util.setEnumType(ClientMetadata_Platform, "google.internal.cloud.code.v1internal.ClientMetadata.Platform", [ + { no: 0, name: "PLATFORM_UNSPECIFIED" }, + { no: 1, name: "DARWIN_AMD64" }, + { no: 2, name: "DARWIN_ARM64" }, + { no: 3, name: "LINUX_AMD64" }, + { no: 4, name: "LINUX_ARM64" }, + { no: 5, name: "WINDOWS_AMD64" } +]); var ClientMetadata_PluginType; -(function (ClientMetadata_PluginType2) { - ClientMetadata_PluginType2[ - (ClientMetadata_PluginType2['PLUGIN_UNSPECIFIED'] = 0) - ] = 'PLUGIN_UNSPECIFIED'; - ClientMetadata_PluginType2[(ClientMetadata_PluginType2['CLOUD_CODE'] = 1)] = - 'CLOUD_CODE'; - ClientMetadata_PluginType2[(ClientMetadata_PluginType2['GEMINI'] = 2)] = - 'GEMINI'; - ClientMetadata_PluginType2[ - (ClientMetadata_PluginType2['AIPLUGIN_INTELLIJ'] = 3) - ] = 'AIPLUGIN_INTELLIJ'; - ClientMetadata_PluginType2[ - (ClientMetadata_PluginType2['AIPLUGIN_STUDIO'] = 4) - ] = 'AIPLUGIN_STUDIO'; - ClientMetadata_PluginType2[(ClientMetadata_PluginType2['PANTHEON'] = 6)] = - 'PANTHEON'; +(function(ClientMetadata_PluginType2) { + ClientMetadata_PluginType2[ClientMetadata_PluginType2["PLUGIN_UNSPECIFIED"] = 0] = "PLUGIN_UNSPECIFIED"; + ClientMetadata_PluginType2[ClientMetadata_PluginType2["CLOUD_CODE"] = 1] = "CLOUD_CODE"; + ClientMetadata_PluginType2[ClientMetadata_PluginType2["GEMINI"] = 2] = "GEMINI"; + ClientMetadata_PluginType2[ClientMetadata_PluginType2["AIPLUGIN_INTELLIJ"] = 3] = "AIPLUGIN_INTELLIJ"; + ClientMetadata_PluginType2[ClientMetadata_PluginType2["AIPLUGIN_STUDIO"] = 4] = "AIPLUGIN_STUDIO"; + ClientMetadata_PluginType2[ClientMetadata_PluginType2["PANTHEON"] = 6] = "PANTHEON"; })(ClientMetadata_PluginType || (ClientMetadata_PluginType = {})); -proto3.util.setEnumType( - ClientMetadata_PluginType, - 'google.internal.cloud.code.v1internal.ClientMetadata.PluginType', - [ - { no: 0, name: 'PLUGIN_UNSPECIFIED' }, - { no: 1, name: 'CLOUD_CODE' }, - { no: 2, name: 'GEMINI' }, - { no: 3, name: 'AIPLUGIN_INTELLIJ' }, - { no: 4, name: 'AIPLUGIN_STUDIO' }, - { no: 6, name: 'PANTHEON' }, - ], -); +proto3.util.setEnumType(ClientMetadata_PluginType, "google.internal.cloud.code.v1internal.ClientMetadata.PluginType", [ + { no: 0, name: "PLUGIN_UNSPECIFIED" }, + { no: 1, name: "CLOUD_CODE" }, + { no: 2, name: "GEMINI" }, + { no: 3, name: "AIPLUGIN_INTELLIJ" }, + { no: 4, name: "AIPLUGIN_STUDIO" }, + { no: 6, name: "PANTHEON" } +]); var Project = class _Project extends Message { /** * The unique, user-assigned ID of the Project. @@ -3833,7 +3406,7 @@ var Project = class _Project extends Message { * * @generated from field: string id = 1; */ - id = ''; + id = ""; /** * The optional user-assigned display name of the Project. * When present it must be between 4 to 30 characters. @@ -3846,7 +3419,7 @@ var Project = class _Project extends Message { * * @generated from field: string name = 2; */ - name = ''; + name = ""; /** * GCP project number of the project. * @@ -3858,29 +3431,29 @@ var Project = class _Project extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'google.internal.cloud.code.v1internal.Project'; + static typeName = "google.internal.cloud.code.v1internal.Project"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'id', - kind: 'scalar', - T: 9, + name: "id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'name', - kind: 'scalar', - T: 9, + name: "name", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 3, - name: 'project_number', - kind: 'scalar', - T: 3, + name: "project_number", + kind: "scalar", + T: 3 /* ScalarType.INT64 */ - }, + } ]); static fromBinary(bytes, options) { return new _Project().fromBinary(bytes, options); @@ -3907,40 +3480,35 @@ var OnboardUserStatus = class _OnboardUserStatus extends Message { * * @generated from field: string display_message = 2; */ - displayMessage = ''; + displayMessage = ""; /** * Title of the message to display on the IDE side. * * @generated from field: string message_title = 4; */ - messageTitle = ''; + messageTitle = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'google.internal.cloud.code.v1internal.OnboardUserStatus'; + static typeName = "google.internal.cloud.code.v1internal.OnboardUserStatus"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'status_code', - kind: 'enum', - T: proto3.getEnumType(OnboardUserStatus_StatusCode), - }, + { no: 1, name: "status_code", kind: "enum", T: proto3.getEnumType(OnboardUserStatus_StatusCode) }, { no: 2, - name: 'display_message', - kind: 'scalar', - T: 9, + name: "display_message", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 4, - name: 'message_title', - kind: 'scalar', - T: 9, + name: "message_title", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _OnboardUserStatus().fromBinary(bytes, options); @@ -3956,25 +3524,16 @@ var OnboardUserStatus = class _OnboardUserStatus extends Message { } }; var OnboardUserStatus_StatusCode; -(function (OnboardUserStatus_StatusCode2) { - OnboardUserStatus_StatusCode2[ - (OnboardUserStatus_StatusCode2['DEFAULT'] = 0) - ] = 'DEFAULT'; - OnboardUserStatus_StatusCode2[(OnboardUserStatus_StatusCode2['NOTICE'] = 1)] = - 'NOTICE'; - OnboardUserStatus_StatusCode2[ - (OnboardUserStatus_StatusCode2['WARNING'] = 2) - ] = 'WARNING'; +(function(OnboardUserStatus_StatusCode2) { + OnboardUserStatus_StatusCode2[OnboardUserStatus_StatusCode2["DEFAULT"] = 0] = "DEFAULT"; + OnboardUserStatus_StatusCode2[OnboardUserStatus_StatusCode2["NOTICE"] = 1] = "NOTICE"; + OnboardUserStatus_StatusCode2[OnboardUserStatus_StatusCode2["WARNING"] = 2] = "WARNING"; })(OnboardUserStatus_StatusCode || (OnboardUserStatus_StatusCode = {})); -proto3.util.setEnumType( - OnboardUserStatus_StatusCode, - 'google.internal.cloud.code.v1internal.OnboardUserStatus.StatusCode', - [ - { no: 0, name: 'DEFAULT' }, - { no: 1, name: 'NOTICE' }, - { no: 2, name: 'WARNING' }, - ], -); +proto3.util.setEnumType(OnboardUserStatus_StatusCode, "google.internal.cloud.code.v1internal.OnboardUserStatus.StatusCode", [ + { no: 0, name: "DEFAULT" }, + { no: 1, name: "NOTICE" }, + { no: 2, name: "WARNING" } +]); var LoadCodeAssistResponse = class _LoadCodeAssistResponse extends Message { /** * POST PUBLIC PREVIEW: User's current tier; not set if this is not a known @@ -4065,56 +3624,19 @@ var LoadCodeAssistResponse = class _LoadCodeAssistResponse extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = - 'google.internal.cloud.code.v1internal.LoadCodeAssistResponse'; + static typeName = "google.internal.cloud.code.v1internal.LoadCodeAssistResponse"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'current_tier', kind: 'message', T: UserTier }, - { - no: 2, - name: 'allowed_tiers', - kind: 'message', - T: UserTier, - repeated: true, - }, - { - no: 3, - name: 'cloudaicompanion_project', - kind: 'scalar', - T: 9, - opt: true, - }, - { - no: 5, - name: 'ineligible_tiers', - kind: 'message', - T: IneligibleTier, - repeated: true, - }, - { no: 6, name: 'gcp_managed', kind: 'scalar', T: 8, opt: true }, - { no: 7, name: 'manage_subscription_uri', kind: 'scalar', T: 9, opt: true }, - { - no: 8, - name: 'release_channel', - kind: 'message', - T: ReleaseChannel, - opt: true, - }, - { - no: 9, - name: 'upgrade_subscription_uri', - kind: 'scalar', - T: 9, - opt: true, - }, - { - no: 10, - name: 'gemini_code_assist_setting', - kind: 'message', - T: GeminiCodeAssistSetting, - opt: true, - }, - { no: 11, name: 'g1_tier', kind: 'scalar', T: 9, opt: true }, - { no: 12, name: 'paid_tier', kind: 'message', T: UserTier }, + { no: 1, name: "current_tier", kind: "message", T: UserTier }, + { no: 2, name: "allowed_tiers", kind: "message", T: UserTier, repeated: true }, + { no: 3, name: "cloudaicompanion_project", kind: "scalar", T: 9, opt: true }, + { no: 5, name: "ineligible_tiers", kind: "message", T: IneligibleTier, repeated: true }, + { no: 6, name: "gcp_managed", kind: "scalar", T: 8, opt: true }, + { no: 7, name: "manage_subscription_uri", kind: "scalar", T: 9, opt: true }, + { no: 8, name: "release_channel", kind: "message", T: ReleaseChannel, opt: true }, + { no: 9, name: "upgrade_subscription_uri", kind: "scalar", T: 9, opt: true }, + { no: 10, name: "gemini_code_assist_setting", kind: "message", T: GeminiCodeAssistSetting, opt: true }, + { no: 11, name: "g1_tier", kind: "scalar", T: 9, opt: true }, + { no: 12, name: "paid_tier", kind: "message", T: UserTier } ]); static fromBinary(bytes, options) { return new _LoadCodeAssistResponse().fromBinary(bytes, options); @@ -4135,19 +3657,19 @@ var UserTier = class _UserTier extends Message { * * @generated from field: string id = 1; */ - id = ''; + id = ""; /** * Short name for this tier; shown in the client UI * * @generated from field: string name = 2; */ - name = ''; + name = ""; /** * Brief description of this tier; shown in the client UI * * @generated from field: string description = 3; */ - description = ''; + description = ""; /** * Indicates for this tier type if a Gemini service-enabled project needs to * be managed by the user. @@ -4229,86 +3751,57 @@ var UserTier = class _UserTier extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'google.internal.cloud.code.v1internal.UserTier'; + static typeName = "google.internal.cloud.code.v1internal.UserTier"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'id', - kind: 'scalar', - T: 9, + name: "id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'name', - kind: 'scalar', - T: 9, + name: "name", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 3, - name: 'description', - kind: 'scalar', - T: 9, + name: "description", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 4, - name: 'user_defined_cloudaicompanion_project', - kind: 'scalar', - T: 8, + name: "user_defined_cloudaicompanion_project", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, - { - no: 5, - name: 'privacy_notice', - kind: 'message', - T: UserTier_PrivacyNotice, - }, + { no: 5, name: "privacy_notice", kind: "message", T: UserTier_PrivacyNotice }, { no: 6, - name: 'is_default', - kind: 'scalar', - T: 8, + name: "is_default", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, - { - no: 7, - name: 'upgrade_subscription_uri', - kind: 'scalar', - T: 9, - opt: true, - }, - { - no: 8, - name: 'upgrade_subscription_text', - kind: 'scalar', - T: 9, - opt: true, - }, - { no: 11, name: 'upgrade_button_text', kind: 'scalar', T: 9, opt: true }, - { no: 12, name: 'client_experience_tag', kind: 'scalar', T: 9, opt: true }, - { - no: 9, - name: 'upgrade_subscription_type', - kind: 'enum', - T: proto3.getEnumType(UserTier_UpgradeType), - opt: true, - }, + { no: 7, name: "upgrade_subscription_uri", kind: "scalar", T: 9, opt: true }, + { no: 8, name: "upgrade_subscription_text", kind: "scalar", T: 9, opt: true }, + { no: 11, name: "upgrade_button_text", kind: "scalar", T: 9, opt: true }, + { no: 12, name: "client_experience_tag", kind: "scalar", T: 9, opt: true }, + { no: 9, name: "upgrade_subscription_type", kind: "enum", T: proto3.getEnumType(UserTier_UpgradeType), opt: true }, { no: 13, - name: 'uses_gcp_tos', - kind: 'scalar', - T: 8, + name: "uses_gcp_tos", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, - { - no: 14, - name: 'available_credits', - kind: 'message', - T: Credits, - repeated: true, - }, + { no: 14, name: "available_credits", kind: "message", T: Credits, repeated: true } ]); static fromBinary(bytes, options) { return new _UserTier().fromBinary(bytes, options); @@ -4324,29 +3817,20 @@ var UserTier = class _UserTier extends Message { } }; var UserTier_UpgradeType; -(function (UserTier_UpgradeType2) { - UserTier_UpgradeType2[ - (UserTier_UpgradeType2['UPGRADE_TYPE_UNSPECIFIED'] = 0) - ] = 'UPGRADE_TYPE_UNSPECIFIED'; - UserTier_UpgradeType2[(UserTier_UpgradeType2['GDP'] = 1)] = 'GDP'; - UserTier_UpgradeType2[(UserTier_UpgradeType2['GOOGLE_ONE'] = 2)] = - 'GOOGLE_ONE'; - UserTier_UpgradeType2[(UserTier_UpgradeType2['GDP_HELIUM'] = 3)] = - 'GDP_HELIUM'; - UserTier_UpgradeType2[(UserTier_UpgradeType2['GOOGLE_ONE_HELIUM'] = 4)] = - 'GOOGLE_ONE_HELIUM'; +(function(UserTier_UpgradeType2) { + UserTier_UpgradeType2[UserTier_UpgradeType2["UPGRADE_TYPE_UNSPECIFIED"] = 0] = "UPGRADE_TYPE_UNSPECIFIED"; + UserTier_UpgradeType2[UserTier_UpgradeType2["GDP"] = 1] = "GDP"; + UserTier_UpgradeType2[UserTier_UpgradeType2["GOOGLE_ONE"] = 2] = "GOOGLE_ONE"; + UserTier_UpgradeType2[UserTier_UpgradeType2["GDP_HELIUM"] = 3] = "GDP_HELIUM"; + UserTier_UpgradeType2[UserTier_UpgradeType2["GOOGLE_ONE_HELIUM"] = 4] = "GOOGLE_ONE_HELIUM"; })(UserTier_UpgradeType || (UserTier_UpgradeType = {})); -proto3.util.setEnumType( - UserTier_UpgradeType, - 'google.internal.cloud.code.v1internal.UserTier.UpgradeType', - [ - { no: 0, name: 'UPGRADE_TYPE_UNSPECIFIED' }, - { no: 1, name: 'GDP' }, - { no: 2, name: 'GOOGLE_ONE' }, - { no: 3, name: 'GDP_HELIUM' }, - { no: 4, name: 'GOOGLE_ONE_HELIUM' }, - ], -); +proto3.util.setEnumType(UserTier_UpgradeType, "google.internal.cloud.code.v1internal.UserTier.UpgradeType", [ + { no: 0, name: "UPGRADE_TYPE_UNSPECIFIED" }, + { no: 1, name: "GDP" }, + { no: 2, name: "GOOGLE_ONE" }, + { no: 3, name: "GDP_HELIUM" }, + { no: 4, name: "GOOGLE_ONE_HELIUM" } +]); var UserTier_PrivacyNotice = class _UserTier_PrivacyNotice extends Message { /** * If true, the privacy notice should be shown to the user. @@ -4372,24 +3856,23 @@ var UserTier_PrivacyNotice = class _UserTier_PrivacyNotice extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = - 'google.internal.cloud.code.v1internal.UserTier.PrivacyNotice'; + static typeName = "google.internal.cloud.code.v1internal.UserTier.PrivacyNotice"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'show_notice', - kind: 'scalar', - T: 8, + name: "show_notice", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, - { no: 2, name: 'notice_text', kind: 'scalar', T: 9, opt: true }, + { no: 2, name: "notice_text", kind: "scalar", T: 9, opt: true }, { no: 4, - name: 'minor_notice', - kind: 'scalar', - T: 8, + name: "minor_notice", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ - }, + } ]); static fromBinary(bytes, options) { return new _UserTier_PrivacyNotice().fromBinary(bytes, options); @@ -4428,8 +3911,7 @@ var GeminiCodeAssistSetting = class _GeminiCodeAssistSetting extends Message { * * @generated from field: google.internal.cloud.code.v1internal.GeminiCodeAssistSetting.GroundingType grounding_type = 4; */ - groundingType = - GeminiCodeAssistSetting_GroundingType.GROUNDING_TYPE_UNSPECIFIED; + groundingType = GeminiCodeAssistSetting_GroundingType.GROUNDING_TYPE_UNSPECIFIED; /** * Whether secure mode is enabled. * If true, certain features (e.g. turbo/YOLO mode, browser features) will @@ -4479,53 +3961,37 @@ var GeminiCodeAssistSetting = class _GeminiCodeAssistSetting extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = - 'google.internal.cloud.code.v1internal.GeminiCodeAssistSetting'; + static typeName = "google.internal.cloud.code.v1internal.GeminiCodeAssistSetting"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'disable_telemetry', - kind: 'scalar', - T: 8, + name: "disable_telemetry", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 2, - name: 'disable_feedback', - kind: 'scalar', - T: 8, + name: "disable_feedback", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, - { no: 3, name: 'recitation_policy', kind: 'message', T: RecitationPolicy }, - { - no: 4, - name: 'grounding_type', - kind: 'enum', - T: proto3.getEnumType(GeminiCodeAssistSetting_GroundingType), - }, + { no: 3, name: "recitation_policy", kind: "message", T: RecitationPolicy }, + { no: 4, name: "grounding_type", kind: "enum", T: proto3.getEnumType(GeminiCodeAssistSetting_GroundingType) }, { no: 5, - name: 'secure_mode_enabled', - kind: 'scalar', - T: 8, + name: "secure_mode_enabled", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, - { no: 6, name: 'mcp_setting', kind: 'message', T: McpSetting }, - { no: 7, name: 'turbo_mode_setting', kind: 'message', T: TurboModeSetting }, - { no: 8, name: 'browser_setting', kind: 'message', T: BrowserSetting }, - { - no: 9, - name: 'preview_feature_setting', - kind: 'message', - T: PreviewFeatureSetting, - }, - { no: 10, name: 'agent_setting', kind: 'message', T: AgentSetting }, - { - no: 11, - name: 'cli_feature_setting', - kind: 'message', - T: CliFeatureSetting, - }, + { no: 6, name: "mcp_setting", kind: "message", T: McpSetting }, + { no: 7, name: "turbo_mode_setting", kind: "message", T: TurboModeSetting }, + { no: 8, name: "browser_setting", kind: "message", T: BrowserSetting }, + { no: 9, name: "preview_feature_setting", kind: "message", T: PreviewFeatureSetting }, + { no: 10, name: "agent_setting", kind: "message", T: AgentSetting }, + { no: 11, name: "cli_feature_setting", kind: "message", T: CliFeatureSetting } ]); static fromBinary(bytes, options) { return new _GeminiCodeAssistSetting().fromBinary(bytes, options); @@ -4541,29 +4007,16 @@ var GeminiCodeAssistSetting = class _GeminiCodeAssistSetting extends Message { } }; var GeminiCodeAssistSetting_GroundingType; -(function (GeminiCodeAssistSetting_GroundingType2) { - GeminiCodeAssistSetting_GroundingType2[ - (GeminiCodeAssistSetting_GroundingType2['GROUNDING_TYPE_UNSPECIFIED'] = 0) - ] = 'GROUNDING_TYPE_UNSPECIFIED'; - GeminiCodeAssistSetting_GroundingType2[ - (GeminiCodeAssistSetting_GroundingType2['GROUNDING_WITH_GOOGLE_SEARCH'] = 1) - ] = 'GROUNDING_WITH_GOOGLE_SEARCH'; - GeminiCodeAssistSetting_GroundingType2[ - (GeminiCodeAssistSetting_GroundingType2['WEB_GROUNDING_FOR_ENTERPRISE'] = 2) - ] = 'WEB_GROUNDING_FOR_ENTERPRISE'; -})( - GeminiCodeAssistSetting_GroundingType || - (GeminiCodeAssistSetting_GroundingType = {}), -); -proto3.util.setEnumType( - GeminiCodeAssistSetting_GroundingType, - 'google.internal.cloud.code.v1internal.GeminiCodeAssistSetting.GroundingType', - [ - { no: 0, name: 'GROUNDING_TYPE_UNSPECIFIED' }, - { no: 1, name: 'GROUNDING_WITH_GOOGLE_SEARCH' }, - { no: 2, name: 'WEB_GROUNDING_FOR_ENTERPRISE' }, - ], -); +(function(GeminiCodeAssistSetting_GroundingType2) { + GeminiCodeAssistSetting_GroundingType2[GeminiCodeAssistSetting_GroundingType2["GROUNDING_TYPE_UNSPECIFIED"] = 0] = "GROUNDING_TYPE_UNSPECIFIED"; + GeminiCodeAssistSetting_GroundingType2[GeminiCodeAssistSetting_GroundingType2["GROUNDING_WITH_GOOGLE_SEARCH"] = 1] = "GROUNDING_WITH_GOOGLE_SEARCH"; + GeminiCodeAssistSetting_GroundingType2[GeminiCodeAssistSetting_GroundingType2["WEB_GROUNDING_FOR_ENTERPRISE"] = 2] = "WEB_GROUNDING_FOR_ENTERPRISE"; +})(GeminiCodeAssistSetting_GroundingType || (GeminiCodeAssistSetting_GroundingType = {})); +proto3.util.setEnumType(GeminiCodeAssistSetting_GroundingType, "google.internal.cloud.code.v1internal.GeminiCodeAssistSetting.GroundingType", [ + { no: 0, name: "GROUNDING_TYPE_UNSPECIFIED" }, + { no: 1, name: "GROUNDING_WITH_GOOGLE_SEARCH" }, + { no: 2, name: "WEB_GROUNDING_FOR_ENTERPRISE" } +]); var RecitationPolicy = class _RecitationPolicy extends Message { /** * Whether citations should be disabled. @@ -4576,15 +4029,15 @@ var RecitationPolicy = class _RecitationPolicy extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'google.internal.cloud.code.v1internal.RecitationPolicy'; + static typeName = "google.internal.cloud.code.v1internal.RecitationPolicy"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'disable_citations', - kind: 'scalar', - T: 8, + name: "disable_citations", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ - }, + } ]); static fromBinary(bytes, options) { return new _RecitationPolicy().fromBinary(bytes, options); @@ -4611,28 +4064,28 @@ var McpSetting = class _McpSetting extends Message { * * @generated from field: string override_mcp_config_json = 2; */ - overrideMcpConfigJson = ''; + overrideMcpConfigJson = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'google.internal.cloud.code.v1internal.McpSetting'; + static typeName = "google.internal.cloud.code.v1internal.McpSetting"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'mcp_enabled', - kind: 'scalar', - T: 8, + name: "mcp_enabled", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 2, - name: 'override_mcp_config_json', - kind: 'scalar', - T: 9, + name: "override_mcp_config_json", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _McpSetting().fromBinary(bytes, options); @@ -4665,22 +4118,22 @@ var TurboModeSetting = class _TurboModeSetting extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'google.internal.cloud.code.v1internal.TurboModeSetting'; + static typeName = "google.internal.cloud.code.v1internal.TurboModeSetting"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'terminal_auto_execution_enabled', - kind: 'scalar', - T: 8, + name: "terminal_auto_execution_enabled", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 2, - name: 'browser_js_execution_enabled', - kind: 'scalar', - T: 8, + name: "browser_js_execution_enabled", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ - }, + } ]); static fromBinary(bytes, options) { return new _TurboModeSetting().fromBinary(bytes, options); @@ -4719,17 +4172,17 @@ var BrowserSetting = class _BrowserSetting extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'google.internal.cloud.code.v1internal.BrowserSetting'; + static typeName = "google.internal.cloud.code.v1internal.BrowserSetting"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'browser_enabled', - kind: 'scalar', - T: 8, + name: "browser_enabled", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, - { no: 2, name: 'allowed_websites', kind: 'scalar', T: 9, repeated: true }, - { no: 3, name: 'denied_websites', kind: 'scalar', T: 9, repeated: true }, + { no: 2, name: "allowed_websites", kind: "scalar", T: 9, repeated: true }, + { no: 3, name: "denied_websites", kind: "scalar", T: 9, repeated: true } ]); static fromBinary(bytes, options) { return new _BrowserSetting().fromBinary(bytes, options); @@ -4756,16 +4209,15 @@ var PreviewFeatureSetting = class _PreviewFeatureSetting extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = - 'google.internal.cloud.code.v1internal.PreviewFeatureSetting'; + static typeName = "google.internal.cloud.code.v1internal.PreviewFeatureSetting"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'preview_models_enabled', - kind: 'scalar', - T: 8, + name: "preview_models_enabled", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ - }, + } ]); static fromBinary(bytes, options) { return new _PreviewFeatureSetting().fromBinary(bytes, options); @@ -4793,9 +4245,9 @@ var AgentSetting = class _AgentSetting extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'google.internal.cloud.code.v1internal.AgentSetting'; + static typeName = "google.internal.cloud.code.v1internal.AgentSetting"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'agy_allowed_models', kind: 'scalar', T: 9, repeated: true }, + { no: 1, name: "agy_allowed_models", kind: "scalar", T: 9, repeated: true } ]); static fromBinary(bytes, options) { return new _AgentSetting().fromBinary(bytes, options); @@ -4829,21 +4281,16 @@ var CliFeatureSetting = class _CliFeatureSetting extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'google.internal.cloud.code.v1internal.CliFeatureSetting'; + static typeName = "google.internal.cloud.code.v1internal.CliFeatureSetting"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'extensions_setting', - kind: 'message', - T: CliFeatureSetting_ExtensionsSetting, - }, + { no: 1, name: "extensions_setting", kind: "message", T: CliFeatureSetting_ExtensionsSetting }, { no: 2, - name: 'unmanaged_capabilities_enabled', - kind: 'scalar', - T: 8, + name: "unmanaged_capabilities_enabled", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ - }, + } ]); static fromBinary(bytes, options) { return new _CliFeatureSetting().fromBinary(bytes, options); @@ -4870,34 +4317,24 @@ var CliFeatureSetting_ExtensionsSetting = class _CliFeatureSetting_ExtensionsSet proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = - 'google.internal.cloud.code.v1internal.CliFeatureSetting.ExtensionsSetting'; + static typeName = "google.internal.cloud.code.v1internal.CliFeatureSetting.ExtensionsSetting"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'extensions_enabled', - kind: 'scalar', - T: 8, + name: "extensions_enabled", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ - }, + } ]); static fromBinary(bytes, options) { - return new _CliFeatureSetting_ExtensionsSetting().fromBinary( - bytes, - options, - ); + return new _CliFeatureSetting_ExtensionsSetting().fromBinary(bytes, options); } static fromJson(jsonValue, options) { - return new _CliFeatureSetting_ExtensionsSetting().fromJson( - jsonValue, - options, - ); + return new _CliFeatureSetting_ExtensionsSetting().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _CliFeatureSetting_ExtensionsSetting().fromJsonString( - jsonString, - options, - ); + return new _CliFeatureSetting_ExtensionsSetting().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_CliFeatureSetting_ExtensionsSetting, a, b); @@ -4909,22 +4346,21 @@ var FetchAdminControlsRequest = class _FetchAdminControlsRequest extends Message * * @generated from field: string project = 1; */ - project = ''; + project = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = - 'google.internal.cloud.code.v1internal.FetchAdminControlsRequest'; + static typeName = "google.internal.cloud.code.v1internal.FetchAdminControlsRequest"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'project', - kind: 'scalar', - T: 9, + name: "project", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _FetchAdminControlsRequest().fromBinary(bytes, options); @@ -4964,8 +4400,7 @@ var FetchAdminControlsResponse = class _FetchAdminControlsResponse extends Messa * * @generated from field: google.internal.cloud.code.v1internal.FetchAdminControlsResponse.GroundingType grounding_type = 4; */ - groundingType = - FetchAdminControlsResponse_GroundingType.GROUNDING_TYPE_UNSPECIFIED; + groundingType = FetchAdminControlsResponse_GroundingType.GROUNDING_TYPE_UNSPECIFIED; /** * Whether secure mode is enabled. * If true, certain features (e.g. turbo/YOLO mode, browser features) will @@ -5015,53 +4450,37 @@ var FetchAdminControlsResponse = class _FetchAdminControlsResponse extends Messa proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = - 'google.internal.cloud.code.v1internal.FetchAdminControlsResponse'; + static typeName = "google.internal.cloud.code.v1internal.FetchAdminControlsResponse"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'disable_telemetry', - kind: 'scalar', - T: 8, + name: "disable_telemetry", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 2, - name: 'disable_feedback', - kind: 'scalar', - T: 8, + name: "disable_feedback", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, - { no: 3, name: 'recitation_policy', kind: 'message', T: RecitationPolicy }, - { - no: 4, - name: 'grounding_type', - kind: 'enum', - T: proto3.getEnumType(FetchAdminControlsResponse_GroundingType), - }, + { no: 3, name: "recitation_policy", kind: "message", T: RecitationPolicy }, + { no: 4, name: "grounding_type", kind: "enum", T: proto3.getEnumType(FetchAdminControlsResponse_GroundingType) }, { no: 5, - name: 'secure_mode_enabled', - kind: 'scalar', - T: 8, + name: "secure_mode_enabled", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, - { no: 6, name: 'mcp_setting', kind: 'message', T: McpSetting }, - { no: 7, name: 'turbo_mode_setting', kind: 'message', T: TurboModeSetting }, - { no: 8, name: 'browser_setting', kind: 'message', T: BrowserSetting }, - { - no: 9, - name: 'preview_feature_setting', - kind: 'message', - T: PreviewFeatureSetting, - }, - { no: 10, name: 'agent_setting', kind: 'message', T: AgentSetting }, - { - no: 11, - name: 'cli_feature_setting', - kind: 'message', - T: CliFeatureSetting, - }, + { no: 6, name: "mcp_setting", kind: "message", T: McpSetting }, + { no: 7, name: "turbo_mode_setting", kind: "message", T: TurboModeSetting }, + { no: 8, name: "browser_setting", kind: "message", T: BrowserSetting }, + { no: 9, name: "preview_feature_setting", kind: "message", T: PreviewFeatureSetting }, + { no: 10, name: "agent_setting", kind: "message", T: AgentSetting }, + { no: 11, name: "cli_feature_setting", kind: "message", T: CliFeatureSetting } ]); static fromBinary(bytes, options) { return new _FetchAdminControlsResponse().fromBinary(bytes, options); @@ -5070,3874 +4489,2773 @@ var FetchAdminControlsResponse = class _FetchAdminControlsResponse extends Messa return new _FetchAdminControlsResponse().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _FetchAdminControlsResponse().fromJsonString( - jsonString, - options, - ); + return new _FetchAdminControlsResponse().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_FetchAdminControlsResponse, a, b); } }; var FetchAdminControlsResponse_GroundingType; -(function (FetchAdminControlsResponse_GroundingType2) { - FetchAdminControlsResponse_GroundingType2[ - (FetchAdminControlsResponse_GroundingType2['GROUNDING_TYPE_UNSPECIFIED'] = - 0) - ] = 'GROUNDING_TYPE_UNSPECIFIED'; - FetchAdminControlsResponse_GroundingType2[ - (FetchAdminControlsResponse_GroundingType2['GROUNDING_WITH_GOOGLE_SEARCH'] = - 1) - ] = 'GROUNDING_WITH_GOOGLE_SEARCH'; - FetchAdminControlsResponse_GroundingType2[ - (FetchAdminControlsResponse_GroundingType2['WEB_GROUNDING_FOR_ENTERPRISE'] = - 2) - ] = 'WEB_GROUNDING_FOR_ENTERPRISE'; -})( - FetchAdminControlsResponse_GroundingType || - (FetchAdminControlsResponse_GroundingType = {}), -); -proto3.util.setEnumType( - FetchAdminControlsResponse_GroundingType, - 'google.internal.cloud.code.v1internal.FetchAdminControlsResponse.GroundingType', - [ - { no: 0, name: 'GROUNDING_TYPE_UNSPECIFIED' }, - { no: 1, name: 'GROUNDING_WITH_GOOGLE_SEARCH' }, - { no: 2, name: 'WEB_GROUNDING_FOR_ENTERPRISE' }, - ], -); +(function(FetchAdminControlsResponse_GroundingType2) { + FetchAdminControlsResponse_GroundingType2[FetchAdminControlsResponse_GroundingType2["GROUNDING_TYPE_UNSPECIFIED"] = 0] = "GROUNDING_TYPE_UNSPECIFIED"; + FetchAdminControlsResponse_GroundingType2[FetchAdminControlsResponse_GroundingType2["GROUNDING_WITH_GOOGLE_SEARCH"] = 1] = "GROUNDING_WITH_GOOGLE_SEARCH"; + FetchAdminControlsResponse_GroundingType2[FetchAdminControlsResponse_GroundingType2["WEB_GROUNDING_FOR_ENTERPRISE"] = 2] = "WEB_GROUNDING_FOR_ENTERPRISE"; +})(FetchAdminControlsResponse_GroundingType || (FetchAdminControlsResponse_GroundingType = {})); +proto3.util.setEnumType(FetchAdminControlsResponse_GroundingType, "google.internal.cloud.code.v1internal.FetchAdminControlsResponse.GroundingType", [ + { no: 0, name: "GROUNDING_TYPE_UNSPECIFIED" }, + { no: 1, name: "GROUNDING_WITH_GOOGLE_SEARCH" }, + { no: 2, name: "WEB_GROUNDING_FOR_ENTERPRISE" } +]); // exa/proto_ts/dist/exa/codeium_common_pb/codeium_common_pb.js var CommandRequestSource; -(function (CommandRequestSource2) { - CommandRequestSource2[(CommandRequestSource2['UNSPECIFIED'] = 0)] = - 'UNSPECIFIED'; - CommandRequestSource2[(CommandRequestSource2['DEFAULT'] = 1)] = 'DEFAULT'; - CommandRequestSource2[(CommandRequestSource2['PLAN'] = 7)] = 'PLAN'; - CommandRequestSource2[(CommandRequestSource2['FAST_APPLY'] = 12)] = - 'FAST_APPLY'; - CommandRequestSource2[(CommandRequestSource2['TERMINAL'] = 13)] = 'TERMINAL'; - CommandRequestSource2[(CommandRequestSource2['SUPERCOMPLETE'] = 10)] = - 'SUPERCOMPLETE'; - CommandRequestSource2[(CommandRequestSource2['TAB_JUMP'] = 14)] = 'TAB_JUMP'; - CommandRequestSource2[(CommandRequestSource2['CASCADE_CHAT'] = 16)] = - 'CASCADE_CHAT'; +(function(CommandRequestSource2) { + CommandRequestSource2[CommandRequestSource2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + CommandRequestSource2[CommandRequestSource2["DEFAULT"] = 1] = "DEFAULT"; + CommandRequestSource2[CommandRequestSource2["PLAN"] = 7] = "PLAN"; + CommandRequestSource2[CommandRequestSource2["FAST_APPLY"] = 12] = "FAST_APPLY"; + CommandRequestSource2[CommandRequestSource2["TERMINAL"] = 13] = "TERMINAL"; + CommandRequestSource2[CommandRequestSource2["SUPERCOMPLETE"] = 10] = "SUPERCOMPLETE"; + CommandRequestSource2[CommandRequestSource2["TAB_JUMP"] = 14] = "TAB_JUMP"; + CommandRequestSource2[CommandRequestSource2["CASCADE_CHAT"] = 16] = "CASCADE_CHAT"; })(CommandRequestSource || (CommandRequestSource = {})); -proto3.util.setEnumType( - CommandRequestSource, - 'exa.codeium_common_pb.CommandRequestSource', - [ - { no: 0, name: 'COMMAND_REQUEST_SOURCE_UNSPECIFIED' }, - { no: 1, name: 'COMMAND_REQUEST_SOURCE_DEFAULT' }, - { no: 7, name: 'COMMAND_REQUEST_SOURCE_PLAN' }, - { no: 12, name: 'COMMAND_REQUEST_SOURCE_FAST_APPLY' }, - { no: 13, name: 'COMMAND_REQUEST_SOURCE_TERMINAL' }, - { no: 10, name: 'COMMAND_REQUEST_SOURCE_SUPERCOMPLETE' }, - { no: 14, name: 'COMMAND_REQUEST_SOURCE_TAB_JUMP' }, - { no: 16, name: 'COMMAND_REQUEST_SOURCE_CASCADE_CHAT' }, - ], -); +proto3.util.setEnumType(CommandRequestSource, "exa.codeium_common_pb.CommandRequestSource", [ + { no: 0, name: "COMMAND_REQUEST_SOURCE_UNSPECIFIED" }, + { no: 1, name: "COMMAND_REQUEST_SOURCE_DEFAULT" }, + { no: 7, name: "COMMAND_REQUEST_SOURCE_PLAN" }, + { no: 12, name: "COMMAND_REQUEST_SOURCE_FAST_APPLY" }, + { no: 13, name: "COMMAND_REQUEST_SOURCE_TERMINAL" }, + { no: 10, name: "COMMAND_REQUEST_SOURCE_SUPERCOMPLETE" }, + { no: 14, name: "COMMAND_REQUEST_SOURCE_TAB_JUMP" }, + { no: 16, name: "COMMAND_REQUEST_SOURCE_CASCADE_CHAT" } +]); var ProviderSource; -(function (ProviderSource2) { - ProviderSource2[(ProviderSource2['UNSPECIFIED'] = 0)] = 'UNSPECIFIED'; - ProviderSource2[(ProviderSource2['AUTOCOMPLETE'] = 1)] = 'AUTOCOMPLETE'; - ProviderSource2[(ProviderSource2['COMMAND_GENERATE'] = 4)] = - 'COMMAND_GENERATE'; - ProviderSource2[(ProviderSource2['COMMAND_EDIT'] = 5)] = 'COMMAND_EDIT'; - ProviderSource2[(ProviderSource2['SUPERCOMPLETE'] = 6)] = 'SUPERCOMPLETE'; - ProviderSource2[(ProviderSource2['COMMAND_PLAN'] = 7)] = 'COMMAND_PLAN'; - ProviderSource2[(ProviderSource2['FAST_APPLY'] = 9)] = 'FAST_APPLY'; - ProviderSource2[(ProviderSource2['COMMAND_TERMINAL'] = 10)] = - 'COMMAND_TERMINAL'; - ProviderSource2[(ProviderSource2['TAB_JUMP'] = 11)] = 'TAB_JUMP'; - ProviderSource2[(ProviderSource2['CASCADE'] = 12)] = 'CASCADE'; +(function(ProviderSource2) { + ProviderSource2[ProviderSource2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + ProviderSource2[ProviderSource2["AUTOCOMPLETE"] = 1] = "AUTOCOMPLETE"; + ProviderSource2[ProviderSource2["COMMAND_GENERATE"] = 4] = "COMMAND_GENERATE"; + ProviderSource2[ProviderSource2["COMMAND_EDIT"] = 5] = "COMMAND_EDIT"; + ProviderSource2[ProviderSource2["SUPERCOMPLETE"] = 6] = "SUPERCOMPLETE"; + ProviderSource2[ProviderSource2["COMMAND_PLAN"] = 7] = "COMMAND_PLAN"; + ProviderSource2[ProviderSource2["FAST_APPLY"] = 9] = "FAST_APPLY"; + ProviderSource2[ProviderSource2["COMMAND_TERMINAL"] = 10] = "COMMAND_TERMINAL"; + ProviderSource2[ProviderSource2["TAB_JUMP"] = 11] = "TAB_JUMP"; + ProviderSource2[ProviderSource2["CASCADE"] = 12] = "CASCADE"; })(ProviderSource || (ProviderSource = {})); -proto3.util.setEnumType( - ProviderSource, - 'exa.codeium_common_pb.ProviderSource', - [ - { no: 0, name: 'PROVIDER_SOURCE_UNSPECIFIED' }, - { no: 1, name: 'PROVIDER_SOURCE_AUTOCOMPLETE' }, - { no: 4, name: 'PROVIDER_SOURCE_COMMAND_GENERATE' }, - { no: 5, name: 'PROVIDER_SOURCE_COMMAND_EDIT' }, - { no: 6, name: 'PROVIDER_SOURCE_SUPERCOMPLETE' }, - { no: 7, name: 'PROVIDER_SOURCE_COMMAND_PLAN' }, - { no: 9, name: 'PROVIDER_SOURCE_FAST_APPLY' }, - { no: 10, name: 'PROVIDER_SOURCE_COMMAND_TERMINAL' }, - { no: 11, name: 'PROVIDER_SOURCE_TAB_JUMP' }, - { no: 12, name: 'PROVIDER_SOURCE_CASCADE' }, - ], -); +proto3.util.setEnumType(ProviderSource, "exa.codeium_common_pb.ProviderSource", [ + { no: 0, name: "PROVIDER_SOURCE_UNSPECIFIED" }, + { no: 1, name: "PROVIDER_SOURCE_AUTOCOMPLETE" }, + { no: 4, name: "PROVIDER_SOURCE_COMMAND_GENERATE" }, + { no: 5, name: "PROVIDER_SOURCE_COMMAND_EDIT" }, + { no: 6, name: "PROVIDER_SOURCE_SUPERCOMPLETE" }, + { no: 7, name: "PROVIDER_SOURCE_COMMAND_PLAN" }, + { no: 9, name: "PROVIDER_SOURCE_FAST_APPLY" }, + { no: 10, name: "PROVIDER_SOURCE_COMMAND_TERMINAL" }, + { no: 11, name: "PROVIDER_SOURCE_TAB_JUMP" }, + { no: 12, name: "PROVIDER_SOURCE_CASCADE" } +]); var PromptElementKind; -(function (PromptElementKind2) { - PromptElementKind2[(PromptElementKind2['UNSPECIFIED'] = 0)] = 'UNSPECIFIED'; - PromptElementKind2[(PromptElementKind2['FILE_MARKER'] = 2)] = 'FILE_MARKER'; - PromptElementKind2[(PromptElementKind2['OTHER_DOCUMENT'] = 4)] = - 'OTHER_DOCUMENT'; - PromptElementKind2[(PromptElementKind2['BEFORE_CURSOR'] = 5)] = - 'BEFORE_CURSOR'; - PromptElementKind2[(PromptElementKind2['AFTER_CURSOR'] = 7)] = 'AFTER_CURSOR'; - PromptElementKind2[(PromptElementKind2['FIM'] = 8)] = 'FIM'; - PromptElementKind2[(PromptElementKind2['SOT'] = 9)] = 'SOT'; - PromptElementKind2[(PromptElementKind2['EOT'] = 10)] = 'EOT'; - PromptElementKind2[(PromptElementKind2['CODE_CONTEXT_ITEM'] = 13)] = - 'CODE_CONTEXT_ITEM'; - PromptElementKind2[(PromptElementKind2['INSTRUCTION'] = 14)] = 'INSTRUCTION'; - PromptElementKind2[(PromptElementKind2['SELECTION'] = 15)] = 'SELECTION'; - PromptElementKind2[(PromptElementKind2['TRAJECTORY_STEP'] = 16)] = - 'TRAJECTORY_STEP'; - PromptElementKind2[(PromptElementKind2['ACTIVE_DOCUMENT'] = 17)] = - 'ACTIVE_DOCUMENT'; - PromptElementKind2[(PromptElementKind2['CACHED_MESSAGE'] = 18)] = - 'CACHED_MESSAGE'; +(function(PromptElementKind2) { + PromptElementKind2[PromptElementKind2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + PromptElementKind2[PromptElementKind2["FILE_MARKER"] = 2] = "FILE_MARKER"; + PromptElementKind2[PromptElementKind2["OTHER_DOCUMENT"] = 4] = "OTHER_DOCUMENT"; + PromptElementKind2[PromptElementKind2["BEFORE_CURSOR"] = 5] = "BEFORE_CURSOR"; + PromptElementKind2[PromptElementKind2["AFTER_CURSOR"] = 7] = "AFTER_CURSOR"; + PromptElementKind2[PromptElementKind2["FIM"] = 8] = "FIM"; + PromptElementKind2[PromptElementKind2["SOT"] = 9] = "SOT"; + PromptElementKind2[PromptElementKind2["EOT"] = 10] = "EOT"; + PromptElementKind2[PromptElementKind2["CODE_CONTEXT_ITEM"] = 13] = "CODE_CONTEXT_ITEM"; + PromptElementKind2[PromptElementKind2["INSTRUCTION"] = 14] = "INSTRUCTION"; + PromptElementKind2[PromptElementKind2["SELECTION"] = 15] = "SELECTION"; + PromptElementKind2[PromptElementKind2["TRAJECTORY_STEP"] = 16] = "TRAJECTORY_STEP"; + PromptElementKind2[PromptElementKind2["ACTIVE_DOCUMENT"] = 17] = "ACTIVE_DOCUMENT"; + PromptElementKind2[PromptElementKind2["CACHED_MESSAGE"] = 18] = "CACHED_MESSAGE"; })(PromptElementKind || (PromptElementKind = {})); -proto3.util.setEnumType( - PromptElementKind, - 'exa.codeium_common_pb.PromptElementKind', - [ - { no: 0, name: 'PROMPT_ELEMENT_KIND_UNSPECIFIED' }, - { no: 2, name: 'PROMPT_ELEMENT_KIND_FILE_MARKER' }, - { no: 4, name: 'PROMPT_ELEMENT_KIND_OTHER_DOCUMENT' }, - { no: 5, name: 'PROMPT_ELEMENT_KIND_BEFORE_CURSOR' }, - { no: 7, name: 'PROMPT_ELEMENT_KIND_AFTER_CURSOR' }, - { no: 8, name: 'PROMPT_ELEMENT_KIND_FIM' }, - { no: 9, name: 'PROMPT_ELEMENT_KIND_SOT' }, - { no: 10, name: 'PROMPT_ELEMENT_KIND_EOT' }, - { no: 13, name: 'PROMPT_ELEMENT_KIND_CODE_CONTEXT_ITEM' }, - { no: 14, name: 'PROMPT_ELEMENT_KIND_INSTRUCTION' }, - { no: 15, name: 'PROMPT_ELEMENT_KIND_SELECTION' }, - { no: 16, name: 'PROMPT_ELEMENT_KIND_TRAJECTORY_STEP' }, - { no: 17, name: 'PROMPT_ELEMENT_KIND_ACTIVE_DOCUMENT' }, - { no: 18, name: 'PROMPT_ELEMENT_KIND_CACHED_MESSAGE' }, - ], -); +proto3.util.setEnumType(PromptElementKind, "exa.codeium_common_pb.PromptElementKind", [ + { no: 0, name: "PROMPT_ELEMENT_KIND_UNSPECIFIED" }, + { no: 2, name: "PROMPT_ELEMENT_KIND_FILE_MARKER" }, + { no: 4, name: "PROMPT_ELEMENT_KIND_OTHER_DOCUMENT" }, + { no: 5, name: "PROMPT_ELEMENT_KIND_BEFORE_CURSOR" }, + { no: 7, name: "PROMPT_ELEMENT_KIND_AFTER_CURSOR" }, + { no: 8, name: "PROMPT_ELEMENT_KIND_FIM" }, + { no: 9, name: "PROMPT_ELEMENT_KIND_SOT" }, + { no: 10, name: "PROMPT_ELEMENT_KIND_EOT" }, + { no: 13, name: "PROMPT_ELEMENT_KIND_CODE_CONTEXT_ITEM" }, + { no: 14, name: "PROMPT_ELEMENT_KIND_INSTRUCTION" }, + { no: 15, name: "PROMPT_ELEMENT_KIND_SELECTION" }, + { no: 16, name: "PROMPT_ELEMENT_KIND_TRAJECTORY_STEP" }, + { no: 17, name: "PROMPT_ELEMENT_KIND_ACTIVE_DOCUMENT" }, + { no: 18, name: "PROMPT_ELEMENT_KIND_CACHED_MESSAGE" } +]); var PromptAnnotationKind; -(function (PromptAnnotationKind2) { - PromptAnnotationKind2[(PromptAnnotationKind2['UNSPECIFIED'] = 0)] = - 'UNSPECIFIED'; - PromptAnnotationKind2[(PromptAnnotationKind2['COPY'] = 1)] = 'COPY'; - PromptAnnotationKind2[(PromptAnnotationKind2['PROMPT_CACHE'] = 2)] = - 'PROMPT_CACHE'; +(function(PromptAnnotationKind2) { + PromptAnnotationKind2[PromptAnnotationKind2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + PromptAnnotationKind2[PromptAnnotationKind2["COPY"] = 1] = "COPY"; + PromptAnnotationKind2[PromptAnnotationKind2["PROMPT_CACHE"] = 2] = "PROMPT_CACHE"; })(PromptAnnotationKind || (PromptAnnotationKind = {})); -proto3.util.setEnumType( - PromptAnnotationKind, - 'exa.codeium_common_pb.PromptAnnotationKind', - [ - { no: 0, name: 'PROMPT_ANNOTATION_KIND_UNSPECIFIED' }, - { no: 1, name: 'PROMPT_ANNOTATION_KIND_COPY' }, - { no: 2, name: 'PROMPT_ANNOTATION_KIND_PROMPT_CACHE' }, - ], -); +proto3.util.setEnumType(PromptAnnotationKind, "exa.codeium_common_pb.PromptAnnotationKind", [ + { no: 0, name: "PROMPT_ANNOTATION_KIND_UNSPECIFIED" }, + { no: 1, name: "PROMPT_ANNOTATION_KIND_COPY" }, + { no: 2, name: "PROMPT_ANNOTATION_KIND_PROMPT_CACHE" } +]); var ExperimentKey; -(function (ExperimentKey2) { - ExperimentKey2[(ExperimentKey2['UNSPECIFIED'] = 0)] = 'UNSPECIFIED'; - ExperimentKey2[(ExperimentKey2['USE_INTERNAL_CHAT_MODEL'] = 36)] = - 'USE_INTERNAL_CHAT_MODEL'; - ExperimentKey2[(ExperimentKey2['RECORD_FILES'] = 47)] = 'RECORD_FILES'; - ExperimentKey2[(ExperimentKey2['NO_SAMPLER_EARLY_STOP'] = 48)] = - 'NO_SAMPLER_EARLY_STOP'; - ExperimentKey2[(ExperimentKey2['CM_MEMORY_TELEMETRY'] = 53)] = - 'CM_MEMORY_TELEMETRY'; - ExperimentKey2[(ExperimentKey2['LANGUAGE_SERVER_VERSION'] = 55)] = - 'LANGUAGE_SERVER_VERSION'; - ExperimentKey2[(ExperimentKey2['LANGUAGE_SERVER_AUTO_RELOAD'] = 56)] = - 'LANGUAGE_SERVER_AUTO_RELOAD'; - ExperimentKey2[(ExperimentKey2['ONLY_MULTILINE'] = 60)] = 'ONLY_MULTILINE'; - ExperimentKey2[(ExperimentKey2['USE_ATTRIBUTION_FOR_INDIVIDUAL_TIER'] = 68)] = - 'USE_ATTRIBUTION_FOR_INDIVIDUAL_TIER'; - ExperimentKey2[(ExperimentKey2['CHAT_MODEL_CONFIG'] = 78)] = - 'CHAT_MODEL_CONFIG'; - ExperimentKey2[(ExperimentKey2['COMMAND_MODEL_CONFIG'] = 79)] = - 'COMMAND_MODEL_CONFIG'; - ExperimentKey2[(ExperimentKey2['MIN_IDE_VERSION'] = 81)] = 'MIN_IDE_VERSION'; - ExperimentKey2[(ExperimentKey2['API_SERVER_VERBOSE_ERRORS'] = 84)] = - 'API_SERVER_VERBOSE_ERRORS'; - ExperimentKey2[(ExperimentKey2['DEFAULT_ENABLE_SEARCH'] = 86)] = - 'DEFAULT_ENABLE_SEARCH'; - ExperimentKey2[(ExperimentKey2['COLLECT_ONBOARDING_EVENTS'] = 87)] = - 'COLLECT_ONBOARDING_EVENTS'; - ExperimentKey2[(ExperimentKey2['COLLECT_EXAMPLE_COMPLETIONS'] = 88)] = - 'COLLECT_EXAMPLE_COMPLETIONS'; - ExperimentKey2[(ExperimentKey2['USE_MULTILINE_MODEL'] = 89)] = - 'USE_MULTILINE_MODEL'; - ExperimentKey2[(ExperimentKey2['ATTRIBUTION_KILL_SWITCH'] = 92)] = - 'ATTRIBUTION_KILL_SWITCH'; - ExperimentKey2[(ExperimentKey2['FAST_MULTILINE'] = 94)] = 'FAST_MULTILINE'; - ExperimentKey2[(ExperimentKey2['SINGLE_COMPLETION'] = 95)] = - 'SINGLE_COMPLETION'; - ExperimentKey2[(ExperimentKey2['STOP_FIRST_NON_WHITESPACE_LINE'] = 96)] = - 'STOP_FIRST_NON_WHITESPACE_LINE'; - ExperimentKey2[(ExperimentKey2['CORTEX_CONFIG'] = 102)] = 'CORTEX_CONFIG'; - ExperimentKey2[(ExperimentKey2['MODEL_CHAT_11121_VARIANTS'] = 103)] = - 'MODEL_CHAT_11121_VARIANTS'; - ExperimentKey2[(ExperimentKey2['INCLUDE_PROMPT_COMPONENTS'] = 105)] = - 'INCLUDE_PROMPT_COMPONENTS'; - ExperimentKey2[(ExperimentKey2['PERSIST_CODE_TRACKER'] = 108)] = - 'PERSIST_CODE_TRACKER'; - ExperimentKey2[(ExperimentKey2['API_SERVER_LIVENESS_PROBE'] = 112)] = - 'API_SERVER_LIVENESS_PROBE'; - ExperimentKey2[(ExperimentKey2['CHAT_COMPLETION_TOKENS_SOFT_LIMIT'] = 114)] = - 'CHAT_COMPLETION_TOKENS_SOFT_LIMIT'; - ExperimentKey2[(ExperimentKey2['CHAT_TOKENS_SOFT_LIMIT'] = 115)] = - 'CHAT_TOKENS_SOFT_LIMIT'; - ExperimentKey2[(ExperimentKey2['DISABLE_COMPLETIONS_CACHE'] = 118)] = - 'DISABLE_COMPLETIONS_CACHE'; - ExperimentKey2[(ExperimentKey2['LLAMA3_405B_KILL_SWITCH'] = 119)] = - 'LLAMA3_405B_KILL_SWITCH'; - ExperimentKey2[(ExperimentKey2['USE_COMMAND_DOCSTRING_GENERATION'] = 121)] = - 'USE_COMMAND_DOCSTRING_GENERATION'; - ExperimentKey2[(ExperimentKey2['SENTRY'] = 136)] = 'SENTRY'; - ExperimentKey2[(ExperimentKey2['FAST_SINGLELINE'] = 144)] = 'FAST_SINGLELINE'; - ExperimentKey2[(ExperimentKey2['R2_LANGUAGE_SERVER_DOWNLOAD'] = 147)] = - 'R2_LANGUAGE_SERVER_DOWNLOAD'; - ExperimentKey2[(ExperimentKey2['SPLIT_MODEL'] = 152)] = 'SPLIT_MODEL'; - ExperimentKey2[(ExperimentKey2['ANTIGRAVITY_SENTRY_SAMPLE_RATE'] = 198)] = - 'ANTIGRAVITY_SENTRY_SAMPLE_RATE'; - ExperimentKey2[(ExperimentKey2['API_SERVER_CUTOFF'] = 158)] = - 'API_SERVER_CUTOFF'; - ExperimentKey2[(ExperimentKey2['FAST_SPEED_KILL_SWITCH'] = 159)] = - 'FAST_SPEED_KILL_SWITCH'; - ExperimentKey2[(ExperimentKey2['PREDICTIVE_MULTILINE'] = 160)] = - 'PREDICTIVE_MULTILINE'; - ExperimentKey2[(ExperimentKey2['SUPERCOMPLETE_FILTER_REVERT'] = 125)] = - 'SUPERCOMPLETE_FILTER_REVERT'; - ExperimentKey2[(ExperimentKey2['SUPERCOMPLETE_FILTER_PREFIX_MATCH'] = 126)] = - 'SUPERCOMPLETE_FILTER_PREFIX_MATCH'; - ExperimentKey2[ - (ExperimentKey2['SUPERCOMPLETE_FILTER_SCORE_THRESHOLD'] = 127) - ] = 'SUPERCOMPLETE_FILTER_SCORE_THRESHOLD'; - ExperimentKey2[(ExperimentKey2['SUPERCOMPLETE_FILTER_INSERTION_CAP'] = 128)] = - 'SUPERCOMPLETE_FILTER_INSERTION_CAP'; - ExperimentKey2[(ExperimentKey2['SUPERCOMPLETE_FILTER_DELETION_CAP'] = 133)] = - 'SUPERCOMPLETE_FILTER_DELETION_CAP'; - ExperimentKey2[ - (ExperimentKey2['SUPERCOMPLETE_FILTER_WHITESPACE_ONLY'] = 156) - ] = 'SUPERCOMPLETE_FILTER_WHITESPACE_ONLY'; - ExperimentKey2[(ExperimentKey2['SUPERCOMPLETE_FILTER_NO_OP'] = 170)] = - 'SUPERCOMPLETE_FILTER_NO_OP'; - ExperimentKey2[(ExperimentKey2['SUPERCOMPLETE_FILTER_SUFFIX_MATCH'] = 176)] = - 'SUPERCOMPLETE_FILTER_SUFFIX_MATCH'; - ExperimentKey2[ - (ExperimentKey2['SUPERCOMPLETE_FILTER_PREVIOUSLY_SHOWN'] = 182) - ] = 'SUPERCOMPLETE_FILTER_PREVIOUSLY_SHOWN'; - ExperimentKey2[(ExperimentKey2['SUPERCOMPLETE_MIN_SCORE'] = 129)] = - 'SUPERCOMPLETE_MIN_SCORE'; - ExperimentKey2[(ExperimentKey2['SUPERCOMPLETE_MAX_INSERTIONS'] = 130)] = - 'SUPERCOMPLETE_MAX_INSERTIONS'; - ExperimentKey2[(ExperimentKey2['SUPERCOMPLETE_LINE_RADIUS'] = 131)] = - 'SUPERCOMPLETE_LINE_RADIUS'; - ExperimentKey2[(ExperimentKey2['SUPERCOMPLETE_MAX_DELETIONS'] = 132)] = - 'SUPERCOMPLETE_MAX_DELETIONS'; - ExperimentKey2[(ExperimentKey2['SUPERCOMPLETE_USE_CURRENT_LINE'] = 135)] = - 'SUPERCOMPLETE_USE_CURRENT_LINE'; - ExperimentKey2[ - (ExperimentKey2['SUPERCOMPLETE_RECENT_STEPS_DURATION'] = 138) - ] = 'SUPERCOMPLETE_RECENT_STEPS_DURATION'; - ExperimentKey2[(ExperimentKey2['SUPERCOMPLETE_USE_CODE_DIAGNOSTICS'] = 143)] = - 'SUPERCOMPLETE_USE_CODE_DIAGNOSTICS'; - ExperimentKey2[ - (ExperimentKey2['SUPERCOMPLETE_DIAGNOSTIC_SEVERITY_THRESHOLD'] = 223) - ] = 'SUPERCOMPLETE_DIAGNOSTIC_SEVERITY_THRESHOLD'; - ExperimentKey2[ - (ExperimentKey2['SUPERCOMPLETE_CODE_DIAGNOSTICS_TOP_K'] = 232) - ] = 'SUPERCOMPLETE_CODE_DIAGNOSTICS_TOP_K'; - ExperimentKey2[(ExperimentKey2['SUPERCOMPLETE_MAX_TRAJECTORY_STEPS'] = 154)] = - 'SUPERCOMPLETE_MAX_TRAJECTORY_STEPS'; - ExperimentKey2[(ExperimentKey2['SUPERCOMPLETE_ON_ACCEPT_ONLY'] = 157)] = - 'SUPERCOMPLETE_ON_ACCEPT_ONLY'; - ExperimentKey2[(ExperimentKey2['SUPERCOMPLETE_TEMPERATURE'] = 183)] = - 'SUPERCOMPLETE_TEMPERATURE'; - ExperimentKey2[ - (ExperimentKey2['SUPERCOMPLETE_MAX_TRAJECTORY_STEP_SIZE'] = 203) - ] = 'SUPERCOMPLETE_MAX_TRAJECTORY_STEP_SIZE'; - ExperimentKey2[(ExperimentKey2['SUPERCOMPLETE_DISABLE_TYPING_CACHE'] = 231)] = - 'SUPERCOMPLETE_DISABLE_TYPING_CACHE'; - ExperimentKey2[ - (ExperimentKey2['SUPERCOMPLETE_ALWAYS_USE_CACHE_ON_EQUAL_STATE'] = 293) - ] = 'SUPERCOMPLETE_ALWAYS_USE_CACHE_ON_EQUAL_STATE'; - ExperimentKey2[ - (ExperimentKey2['SUPERCOMPLETE_CACHE_ON_PARENT_ID_KILL_SWITCH'] = 297) - ] = 'SUPERCOMPLETE_CACHE_ON_PARENT_ID_KILL_SWITCH'; - ExperimentKey2[(ExperimentKey2['SUPERCOMPLETE_PRUNE_RESPONSE'] = 140)] = - 'SUPERCOMPLETE_PRUNE_RESPONSE'; - ExperimentKey2[ - (ExperimentKey2['SUPERCOMPLETE_PRUNE_MAX_INSERT_DELETE_LINE_DELTA'] = 141) - ] = 'SUPERCOMPLETE_PRUNE_MAX_INSERT_DELETE_LINE_DELTA'; - ExperimentKey2[(ExperimentKey2['SUPERCOMPLETE_MODEL_CONFIG'] = 145)] = - 'SUPERCOMPLETE_MODEL_CONFIG'; - ExperimentKey2[(ExperimentKey2['SUPERCOMPLETE_ON_TAB'] = 151)] = - 'SUPERCOMPLETE_ON_TAB'; - ExperimentKey2[(ExperimentKey2['SUPERCOMPLETE_INLINE_PURE_DELETE'] = 171)] = - 'SUPERCOMPLETE_INLINE_PURE_DELETE'; - ExperimentKey2[ - (ExperimentKey2['SUPERCOMPLETE_INLINE_RICH_GHOST_TEXT_INSERTIONS'] = 218) - ] = 'SUPERCOMPLETE_INLINE_RICH_GHOST_TEXT_INSERTIONS'; - ExperimentKey2[(ExperimentKey2['MODEL_CHAT_19821_VARIANTS'] = 308)] = - 'MODEL_CHAT_19821_VARIANTS'; - ExperimentKey2[ - (ExperimentKey2['SUPERCOMPLETE_MAX_CONCURRENT_REQUESTS'] = 284) - ] = 'SUPERCOMPLETE_MAX_CONCURRENT_REQUESTS'; - ExperimentKey2[(ExperimentKey2['COMMAND_PROMPT_CACHE_CONFIG'] = 255)] = - 'COMMAND_PROMPT_CACHE_CONFIG'; - ExperimentKey2[(ExperimentKey2['CUMULATIVE_PROMPT_CONFIG'] = 256)] = - 'CUMULATIVE_PROMPT_CONFIG'; - ExperimentKey2[(ExperimentKey2['CUMULATIVE_PROMPT_CASCADE_CONFIG'] = 279)] = - 'CUMULATIVE_PROMPT_CASCADE_CONFIG'; - ExperimentKey2[(ExperimentKey2['TAB_JUMP_CUMULATIVE_PROMPT_CONFIG'] = 301)] = - 'TAB_JUMP_CUMULATIVE_PROMPT_CONFIG'; - ExperimentKey2[ - (ExperimentKey2['COMPLETION_SPEED_SUPERCOMPLETE_CACHE'] = 207) - ] = 'COMPLETION_SPEED_SUPERCOMPLETE_CACHE'; - ExperimentKey2[ - (ExperimentKey2['COMPLETION_SPEED_PREDICTIVE_SUPERCOMPLETE'] = 208) - ] = 'COMPLETION_SPEED_PREDICTIVE_SUPERCOMPLETE'; - ExperimentKey2[(ExperimentKey2['COMPLETION_SPEED_TAB_JUMP_CACHE'] = 209)] = - 'COMPLETION_SPEED_TAB_JUMP_CACHE'; - ExperimentKey2[ - (ExperimentKey2['COMPLETION_SPEED_PREDICTIVE_TAB_JUMP'] = 210) - ] = 'COMPLETION_SPEED_PREDICTIVE_TAB_JUMP'; - ExperimentKey2[ - (ExperimentKey2[ - 'COMPLETION_SPEED_BLOCK_TAB_JUMP_ON_PREDICTIVE_SUPERCOMPLETE' - ] = 294) - ] = 'COMPLETION_SPEED_BLOCK_TAB_JUMP_ON_PREDICTIVE_SUPERCOMPLETE'; - ExperimentKey2[(ExperimentKey2['JETBRAINS_ENABLE_ONBOARDING'] = 137)] = - 'JETBRAINS_ENABLE_ONBOARDING'; - ExperimentKey2[ - (ExperimentKey2['ENABLE_AUTOCOMPLETE_DURING_INTELLISENSE'] = 146) - ] = 'ENABLE_AUTOCOMPLETE_DURING_INTELLISENSE'; - ExperimentKey2[(ExperimentKey2['COMMAND_BOX_ON_TOP'] = 155)] = - 'COMMAND_BOX_ON_TOP'; - ExperimentKey2[(ExperimentKey2['CONTEXT_ACTIVE_DOCUMENT_FRACTION'] = 149)] = - 'CONTEXT_ACTIVE_DOCUMENT_FRACTION'; - ExperimentKey2[ - (ExperimentKey2['CONTEXT_COMMAND_TRAJECTORY_PROMPT_CONFIG'] = 150) - ] = 'CONTEXT_COMMAND_TRAJECTORY_PROMPT_CONFIG'; - ExperimentKey2[(ExperimentKey2['CONTEXT_FORCE_LOCAL_CONTEXT'] = 178)] = - 'CONTEXT_FORCE_LOCAL_CONTEXT'; - ExperimentKey2[ - (ExperimentKey2['CROSS_SELL_EXTENSION_DOWNLOAD_ANTIGRAVITY'] = 220) - ] = 'CROSS_SELL_EXTENSION_DOWNLOAD_ANTIGRAVITY'; - ExperimentKey2[ - (ExperimentKey2['MODEL_LLAMA_3_1_70B_INSTRUCT_LONG_CONTEXT_VARIANTS'] = 295) - ] = 'MODEL_LLAMA_3_1_70B_INSTRUCT_LONG_CONTEXT_VARIANTS'; - ExperimentKey2[(ExperimentKey2['SUPERCOMPLETE_NO_ACTIVE_NODE'] = 166)] = - 'SUPERCOMPLETE_NO_ACTIVE_NODE'; - ExperimentKey2[(ExperimentKey2['TAB_JUMP_ENABLED'] = 168)] = - 'TAB_JUMP_ENABLED'; - ExperimentKey2[(ExperimentKey2['TAB_JUMP_LINE_RADIUS'] = 177)] = - 'TAB_JUMP_LINE_RADIUS'; - ExperimentKey2[(ExperimentKey2['TAB_JUMP_MIN_FILTER_RADIUS'] = 197)] = - 'TAB_JUMP_MIN_FILTER_RADIUS'; - ExperimentKey2[(ExperimentKey2['TAB_JUMP_ON_ACCEPT_ONLY'] = 205)] = - 'TAB_JUMP_ON_ACCEPT_ONLY'; - ExperimentKey2[(ExperimentKey2['TAB_JUMP_FILTER_IN_SELECTION'] = 215)] = - 'TAB_JUMP_FILTER_IN_SELECTION'; - ExperimentKey2[(ExperimentKey2['TAB_JUMP_MODEL_CONFIG'] = 237)] = - 'TAB_JUMP_MODEL_CONFIG'; - ExperimentKey2[(ExperimentKey2['TAB_JUMP_FILTER_NO_OP'] = 238)] = - 'TAB_JUMP_FILTER_NO_OP'; - ExperimentKey2[(ExperimentKey2['TAB_JUMP_FILTER_REVERT'] = 239)] = - 'TAB_JUMP_FILTER_REVERT'; - ExperimentKey2[(ExperimentKey2['TAB_JUMP_FILTER_SCORE_THRESHOLD'] = 240)] = - 'TAB_JUMP_FILTER_SCORE_THRESHOLD'; - ExperimentKey2[(ExperimentKey2['TAB_JUMP_FILTER_WHITESPACE_ONLY'] = 241)] = - 'TAB_JUMP_FILTER_WHITESPACE_ONLY'; - ExperimentKey2[(ExperimentKey2['TAB_JUMP_FILTER_INSERTION_CAP'] = 242)] = - 'TAB_JUMP_FILTER_INSERTION_CAP'; - ExperimentKey2[(ExperimentKey2['TAB_JUMP_FILTER_DELETION_CAP'] = 243)] = - 'TAB_JUMP_FILTER_DELETION_CAP'; - ExperimentKey2[(ExperimentKey2['TAB_JUMP_PRUNE_RESPONSE'] = 260)] = - 'TAB_JUMP_PRUNE_RESPONSE'; - ExperimentKey2[ - (ExperimentKey2['TAB_JUMP_PRUNE_MAX_INSERT_DELETE_LINE_DELTA'] = 261) - ] = 'TAB_JUMP_PRUNE_MAX_INSERT_DELETE_LINE_DELTA'; - ExperimentKey2[(ExperimentKey2['TAB_JUMP_STOP_TOKEN_MIDSTREAM'] = 317)] = - 'TAB_JUMP_STOP_TOKEN_MIDSTREAM'; - ExperimentKey2[(ExperimentKey2['VIEWED_FILE_TRACKER_CONFIG'] = 211)] = - 'VIEWED_FILE_TRACKER_CONFIG'; - ExperimentKey2[(ExperimentKey2['SNAPSHOT_TO_STEP_OPTIONS_OVERRIDE'] = 305)] = - 'SNAPSHOT_TO_STEP_OPTIONS_OVERRIDE'; - ExperimentKey2[(ExperimentKey2['STREAMING_EXTERNAL_COMMAND'] = 172)] = - 'STREAMING_EXTERNAL_COMMAND'; - ExperimentKey2[(ExperimentKey2['USE_SPECIAL_EDIT_CODE_BLOCK'] = 179)] = - 'USE_SPECIAL_EDIT_CODE_BLOCK'; - ExperimentKey2[(ExperimentKey2['ENABLE_SUGGESTED_RESPONSES'] = 187)] = - 'ENABLE_SUGGESTED_RESPONSES'; - ExperimentKey2[(ExperimentKey2['CASCADE_BASE_MODEL_ID'] = 190)] = - 'CASCADE_BASE_MODEL_ID'; - ExperimentKey2[(ExperimentKey2['CASCADE_PLAN_BASED_CONFIG_OVERRIDE'] = 266)] = - 'CASCADE_PLAN_BASED_CONFIG_OVERRIDE'; - ExperimentKey2[(ExperimentKey2['CASCADE_GLOBAL_CONFIG_OVERRIDE'] = 212)] = - 'CASCADE_GLOBAL_CONFIG_OVERRIDE'; - ExperimentKey2[ - (ExperimentKey2['CASCADE_BACKGROUND_RESEARCH_CONFIG_OVERRIDE'] = 193) - ] = 'CASCADE_BACKGROUND_RESEARCH_CONFIG_OVERRIDE'; - ExperimentKey2[(ExperimentKey2['CASCADE_ENFORCE_QUOTA'] = 204)] = - 'CASCADE_ENFORCE_QUOTA'; - ExperimentKey2[(ExperimentKey2['CASCADE_ENABLE_AUTOMATED_MEMORIES'] = 224)] = - 'CASCADE_ENABLE_AUTOMATED_MEMORIES'; - ExperimentKey2[(ExperimentKey2['CASCADE_MEMORY_CONFIG_OVERRIDE'] = 314)] = - 'CASCADE_MEMORY_CONFIG_OVERRIDE'; - ExperimentKey2[ - (ExperimentKey2['CASCADE_USE_REPLACE_CONTENT_EDIT_TOOL'] = 228) - ] = 'CASCADE_USE_REPLACE_CONTENT_EDIT_TOOL'; - ExperimentKey2[ - (ExperimentKey2['CASCADE_VIEW_FILE_TOOL_CONFIG_OVERRIDE'] = 258) - ] = 'CASCADE_VIEW_FILE_TOOL_CONFIG_OVERRIDE'; - ExperimentKey2[ - (ExperimentKey2['CASCADE_USE_EXPERIMENT_CHECKPOINTER'] = 247) - ] = 'CASCADE_USE_EXPERIMENT_CHECKPOINTER'; - ExperimentKey2[(ExperimentKey2['CASCADE_ENABLE_MCP_TOOLS'] = 245)] = - 'CASCADE_ENABLE_MCP_TOOLS'; - ExperimentKey2[(ExperimentKey2['CASCADE_AUTO_FIX_LINTS'] = 275)] = - 'CASCADE_AUTO_FIX_LINTS'; - ExperimentKey2[ - (ExperimentKey2['USE_ANTHROPIC_TOKEN_EFFICIENT_TOOLS_BETA'] = 296) - ] = 'USE_ANTHROPIC_TOKEN_EFFICIENT_TOOLS_BETA'; - ExperimentKey2[ - (ExperimentKey2['CASCADE_USER_MEMORIES_IN_SYS_PROMPT'] = 289) - ] = 'CASCADE_USER_MEMORIES_IN_SYS_PROMPT'; - ExperimentKey2[(ExperimentKey2['COLLAPSE_ASSISTANT_MESSAGES'] = 312)] = - 'COLLAPSE_ASSISTANT_MESSAGES'; - ExperimentKey2[(ExperimentKey2['CASCADE_DEFAULT_MODEL_OVERRIDE'] = 321)] = - 'CASCADE_DEFAULT_MODEL_OVERRIDE'; - ExperimentKey2[(ExperimentKey2['ENABLE_SMART_COPY'] = 181)] = - 'ENABLE_SMART_COPY'; - ExperimentKey2[(ExperimentKey2['ENABLE_COMMIT_MESSAGE_GENERATION'] = 185)] = - 'ENABLE_COMMIT_MESSAGE_GENERATION'; - ExperimentKey2[(ExperimentKey2['FIREWORKS_ON_DEMAND_DEPLOYMENT'] = 276)] = - 'FIREWORKS_ON_DEMAND_DEPLOYMENT'; - ExperimentKey2[(ExperimentKey2['API_SERVER_CLIENT_USE_HTTP_2'] = 202)] = - 'API_SERVER_CLIENT_USE_HTTP_2'; - ExperimentKey2[(ExperimentKey2['AUTOCOMPLETE_DEFAULT_DEBOUNCE_MS'] = 213)] = - 'AUTOCOMPLETE_DEFAULT_DEBOUNCE_MS'; - ExperimentKey2[(ExperimentKey2['AUTOCOMPLETE_FAST_DEBOUNCE_MS'] = 214)] = - 'AUTOCOMPLETE_FAST_DEBOUNCE_MS'; - ExperimentKey2[(ExperimentKey2['PROFILING_TELEMETRY_SAMPLE_RATE'] = 219)] = - 'PROFILING_TELEMETRY_SAMPLE_RATE'; - ExperimentKey2[(ExperimentKey2['STREAM_USER_SHELL_COMMANDS'] = 225)] = - 'STREAM_USER_SHELL_COMMANDS'; - ExperimentKey2[(ExperimentKey2['API_SERVER_PROMPT_CACHE_REPLICAS'] = 307)] = - 'API_SERVER_PROMPT_CACHE_REPLICAS'; - ExperimentKey2[(ExperimentKey2['API_SERVER_ENABLE_MORE_LOGGING'] = 272)] = - 'API_SERVER_ENABLE_MORE_LOGGING'; - ExperimentKey2[(ExperimentKey2['COMMAND_INJECT_USER_MEMORIES'] = 233)] = - 'COMMAND_INJECT_USER_MEMORIES'; - ExperimentKey2[(ExperimentKey2['AUTOCOMPLETE_HIDDEN_ERROR_REGEX'] = 234)] = - 'AUTOCOMPLETE_HIDDEN_ERROR_REGEX'; - ExperimentKey2[(ExperimentKey2['DISABLE_IDE_COMPLETIONS_DEBOUNCE'] = 278)] = - 'DISABLE_IDE_COMPLETIONS_DEBOUNCE'; - ExperimentKey2[ - (ExperimentKey2['COMBINED_MODEL_USE_FULL_INSTRUCTION_FOR_RETRIEVAL'] = 264) - ] = 'COMBINED_MODEL_USE_FULL_INSTRUCTION_FOR_RETRIEVAL'; - ExperimentKey2[ - (ExperimentKey2['MAX_PAST_TRAJECTORY_TOKENS_FOR_RETRIEVAL'] = 265) - ] = 'MAX_PAST_TRAJECTORY_TOKENS_FOR_RETRIEVAL'; - ExperimentKey2[(ExperimentKey2['ENABLE_QUICK_ACTIONS'] = 250)] = - 'ENABLE_QUICK_ACTIONS'; - ExperimentKey2[(ExperimentKey2['QUICK_ACTIONS_WHITELIST_REGEX'] = 251)] = - 'QUICK_ACTIONS_WHITELIST_REGEX'; - ExperimentKey2[(ExperimentKey2['CASCADE_NEW_MODELS_NUX'] = 259)] = - 'CASCADE_NEW_MODELS_NUX'; - ExperimentKey2[(ExperimentKey2['CASCADE_NEW_WAVE_2_MODELS_NUX'] = 270)] = - 'CASCADE_NEW_WAVE_2_MODELS_NUX'; - ExperimentKey2[(ExperimentKey2['SUPERCOMPLETE_FAST_DEBOUNCE'] = 262)] = - 'SUPERCOMPLETE_FAST_DEBOUNCE'; - ExperimentKey2[(ExperimentKey2['SUPERCOMPLETE_REGULAR_DEBOUNCE'] = 263)] = - 'SUPERCOMPLETE_REGULAR_DEBOUNCE'; - ExperimentKey2[(ExperimentKey2['XML_TOOL_PARSING_MODELS'] = 268)] = - 'XML_TOOL_PARSING_MODELS'; - ExperimentKey2[ - (ExperimentKey2['SUPERCOMPLETE_DONT_FILTER_MID_STREAMED'] = 269) - ] = 'SUPERCOMPLETE_DONT_FILTER_MID_STREAMED'; - ExperimentKey2[ - (ExperimentKey2['ANNOYANCE_MANAGER_MAX_NAVIGATION_RENDERS'] = 285) - ] = 'ANNOYANCE_MANAGER_MAX_NAVIGATION_RENDERS'; - ExperimentKey2[ - (ExperimentKey2['ANNOYANCE_MANAGER_INLINE_PREVENTION_THRESHOLD_MS'] = 286) - ] = 'ANNOYANCE_MANAGER_INLINE_PREVENTION_THRESHOLD_MS'; - ExperimentKey2[ - (ExperimentKey2[ - 'ANNOYANCE_MANAGER_INLINE_PREVENTION_MAX_INTENTIONAL_REJECTIONS' - ] = 287) - ] = 'ANNOYANCE_MANAGER_INLINE_PREVENTION_MAX_INTENTIONAL_REJECTIONS'; - ExperimentKey2[ - (ExperimentKey2['ANNOYANCE_MANAGER_INLINE_PREVENTION_MAX_AUTO_REJECTIONS'] = - 288) - ] = 'ANNOYANCE_MANAGER_INLINE_PREVENTION_MAX_AUTO_REJECTIONS'; - ExperimentKey2[(ExperimentKey2['USE_CUSTOM_CHARACTER_DIFF'] = 292)] = - 'USE_CUSTOM_CHARACTER_DIFF'; - ExperimentKey2[(ExperimentKey2['FORCE_NON_OPTIMIZED_DIFF'] = 298)] = - 'FORCE_NON_OPTIMIZED_DIFF'; - ExperimentKey2[ - (ExperimentKey2['CASCADE_RECIPES_AT_MENTION_VISIBILITY'] = 316) - ] = 'CASCADE_RECIPES_AT_MENTION_VISIBILITY'; - ExperimentKey2[(ExperimentKey2['IMPLICIT_USES_CLIPBOARD'] = 310)] = - 'IMPLICIT_USES_CLIPBOARD'; - ExperimentKey2[(ExperimentKey2['DISABLE_SUPERCOMPLETE_PCW'] = 303)] = - 'DISABLE_SUPERCOMPLETE_PCW'; - ExperimentKey2[(ExperimentKey2['BLOCK_TAB_ON_SHOWN_AUTOCOMPLETE'] = 304)] = - 'BLOCK_TAB_ON_SHOWN_AUTOCOMPLETE'; - ExperimentKey2[(ExperimentKey2['CASCADE_WEB_SEARCH_NUX'] = 311)] = - 'CASCADE_WEB_SEARCH_NUX'; - ExperimentKey2[(ExperimentKey2['MODEL_NOTIFICATIONS'] = 319)] = - 'MODEL_NOTIFICATIONS'; - ExperimentKey2[(ExperimentKey2['MODEL_SELECTOR_NUX_COPY'] = 320)] = - 'MODEL_SELECTOR_NUX_COPY'; - ExperimentKey2[(ExperimentKey2['CASCADE_TOOL_CALL_PRICING_NUX'] = 322)] = - 'CASCADE_TOOL_CALL_PRICING_NUX'; - ExperimentKey2[(ExperimentKey2['CASCADE_PLUGINS_TAB'] = 323)] = - 'CASCADE_PLUGINS_TAB'; - ExperimentKey2[(ExperimentKey2['WAVE_8_RULES_ENABLED'] = 324)] = - 'WAVE_8_RULES_ENABLED'; - ExperimentKey2[(ExperimentKey2['WAVE_8_KNOWLEDGE_ENABLED'] = 325)] = - 'WAVE_8_KNOWLEDGE_ENABLED'; - ExperimentKey2[(ExperimentKey2['CASCADE_ONBOARDING'] = 326)] = - 'CASCADE_ONBOARDING'; - ExperimentKey2[(ExperimentKey2['CASCADE_ONBOARDING_REVERT'] = 327)] = - 'CASCADE_ONBOARDING_REVERT'; - ExperimentKey2[ - (ExperimentKey2['CASCADE_ANTIGRAVITY_BROWSER_TOOLS_ENABLED'] = 328) - ] = 'CASCADE_ANTIGRAVITY_BROWSER_TOOLS_ENABLED'; - ExperimentKey2[(ExperimentKey2['CASCADE_MODEL_HEADER_WARNING'] = 329)] = - 'CASCADE_MODEL_HEADER_WARNING'; - ExperimentKey2[(ExperimentKey2['LOG_CASCADE_CHAT_PANEL_ERROR'] = 331)] = - 'LOG_CASCADE_CHAT_PANEL_ERROR'; - ExperimentKey2[(ExperimentKey2['TEST_ONLY'] = 999)] = 'TEST_ONLY'; +(function(ExperimentKey2) { + ExperimentKey2[ExperimentKey2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + ExperimentKey2[ExperimentKey2["USE_INTERNAL_CHAT_MODEL"] = 36] = "USE_INTERNAL_CHAT_MODEL"; + ExperimentKey2[ExperimentKey2["RECORD_FILES"] = 47] = "RECORD_FILES"; + ExperimentKey2[ExperimentKey2["NO_SAMPLER_EARLY_STOP"] = 48] = "NO_SAMPLER_EARLY_STOP"; + ExperimentKey2[ExperimentKey2["CM_MEMORY_TELEMETRY"] = 53] = "CM_MEMORY_TELEMETRY"; + ExperimentKey2[ExperimentKey2["LANGUAGE_SERVER_VERSION"] = 55] = "LANGUAGE_SERVER_VERSION"; + ExperimentKey2[ExperimentKey2["LANGUAGE_SERVER_AUTO_RELOAD"] = 56] = "LANGUAGE_SERVER_AUTO_RELOAD"; + ExperimentKey2[ExperimentKey2["ONLY_MULTILINE"] = 60] = "ONLY_MULTILINE"; + ExperimentKey2[ExperimentKey2["USE_ATTRIBUTION_FOR_INDIVIDUAL_TIER"] = 68] = "USE_ATTRIBUTION_FOR_INDIVIDUAL_TIER"; + ExperimentKey2[ExperimentKey2["CHAT_MODEL_CONFIG"] = 78] = "CHAT_MODEL_CONFIG"; + ExperimentKey2[ExperimentKey2["COMMAND_MODEL_CONFIG"] = 79] = "COMMAND_MODEL_CONFIG"; + ExperimentKey2[ExperimentKey2["MIN_IDE_VERSION"] = 81] = "MIN_IDE_VERSION"; + ExperimentKey2[ExperimentKey2["API_SERVER_VERBOSE_ERRORS"] = 84] = "API_SERVER_VERBOSE_ERRORS"; + ExperimentKey2[ExperimentKey2["DEFAULT_ENABLE_SEARCH"] = 86] = "DEFAULT_ENABLE_SEARCH"; + ExperimentKey2[ExperimentKey2["COLLECT_ONBOARDING_EVENTS"] = 87] = "COLLECT_ONBOARDING_EVENTS"; + ExperimentKey2[ExperimentKey2["COLLECT_EXAMPLE_COMPLETIONS"] = 88] = "COLLECT_EXAMPLE_COMPLETIONS"; + ExperimentKey2[ExperimentKey2["USE_MULTILINE_MODEL"] = 89] = "USE_MULTILINE_MODEL"; + ExperimentKey2[ExperimentKey2["ATTRIBUTION_KILL_SWITCH"] = 92] = "ATTRIBUTION_KILL_SWITCH"; + ExperimentKey2[ExperimentKey2["FAST_MULTILINE"] = 94] = "FAST_MULTILINE"; + ExperimentKey2[ExperimentKey2["SINGLE_COMPLETION"] = 95] = "SINGLE_COMPLETION"; + ExperimentKey2[ExperimentKey2["STOP_FIRST_NON_WHITESPACE_LINE"] = 96] = "STOP_FIRST_NON_WHITESPACE_LINE"; + ExperimentKey2[ExperimentKey2["CORTEX_CONFIG"] = 102] = "CORTEX_CONFIG"; + ExperimentKey2[ExperimentKey2["MODEL_CHAT_11121_VARIANTS"] = 103] = "MODEL_CHAT_11121_VARIANTS"; + ExperimentKey2[ExperimentKey2["INCLUDE_PROMPT_COMPONENTS"] = 105] = "INCLUDE_PROMPT_COMPONENTS"; + ExperimentKey2[ExperimentKey2["PERSIST_CODE_TRACKER"] = 108] = "PERSIST_CODE_TRACKER"; + ExperimentKey2[ExperimentKey2["API_SERVER_LIVENESS_PROBE"] = 112] = "API_SERVER_LIVENESS_PROBE"; + ExperimentKey2[ExperimentKey2["CHAT_COMPLETION_TOKENS_SOFT_LIMIT"] = 114] = "CHAT_COMPLETION_TOKENS_SOFT_LIMIT"; + ExperimentKey2[ExperimentKey2["CHAT_TOKENS_SOFT_LIMIT"] = 115] = "CHAT_TOKENS_SOFT_LIMIT"; + ExperimentKey2[ExperimentKey2["DISABLE_COMPLETIONS_CACHE"] = 118] = "DISABLE_COMPLETIONS_CACHE"; + ExperimentKey2[ExperimentKey2["LLAMA3_405B_KILL_SWITCH"] = 119] = "LLAMA3_405B_KILL_SWITCH"; + ExperimentKey2[ExperimentKey2["USE_COMMAND_DOCSTRING_GENERATION"] = 121] = "USE_COMMAND_DOCSTRING_GENERATION"; + ExperimentKey2[ExperimentKey2["SENTRY"] = 136] = "SENTRY"; + ExperimentKey2[ExperimentKey2["FAST_SINGLELINE"] = 144] = "FAST_SINGLELINE"; + ExperimentKey2[ExperimentKey2["R2_LANGUAGE_SERVER_DOWNLOAD"] = 147] = "R2_LANGUAGE_SERVER_DOWNLOAD"; + ExperimentKey2[ExperimentKey2["SPLIT_MODEL"] = 152] = "SPLIT_MODEL"; + ExperimentKey2[ExperimentKey2["ANTIGRAVITY_SENTRY_SAMPLE_RATE"] = 198] = "ANTIGRAVITY_SENTRY_SAMPLE_RATE"; + ExperimentKey2[ExperimentKey2["API_SERVER_CUTOFF"] = 158] = "API_SERVER_CUTOFF"; + ExperimentKey2[ExperimentKey2["FAST_SPEED_KILL_SWITCH"] = 159] = "FAST_SPEED_KILL_SWITCH"; + ExperimentKey2[ExperimentKey2["PREDICTIVE_MULTILINE"] = 160] = "PREDICTIVE_MULTILINE"; + ExperimentKey2[ExperimentKey2["SUPERCOMPLETE_FILTER_REVERT"] = 125] = "SUPERCOMPLETE_FILTER_REVERT"; + ExperimentKey2[ExperimentKey2["SUPERCOMPLETE_FILTER_PREFIX_MATCH"] = 126] = "SUPERCOMPLETE_FILTER_PREFIX_MATCH"; + ExperimentKey2[ExperimentKey2["SUPERCOMPLETE_FILTER_SCORE_THRESHOLD"] = 127] = "SUPERCOMPLETE_FILTER_SCORE_THRESHOLD"; + ExperimentKey2[ExperimentKey2["SUPERCOMPLETE_FILTER_INSERTION_CAP"] = 128] = "SUPERCOMPLETE_FILTER_INSERTION_CAP"; + ExperimentKey2[ExperimentKey2["SUPERCOMPLETE_FILTER_DELETION_CAP"] = 133] = "SUPERCOMPLETE_FILTER_DELETION_CAP"; + ExperimentKey2[ExperimentKey2["SUPERCOMPLETE_FILTER_WHITESPACE_ONLY"] = 156] = "SUPERCOMPLETE_FILTER_WHITESPACE_ONLY"; + ExperimentKey2[ExperimentKey2["SUPERCOMPLETE_FILTER_NO_OP"] = 170] = "SUPERCOMPLETE_FILTER_NO_OP"; + ExperimentKey2[ExperimentKey2["SUPERCOMPLETE_FILTER_SUFFIX_MATCH"] = 176] = "SUPERCOMPLETE_FILTER_SUFFIX_MATCH"; + ExperimentKey2[ExperimentKey2["SUPERCOMPLETE_FILTER_PREVIOUSLY_SHOWN"] = 182] = "SUPERCOMPLETE_FILTER_PREVIOUSLY_SHOWN"; + ExperimentKey2[ExperimentKey2["SUPERCOMPLETE_MIN_SCORE"] = 129] = "SUPERCOMPLETE_MIN_SCORE"; + ExperimentKey2[ExperimentKey2["SUPERCOMPLETE_MAX_INSERTIONS"] = 130] = "SUPERCOMPLETE_MAX_INSERTIONS"; + ExperimentKey2[ExperimentKey2["SUPERCOMPLETE_LINE_RADIUS"] = 131] = "SUPERCOMPLETE_LINE_RADIUS"; + ExperimentKey2[ExperimentKey2["SUPERCOMPLETE_MAX_DELETIONS"] = 132] = "SUPERCOMPLETE_MAX_DELETIONS"; + ExperimentKey2[ExperimentKey2["SUPERCOMPLETE_USE_CURRENT_LINE"] = 135] = "SUPERCOMPLETE_USE_CURRENT_LINE"; + ExperimentKey2[ExperimentKey2["SUPERCOMPLETE_RECENT_STEPS_DURATION"] = 138] = "SUPERCOMPLETE_RECENT_STEPS_DURATION"; + ExperimentKey2[ExperimentKey2["SUPERCOMPLETE_USE_CODE_DIAGNOSTICS"] = 143] = "SUPERCOMPLETE_USE_CODE_DIAGNOSTICS"; + ExperimentKey2[ExperimentKey2["SUPERCOMPLETE_DIAGNOSTIC_SEVERITY_THRESHOLD"] = 223] = "SUPERCOMPLETE_DIAGNOSTIC_SEVERITY_THRESHOLD"; + ExperimentKey2[ExperimentKey2["SUPERCOMPLETE_CODE_DIAGNOSTICS_TOP_K"] = 232] = "SUPERCOMPLETE_CODE_DIAGNOSTICS_TOP_K"; + ExperimentKey2[ExperimentKey2["SUPERCOMPLETE_MAX_TRAJECTORY_STEPS"] = 154] = "SUPERCOMPLETE_MAX_TRAJECTORY_STEPS"; + ExperimentKey2[ExperimentKey2["SUPERCOMPLETE_ON_ACCEPT_ONLY"] = 157] = "SUPERCOMPLETE_ON_ACCEPT_ONLY"; + ExperimentKey2[ExperimentKey2["SUPERCOMPLETE_TEMPERATURE"] = 183] = "SUPERCOMPLETE_TEMPERATURE"; + ExperimentKey2[ExperimentKey2["SUPERCOMPLETE_MAX_TRAJECTORY_STEP_SIZE"] = 203] = "SUPERCOMPLETE_MAX_TRAJECTORY_STEP_SIZE"; + ExperimentKey2[ExperimentKey2["SUPERCOMPLETE_DISABLE_TYPING_CACHE"] = 231] = "SUPERCOMPLETE_DISABLE_TYPING_CACHE"; + ExperimentKey2[ExperimentKey2["SUPERCOMPLETE_ALWAYS_USE_CACHE_ON_EQUAL_STATE"] = 293] = "SUPERCOMPLETE_ALWAYS_USE_CACHE_ON_EQUAL_STATE"; + ExperimentKey2[ExperimentKey2["SUPERCOMPLETE_CACHE_ON_PARENT_ID_KILL_SWITCH"] = 297] = "SUPERCOMPLETE_CACHE_ON_PARENT_ID_KILL_SWITCH"; + ExperimentKey2[ExperimentKey2["SUPERCOMPLETE_PRUNE_RESPONSE"] = 140] = "SUPERCOMPLETE_PRUNE_RESPONSE"; + ExperimentKey2[ExperimentKey2["SUPERCOMPLETE_PRUNE_MAX_INSERT_DELETE_LINE_DELTA"] = 141] = "SUPERCOMPLETE_PRUNE_MAX_INSERT_DELETE_LINE_DELTA"; + ExperimentKey2[ExperimentKey2["SUPERCOMPLETE_MODEL_CONFIG"] = 145] = "SUPERCOMPLETE_MODEL_CONFIG"; + ExperimentKey2[ExperimentKey2["SUPERCOMPLETE_ON_TAB"] = 151] = "SUPERCOMPLETE_ON_TAB"; + ExperimentKey2[ExperimentKey2["SUPERCOMPLETE_INLINE_PURE_DELETE"] = 171] = "SUPERCOMPLETE_INLINE_PURE_DELETE"; + ExperimentKey2[ExperimentKey2["SUPERCOMPLETE_INLINE_RICH_GHOST_TEXT_INSERTIONS"] = 218] = "SUPERCOMPLETE_INLINE_RICH_GHOST_TEXT_INSERTIONS"; + ExperimentKey2[ExperimentKey2["MODEL_CHAT_19821_VARIANTS"] = 308] = "MODEL_CHAT_19821_VARIANTS"; + ExperimentKey2[ExperimentKey2["SUPERCOMPLETE_MAX_CONCURRENT_REQUESTS"] = 284] = "SUPERCOMPLETE_MAX_CONCURRENT_REQUESTS"; + ExperimentKey2[ExperimentKey2["COMMAND_PROMPT_CACHE_CONFIG"] = 255] = "COMMAND_PROMPT_CACHE_CONFIG"; + ExperimentKey2[ExperimentKey2["CUMULATIVE_PROMPT_CONFIG"] = 256] = "CUMULATIVE_PROMPT_CONFIG"; + ExperimentKey2[ExperimentKey2["CUMULATIVE_PROMPT_CASCADE_CONFIG"] = 279] = "CUMULATIVE_PROMPT_CASCADE_CONFIG"; + ExperimentKey2[ExperimentKey2["TAB_JUMP_CUMULATIVE_PROMPT_CONFIG"] = 301] = "TAB_JUMP_CUMULATIVE_PROMPT_CONFIG"; + ExperimentKey2[ExperimentKey2["COMPLETION_SPEED_SUPERCOMPLETE_CACHE"] = 207] = "COMPLETION_SPEED_SUPERCOMPLETE_CACHE"; + ExperimentKey2[ExperimentKey2["COMPLETION_SPEED_PREDICTIVE_SUPERCOMPLETE"] = 208] = "COMPLETION_SPEED_PREDICTIVE_SUPERCOMPLETE"; + ExperimentKey2[ExperimentKey2["COMPLETION_SPEED_TAB_JUMP_CACHE"] = 209] = "COMPLETION_SPEED_TAB_JUMP_CACHE"; + ExperimentKey2[ExperimentKey2["COMPLETION_SPEED_PREDICTIVE_TAB_JUMP"] = 210] = "COMPLETION_SPEED_PREDICTIVE_TAB_JUMP"; + ExperimentKey2[ExperimentKey2["COMPLETION_SPEED_BLOCK_TAB_JUMP_ON_PREDICTIVE_SUPERCOMPLETE"] = 294] = "COMPLETION_SPEED_BLOCK_TAB_JUMP_ON_PREDICTIVE_SUPERCOMPLETE"; + ExperimentKey2[ExperimentKey2["JETBRAINS_ENABLE_ONBOARDING"] = 137] = "JETBRAINS_ENABLE_ONBOARDING"; + ExperimentKey2[ExperimentKey2["ENABLE_AUTOCOMPLETE_DURING_INTELLISENSE"] = 146] = "ENABLE_AUTOCOMPLETE_DURING_INTELLISENSE"; + ExperimentKey2[ExperimentKey2["COMMAND_BOX_ON_TOP"] = 155] = "COMMAND_BOX_ON_TOP"; + ExperimentKey2[ExperimentKey2["CONTEXT_ACTIVE_DOCUMENT_FRACTION"] = 149] = "CONTEXT_ACTIVE_DOCUMENT_FRACTION"; + ExperimentKey2[ExperimentKey2["CONTEXT_COMMAND_TRAJECTORY_PROMPT_CONFIG"] = 150] = "CONTEXT_COMMAND_TRAJECTORY_PROMPT_CONFIG"; + ExperimentKey2[ExperimentKey2["CONTEXT_FORCE_LOCAL_CONTEXT"] = 178] = "CONTEXT_FORCE_LOCAL_CONTEXT"; + ExperimentKey2[ExperimentKey2["CROSS_SELL_EXTENSION_DOWNLOAD_ANTIGRAVITY"] = 220] = "CROSS_SELL_EXTENSION_DOWNLOAD_ANTIGRAVITY"; + ExperimentKey2[ExperimentKey2["MODEL_LLAMA_3_1_70B_INSTRUCT_LONG_CONTEXT_VARIANTS"] = 295] = "MODEL_LLAMA_3_1_70B_INSTRUCT_LONG_CONTEXT_VARIANTS"; + ExperimentKey2[ExperimentKey2["SUPERCOMPLETE_NO_ACTIVE_NODE"] = 166] = "SUPERCOMPLETE_NO_ACTIVE_NODE"; + ExperimentKey2[ExperimentKey2["TAB_JUMP_ENABLED"] = 168] = "TAB_JUMP_ENABLED"; + ExperimentKey2[ExperimentKey2["TAB_JUMP_LINE_RADIUS"] = 177] = "TAB_JUMP_LINE_RADIUS"; + ExperimentKey2[ExperimentKey2["TAB_JUMP_MIN_FILTER_RADIUS"] = 197] = "TAB_JUMP_MIN_FILTER_RADIUS"; + ExperimentKey2[ExperimentKey2["TAB_JUMP_ON_ACCEPT_ONLY"] = 205] = "TAB_JUMP_ON_ACCEPT_ONLY"; + ExperimentKey2[ExperimentKey2["TAB_JUMP_FILTER_IN_SELECTION"] = 215] = "TAB_JUMP_FILTER_IN_SELECTION"; + ExperimentKey2[ExperimentKey2["TAB_JUMP_MODEL_CONFIG"] = 237] = "TAB_JUMP_MODEL_CONFIG"; + ExperimentKey2[ExperimentKey2["TAB_JUMP_FILTER_NO_OP"] = 238] = "TAB_JUMP_FILTER_NO_OP"; + ExperimentKey2[ExperimentKey2["TAB_JUMP_FILTER_REVERT"] = 239] = "TAB_JUMP_FILTER_REVERT"; + ExperimentKey2[ExperimentKey2["TAB_JUMP_FILTER_SCORE_THRESHOLD"] = 240] = "TAB_JUMP_FILTER_SCORE_THRESHOLD"; + ExperimentKey2[ExperimentKey2["TAB_JUMP_FILTER_WHITESPACE_ONLY"] = 241] = "TAB_JUMP_FILTER_WHITESPACE_ONLY"; + ExperimentKey2[ExperimentKey2["TAB_JUMP_FILTER_INSERTION_CAP"] = 242] = "TAB_JUMP_FILTER_INSERTION_CAP"; + ExperimentKey2[ExperimentKey2["TAB_JUMP_FILTER_DELETION_CAP"] = 243] = "TAB_JUMP_FILTER_DELETION_CAP"; + ExperimentKey2[ExperimentKey2["TAB_JUMP_PRUNE_RESPONSE"] = 260] = "TAB_JUMP_PRUNE_RESPONSE"; + ExperimentKey2[ExperimentKey2["TAB_JUMP_PRUNE_MAX_INSERT_DELETE_LINE_DELTA"] = 261] = "TAB_JUMP_PRUNE_MAX_INSERT_DELETE_LINE_DELTA"; + ExperimentKey2[ExperimentKey2["TAB_JUMP_STOP_TOKEN_MIDSTREAM"] = 317] = "TAB_JUMP_STOP_TOKEN_MIDSTREAM"; + ExperimentKey2[ExperimentKey2["VIEWED_FILE_TRACKER_CONFIG"] = 211] = "VIEWED_FILE_TRACKER_CONFIG"; + ExperimentKey2[ExperimentKey2["SNAPSHOT_TO_STEP_OPTIONS_OVERRIDE"] = 305] = "SNAPSHOT_TO_STEP_OPTIONS_OVERRIDE"; + ExperimentKey2[ExperimentKey2["STREAMING_EXTERNAL_COMMAND"] = 172] = "STREAMING_EXTERNAL_COMMAND"; + ExperimentKey2[ExperimentKey2["USE_SPECIAL_EDIT_CODE_BLOCK"] = 179] = "USE_SPECIAL_EDIT_CODE_BLOCK"; + ExperimentKey2[ExperimentKey2["ENABLE_SUGGESTED_RESPONSES"] = 187] = "ENABLE_SUGGESTED_RESPONSES"; + ExperimentKey2[ExperimentKey2["CASCADE_BASE_MODEL_ID"] = 190] = "CASCADE_BASE_MODEL_ID"; + ExperimentKey2[ExperimentKey2["CASCADE_PLAN_BASED_CONFIG_OVERRIDE"] = 266] = "CASCADE_PLAN_BASED_CONFIG_OVERRIDE"; + ExperimentKey2[ExperimentKey2["CASCADE_GLOBAL_CONFIG_OVERRIDE"] = 212] = "CASCADE_GLOBAL_CONFIG_OVERRIDE"; + ExperimentKey2[ExperimentKey2["CASCADE_BACKGROUND_RESEARCH_CONFIG_OVERRIDE"] = 193] = "CASCADE_BACKGROUND_RESEARCH_CONFIG_OVERRIDE"; + ExperimentKey2[ExperimentKey2["CASCADE_ENFORCE_QUOTA"] = 204] = "CASCADE_ENFORCE_QUOTA"; + ExperimentKey2[ExperimentKey2["CASCADE_ENABLE_AUTOMATED_MEMORIES"] = 224] = "CASCADE_ENABLE_AUTOMATED_MEMORIES"; + ExperimentKey2[ExperimentKey2["CASCADE_MEMORY_CONFIG_OVERRIDE"] = 314] = "CASCADE_MEMORY_CONFIG_OVERRIDE"; + ExperimentKey2[ExperimentKey2["CASCADE_USE_REPLACE_CONTENT_EDIT_TOOL"] = 228] = "CASCADE_USE_REPLACE_CONTENT_EDIT_TOOL"; + ExperimentKey2[ExperimentKey2["CASCADE_VIEW_FILE_TOOL_CONFIG_OVERRIDE"] = 258] = "CASCADE_VIEW_FILE_TOOL_CONFIG_OVERRIDE"; + ExperimentKey2[ExperimentKey2["CASCADE_USE_EXPERIMENT_CHECKPOINTER"] = 247] = "CASCADE_USE_EXPERIMENT_CHECKPOINTER"; + ExperimentKey2[ExperimentKey2["CASCADE_ENABLE_MCP_TOOLS"] = 245] = "CASCADE_ENABLE_MCP_TOOLS"; + ExperimentKey2[ExperimentKey2["CASCADE_AUTO_FIX_LINTS"] = 275] = "CASCADE_AUTO_FIX_LINTS"; + ExperimentKey2[ExperimentKey2["USE_ANTHROPIC_TOKEN_EFFICIENT_TOOLS_BETA"] = 296] = "USE_ANTHROPIC_TOKEN_EFFICIENT_TOOLS_BETA"; + ExperimentKey2[ExperimentKey2["CASCADE_USER_MEMORIES_IN_SYS_PROMPT"] = 289] = "CASCADE_USER_MEMORIES_IN_SYS_PROMPT"; + ExperimentKey2[ExperimentKey2["COLLAPSE_ASSISTANT_MESSAGES"] = 312] = "COLLAPSE_ASSISTANT_MESSAGES"; + ExperimentKey2[ExperimentKey2["CASCADE_DEFAULT_MODEL_OVERRIDE"] = 321] = "CASCADE_DEFAULT_MODEL_OVERRIDE"; + ExperimentKey2[ExperimentKey2["ENABLE_SMART_COPY"] = 181] = "ENABLE_SMART_COPY"; + ExperimentKey2[ExperimentKey2["ENABLE_COMMIT_MESSAGE_GENERATION"] = 185] = "ENABLE_COMMIT_MESSAGE_GENERATION"; + ExperimentKey2[ExperimentKey2["FIREWORKS_ON_DEMAND_DEPLOYMENT"] = 276] = "FIREWORKS_ON_DEMAND_DEPLOYMENT"; + ExperimentKey2[ExperimentKey2["API_SERVER_CLIENT_USE_HTTP_2"] = 202] = "API_SERVER_CLIENT_USE_HTTP_2"; + ExperimentKey2[ExperimentKey2["AUTOCOMPLETE_DEFAULT_DEBOUNCE_MS"] = 213] = "AUTOCOMPLETE_DEFAULT_DEBOUNCE_MS"; + ExperimentKey2[ExperimentKey2["AUTOCOMPLETE_FAST_DEBOUNCE_MS"] = 214] = "AUTOCOMPLETE_FAST_DEBOUNCE_MS"; + ExperimentKey2[ExperimentKey2["PROFILING_TELEMETRY_SAMPLE_RATE"] = 219] = "PROFILING_TELEMETRY_SAMPLE_RATE"; + ExperimentKey2[ExperimentKey2["STREAM_USER_SHELL_COMMANDS"] = 225] = "STREAM_USER_SHELL_COMMANDS"; + ExperimentKey2[ExperimentKey2["API_SERVER_PROMPT_CACHE_REPLICAS"] = 307] = "API_SERVER_PROMPT_CACHE_REPLICAS"; + ExperimentKey2[ExperimentKey2["API_SERVER_ENABLE_MORE_LOGGING"] = 272] = "API_SERVER_ENABLE_MORE_LOGGING"; + ExperimentKey2[ExperimentKey2["COMMAND_INJECT_USER_MEMORIES"] = 233] = "COMMAND_INJECT_USER_MEMORIES"; + ExperimentKey2[ExperimentKey2["AUTOCOMPLETE_HIDDEN_ERROR_REGEX"] = 234] = "AUTOCOMPLETE_HIDDEN_ERROR_REGEX"; + ExperimentKey2[ExperimentKey2["DISABLE_IDE_COMPLETIONS_DEBOUNCE"] = 278] = "DISABLE_IDE_COMPLETIONS_DEBOUNCE"; + ExperimentKey2[ExperimentKey2["COMBINED_MODEL_USE_FULL_INSTRUCTION_FOR_RETRIEVAL"] = 264] = "COMBINED_MODEL_USE_FULL_INSTRUCTION_FOR_RETRIEVAL"; + ExperimentKey2[ExperimentKey2["MAX_PAST_TRAJECTORY_TOKENS_FOR_RETRIEVAL"] = 265] = "MAX_PAST_TRAJECTORY_TOKENS_FOR_RETRIEVAL"; + ExperimentKey2[ExperimentKey2["ENABLE_QUICK_ACTIONS"] = 250] = "ENABLE_QUICK_ACTIONS"; + ExperimentKey2[ExperimentKey2["QUICK_ACTIONS_WHITELIST_REGEX"] = 251] = "QUICK_ACTIONS_WHITELIST_REGEX"; + ExperimentKey2[ExperimentKey2["CASCADE_NEW_MODELS_NUX"] = 259] = "CASCADE_NEW_MODELS_NUX"; + ExperimentKey2[ExperimentKey2["CASCADE_NEW_WAVE_2_MODELS_NUX"] = 270] = "CASCADE_NEW_WAVE_2_MODELS_NUX"; + ExperimentKey2[ExperimentKey2["SUPERCOMPLETE_FAST_DEBOUNCE"] = 262] = "SUPERCOMPLETE_FAST_DEBOUNCE"; + ExperimentKey2[ExperimentKey2["SUPERCOMPLETE_REGULAR_DEBOUNCE"] = 263] = "SUPERCOMPLETE_REGULAR_DEBOUNCE"; + ExperimentKey2[ExperimentKey2["XML_TOOL_PARSING_MODELS"] = 268] = "XML_TOOL_PARSING_MODELS"; + ExperimentKey2[ExperimentKey2["SUPERCOMPLETE_DONT_FILTER_MID_STREAMED"] = 269] = "SUPERCOMPLETE_DONT_FILTER_MID_STREAMED"; + ExperimentKey2[ExperimentKey2["ANNOYANCE_MANAGER_MAX_NAVIGATION_RENDERS"] = 285] = "ANNOYANCE_MANAGER_MAX_NAVIGATION_RENDERS"; + ExperimentKey2[ExperimentKey2["ANNOYANCE_MANAGER_INLINE_PREVENTION_THRESHOLD_MS"] = 286] = "ANNOYANCE_MANAGER_INLINE_PREVENTION_THRESHOLD_MS"; + ExperimentKey2[ExperimentKey2["ANNOYANCE_MANAGER_INLINE_PREVENTION_MAX_INTENTIONAL_REJECTIONS"] = 287] = "ANNOYANCE_MANAGER_INLINE_PREVENTION_MAX_INTENTIONAL_REJECTIONS"; + ExperimentKey2[ExperimentKey2["ANNOYANCE_MANAGER_INLINE_PREVENTION_MAX_AUTO_REJECTIONS"] = 288] = "ANNOYANCE_MANAGER_INLINE_PREVENTION_MAX_AUTO_REJECTIONS"; + ExperimentKey2[ExperimentKey2["USE_CUSTOM_CHARACTER_DIFF"] = 292] = "USE_CUSTOM_CHARACTER_DIFF"; + ExperimentKey2[ExperimentKey2["FORCE_NON_OPTIMIZED_DIFF"] = 298] = "FORCE_NON_OPTIMIZED_DIFF"; + ExperimentKey2[ExperimentKey2["CASCADE_RECIPES_AT_MENTION_VISIBILITY"] = 316] = "CASCADE_RECIPES_AT_MENTION_VISIBILITY"; + ExperimentKey2[ExperimentKey2["IMPLICIT_USES_CLIPBOARD"] = 310] = "IMPLICIT_USES_CLIPBOARD"; + ExperimentKey2[ExperimentKey2["DISABLE_SUPERCOMPLETE_PCW"] = 303] = "DISABLE_SUPERCOMPLETE_PCW"; + ExperimentKey2[ExperimentKey2["BLOCK_TAB_ON_SHOWN_AUTOCOMPLETE"] = 304] = "BLOCK_TAB_ON_SHOWN_AUTOCOMPLETE"; + ExperimentKey2[ExperimentKey2["CASCADE_WEB_SEARCH_NUX"] = 311] = "CASCADE_WEB_SEARCH_NUX"; + ExperimentKey2[ExperimentKey2["MODEL_NOTIFICATIONS"] = 319] = "MODEL_NOTIFICATIONS"; + ExperimentKey2[ExperimentKey2["MODEL_SELECTOR_NUX_COPY"] = 320] = "MODEL_SELECTOR_NUX_COPY"; + ExperimentKey2[ExperimentKey2["CASCADE_TOOL_CALL_PRICING_NUX"] = 322] = "CASCADE_TOOL_CALL_PRICING_NUX"; + ExperimentKey2[ExperimentKey2["CASCADE_PLUGINS_TAB"] = 323] = "CASCADE_PLUGINS_TAB"; + ExperimentKey2[ExperimentKey2["WAVE_8_RULES_ENABLED"] = 324] = "WAVE_8_RULES_ENABLED"; + ExperimentKey2[ExperimentKey2["WAVE_8_KNOWLEDGE_ENABLED"] = 325] = "WAVE_8_KNOWLEDGE_ENABLED"; + ExperimentKey2[ExperimentKey2["CASCADE_ONBOARDING"] = 326] = "CASCADE_ONBOARDING"; + ExperimentKey2[ExperimentKey2["CASCADE_ONBOARDING_REVERT"] = 327] = "CASCADE_ONBOARDING_REVERT"; + ExperimentKey2[ExperimentKey2["CASCADE_ANTIGRAVITY_BROWSER_TOOLS_ENABLED"] = 328] = "CASCADE_ANTIGRAVITY_BROWSER_TOOLS_ENABLED"; + ExperimentKey2[ExperimentKey2["CASCADE_MODEL_HEADER_WARNING"] = 329] = "CASCADE_MODEL_HEADER_WARNING"; + ExperimentKey2[ExperimentKey2["LOG_CASCADE_CHAT_PANEL_ERROR"] = 331] = "LOG_CASCADE_CHAT_PANEL_ERROR"; + ExperimentKey2[ExperimentKey2["TEST_ONLY"] = 999] = "TEST_ONLY"; })(ExperimentKey || (ExperimentKey = {})); -proto3.util.setEnumType(ExperimentKey, 'exa.codeium_common_pb.ExperimentKey', [ - { no: 0, name: 'UNSPECIFIED' }, - { no: 36, name: 'USE_INTERNAL_CHAT_MODEL' }, - { no: 47, name: 'RECORD_FILES' }, - { no: 48, name: 'NO_SAMPLER_EARLY_STOP' }, - { no: 53, name: 'CM_MEMORY_TELEMETRY' }, - { no: 55, name: 'LANGUAGE_SERVER_VERSION' }, - { no: 56, name: 'LANGUAGE_SERVER_AUTO_RELOAD' }, - { no: 60, name: 'ONLY_MULTILINE' }, - { no: 68, name: 'USE_ATTRIBUTION_FOR_INDIVIDUAL_TIER' }, - { no: 78, name: 'CHAT_MODEL_CONFIG' }, - { no: 79, name: 'COMMAND_MODEL_CONFIG' }, - { no: 81, name: 'MIN_IDE_VERSION' }, - { no: 84, name: 'API_SERVER_VERBOSE_ERRORS' }, - { no: 86, name: 'DEFAULT_ENABLE_SEARCH' }, - { no: 87, name: 'COLLECT_ONBOARDING_EVENTS' }, - { no: 88, name: 'COLLECT_EXAMPLE_COMPLETIONS' }, - { no: 89, name: 'USE_MULTILINE_MODEL' }, - { no: 92, name: 'ATTRIBUTION_KILL_SWITCH' }, - { no: 94, name: 'FAST_MULTILINE' }, - { no: 95, name: 'SINGLE_COMPLETION' }, - { no: 96, name: 'STOP_FIRST_NON_WHITESPACE_LINE' }, - { no: 102, name: 'CORTEX_CONFIG' }, - { no: 103, name: 'MODEL_CHAT_11121_VARIANTS' }, - { no: 105, name: 'INCLUDE_PROMPT_COMPONENTS' }, - { no: 108, name: 'PERSIST_CODE_TRACKER' }, - { no: 112, name: 'API_SERVER_LIVENESS_PROBE' }, - { no: 114, name: 'CHAT_COMPLETION_TOKENS_SOFT_LIMIT' }, - { no: 115, name: 'CHAT_TOKENS_SOFT_LIMIT' }, - { no: 118, name: 'DISABLE_COMPLETIONS_CACHE' }, - { no: 119, name: 'LLAMA3_405B_KILL_SWITCH' }, - { no: 121, name: 'USE_COMMAND_DOCSTRING_GENERATION' }, - { no: 136, name: 'SENTRY' }, - { no: 144, name: 'FAST_SINGLELINE' }, - { no: 147, name: 'R2_LANGUAGE_SERVER_DOWNLOAD' }, - { no: 152, name: 'SPLIT_MODEL' }, - { no: 198, name: 'ANTIGRAVITY_SENTRY_SAMPLE_RATE' }, - { no: 158, name: 'API_SERVER_CUTOFF' }, - { no: 159, name: 'FAST_SPEED_KILL_SWITCH' }, - { no: 160, name: 'PREDICTIVE_MULTILINE' }, - { no: 125, name: 'SUPERCOMPLETE_FILTER_REVERT' }, - { no: 126, name: 'SUPERCOMPLETE_FILTER_PREFIX_MATCH' }, - { no: 127, name: 'SUPERCOMPLETE_FILTER_SCORE_THRESHOLD' }, - { no: 128, name: 'SUPERCOMPLETE_FILTER_INSERTION_CAP' }, - { no: 133, name: 'SUPERCOMPLETE_FILTER_DELETION_CAP' }, - { no: 156, name: 'SUPERCOMPLETE_FILTER_WHITESPACE_ONLY' }, - { no: 170, name: 'SUPERCOMPLETE_FILTER_NO_OP' }, - { no: 176, name: 'SUPERCOMPLETE_FILTER_SUFFIX_MATCH' }, - { no: 182, name: 'SUPERCOMPLETE_FILTER_PREVIOUSLY_SHOWN' }, - { no: 129, name: 'SUPERCOMPLETE_MIN_SCORE' }, - { no: 130, name: 'SUPERCOMPLETE_MAX_INSERTIONS' }, - { no: 131, name: 'SUPERCOMPLETE_LINE_RADIUS' }, - { no: 132, name: 'SUPERCOMPLETE_MAX_DELETIONS' }, - { no: 135, name: 'SUPERCOMPLETE_USE_CURRENT_LINE' }, - { no: 138, name: 'SUPERCOMPLETE_RECENT_STEPS_DURATION' }, - { no: 143, name: 'SUPERCOMPLETE_USE_CODE_DIAGNOSTICS' }, - { no: 223, name: 'SUPERCOMPLETE_DIAGNOSTIC_SEVERITY_THRESHOLD' }, - { no: 232, name: 'SUPERCOMPLETE_CODE_DIAGNOSTICS_TOP_K' }, - { no: 154, name: 'SUPERCOMPLETE_MAX_TRAJECTORY_STEPS' }, - { no: 157, name: 'SUPERCOMPLETE_ON_ACCEPT_ONLY' }, - { no: 183, name: 'SUPERCOMPLETE_TEMPERATURE' }, - { no: 203, name: 'SUPERCOMPLETE_MAX_TRAJECTORY_STEP_SIZE' }, - { no: 231, name: 'SUPERCOMPLETE_DISABLE_TYPING_CACHE' }, - { no: 293, name: 'SUPERCOMPLETE_ALWAYS_USE_CACHE_ON_EQUAL_STATE' }, - { no: 297, name: 'SUPERCOMPLETE_CACHE_ON_PARENT_ID_KILL_SWITCH' }, - { no: 140, name: 'SUPERCOMPLETE_PRUNE_RESPONSE' }, - { no: 141, name: 'SUPERCOMPLETE_PRUNE_MAX_INSERT_DELETE_LINE_DELTA' }, - { no: 145, name: 'SUPERCOMPLETE_MODEL_CONFIG' }, - { no: 151, name: 'SUPERCOMPLETE_ON_TAB' }, - { no: 171, name: 'SUPERCOMPLETE_INLINE_PURE_DELETE' }, - { no: 218, name: 'SUPERCOMPLETE_INLINE_RICH_GHOST_TEXT_INSERTIONS' }, - { no: 308, name: 'MODEL_CHAT_19821_VARIANTS' }, - { no: 284, name: 'SUPERCOMPLETE_MAX_CONCURRENT_REQUESTS' }, - { no: 255, name: 'COMMAND_PROMPT_CACHE_CONFIG' }, - { no: 256, name: 'CUMULATIVE_PROMPT_CONFIG' }, - { no: 279, name: 'CUMULATIVE_PROMPT_CASCADE_CONFIG' }, - { no: 301, name: 'TAB_JUMP_CUMULATIVE_PROMPT_CONFIG' }, - { no: 207, name: 'COMPLETION_SPEED_SUPERCOMPLETE_CACHE' }, - { no: 208, name: 'COMPLETION_SPEED_PREDICTIVE_SUPERCOMPLETE' }, - { no: 209, name: 'COMPLETION_SPEED_TAB_JUMP_CACHE' }, - { no: 210, name: 'COMPLETION_SPEED_PREDICTIVE_TAB_JUMP' }, - { - no: 294, - name: 'COMPLETION_SPEED_BLOCK_TAB_JUMP_ON_PREDICTIVE_SUPERCOMPLETE', - }, - { no: 137, name: 'JETBRAINS_ENABLE_ONBOARDING' }, - { no: 146, name: 'ENABLE_AUTOCOMPLETE_DURING_INTELLISENSE' }, - { no: 155, name: 'COMMAND_BOX_ON_TOP' }, - { no: 149, name: 'CONTEXT_ACTIVE_DOCUMENT_FRACTION' }, - { no: 150, name: 'CONTEXT_COMMAND_TRAJECTORY_PROMPT_CONFIG' }, - { no: 178, name: 'CONTEXT_FORCE_LOCAL_CONTEXT' }, - { no: 220, name: 'CROSS_SELL_EXTENSION_DOWNLOAD_ANTIGRAVITY' }, - { no: 295, name: 'MODEL_LLAMA_3_1_70B_INSTRUCT_LONG_CONTEXT_VARIANTS' }, - { no: 166, name: 'SUPERCOMPLETE_NO_ACTIVE_NODE' }, - { no: 168, name: 'TAB_JUMP_ENABLED' }, - { no: 177, name: 'TAB_JUMP_LINE_RADIUS' }, - { no: 197, name: 'TAB_JUMP_MIN_FILTER_RADIUS' }, - { no: 205, name: 'TAB_JUMP_ON_ACCEPT_ONLY' }, - { no: 215, name: 'TAB_JUMP_FILTER_IN_SELECTION' }, - { no: 237, name: 'TAB_JUMP_MODEL_CONFIG' }, - { no: 238, name: 'TAB_JUMP_FILTER_NO_OP' }, - { no: 239, name: 'TAB_JUMP_FILTER_REVERT' }, - { no: 240, name: 'TAB_JUMP_FILTER_SCORE_THRESHOLD' }, - { no: 241, name: 'TAB_JUMP_FILTER_WHITESPACE_ONLY' }, - { no: 242, name: 'TAB_JUMP_FILTER_INSERTION_CAP' }, - { no: 243, name: 'TAB_JUMP_FILTER_DELETION_CAP' }, - { no: 260, name: 'TAB_JUMP_PRUNE_RESPONSE' }, - { no: 261, name: 'TAB_JUMP_PRUNE_MAX_INSERT_DELETE_LINE_DELTA' }, - { no: 317, name: 'TAB_JUMP_STOP_TOKEN_MIDSTREAM' }, - { no: 211, name: 'VIEWED_FILE_TRACKER_CONFIG' }, - { no: 305, name: 'SNAPSHOT_TO_STEP_OPTIONS_OVERRIDE' }, - { no: 172, name: 'STREAMING_EXTERNAL_COMMAND' }, - { no: 179, name: 'USE_SPECIAL_EDIT_CODE_BLOCK' }, - { no: 187, name: 'ENABLE_SUGGESTED_RESPONSES' }, - { no: 190, name: 'CASCADE_BASE_MODEL_ID' }, - { no: 266, name: 'CASCADE_PLAN_BASED_CONFIG_OVERRIDE' }, - { no: 212, name: 'CASCADE_GLOBAL_CONFIG_OVERRIDE' }, - { no: 193, name: 'CASCADE_BACKGROUND_RESEARCH_CONFIG_OVERRIDE' }, - { no: 204, name: 'CASCADE_ENFORCE_QUOTA' }, - { no: 224, name: 'CASCADE_ENABLE_AUTOMATED_MEMORIES' }, - { no: 314, name: 'CASCADE_MEMORY_CONFIG_OVERRIDE' }, - { no: 228, name: 'CASCADE_USE_REPLACE_CONTENT_EDIT_TOOL' }, - { no: 258, name: 'CASCADE_VIEW_FILE_TOOL_CONFIG_OVERRIDE' }, - { no: 247, name: 'CASCADE_USE_EXPERIMENT_CHECKPOINTER' }, - { no: 245, name: 'CASCADE_ENABLE_MCP_TOOLS' }, - { no: 275, name: 'CASCADE_AUTO_FIX_LINTS' }, - { no: 296, name: 'USE_ANTHROPIC_TOKEN_EFFICIENT_TOOLS_BETA' }, - { no: 289, name: 'CASCADE_USER_MEMORIES_IN_SYS_PROMPT' }, - { no: 312, name: 'COLLAPSE_ASSISTANT_MESSAGES' }, - { no: 321, name: 'CASCADE_DEFAULT_MODEL_OVERRIDE' }, - { no: 181, name: 'ENABLE_SMART_COPY' }, - { no: 185, name: 'ENABLE_COMMIT_MESSAGE_GENERATION' }, - { no: 276, name: 'FIREWORKS_ON_DEMAND_DEPLOYMENT' }, - { no: 202, name: 'API_SERVER_CLIENT_USE_HTTP_2' }, - { no: 213, name: 'AUTOCOMPLETE_DEFAULT_DEBOUNCE_MS' }, - { no: 214, name: 'AUTOCOMPLETE_FAST_DEBOUNCE_MS' }, - { no: 219, name: 'PROFILING_TELEMETRY_SAMPLE_RATE' }, - { no: 225, name: 'STREAM_USER_SHELL_COMMANDS' }, - { no: 307, name: 'API_SERVER_PROMPT_CACHE_REPLICAS' }, - { no: 272, name: 'API_SERVER_ENABLE_MORE_LOGGING' }, - { no: 233, name: 'COMMAND_INJECT_USER_MEMORIES' }, - { no: 234, name: 'AUTOCOMPLETE_HIDDEN_ERROR_REGEX' }, - { no: 278, name: 'DISABLE_IDE_COMPLETIONS_DEBOUNCE' }, - { no: 264, name: 'COMBINED_MODEL_USE_FULL_INSTRUCTION_FOR_RETRIEVAL' }, - { no: 265, name: 'MAX_PAST_TRAJECTORY_TOKENS_FOR_RETRIEVAL' }, - { no: 250, name: 'ENABLE_QUICK_ACTIONS' }, - { no: 251, name: 'QUICK_ACTIONS_WHITELIST_REGEX' }, - { no: 259, name: 'CASCADE_NEW_MODELS_NUX' }, - { no: 270, name: 'CASCADE_NEW_WAVE_2_MODELS_NUX' }, - { no: 262, name: 'SUPERCOMPLETE_FAST_DEBOUNCE' }, - { no: 263, name: 'SUPERCOMPLETE_REGULAR_DEBOUNCE' }, - { no: 268, name: 'XML_TOOL_PARSING_MODELS' }, - { no: 269, name: 'SUPERCOMPLETE_DONT_FILTER_MID_STREAMED' }, - { no: 285, name: 'ANNOYANCE_MANAGER_MAX_NAVIGATION_RENDERS' }, - { no: 286, name: 'ANNOYANCE_MANAGER_INLINE_PREVENTION_THRESHOLD_MS' }, - { - no: 287, - name: 'ANNOYANCE_MANAGER_INLINE_PREVENTION_MAX_INTENTIONAL_REJECTIONS', - }, - { no: 288, name: 'ANNOYANCE_MANAGER_INLINE_PREVENTION_MAX_AUTO_REJECTIONS' }, - { no: 292, name: 'USE_CUSTOM_CHARACTER_DIFF' }, - { no: 298, name: 'FORCE_NON_OPTIMIZED_DIFF' }, - { no: 316, name: 'CASCADE_RECIPES_AT_MENTION_VISIBILITY' }, - { no: 310, name: 'IMPLICIT_USES_CLIPBOARD' }, - { no: 303, name: 'DISABLE_SUPERCOMPLETE_PCW' }, - { no: 304, name: 'BLOCK_TAB_ON_SHOWN_AUTOCOMPLETE' }, - { no: 311, name: 'CASCADE_WEB_SEARCH_NUX' }, - { no: 319, name: 'MODEL_NOTIFICATIONS' }, - { no: 320, name: 'MODEL_SELECTOR_NUX_COPY' }, - { no: 322, name: 'CASCADE_TOOL_CALL_PRICING_NUX' }, - { no: 323, name: 'CASCADE_PLUGINS_TAB' }, - { no: 324, name: 'WAVE_8_RULES_ENABLED' }, - { no: 325, name: 'WAVE_8_KNOWLEDGE_ENABLED' }, - { no: 326, name: 'CASCADE_ONBOARDING' }, - { no: 327, name: 'CASCADE_ONBOARDING_REVERT' }, - { no: 328, name: 'CASCADE_ANTIGRAVITY_BROWSER_TOOLS_ENABLED' }, - { no: 329, name: 'CASCADE_MODEL_HEADER_WARNING' }, - { no: 331, name: 'LOG_CASCADE_CHAT_PANEL_ERROR' }, - { no: 999, name: 'TEST_ONLY' }, +proto3.util.setEnumType(ExperimentKey, "exa.codeium_common_pb.ExperimentKey", [ + { no: 0, name: "UNSPECIFIED" }, + { no: 36, name: "USE_INTERNAL_CHAT_MODEL" }, + { no: 47, name: "RECORD_FILES" }, + { no: 48, name: "NO_SAMPLER_EARLY_STOP" }, + { no: 53, name: "CM_MEMORY_TELEMETRY" }, + { no: 55, name: "LANGUAGE_SERVER_VERSION" }, + { no: 56, name: "LANGUAGE_SERVER_AUTO_RELOAD" }, + { no: 60, name: "ONLY_MULTILINE" }, + { no: 68, name: "USE_ATTRIBUTION_FOR_INDIVIDUAL_TIER" }, + { no: 78, name: "CHAT_MODEL_CONFIG" }, + { no: 79, name: "COMMAND_MODEL_CONFIG" }, + { no: 81, name: "MIN_IDE_VERSION" }, + { no: 84, name: "API_SERVER_VERBOSE_ERRORS" }, + { no: 86, name: "DEFAULT_ENABLE_SEARCH" }, + { no: 87, name: "COLLECT_ONBOARDING_EVENTS" }, + { no: 88, name: "COLLECT_EXAMPLE_COMPLETIONS" }, + { no: 89, name: "USE_MULTILINE_MODEL" }, + { no: 92, name: "ATTRIBUTION_KILL_SWITCH" }, + { no: 94, name: "FAST_MULTILINE" }, + { no: 95, name: "SINGLE_COMPLETION" }, + { no: 96, name: "STOP_FIRST_NON_WHITESPACE_LINE" }, + { no: 102, name: "CORTEX_CONFIG" }, + { no: 103, name: "MODEL_CHAT_11121_VARIANTS" }, + { no: 105, name: "INCLUDE_PROMPT_COMPONENTS" }, + { no: 108, name: "PERSIST_CODE_TRACKER" }, + { no: 112, name: "API_SERVER_LIVENESS_PROBE" }, + { no: 114, name: "CHAT_COMPLETION_TOKENS_SOFT_LIMIT" }, + { no: 115, name: "CHAT_TOKENS_SOFT_LIMIT" }, + { no: 118, name: "DISABLE_COMPLETIONS_CACHE" }, + { no: 119, name: "LLAMA3_405B_KILL_SWITCH" }, + { no: 121, name: "USE_COMMAND_DOCSTRING_GENERATION" }, + { no: 136, name: "SENTRY" }, + { no: 144, name: "FAST_SINGLELINE" }, + { no: 147, name: "R2_LANGUAGE_SERVER_DOWNLOAD" }, + { no: 152, name: "SPLIT_MODEL" }, + { no: 198, name: "ANTIGRAVITY_SENTRY_SAMPLE_RATE" }, + { no: 158, name: "API_SERVER_CUTOFF" }, + { no: 159, name: "FAST_SPEED_KILL_SWITCH" }, + { no: 160, name: "PREDICTIVE_MULTILINE" }, + { no: 125, name: "SUPERCOMPLETE_FILTER_REVERT" }, + { no: 126, name: "SUPERCOMPLETE_FILTER_PREFIX_MATCH" }, + { no: 127, name: "SUPERCOMPLETE_FILTER_SCORE_THRESHOLD" }, + { no: 128, name: "SUPERCOMPLETE_FILTER_INSERTION_CAP" }, + { no: 133, name: "SUPERCOMPLETE_FILTER_DELETION_CAP" }, + { no: 156, name: "SUPERCOMPLETE_FILTER_WHITESPACE_ONLY" }, + { no: 170, name: "SUPERCOMPLETE_FILTER_NO_OP" }, + { no: 176, name: "SUPERCOMPLETE_FILTER_SUFFIX_MATCH" }, + { no: 182, name: "SUPERCOMPLETE_FILTER_PREVIOUSLY_SHOWN" }, + { no: 129, name: "SUPERCOMPLETE_MIN_SCORE" }, + { no: 130, name: "SUPERCOMPLETE_MAX_INSERTIONS" }, + { no: 131, name: "SUPERCOMPLETE_LINE_RADIUS" }, + { no: 132, name: "SUPERCOMPLETE_MAX_DELETIONS" }, + { no: 135, name: "SUPERCOMPLETE_USE_CURRENT_LINE" }, + { no: 138, name: "SUPERCOMPLETE_RECENT_STEPS_DURATION" }, + { no: 143, name: "SUPERCOMPLETE_USE_CODE_DIAGNOSTICS" }, + { no: 223, name: "SUPERCOMPLETE_DIAGNOSTIC_SEVERITY_THRESHOLD" }, + { no: 232, name: "SUPERCOMPLETE_CODE_DIAGNOSTICS_TOP_K" }, + { no: 154, name: "SUPERCOMPLETE_MAX_TRAJECTORY_STEPS" }, + { no: 157, name: "SUPERCOMPLETE_ON_ACCEPT_ONLY" }, + { no: 183, name: "SUPERCOMPLETE_TEMPERATURE" }, + { no: 203, name: "SUPERCOMPLETE_MAX_TRAJECTORY_STEP_SIZE" }, + { no: 231, name: "SUPERCOMPLETE_DISABLE_TYPING_CACHE" }, + { no: 293, name: "SUPERCOMPLETE_ALWAYS_USE_CACHE_ON_EQUAL_STATE" }, + { no: 297, name: "SUPERCOMPLETE_CACHE_ON_PARENT_ID_KILL_SWITCH" }, + { no: 140, name: "SUPERCOMPLETE_PRUNE_RESPONSE" }, + { no: 141, name: "SUPERCOMPLETE_PRUNE_MAX_INSERT_DELETE_LINE_DELTA" }, + { no: 145, name: "SUPERCOMPLETE_MODEL_CONFIG" }, + { no: 151, name: "SUPERCOMPLETE_ON_TAB" }, + { no: 171, name: "SUPERCOMPLETE_INLINE_PURE_DELETE" }, + { no: 218, name: "SUPERCOMPLETE_INLINE_RICH_GHOST_TEXT_INSERTIONS" }, + { no: 308, name: "MODEL_CHAT_19821_VARIANTS" }, + { no: 284, name: "SUPERCOMPLETE_MAX_CONCURRENT_REQUESTS" }, + { no: 255, name: "COMMAND_PROMPT_CACHE_CONFIG" }, + { no: 256, name: "CUMULATIVE_PROMPT_CONFIG" }, + { no: 279, name: "CUMULATIVE_PROMPT_CASCADE_CONFIG" }, + { no: 301, name: "TAB_JUMP_CUMULATIVE_PROMPT_CONFIG" }, + { no: 207, name: "COMPLETION_SPEED_SUPERCOMPLETE_CACHE" }, + { no: 208, name: "COMPLETION_SPEED_PREDICTIVE_SUPERCOMPLETE" }, + { no: 209, name: "COMPLETION_SPEED_TAB_JUMP_CACHE" }, + { no: 210, name: "COMPLETION_SPEED_PREDICTIVE_TAB_JUMP" }, + { no: 294, name: "COMPLETION_SPEED_BLOCK_TAB_JUMP_ON_PREDICTIVE_SUPERCOMPLETE" }, + { no: 137, name: "JETBRAINS_ENABLE_ONBOARDING" }, + { no: 146, name: "ENABLE_AUTOCOMPLETE_DURING_INTELLISENSE" }, + { no: 155, name: "COMMAND_BOX_ON_TOP" }, + { no: 149, name: "CONTEXT_ACTIVE_DOCUMENT_FRACTION" }, + { no: 150, name: "CONTEXT_COMMAND_TRAJECTORY_PROMPT_CONFIG" }, + { no: 178, name: "CONTEXT_FORCE_LOCAL_CONTEXT" }, + { no: 220, name: "CROSS_SELL_EXTENSION_DOWNLOAD_ANTIGRAVITY" }, + { no: 295, name: "MODEL_LLAMA_3_1_70B_INSTRUCT_LONG_CONTEXT_VARIANTS" }, + { no: 166, name: "SUPERCOMPLETE_NO_ACTIVE_NODE" }, + { no: 168, name: "TAB_JUMP_ENABLED" }, + { no: 177, name: "TAB_JUMP_LINE_RADIUS" }, + { no: 197, name: "TAB_JUMP_MIN_FILTER_RADIUS" }, + { no: 205, name: "TAB_JUMP_ON_ACCEPT_ONLY" }, + { no: 215, name: "TAB_JUMP_FILTER_IN_SELECTION" }, + { no: 237, name: "TAB_JUMP_MODEL_CONFIG" }, + { no: 238, name: "TAB_JUMP_FILTER_NO_OP" }, + { no: 239, name: "TAB_JUMP_FILTER_REVERT" }, + { no: 240, name: "TAB_JUMP_FILTER_SCORE_THRESHOLD" }, + { no: 241, name: "TAB_JUMP_FILTER_WHITESPACE_ONLY" }, + { no: 242, name: "TAB_JUMP_FILTER_INSERTION_CAP" }, + { no: 243, name: "TAB_JUMP_FILTER_DELETION_CAP" }, + { no: 260, name: "TAB_JUMP_PRUNE_RESPONSE" }, + { no: 261, name: "TAB_JUMP_PRUNE_MAX_INSERT_DELETE_LINE_DELTA" }, + { no: 317, name: "TAB_JUMP_STOP_TOKEN_MIDSTREAM" }, + { no: 211, name: "VIEWED_FILE_TRACKER_CONFIG" }, + { no: 305, name: "SNAPSHOT_TO_STEP_OPTIONS_OVERRIDE" }, + { no: 172, name: "STREAMING_EXTERNAL_COMMAND" }, + { no: 179, name: "USE_SPECIAL_EDIT_CODE_BLOCK" }, + { no: 187, name: "ENABLE_SUGGESTED_RESPONSES" }, + { no: 190, name: "CASCADE_BASE_MODEL_ID" }, + { no: 266, name: "CASCADE_PLAN_BASED_CONFIG_OVERRIDE" }, + { no: 212, name: "CASCADE_GLOBAL_CONFIG_OVERRIDE" }, + { no: 193, name: "CASCADE_BACKGROUND_RESEARCH_CONFIG_OVERRIDE" }, + { no: 204, name: "CASCADE_ENFORCE_QUOTA" }, + { no: 224, name: "CASCADE_ENABLE_AUTOMATED_MEMORIES" }, + { no: 314, name: "CASCADE_MEMORY_CONFIG_OVERRIDE" }, + { no: 228, name: "CASCADE_USE_REPLACE_CONTENT_EDIT_TOOL" }, + { no: 258, name: "CASCADE_VIEW_FILE_TOOL_CONFIG_OVERRIDE" }, + { no: 247, name: "CASCADE_USE_EXPERIMENT_CHECKPOINTER" }, + { no: 245, name: "CASCADE_ENABLE_MCP_TOOLS" }, + { no: 275, name: "CASCADE_AUTO_FIX_LINTS" }, + { no: 296, name: "USE_ANTHROPIC_TOKEN_EFFICIENT_TOOLS_BETA" }, + { no: 289, name: "CASCADE_USER_MEMORIES_IN_SYS_PROMPT" }, + { no: 312, name: "COLLAPSE_ASSISTANT_MESSAGES" }, + { no: 321, name: "CASCADE_DEFAULT_MODEL_OVERRIDE" }, + { no: 181, name: "ENABLE_SMART_COPY" }, + { no: 185, name: "ENABLE_COMMIT_MESSAGE_GENERATION" }, + { no: 276, name: "FIREWORKS_ON_DEMAND_DEPLOYMENT" }, + { no: 202, name: "API_SERVER_CLIENT_USE_HTTP_2" }, + { no: 213, name: "AUTOCOMPLETE_DEFAULT_DEBOUNCE_MS" }, + { no: 214, name: "AUTOCOMPLETE_FAST_DEBOUNCE_MS" }, + { no: 219, name: "PROFILING_TELEMETRY_SAMPLE_RATE" }, + { no: 225, name: "STREAM_USER_SHELL_COMMANDS" }, + { no: 307, name: "API_SERVER_PROMPT_CACHE_REPLICAS" }, + { no: 272, name: "API_SERVER_ENABLE_MORE_LOGGING" }, + { no: 233, name: "COMMAND_INJECT_USER_MEMORIES" }, + { no: 234, name: "AUTOCOMPLETE_HIDDEN_ERROR_REGEX" }, + { no: 278, name: "DISABLE_IDE_COMPLETIONS_DEBOUNCE" }, + { no: 264, name: "COMBINED_MODEL_USE_FULL_INSTRUCTION_FOR_RETRIEVAL" }, + { no: 265, name: "MAX_PAST_TRAJECTORY_TOKENS_FOR_RETRIEVAL" }, + { no: 250, name: "ENABLE_QUICK_ACTIONS" }, + { no: 251, name: "QUICK_ACTIONS_WHITELIST_REGEX" }, + { no: 259, name: "CASCADE_NEW_MODELS_NUX" }, + { no: 270, name: "CASCADE_NEW_WAVE_2_MODELS_NUX" }, + { no: 262, name: "SUPERCOMPLETE_FAST_DEBOUNCE" }, + { no: 263, name: "SUPERCOMPLETE_REGULAR_DEBOUNCE" }, + { no: 268, name: "XML_TOOL_PARSING_MODELS" }, + { no: 269, name: "SUPERCOMPLETE_DONT_FILTER_MID_STREAMED" }, + { no: 285, name: "ANNOYANCE_MANAGER_MAX_NAVIGATION_RENDERS" }, + { no: 286, name: "ANNOYANCE_MANAGER_INLINE_PREVENTION_THRESHOLD_MS" }, + { no: 287, name: "ANNOYANCE_MANAGER_INLINE_PREVENTION_MAX_INTENTIONAL_REJECTIONS" }, + { no: 288, name: "ANNOYANCE_MANAGER_INLINE_PREVENTION_MAX_AUTO_REJECTIONS" }, + { no: 292, name: "USE_CUSTOM_CHARACTER_DIFF" }, + { no: 298, name: "FORCE_NON_OPTIMIZED_DIFF" }, + { no: 316, name: "CASCADE_RECIPES_AT_MENTION_VISIBILITY" }, + { no: 310, name: "IMPLICIT_USES_CLIPBOARD" }, + { no: 303, name: "DISABLE_SUPERCOMPLETE_PCW" }, + { no: 304, name: "BLOCK_TAB_ON_SHOWN_AUTOCOMPLETE" }, + { no: 311, name: "CASCADE_WEB_SEARCH_NUX" }, + { no: 319, name: "MODEL_NOTIFICATIONS" }, + { no: 320, name: "MODEL_SELECTOR_NUX_COPY" }, + { no: 322, name: "CASCADE_TOOL_CALL_PRICING_NUX" }, + { no: 323, name: "CASCADE_PLUGINS_TAB" }, + { no: 324, name: "WAVE_8_RULES_ENABLED" }, + { no: 325, name: "WAVE_8_KNOWLEDGE_ENABLED" }, + { no: 326, name: "CASCADE_ONBOARDING" }, + { no: 327, name: "CASCADE_ONBOARDING_REVERT" }, + { no: 328, name: "CASCADE_ANTIGRAVITY_BROWSER_TOOLS_ENABLED" }, + { no: 329, name: "CASCADE_MODEL_HEADER_WARNING" }, + { no: 331, name: "LOG_CASCADE_CHAT_PANEL_ERROR" }, + { no: 999, name: "TEST_ONLY" } ]); var ExperimentSource; -(function (ExperimentSource2) { - ExperimentSource2[(ExperimentSource2['UNSPECIFIED'] = 0)] = 'UNSPECIFIED'; - ExperimentSource2[(ExperimentSource2['EXTENSION'] = 1)] = 'EXTENSION'; - ExperimentSource2[(ExperimentSource2['LANGUAGE_SERVER'] = 2)] = - 'LANGUAGE_SERVER'; - ExperimentSource2[(ExperimentSource2['API_SERVER'] = 3)] = 'API_SERVER'; +(function(ExperimentSource2) { + ExperimentSource2[ExperimentSource2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + ExperimentSource2[ExperimentSource2["EXTENSION"] = 1] = "EXTENSION"; + ExperimentSource2[ExperimentSource2["LANGUAGE_SERVER"] = 2] = "LANGUAGE_SERVER"; + ExperimentSource2[ExperimentSource2["API_SERVER"] = 3] = "API_SERVER"; })(ExperimentSource || (ExperimentSource = {})); -proto3.util.setEnumType( - ExperimentSource, - 'exa.codeium_common_pb.ExperimentSource', - [ - { no: 0, name: 'EXPERIMENT_SOURCE_UNSPECIFIED' }, - { no: 1, name: 'EXPERIMENT_SOURCE_EXTENSION' }, - { no: 2, name: 'EXPERIMENT_SOURCE_LANGUAGE_SERVER' }, - { no: 3, name: 'EXPERIMENT_SOURCE_API_SERVER' }, - ], -); +proto3.util.setEnumType(ExperimentSource, "exa.codeium_common_pb.ExperimentSource", [ + { no: 0, name: "EXPERIMENT_SOURCE_UNSPECIFIED" }, + { no: 1, name: "EXPERIMENT_SOURCE_EXTENSION" }, + { no: 2, name: "EXPERIMENT_SOURCE_LANGUAGE_SERVER" }, + { no: 3, name: "EXPERIMENT_SOURCE_API_SERVER" } +]); var ModelAlias; -(function (ModelAlias2) { - ModelAlias2[(ModelAlias2['UNSPECIFIED'] = 0)] = 'UNSPECIFIED'; - ModelAlias2[(ModelAlias2['CASCADE_BASE'] = 1)] = 'CASCADE_BASE'; - ModelAlias2[(ModelAlias2['VISTA'] = 3)] = 'VISTA'; - ModelAlias2[(ModelAlias2['SHAMU'] = 4)] = 'SHAMU'; - ModelAlias2[(ModelAlias2['SWE_1'] = 5)] = 'SWE_1'; - ModelAlias2[(ModelAlias2['SWE_1_LITE'] = 6)] = 'SWE_1_LITE'; - ModelAlias2[(ModelAlias2['AUTO'] = 7)] = 'AUTO'; - ModelAlias2[(ModelAlias2['RECOMMENDED'] = 8)] = 'RECOMMENDED'; +(function(ModelAlias2) { + ModelAlias2[ModelAlias2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + ModelAlias2[ModelAlias2["CASCADE_BASE"] = 1] = "CASCADE_BASE"; + ModelAlias2[ModelAlias2["VISTA"] = 3] = "VISTA"; + ModelAlias2[ModelAlias2["SHAMU"] = 4] = "SHAMU"; + ModelAlias2[ModelAlias2["SWE_1"] = 5] = "SWE_1"; + ModelAlias2[ModelAlias2["SWE_1_LITE"] = 6] = "SWE_1_LITE"; + ModelAlias2[ModelAlias2["AUTO"] = 7] = "AUTO"; + ModelAlias2[ModelAlias2["RECOMMENDED"] = 8] = "RECOMMENDED"; })(ModelAlias || (ModelAlias = {})); -proto3.util.setEnumType(ModelAlias, 'exa.codeium_common_pb.ModelAlias', [ - { no: 0, name: 'MODEL_ALIAS_UNSPECIFIED' }, - { no: 1, name: 'MODEL_ALIAS_CASCADE_BASE' }, - { no: 3, name: 'MODEL_ALIAS_VISTA' }, - { no: 4, name: 'MODEL_ALIAS_SHAMU' }, - { no: 5, name: 'MODEL_ALIAS_SWE_1' }, - { no: 6, name: 'MODEL_ALIAS_SWE_1_LITE' }, - { no: 7, name: 'MODEL_ALIAS_AUTO' }, - { no: 8, name: 'MODEL_ALIAS_RECOMMENDED' }, +proto3.util.setEnumType(ModelAlias, "exa.codeium_common_pb.ModelAlias", [ + { no: 0, name: "MODEL_ALIAS_UNSPECIFIED" }, + { no: 1, name: "MODEL_ALIAS_CASCADE_BASE" }, + { no: 3, name: "MODEL_ALIAS_VISTA" }, + { no: 4, name: "MODEL_ALIAS_SHAMU" }, + { no: 5, name: "MODEL_ALIAS_SWE_1" }, + { no: 6, name: "MODEL_ALIAS_SWE_1_LITE" }, + { no: 7, name: "MODEL_ALIAS_AUTO" }, + { no: 8, name: "MODEL_ALIAS_RECOMMENDED" } ]); var Model; -(function (Model2) { - Model2[(Model2['UNSPECIFIED'] = 0)] = 'UNSPECIFIED'; - Model2[(Model2['CHAT_20706'] = 235)] = 'CHAT_20706'; - Model2[(Model2['CHAT_23310'] = 269)] = 'CHAT_23310'; - Model2[(Model2['GOOGLE_GEMINI_2_5_FLASH'] = 312)] = 'GOOGLE_GEMINI_2_5_FLASH'; - Model2[(Model2['GOOGLE_GEMINI_2_5_FLASH_THINKING'] = 313)] = - 'GOOGLE_GEMINI_2_5_FLASH_THINKING'; - Model2[(Model2['GOOGLE_GEMINI_2_5_FLASH_THINKING_TOOLS'] = 329)] = - 'GOOGLE_GEMINI_2_5_FLASH_THINKING_TOOLS'; - Model2[(Model2['GOOGLE_GEMINI_2_5_FLASH_LITE'] = 330)] = - 'GOOGLE_GEMINI_2_5_FLASH_LITE'; - Model2[(Model2['GOOGLE_GEMINI_2_5_PRO'] = 246)] = 'GOOGLE_GEMINI_2_5_PRO'; - Model2[(Model2['GOOGLE_GEMINI_2_5_PRO_EVAL'] = 331)] = - 'GOOGLE_GEMINI_2_5_PRO_EVAL'; - Model2[(Model2['GOOGLE_GEMINI_FOR_GOOGLE_2_5_PRO'] = 327)] = - 'GOOGLE_GEMINI_FOR_GOOGLE_2_5_PRO'; - Model2[(Model2['GOOGLE_GEMINI_NEMOSREEF'] = 328)] = 'GOOGLE_GEMINI_NEMOSREEF'; - Model2[(Model2['GOOGLE_GEMINI_2_5_FLASH_IMAGE_PREVIEW'] = 332)] = - 'GOOGLE_GEMINI_2_5_FLASH_IMAGE_PREVIEW'; - Model2[(Model2['GOOGLE_GEMINI_COMPUTER_USE_EXPERIMENTAL'] = 335)] = - 'GOOGLE_GEMINI_COMPUTER_USE_EXPERIMENTAL'; - Model2[(Model2['GOOGLE_GEMINI_RAINSONG'] = 339)] = 'GOOGLE_GEMINI_RAINSONG'; - Model2[(Model2['GOOGLE_JARVIS_PROXY'] = 346)] = 'GOOGLE_JARVIS_PROXY'; - Model2[(Model2['GOOGLE_JARVIS_V4S'] = 349)] = 'GOOGLE_JARVIS_V4S'; - Model2[(Model2['GOOGLE_GEMINI_TRAINING_POLICY'] = 323)] = - 'GOOGLE_GEMINI_TRAINING_POLICY'; - Model2[(Model2['GOOGLE_GEMINI_INTERNAL_BYOM'] = 326)] = - 'GOOGLE_GEMINI_INTERNAL_BYOM'; - Model2[(Model2['GOOGLE_GEMINI_INTERNAL_TAB_FLASH_LITE'] = 344)] = - 'GOOGLE_GEMINI_INTERNAL_TAB_FLASH_LITE'; - Model2[(Model2['GOOGLE_GEMINI_INTERNAL_TAB_JUMP_FLASH_LITE'] = 345)] = - 'GOOGLE_GEMINI_INTERNAL_TAB_JUMP_FLASH_LITE'; - Model2[(Model2['GOOGLE_GEMINI_HORIZONDAWN'] = 336)] = - 'GOOGLE_GEMINI_HORIZONDAWN'; - Model2[(Model2['GOOGLE_GEMINI_PUREPRISM'] = 337)] = 'GOOGLE_GEMINI_PUREPRISM'; - Model2[(Model2['GOOGLE_GEMINI_GENTLEISLAND'] = 338)] = - 'GOOGLE_GEMINI_GENTLEISLAND'; - Model2[(Model2['GOOGLE_GEMINI_ORIONFIRE'] = 343)] = 'GOOGLE_GEMINI_ORIONFIRE'; - Model2[(Model2['GOOGLE_GEMINI_COSMICFORGE'] = 347)] = - 'GOOGLE_GEMINI_COSMICFORGE'; - Model2[(Model2['GOOGLE_GEMINI_RIFTRUNNER'] = 348)] = - 'GOOGLE_GEMINI_RIFTRUNNER'; - Model2[(Model2['GOOGLE_GEMINI_RIFTRUNNER_THINKING_LOW'] = 352)] = - 'GOOGLE_GEMINI_RIFTRUNNER_THINKING_LOW'; - Model2[(Model2['GOOGLE_GEMINI_RIFTRUNNER_THINKING_HIGH'] = 353)] = - 'GOOGLE_GEMINI_RIFTRUNNER_THINKING_HIGH'; - Model2[(Model2['GOOGLE_GEMINI_INFINITYJET'] = 350)] = - 'GOOGLE_GEMINI_INFINITYJET'; - Model2[(Model2['GOOGLE_GEMINI_INFINITYBLOOM'] = 351)] = - 'GOOGLE_GEMINI_INFINITYBLOOM'; - Model2[(Model2['CLAUDE_4_SONNET'] = 281)] = 'CLAUDE_4_SONNET'; - Model2[(Model2['CLAUDE_4_SONNET_THINKING'] = 282)] = - 'CLAUDE_4_SONNET_THINKING'; - Model2[(Model2['CLAUDE_4_OPUS'] = 290)] = 'CLAUDE_4_OPUS'; - Model2[(Model2['CLAUDE_4_OPUS_THINKING'] = 291)] = 'CLAUDE_4_OPUS_THINKING'; - Model2[(Model2['CLAUDE_4_5_SONNET'] = 333)] = 'CLAUDE_4_5_SONNET'; - Model2[(Model2['CLAUDE_4_5_SONNET_THINKING'] = 334)] = - 'CLAUDE_4_5_SONNET_THINKING'; - Model2[(Model2['CLAUDE_4_5_HAIKU'] = 340)] = 'CLAUDE_4_5_HAIKU'; - Model2[(Model2['CLAUDE_4_5_HAIKU_THINKING'] = 341)] = - 'CLAUDE_4_5_HAIKU_THINKING'; - Model2[(Model2['OPENAI_GPT_OSS_120B_MEDIUM'] = 342)] = - 'OPENAI_GPT_OSS_120B_MEDIUM'; - Model2[(Model2['PLACEHOLDER_M0'] = 1e3)] = 'PLACEHOLDER_M0'; - Model2[(Model2['PLACEHOLDER_M1'] = 1001)] = 'PLACEHOLDER_M1'; - Model2[(Model2['PLACEHOLDER_M2'] = 1002)] = 'PLACEHOLDER_M2'; - Model2[(Model2['PLACEHOLDER_M3'] = 1003)] = 'PLACEHOLDER_M3'; - Model2[(Model2['PLACEHOLDER_M4'] = 1004)] = 'PLACEHOLDER_M4'; - Model2[(Model2['PLACEHOLDER_M5'] = 1005)] = 'PLACEHOLDER_M5'; - Model2[(Model2['PLACEHOLDER_M6'] = 1006)] = 'PLACEHOLDER_M6'; - Model2[(Model2['PLACEHOLDER_M7'] = 1007)] = 'PLACEHOLDER_M7'; - Model2[(Model2['PLACEHOLDER_M8'] = 1008)] = 'PLACEHOLDER_M8'; - Model2[(Model2['PLACEHOLDER_M9'] = 1009)] = 'PLACEHOLDER_M9'; - Model2[(Model2['PLACEHOLDER_M10'] = 1010)] = 'PLACEHOLDER_M10'; - Model2[(Model2['PLACEHOLDER_M11'] = 1011)] = 'PLACEHOLDER_M11'; - Model2[(Model2['PLACEHOLDER_M12'] = 1012)] = 'PLACEHOLDER_M12'; - Model2[(Model2['PLACEHOLDER_M13'] = 1013)] = 'PLACEHOLDER_M13'; - Model2[(Model2['PLACEHOLDER_M14'] = 1014)] = 'PLACEHOLDER_M14'; - Model2[(Model2['PLACEHOLDER_M15'] = 1015)] = 'PLACEHOLDER_M15'; - Model2[(Model2['PLACEHOLDER_M16'] = 1016)] = 'PLACEHOLDER_M16'; - Model2[(Model2['PLACEHOLDER_M17'] = 1017)] = 'PLACEHOLDER_M17'; - Model2[(Model2['PLACEHOLDER_M18'] = 1018)] = 'PLACEHOLDER_M18'; - Model2[(Model2['PLACEHOLDER_M19'] = 1019)] = 'PLACEHOLDER_M19'; - Model2[(Model2['PLACEHOLDER_M20'] = 1020)] = 'PLACEHOLDER_M20'; - Model2[(Model2['PLACEHOLDER_M21'] = 1021)] = 'PLACEHOLDER_M21'; - Model2[(Model2['PLACEHOLDER_M22'] = 1022)] = 'PLACEHOLDER_M22'; - Model2[(Model2['PLACEHOLDER_M23'] = 1023)] = 'PLACEHOLDER_M23'; - Model2[(Model2['PLACEHOLDER_M24'] = 1024)] = 'PLACEHOLDER_M24'; - Model2[(Model2['PLACEHOLDER_M25'] = 1025)] = 'PLACEHOLDER_M25'; - Model2[(Model2['PLACEHOLDER_M26'] = 1026)] = 'PLACEHOLDER_M26'; - Model2[(Model2['PLACEHOLDER_M27'] = 1027)] = 'PLACEHOLDER_M27'; - Model2[(Model2['PLACEHOLDER_M28'] = 1028)] = 'PLACEHOLDER_M28'; - Model2[(Model2['PLACEHOLDER_M29'] = 1029)] = 'PLACEHOLDER_M29'; - Model2[(Model2['PLACEHOLDER_M30'] = 1030)] = 'PLACEHOLDER_M30'; - Model2[(Model2['PLACEHOLDER_M31'] = 1031)] = 'PLACEHOLDER_M31'; - Model2[(Model2['PLACEHOLDER_M32'] = 1032)] = 'PLACEHOLDER_M32'; - Model2[(Model2['PLACEHOLDER_M33'] = 1033)] = 'PLACEHOLDER_M33'; - Model2[(Model2['PLACEHOLDER_M34'] = 1034)] = 'PLACEHOLDER_M34'; - Model2[(Model2['PLACEHOLDER_M35'] = 1035)] = 'PLACEHOLDER_M35'; - Model2[(Model2['PLACEHOLDER_M36'] = 1036)] = 'PLACEHOLDER_M36'; - Model2[(Model2['PLACEHOLDER_M37'] = 1037)] = 'PLACEHOLDER_M37'; - Model2[(Model2['PLACEHOLDER_M38'] = 1038)] = 'PLACEHOLDER_M38'; - Model2[(Model2['PLACEHOLDER_M39'] = 1039)] = 'PLACEHOLDER_M39'; - Model2[(Model2['PLACEHOLDER_M40'] = 1040)] = 'PLACEHOLDER_M40'; - Model2[(Model2['PLACEHOLDER_M41'] = 1041)] = 'PLACEHOLDER_M41'; - Model2[(Model2['PLACEHOLDER_M42'] = 1042)] = 'PLACEHOLDER_M42'; - Model2[(Model2['PLACEHOLDER_M43'] = 1043)] = 'PLACEHOLDER_M43'; - Model2[(Model2['PLACEHOLDER_M44'] = 1044)] = 'PLACEHOLDER_M44'; - Model2[(Model2['PLACEHOLDER_M45'] = 1045)] = 'PLACEHOLDER_M45'; - Model2[(Model2['PLACEHOLDER_M46'] = 1046)] = 'PLACEHOLDER_M46'; - Model2[(Model2['PLACEHOLDER_M47'] = 1047)] = 'PLACEHOLDER_M47'; - Model2[(Model2['PLACEHOLDER_M48'] = 1048)] = 'PLACEHOLDER_M48'; - Model2[(Model2['PLACEHOLDER_M49'] = 1049)] = 'PLACEHOLDER_M49'; - Model2[(Model2['PLACEHOLDER_M50'] = 1050)] = 'PLACEHOLDER_M50'; +(function(Model2) { + Model2[Model2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + Model2[Model2["CHAT_20706"] = 235] = "CHAT_20706"; + Model2[Model2["CHAT_23310"] = 269] = "CHAT_23310"; + Model2[Model2["GOOGLE_GEMINI_2_5_FLASH"] = 312] = "GOOGLE_GEMINI_2_5_FLASH"; + Model2[Model2["GOOGLE_GEMINI_2_5_FLASH_THINKING"] = 313] = "GOOGLE_GEMINI_2_5_FLASH_THINKING"; + Model2[Model2["GOOGLE_GEMINI_2_5_FLASH_THINKING_TOOLS"] = 329] = "GOOGLE_GEMINI_2_5_FLASH_THINKING_TOOLS"; + Model2[Model2["GOOGLE_GEMINI_2_5_FLASH_LITE"] = 330] = "GOOGLE_GEMINI_2_5_FLASH_LITE"; + Model2[Model2["GOOGLE_GEMINI_2_5_PRO"] = 246] = "GOOGLE_GEMINI_2_5_PRO"; + Model2[Model2["GOOGLE_GEMINI_2_5_PRO_EVAL"] = 331] = "GOOGLE_GEMINI_2_5_PRO_EVAL"; + Model2[Model2["GOOGLE_GEMINI_FOR_GOOGLE_2_5_PRO"] = 327] = "GOOGLE_GEMINI_FOR_GOOGLE_2_5_PRO"; + Model2[Model2["GOOGLE_GEMINI_NEMOSREEF"] = 328] = "GOOGLE_GEMINI_NEMOSREEF"; + Model2[Model2["GOOGLE_GEMINI_2_5_FLASH_IMAGE_PREVIEW"] = 332] = "GOOGLE_GEMINI_2_5_FLASH_IMAGE_PREVIEW"; + Model2[Model2["GOOGLE_GEMINI_COMPUTER_USE_EXPERIMENTAL"] = 335] = "GOOGLE_GEMINI_COMPUTER_USE_EXPERIMENTAL"; + Model2[Model2["GOOGLE_GEMINI_RAINSONG"] = 339] = "GOOGLE_GEMINI_RAINSONG"; + Model2[Model2["GOOGLE_JARVIS_PROXY"] = 346] = "GOOGLE_JARVIS_PROXY"; + Model2[Model2["GOOGLE_JARVIS_V4S"] = 349] = "GOOGLE_JARVIS_V4S"; + Model2[Model2["GOOGLE_GEMINI_TRAINING_POLICY"] = 323] = "GOOGLE_GEMINI_TRAINING_POLICY"; + Model2[Model2["GOOGLE_GEMINI_INTERNAL_BYOM"] = 326] = "GOOGLE_GEMINI_INTERNAL_BYOM"; + Model2[Model2["GOOGLE_GEMINI_INTERNAL_TAB_FLASH_LITE"] = 344] = "GOOGLE_GEMINI_INTERNAL_TAB_FLASH_LITE"; + Model2[Model2["GOOGLE_GEMINI_INTERNAL_TAB_JUMP_FLASH_LITE"] = 345] = "GOOGLE_GEMINI_INTERNAL_TAB_JUMP_FLASH_LITE"; + Model2[Model2["GOOGLE_GEMINI_HORIZONDAWN"] = 336] = "GOOGLE_GEMINI_HORIZONDAWN"; + Model2[Model2["GOOGLE_GEMINI_PUREPRISM"] = 337] = "GOOGLE_GEMINI_PUREPRISM"; + Model2[Model2["GOOGLE_GEMINI_GENTLEISLAND"] = 338] = "GOOGLE_GEMINI_GENTLEISLAND"; + Model2[Model2["GOOGLE_GEMINI_ORIONFIRE"] = 343] = "GOOGLE_GEMINI_ORIONFIRE"; + Model2[Model2["GOOGLE_GEMINI_COSMICFORGE"] = 347] = "GOOGLE_GEMINI_COSMICFORGE"; + Model2[Model2["GOOGLE_GEMINI_RIFTRUNNER"] = 348] = "GOOGLE_GEMINI_RIFTRUNNER"; + Model2[Model2["GOOGLE_GEMINI_RIFTRUNNER_THINKING_LOW"] = 352] = "GOOGLE_GEMINI_RIFTRUNNER_THINKING_LOW"; + Model2[Model2["GOOGLE_GEMINI_RIFTRUNNER_THINKING_HIGH"] = 353] = "GOOGLE_GEMINI_RIFTRUNNER_THINKING_HIGH"; + Model2[Model2["GOOGLE_GEMINI_INFINITYJET"] = 350] = "GOOGLE_GEMINI_INFINITYJET"; + Model2[Model2["GOOGLE_GEMINI_INFINITYBLOOM"] = 351] = "GOOGLE_GEMINI_INFINITYBLOOM"; + Model2[Model2["CLAUDE_4_SONNET"] = 281] = "CLAUDE_4_SONNET"; + Model2[Model2["CLAUDE_4_SONNET_THINKING"] = 282] = "CLAUDE_4_SONNET_THINKING"; + Model2[Model2["CLAUDE_4_OPUS"] = 290] = "CLAUDE_4_OPUS"; + Model2[Model2["CLAUDE_4_OPUS_THINKING"] = 291] = "CLAUDE_4_OPUS_THINKING"; + Model2[Model2["CLAUDE_4_5_SONNET"] = 333] = "CLAUDE_4_5_SONNET"; + Model2[Model2["CLAUDE_4_5_SONNET_THINKING"] = 334] = "CLAUDE_4_5_SONNET_THINKING"; + Model2[Model2["CLAUDE_4_5_HAIKU"] = 340] = "CLAUDE_4_5_HAIKU"; + Model2[Model2["CLAUDE_4_5_HAIKU_THINKING"] = 341] = "CLAUDE_4_5_HAIKU_THINKING"; + Model2[Model2["OPENAI_GPT_OSS_120B_MEDIUM"] = 342] = "OPENAI_GPT_OSS_120B_MEDIUM"; + Model2[Model2["PLACEHOLDER_M0"] = 1e3] = "PLACEHOLDER_M0"; + Model2[Model2["PLACEHOLDER_M1"] = 1001] = "PLACEHOLDER_M1"; + Model2[Model2["PLACEHOLDER_M2"] = 1002] = "PLACEHOLDER_M2"; + Model2[Model2["PLACEHOLDER_M3"] = 1003] = "PLACEHOLDER_M3"; + Model2[Model2["PLACEHOLDER_M4"] = 1004] = "PLACEHOLDER_M4"; + Model2[Model2["PLACEHOLDER_M5"] = 1005] = "PLACEHOLDER_M5"; + Model2[Model2["PLACEHOLDER_M6"] = 1006] = "PLACEHOLDER_M6"; + Model2[Model2["PLACEHOLDER_M7"] = 1007] = "PLACEHOLDER_M7"; + Model2[Model2["PLACEHOLDER_M8"] = 1008] = "PLACEHOLDER_M8"; + Model2[Model2["PLACEHOLDER_M9"] = 1009] = "PLACEHOLDER_M9"; + Model2[Model2["PLACEHOLDER_M10"] = 1010] = "PLACEHOLDER_M10"; + Model2[Model2["PLACEHOLDER_M11"] = 1011] = "PLACEHOLDER_M11"; + Model2[Model2["PLACEHOLDER_M12"] = 1012] = "PLACEHOLDER_M12"; + Model2[Model2["PLACEHOLDER_M13"] = 1013] = "PLACEHOLDER_M13"; + Model2[Model2["PLACEHOLDER_M14"] = 1014] = "PLACEHOLDER_M14"; + Model2[Model2["PLACEHOLDER_M15"] = 1015] = "PLACEHOLDER_M15"; + Model2[Model2["PLACEHOLDER_M16"] = 1016] = "PLACEHOLDER_M16"; + Model2[Model2["PLACEHOLDER_M17"] = 1017] = "PLACEHOLDER_M17"; + Model2[Model2["PLACEHOLDER_M18"] = 1018] = "PLACEHOLDER_M18"; + Model2[Model2["PLACEHOLDER_M19"] = 1019] = "PLACEHOLDER_M19"; + Model2[Model2["PLACEHOLDER_M20"] = 1020] = "PLACEHOLDER_M20"; + Model2[Model2["PLACEHOLDER_M21"] = 1021] = "PLACEHOLDER_M21"; + Model2[Model2["PLACEHOLDER_M22"] = 1022] = "PLACEHOLDER_M22"; + Model2[Model2["PLACEHOLDER_M23"] = 1023] = "PLACEHOLDER_M23"; + Model2[Model2["PLACEHOLDER_M24"] = 1024] = "PLACEHOLDER_M24"; + Model2[Model2["PLACEHOLDER_M25"] = 1025] = "PLACEHOLDER_M25"; + Model2[Model2["PLACEHOLDER_M26"] = 1026] = "PLACEHOLDER_M26"; + Model2[Model2["PLACEHOLDER_M27"] = 1027] = "PLACEHOLDER_M27"; + Model2[Model2["PLACEHOLDER_M28"] = 1028] = "PLACEHOLDER_M28"; + Model2[Model2["PLACEHOLDER_M29"] = 1029] = "PLACEHOLDER_M29"; + Model2[Model2["PLACEHOLDER_M30"] = 1030] = "PLACEHOLDER_M30"; + Model2[Model2["PLACEHOLDER_M31"] = 1031] = "PLACEHOLDER_M31"; + Model2[Model2["PLACEHOLDER_M32"] = 1032] = "PLACEHOLDER_M32"; + Model2[Model2["PLACEHOLDER_M33"] = 1033] = "PLACEHOLDER_M33"; + Model2[Model2["PLACEHOLDER_M34"] = 1034] = "PLACEHOLDER_M34"; + Model2[Model2["PLACEHOLDER_M35"] = 1035] = "PLACEHOLDER_M35"; + Model2[Model2["PLACEHOLDER_M36"] = 1036] = "PLACEHOLDER_M36"; + Model2[Model2["PLACEHOLDER_M37"] = 1037] = "PLACEHOLDER_M37"; + Model2[Model2["PLACEHOLDER_M38"] = 1038] = "PLACEHOLDER_M38"; + Model2[Model2["PLACEHOLDER_M39"] = 1039] = "PLACEHOLDER_M39"; + Model2[Model2["PLACEHOLDER_M40"] = 1040] = "PLACEHOLDER_M40"; + Model2[Model2["PLACEHOLDER_M41"] = 1041] = "PLACEHOLDER_M41"; + Model2[Model2["PLACEHOLDER_M42"] = 1042] = "PLACEHOLDER_M42"; + Model2[Model2["PLACEHOLDER_M43"] = 1043] = "PLACEHOLDER_M43"; + Model2[Model2["PLACEHOLDER_M44"] = 1044] = "PLACEHOLDER_M44"; + Model2[Model2["PLACEHOLDER_M45"] = 1045] = "PLACEHOLDER_M45"; + Model2[Model2["PLACEHOLDER_M46"] = 1046] = "PLACEHOLDER_M46"; + Model2[Model2["PLACEHOLDER_M47"] = 1047] = "PLACEHOLDER_M47"; + Model2[Model2["PLACEHOLDER_M48"] = 1048] = "PLACEHOLDER_M48"; + Model2[Model2["PLACEHOLDER_M49"] = 1049] = "PLACEHOLDER_M49"; + Model2[Model2["PLACEHOLDER_M50"] = 1050] = "PLACEHOLDER_M50"; })(Model || (Model = {})); -proto3.util.setEnumType(Model, 'exa.codeium_common_pb.Model', [ - { no: 0, name: 'MODEL_UNSPECIFIED' }, - { no: 235, name: 'MODEL_CHAT_20706' }, - { no: 269, name: 'MODEL_CHAT_23310' }, - { no: 312, name: 'MODEL_GOOGLE_GEMINI_2_5_FLASH' }, - { no: 313, name: 'MODEL_GOOGLE_GEMINI_2_5_FLASH_THINKING' }, - { no: 329, name: 'MODEL_GOOGLE_GEMINI_2_5_FLASH_THINKING_TOOLS' }, - { no: 330, name: 'MODEL_GOOGLE_GEMINI_2_5_FLASH_LITE' }, - { no: 246, name: 'MODEL_GOOGLE_GEMINI_2_5_PRO' }, - { no: 331, name: 'MODEL_GOOGLE_GEMINI_2_5_PRO_EVAL' }, - { no: 327, name: 'MODEL_GOOGLE_GEMINI_FOR_GOOGLE_2_5_PRO' }, - { no: 328, name: 'MODEL_GOOGLE_GEMINI_NEMOSREEF' }, - { no: 332, name: 'MODEL_GOOGLE_GEMINI_2_5_FLASH_IMAGE_PREVIEW' }, - { no: 335, name: 'MODEL_GOOGLE_GEMINI_COMPUTER_USE_EXPERIMENTAL' }, - { no: 339, name: 'MODEL_GOOGLE_GEMINI_RAINSONG' }, - { no: 346, name: 'MODEL_GOOGLE_JARVIS_PROXY' }, - { no: 349, name: 'MODEL_GOOGLE_JARVIS_V4S' }, - { no: 323, name: 'MODEL_GOOGLE_GEMINI_TRAINING_POLICY' }, - { no: 326, name: 'MODEL_GOOGLE_GEMINI_INTERNAL_BYOM' }, - { no: 344, name: 'MODEL_GOOGLE_GEMINI_INTERNAL_TAB_FLASH_LITE' }, - { no: 345, name: 'MODEL_GOOGLE_GEMINI_INTERNAL_TAB_JUMP_FLASH_LITE' }, - { no: 336, name: 'MODEL_GOOGLE_GEMINI_HORIZONDAWN' }, - { no: 337, name: 'MODEL_GOOGLE_GEMINI_PUREPRISM' }, - { no: 338, name: 'MODEL_GOOGLE_GEMINI_GENTLEISLAND' }, - { no: 343, name: 'MODEL_GOOGLE_GEMINI_ORIONFIRE' }, - { no: 347, name: 'MODEL_GOOGLE_GEMINI_COSMICFORGE' }, - { no: 348, name: 'MODEL_GOOGLE_GEMINI_RIFTRUNNER' }, - { no: 352, name: 'MODEL_GOOGLE_GEMINI_RIFTRUNNER_THINKING_LOW' }, - { no: 353, name: 'MODEL_GOOGLE_GEMINI_RIFTRUNNER_THINKING_HIGH' }, - { no: 350, name: 'MODEL_GOOGLE_GEMINI_INFINITYJET' }, - { no: 351, name: 'MODEL_GOOGLE_GEMINI_INFINITYBLOOM' }, - { no: 281, name: 'MODEL_CLAUDE_4_SONNET' }, - { no: 282, name: 'MODEL_CLAUDE_4_SONNET_THINKING' }, - { no: 290, name: 'MODEL_CLAUDE_4_OPUS' }, - { no: 291, name: 'MODEL_CLAUDE_4_OPUS_THINKING' }, - { no: 333, name: 'MODEL_CLAUDE_4_5_SONNET' }, - { no: 334, name: 'MODEL_CLAUDE_4_5_SONNET_THINKING' }, - { no: 340, name: 'MODEL_CLAUDE_4_5_HAIKU' }, - { no: 341, name: 'MODEL_CLAUDE_4_5_HAIKU_THINKING' }, - { no: 342, name: 'MODEL_OPENAI_GPT_OSS_120B_MEDIUM' }, - { no: 1e3, name: 'MODEL_PLACEHOLDER_M0' }, - { no: 1001, name: 'MODEL_PLACEHOLDER_M1' }, - { no: 1002, name: 'MODEL_PLACEHOLDER_M2' }, - { no: 1003, name: 'MODEL_PLACEHOLDER_M3' }, - { no: 1004, name: 'MODEL_PLACEHOLDER_M4' }, - { no: 1005, name: 'MODEL_PLACEHOLDER_M5' }, - { no: 1006, name: 'MODEL_PLACEHOLDER_M6' }, - { no: 1007, name: 'MODEL_PLACEHOLDER_M7' }, - { no: 1008, name: 'MODEL_PLACEHOLDER_M8' }, - { no: 1009, name: 'MODEL_PLACEHOLDER_M9' }, - { no: 1010, name: 'MODEL_PLACEHOLDER_M10' }, - { no: 1011, name: 'MODEL_PLACEHOLDER_M11' }, - { no: 1012, name: 'MODEL_PLACEHOLDER_M12' }, - { no: 1013, name: 'MODEL_PLACEHOLDER_M13' }, - { no: 1014, name: 'MODEL_PLACEHOLDER_M14' }, - { no: 1015, name: 'MODEL_PLACEHOLDER_M15' }, - { no: 1016, name: 'MODEL_PLACEHOLDER_M16' }, - { no: 1017, name: 'MODEL_PLACEHOLDER_M17' }, - { no: 1018, name: 'MODEL_PLACEHOLDER_M18' }, - { no: 1019, name: 'MODEL_PLACEHOLDER_M19' }, - { no: 1020, name: 'MODEL_PLACEHOLDER_M20' }, - { no: 1021, name: 'MODEL_PLACEHOLDER_M21' }, - { no: 1022, name: 'MODEL_PLACEHOLDER_M22' }, - { no: 1023, name: 'MODEL_PLACEHOLDER_M23' }, - { no: 1024, name: 'MODEL_PLACEHOLDER_M24' }, - { no: 1025, name: 'MODEL_PLACEHOLDER_M25' }, - { no: 1026, name: 'MODEL_PLACEHOLDER_M26' }, - { no: 1027, name: 'MODEL_PLACEHOLDER_M27' }, - { no: 1028, name: 'MODEL_PLACEHOLDER_M28' }, - { no: 1029, name: 'MODEL_PLACEHOLDER_M29' }, - { no: 1030, name: 'MODEL_PLACEHOLDER_M30' }, - { no: 1031, name: 'MODEL_PLACEHOLDER_M31' }, - { no: 1032, name: 'MODEL_PLACEHOLDER_M32' }, - { no: 1033, name: 'MODEL_PLACEHOLDER_M33' }, - { no: 1034, name: 'MODEL_PLACEHOLDER_M34' }, - { no: 1035, name: 'MODEL_PLACEHOLDER_M35' }, - { no: 1036, name: 'MODEL_PLACEHOLDER_M36' }, - { no: 1037, name: 'MODEL_PLACEHOLDER_M37' }, - { no: 1038, name: 'MODEL_PLACEHOLDER_M38' }, - { no: 1039, name: 'MODEL_PLACEHOLDER_M39' }, - { no: 1040, name: 'MODEL_PLACEHOLDER_M40' }, - { no: 1041, name: 'MODEL_PLACEHOLDER_M41' }, - { no: 1042, name: 'MODEL_PLACEHOLDER_M42' }, - { no: 1043, name: 'MODEL_PLACEHOLDER_M43' }, - { no: 1044, name: 'MODEL_PLACEHOLDER_M44' }, - { no: 1045, name: 'MODEL_PLACEHOLDER_M45' }, - { no: 1046, name: 'MODEL_PLACEHOLDER_M46' }, - { no: 1047, name: 'MODEL_PLACEHOLDER_M47' }, - { no: 1048, name: 'MODEL_PLACEHOLDER_M48' }, - { no: 1049, name: 'MODEL_PLACEHOLDER_M49' }, - { no: 1050, name: 'MODEL_PLACEHOLDER_M50' }, +proto3.util.setEnumType(Model, "exa.codeium_common_pb.Model", [ + { no: 0, name: "MODEL_UNSPECIFIED" }, + { no: 235, name: "MODEL_CHAT_20706" }, + { no: 269, name: "MODEL_CHAT_23310" }, + { no: 312, name: "MODEL_GOOGLE_GEMINI_2_5_FLASH" }, + { no: 313, name: "MODEL_GOOGLE_GEMINI_2_5_FLASH_THINKING" }, + { no: 329, name: "MODEL_GOOGLE_GEMINI_2_5_FLASH_THINKING_TOOLS" }, + { no: 330, name: "MODEL_GOOGLE_GEMINI_2_5_FLASH_LITE" }, + { no: 246, name: "MODEL_GOOGLE_GEMINI_2_5_PRO" }, + { no: 331, name: "MODEL_GOOGLE_GEMINI_2_5_PRO_EVAL" }, + { no: 327, name: "MODEL_GOOGLE_GEMINI_FOR_GOOGLE_2_5_PRO" }, + { no: 328, name: "MODEL_GOOGLE_GEMINI_NEMOSREEF" }, + { no: 332, name: "MODEL_GOOGLE_GEMINI_2_5_FLASH_IMAGE_PREVIEW" }, + { no: 335, name: "MODEL_GOOGLE_GEMINI_COMPUTER_USE_EXPERIMENTAL" }, + { no: 339, name: "MODEL_GOOGLE_GEMINI_RAINSONG" }, + { no: 346, name: "MODEL_GOOGLE_JARVIS_PROXY" }, + { no: 349, name: "MODEL_GOOGLE_JARVIS_V4S" }, + { no: 323, name: "MODEL_GOOGLE_GEMINI_TRAINING_POLICY" }, + { no: 326, name: "MODEL_GOOGLE_GEMINI_INTERNAL_BYOM" }, + { no: 344, name: "MODEL_GOOGLE_GEMINI_INTERNAL_TAB_FLASH_LITE" }, + { no: 345, name: "MODEL_GOOGLE_GEMINI_INTERNAL_TAB_JUMP_FLASH_LITE" }, + { no: 336, name: "MODEL_GOOGLE_GEMINI_HORIZONDAWN" }, + { no: 337, name: "MODEL_GOOGLE_GEMINI_PUREPRISM" }, + { no: 338, name: "MODEL_GOOGLE_GEMINI_GENTLEISLAND" }, + { no: 343, name: "MODEL_GOOGLE_GEMINI_ORIONFIRE" }, + { no: 347, name: "MODEL_GOOGLE_GEMINI_COSMICFORGE" }, + { no: 348, name: "MODEL_GOOGLE_GEMINI_RIFTRUNNER" }, + { no: 352, name: "MODEL_GOOGLE_GEMINI_RIFTRUNNER_THINKING_LOW" }, + { no: 353, name: "MODEL_GOOGLE_GEMINI_RIFTRUNNER_THINKING_HIGH" }, + { no: 350, name: "MODEL_GOOGLE_GEMINI_INFINITYJET" }, + { no: 351, name: "MODEL_GOOGLE_GEMINI_INFINITYBLOOM" }, + { no: 281, name: "MODEL_CLAUDE_4_SONNET" }, + { no: 282, name: "MODEL_CLAUDE_4_SONNET_THINKING" }, + { no: 290, name: "MODEL_CLAUDE_4_OPUS" }, + { no: 291, name: "MODEL_CLAUDE_4_OPUS_THINKING" }, + { no: 333, name: "MODEL_CLAUDE_4_5_SONNET" }, + { no: 334, name: "MODEL_CLAUDE_4_5_SONNET_THINKING" }, + { no: 340, name: "MODEL_CLAUDE_4_5_HAIKU" }, + { no: 341, name: "MODEL_CLAUDE_4_5_HAIKU_THINKING" }, + { no: 342, name: "MODEL_OPENAI_GPT_OSS_120B_MEDIUM" }, + { no: 1e3, name: "MODEL_PLACEHOLDER_M0" }, + { no: 1001, name: "MODEL_PLACEHOLDER_M1" }, + { no: 1002, name: "MODEL_PLACEHOLDER_M2" }, + { no: 1003, name: "MODEL_PLACEHOLDER_M3" }, + { no: 1004, name: "MODEL_PLACEHOLDER_M4" }, + { no: 1005, name: "MODEL_PLACEHOLDER_M5" }, + { no: 1006, name: "MODEL_PLACEHOLDER_M6" }, + { no: 1007, name: "MODEL_PLACEHOLDER_M7" }, + { no: 1008, name: "MODEL_PLACEHOLDER_M8" }, + { no: 1009, name: "MODEL_PLACEHOLDER_M9" }, + { no: 1010, name: "MODEL_PLACEHOLDER_M10" }, + { no: 1011, name: "MODEL_PLACEHOLDER_M11" }, + { no: 1012, name: "MODEL_PLACEHOLDER_M12" }, + { no: 1013, name: "MODEL_PLACEHOLDER_M13" }, + { no: 1014, name: "MODEL_PLACEHOLDER_M14" }, + { no: 1015, name: "MODEL_PLACEHOLDER_M15" }, + { no: 1016, name: "MODEL_PLACEHOLDER_M16" }, + { no: 1017, name: "MODEL_PLACEHOLDER_M17" }, + { no: 1018, name: "MODEL_PLACEHOLDER_M18" }, + { no: 1019, name: "MODEL_PLACEHOLDER_M19" }, + { no: 1020, name: "MODEL_PLACEHOLDER_M20" }, + { no: 1021, name: "MODEL_PLACEHOLDER_M21" }, + { no: 1022, name: "MODEL_PLACEHOLDER_M22" }, + { no: 1023, name: "MODEL_PLACEHOLDER_M23" }, + { no: 1024, name: "MODEL_PLACEHOLDER_M24" }, + { no: 1025, name: "MODEL_PLACEHOLDER_M25" }, + { no: 1026, name: "MODEL_PLACEHOLDER_M26" }, + { no: 1027, name: "MODEL_PLACEHOLDER_M27" }, + { no: 1028, name: "MODEL_PLACEHOLDER_M28" }, + { no: 1029, name: "MODEL_PLACEHOLDER_M29" }, + { no: 1030, name: "MODEL_PLACEHOLDER_M30" }, + { no: 1031, name: "MODEL_PLACEHOLDER_M31" }, + { no: 1032, name: "MODEL_PLACEHOLDER_M32" }, + { no: 1033, name: "MODEL_PLACEHOLDER_M33" }, + { no: 1034, name: "MODEL_PLACEHOLDER_M34" }, + { no: 1035, name: "MODEL_PLACEHOLDER_M35" }, + { no: 1036, name: "MODEL_PLACEHOLDER_M36" }, + { no: 1037, name: "MODEL_PLACEHOLDER_M37" }, + { no: 1038, name: "MODEL_PLACEHOLDER_M38" }, + { no: 1039, name: "MODEL_PLACEHOLDER_M39" }, + { no: 1040, name: "MODEL_PLACEHOLDER_M40" }, + { no: 1041, name: "MODEL_PLACEHOLDER_M41" }, + { no: 1042, name: "MODEL_PLACEHOLDER_M42" }, + { no: 1043, name: "MODEL_PLACEHOLDER_M43" }, + { no: 1044, name: "MODEL_PLACEHOLDER_M44" }, + { no: 1045, name: "MODEL_PLACEHOLDER_M45" }, + { no: 1046, name: "MODEL_PLACEHOLDER_M46" }, + { no: 1047, name: "MODEL_PLACEHOLDER_M47" }, + { no: 1048, name: "MODEL_PLACEHOLDER_M48" }, + { no: 1049, name: "MODEL_PLACEHOLDER_M49" }, + { no: 1050, name: "MODEL_PLACEHOLDER_M50" } ]); var PromptElementExclusionReason; -(function (PromptElementExclusionReason2) { - PromptElementExclusionReason2[ - (PromptElementExclusionReason2['EXCLUSION_UNSPECIFIED'] = 0) - ] = 'EXCLUSION_UNSPECIFIED'; - PromptElementExclusionReason2[ - (PromptElementExclusionReason2['EXCLUSION_ELEMENT_KIND_DISABLED'] = 1) - ] = 'EXCLUSION_ELEMENT_KIND_DISABLED'; - PromptElementExclusionReason2[ - (PromptElementExclusionReason2['EXCLUSION_ELEMENT_MISSING_DEPENDENCY'] = 2) - ] = 'EXCLUSION_ELEMENT_MISSING_DEPENDENCY'; - PromptElementExclusionReason2[ - (PromptElementExclusionReason2['EXCLUSION_TOKEN_BUDGET'] = 3) - ] = 'EXCLUSION_TOKEN_BUDGET'; - PromptElementExclusionReason2[ - (PromptElementExclusionReason2['EXCLUSION_ACTIVE_SOURCE_OVERLAP'] = 4) - ] = 'EXCLUSION_ACTIVE_SOURCE_OVERLAP'; +(function(PromptElementExclusionReason2) { + PromptElementExclusionReason2[PromptElementExclusionReason2["EXCLUSION_UNSPECIFIED"] = 0] = "EXCLUSION_UNSPECIFIED"; + PromptElementExclusionReason2[PromptElementExclusionReason2["EXCLUSION_ELEMENT_KIND_DISABLED"] = 1] = "EXCLUSION_ELEMENT_KIND_DISABLED"; + PromptElementExclusionReason2[PromptElementExclusionReason2["EXCLUSION_ELEMENT_MISSING_DEPENDENCY"] = 2] = "EXCLUSION_ELEMENT_MISSING_DEPENDENCY"; + PromptElementExclusionReason2[PromptElementExclusionReason2["EXCLUSION_TOKEN_BUDGET"] = 3] = "EXCLUSION_TOKEN_BUDGET"; + PromptElementExclusionReason2[PromptElementExclusionReason2["EXCLUSION_ACTIVE_SOURCE_OVERLAP"] = 4] = "EXCLUSION_ACTIVE_SOURCE_OVERLAP"; })(PromptElementExclusionReason || (PromptElementExclusionReason = {})); -proto3.util.setEnumType( - PromptElementExclusionReason, - 'exa.codeium_common_pb.PromptElementExclusionReason', - [ - { no: 0, name: 'EXCLUSION_UNSPECIFIED' }, - { no: 1, name: 'EXCLUSION_ELEMENT_KIND_DISABLED' }, - { no: 2, name: 'EXCLUSION_ELEMENT_MISSING_DEPENDENCY' }, - { no: 3, name: 'EXCLUSION_TOKEN_BUDGET' }, - { no: 4, name: 'EXCLUSION_ACTIVE_SOURCE_OVERLAP' }, - ], -); +proto3.util.setEnumType(PromptElementExclusionReason, "exa.codeium_common_pb.PromptElementExclusionReason", [ + { no: 0, name: "EXCLUSION_UNSPECIFIED" }, + { no: 1, name: "EXCLUSION_ELEMENT_KIND_DISABLED" }, + { no: 2, name: "EXCLUSION_ELEMENT_MISSING_DEPENDENCY" }, + { no: 3, name: "EXCLUSION_TOKEN_BUDGET" }, + { no: 4, name: "EXCLUSION_ACTIVE_SOURCE_OVERLAP" } +]); var StopReason; -(function (StopReason2) { - StopReason2[(StopReason2['UNSPECIFIED'] = 0)] = 'UNSPECIFIED'; - StopReason2[(StopReason2['INCOMPLETE'] = 1)] = 'INCOMPLETE'; - StopReason2[(StopReason2['STOP_PATTERN'] = 2)] = 'STOP_PATTERN'; - StopReason2[(StopReason2['MAX_TOKENS'] = 3)] = 'MAX_TOKENS'; - StopReason2[(StopReason2['FUNCTION_CALL'] = 10)] = 'FUNCTION_CALL'; - StopReason2[(StopReason2['CONTENT_FILTER'] = 11)] = 'CONTENT_FILTER'; - StopReason2[(StopReason2['NON_INSERTION'] = 12)] = 'NON_INSERTION'; - StopReason2[(StopReason2['ERROR'] = 13)] = 'ERROR'; - StopReason2[(StopReason2['IMPROPER_FORMAT'] = 14)] = 'IMPROPER_FORMAT'; - StopReason2[(StopReason2['OTHER'] = 15)] = 'OTHER'; - StopReason2[(StopReason2['CLIENT_CANCELED'] = 16)] = 'CLIENT_CANCELED'; - StopReason2[(StopReason2['CLIENT_TOOL_PARSE_ERROR'] = 17)] = - 'CLIENT_TOOL_PARSE_ERROR'; - StopReason2[(StopReason2['CLIENT_STREAM_ERROR'] = 18)] = - 'CLIENT_STREAM_ERROR'; - StopReason2[(StopReason2['CLIENT_LOOPING'] = 19)] = 'CLIENT_LOOPING'; - StopReason2[(StopReason2['CLIENT_INVALID_MESSAGE_ORDER'] = 20)] = - 'CLIENT_INVALID_MESSAGE_ORDER'; - StopReason2[(StopReason2['MIN_LOG_PROB'] = 4)] = 'MIN_LOG_PROB'; - StopReason2[(StopReason2['MAX_NEWLINES'] = 5)] = 'MAX_NEWLINES'; - StopReason2[(StopReason2['EXIT_SCOPE'] = 6)] = 'EXIT_SCOPE'; - StopReason2[(StopReason2['NONFINITE_LOGIT_OR_PROB'] = 7)] = - 'NONFINITE_LOGIT_OR_PROB'; - StopReason2[(StopReason2['FIRST_NON_WHITESPACE_LINE'] = 8)] = - 'FIRST_NON_WHITESPACE_LINE'; - StopReason2[(StopReason2['PARTIAL'] = 9)] = 'PARTIAL'; +(function(StopReason2) { + StopReason2[StopReason2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + StopReason2[StopReason2["INCOMPLETE"] = 1] = "INCOMPLETE"; + StopReason2[StopReason2["STOP_PATTERN"] = 2] = "STOP_PATTERN"; + StopReason2[StopReason2["MAX_TOKENS"] = 3] = "MAX_TOKENS"; + StopReason2[StopReason2["FUNCTION_CALL"] = 10] = "FUNCTION_CALL"; + StopReason2[StopReason2["CONTENT_FILTER"] = 11] = "CONTENT_FILTER"; + StopReason2[StopReason2["NON_INSERTION"] = 12] = "NON_INSERTION"; + StopReason2[StopReason2["ERROR"] = 13] = "ERROR"; + StopReason2[StopReason2["IMPROPER_FORMAT"] = 14] = "IMPROPER_FORMAT"; + StopReason2[StopReason2["OTHER"] = 15] = "OTHER"; + StopReason2[StopReason2["CLIENT_CANCELED"] = 16] = "CLIENT_CANCELED"; + StopReason2[StopReason2["CLIENT_TOOL_PARSE_ERROR"] = 17] = "CLIENT_TOOL_PARSE_ERROR"; + StopReason2[StopReason2["CLIENT_STREAM_ERROR"] = 18] = "CLIENT_STREAM_ERROR"; + StopReason2[StopReason2["CLIENT_LOOPING"] = 19] = "CLIENT_LOOPING"; + StopReason2[StopReason2["CLIENT_INVALID_MESSAGE_ORDER"] = 20] = "CLIENT_INVALID_MESSAGE_ORDER"; + StopReason2[StopReason2["MIN_LOG_PROB"] = 4] = "MIN_LOG_PROB"; + StopReason2[StopReason2["MAX_NEWLINES"] = 5] = "MAX_NEWLINES"; + StopReason2[StopReason2["EXIT_SCOPE"] = 6] = "EXIT_SCOPE"; + StopReason2[StopReason2["NONFINITE_LOGIT_OR_PROB"] = 7] = "NONFINITE_LOGIT_OR_PROB"; + StopReason2[StopReason2["FIRST_NON_WHITESPACE_LINE"] = 8] = "FIRST_NON_WHITESPACE_LINE"; + StopReason2[StopReason2["PARTIAL"] = 9] = "PARTIAL"; })(StopReason || (StopReason = {})); -proto3.util.setEnumType(StopReason, 'exa.codeium_common_pb.StopReason', [ - { no: 0, name: 'STOP_REASON_UNSPECIFIED' }, - { no: 1, name: 'STOP_REASON_INCOMPLETE' }, - { no: 2, name: 'STOP_REASON_STOP_PATTERN' }, - { no: 3, name: 'STOP_REASON_MAX_TOKENS' }, - { no: 10, name: 'STOP_REASON_FUNCTION_CALL' }, - { no: 11, name: 'STOP_REASON_CONTENT_FILTER' }, - { no: 12, name: 'STOP_REASON_NON_INSERTION' }, - { no: 13, name: 'STOP_REASON_ERROR' }, - { no: 14, name: 'STOP_REASON_IMPROPER_FORMAT' }, - { no: 15, name: 'STOP_REASON_OTHER' }, - { no: 16, name: 'STOP_REASON_CLIENT_CANCELED' }, - { no: 17, name: 'STOP_REASON_CLIENT_TOOL_PARSE_ERROR' }, - { no: 18, name: 'STOP_REASON_CLIENT_STREAM_ERROR' }, - { no: 19, name: 'STOP_REASON_CLIENT_LOOPING' }, - { no: 20, name: 'STOP_REASON_CLIENT_INVALID_MESSAGE_ORDER' }, - { no: 4, name: 'STOP_REASON_MIN_LOG_PROB' }, - { no: 5, name: 'STOP_REASON_MAX_NEWLINES' }, - { no: 6, name: 'STOP_REASON_EXIT_SCOPE' }, - { no: 7, name: 'STOP_REASON_NONFINITE_LOGIT_OR_PROB' }, - { no: 8, name: 'STOP_REASON_FIRST_NON_WHITESPACE_LINE' }, - { no: 9, name: 'STOP_REASON_PARTIAL' }, +proto3.util.setEnumType(StopReason, "exa.codeium_common_pb.StopReason", [ + { no: 0, name: "STOP_REASON_UNSPECIFIED" }, + { no: 1, name: "STOP_REASON_INCOMPLETE" }, + { no: 2, name: "STOP_REASON_STOP_PATTERN" }, + { no: 3, name: "STOP_REASON_MAX_TOKENS" }, + { no: 10, name: "STOP_REASON_FUNCTION_CALL" }, + { no: 11, name: "STOP_REASON_CONTENT_FILTER" }, + { no: 12, name: "STOP_REASON_NON_INSERTION" }, + { no: 13, name: "STOP_REASON_ERROR" }, + { no: 14, name: "STOP_REASON_IMPROPER_FORMAT" }, + { no: 15, name: "STOP_REASON_OTHER" }, + { no: 16, name: "STOP_REASON_CLIENT_CANCELED" }, + { no: 17, name: "STOP_REASON_CLIENT_TOOL_PARSE_ERROR" }, + { no: 18, name: "STOP_REASON_CLIENT_STREAM_ERROR" }, + { no: 19, name: "STOP_REASON_CLIENT_LOOPING" }, + { no: 20, name: "STOP_REASON_CLIENT_INVALID_MESSAGE_ORDER" }, + { no: 4, name: "STOP_REASON_MIN_LOG_PROB" }, + { no: 5, name: "STOP_REASON_MAX_NEWLINES" }, + { no: 6, name: "STOP_REASON_EXIT_SCOPE" }, + { no: 7, name: "STOP_REASON_NONFINITE_LOGIT_OR_PROB" }, + { no: 8, name: "STOP_REASON_FIRST_NON_WHITESPACE_LINE" }, + { no: 9, name: "STOP_REASON_PARTIAL" } ]); var FilterReason; -(function (FilterReason2) { - FilterReason2[(FilterReason2['NONE'] = 0)] = 'NONE'; - FilterReason2[(FilterReason2['INCOMPLETE'] = 1)] = 'INCOMPLETE'; - FilterReason2[(FilterReason2['EMPTY'] = 2)] = 'EMPTY'; - FilterReason2[(FilterReason2['REPETITIVE'] = 3)] = 'REPETITIVE'; - FilterReason2[(FilterReason2['DUPLICATE'] = 4)] = 'DUPLICATE'; - FilterReason2[(FilterReason2['LONG_LINE'] = 5)] = 'LONG_LINE'; - FilterReason2[(FilterReason2['COMPLETIONS_CUTOFF'] = 6)] = - 'COMPLETIONS_CUTOFF'; - FilterReason2[(FilterReason2['ATTRIBUTION'] = 7)] = 'ATTRIBUTION'; - FilterReason2[(FilterReason2['NON_MATCHING'] = 8)] = 'NON_MATCHING'; - FilterReason2[(FilterReason2['NON_INSERTION'] = 9)] = 'NON_INSERTION'; +(function(FilterReason2) { + FilterReason2[FilterReason2["NONE"] = 0] = "NONE"; + FilterReason2[FilterReason2["INCOMPLETE"] = 1] = "INCOMPLETE"; + FilterReason2[FilterReason2["EMPTY"] = 2] = "EMPTY"; + FilterReason2[FilterReason2["REPETITIVE"] = 3] = "REPETITIVE"; + FilterReason2[FilterReason2["DUPLICATE"] = 4] = "DUPLICATE"; + FilterReason2[FilterReason2["LONG_LINE"] = 5] = "LONG_LINE"; + FilterReason2[FilterReason2["COMPLETIONS_CUTOFF"] = 6] = "COMPLETIONS_CUTOFF"; + FilterReason2[FilterReason2["ATTRIBUTION"] = 7] = "ATTRIBUTION"; + FilterReason2[FilterReason2["NON_MATCHING"] = 8] = "NON_MATCHING"; + FilterReason2[FilterReason2["NON_INSERTION"] = 9] = "NON_INSERTION"; })(FilterReason || (FilterReason = {})); -proto3.util.setEnumType(FilterReason, 'exa.codeium_common_pb.FilterReason', [ - { no: 0, name: 'FILTER_REASON_NONE' }, - { no: 1, name: 'FILTER_REASON_INCOMPLETE' }, - { no: 2, name: 'FILTER_REASON_EMPTY' }, - { no: 3, name: 'FILTER_REASON_REPETITIVE' }, - { no: 4, name: 'FILTER_REASON_DUPLICATE' }, - { no: 5, name: 'FILTER_REASON_LONG_LINE' }, - { no: 6, name: 'FILTER_REASON_COMPLETIONS_CUTOFF' }, - { no: 7, name: 'FILTER_REASON_ATTRIBUTION' }, - { no: 8, name: 'FILTER_REASON_NON_MATCHING' }, - { no: 9, name: 'FILTER_REASON_NON_INSERTION' }, +proto3.util.setEnumType(FilterReason, "exa.codeium_common_pb.FilterReason", [ + { no: 0, name: "FILTER_REASON_NONE" }, + { no: 1, name: "FILTER_REASON_INCOMPLETE" }, + { no: 2, name: "FILTER_REASON_EMPTY" }, + { no: 3, name: "FILTER_REASON_REPETITIVE" }, + { no: 4, name: "FILTER_REASON_DUPLICATE" }, + { no: 5, name: "FILTER_REASON_LONG_LINE" }, + { no: 6, name: "FILTER_REASON_COMPLETIONS_CUTOFF" }, + { no: 7, name: "FILTER_REASON_ATTRIBUTION" }, + { no: 8, name: "FILTER_REASON_NON_MATCHING" }, + { no: 9, name: "FILTER_REASON_NON_INSERTION" } ]); var AttributionStatus; -(function (AttributionStatus2) { - AttributionStatus2[(AttributionStatus2['UNSPECIFIED'] = 0)] = 'UNSPECIFIED'; - AttributionStatus2[(AttributionStatus2['NEW_CODE'] = 1)] = 'NEW_CODE'; - AttributionStatus2[(AttributionStatus2['NO_LICENSE'] = 2)] = 'NO_LICENSE'; - AttributionStatus2[(AttributionStatus2['NONPERMISSIVE'] = 3)] = - 'NONPERMISSIVE'; - AttributionStatus2[(AttributionStatus2['PERMISSIVE'] = 4)] = 'PERMISSIVE'; - AttributionStatus2[(AttributionStatus2['PERMISSIVE_BLOCKED'] = 5)] = - 'PERMISSIVE_BLOCKED'; +(function(AttributionStatus2) { + AttributionStatus2[AttributionStatus2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + AttributionStatus2[AttributionStatus2["NEW_CODE"] = 1] = "NEW_CODE"; + AttributionStatus2[AttributionStatus2["NO_LICENSE"] = 2] = "NO_LICENSE"; + AttributionStatus2[AttributionStatus2["NONPERMISSIVE"] = 3] = "NONPERMISSIVE"; + AttributionStatus2[AttributionStatus2["PERMISSIVE"] = 4] = "PERMISSIVE"; + AttributionStatus2[AttributionStatus2["PERMISSIVE_BLOCKED"] = 5] = "PERMISSIVE_BLOCKED"; })(AttributionStatus || (AttributionStatus = {})); -proto3.util.setEnumType( - AttributionStatus, - 'exa.codeium_common_pb.AttributionStatus', - [ - { no: 0, name: 'ATTRIBUTION_STATUS_UNSPECIFIED' }, - { no: 1, name: 'ATTRIBUTION_STATUS_NEW_CODE' }, - { no: 2, name: 'ATTRIBUTION_STATUS_NO_LICENSE' }, - { no: 3, name: 'ATTRIBUTION_STATUS_NONPERMISSIVE' }, - { no: 4, name: 'ATTRIBUTION_STATUS_PERMISSIVE' }, - { no: 5, name: 'ATTRIBUTION_STATUS_PERMISSIVE_BLOCKED' }, - ], -); +proto3.util.setEnumType(AttributionStatus, "exa.codeium_common_pb.AttributionStatus", [ + { no: 0, name: "ATTRIBUTION_STATUS_UNSPECIFIED" }, + { no: 1, name: "ATTRIBUTION_STATUS_NEW_CODE" }, + { no: 2, name: "ATTRIBUTION_STATUS_NO_LICENSE" }, + { no: 3, name: "ATTRIBUTION_STATUS_NONPERMISSIVE" }, + { no: 4, name: "ATTRIBUTION_STATUS_PERMISSIVE" }, + { no: 5, name: "ATTRIBUTION_STATUS_PERMISSIVE_BLOCKED" } +]); var EmbeddingPriority; -(function (EmbeddingPriority2) { - EmbeddingPriority2[(EmbeddingPriority2['UNSPECIFIED'] = 0)] = 'UNSPECIFIED'; - EmbeddingPriority2[(EmbeddingPriority2['HIGH'] = 1)] = 'HIGH'; - EmbeddingPriority2[(EmbeddingPriority2['LOW'] = 2)] = 'LOW'; +(function(EmbeddingPriority2) { + EmbeddingPriority2[EmbeddingPriority2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + EmbeddingPriority2[EmbeddingPriority2["HIGH"] = 1] = "HIGH"; + EmbeddingPriority2[EmbeddingPriority2["LOW"] = 2] = "LOW"; })(EmbeddingPriority || (EmbeddingPriority = {})); -proto3.util.setEnumType( - EmbeddingPriority, - 'exa.codeium_common_pb.EmbeddingPriority', - [ - { no: 0, name: 'EMBEDDING_PRIORITY_UNSPECIFIED' }, - { no: 1, name: 'EMBEDDING_PRIORITY_HIGH' }, - { no: 2, name: 'EMBEDDING_PRIORITY_LOW' }, - ], -); +proto3.util.setEnumType(EmbeddingPriority, "exa.codeium_common_pb.EmbeddingPriority", [ + { no: 0, name: "EMBEDDING_PRIORITY_UNSPECIFIED" }, + { no: 1, name: "EMBEDDING_PRIORITY_HIGH" }, + { no: 2, name: "EMBEDDING_PRIORITY_LOW" } +]); var EmbeddingPrefix; -(function (EmbeddingPrefix2) { - EmbeddingPrefix2[(EmbeddingPrefix2['UNSPECIFIED'] = 0)] = 'UNSPECIFIED'; - EmbeddingPrefix2[(EmbeddingPrefix2['NOMIC_DOCUMENT'] = 1)] = 'NOMIC_DOCUMENT'; - EmbeddingPrefix2[(EmbeddingPrefix2['NOMIC_SEARCH'] = 2)] = 'NOMIC_SEARCH'; - EmbeddingPrefix2[(EmbeddingPrefix2['NOMIC_CLASSIFICATION'] = 3)] = - 'NOMIC_CLASSIFICATION'; - EmbeddingPrefix2[(EmbeddingPrefix2['NOMIC_CLUSTERING'] = 4)] = - 'NOMIC_CLUSTERING'; +(function(EmbeddingPrefix2) { + EmbeddingPrefix2[EmbeddingPrefix2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + EmbeddingPrefix2[EmbeddingPrefix2["NOMIC_DOCUMENT"] = 1] = "NOMIC_DOCUMENT"; + EmbeddingPrefix2[EmbeddingPrefix2["NOMIC_SEARCH"] = 2] = "NOMIC_SEARCH"; + EmbeddingPrefix2[EmbeddingPrefix2["NOMIC_CLASSIFICATION"] = 3] = "NOMIC_CLASSIFICATION"; + EmbeddingPrefix2[EmbeddingPrefix2["NOMIC_CLUSTERING"] = 4] = "NOMIC_CLUSTERING"; })(EmbeddingPrefix || (EmbeddingPrefix = {})); -proto3.util.setEnumType( - EmbeddingPrefix, - 'exa.codeium_common_pb.EmbeddingPrefix', - [ - { no: 0, name: 'EMBEDDING_PREFIX_UNSPECIFIED' }, - { no: 1, name: 'EMBEDDING_PREFIX_NOMIC_DOCUMENT' }, - { no: 2, name: 'EMBEDDING_PREFIX_NOMIC_SEARCH' }, - { no: 3, name: 'EMBEDDING_PREFIX_NOMIC_CLASSIFICATION' }, - { no: 4, name: 'EMBEDDING_PREFIX_NOMIC_CLUSTERING' }, - ], -); +proto3.util.setEnumType(EmbeddingPrefix, "exa.codeium_common_pb.EmbeddingPrefix", [ + { no: 0, name: "EMBEDDING_PREFIX_UNSPECIFIED" }, + { no: 1, name: "EMBEDDING_PREFIX_NOMIC_DOCUMENT" }, + { no: 2, name: "EMBEDDING_PREFIX_NOMIC_SEARCH" }, + { no: 3, name: "EMBEDDING_PREFIX_NOMIC_CLASSIFICATION" }, + { no: 4, name: "EMBEDDING_PREFIX_NOMIC_CLUSTERING" } +]); var EmbeddingSource; -(function (EmbeddingSource2) { - EmbeddingSource2[(EmbeddingSource2['UNSPECIFIED'] = 0)] = 'UNSPECIFIED'; - EmbeddingSource2[(EmbeddingSource2['CODE_CONTEXT_ITEM'] = 1)] = - 'CODE_CONTEXT_ITEM'; - EmbeddingSource2[(EmbeddingSource2['COMMIT_INTENT'] = 2)] = 'COMMIT_INTENT'; +(function(EmbeddingSource2) { + EmbeddingSource2[EmbeddingSource2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + EmbeddingSource2[EmbeddingSource2["CODE_CONTEXT_ITEM"] = 1] = "CODE_CONTEXT_ITEM"; + EmbeddingSource2[EmbeddingSource2["COMMIT_INTENT"] = 2] = "COMMIT_INTENT"; })(EmbeddingSource || (EmbeddingSource = {})); -proto3.util.setEnumType( - EmbeddingSource, - 'exa.codeium_common_pb.EmbeddingSource', - [ - { no: 0, name: 'EMBEDDING_SOURCE_UNSPECIFIED' }, - { no: 1, name: 'EMBEDDING_SOURCE_CODE_CONTEXT_ITEM' }, - { no: 2, name: 'EMBEDDING_SOURCE_COMMIT_INTENT' }, - ], -); +proto3.util.setEnumType(EmbeddingSource, "exa.codeium_common_pb.EmbeddingSource", [ + { no: 0, name: "EMBEDDING_SOURCE_UNSPECIFIED" }, + { no: 1, name: "EMBEDDING_SOURCE_CODE_CONTEXT_ITEM" }, + { no: 2, name: "EMBEDDING_SOURCE_COMMIT_INTENT" } +]); var EventType; -(function (EventType2) { - EventType2[(EventType2['UNSPECIFIED'] = 0)] = 'UNSPECIFIED'; - EventType2[(EventType2['ENABLE_CODEIUM'] = 1)] = 'ENABLE_CODEIUM'; - EventType2[(EventType2['DISABLE_CODEIUM'] = 2)] = 'DISABLE_CODEIUM'; - EventType2[(EventType2['SHOW_PREVIOUS_COMPLETION'] = 3)] = - 'SHOW_PREVIOUS_COMPLETION'; - EventType2[(EventType2['SHOW_NEXT_COMPLETION'] = 4)] = 'SHOW_NEXT_COMPLETION'; - EventType2[(EventType2['COPILOT_STATUS'] = 5)] = 'COPILOT_STATUS'; - EventType2[(EventType2['COMPLETION_SUPPRESSED'] = 6)] = - 'COMPLETION_SUPPRESSED'; - EventType2[(EventType2['MEMORY_STATS'] = 8)] = 'MEMORY_STATS'; - EventType2[(EventType2['LOCAL_CONTEXT_RELEVANCE_CHECK'] = 9)] = - 'LOCAL_CONTEXT_RELEVANCE_CHECK'; - EventType2[(EventType2['ACTIVE_EDITOR_CHANGED'] = 10)] = - 'ACTIVE_EDITOR_CHANGED'; - EventType2[(EventType2['SHOW_PREVIOUS_CORTEX_STEP'] = 11)] = - 'SHOW_PREVIOUS_CORTEX_STEP'; - EventType2[(EventType2['SHOW_NEXT_CORTEX_STEP'] = 12)] = - 'SHOW_NEXT_CORTEX_STEP'; - EventType2[(EventType2['INDEXER_STATS'] = 13)] = 'INDEXER_STATS'; +(function(EventType2) { + EventType2[EventType2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + EventType2[EventType2["ENABLE_CODEIUM"] = 1] = "ENABLE_CODEIUM"; + EventType2[EventType2["DISABLE_CODEIUM"] = 2] = "DISABLE_CODEIUM"; + EventType2[EventType2["SHOW_PREVIOUS_COMPLETION"] = 3] = "SHOW_PREVIOUS_COMPLETION"; + EventType2[EventType2["SHOW_NEXT_COMPLETION"] = 4] = "SHOW_NEXT_COMPLETION"; + EventType2[EventType2["COPILOT_STATUS"] = 5] = "COPILOT_STATUS"; + EventType2[EventType2["COMPLETION_SUPPRESSED"] = 6] = "COMPLETION_SUPPRESSED"; + EventType2[EventType2["MEMORY_STATS"] = 8] = "MEMORY_STATS"; + EventType2[EventType2["LOCAL_CONTEXT_RELEVANCE_CHECK"] = 9] = "LOCAL_CONTEXT_RELEVANCE_CHECK"; + EventType2[EventType2["ACTIVE_EDITOR_CHANGED"] = 10] = "ACTIVE_EDITOR_CHANGED"; + EventType2[EventType2["SHOW_PREVIOUS_CORTEX_STEP"] = 11] = "SHOW_PREVIOUS_CORTEX_STEP"; + EventType2[EventType2["SHOW_NEXT_CORTEX_STEP"] = 12] = "SHOW_NEXT_CORTEX_STEP"; + EventType2[EventType2["INDEXER_STATS"] = 13] = "INDEXER_STATS"; })(EventType || (EventType = {})); -proto3.util.setEnumType(EventType, 'exa.codeium_common_pb.EventType', [ - { no: 0, name: 'EVENT_TYPE_UNSPECIFIED' }, - { no: 1, name: 'EVENT_TYPE_ENABLE_CODEIUM' }, - { no: 2, name: 'EVENT_TYPE_DISABLE_CODEIUM' }, - { no: 3, name: 'EVENT_TYPE_SHOW_PREVIOUS_COMPLETION' }, - { no: 4, name: 'EVENT_TYPE_SHOW_NEXT_COMPLETION' }, - { no: 5, name: 'EVENT_TYPE_COPILOT_STATUS' }, - { no: 6, name: 'EVENT_TYPE_COMPLETION_SUPPRESSED' }, - { no: 8, name: 'EVENT_TYPE_MEMORY_STATS' }, - { no: 9, name: 'EVENT_TYPE_LOCAL_CONTEXT_RELEVANCE_CHECK' }, - { no: 10, name: 'EVENT_TYPE_ACTIVE_EDITOR_CHANGED' }, - { no: 11, name: 'EVENT_TYPE_SHOW_PREVIOUS_CORTEX_STEP' }, - { no: 12, name: 'EVENT_TYPE_SHOW_NEXT_CORTEX_STEP' }, - { no: 13, name: 'EVENT_TYPE_INDEXER_STATS' }, +proto3.util.setEnumType(EventType, "exa.codeium_common_pb.EventType", [ + { no: 0, name: "EVENT_TYPE_UNSPECIFIED" }, + { no: 1, name: "EVENT_TYPE_ENABLE_CODEIUM" }, + { no: 2, name: "EVENT_TYPE_DISABLE_CODEIUM" }, + { no: 3, name: "EVENT_TYPE_SHOW_PREVIOUS_COMPLETION" }, + { no: 4, name: "EVENT_TYPE_SHOW_NEXT_COMPLETION" }, + { no: 5, name: "EVENT_TYPE_COPILOT_STATUS" }, + { no: 6, name: "EVENT_TYPE_COMPLETION_SUPPRESSED" }, + { no: 8, name: "EVENT_TYPE_MEMORY_STATS" }, + { no: 9, name: "EVENT_TYPE_LOCAL_CONTEXT_RELEVANCE_CHECK" }, + { no: 10, name: "EVENT_TYPE_ACTIVE_EDITOR_CHANGED" }, + { no: 11, name: "EVENT_TYPE_SHOW_PREVIOUS_CORTEX_STEP" }, + { no: 12, name: "EVENT_TYPE_SHOW_NEXT_CORTEX_STEP" }, + { no: 13, name: "EVENT_TYPE_INDEXER_STATS" } ]); var SearchResultType; -(function (SearchResultType2) { - SearchResultType2[(SearchResultType2['UNSPECIFIED'] = 0)] = 'UNSPECIFIED'; - SearchResultType2[(SearchResultType2['CLUSTER'] = 1)] = 'CLUSTER'; - SearchResultType2[(SearchResultType2['EXACT'] = 2)] = 'EXACT'; +(function(SearchResultType2) { + SearchResultType2[SearchResultType2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + SearchResultType2[SearchResultType2["CLUSTER"] = 1] = "CLUSTER"; + SearchResultType2[SearchResultType2["EXACT"] = 2] = "EXACT"; })(SearchResultType || (SearchResultType = {})); -proto3.util.setEnumType( - SearchResultType, - 'exa.codeium_common_pb.SearchResultType', - [ - { no: 0, name: 'SEARCH_RESULT_TYPE_UNSPECIFIED' }, - { no: 1, name: 'SEARCH_RESULT_TYPE_CLUSTER' }, - { no: 2, name: 'SEARCH_RESULT_TYPE_EXACT' }, - ], -); +proto3.util.setEnumType(SearchResultType, "exa.codeium_common_pb.SearchResultType", [ + { no: 0, name: "SEARCH_RESULT_TYPE_UNSPECIFIED" }, + { no: 1, name: "SEARCH_RESULT_TYPE_CLUSTER" }, + { no: 2, name: "SEARCH_RESULT_TYPE_EXACT" } +]); var EmbedType; -(function (EmbedType2) { - EmbedType2[(EmbedType2['UNSPECIFIED'] = 0)] = 'UNSPECIFIED'; - EmbedType2[(EmbedType2['RAW_SOURCE'] = 1)] = 'RAW_SOURCE'; - EmbedType2[(EmbedType2['DOCSTRING'] = 2)] = 'DOCSTRING'; - EmbedType2[(EmbedType2['FUNCTION'] = 3)] = 'FUNCTION'; - EmbedType2[(EmbedType2['NODEPATH'] = 4)] = 'NODEPATH'; - EmbedType2[(EmbedType2['DECLARATION'] = 5)] = 'DECLARATION'; - EmbedType2[(EmbedType2['NAIVE_CHUNK'] = 6)] = 'NAIVE_CHUNK'; - EmbedType2[(EmbedType2['SIGNATURE'] = 7)] = 'SIGNATURE'; +(function(EmbedType2) { + EmbedType2[EmbedType2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + EmbedType2[EmbedType2["RAW_SOURCE"] = 1] = "RAW_SOURCE"; + EmbedType2[EmbedType2["DOCSTRING"] = 2] = "DOCSTRING"; + EmbedType2[EmbedType2["FUNCTION"] = 3] = "FUNCTION"; + EmbedType2[EmbedType2["NODEPATH"] = 4] = "NODEPATH"; + EmbedType2[EmbedType2["DECLARATION"] = 5] = "DECLARATION"; + EmbedType2[EmbedType2["NAIVE_CHUNK"] = 6] = "NAIVE_CHUNK"; + EmbedType2[EmbedType2["SIGNATURE"] = 7] = "SIGNATURE"; })(EmbedType || (EmbedType = {})); -proto3.util.setEnumType(EmbedType, 'exa.codeium_common_pb.EmbedType', [ - { no: 0, name: 'EMBED_TYPE_UNSPECIFIED' }, - { no: 1, name: 'EMBED_TYPE_RAW_SOURCE' }, - { no: 2, name: 'EMBED_TYPE_DOCSTRING' }, - { no: 3, name: 'EMBED_TYPE_FUNCTION' }, - { no: 4, name: 'EMBED_TYPE_NODEPATH' }, - { no: 5, name: 'EMBED_TYPE_DECLARATION' }, - { no: 6, name: 'EMBED_TYPE_NAIVE_CHUNK' }, - { no: 7, name: 'EMBED_TYPE_SIGNATURE' }, +proto3.util.setEnumType(EmbedType, "exa.codeium_common_pb.EmbedType", [ + { no: 0, name: "EMBED_TYPE_UNSPECIFIED" }, + { no: 1, name: "EMBED_TYPE_RAW_SOURCE" }, + { no: 2, name: "EMBED_TYPE_DOCSTRING" }, + { no: 3, name: "EMBED_TYPE_FUNCTION" }, + { no: 4, name: "EMBED_TYPE_NODEPATH" }, + { no: 5, name: "EMBED_TYPE_DECLARATION" }, + { no: 6, name: "EMBED_TYPE_NAIVE_CHUNK" }, + { no: 7, name: "EMBED_TYPE_SIGNATURE" } ]); var CompletionSource; -(function (CompletionSource2) { - CompletionSource2[(CompletionSource2['UNSPECIFIED'] = 0)] = 'UNSPECIFIED'; - CompletionSource2[(CompletionSource2['TYPING_AS_SUGGESTED'] = 1)] = - 'TYPING_AS_SUGGESTED'; - CompletionSource2[(CompletionSource2['CACHE'] = 2)] = 'CACHE'; - CompletionSource2[(CompletionSource2['NETWORK'] = 3)] = 'NETWORK'; +(function(CompletionSource2) { + CompletionSource2[CompletionSource2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + CompletionSource2[CompletionSource2["TYPING_AS_SUGGESTED"] = 1] = "TYPING_AS_SUGGESTED"; + CompletionSource2[CompletionSource2["CACHE"] = 2] = "CACHE"; + CompletionSource2[CompletionSource2["NETWORK"] = 3] = "NETWORK"; })(CompletionSource || (CompletionSource = {})); -proto3.util.setEnumType( - CompletionSource, - 'exa.codeium_common_pb.CompletionSource', - [ - { no: 0, name: 'COMPLETION_SOURCE_UNSPECIFIED' }, - { no: 1, name: 'COMPLETION_SOURCE_TYPING_AS_SUGGESTED' }, - { no: 2, name: 'COMPLETION_SOURCE_CACHE' }, - { no: 3, name: 'COMPLETION_SOURCE_NETWORK' }, - ], -); +proto3.util.setEnumType(CompletionSource, "exa.codeium_common_pb.CompletionSource", [ + { no: 0, name: "COMPLETION_SOURCE_UNSPECIFIED" }, + { no: 1, name: "COMPLETION_SOURCE_TYPING_AS_SUGGESTED" }, + { no: 2, name: "COMPLETION_SOURCE_CACHE" }, + { no: 3, name: "COMPLETION_SOURCE_NETWORK" } +]); var CompletionType; -(function (CompletionType2) { - CompletionType2[(CompletionType2['UNSPECIFIED'] = 0)] = 'UNSPECIFIED'; - CompletionType2[(CompletionType2['SINGLE'] = 1)] = 'SINGLE'; - CompletionType2[(CompletionType2['MULTI'] = 2)] = 'MULTI'; - CompletionType2[(CompletionType2['INLINE_FIM'] = 3)] = 'INLINE_FIM'; - CompletionType2[(CompletionType2['CASCADE'] = 4)] = 'CASCADE'; +(function(CompletionType2) { + CompletionType2[CompletionType2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + CompletionType2[CompletionType2["SINGLE"] = 1] = "SINGLE"; + CompletionType2[CompletionType2["MULTI"] = 2] = "MULTI"; + CompletionType2[CompletionType2["INLINE_FIM"] = 3] = "INLINE_FIM"; + CompletionType2[CompletionType2["CASCADE"] = 4] = "CASCADE"; })(CompletionType || (CompletionType = {})); -proto3.util.setEnumType( - CompletionType, - 'exa.codeium_common_pb.CompletionType', - [ - { no: 0, name: 'COMPLETION_TYPE_UNSPECIFIED' }, - { no: 1, name: 'COMPLETION_TYPE_SINGLE' }, - { no: 2, name: 'COMPLETION_TYPE_MULTI' }, - { no: 3, name: 'COMPLETION_TYPE_INLINE_FIM' }, - { no: 4, name: 'COMPLETION_TYPE_CASCADE' }, - ], -); +proto3.util.setEnumType(CompletionType, "exa.codeium_common_pb.CompletionType", [ + { no: 0, name: "COMPLETION_TYPE_UNSPECIFIED" }, + { no: 1, name: "COMPLETION_TYPE_SINGLE" }, + { no: 2, name: "COMPLETION_TYPE_MULTI" }, + { no: 3, name: "COMPLETION_TYPE_INLINE_FIM" }, + { no: 4, name: "COMPLETION_TYPE_CASCADE" } +]); var Language; -(function (Language2) { - Language2[(Language2['UNSPECIFIED'] = 0)] = 'UNSPECIFIED'; - Language2[(Language2['C'] = 1)] = 'C'; - Language2[(Language2['CLOJURE'] = 2)] = 'CLOJURE'; - Language2[(Language2['COFFEESCRIPT'] = 3)] = 'COFFEESCRIPT'; - Language2[(Language2['CPP'] = 4)] = 'CPP'; - Language2[(Language2['CSHARP'] = 5)] = 'CSHARP'; - Language2[(Language2['CSS'] = 6)] = 'CSS'; - Language2[(Language2['CUDACPP'] = 7)] = 'CUDACPP'; - Language2[(Language2['DOCKERFILE'] = 8)] = 'DOCKERFILE'; - Language2[(Language2['GO'] = 9)] = 'GO'; - Language2[(Language2['GROOVY'] = 10)] = 'GROOVY'; - Language2[(Language2['HANDLEBARS'] = 11)] = 'HANDLEBARS'; - Language2[(Language2['HASKELL'] = 12)] = 'HASKELL'; - Language2[(Language2['HCL'] = 13)] = 'HCL'; - Language2[(Language2['HTML'] = 14)] = 'HTML'; - Language2[(Language2['INI'] = 15)] = 'INI'; - Language2[(Language2['JAVA'] = 16)] = 'JAVA'; - Language2[(Language2['JAVASCRIPT'] = 17)] = 'JAVASCRIPT'; - Language2[(Language2['JSON'] = 18)] = 'JSON'; - Language2[(Language2['JULIA'] = 19)] = 'JULIA'; - Language2[(Language2['KOTLIN'] = 20)] = 'KOTLIN'; - Language2[(Language2['LATEX'] = 21)] = 'LATEX'; - Language2[(Language2['LESS'] = 22)] = 'LESS'; - Language2[(Language2['LUA'] = 23)] = 'LUA'; - Language2[(Language2['MAKEFILE'] = 24)] = 'MAKEFILE'; - Language2[(Language2['MARKDOWN'] = 25)] = 'MARKDOWN'; - Language2[(Language2['OBJECTIVEC'] = 26)] = 'OBJECTIVEC'; - Language2[(Language2['OBJECTIVECPP'] = 27)] = 'OBJECTIVECPP'; - Language2[(Language2['PERL'] = 28)] = 'PERL'; - Language2[(Language2['PHP'] = 29)] = 'PHP'; - Language2[(Language2['PLAINTEXT'] = 30)] = 'PLAINTEXT'; - Language2[(Language2['PROTOBUF'] = 31)] = 'PROTOBUF'; - Language2[(Language2['PBTXT'] = 32)] = 'PBTXT'; - Language2[(Language2['PYTHON'] = 33)] = 'PYTHON'; - Language2[(Language2['R'] = 34)] = 'R'; - Language2[(Language2['RUBY'] = 35)] = 'RUBY'; - Language2[(Language2['RUST'] = 36)] = 'RUST'; - Language2[(Language2['SASS'] = 37)] = 'SASS'; - Language2[(Language2['SCALA'] = 38)] = 'SCALA'; - Language2[(Language2['SCSS'] = 39)] = 'SCSS'; - Language2[(Language2['SHELL'] = 40)] = 'SHELL'; - Language2[(Language2['SQL'] = 41)] = 'SQL'; - Language2[(Language2['STARLARK'] = 42)] = 'STARLARK'; - Language2[(Language2['SWIFT'] = 43)] = 'SWIFT'; - Language2[(Language2['TSX'] = 44)] = 'TSX'; - Language2[(Language2['TYPESCRIPT'] = 45)] = 'TYPESCRIPT'; - Language2[(Language2['VISUALBASIC'] = 46)] = 'VISUALBASIC'; - Language2[(Language2['VUE'] = 47)] = 'VUE'; - Language2[(Language2['XML'] = 48)] = 'XML'; - Language2[(Language2['XSL'] = 49)] = 'XSL'; - Language2[(Language2['YAML'] = 50)] = 'YAML'; - Language2[(Language2['SVELTE'] = 51)] = 'SVELTE'; - Language2[(Language2['TOML'] = 52)] = 'TOML'; - Language2[(Language2['DART'] = 53)] = 'DART'; - Language2[(Language2['RST'] = 54)] = 'RST'; - Language2[(Language2['OCAML'] = 55)] = 'OCAML'; - Language2[(Language2['CMAKE'] = 56)] = 'CMAKE'; - Language2[(Language2['PASCAL'] = 57)] = 'PASCAL'; - Language2[(Language2['ELIXIR'] = 58)] = 'ELIXIR'; - Language2[(Language2['FSHARP'] = 59)] = 'FSHARP'; - Language2[(Language2['LISP'] = 60)] = 'LISP'; - Language2[(Language2['MATLAB'] = 61)] = 'MATLAB'; - Language2[(Language2['POWERSHELL'] = 62)] = 'POWERSHELL'; - Language2[(Language2['SOLIDITY'] = 63)] = 'SOLIDITY'; - Language2[(Language2['ADA'] = 64)] = 'ADA'; - Language2[(Language2['OCAML_INTERFACE'] = 65)] = 'OCAML_INTERFACE'; - Language2[(Language2['TREE_SITTER_QUERY'] = 66)] = 'TREE_SITTER_QUERY'; - Language2[(Language2['APL'] = 67)] = 'APL'; - Language2[(Language2['ASSEMBLY'] = 68)] = 'ASSEMBLY'; - Language2[(Language2['COBOL'] = 69)] = 'COBOL'; - Language2[(Language2['CRYSTAL'] = 70)] = 'CRYSTAL'; - Language2[(Language2['EMACS_LISP'] = 71)] = 'EMACS_LISP'; - Language2[(Language2['ERLANG'] = 72)] = 'ERLANG'; - Language2[(Language2['FORTRAN'] = 73)] = 'FORTRAN'; - Language2[(Language2['FREEFORM'] = 74)] = 'FREEFORM'; - Language2[(Language2['GRADLE'] = 75)] = 'GRADLE'; - Language2[(Language2['HACK'] = 76)] = 'HACK'; - Language2[(Language2['MAVEN'] = 77)] = 'MAVEN'; - Language2[(Language2['M68KASSEMBLY'] = 78)] = 'M68KASSEMBLY'; - Language2[(Language2['SAS'] = 79)] = 'SAS'; - Language2[(Language2['UNIXASSEMBLY'] = 80)] = 'UNIXASSEMBLY'; - Language2[(Language2['VBA'] = 81)] = 'VBA'; - Language2[(Language2['VIMSCRIPT'] = 82)] = 'VIMSCRIPT'; - Language2[(Language2['WEBASSEMBLY'] = 83)] = 'WEBASSEMBLY'; - Language2[(Language2['BLADE'] = 84)] = 'BLADE'; - Language2[(Language2['ASTRO'] = 85)] = 'ASTRO'; - Language2[(Language2['MUMPS'] = 86)] = 'MUMPS'; - Language2[(Language2['GDSCRIPT'] = 87)] = 'GDSCRIPT'; - Language2[(Language2['NIM'] = 88)] = 'NIM'; - Language2[(Language2['PROLOG'] = 89)] = 'PROLOG'; - Language2[(Language2['MARKDOWN_INLINE'] = 90)] = 'MARKDOWN_INLINE'; - Language2[(Language2['APEX'] = 91)] = 'APEX'; +(function(Language2) { + Language2[Language2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + Language2[Language2["C"] = 1] = "C"; + Language2[Language2["CLOJURE"] = 2] = "CLOJURE"; + Language2[Language2["COFFEESCRIPT"] = 3] = "COFFEESCRIPT"; + Language2[Language2["CPP"] = 4] = "CPP"; + Language2[Language2["CSHARP"] = 5] = "CSHARP"; + Language2[Language2["CSS"] = 6] = "CSS"; + Language2[Language2["CUDACPP"] = 7] = "CUDACPP"; + Language2[Language2["DOCKERFILE"] = 8] = "DOCKERFILE"; + Language2[Language2["GO"] = 9] = "GO"; + Language2[Language2["GROOVY"] = 10] = "GROOVY"; + Language2[Language2["HANDLEBARS"] = 11] = "HANDLEBARS"; + Language2[Language2["HASKELL"] = 12] = "HASKELL"; + Language2[Language2["HCL"] = 13] = "HCL"; + Language2[Language2["HTML"] = 14] = "HTML"; + Language2[Language2["INI"] = 15] = "INI"; + Language2[Language2["JAVA"] = 16] = "JAVA"; + Language2[Language2["JAVASCRIPT"] = 17] = "JAVASCRIPT"; + Language2[Language2["JSON"] = 18] = "JSON"; + Language2[Language2["JULIA"] = 19] = "JULIA"; + Language2[Language2["KOTLIN"] = 20] = "KOTLIN"; + Language2[Language2["LATEX"] = 21] = "LATEX"; + Language2[Language2["LESS"] = 22] = "LESS"; + Language2[Language2["LUA"] = 23] = "LUA"; + Language2[Language2["MAKEFILE"] = 24] = "MAKEFILE"; + Language2[Language2["MARKDOWN"] = 25] = "MARKDOWN"; + Language2[Language2["OBJECTIVEC"] = 26] = "OBJECTIVEC"; + Language2[Language2["OBJECTIVECPP"] = 27] = "OBJECTIVECPP"; + Language2[Language2["PERL"] = 28] = "PERL"; + Language2[Language2["PHP"] = 29] = "PHP"; + Language2[Language2["PLAINTEXT"] = 30] = "PLAINTEXT"; + Language2[Language2["PROTOBUF"] = 31] = "PROTOBUF"; + Language2[Language2["PBTXT"] = 32] = "PBTXT"; + Language2[Language2["PYTHON"] = 33] = "PYTHON"; + Language2[Language2["R"] = 34] = "R"; + Language2[Language2["RUBY"] = 35] = "RUBY"; + Language2[Language2["RUST"] = 36] = "RUST"; + Language2[Language2["SASS"] = 37] = "SASS"; + Language2[Language2["SCALA"] = 38] = "SCALA"; + Language2[Language2["SCSS"] = 39] = "SCSS"; + Language2[Language2["SHELL"] = 40] = "SHELL"; + Language2[Language2["SQL"] = 41] = "SQL"; + Language2[Language2["STARLARK"] = 42] = "STARLARK"; + Language2[Language2["SWIFT"] = 43] = "SWIFT"; + Language2[Language2["TSX"] = 44] = "TSX"; + Language2[Language2["TYPESCRIPT"] = 45] = "TYPESCRIPT"; + Language2[Language2["VISUALBASIC"] = 46] = "VISUALBASIC"; + Language2[Language2["VUE"] = 47] = "VUE"; + Language2[Language2["XML"] = 48] = "XML"; + Language2[Language2["XSL"] = 49] = "XSL"; + Language2[Language2["YAML"] = 50] = "YAML"; + Language2[Language2["SVELTE"] = 51] = "SVELTE"; + Language2[Language2["TOML"] = 52] = "TOML"; + Language2[Language2["DART"] = 53] = "DART"; + Language2[Language2["RST"] = 54] = "RST"; + Language2[Language2["OCAML"] = 55] = "OCAML"; + Language2[Language2["CMAKE"] = 56] = "CMAKE"; + Language2[Language2["PASCAL"] = 57] = "PASCAL"; + Language2[Language2["ELIXIR"] = 58] = "ELIXIR"; + Language2[Language2["FSHARP"] = 59] = "FSHARP"; + Language2[Language2["LISP"] = 60] = "LISP"; + Language2[Language2["MATLAB"] = 61] = "MATLAB"; + Language2[Language2["POWERSHELL"] = 62] = "POWERSHELL"; + Language2[Language2["SOLIDITY"] = 63] = "SOLIDITY"; + Language2[Language2["ADA"] = 64] = "ADA"; + Language2[Language2["OCAML_INTERFACE"] = 65] = "OCAML_INTERFACE"; + Language2[Language2["TREE_SITTER_QUERY"] = 66] = "TREE_SITTER_QUERY"; + Language2[Language2["APL"] = 67] = "APL"; + Language2[Language2["ASSEMBLY"] = 68] = "ASSEMBLY"; + Language2[Language2["COBOL"] = 69] = "COBOL"; + Language2[Language2["CRYSTAL"] = 70] = "CRYSTAL"; + Language2[Language2["EMACS_LISP"] = 71] = "EMACS_LISP"; + Language2[Language2["ERLANG"] = 72] = "ERLANG"; + Language2[Language2["FORTRAN"] = 73] = "FORTRAN"; + Language2[Language2["FREEFORM"] = 74] = "FREEFORM"; + Language2[Language2["GRADLE"] = 75] = "GRADLE"; + Language2[Language2["HACK"] = 76] = "HACK"; + Language2[Language2["MAVEN"] = 77] = "MAVEN"; + Language2[Language2["M68KASSEMBLY"] = 78] = "M68KASSEMBLY"; + Language2[Language2["SAS"] = 79] = "SAS"; + Language2[Language2["UNIXASSEMBLY"] = 80] = "UNIXASSEMBLY"; + Language2[Language2["VBA"] = 81] = "VBA"; + Language2[Language2["VIMSCRIPT"] = 82] = "VIMSCRIPT"; + Language2[Language2["WEBASSEMBLY"] = 83] = "WEBASSEMBLY"; + Language2[Language2["BLADE"] = 84] = "BLADE"; + Language2[Language2["ASTRO"] = 85] = "ASTRO"; + Language2[Language2["MUMPS"] = 86] = "MUMPS"; + Language2[Language2["GDSCRIPT"] = 87] = "GDSCRIPT"; + Language2[Language2["NIM"] = 88] = "NIM"; + Language2[Language2["PROLOG"] = 89] = "PROLOG"; + Language2[Language2["MARKDOWN_INLINE"] = 90] = "MARKDOWN_INLINE"; + Language2[Language2["APEX"] = 91] = "APEX"; })(Language || (Language = {})); -proto3.util.setEnumType(Language, 'exa.codeium_common_pb.Language', [ - { no: 0, name: 'LANGUAGE_UNSPECIFIED' }, - { no: 1, name: 'LANGUAGE_C' }, - { no: 2, name: 'LANGUAGE_CLOJURE' }, - { no: 3, name: 'LANGUAGE_COFFEESCRIPT' }, - { no: 4, name: 'LANGUAGE_CPP' }, - { no: 5, name: 'LANGUAGE_CSHARP' }, - { no: 6, name: 'LANGUAGE_CSS' }, - { no: 7, name: 'LANGUAGE_CUDACPP' }, - { no: 8, name: 'LANGUAGE_DOCKERFILE' }, - { no: 9, name: 'LANGUAGE_GO' }, - { no: 10, name: 'LANGUAGE_GROOVY' }, - { no: 11, name: 'LANGUAGE_HANDLEBARS' }, - { no: 12, name: 'LANGUAGE_HASKELL' }, - { no: 13, name: 'LANGUAGE_HCL' }, - { no: 14, name: 'LANGUAGE_HTML' }, - { no: 15, name: 'LANGUAGE_INI' }, - { no: 16, name: 'LANGUAGE_JAVA' }, - { no: 17, name: 'LANGUAGE_JAVASCRIPT' }, - { no: 18, name: 'LANGUAGE_JSON' }, - { no: 19, name: 'LANGUAGE_JULIA' }, - { no: 20, name: 'LANGUAGE_KOTLIN' }, - { no: 21, name: 'LANGUAGE_LATEX' }, - { no: 22, name: 'LANGUAGE_LESS' }, - { no: 23, name: 'LANGUAGE_LUA' }, - { no: 24, name: 'LANGUAGE_MAKEFILE' }, - { no: 25, name: 'LANGUAGE_MARKDOWN' }, - { no: 26, name: 'LANGUAGE_OBJECTIVEC' }, - { no: 27, name: 'LANGUAGE_OBJECTIVECPP' }, - { no: 28, name: 'LANGUAGE_PERL' }, - { no: 29, name: 'LANGUAGE_PHP' }, - { no: 30, name: 'LANGUAGE_PLAINTEXT' }, - { no: 31, name: 'LANGUAGE_PROTOBUF' }, - { no: 32, name: 'LANGUAGE_PBTXT' }, - { no: 33, name: 'LANGUAGE_PYTHON' }, - { no: 34, name: 'LANGUAGE_R' }, - { no: 35, name: 'LANGUAGE_RUBY' }, - { no: 36, name: 'LANGUAGE_RUST' }, - { no: 37, name: 'LANGUAGE_SASS' }, - { no: 38, name: 'LANGUAGE_SCALA' }, - { no: 39, name: 'LANGUAGE_SCSS' }, - { no: 40, name: 'LANGUAGE_SHELL' }, - { no: 41, name: 'LANGUAGE_SQL' }, - { no: 42, name: 'LANGUAGE_STARLARK' }, - { no: 43, name: 'LANGUAGE_SWIFT' }, - { no: 44, name: 'LANGUAGE_TSX' }, - { no: 45, name: 'LANGUAGE_TYPESCRIPT' }, - { no: 46, name: 'LANGUAGE_VISUALBASIC' }, - { no: 47, name: 'LANGUAGE_VUE' }, - { no: 48, name: 'LANGUAGE_XML' }, - { no: 49, name: 'LANGUAGE_XSL' }, - { no: 50, name: 'LANGUAGE_YAML' }, - { no: 51, name: 'LANGUAGE_SVELTE' }, - { no: 52, name: 'LANGUAGE_TOML' }, - { no: 53, name: 'LANGUAGE_DART' }, - { no: 54, name: 'LANGUAGE_RST' }, - { no: 55, name: 'LANGUAGE_OCAML' }, - { no: 56, name: 'LANGUAGE_CMAKE' }, - { no: 57, name: 'LANGUAGE_PASCAL' }, - { no: 58, name: 'LANGUAGE_ELIXIR' }, - { no: 59, name: 'LANGUAGE_FSHARP' }, - { no: 60, name: 'LANGUAGE_LISP' }, - { no: 61, name: 'LANGUAGE_MATLAB' }, - { no: 62, name: 'LANGUAGE_POWERSHELL' }, - { no: 63, name: 'LANGUAGE_SOLIDITY' }, - { no: 64, name: 'LANGUAGE_ADA' }, - { no: 65, name: 'LANGUAGE_OCAML_INTERFACE' }, - { no: 66, name: 'LANGUAGE_TREE_SITTER_QUERY' }, - { no: 67, name: 'LANGUAGE_APL' }, - { no: 68, name: 'LANGUAGE_ASSEMBLY' }, - { no: 69, name: 'LANGUAGE_COBOL' }, - { no: 70, name: 'LANGUAGE_CRYSTAL' }, - { no: 71, name: 'LANGUAGE_EMACS_LISP' }, - { no: 72, name: 'LANGUAGE_ERLANG' }, - { no: 73, name: 'LANGUAGE_FORTRAN' }, - { no: 74, name: 'LANGUAGE_FREEFORM' }, - { no: 75, name: 'LANGUAGE_GRADLE' }, - { no: 76, name: 'LANGUAGE_HACK' }, - { no: 77, name: 'LANGUAGE_MAVEN' }, - { no: 78, name: 'LANGUAGE_M68KASSEMBLY' }, - { no: 79, name: 'LANGUAGE_SAS' }, - { no: 80, name: 'LANGUAGE_UNIXASSEMBLY' }, - { no: 81, name: 'LANGUAGE_VBA' }, - { no: 82, name: 'LANGUAGE_VIMSCRIPT' }, - { no: 83, name: 'LANGUAGE_WEBASSEMBLY' }, - { no: 84, name: 'LANGUAGE_BLADE' }, - { no: 85, name: 'LANGUAGE_ASTRO' }, - { no: 86, name: 'LANGUAGE_MUMPS' }, - { no: 87, name: 'LANGUAGE_GDSCRIPT' }, - { no: 88, name: 'LANGUAGE_NIM' }, - { no: 89, name: 'LANGUAGE_PROLOG' }, - { no: 90, name: 'LANGUAGE_MARKDOWN_INLINE' }, - { no: 91, name: 'LANGUAGE_APEX' }, +proto3.util.setEnumType(Language, "exa.codeium_common_pb.Language", [ + { no: 0, name: "LANGUAGE_UNSPECIFIED" }, + { no: 1, name: "LANGUAGE_C" }, + { no: 2, name: "LANGUAGE_CLOJURE" }, + { no: 3, name: "LANGUAGE_COFFEESCRIPT" }, + { no: 4, name: "LANGUAGE_CPP" }, + { no: 5, name: "LANGUAGE_CSHARP" }, + { no: 6, name: "LANGUAGE_CSS" }, + { no: 7, name: "LANGUAGE_CUDACPP" }, + { no: 8, name: "LANGUAGE_DOCKERFILE" }, + { no: 9, name: "LANGUAGE_GO" }, + { no: 10, name: "LANGUAGE_GROOVY" }, + { no: 11, name: "LANGUAGE_HANDLEBARS" }, + { no: 12, name: "LANGUAGE_HASKELL" }, + { no: 13, name: "LANGUAGE_HCL" }, + { no: 14, name: "LANGUAGE_HTML" }, + { no: 15, name: "LANGUAGE_INI" }, + { no: 16, name: "LANGUAGE_JAVA" }, + { no: 17, name: "LANGUAGE_JAVASCRIPT" }, + { no: 18, name: "LANGUAGE_JSON" }, + { no: 19, name: "LANGUAGE_JULIA" }, + { no: 20, name: "LANGUAGE_KOTLIN" }, + { no: 21, name: "LANGUAGE_LATEX" }, + { no: 22, name: "LANGUAGE_LESS" }, + { no: 23, name: "LANGUAGE_LUA" }, + { no: 24, name: "LANGUAGE_MAKEFILE" }, + { no: 25, name: "LANGUAGE_MARKDOWN" }, + { no: 26, name: "LANGUAGE_OBJECTIVEC" }, + { no: 27, name: "LANGUAGE_OBJECTIVECPP" }, + { no: 28, name: "LANGUAGE_PERL" }, + { no: 29, name: "LANGUAGE_PHP" }, + { no: 30, name: "LANGUAGE_PLAINTEXT" }, + { no: 31, name: "LANGUAGE_PROTOBUF" }, + { no: 32, name: "LANGUAGE_PBTXT" }, + { no: 33, name: "LANGUAGE_PYTHON" }, + { no: 34, name: "LANGUAGE_R" }, + { no: 35, name: "LANGUAGE_RUBY" }, + { no: 36, name: "LANGUAGE_RUST" }, + { no: 37, name: "LANGUAGE_SASS" }, + { no: 38, name: "LANGUAGE_SCALA" }, + { no: 39, name: "LANGUAGE_SCSS" }, + { no: 40, name: "LANGUAGE_SHELL" }, + { no: 41, name: "LANGUAGE_SQL" }, + { no: 42, name: "LANGUAGE_STARLARK" }, + { no: 43, name: "LANGUAGE_SWIFT" }, + { no: 44, name: "LANGUAGE_TSX" }, + { no: 45, name: "LANGUAGE_TYPESCRIPT" }, + { no: 46, name: "LANGUAGE_VISUALBASIC" }, + { no: 47, name: "LANGUAGE_VUE" }, + { no: 48, name: "LANGUAGE_XML" }, + { no: 49, name: "LANGUAGE_XSL" }, + { no: 50, name: "LANGUAGE_YAML" }, + { no: 51, name: "LANGUAGE_SVELTE" }, + { no: 52, name: "LANGUAGE_TOML" }, + { no: 53, name: "LANGUAGE_DART" }, + { no: 54, name: "LANGUAGE_RST" }, + { no: 55, name: "LANGUAGE_OCAML" }, + { no: 56, name: "LANGUAGE_CMAKE" }, + { no: 57, name: "LANGUAGE_PASCAL" }, + { no: 58, name: "LANGUAGE_ELIXIR" }, + { no: 59, name: "LANGUAGE_FSHARP" }, + { no: 60, name: "LANGUAGE_LISP" }, + { no: 61, name: "LANGUAGE_MATLAB" }, + { no: 62, name: "LANGUAGE_POWERSHELL" }, + { no: 63, name: "LANGUAGE_SOLIDITY" }, + { no: 64, name: "LANGUAGE_ADA" }, + { no: 65, name: "LANGUAGE_OCAML_INTERFACE" }, + { no: 66, name: "LANGUAGE_TREE_SITTER_QUERY" }, + { no: 67, name: "LANGUAGE_APL" }, + { no: 68, name: "LANGUAGE_ASSEMBLY" }, + { no: 69, name: "LANGUAGE_COBOL" }, + { no: 70, name: "LANGUAGE_CRYSTAL" }, + { no: 71, name: "LANGUAGE_EMACS_LISP" }, + { no: 72, name: "LANGUAGE_ERLANG" }, + { no: 73, name: "LANGUAGE_FORTRAN" }, + { no: 74, name: "LANGUAGE_FREEFORM" }, + { no: 75, name: "LANGUAGE_GRADLE" }, + { no: 76, name: "LANGUAGE_HACK" }, + { no: 77, name: "LANGUAGE_MAVEN" }, + { no: 78, name: "LANGUAGE_M68KASSEMBLY" }, + { no: 79, name: "LANGUAGE_SAS" }, + { no: 80, name: "LANGUAGE_UNIXASSEMBLY" }, + { no: 81, name: "LANGUAGE_VBA" }, + { no: 82, name: "LANGUAGE_VIMSCRIPT" }, + { no: 83, name: "LANGUAGE_WEBASSEMBLY" }, + { no: 84, name: "LANGUAGE_BLADE" }, + { no: 85, name: "LANGUAGE_ASTRO" }, + { no: 86, name: "LANGUAGE_MUMPS" }, + { no: 87, name: "LANGUAGE_GDSCRIPT" }, + { no: 88, name: "LANGUAGE_NIM" }, + { no: 89, name: "LANGUAGE_PROLOG" }, + { no: 90, name: "LANGUAGE_MARKDOWN_INLINE" }, + { no: 91, name: "LANGUAGE_APEX" } ]); var ChatMessageSource; -(function (ChatMessageSource2) { - ChatMessageSource2[(ChatMessageSource2['UNSPECIFIED'] = 0)] = 'UNSPECIFIED'; - ChatMessageSource2[(ChatMessageSource2['USER'] = 1)] = 'USER'; - ChatMessageSource2[(ChatMessageSource2['SYSTEM'] = 2)] = 'SYSTEM'; - ChatMessageSource2[(ChatMessageSource2['UNKNOWN'] = 3)] = 'UNKNOWN'; - ChatMessageSource2[(ChatMessageSource2['TOOL'] = 4)] = 'TOOL'; - ChatMessageSource2[(ChatMessageSource2['SYSTEM_PROMPT'] = 5)] = - 'SYSTEM_PROMPT'; +(function(ChatMessageSource2) { + ChatMessageSource2[ChatMessageSource2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + ChatMessageSource2[ChatMessageSource2["USER"] = 1] = "USER"; + ChatMessageSource2[ChatMessageSource2["SYSTEM"] = 2] = "SYSTEM"; + ChatMessageSource2[ChatMessageSource2["UNKNOWN"] = 3] = "UNKNOWN"; + ChatMessageSource2[ChatMessageSource2["TOOL"] = 4] = "TOOL"; + ChatMessageSource2[ChatMessageSource2["SYSTEM_PROMPT"] = 5] = "SYSTEM_PROMPT"; })(ChatMessageSource || (ChatMessageSource = {})); -proto3.util.setEnumType( - ChatMessageSource, - 'exa.codeium_common_pb.ChatMessageSource', - [ - { no: 0, name: 'CHAT_MESSAGE_SOURCE_UNSPECIFIED' }, - { no: 1, name: 'CHAT_MESSAGE_SOURCE_USER' }, - { no: 2, name: 'CHAT_MESSAGE_SOURCE_SYSTEM' }, - { no: 3, name: 'CHAT_MESSAGE_SOURCE_UNKNOWN' }, - { no: 4, name: 'CHAT_MESSAGE_SOURCE_TOOL' }, - { no: 5, name: 'CHAT_MESSAGE_SOURCE_SYSTEM_PROMPT' }, - ], -); +proto3.util.setEnumType(ChatMessageSource, "exa.codeium_common_pb.ChatMessageSource", [ + { no: 0, name: "CHAT_MESSAGE_SOURCE_UNSPECIFIED" }, + { no: 1, name: "CHAT_MESSAGE_SOURCE_USER" }, + { no: 2, name: "CHAT_MESSAGE_SOURCE_SYSTEM" }, + { no: 3, name: "CHAT_MESSAGE_SOURCE_UNKNOWN" }, + { no: 4, name: "CHAT_MESSAGE_SOURCE_TOOL" }, + { no: 5, name: "CHAT_MESSAGE_SOURCE_SYSTEM_PROMPT" } +]); var UserTeamStatus; -(function (UserTeamStatus2) { - UserTeamStatus2[(UserTeamStatus2['UNSPECIFIED'] = 0)] = 'UNSPECIFIED'; - UserTeamStatus2[(UserTeamStatus2['PENDING'] = 1)] = 'PENDING'; - UserTeamStatus2[(UserTeamStatus2['APPROVED'] = 2)] = 'APPROVED'; - UserTeamStatus2[(UserTeamStatus2['REJECTED'] = 3)] = 'REJECTED'; +(function(UserTeamStatus2) { + UserTeamStatus2[UserTeamStatus2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + UserTeamStatus2[UserTeamStatus2["PENDING"] = 1] = "PENDING"; + UserTeamStatus2[UserTeamStatus2["APPROVED"] = 2] = "APPROVED"; + UserTeamStatus2[UserTeamStatus2["REJECTED"] = 3] = "REJECTED"; })(UserTeamStatus || (UserTeamStatus = {})); -proto3.util.setEnumType( - UserTeamStatus, - 'exa.codeium_common_pb.UserTeamStatus', - [ - { no: 0, name: 'USER_TEAM_STATUS_UNSPECIFIED' }, - { no: 1, name: 'USER_TEAM_STATUS_PENDING' }, - { no: 2, name: 'USER_TEAM_STATUS_APPROVED' }, - { no: 3, name: 'USER_TEAM_STATUS_REJECTED' }, - ], -); +proto3.util.setEnumType(UserTeamStatus, "exa.codeium_common_pb.UserTeamStatus", [ + { no: 0, name: "USER_TEAM_STATUS_UNSPECIFIED" }, + { no: 1, name: "USER_TEAM_STATUS_PENDING" }, + { no: 2, name: "USER_TEAM_STATUS_APPROVED" }, + { no: 3, name: "USER_TEAM_STATUS_REJECTED" } +]); var TeamsFeatures; -(function (TeamsFeatures2) { - TeamsFeatures2[(TeamsFeatures2['UNSPECIFIED'] = 0)] = 'UNSPECIFIED'; - TeamsFeatures2[(TeamsFeatures2['SSO'] = 1)] = 'SSO'; - TeamsFeatures2[(TeamsFeatures2['ATTRIBUTION'] = 2)] = 'ATTRIBUTION'; - TeamsFeatures2[(TeamsFeatures2['PHI'] = 3)] = 'PHI'; - TeamsFeatures2[(TeamsFeatures2['CORTEX'] = 4)] = 'CORTEX'; - TeamsFeatures2[(TeamsFeatures2['OPENAI_DISABLED'] = 5)] = 'OPENAI_DISABLED'; - TeamsFeatures2[(TeamsFeatures2['REMOTE_INDEXING_DISABLED'] = 6)] = - 'REMOTE_INDEXING_DISABLED'; - TeamsFeatures2[(TeamsFeatures2['API_KEY_ENABLED'] = 7)] = 'API_KEY_ENABLED'; +(function(TeamsFeatures2) { + TeamsFeatures2[TeamsFeatures2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + TeamsFeatures2[TeamsFeatures2["SSO"] = 1] = "SSO"; + TeamsFeatures2[TeamsFeatures2["ATTRIBUTION"] = 2] = "ATTRIBUTION"; + TeamsFeatures2[TeamsFeatures2["PHI"] = 3] = "PHI"; + TeamsFeatures2[TeamsFeatures2["CORTEX"] = 4] = "CORTEX"; + TeamsFeatures2[TeamsFeatures2["OPENAI_DISABLED"] = 5] = "OPENAI_DISABLED"; + TeamsFeatures2[TeamsFeatures2["REMOTE_INDEXING_DISABLED"] = 6] = "REMOTE_INDEXING_DISABLED"; + TeamsFeatures2[TeamsFeatures2["API_KEY_ENABLED"] = 7] = "API_KEY_ENABLED"; })(TeamsFeatures || (TeamsFeatures = {})); -proto3.util.setEnumType(TeamsFeatures, 'exa.codeium_common_pb.TeamsFeatures', [ - { no: 0, name: 'TEAMS_FEATURES_UNSPECIFIED' }, - { no: 1, name: 'TEAMS_FEATURES_SSO' }, - { no: 2, name: 'TEAMS_FEATURES_ATTRIBUTION' }, - { no: 3, name: 'TEAMS_FEATURES_PHI' }, - { no: 4, name: 'TEAMS_FEATURES_CORTEX' }, - { no: 5, name: 'TEAMS_FEATURES_OPENAI_DISABLED' }, - { no: 6, name: 'TEAMS_FEATURES_REMOTE_INDEXING_DISABLED' }, - { no: 7, name: 'TEAMS_FEATURES_API_KEY_ENABLED' }, +proto3.util.setEnumType(TeamsFeatures, "exa.codeium_common_pb.TeamsFeatures", [ + { no: 0, name: "TEAMS_FEATURES_UNSPECIFIED" }, + { no: 1, name: "TEAMS_FEATURES_SSO" }, + { no: 2, name: "TEAMS_FEATURES_ATTRIBUTION" }, + { no: 3, name: "TEAMS_FEATURES_PHI" }, + { no: 4, name: "TEAMS_FEATURES_CORTEX" }, + { no: 5, name: "TEAMS_FEATURES_OPENAI_DISABLED" }, + { no: 6, name: "TEAMS_FEATURES_REMOTE_INDEXING_DISABLED" }, + { no: 7, name: "TEAMS_FEATURES_API_KEY_ENABLED" } ]); var UserFeatures; -(function (UserFeatures2) { - UserFeatures2[(UserFeatures2['UNSPECIFIED'] = 0)] = 'UNSPECIFIED'; - UserFeatures2[(UserFeatures2['CORTEX'] = 1)] = 'CORTEX'; - UserFeatures2[(UserFeatures2['CORTEX_TEST'] = 2)] = 'CORTEX_TEST'; +(function(UserFeatures2) { + UserFeatures2[UserFeatures2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + UserFeatures2[UserFeatures2["CORTEX"] = 1] = "CORTEX"; + UserFeatures2[UserFeatures2["CORTEX_TEST"] = 2] = "CORTEX_TEST"; })(UserFeatures || (UserFeatures = {})); -proto3.util.setEnumType(UserFeatures, 'exa.codeium_common_pb.UserFeatures', [ - { no: 0, name: 'USER_FEATURES_UNSPECIFIED' }, - { no: 1, name: 'USER_FEATURES_CORTEX' }, - { no: 2, name: 'USER_FEATURES_CORTEX_TEST' }, +proto3.util.setEnumType(UserFeatures, "exa.codeium_common_pb.UserFeatures", [ + { no: 0, name: "USER_FEATURES_UNSPECIFIED" }, + { no: 1, name: "USER_FEATURES_CORTEX" }, + { no: 2, name: "USER_FEATURES_CORTEX_TEST" } ]); var Permission; -(function (Permission2) { - Permission2[(Permission2['UNSPECIFIED'] = 0)] = 'UNSPECIFIED'; - Permission2[(Permission2['ATTRIBUTION_READ'] = 1)] = 'ATTRIBUTION_READ'; - Permission2[(Permission2['ANALYTICS_READ'] = 2)] = 'ANALYTICS_READ'; - Permission2[(Permission2['LICENSE_READ'] = 3)] = 'LICENSE_READ'; - Permission2[(Permission2['TEAM_USER_READ'] = 4)] = 'TEAM_USER_READ'; - Permission2[(Permission2['TEAM_USER_UPDATE'] = 5)] = 'TEAM_USER_UPDATE'; - Permission2[(Permission2['TEAM_USER_DELETE'] = 6)] = 'TEAM_USER_DELETE'; - Permission2[(Permission2['TEAM_USER_INVITE'] = 17)] = 'TEAM_USER_INVITE'; - Permission2[(Permission2['INDEXING_READ'] = 7)] = 'INDEXING_READ'; - Permission2[(Permission2['INDEXING_CREATE'] = 8)] = 'INDEXING_CREATE'; - Permission2[(Permission2['INDEXING_UPDATE'] = 9)] = 'INDEXING_UPDATE'; - Permission2[(Permission2['INDEXING_DELETE'] = 10)] = 'INDEXING_DELETE'; - Permission2[(Permission2['INDEXING_MANAGEMENT'] = 27)] = - 'INDEXING_MANAGEMENT'; - Permission2[(Permission2['FINETUNING_READ'] = 19)] = 'FINETUNING_READ'; - Permission2[(Permission2['FINETUNING_CREATE'] = 20)] = 'FINETUNING_CREATE'; - Permission2[(Permission2['FINETUNING_UPDATE'] = 21)] = 'FINETUNING_UPDATE'; - Permission2[(Permission2['FINETUNING_DELETE'] = 22)] = 'FINETUNING_DELETE'; - Permission2[(Permission2['SSO_READ'] = 11)] = 'SSO_READ'; - Permission2[(Permission2['SSO_WRITE'] = 12)] = 'SSO_WRITE'; - Permission2[(Permission2['SERVICE_KEY_READ'] = 13)] = 'SERVICE_KEY_READ'; - Permission2[(Permission2['SERVICE_KEY_CREATE'] = 14)] = 'SERVICE_KEY_CREATE'; - Permission2[(Permission2['SERVICE_KEY_UPDATE'] = 28)] = 'SERVICE_KEY_UPDATE'; - Permission2[(Permission2['SERVICE_KEY_DELETE'] = 15)] = 'SERVICE_KEY_DELETE'; - Permission2[(Permission2['ROLE_READ'] = 23)] = 'ROLE_READ'; - Permission2[(Permission2['ROLE_CREATE'] = 24)] = 'ROLE_CREATE'; - Permission2[(Permission2['ROLE_UPDATE'] = 25)] = 'ROLE_UPDATE'; - Permission2[(Permission2['ROLE_DELETE'] = 26)] = 'ROLE_DELETE'; - Permission2[(Permission2['BILLING_READ'] = 16)] = 'BILLING_READ'; - Permission2[(Permission2['BILLING_WRITE'] = 18)] = 'BILLING_WRITE'; - Permission2[(Permission2['EXTERNAL_CHAT_UPDATE'] = 29)] = - 'EXTERNAL_CHAT_UPDATE'; - Permission2[(Permission2['TEAM_SETTINGS_READ'] = 30)] = 'TEAM_SETTINGS_READ'; - Permission2[(Permission2['TEAM_SETTINGS_UPDATE'] = 31)] = - 'TEAM_SETTINGS_UPDATE'; +(function(Permission2) { + Permission2[Permission2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + Permission2[Permission2["ATTRIBUTION_READ"] = 1] = "ATTRIBUTION_READ"; + Permission2[Permission2["ANALYTICS_READ"] = 2] = "ANALYTICS_READ"; + Permission2[Permission2["LICENSE_READ"] = 3] = "LICENSE_READ"; + Permission2[Permission2["TEAM_USER_READ"] = 4] = "TEAM_USER_READ"; + Permission2[Permission2["TEAM_USER_UPDATE"] = 5] = "TEAM_USER_UPDATE"; + Permission2[Permission2["TEAM_USER_DELETE"] = 6] = "TEAM_USER_DELETE"; + Permission2[Permission2["TEAM_USER_INVITE"] = 17] = "TEAM_USER_INVITE"; + Permission2[Permission2["INDEXING_READ"] = 7] = "INDEXING_READ"; + Permission2[Permission2["INDEXING_CREATE"] = 8] = "INDEXING_CREATE"; + Permission2[Permission2["INDEXING_UPDATE"] = 9] = "INDEXING_UPDATE"; + Permission2[Permission2["INDEXING_DELETE"] = 10] = "INDEXING_DELETE"; + Permission2[Permission2["INDEXING_MANAGEMENT"] = 27] = "INDEXING_MANAGEMENT"; + Permission2[Permission2["FINETUNING_READ"] = 19] = "FINETUNING_READ"; + Permission2[Permission2["FINETUNING_CREATE"] = 20] = "FINETUNING_CREATE"; + Permission2[Permission2["FINETUNING_UPDATE"] = 21] = "FINETUNING_UPDATE"; + Permission2[Permission2["FINETUNING_DELETE"] = 22] = "FINETUNING_DELETE"; + Permission2[Permission2["SSO_READ"] = 11] = "SSO_READ"; + Permission2[Permission2["SSO_WRITE"] = 12] = "SSO_WRITE"; + Permission2[Permission2["SERVICE_KEY_READ"] = 13] = "SERVICE_KEY_READ"; + Permission2[Permission2["SERVICE_KEY_CREATE"] = 14] = "SERVICE_KEY_CREATE"; + Permission2[Permission2["SERVICE_KEY_UPDATE"] = 28] = "SERVICE_KEY_UPDATE"; + Permission2[Permission2["SERVICE_KEY_DELETE"] = 15] = "SERVICE_KEY_DELETE"; + Permission2[Permission2["ROLE_READ"] = 23] = "ROLE_READ"; + Permission2[Permission2["ROLE_CREATE"] = 24] = "ROLE_CREATE"; + Permission2[Permission2["ROLE_UPDATE"] = 25] = "ROLE_UPDATE"; + Permission2[Permission2["ROLE_DELETE"] = 26] = "ROLE_DELETE"; + Permission2[Permission2["BILLING_READ"] = 16] = "BILLING_READ"; + Permission2[Permission2["BILLING_WRITE"] = 18] = "BILLING_WRITE"; + Permission2[Permission2["EXTERNAL_CHAT_UPDATE"] = 29] = "EXTERNAL_CHAT_UPDATE"; + Permission2[Permission2["TEAM_SETTINGS_READ"] = 30] = "TEAM_SETTINGS_READ"; + Permission2[Permission2["TEAM_SETTINGS_UPDATE"] = 31] = "TEAM_SETTINGS_UPDATE"; })(Permission || (Permission = {})); -proto3.util.setEnumType(Permission, 'exa.codeium_common_pb.Permission', [ - { no: 0, name: 'PERMISSION_UNSPECIFIED' }, - { no: 1, name: 'PERMISSION_ATTRIBUTION_READ' }, - { no: 2, name: 'PERMISSION_ANALYTICS_READ' }, - { no: 3, name: 'PERMISSION_LICENSE_READ' }, - { no: 4, name: 'PERMISSION_TEAM_USER_READ' }, - { no: 5, name: 'PERMISSION_TEAM_USER_UPDATE' }, - { no: 6, name: 'PERMISSION_TEAM_USER_DELETE' }, - { no: 17, name: 'PERMISSION_TEAM_USER_INVITE' }, - { no: 7, name: 'PERMISSION_INDEXING_READ' }, - { no: 8, name: 'PERMISSION_INDEXING_CREATE' }, - { no: 9, name: 'PERMISSION_INDEXING_UPDATE' }, - { no: 10, name: 'PERMISSION_INDEXING_DELETE' }, - { no: 27, name: 'PERMISSION_INDEXING_MANAGEMENT' }, - { no: 19, name: 'PERMISSION_FINETUNING_READ' }, - { no: 20, name: 'PERMISSION_FINETUNING_CREATE' }, - { no: 21, name: 'PERMISSION_FINETUNING_UPDATE' }, - { no: 22, name: 'PERMISSION_FINETUNING_DELETE' }, - { no: 11, name: 'PERMISSION_SSO_READ' }, - { no: 12, name: 'PERMISSION_SSO_WRITE' }, - { no: 13, name: 'PERMISSION_SERVICE_KEY_READ' }, - { no: 14, name: 'PERMISSION_SERVICE_KEY_CREATE' }, - { no: 28, name: 'PERMISSION_SERVICE_KEY_UPDATE' }, - { no: 15, name: 'PERMISSION_SERVICE_KEY_DELETE' }, - { no: 23, name: 'PERMISSION_ROLE_READ' }, - { no: 24, name: 'PERMISSION_ROLE_CREATE' }, - { no: 25, name: 'PERMISSION_ROLE_UPDATE' }, - { no: 26, name: 'PERMISSION_ROLE_DELETE' }, - { no: 16, name: 'PERMISSION_BILLING_READ' }, - { no: 18, name: 'PERMISSION_BILLING_WRITE' }, - { no: 29, name: 'PERMISSION_EXTERNAL_CHAT_UPDATE' }, - { no: 30, name: 'PERMISSION_TEAM_SETTINGS_READ' }, - { no: 31, name: 'PERMISSION_TEAM_SETTINGS_UPDATE' }, +proto3.util.setEnumType(Permission, "exa.codeium_common_pb.Permission", [ + { no: 0, name: "PERMISSION_UNSPECIFIED" }, + { no: 1, name: "PERMISSION_ATTRIBUTION_READ" }, + { no: 2, name: "PERMISSION_ANALYTICS_READ" }, + { no: 3, name: "PERMISSION_LICENSE_READ" }, + { no: 4, name: "PERMISSION_TEAM_USER_READ" }, + { no: 5, name: "PERMISSION_TEAM_USER_UPDATE" }, + { no: 6, name: "PERMISSION_TEAM_USER_DELETE" }, + { no: 17, name: "PERMISSION_TEAM_USER_INVITE" }, + { no: 7, name: "PERMISSION_INDEXING_READ" }, + { no: 8, name: "PERMISSION_INDEXING_CREATE" }, + { no: 9, name: "PERMISSION_INDEXING_UPDATE" }, + { no: 10, name: "PERMISSION_INDEXING_DELETE" }, + { no: 27, name: "PERMISSION_INDEXING_MANAGEMENT" }, + { no: 19, name: "PERMISSION_FINETUNING_READ" }, + { no: 20, name: "PERMISSION_FINETUNING_CREATE" }, + { no: 21, name: "PERMISSION_FINETUNING_UPDATE" }, + { no: 22, name: "PERMISSION_FINETUNING_DELETE" }, + { no: 11, name: "PERMISSION_SSO_READ" }, + { no: 12, name: "PERMISSION_SSO_WRITE" }, + { no: 13, name: "PERMISSION_SERVICE_KEY_READ" }, + { no: 14, name: "PERMISSION_SERVICE_KEY_CREATE" }, + { no: 28, name: "PERMISSION_SERVICE_KEY_UPDATE" }, + { no: 15, name: "PERMISSION_SERVICE_KEY_DELETE" }, + { no: 23, name: "PERMISSION_ROLE_READ" }, + { no: 24, name: "PERMISSION_ROLE_CREATE" }, + { no: 25, name: "PERMISSION_ROLE_UPDATE" }, + { no: 26, name: "PERMISSION_ROLE_DELETE" }, + { no: 16, name: "PERMISSION_BILLING_READ" }, + { no: 18, name: "PERMISSION_BILLING_WRITE" }, + { no: 29, name: "PERMISSION_EXTERNAL_CHAT_UPDATE" }, + { no: 30, name: "PERMISSION_TEAM_SETTINGS_READ" }, + { no: 31, name: "PERMISSION_TEAM_SETTINGS_UPDATE" } ]); var TeamsTier; -(function (TeamsTier2) { - TeamsTier2[(TeamsTier2['UNSPECIFIED'] = 0)] = 'UNSPECIFIED'; - TeamsTier2[(TeamsTier2['TEAMS'] = 1)] = 'TEAMS'; - TeamsTier2[(TeamsTier2['PRO'] = 2)] = 'PRO'; - TeamsTier2[(TeamsTier2['TRIAL'] = 9)] = 'TRIAL'; - TeamsTier2[(TeamsTier2['ENTERPRISE_SAAS'] = 3)] = 'ENTERPRISE_SAAS'; - TeamsTier2[(TeamsTier2['HYBRID'] = 4)] = 'HYBRID'; - TeamsTier2[(TeamsTier2['ENTERPRISE_SELF_HOSTED'] = 5)] = - 'ENTERPRISE_SELF_HOSTED'; - TeamsTier2[(TeamsTier2['ENTERPRISE_SELF_SERVE'] = 10)] = - 'ENTERPRISE_SELF_SERVE'; - TeamsTier2[(TeamsTier2['WAITLIST_PRO'] = 6)] = 'WAITLIST_PRO'; - TeamsTier2[(TeamsTier2['TEAMS_ULTIMATE'] = 7)] = 'TEAMS_ULTIMATE'; - TeamsTier2[(TeamsTier2['PRO_ULTIMATE'] = 8)] = 'PRO_ULTIMATE'; +(function(TeamsTier2) { + TeamsTier2[TeamsTier2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + TeamsTier2[TeamsTier2["TEAMS"] = 1] = "TEAMS"; + TeamsTier2[TeamsTier2["PRO"] = 2] = "PRO"; + TeamsTier2[TeamsTier2["TRIAL"] = 9] = "TRIAL"; + TeamsTier2[TeamsTier2["ENTERPRISE_SAAS"] = 3] = "ENTERPRISE_SAAS"; + TeamsTier2[TeamsTier2["HYBRID"] = 4] = "HYBRID"; + TeamsTier2[TeamsTier2["ENTERPRISE_SELF_HOSTED"] = 5] = "ENTERPRISE_SELF_HOSTED"; + TeamsTier2[TeamsTier2["ENTERPRISE_SELF_SERVE"] = 10] = "ENTERPRISE_SELF_SERVE"; + TeamsTier2[TeamsTier2["WAITLIST_PRO"] = 6] = "WAITLIST_PRO"; + TeamsTier2[TeamsTier2["TEAMS_ULTIMATE"] = 7] = "TEAMS_ULTIMATE"; + TeamsTier2[TeamsTier2["PRO_ULTIMATE"] = 8] = "PRO_ULTIMATE"; })(TeamsTier || (TeamsTier = {})); -proto3.util.setEnumType(TeamsTier, 'exa.codeium_common_pb.TeamsTier', [ - { no: 0, name: 'TEAMS_TIER_UNSPECIFIED' }, - { no: 1, name: 'TEAMS_TIER_TEAMS' }, - { no: 2, name: 'TEAMS_TIER_PRO' }, - { no: 9, name: 'TEAMS_TIER_TRIAL' }, - { no: 3, name: 'TEAMS_TIER_ENTERPRISE_SAAS' }, - { no: 4, name: 'TEAMS_TIER_HYBRID' }, - { no: 5, name: 'TEAMS_TIER_ENTERPRISE_SELF_HOSTED' }, - { no: 10, name: 'TEAMS_TIER_ENTERPRISE_SELF_SERVE' }, - { no: 6, name: 'TEAMS_TIER_WAITLIST_PRO' }, - { no: 7, name: 'TEAMS_TIER_TEAMS_ULTIMATE' }, - { no: 8, name: 'TEAMS_TIER_PRO_ULTIMATE' }, +proto3.util.setEnumType(TeamsTier, "exa.codeium_common_pb.TeamsTier", [ + { no: 0, name: "TEAMS_TIER_UNSPECIFIED" }, + { no: 1, name: "TEAMS_TIER_TEAMS" }, + { no: 2, name: "TEAMS_TIER_PRO" }, + { no: 9, name: "TEAMS_TIER_TRIAL" }, + { no: 3, name: "TEAMS_TIER_ENTERPRISE_SAAS" }, + { no: 4, name: "TEAMS_TIER_HYBRID" }, + { no: 5, name: "TEAMS_TIER_ENTERPRISE_SELF_HOSTED" }, + { no: 10, name: "TEAMS_TIER_ENTERPRISE_SELF_SERVE" }, + { no: 6, name: "TEAMS_TIER_WAITLIST_PRO" }, + { no: 7, name: "TEAMS_TIER_TEAMS_ULTIMATE" }, + { no: 8, name: "TEAMS_TIER_PRO_ULTIMATE" } ]); var ModelProvider; -(function (ModelProvider2) { - ModelProvider2[(ModelProvider2['UNSPECIFIED'] = 0)] = 'UNSPECIFIED'; - ModelProvider2[(ModelProvider2['ANTIGRAVITY'] = 1)] = 'ANTIGRAVITY'; - ModelProvider2[(ModelProvider2['OPENAI'] = 2)] = 'OPENAI'; - ModelProvider2[(ModelProvider2['ANTHROPIC'] = 3)] = 'ANTHROPIC'; - ModelProvider2[(ModelProvider2['GOOGLE'] = 4)] = 'GOOGLE'; - ModelProvider2[(ModelProvider2['XAI'] = 5)] = 'XAI'; - ModelProvider2[(ModelProvider2['DEEPSEEK'] = 6)] = 'DEEPSEEK'; +(function(ModelProvider2) { + ModelProvider2[ModelProvider2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + ModelProvider2[ModelProvider2["ANTIGRAVITY"] = 1] = "ANTIGRAVITY"; + ModelProvider2[ModelProvider2["OPENAI"] = 2] = "OPENAI"; + ModelProvider2[ModelProvider2["ANTHROPIC"] = 3] = "ANTHROPIC"; + ModelProvider2[ModelProvider2["GOOGLE"] = 4] = "GOOGLE"; + ModelProvider2[ModelProvider2["XAI"] = 5] = "XAI"; + ModelProvider2[ModelProvider2["DEEPSEEK"] = 6] = "DEEPSEEK"; })(ModelProvider || (ModelProvider = {})); -proto3.util.setEnumType(ModelProvider, 'exa.codeium_common_pb.ModelProvider', [ - { no: 0, name: 'MODEL_PROVIDER_UNSPECIFIED' }, - { no: 1, name: 'MODEL_PROVIDER_ANTIGRAVITY' }, - { no: 2, name: 'MODEL_PROVIDER_OPENAI' }, - { no: 3, name: 'MODEL_PROVIDER_ANTHROPIC' }, - { no: 4, name: 'MODEL_PROVIDER_GOOGLE' }, - { no: 5, name: 'MODEL_PROVIDER_XAI' }, - { no: 6, name: 'MODEL_PROVIDER_DEEPSEEK' }, +proto3.util.setEnumType(ModelProvider, "exa.codeium_common_pb.ModelProvider", [ + { no: 0, name: "MODEL_PROVIDER_UNSPECIFIED" }, + { no: 1, name: "MODEL_PROVIDER_ANTIGRAVITY" }, + { no: 2, name: "MODEL_PROVIDER_OPENAI" }, + { no: 3, name: "MODEL_PROVIDER_ANTHROPIC" }, + { no: 4, name: "MODEL_PROVIDER_GOOGLE" }, + { no: 5, name: "MODEL_PROVIDER_XAI" }, + { no: 6, name: "MODEL_PROVIDER_DEEPSEEK" } ]); var ModelPricingType; -(function (ModelPricingType2) { - ModelPricingType2[(ModelPricingType2['UNSPECIFIED'] = 0)] = 'UNSPECIFIED'; - ModelPricingType2[(ModelPricingType2['STATIC_CREDIT'] = 1)] = 'STATIC_CREDIT'; - ModelPricingType2[(ModelPricingType2['API'] = 2)] = 'API'; - ModelPricingType2[(ModelPricingType2['BYOK'] = 3)] = 'BYOK'; +(function(ModelPricingType2) { + ModelPricingType2[ModelPricingType2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + ModelPricingType2[ModelPricingType2["STATIC_CREDIT"] = 1] = "STATIC_CREDIT"; + ModelPricingType2[ModelPricingType2["API"] = 2] = "API"; + ModelPricingType2[ModelPricingType2["BYOK"] = 3] = "BYOK"; })(ModelPricingType || (ModelPricingType = {})); -proto3.util.setEnumType( - ModelPricingType, - 'exa.codeium_common_pb.ModelPricingType', - [ - { no: 0, name: 'MODEL_PRICING_TYPE_UNSPECIFIED' }, - { no: 1, name: 'MODEL_PRICING_TYPE_STATIC_CREDIT' }, - { no: 2, name: 'MODEL_PRICING_TYPE_API' }, - { no: 3, name: 'MODEL_PRICING_TYPE_BYOK' }, - ], -); +proto3.util.setEnumType(ModelPricingType, "exa.codeium_common_pb.ModelPricingType", [ + { no: 0, name: "MODEL_PRICING_TYPE_UNSPECIFIED" }, + { no: 1, name: "MODEL_PRICING_TYPE_STATIC_CREDIT" }, + { no: 2, name: "MODEL_PRICING_TYPE_API" }, + { no: 3, name: "MODEL_PRICING_TYPE_BYOK" } +]); var TransactionStatus; -(function (TransactionStatus2) { - TransactionStatus2[(TransactionStatus2['UNSPECIFIED'] = 0)] = 'UNSPECIFIED'; - TransactionStatus2[(TransactionStatus2['SUCCEEDED'] = 1)] = 'SUCCEEDED'; - TransactionStatus2[(TransactionStatus2['PROCESSING'] = 2)] = 'PROCESSING'; - TransactionStatus2[(TransactionStatus2['FAILED'] = 3)] = 'FAILED'; - TransactionStatus2[(TransactionStatus2['NO_ACTIVE'] = 4)] = 'NO_ACTIVE'; +(function(TransactionStatus2) { + TransactionStatus2[TransactionStatus2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + TransactionStatus2[TransactionStatus2["SUCCEEDED"] = 1] = "SUCCEEDED"; + TransactionStatus2[TransactionStatus2["PROCESSING"] = 2] = "PROCESSING"; + TransactionStatus2[TransactionStatus2["FAILED"] = 3] = "FAILED"; + TransactionStatus2[TransactionStatus2["NO_ACTIVE"] = 4] = "NO_ACTIVE"; })(TransactionStatus || (TransactionStatus = {})); -proto3.util.setEnumType( - TransactionStatus, - 'exa.codeium_common_pb.TransactionStatus', - [ - { no: 0, name: 'TRANSACTION_STATUS_UNSPECIFIED' }, - { no: 1, name: 'TRANSACTION_STATUS_SUCCEEDED' }, - { no: 2, name: 'TRANSACTION_STATUS_PROCESSING' }, - { no: 3, name: 'TRANSACTION_STATUS_FAILED' }, - { no: 4, name: 'TRANSACTION_STATUS_NO_ACTIVE' }, - ], -); +proto3.util.setEnumType(TransactionStatus, "exa.codeium_common_pb.TransactionStatus", [ + { no: 0, name: "TRANSACTION_STATUS_UNSPECIFIED" }, + { no: 1, name: "TRANSACTION_STATUS_SUCCEEDED" }, + { no: 2, name: "TRANSACTION_STATUS_PROCESSING" }, + { no: 3, name: "TRANSACTION_STATUS_FAILED" }, + { no: 4, name: "TRANSACTION_STATUS_NO_ACTIVE" } +]); var ScmProvider; -(function (ScmProvider2) { - ScmProvider2[(ScmProvider2['UNSPECIFIED'] = 0)] = 'UNSPECIFIED'; - ScmProvider2[(ScmProvider2['GITHUB'] = 1)] = 'GITHUB'; - ScmProvider2[(ScmProvider2['GITLAB'] = 2)] = 'GITLAB'; - ScmProvider2[(ScmProvider2['BITBUCKET'] = 3)] = 'BITBUCKET'; - ScmProvider2[(ScmProvider2['AZURE_DEVOPS'] = 4)] = 'AZURE_DEVOPS'; +(function(ScmProvider2) { + ScmProvider2[ScmProvider2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + ScmProvider2[ScmProvider2["GITHUB"] = 1] = "GITHUB"; + ScmProvider2[ScmProvider2["GITLAB"] = 2] = "GITLAB"; + ScmProvider2[ScmProvider2["BITBUCKET"] = 3] = "BITBUCKET"; + ScmProvider2[ScmProvider2["AZURE_DEVOPS"] = 4] = "AZURE_DEVOPS"; })(ScmProvider || (ScmProvider = {})); -proto3.util.setEnumType(ScmProvider, 'exa.codeium_common_pb.ScmProvider', [ - { no: 0, name: 'SCM_PROVIDER_UNSPECIFIED' }, - { no: 1, name: 'SCM_PROVIDER_GITHUB' }, - { no: 2, name: 'SCM_PROVIDER_GITLAB' }, - { no: 3, name: 'SCM_PROVIDER_BITBUCKET' }, - { no: 4, name: 'SCM_PROVIDER_AZURE_DEVOPS' }, +proto3.util.setEnumType(ScmProvider, "exa.codeium_common_pb.ScmProvider", [ + { no: 0, name: "SCM_PROVIDER_UNSPECIFIED" }, + { no: 1, name: "SCM_PROVIDER_GITHUB" }, + { no: 2, name: "SCM_PROVIDER_GITLAB" }, + { no: 3, name: "SCM_PROVIDER_BITBUCKET" }, + { no: 4, name: "SCM_PROVIDER_AZURE_DEVOPS" } ]); var ScmType; -(function (ScmType2) { - ScmType2[(ScmType2['UNSPECIFIED'] = 0)] = 'UNSPECIFIED'; - ScmType2[(ScmType2['GIT'] = 1)] = 'GIT'; - ScmType2[(ScmType2['PERFORCE'] = 2)] = 'PERFORCE'; +(function(ScmType2) { + ScmType2[ScmType2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + ScmType2[ScmType2["GIT"] = 1] = "GIT"; + ScmType2[ScmType2["PERFORCE"] = 2] = "PERFORCE"; })(ScmType || (ScmType = {})); -proto3.util.setEnumType(ScmType, 'exa.codeium_common_pb.ScmType', [ - { no: 0, name: 'SCM_TYPE_UNSPECIFIED' }, - { no: 1, name: 'SCM_TYPE_GIT' }, - { no: 2, name: 'SCM_TYPE_PERFORCE' }, +proto3.util.setEnumType(ScmType, "exa.codeium_common_pb.ScmType", [ + { no: 0, name: "SCM_TYPE_UNSPECIFIED" }, + { no: 1, name: "SCM_TYPE_GIT" }, + { no: 2, name: "SCM_TYPE_PERFORCE" } ]); var CodeContextType; -(function (CodeContextType2) { - CodeContextType2[(CodeContextType2['UNSPECIFIED'] = 0)] = 'UNSPECIFIED'; - CodeContextType2[(CodeContextType2['FUNCTION'] = 1)] = 'FUNCTION'; - CodeContextType2[(CodeContextType2['CLASS'] = 2)] = 'CLASS'; - CodeContextType2[(CodeContextType2['IMPORT'] = 3)] = 'IMPORT'; - CodeContextType2[(CodeContextType2['NAIVE_LINECHUNK'] = 4)] = - 'NAIVE_LINECHUNK'; - CodeContextType2[(CodeContextType2['REFERENCE_FUNCTION'] = 5)] = - 'REFERENCE_FUNCTION'; - CodeContextType2[(CodeContextType2['REFERENCE_CLASS'] = 6)] = - 'REFERENCE_CLASS'; - CodeContextType2[(CodeContextType2['FILE'] = 7)] = 'FILE'; - CodeContextType2[(CodeContextType2['TERMINAL'] = 8)] = 'TERMINAL'; +(function(CodeContextType2) { + CodeContextType2[CodeContextType2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + CodeContextType2[CodeContextType2["FUNCTION"] = 1] = "FUNCTION"; + CodeContextType2[CodeContextType2["CLASS"] = 2] = "CLASS"; + CodeContextType2[CodeContextType2["IMPORT"] = 3] = "IMPORT"; + CodeContextType2[CodeContextType2["NAIVE_LINECHUNK"] = 4] = "NAIVE_LINECHUNK"; + CodeContextType2[CodeContextType2["REFERENCE_FUNCTION"] = 5] = "REFERENCE_FUNCTION"; + CodeContextType2[CodeContextType2["REFERENCE_CLASS"] = 6] = "REFERENCE_CLASS"; + CodeContextType2[CodeContextType2["FILE"] = 7] = "FILE"; + CodeContextType2[CodeContextType2["TERMINAL"] = 8] = "TERMINAL"; })(CodeContextType || (CodeContextType = {})); -proto3.util.setEnumType( - CodeContextType, - 'exa.codeium_common_pb.CodeContextType', - [ - { no: 0, name: 'CODE_CONTEXT_TYPE_UNSPECIFIED' }, - { no: 1, name: 'CODE_CONTEXT_TYPE_FUNCTION' }, - { no: 2, name: 'CODE_CONTEXT_TYPE_CLASS' }, - { no: 3, name: 'CODE_CONTEXT_TYPE_IMPORT' }, - { no: 4, name: 'CODE_CONTEXT_TYPE_NAIVE_LINECHUNK' }, - { no: 5, name: 'CODE_CONTEXT_TYPE_REFERENCE_FUNCTION' }, - { no: 6, name: 'CODE_CONTEXT_TYPE_REFERENCE_CLASS' }, - { no: 7, name: 'CODE_CONTEXT_TYPE_FILE' }, - { no: 8, name: 'CODE_CONTEXT_TYPE_TERMINAL' }, - ], -); +proto3.util.setEnumType(CodeContextType, "exa.codeium_common_pb.CodeContextType", [ + { no: 0, name: "CODE_CONTEXT_TYPE_UNSPECIFIED" }, + { no: 1, name: "CODE_CONTEXT_TYPE_FUNCTION" }, + { no: 2, name: "CODE_CONTEXT_TYPE_CLASS" }, + { no: 3, name: "CODE_CONTEXT_TYPE_IMPORT" }, + { no: 4, name: "CODE_CONTEXT_TYPE_NAIVE_LINECHUNK" }, + { no: 5, name: "CODE_CONTEXT_TYPE_REFERENCE_FUNCTION" }, + { no: 6, name: "CODE_CONTEXT_TYPE_REFERENCE_CLASS" }, + { no: 7, name: "CODE_CONTEXT_TYPE_FILE" }, + { no: 8, name: "CODE_CONTEXT_TYPE_TERMINAL" } +]); var CodeContextSource; -(function (CodeContextSource2) { - CodeContextSource2[(CodeContextSource2['UNSPECIFIED'] = 0)] = 'UNSPECIFIED'; - CodeContextSource2[(CodeContextSource2['OPEN_DOCS'] = 1)] = 'OPEN_DOCS'; - CodeContextSource2[(CodeContextSource2['SEARCH_RESULT'] = 2)] = - 'SEARCH_RESULT'; - CodeContextSource2[(CodeContextSource2['IMPORT'] = 3)] = 'IMPORT'; - CodeContextSource2[(CodeContextSource2['LOCAL_DIRECTORY'] = 4)] = - 'LOCAL_DIRECTORY'; - CodeContextSource2[(CodeContextSource2['LAST_ACTIVE_DOC'] = 5)] = - 'LAST_ACTIVE_DOC'; - CodeContextSource2[(CodeContextSource2['ORACLE_ITEMS'] = 6)] = 'ORACLE_ITEMS'; - CodeContextSource2[(CodeContextSource2['PINNED_CONTEXT'] = 7)] = - 'PINNED_CONTEXT'; - CodeContextSource2[(CodeContextSource2['RESEARCH_STATE'] = 8)] = - 'RESEARCH_STATE'; - CodeContextSource2[(CodeContextSource2['GROUND_TRUTH_PLAN_EDIT'] = 9)] = - 'GROUND_TRUTH_PLAN_EDIT'; - CodeContextSource2[(CodeContextSource2['COMMIT_GRAPH'] = 10)] = - 'COMMIT_GRAPH'; +(function(CodeContextSource2) { + CodeContextSource2[CodeContextSource2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + CodeContextSource2[CodeContextSource2["OPEN_DOCS"] = 1] = "OPEN_DOCS"; + CodeContextSource2[CodeContextSource2["SEARCH_RESULT"] = 2] = "SEARCH_RESULT"; + CodeContextSource2[CodeContextSource2["IMPORT"] = 3] = "IMPORT"; + CodeContextSource2[CodeContextSource2["LOCAL_DIRECTORY"] = 4] = "LOCAL_DIRECTORY"; + CodeContextSource2[CodeContextSource2["LAST_ACTIVE_DOC"] = 5] = "LAST_ACTIVE_DOC"; + CodeContextSource2[CodeContextSource2["ORACLE_ITEMS"] = 6] = "ORACLE_ITEMS"; + CodeContextSource2[CodeContextSource2["PINNED_CONTEXT"] = 7] = "PINNED_CONTEXT"; + CodeContextSource2[CodeContextSource2["RESEARCH_STATE"] = 8] = "RESEARCH_STATE"; + CodeContextSource2[CodeContextSource2["GROUND_TRUTH_PLAN_EDIT"] = 9] = "GROUND_TRUTH_PLAN_EDIT"; + CodeContextSource2[CodeContextSource2["COMMIT_GRAPH"] = 10] = "COMMIT_GRAPH"; })(CodeContextSource || (CodeContextSource = {})); -proto3.util.setEnumType( - CodeContextSource, - 'exa.codeium_common_pb.CodeContextSource', - [ - { no: 0, name: 'CODE_CONTEXT_SOURCE_UNSPECIFIED' }, - { no: 1, name: 'CODE_CONTEXT_SOURCE_OPEN_DOCS' }, - { no: 2, name: 'CODE_CONTEXT_SOURCE_SEARCH_RESULT' }, - { no: 3, name: 'CODE_CONTEXT_SOURCE_IMPORT' }, - { no: 4, name: 'CODE_CONTEXT_SOURCE_LOCAL_DIRECTORY' }, - { no: 5, name: 'CODE_CONTEXT_SOURCE_LAST_ACTIVE_DOC' }, - { no: 6, name: 'CODE_CONTEXT_SOURCE_ORACLE_ITEMS' }, - { no: 7, name: 'CODE_CONTEXT_SOURCE_PINNED_CONTEXT' }, - { no: 8, name: 'CODE_CONTEXT_SOURCE_RESEARCH_STATE' }, - { no: 9, name: 'CODE_CONTEXT_SOURCE_GROUND_TRUTH_PLAN_EDIT' }, - { no: 10, name: 'CODE_CONTEXT_SOURCE_COMMIT_GRAPH' }, - ], -); +proto3.util.setEnumType(CodeContextSource, "exa.codeium_common_pb.CodeContextSource", [ + { no: 0, name: "CODE_CONTEXT_SOURCE_UNSPECIFIED" }, + { no: 1, name: "CODE_CONTEXT_SOURCE_OPEN_DOCS" }, + { no: 2, name: "CODE_CONTEXT_SOURCE_SEARCH_RESULT" }, + { no: 3, name: "CODE_CONTEXT_SOURCE_IMPORT" }, + { no: 4, name: "CODE_CONTEXT_SOURCE_LOCAL_DIRECTORY" }, + { no: 5, name: "CODE_CONTEXT_SOURCE_LAST_ACTIVE_DOC" }, + { no: 6, name: "CODE_CONTEXT_SOURCE_ORACLE_ITEMS" }, + { no: 7, name: "CODE_CONTEXT_SOURCE_PINNED_CONTEXT" }, + { no: 8, name: "CODE_CONTEXT_SOURCE_RESEARCH_STATE" }, + { no: 9, name: "CODE_CONTEXT_SOURCE_GROUND_TRUTH_PLAN_EDIT" }, + { no: 10, name: "CODE_CONTEXT_SOURCE_COMMIT_GRAPH" } +]); var ContextSnippetType; -(function (ContextSnippetType2) { - ContextSnippetType2[(ContextSnippetType2['UNSPECIFIED'] = 0)] = 'UNSPECIFIED'; - ContextSnippetType2[(ContextSnippetType2['RAW_SOURCE'] = 1)] = 'RAW_SOURCE'; - ContextSnippetType2[(ContextSnippetType2['SIGNATURE'] = 2)] = 'SIGNATURE'; - ContextSnippetType2[(ContextSnippetType2['NODEPATH'] = 3)] = 'NODEPATH'; +(function(ContextSnippetType2) { + ContextSnippetType2[ContextSnippetType2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + ContextSnippetType2[ContextSnippetType2["RAW_SOURCE"] = 1] = "RAW_SOURCE"; + ContextSnippetType2[ContextSnippetType2["SIGNATURE"] = 2] = "SIGNATURE"; + ContextSnippetType2[ContextSnippetType2["NODEPATH"] = 3] = "NODEPATH"; })(ContextSnippetType || (ContextSnippetType = {})); -proto3.util.setEnumType( - ContextSnippetType, - 'exa.codeium_common_pb.ContextSnippetType', - [ - { no: 0, name: 'CONTEXT_SNIPPET_TYPE_UNSPECIFIED' }, - { no: 1, name: 'CONTEXT_SNIPPET_TYPE_RAW_SOURCE' }, - { no: 2, name: 'CONTEXT_SNIPPET_TYPE_SIGNATURE' }, - { no: 3, name: 'CONTEXT_SNIPPET_TYPE_NODEPATH' }, - ], -); +proto3.util.setEnumType(ContextSnippetType, "exa.codeium_common_pb.ContextSnippetType", [ + { no: 0, name: "CONTEXT_SNIPPET_TYPE_UNSPECIFIED" }, + { no: 1, name: "CONTEXT_SNIPPET_TYPE_RAW_SOURCE" }, + { no: 2, name: "CONTEXT_SNIPPET_TYPE_SIGNATURE" }, + { no: 3, name: "CONTEXT_SNIPPET_TYPE_NODEPATH" } +]); var CommitIntentType; -(function (CommitIntentType2) { - CommitIntentType2[(CommitIntentType2['UNSPECIFIED'] = 0)] = 'UNSPECIFIED'; - CommitIntentType2[(CommitIntentType2['COMMIT_MESSAGE'] = 1)] = - 'COMMIT_MESSAGE'; +(function(CommitIntentType2) { + CommitIntentType2[CommitIntentType2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + CommitIntentType2[CommitIntentType2["COMMIT_MESSAGE"] = 1] = "COMMIT_MESSAGE"; })(CommitIntentType || (CommitIntentType = {})); -proto3.util.setEnumType( - CommitIntentType, - 'exa.codeium_common_pb.CommitIntentType', - [ - { no: 0, name: 'COMMIT_INTENT_TYPE_UNSPECIFIED' }, - { no: 1, name: 'COMMIT_INTENT_TYPE_COMMIT_MESSAGE' }, - ], -); +proto3.util.setEnumType(CommitIntentType, "exa.codeium_common_pb.CommitIntentType", [ + { no: 0, name: "COMMIT_INTENT_TYPE_UNSPECIFIED" }, + { no: 1, name: "COMMIT_INTENT_TYPE_COMMIT_MESSAGE" } +]); var GpuType; -(function (GpuType2) { - GpuType2[(GpuType2['UNSPECIFIED'] = 0)] = 'UNSPECIFIED'; - GpuType2[(GpuType2['L4'] = 1)] = 'L4'; - GpuType2[(GpuType2['T4'] = 2)] = 'T4'; - GpuType2[(GpuType2['A10'] = 3)] = 'A10'; - GpuType2[(GpuType2['A100'] = 4)] = 'A100'; - GpuType2[(GpuType2['V100'] = 5)] = 'V100'; - GpuType2[(GpuType2['A5000'] = 6)] = 'A5000'; +(function(GpuType2) { + GpuType2[GpuType2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + GpuType2[GpuType2["L4"] = 1] = "L4"; + GpuType2[GpuType2["T4"] = 2] = "T4"; + GpuType2[GpuType2["A10"] = 3] = "A10"; + GpuType2[GpuType2["A100"] = 4] = "A100"; + GpuType2[GpuType2["V100"] = 5] = "V100"; + GpuType2[GpuType2["A5000"] = 6] = "A5000"; })(GpuType || (GpuType = {})); -proto3.util.setEnumType(GpuType, 'exa.codeium_common_pb.GpuType', [ - { no: 0, name: 'GPU_TYPE_UNSPECIFIED' }, - { no: 1, name: 'GPU_TYPE_L4' }, - { no: 2, name: 'GPU_TYPE_T4' }, - { no: 3, name: 'GPU_TYPE_A10' }, - { no: 4, name: 'GPU_TYPE_A100' }, - { no: 5, name: 'GPU_TYPE_V100' }, - { no: 6, name: 'GPU_TYPE_A5000' }, +proto3.util.setEnumType(GpuType, "exa.codeium_common_pb.GpuType", [ + { no: 0, name: "GPU_TYPE_UNSPECIFIED" }, + { no: 1, name: "GPU_TYPE_L4" }, + { no: 2, name: "GPU_TYPE_T4" }, + { no: 3, name: "GPU_TYPE_A10" }, + { no: 4, name: "GPU_TYPE_A100" }, + { no: 5, name: "GPU_TYPE_V100" }, + { no: 6, name: "GPU_TYPE_A5000" } ]); var ContextInclusionType; -(function (ContextInclusionType2) { - ContextInclusionType2[(ContextInclusionType2['UNSPECIFIED'] = 0)] = - 'UNSPECIFIED'; - ContextInclusionType2[(ContextInclusionType2['INCLUDE'] = 1)] = 'INCLUDE'; - ContextInclusionType2[(ContextInclusionType2['EXCLUDE'] = 2)] = 'EXCLUDE'; +(function(ContextInclusionType2) { + ContextInclusionType2[ContextInclusionType2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + ContextInclusionType2[ContextInclusionType2["INCLUDE"] = 1] = "INCLUDE"; + ContextInclusionType2[ContextInclusionType2["EXCLUDE"] = 2] = "EXCLUDE"; })(ContextInclusionType || (ContextInclusionType = {})); -proto3.util.setEnumType( - ContextInclusionType, - 'exa.codeium_common_pb.ContextInclusionType', - [ - { no: 0, name: 'CONTEXT_INCLUSION_TYPE_UNSPECIFIED' }, - { no: 1, name: 'CONTEXT_INCLUSION_TYPE_INCLUDE' }, - { no: 2, name: 'CONTEXT_INCLUSION_TYPE_EXCLUDE' }, - ], -); +proto3.util.setEnumType(ContextInclusionType, "exa.codeium_common_pb.ContextInclusionType", [ + { no: 0, name: "CONTEXT_INCLUSION_TYPE_UNSPECIFIED" }, + { no: 1, name: "CONTEXT_INCLUSION_TYPE_INCLUDE" }, + { no: 2, name: "CONTEXT_INCLUSION_TYPE_EXCLUDE" } +]); var ThemePreference; -(function (ThemePreference2) { - ThemePreference2[(ThemePreference2['UNSPECIFIED'] = 0)] = 'UNSPECIFIED'; - ThemePreference2[(ThemePreference2['AUTO'] = 1)] = 'AUTO'; - ThemePreference2[(ThemePreference2['LIGHT'] = 2)] = 'LIGHT'; - ThemePreference2[(ThemePreference2['DARK'] = 3)] = 'DARK'; +(function(ThemePreference2) { + ThemePreference2[ThemePreference2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + ThemePreference2[ThemePreference2["AUTO"] = 1] = "AUTO"; + ThemePreference2[ThemePreference2["LIGHT"] = 2] = "LIGHT"; + ThemePreference2[ThemePreference2["DARK"] = 3] = "DARK"; })(ThemePreference || (ThemePreference = {})); -proto3.util.setEnumType( - ThemePreference, - 'exa.codeium_common_pb.ThemePreference', - [ - { no: 0, name: 'THEME_PREFERENCE_UNSPECIFIED' }, - { no: 1, name: 'THEME_PREFERENCE_AUTO' }, - { no: 2, name: 'THEME_PREFERENCE_LIGHT' }, - { no: 3, name: 'THEME_PREFERENCE_DARK' }, - ], -); +proto3.util.setEnumType(ThemePreference, "exa.codeium_common_pb.ThemePreference", [ + { no: 0, name: "THEME_PREFERENCE_UNSPECIFIED" }, + { no: 1, name: "THEME_PREFERENCE_AUTO" }, + { no: 2, name: "THEME_PREFERENCE_LIGHT" }, + { no: 3, name: "THEME_PREFERENCE_DARK" } +]); var AutocompleteSpeed; -(function (AutocompleteSpeed2) { - AutocompleteSpeed2[(AutocompleteSpeed2['UNSPECIFIED'] = 0)] = 'UNSPECIFIED'; - AutocompleteSpeed2[(AutocompleteSpeed2['SLOW'] = 1)] = 'SLOW'; - AutocompleteSpeed2[(AutocompleteSpeed2['DEFAULT'] = 2)] = 'DEFAULT'; - AutocompleteSpeed2[(AutocompleteSpeed2['FAST'] = 3)] = 'FAST'; +(function(AutocompleteSpeed2) { + AutocompleteSpeed2[AutocompleteSpeed2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + AutocompleteSpeed2[AutocompleteSpeed2["SLOW"] = 1] = "SLOW"; + AutocompleteSpeed2[AutocompleteSpeed2["DEFAULT"] = 2] = "DEFAULT"; + AutocompleteSpeed2[AutocompleteSpeed2["FAST"] = 3] = "FAST"; })(AutocompleteSpeed || (AutocompleteSpeed = {})); -proto3.util.setEnumType( - AutocompleteSpeed, - 'exa.codeium_common_pb.AutocompleteSpeed', - [ - { no: 0, name: 'AUTOCOMPLETE_SPEED_UNSPECIFIED' }, - { no: 1, name: 'AUTOCOMPLETE_SPEED_SLOW' }, - { no: 2, name: 'AUTOCOMPLETE_SPEED_DEFAULT' }, - { no: 3, name: 'AUTOCOMPLETE_SPEED_FAST' }, - ], -); +proto3.util.setEnumType(AutocompleteSpeed, "exa.codeium_common_pb.AutocompleteSpeed", [ + { no: 0, name: "AUTOCOMPLETE_SPEED_UNSPECIFIED" }, + { no: 1, name: "AUTOCOMPLETE_SPEED_SLOW" }, + { no: 2, name: "AUTOCOMPLETE_SPEED_DEFAULT" }, + { no: 3, name: "AUTOCOMPLETE_SPEED_FAST" } +]); var TabEnabled; -(function (TabEnabled2) { - TabEnabled2[(TabEnabled2['UNSPECIFIED'] = 0)] = 'UNSPECIFIED'; - TabEnabled2[(TabEnabled2['OFF'] = 1)] = 'OFF'; - TabEnabled2[(TabEnabled2['ON'] = 2)] = 'ON'; +(function(TabEnabled2) { + TabEnabled2[TabEnabled2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + TabEnabled2[TabEnabled2["OFF"] = 1] = "OFF"; + TabEnabled2[TabEnabled2["ON"] = 2] = "ON"; })(TabEnabled || (TabEnabled = {})); -proto3.util.setEnumType(TabEnabled, 'exa.codeium_common_pb.TabEnabled', [ - { no: 0, name: 'TAB_ENABLED_UNSPECIFIED' }, - { no: 1, name: 'TAB_ENABLED_OFF' }, - { no: 2, name: 'TAB_ENABLED_ON' }, +proto3.util.setEnumType(TabEnabled, "exa.codeium_common_pb.TabEnabled", [ + { no: 0, name: "TAB_ENABLED_UNSPECIFIED" }, + { no: 1, name: "TAB_ENABLED_OFF" }, + { no: 2, name: "TAB_ENABLED_ON" } ]); var CascadeCommandsAutoExecution; -(function (CascadeCommandsAutoExecution2) { - CascadeCommandsAutoExecution2[ - (CascadeCommandsAutoExecution2['UNSPECIFIED'] = 0) - ] = 'UNSPECIFIED'; - CascadeCommandsAutoExecution2[(CascadeCommandsAutoExecution2['OFF'] = 1)] = - 'OFF'; - CascadeCommandsAutoExecution2[(CascadeCommandsAutoExecution2['AUTO'] = 2)] = - 'AUTO'; - CascadeCommandsAutoExecution2[(CascadeCommandsAutoExecution2['EAGER'] = 3)] = - 'EAGER'; +(function(CascadeCommandsAutoExecution2) { + CascadeCommandsAutoExecution2[CascadeCommandsAutoExecution2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + CascadeCommandsAutoExecution2[CascadeCommandsAutoExecution2["OFF"] = 1] = "OFF"; + CascadeCommandsAutoExecution2[CascadeCommandsAutoExecution2["AUTO"] = 2] = "AUTO"; + CascadeCommandsAutoExecution2[CascadeCommandsAutoExecution2["EAGER"] = 3] = "EAGER"; })(CascadeCommandsAutoExecution || (CascadeCommandsAutoExecution = {})); -proto3.util.setEnumType( - CascadeCommandsAutoExecution, - 'exa.codeium_common_pb.CascadeCommandsAutoExecution', - [ - { no: 0, name: 'CASCADE_COMMANDS_AUTO_EXECUTION_UNSPECIFIED' }, - { no: 1, name: 'CASCADE_COMMANDS_AUTO_EXECUTION_OFF' }, - { no: 2, name: 'CASCADE_COMMANDS_AUTO_EXECUTION_AUTO' }, - { no: 3, name: 'CASCADE_COMMANDS_AUTO_EXECUTION_EAGER' }, - ], -); +proto3.util.setEnumType(CascadeCommandsAutoExecution, "exa.codeium_common_pb.CascadeCommandsAutoExecution", [ + { no: 0, name: "CASCADE_COMMANDS_AUTO_EXECUTION_UNSPECIFIED" }, + { no: 1, name: "CASCADE_COMMANDS_AUTO_EXECUTION_OFF" }, + { no: 2, name: "CASCADE_COMMANDS_AUTO_EXECUTION_AUTO" }, + { no: 3, name: "CASCADE_COMMANDS_AUTO_EXECUTION_EAGER" } +]); var ArtifactReviewMode; -(function (ArtifactReviewMode2) { - ArtifactReviewMode2[(ArtifactReviewMode2['UNSPECIFIED'] = 0)] = 'UNSPECIFIED'; - ArtifactReviewMode2[(ArtifactReviewMode2['ALWAYS'] = 1)] = 'ALWAYS'; - ArtifactReviewMode2[(ArtifactReviewMode2['TURBO'] = 2)] = 'TURBO'; - ArtifactReviewMode2[(ArtifactReviewMode2['AUTO'] = 3)] = 'AUTO'; +(function(ArtifactReviewMode2) { + ArtifactReviewMode2[ArtifactReviewMode2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + ArtifactReviewMode2[ArtifactReviewMode2["ALWAYS"] = 1] = "ALWAYS"; + ArtifactReviewMode2[ArtifactReviewMode2["TURBO"] = 2] = "TURBO"; + ArtifactReviewMode2[ArtifactReviewMode2["AUTO"] = 3] = "AUTO"; })(ArtifactReviewMode || (ArtifactReviewMode = {})); -proto3.util.setEnumType( - ArtifactReviewMode, - 'exa.codeium_common_pb.ArtifactReviewMode', - [ - { no: 0, name: 'ARTIFACT_REVIEW_MODE_UNSPECIFIED' }, - { no: 1, name: 'ARTIFACT_REVIEW_MODE_ALWAYS' }, - { no: 2, name: 'ARTIFACT_REVIEW_MODE_TURBO' }, - { no: 3, name: 'ARTIFACT_REVIEW_MODE_AUTO' }, - ], -); +proto3.util.setEnumType(ArtifactReviewMode, "exa.codeium_common_pb.ArtifactReviewMode", [ + { no: 0, name: "ARTIFACT_REVIEW_MODE_UNSPECIFIED" }, + { no: 1, name: "ARTIFACT_REVIEW_MODE_ALWAYS" }, + { no: 2, name: "ARTIFACT_REVIEW_MODE_TURBO" }, + { no: 3, name: "ARTIFACT_REVIEW_MODE_AUTO" } +]); var ExtensionPanelTab; -(function (ExtensionPanelTab2) { - ExtensionPanelTab2[(ExtensionPanelTab2['UNSPECIFIED'] = 0)] = 'UNSPECIFIED'; - ExtensionPanelTab2[(ExtensionPanelTab2['CHAT'] = 1)] = 'CHAT'; - ExtensionPanelTab2[(ExtensionPanelTab2['PROFILE'] = 2)] = 'PROFILE'; - ExtensionPanelTab2[(ExtensionPanelTab2['BRAIN'] = 4)] = 'BRAIN'; - ExtensionPanelTab2[(ExtensionPanelTab2['COMMAND'] = 5)] = 'COMMAND'; - ExtensionPanelTab2[(ExtensionPanelTab2['CORTEX'] = 6)] = 'CORTEX'; - ExtensionPanelTab2[(ExtensionPanelTab2['DEBUG'] = 7)] = 'DEBUG'; +(function(ExtensionPanelTab2) { + ExtensionPanelTab2[ExtensionPanelTab2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + ExtensionPanelTab2[ExtensionPanelTab2["CHAT"] = 1] = "CHAT"; + ExtensionPanelTab2[ExtensionPanelTab2["PROFILE"] = 2] = "PROFILE"; + ExtensionPanelTab2[ExtensionPanelTab2["BRAIN"] = 4] = "BRAIN"; + ExtensionPanelTab2[ExtensionPanelTab2["COMMAND"] = 5] = "COMMAND"; + ExtensionPanelTab2[ExtensionPanelTab2["CORTEX"] = 6] = "CORTEX"; + ExtensionPanelTab2[ExtensionPanelTab2["DEBUG"] = 7] = "DEBUG"; })(ExtensionPanelTab || (ExtensionPanelTab = {})); -proto3.util.setEnumType( - ExtensionPanelTab, - 'exa.codeium_common_pb.ExtensionPanelTab', - [ - { no: 0, name: 'EXTENSION_PANEL_TAB_UNSPECIFIED' }, - { no: 1, name: 'EXTENSION_PANEL_TAB_CHAT' }, - { no: 2, name: 'EXTENSION_PANEL_TAB_PROFILE' }, - { no: 4, name: 'EXTENSION_PANEL_TAB_BRAIN' }, - { no: 5, name: 'EXTENSION_PANEL_TAB_COMMAND' }, - { no: 6, name: 'EXTENSION_PANEL_TAB_CORTEX' }, - { no: 7, name: 'EXTENSION_PANEL_TAB_DEBUG' }, - ], -); +proto3.util.setEnumType(ExtensionPanelTab, "exa.codeium_common_pb.ExtensionPanelTab", [ + { no: 0, name: "EXTENSION_PANEL_TAB_UNSPECIFIED" }, + { no: 1, name: "EXTENSION_PANEL_TAB_CHAT" }, + { no: 2, name: "EXTENSION_PANEL_TAB_PROFILE" }, + { no: 4, name: "EXTENSION_PANEL_TAB_BRAIN" }, + { no: 5, name: "EXTENSION_PANEL_TAB_COMMAND" }, + { no: 6, name: "EXTENSION_PANEL_TAB_CORTEX" }, + { no: 7, name: "EXTENSION_PANEL_TAB_DEBUG" } +]); var RememberLastModelSelection; -(function (RememberLastModelSelection2) { - RememberLastModelSelection2[ - (RememberLastModelSelection2['UNSPECIFIED'] = 0) - ] = 'UNSPECIFIED'; - RememberLastModelSelection2[(RememberLastModelSelection2['ENABLED'] = 1)] = - 'ENABLED'; - RememberLastModelSelection2[(RememberLastModelSelection2['DISABLED'] = 2)] = - 'DISABLED'; +(function(RememberLastModelSelection2) { + RememberLastModelSelection2[RememberLastModelSelection2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + RememberLastModelSelection2[RememberLastModelSelection2["ENABLED"] = 1] = "ENABLED"; + RememberLastModelSelection2[RememberLastModelSelection2["DISABLED"] = 2] = "DISABLED"; })(RememberLastModelSelection || (RememberLastModelSelection = {})); -proto3.util.setEnumType( - RememberLastModelSelection, - 'exa.codeium_common_pb.RememberLastModelSelection', - [ - { no: 0, name: 'REMEMBER_LAST_MODEL_SELECTION_UNSPECIFIED' }, - { no: 1, name: 'REMEMBER_LAST_MODEL_SELECTION_ENABLED' }, - { no: 2, name: 'REMEMBER_LAST_MODEL_SELECTION_DISABLED' }, - ], -); +proto3.util.setEnumType(RememberLastModelSelection, "exa.codeium_common_pb.RememberLastModelSelection", [ + { no: 0, name: "REMEMBER_LAST_MODEL_SELECTION_UNSPECIFIED" }, + { no: 1, name: "REMEMBER_LAST_MODEL_SELECTION_ENABLED" }, + { no: 2, name: "REMEMBER_LAST_MODEL_SELECTION_DISABLED" } +]); var CascadeNUXEvent; -(function (CascadeNUXEvent2) { - CascadeNUXEvent2[(CascadeNUXEvent2['CASCADE_NUX_EVENT_UNSPECIFIED'] = 0)] = - 'CASCADE_NUX_EVENT_UNSPECIFIED'; - CascadeNUXEvent2[(CascadeNUXEvent2['CASCADE_NUX_EVENT_DIFF_OVERVIEW'] = 1)] = - 'CASCADE_NUX_EVENT_DIFF_OVERVIEW'; - CascadeNUXEvent2[(CascadeNUXEvent2['CASCADE_NUX_EVENT_WEB_SEARCH'] = 2)] = - 'CASCADE_NUX_EVENT_WEB_SEARCH'; - CascadeNUXEvent2[ - (CascadeNUXEvent2['CASCADE_NUX_EVENT_NEW_MODELS_WAVE2'] = 3) - ] = 'CASCADE_NUX_EVENT_NEW_MODELS_WAVE2'; - CascadeNUXEvent2[(CascadeNUXEvent2['CASCADE_NUX_EVENT_TOOL_CALL'] = 4)] = - 'CASCADE_NUX_EVENT_TOOL_CALL'; - CascadeNUXEvent2[ - (CascadeNUXEvent2['CASCADE_NUX_EVENT_MODEL_SELECTOR_NUX'] = 5) - ] = 'CASCADE_NUX_EVENT_MODEL_SELECTOR_NUX'; - CascadeNUXEvent2[ - (CascadeNUXEvent2['CASCADE_NUX_EVENT_TOOL_CALL_PRICING_NUX'] = 6) - ] = 'CASCADE_NUX_EVENT_TOOL_CALL_PRICING_NUX'; - CascadeNUXEvent2[ - (CascadeNUXEvent2['CASCADE_NUX_EVENT_WRITE_CHAT_MODE'] = 7) - ] = 'CASCADE_NUX_EVENT_WRITE_CHAT_MODE'; - CascadeNUXEvent2[(CascadeNUXEvent2['CASCADE_NUX_EVENT_REVERT_STEP'] = 8)] = - 'CASCADE_NUX_EVENT_REVERT_STEP'; - CascadeNUXEvent2[(CascadeNUXEvent2['CASCADE_NUX_EVENT_RULES'] = 9)] = - 'CASCADE_NUX_EVENT_RULES'; - CascadeNUXEvent2[(CascadeNUXEvent2['CASCADE_NUX_EVENT_WEB_MENTION'] = 10)] = - 'CASCADE_NUX_EVENT_WEB_MENTION'; - CascadeNUXEvent2[ - (CascadeNUXEvent2['CASCADE_NUX_EVENT_BACKGROUND_CASCADE'] = 11) - ] = 'CASCADE_NUX_EVENT_BACKGROUND_CASCADE'; - CascadeNUXEvent2[ - (CascadeNUXEvent2['CASCADE_NUX_EVENT_ANTHROPIC_API_PRICING'] = 12) - ] = 'CASCADE_NUX_EVENT_ANTHROPIC_API_PRICING'; - CascadeNUXEvent2[(CascadeNUXEvent2['CASCADE_NUX_EVENT_PLAN_MODE'] = 13)] = - 'CASCADE_NUX_EVENT_PLAN_MODE'; - CascadeNUXEvent2[ - (CascadeNUXEvent2['CASCADE_NUX_EVENT_OPEN_BROWSER_URL'] = 14) - ] = 'CASCADE_NUX_EVENT_OPEN_BROWSER_URL'; +(function(CascadeNUXEvent2) { + CascadeNUXEvent2[CascadeNUXEvent2["CASCADE_NUX_EVENT_UNSPECIFIED"] = 0] = "CASCADE_NUX_EVENT_UNSPECIFIED"; + CascadeNUXEvent2[CascadeNUXEvent2["CASCADE_NUX_EVENT_DIFF_OVERVIEW"] = 1] = "CASCADE_NUX_EVENT_DIFF_OVERVIEW"; + CascadeNUXEvent2[CascadeNUXEvent2["CASCADE_NUX_EVENT_WEB_SEARCH"] = 2] = "CASCADE_NUX_EVENT_WEB_SEARCH"; + CascadeNUXEvent2[CascadeNUXEvent2["CASCADE_NUX_EVENT_NEW_MODELS_WAVE2"] = 3] = "CASCADE_NUX_EVENT_NEW_MODELS_WAVE2"; + CascadeNUXEvent2[CascadeNUXEvent2["CASCADE_NUX_EVENT_TOOL_CALL"] = 4] = "CASCADE_NUX_EVENT_TOOL_CALL"; + CascadeNUXEvent2[CascadeNUXEvent2["CASCADE_NUX_EVENT_MODEL_SELECTOR_NUX"] = 5] = "CASCADE_NUX_EVENT_MODEL_SELECTOR_NUX"; + CascadeNUXEvent2[CascadeNUXEvent2["CASCADE_NUX_EVENT_TOOL_CALL_PRICING_NUX"] = 6] = "CASCADE_NUX_EVENT_TOOL_CALL_PRICING_NUX"; + CascadeNUXEvent2[CascadeNUXEvent2["CASCADE_NUX_EVENT_WRITE_CHAT_MODE"] = 7] = "CASCADE_NUX_EVENT_WRITE_CHAT_MODE"; + CascadeNUXEvent2[CascadeNUXEvent2["CASCADE_NUX_EVENT_REVERT_STEP"] = 8] = "CASCADE_NUX_EVENT_REVERT_STEP"; + CascadeNUXEvent2[CascadeNUXEvent2["CASCADE_NUX_EVENT_RULES"] = 9] = "CASCADE_NUX_EVENT_RULES"; + CascadeNUXEvent2[CascadeNUXEvent2["CASCADE_NUX_EVENT_WEB_MENTION"] = 10] = "CASCADE_NUX_EVENT_WEB_MENTION"; + CascadeNUXEvent2[CascadeNUXEvent2["CASCADE_NUX_EVENT_BACKGROUND_CASCADE"] = 11] = "CASCADE_NUX_EVENT_BACKGROUND_CASCADE"; + CascadeNUXEvent2[CascadeNUXEvent2["CASCADE_NUX_EVENT_ANTHROPIC_API_PRICING"] = 12] = "CASCADE_NUX_EVENT_ANTHROPIC_API_PRICING"; + CascadeNUXEvent2[CascadeNUXEvent2["CASCADE_NUX_EVENT_PLAN_MODE"] = 13] = "CASCADE_NUX_EVENT_PLAN_MODE"; + CascadeNUXEvent2[CascadeNUXEvent2["CASCADE_NUX_EVENT_OPEN_BROWSER_URL"] = 14] = "CASCADE_NUX_EVENT_OPEN_BROWSER_URL"; })(CascadeNUXEvent || (CascadeNUXEvent = {})); -proto3.util.setEnumType( - CascadeNUXEvent, - 'exa.codeium_common_pb.CascadeNUXEvent', - [ - { no: 0, name: 'CASCADE_NUX_EVENT_UNSPECIFIED' }, - { no: 1, name: 'CASCADE_NUX_EVENT_DIFF_OVERVIEW' }, - { no: 2, name: 'CASCADE_NUX_EVENT_WEB_SEARCH' }, - { no: 3, name: 'CASCADE_NUX_EVENT_NEW_MODELS_WAVE2' }, - { no: 4, name: 'CASCADE_NUX_EVENT_TOOL_CALL' }, - { no: 5, name: 'CASCADE_NUX_EVENT_MODEL_SELECTOR_NUX' }, - { no: 6, name: 'CASCADE_NUX_EVENT_TOOL_CALL_PRICING_NUX' }, - { no: 7, name: 'CASCADE_NUX_EVENT_WRITE_CHAT_MODE' }, - { no: 8, name: 'CASCADE_NUX_EVENT_REVERT_STEP' }, - { no: 9, name: 'CASCADE_NUX_EVENT_RULES' }, - { no: 10, name: 'CASCADE_NUX_EVENT_WEB_MENTION' }, - { no: 11, name: 'CASCADE_NUX_EVENT_BACKGROUND_CASCADE' }, - { no: 12, name: 'CASCADE_NUX_EVENT_ANTHROPIC_API_PRICING' }, - { no: 13, name: 'CASCADE_NUX_EVENT_PLAN_MODE' }, - { no: 14, name: 'CASCADE_NUX_EVENT_OPEN_BROWSER_URL' }, - ], -); +proto3.util.setEnumType(CascadeNUXEvent, "exa.codeium_common_pb.CascadeNUXEvent", [ + { no: 0, name: "CASCADE_NUX_EVENT_UNSPECIFIED" }, + { no: 1, name: "CASCADE_NUX_EVENT_DIFF_OVERVIEW" }, + { no: 2, name: "CASCADE_NUX_EVENT_WEB_SEARCH" }, + { no: 3, name: "CASCADE_NUX_EVENT_NEW_MODELS_WAVE2" }, + { no: 4, name: "CASCADE_NUX_EVENT_TOOL_CALL" }, + { no: 5, name: "CASCADE_NUX_EVENT_MODEL_SELECTOR_NUX" }, + { no: 6, name: "CASCADE_NUX_EVENT_TOOL_CALL_PRICING_NUX" }, + { no: 7, name: "CASCADE_NUX_EVENT_WRITE_CHAT_MODE" }, + { no: 8, name: "CASCADE_NUX_EVENT_REVERT_STEP" }, + { no: 9, name: "CASCADE_NUX_EVENT_RULES" }, + { no: 10, name: "CASCADE_NUX_EVENT_WEB_MENTION" }, + { no: 11, name: "CASCADE_NUX_EVENT_BACKGROUND_CASCADE" }, + { no: 12, name: "CASCADE_NUX_EVENT_ANTHROPIC_API_PRICING" }, + { no: 13, name: "CASCADE_NUX_EVENT_PLAN_MODE" }, + { no: 14, name: "CASCADE_NUX_EVENT_OPEN_BROWSER_URL" } +]); var UserNUXEvent; -(function (UserNUXEvent2) { - UserNUXEvent2[(UserNUXEvent2['USER_NUX_EVENT_UNSPECIFIED'] = 0)] = - 'USER_NUX_EVENT_UNSPECIFIED'; - UserNUXEvent2[ - (UserNUXEvent2['USER_NUX_EVENT_DISMISS_ANTIGRAVITY_CROSS_SELL'] = 1) - ] = 'USER_NUX_EVENT_DISMISS_ANTIGRAVITY_CROSS_SELL'; +(function(UserNUXEvent2) { + UserNUXEvent2[UserNUXEvent2["USER_NUX_EVENT_UNSPECIFIED"] = 0] = "USER_NUX_EVENT_UNSPECIFIED"; + UserNUXEvent2[UserNUXEvent2["USER_NUX_EVENT_DISMISS_ANTIGRAVITY_CROSS_SELL"] = 1] = "USER_NUX_EVENT_DISMISS_ANTIGRAVITY_CROSS_SELL"; })(UserNUXEvent || (UserNUXEvent = {})); -proto3.util.setEnumType(UserNUXEvent, 'exa.codeium_common_pb.UserNUXEvent', [ - { no: 0, name: 'USER_NUX_EVENT_UNSPECIFIED' }, - { no: 1, name: 'USER_NUX_EVENT_DISMISS_ANTIGRAVITY_CROSS_SELL' }, +proto3.util.setEnumType(UserNUXEvent, "exa.codeium_common_pb.UserNUXEvent", [ + { no: 0, name: "USER_NUX_EVENT_UNSPECIFIED" }, + { no: 1, name: "USER_NUX_EVENT_DISMISS_ANTIGRAVITY_CROSS_SELL" } ]); var ConversationalPlannerMode; -(function (ConversationalPlannerMode2) { - ConversationalPlannerMode2[(ConversationalPlannerMode2['UNSPECIFIED'] = 0)] = - 'UNSPECIFIED'; - ConversationalPlannerMode2[(ConversationalPlannerMode2['DEFAULT'] = 1)] = - 'DEFAULT'; - ConversationalPlannerMode2[(ConversationalPlannerMode2['READ_ONLY'] = 2)] = - 'READ_ONLY'; +(function(ConversationalPlannerMode2) { + ConversationalPlannerMode2[ConversationalPlannerMode2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + ConversationalPlannerMode2[ConversationalPlannerMode2["DEFAULT"] = 1] = "DEFAULT"; + ConversationalPlannerMode2[ConversationalPlannerMode2["READ_ONLY"] = 2] = "READ_ONLY"; })(ConversationalPlannerMode || (ConversationalPlannerMode = {})); -proto3.util.setEnumType( - ConversationalPlannerMode, - 'exa.codeium_common_pb.ConversationalPlannerMode', - [ - { no: 0, name: 'CONVERSATIONAL_PLANNER_MODE_UNSPECIFIED' }, - { no: 1, name: 'CONVERSATIONAL_PLANNER_MODE_DEFAULT' }, - { no: 2, name: 'CONVERSATIONAL_PLANNER_MODE_READ_ONLY' }, - ], -); +proto3.util.setEnumType(ConversationalPlannerMode, "exa.codeium_common_pb.ConversationalPlannerMode", [ + { no: 0, name: "CONVERSATIONAL_PLANNER_MODE_UNSPECIFIED" }, + { no: 1, name: "CONVERSATIONAL_PLANNER_MODE_DEFAULT" }, + { no: 2, name: "CONVERSATIONAL_PLANNER_MODE_READ_ONLY" } +]); var PlanningMode; -(function (PlanningMode2) { - PlanningMode2[(PlanningMode2['UNSPECIFIED'] = 0)] = 'UNSPECIFIED'; - PlanningMode2[(PlanningMode2['OFF'] = 1)] = 'OFF'; - PlanningMode2[(PlanningMode2['ON'] = 2)] = 'ON'; +(function(PlanningMode2) { + PlanningMode2[PlanningMode2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + PlanningMode2[PlanningMode2["OFF"] = 1] = "OFF"; + PlanningMode2[PlanningMode2["ON"] = 2] = "ON"; })(PlanningMode || (PlanningMode = {})); -proto3.util.setEnumType(PlanningMode, 'exa.codeium_common_pb.PlanningMode', [ - { no: 0, name: 'PLANNING_MODE_UNSPECIFIED' }, - { no: 1, name: 'PLANNING_MODE_OFF' }, - { no: 2, name: 'PLANNING_MODE_ON' }, +proto3.util.setEnumType(PlanningMode, "exa.codeium_common_pb.PlanningMode", [ + { no: 0, name: "PLANNING_MODE_UNSPECIFIED" }, + { no: 1, name: "PLANNING_MODE_OFF" }, + { no: 2, name: "PLANNING_MODE_ON" } ]); var TabToJump; -(function (TabToJump2) { - TabToJump2[(TabToJump2['UNSPECIFIED'] = 0)] = 'UNSPECIFIED'; - TabToJump2[(TabToJump2['ENABLED'] = 1)] = 'ENABLED'; - TabToJump2[(TabToJump2['DISABLED'] = 2)] = 'DISABLED'; +(function(TabToJump2) { + TabToJump2[TabToJump2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + TabToJump2[TabToJump2["ENABLED"] = 1] = "ENABLED"; + TabToJump2[TabToJump2["DISABLED"] = 2] = "DISABLED"; })(TabToJump || (TabToJump = {})); -proto3.util.setEnumType(TabToJump, 'exa.codeium_common_pb.TabToJump', [ - { no: 0, name: 'TAB_TO_JUMP_UNSPECIFIED' }, - { no: 1, name: 'TAB_TO_JUMP_ENABLED' }, - { no: 2, name: 'TAB_TO_JUMP_DISABLED' }, +proto3.util.setEnumType(TabToJump, "exa.codeium_common_pb.TabToJump", [ + { no: 0, name: "TAB_TO_JUMP_UNSPECIFIED" }, + { no: 1, name: "TAB_TO_JUMP_ENABLED" }, + { no: 2, name: "TAB_TO_JUMP_DISABLED" } ]); var CascadeWebSearchTool; -(function (CascadeWebSearchTool2) { - CascadeWebSearchTool2[(CascadeWebSearchTool2['UNSPECIFIED'] = 0)] = - 'UNSPECIFIED'; - CascadeWebSearchTool2[(CascadeWebSearchTool2['ENABLED'] = 1)] = 'ENABLED'; - CascadeWebSearchTool2[(CascadeWebSearchTool2['DISABLED'] = 2)] = 'DISABLED'; +(function(CascadeWebSearchTool2) { + CascadeWebSearchTool2[CascadeWebSearchTool2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + CascadeWebSearchTool2[CascadeWebSearchTool2["ENABLED"] = 1] = "ENABLED"; + CascadeWebSearchTool2[CascadeWebSearchTool2["DISABLED"] = 2] = "DISABLED"; })(CascadeWebSearchTool || (CascadeWebSearchTool = {})); -proto3.util.setEnumType( - CascadeWebSearchTool, - 'exa.codeium_common_pb.CascadeWebSearchTool', - [ - { no: 0, name: 'CASCADE_WEB_SEARCH_TOOL_UNSPECIFIED' }, - { no: 1, name: 'CASCADE_WEB_SEARCH_TOOL_ENABLED' }, - { no: 2, name: 'CASCADE_WEB_SEARCH_TOOL_DISABLED' }, - ], -); +proto3.util.setEnumType(CascadeWebSearchTool, "exa.codeium_common_pb.CascadeWebSearchTool", [ + { no: 0, name: "CASCADE_WEB_SEARCH_TOOL_UNSPECIFIED" }, + { no: 1, name: "CASCADE_WEB_SEARCH_TOOL_ENABLED" }, + { no: 2, name: "CASCADE_WEB_SEARCH_TOOL_DISABLED" } +]); var CascadeRunExtensionCode; -(function (CascadeRunExtensionCode2) { - CascadeRunExtensionCode2[(CascadeRunExtensionCode2['UNSPECIFIED'] = 0)] = - 'UNSPECIFIED'; - CascadeRunExtensionCode2[(CascadeRunExtensionCode2['ENABLED'] = 1)] = - 'ENABLED'; - CascadeRunExtensionCode2[(CascadeRunExtensionCode2['DISABLED'] = 2)] = - 'DISABLED'; - CascadeRunExtensionCode2[(CascadeRunExtensionCode2['ONLY'] = 3)] = 'ONLY'; +(function(CascadeRunExtensionCode2) { + CascadeRunExtensionCode2[CascadeRunExtensionCode2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + CascadeRunExtensionCode2[CascadeRunExtensionCode2["ENABLED"] = 1] = "ENABLED"; + CascadeRunExtensionCode2[CascadeRunExtensionCode2["DISABLED"] = 2] = "DISABLED"; + CascadeRunExtensionCode2[CascadeRunExtensionCode2["ONLY"] = 3] = "ONLY"; })(CascadeRunExtensionCode || (CascadeRunExtensionCode = {})); -proto3.util.setEnumType( - CascadeRunExtensionCode, - 'exa.codeium_common_pb.CascadeRunExtensionCode', - [ - { no: 0, name: 'CASCADE_RUN_EXTENSION_CODE_UNSPECIFIED' }, - { no: 1, name: 'CASCADE_RUN_EXTENSION_CODE_ENABLED' }, - { no: 2, name: 'CASCADE_RUN_EXTENSION_CODE_DISABLED' }, - { no: 3, name: 'CASCADE_RUN_EXTENSION_CODE_ONLY' }, - ], -); +proto3.util.setEnumType(CascadeRunExtensionCode, "exa.codeium_common_pb.CascadeRunExtensionCode", [ + { no: 0, name: "CASCADE_RUN_EXTENSION_CODE_UNSPECIFIED" }, + { no: 1, name: "CASCADE_RUN_EXTENSION_CODE_ENABLED" }, + { no: 2, name: "CASCADE_RUN_EXTENSION_CODE_DISABLED" }, + { no: 3, name: "CASCADE_RUN_EXTENSION_CODE_ONLY" } +]); var CascadeInputAutocomplete; -(function (CascadeInputAutocomplete2) { - CascadeInputAutocomplete2[(CascadeInputAutocomplete2['UNSPECIFIED'] = 0)] = - 'UNSPECIFIED'; - CascadeInputAutocomplete2[(CascadeInputAutocomplete2['ENABLED'] = 1)] = - 'ENABLED'; - CascadeInputAutocomplete2[(CascadeInputAutocomplete2['DISABLED'] = 2)] = - 'DISABLED'; +(function(CascadeInputAutocomplete2) { + CascadeInputAutocomplete2[CascadeInputAutocomplete2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + CascadeInputAutocomplete2[CascadeInputAutocomplete2["ENABLED"] = 1] = "ENABLED"; + CascadeInputAutocomplete2[CascadeInputAutocomplete2["DISABLED"] = 2] = "DISABLED"; })(CascadeInputAutocomplete || (CascadeInputAutocomplete = {})); -proto3.util.setEnumType( - CascadeInputAutocomplete, - 'exa.codeium_common_pb.CascadeInputAutocomplete', - [ - { no: 0, name: 'CASCADE_INPUT_AUTOCOMPLETE_UNSPECIFIED' }, - { no: 1, name: 'CASCADE_INPUT_AUTOCOMPLETE_ENABLED' }, - { no: 2, name: 'CASCADE_INPUT_AUTOCOMPLETE_DISABLED' }, - ], -); +proto3.util.setEnumType(CascadeInputAutocomplete, "exa.codeium_common_pb.CascadeInputAutocomplete", [ + { no: 0, name: "CASCADE_INPUT_AUTOCOMPLETE_UNSPECIFIED" }, + { no: 1, name: "CASCADE_INPUT_AUTOCOMPLETE_ENABLED" }, + { no: 2, name: "CASCADE_INPUT_AUTOCOMPLETE_DISABLED" } +]); var CascadeRunExtensionCodeAutoRun; -(function (CascadeRunExtensionCodeAutoRun2) { - CascadeRunExtensionCodeAutoRun2[ - (CascadeRunExtensionCodeAutoRun2['UNSPECIFIED'] = 0) - ] = 'UNSPECIFIED'; - CascadeRunExtensionCodeAutoRun2[ - (CascadeRunExtensionCodeAutoRun2['ENABLED'] = 1) - ] = 'ENABLED'; - CascadeRunExtensionCodeAutoRun2[ - (CascadeRunExtensionCodeAutoRun2['DISABLED'] = 2) - ] = 'DISABLED'; - CascadeRunExtensionCodeAutoRun2[ - (CascadeRunExtensionCodeAutoRun2['MODEL_DECIDES'] = 3) - ] = 'MODEL_DECIDES'; +(function(CascadeRunExtensionCodeAutoRun2) { + CascadeRunExtensionCodeAutoRun2[CascadeRunExtensionCodeAutoRun2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + CascadeRunExtensionCodeAutoRun2[CascadeRunExtensionCodeAutoRun2["ENABLED"] = 1] = "ENABLED"; + CascadeRunExtensionCodeAutoRun2[CascadeRunExtensionCodeAutoRun2["DISABLED"] = 2] = "DISABLED"; + CascadeRunExtensionCodeAutoRun2[CascadeRunExtensionCodeAutoRun2["MODEL_DECIDES"] = 3] = "MODEL_DECIDES"; })(CascadeRunExtensionCodeAutoRun || (CascadeRunExtensionCodeAutoRun = {})); -proto3.util.setEnumType( - CascadeRunExtensionCodeAutoRun, - 'exa.codeium_common_pb.CascadeRunExtensionCodeAutoRun', - [ - { no: 0, name: 'CASCADE_RUN_EXTENSION_CODE_AUTO_RUN_UNSPECIFIED' }, - { no: 1, name: 'CASCADE_RUN_EXTENSION_CODE_AUTO_RUN_ENABLED' }, - { no: 2, name: 'CASCADE_RUN_EXTENSION_CODE_AUTO_RUN_DISABLED' }, - { no: 3, name: 'CASCADE_RUN_EXTENSION_CODE_AUTO_RUN_MODEL_DECIDES' }, - ], -); +proto3.util.setEnumType(CascadeRunExtensionCodeAutoRun, "exa.codeium_common_pb.CascadeRunExtensionCodeAutoRun", [ + { no: 0, name: "CASCADE_RUN_EXTENSION_CODE_AUTO_RUN_UNSPECIFIED" }, + { no: 1, name: "CASCADE_RUN_EXTENSION_CODE_AUTO_RUN_ENABLED" }, + { no: 2, name: "CASCADE_RUN_EXTENSION_CODE_AUTO_RUN_DISABLED" }, + { no: 3, name: "CASCADE_RUN_EXTENSION_CODE_AUTO_RUN_MODEL_DECIDES" } +]); var AgentBrowserTools; -(function (AgentBrowserTools2) { - AgentBrowserTools2[(AgentBrowserTools2['UNSPECIFIED'] = 0)] = 'UNSPECIFIED'; - AgentBrowserTools2[(AgentBrowserTools2['ENABLED'] = 1)] = 'ENABLED'; - AgentBrowserTools2[(AgentBrowserTools2['DISABLED'] = 2)] = 'DISABLED'; +(function(AgentBrowserTools2) { + AgentBrowserTools2[AgentBrowserTools2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + AgentBrowserTools2[AgentBrowserTools2["ENABLED"] = 1] = "ENABLED"; + AgentBrowserTools2[AgentBrowserTools2["DISABLED"] = 2] = "DISABLED"; })(AgentBrowserTools || (AgentBrowserTools = {})); -proto3.util.setEnumType( - AgentBrowserTools, - 'exa.codeium_common_pb.AgentBrowserTools', - [ - { no: 0, name: 'AGENT_BROWSER_TOOLS_UNSPECIFIED' }, - { no: 1, name: 'AGENT_BROWSER_TOOLS_ENABLED' }, - { no: 2, name: 'AGENT_BROWSER_TOOLS_DISABLED' }, - ], -); +proto3.util.setEnumType(AgentBrowserTools, "exa.codeium_common_pb.AgentBrowserTools", [ + { no: 0, name: "AGENT_BROWSER_TOOLS_UNSPECIFIED" }, + { no: 1, name: "AGENT_BROWSER_TOOLS_ENABLED" }, + { no: 2, name: "AGENT_BROWSER_TOOLS_DISABLED" } +]); var FeatureUsageType; -(function (FeatureUsageType2) { - FeatureUsageType2[(FeatureUsageType2['UNSPECIFIED'] = 0)] = 'UNSPECIFIED'; - FeatureUsageType2[(FeatureUsageType2['CASCADE_BROWSER'] = 1)] = - 'CASCADE_BROWSER'; - FeatureUsageType2[(FeatureUsageType2['CASCADE_WEB_AT_MENTION'] = 2)] = - 'CASCADE_WEB_AT_MENTION'; - FeatureUsageType2[(FeatureUsageType2['CASCADE_REVERT_TO_STEP'] = 3)] = - 'CASCADE_REVERT_TO_STEP'; - FeatureUsageType2[(FeatureUsageType2['CASCADE_CLICK_MODEL_SELECTOR'] = 4)] = - 'CASCADE_CLICK_MODEL_SELECTOR'; - FeatureUsageType2[(FeatureUsageType2['CASCADE_MESSAGE_FEEDBACK'] = 5)] = - 'CASCADE_MESSAGE_FEEDBACK'; +(function(FeatureUsageType2) { + FeatureUsageType2[FeatureUsageType2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + FeatureUsageType2[FeatureUsageType2["CASCADE_BROWSER"] = 1] = "CASCADE_BROWSER"; + FeatureUsageType2[FeatureUsageType2["CASCADE_WEB_AT_MENTION"] = 2] = "CASCADE_WEB_AT_MENTION"; + FeatureUsageType2[FeatureUsageType2["CASCADE_REVERT_TO_STEP"] = 3] = "CASCADE_REVERT_TO_STEP"; + FeatureUsageType2[FeatureUsageType2["CASCADE_CLICK_MODEL_SELECTOR"] = 4] = "CASCADE_CLICK_MODEL_SELECTOR"; + FeatureUsageType2[FeatureUsageType2["CASCADE_MESSAGE_FEEDBACK"] = 5] = "CASCADE_MESSAGE_FEEDBACK"; })(FeatureUsageType || (FeatureUsageType = {})); -proto3.util.setEnumType( - FeatureUsageType, - 'exa.codeium_common_pb.FeatureUsageType', - [ - { no: 0, name: 'FEATURE_USAGE_TYPE_UNSPECIFIED' }, - { no: 1, name: 'FEATURE_USAGE_TYPE_CASCADE_BROWSER' }, - { no: 2, name: 'FEATURE_USAGE_TYPE_CASCADE_WEB_AT_MENTION' }, - { no: 3, name: 'FEATURE_USAGE_TYPE_CASCADE_REVERT_TO_STEP' }, - { no: 4, name: 'FEATURE_USAGE_TYPE_CASCADE_CLICK_MODEL_SELECTOR' }, - { no: 5, name: 'FEATURE_USAGE_TYPE_CASCADE_MESSAGE_FEEDBACK' }, - ], -); +proto3.util.setEnumType(FeatureUsageType, "exa.codeium_common_pb.FeatureUsageType", [ + { no: 0, name: "FEATURE_USAGE_TYPE_UNSPECIFIED" }, + { no: 1, name: "FEATURE_USAGE_TYPE_CASCADE_BROWSER" }, + { no: 2, name: "FEATURE_USAGE_TYPE_CASCADE_WEB_AT_MENTION" }, + { no: 3, name: "FEATURE_USAGE_TYPE_CASCADE_REVERT_TO_STEP" }, + { no: 4, name: "FEATURE_USAGE_TYPE_CASCADE_CLICK_MODEL_SELECTOR" }, + { no: 5, name: "FEATURE_USAGE_TYPE_CASCADE_MESSAGE_FEEDBACK" } +]); var PlanMode; -(function (PlanMode2) { - PlanMode2[(PlanMode2['UNSPECIFIED'] = 0)] = 'UNSPECIFIED'; - PlanMode2[(PlanMode2['ON'] = 1)] = 'ON'; - PlanMode2[(PlanMode2['OFF'] = 2)] = 'OFF'; +(function(PlanMode2) { + PlanMode2[PlanMode2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + PlanMode2[PlanMode2["ON"] = 1] = "ON"; + PlanMode2[PlanMode2["OFF"] = 2] = "OFF"; })(PlanMode || (PlanMode = {})); -proto3.util.setEnumType(PlanMode, 'exa.codeium_common_pb.PlanMode', [ - { no: 0, name: 'PLAN_MODE_UNSPECIFIED' }, - { no: 1, name: 'PLAN_MODE_ON' }, - { no: 2, name: 'PLAN_MODE_OFF' }, +proto3.util.setEnumType(PlanMode, "exa.codeium_common_pb.PlanMode", [ + { no: 0, name: "PLAN_MODE_UNSPECIFIED" }, + { no: 1, name: "PLAN_MODE_ON" }, + { no: 2, name: "PLAN_MODE_OFF" } ]); var AutoContinueOnMaxGeneratorInvocations; -(function (AutoContinueOnMaxGeneratorInvocations2) { - AutoContinueOnMaxGeneratorInvocations2[ - (AutoContinueOnMaxGeneratorInvocations2['UNSPECIFIED'] = 0) - ] = 'UNSPECIFIED'; - AutoContinueOnMaxGeneratorInvocations2[ - (AutoContinueOnMaxGeneratorInvocations2['ENABLED'] = 1) - ] = 'ENABLED'; - AutoContinueOnMaxGeneratorInvocations2[ - (AutoContinueOnMaxGeneratorInvocations2['DISABLED'] = 2) - ] = 'DISABLED'; -})( - AutoContinueOnMaxGeneratorInvocations || - (AutoContinueOnMaxGeneratorInvocations = {}), -); -proto3.util.setEnumType( - AutoContinueOnMaxGeneratorInvocations, - 'exa.codeium_common_pb.AutoContinueOnMaxGeneratorInvocations', - [ - { no: 0, name: 'AUTO_CONTINUE_ON_MAX_GENERATOR_INVOCATIONS_UNSPECIFIED' }, - { no: 1, name: 'AUTO_CONTINUE_ON_MAX_GENERATOR_INVOCATIONS_ENABLED' }, - { no: 2, name: 'AUTO_CONTINUE_ON_MAX_GENERATOR_INVOCATIONS_DISABLED' }, - ], -); +(function(AutoContinueOnMaxGeneratorInvocations2) { + AutoContinueOnMaxGeneratorInvocations2[AutoContinueOnMaxGeneratorInvocations2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + AutoContinueOnMaxGeneratorInvocations2[AutoContinueOnMaxGeneratorInvocations2["ENABLED"] = 1] = "ENABLED"; + AutoContinueOnMaxGeneratorInvocations2[AutoContinueOnMaxGeneratorInvocations2["DISABLED"] = 2] = "DISABLED"; +})(AutoContinueOnMaxGeneratorInvocations || (AutoContinueOnMaxGeneratorInvocations = {})); +proto3.util.setEnumType(AutoContinueOnMaxGeneratorInvocations, "exa.codeium_common_pb.AutoContinueOnMaxGeneratorInvocations", [ + { no: 0, name: "AUTO_CONTINUE_ON_MAX_GENERATOR_INVOCATIONS_UNSPECIFIED" }, + { no: 1, name: "AUTO_CONTINUE_ON_MAX_GENERATOR_INVOCATIONS_ENABLED" }, + { no: 2, name: "AUTO_CONTINUE_ON_MAX_GENERATOR_INVOCATIONS_DISABLED" } +]); var CascadeNUXLocation; -(function (CascadeNUXLocation2) { - CascadeNUXLocation2[ - (CascadeNUXLocation2['CASCADE_NUX_LOCATION_UNSPECIFIED'] = 0) - ] = 'CASCADE_NUX_LOCATION_UNSPECIFIED'; - CascadeNUXLocation2[ - (CascadeNUXLocation2['CASCADE_NUX_LOCATION_CASCADE_INPUT'] = 1) - ] = 'CASCADE_NUX_LOCATION_CASCADE_INPUT'; - CascadeNUXLocation2[ - (CascadeNUXLocation2['CASCADE_NUX_LOCATION_MODEL_SELECTOR'] = 2) - ] = 'CASCADE_NUX_LOCATION_MODEL_SELECTOR'; - CascadeNUXLocation2[ - (CascadeNUXLocation2['CASCADE_NUX_LOCATION_RULES_TAB'] = 4) - ] = 'CASCADE_NUX_LOCATION_RULES_TAB'; - CascadeNUXLocation2[ - (CascadeNUXLocation2['CASCADE_NUX_LOCATION_REVERT_STEP'] = 6) - ] = 'CASCADE_NUX_LOCATION_REVERT_STEP'; - CascadeNUXLocation2[ - (CascadeNUXLocation2['CASCADE_NUX_LOCATION_PLAN_MODE'] = 7) - ] = 'CASCADE_NUX_LOCATION_PLAN_MODE'; - CascadeNUXLocation2[ - (CascadeNUXLocation2['CASCADE_NUX_LOCATION_WRITE_CHAT_MODE'] = 8) - ] = 'CASCADE_NUX_LOCATION_WRITE_CHAT_MODE'; - CascadeNUXLocation2[ - (CascadeNUXLocation2['CASCADE_NUX_LOCATION_TOOLBAR'] = 9) - ] = 'CASCADE_NUX_LOCATION_TOOLBAR'; - CascadeNUXLocation2[ - (CascadeNUXLocation2['CASCADE_NUX_LOCATION_MANAGER_BOTTOM_LEFT'] = 10) - ] = 'CASCADE_NUX_LOCATION_MANAGER_BOTTOM_LEFT'; - CascadeNUXLocation2[ - (CascadeNUXLocation2['CASCADE_NUX_LOCATION_ARTIFACT_VIEW_BOTTOM_LEFT'] = 11) - ] = 'CASCADE_NUX_LOCATION_ARTIFACT_VIEW_BOTTOM_LEFT'; +(function(CascadeNUXLocation2) { + CascadeNUXLocation2[CascadeNUXLocation2["CASCADE_NUX_LOCATION_UNSPECIFIED"] = 0] = "CASCADE_NUX_LOCATION_UNSPECIFIED"; + CascadeNUXLocation2[CascadeNUXLocation2["CASCADE_NUX_LOCATION_CASCADE_INPUT"] = 1] = "CASCADE_NUX_LOCATION_CASCADE_INPUT"; + CascadeNUXLocation2[CascadeNUXLocation2["CASCADE_NUX_LOCATION_MODEL_SELECTOR"] = 2] = "CASCADE_NUX_LOCATION_MODEL_SELECTOR"; + CascadeNUXLocation2[CascadeNUXLocation2["CASCADE_NUX_LOCATION_RULES_TAB"] = 4] = "CASCADE_NUX_LOCATION_RULES_TAB"; + CascadeNUXLocation2[CascadeNUXLocation2["CASCADE_NUX_LOCATION_REVERT_STEP"] = 6] = "CASCADE_NUX_LOCATION_REVERT_STEP"; + CascadeNUXLocation2[CascadeNUXLocation2["CASCADE_NUX_LOCATION_PLAN_MODE"] = 7] = "CASCADE_NUX_LOCATION_PLAN_MODE"; + CascadeNUXLocation2[CascadeNUXLocation2["CASCADE_NUX_LOCATION_WRITE_CHAT_MODE"] = 8] = "CASCADE_NUX_LOCATION_WRITE_CHAT_MODE"; + CascadeNUXLocation2[CascadeNUXLocation2["CASCADE_NUX_LOCATION_TOOLBAR"] = 9] = "CASCADE_NUX_LOCATION_TOOLBAR"; + CascadeNUXLocation2[CascadeNUXLocation2["CASCADE_NUX_LOCATION_MANAGER_BOTTOM_LEFT"] = 10] = "CASCADE_NUX_LOCATION_MANAGER_BOTTOM_LEFT"; + CascadeNUXLocation2[CascadeNUXLocation2["CASCADE_NUX_LOCATION_ARTIFACT_VIEW_BOTTOM_LEFT"] = 11] = "CASCADE_NUX_LOCATION_ARTIFACT_VIEW_BOTTOM_LEFT"; })(CascadeNUXLocation || (CascadeNUXLocation = {})); -proto3.util.setEnumType( - CascadeNUXLocation, - 'exa.codeium_common_pb.CascadeNUXLocation', - [ - { no: 0, name: 'CASCADE_NUX_LOCATION_UNSPECIFIED' }, - { no: 1, name: 'CASCADE_NUX_LOCATION_CASCADE_INPUT' }, - { no: 2, name: 'CASCADE_NUX_LOCATION_MODEL_SELECTOR' }, - { no: 4, name: 'CASCADE_NUX_LOCATION_RULES_TAB' }, - { no: 6, name: 'CASCADE_NUX_LOCATION_REVERT_STEP' }, - { no: 7, name: 'CASCADE_NUX_LOCATION_PLAN_MODE' }, - { no: 8, name: 'CASCADE_NUX_LOCATION_WRITE_CHAT_MODE' }, - { no: 9, name: 'CASCADE_NUX_LOCATION_TOOLBAR' }, - { no: 10, name: 'CASCADE_NUX_LOCATION_MANAGER_BOTTOM_LEFT' }, - { no: 11, name: 'CASCADE_NUX_LOCATION_ARTIFACT_VIEW_BOTTOM_LEFT' }, - ], -); +proto3.util.setEnumType(CascadeNUXLocation, "exa.codeium_common_pb.CascadeNUXLocation", [ + { no: 0, name: "CASCADE_NUX_LOCATION_UNSPECIFIED" }, + { no: 1, name: "CASCADE_NUX_LOCATION_CASCADE_INPUT" }, + { no: 2, name: "CASCADE_NUX_LOCATION_MODEL_SELECTOR" }, + { no: 4, name: "CASCADE_NUX_LOCATION_RULES_TAB" }, + { no: 6, name: "CASCADE_NUX_LOCATION_REVERT_STEP" }, + { no: 7, name: "CASCADE_NUX_LOCATION_PLAN_MODE" }, + { no: 8, name: "CASCADE_NUX_LOCATION_WRITE_CHAT_MODE" }, + { no: 9, name: "CASCADE_NUX_LOCATION_TOOLBAR" }, + { no: 10, name: "CASCADE_NUX_LOCATION_MANAGER_BOTTOM_LEFT" }, + { no: 11, name: "CASCADE_NUX_LOCATION_ARTIFACT_VIEW_BOTTOM_LEFT" } +]); var CascadeNUXIcon; -(function (CascadeNUXIcon2) { - CascadeNUXIcon2[(CascadeNUXIcon2['CASCADE_NUX_ICON_UNSPECIFIED'] = 0)] = - 'CASCADE_NUX_ICON_UNSPECIFIED'; - CascadeNUXIcon2[(CascadeNUXIcon2['CASCADE_NUX_ICON_WEB_SEARCH'] = 1)] = - 'CASCADE_NUX_ICON_WEB_SEARCH'; - CascadeNUXIcon2[ - (CascadeNUXIcon2['CASCADE_NUX_ICON_ANTIGRAVITY_BROWSER'] = 2) - ] = 'CASCADE_NUX_ICON_ANTIGRAVITY_BROWSER'; +(function(CascadeNUXIcon2) { + CascadeNUXIcon2[CascadeNUXIcon2["CASCADE_NUX_ICON_UNSPECIFIED"] = 0] = "CASCADE_NUX_ICON_UNSPECIFIED"; + CascadeNUXIcon2[CascadeNUXIcon2["CASCADE_NUX_ICON_WEB_SEARCH"] = 1] = "CASCADE_NUX_ICON_WEB_SEARCH"; + CascadeNUXIcon2[CascadeNUXIcon2["CASCADE_NUX_ICON_ANTIGRAVITY_BROWSER"] = 2] = "CASCADE_NUX_ICON_ANTIGRAVITY_BROWSER"; })(CascadeNUXIcon || (CascadeNUXIcon = {})); -proto3.util.setEnumType( - CascadeNUXIcon, - 'exa.codeium_common_pb.CascadeNUXIcon', - [ - { no: 0, name: 'CASCADE_NUX_ICON_UNSPECIFIED' }, - { no: 1, name: 'CASCADE_NUX_ICON_WEB_SEARCH' }, - { no: 2, name: 'CASCADE_NUX_ICON_ANTIGRAVITY_BROWSER' }, - ], -); +proto3.util.setEnumType(CascadeNUXIcon, "exa.codeium_common_pb.CascadeNUXIcon", [ + { no: 0, name: "CASCADE_NUX_ICON_UNSPECIFIED" }, + { no: 1, name: "CASCADE_NUX_ICON_WEB_SEARCH" }, + { no: 2, name: "CASCADE_NUX_ICON_ANTIGRAVITY_BROWSER" } +]); var CascadeNUXTrigger; -(function (CascadeNUXTrigger2) { - CascadeNUXTrigger2[ - (CascadeNUXTrigger2['CASCADE_NUX_TRIGGER_UNSPECIFIED'] = 0) - ] = 'CASCADE_NUX_TRIGGER_UNSPECIFIED'; - CascadeNUXTrigger2[ - (CascadeNUXTrigger2['CASCADE_NUX_TRIGGER_PRODUCED_CODE_DIFF'] = 1) - ] = 'CASCADE_NUX_TRIGGER_PRODUCED_CODE_DIFF'; - CascadeNUXTrigger2[ - (CascadeNUXTrigger2['CASCADE_NUX_TRIGGER_OPEN_BROWSER_URL'] = 3) - ] = 'CASCADE_NUX_TRIGGER_OPEN_BROWSER_URL'; - CascadeNUXTrigger2[ - (CascadeNUXTrigger2['CASCADE_NUX_TRIGGER_WEB_SEARCH'] = 4) - ] = 'CASCADE_NUX_TRIGGER_WEB_SEARCH'; - CascadeNUXTrigger2[ - (CascadeNUXTrigger2['CASCADE_NUX_TRIGGER_MANAGER_POSTONBOARDING_COMPLETE'] = - 5) - ] = 'CASCADE_NUX_TRIGGER_MANAGER_POSTONBOARDING_COMPLETE'; - CascadeNUXTrigger2[ - (CascadeNUXTrigger2['CASCADE_NUX_TRIGGER_MANAGER_ARTIFACT_CREATED'] = 6) - ] = 'CASCADE_NUX_TRIGGER_MANAGER_ARTIFACT_CREATED'; - CascadeNUXTrigger2[ - (CascadeNUXTrigger2['CASCADE_NUX_TRIGGER_MANAGER_ARTIFACT_OPENED'] = 7) - ] = 'CASCADE_NUX_TRIGGER_MANAGER_ARTIFACT_OPENED'; - CascadeNUXTrigger2[ - (CascadeNUXTrigger2['CASCADE_NUX_TRIGGER_MANAGER_FILE_OPENED'] = 8) - ] = 'CASCADE_NUX_TRIGGER_MANAGER_FILE_OPENED'; - CascadeNUXTrigger2[ - (CascadeNUXTrigger2['CASCADE_NUX_TRIGGER_MANAGER_CONVERSATION_AVAILABLE'] = - 10) - ] = 'CASCADE_NUX_TRIGGER_MANAGER_CONVERSATION_AVAILABLE'; +(function(CascadeNUXTrigger2) { + CascadeNUXTrigger2[CascadeNUXTrigger2["CASCADE_NUX_TRIGGER_UNSPECIFIED"] = 0] = "CASCADE_NUX_TRIGGER_UNSPECIFIED"; + CascadeNUXTrigger2[CascadeNUXTrigger2["CASCADE_NUX_TRIGGER_PRODUCED_CODE_DIFF"] = 1] = "CASCADE_NUX_TRIGGER_PRODUCED_CODE_DIFF"; + CascadeNUXTrigger2[CascadeNUXTrigger2["CASCADE_NUX_TRIGGER_OPEN_BROWSER_URL"] = 3] = "CASCADE_NUX_TRIGGER_OPEN_BROWSER_URL"; + CascadeNUXTrigger2[CascadeNUXTrigger2["CASCADE_NUX_TRIGGER_WEB_SEARCH"] = 4] = "CASCADE_NUX_TRIGGER_WEB_SEARCH"; + CascadeNUXTrigger2[CascadeNUXTrigger2["CASCADE_NUX_TRIGGER_MANAGER_POSTONBOARDING_COMPLETE"] = 5] = "CASCADE_NUX_TRIGGER_MANAGER_POSTONBOARDING_COMPLETE"; + CascadeNUXTrigger2[CascadeNUXTrigger2["CASCADE_NUX_TRIGGER_MANAGER_ARTIFACT_CREATED"] = 6] = "CASCADE_NUX_TRIGGER_MANAGER_ARTIFACT_CREATED"; + CascadeNUXTrigger2[CascadeNUXTrigger2["CASCADE_NUX_TRIGGER_MANAGER_ARTIFACT_OPENED"] = 7] = "CASCADE_NUX_TRIGGER_MANAGER_ARTIFACT_OPENED"; + CascadeNUXTrigger2[CascadeNUXTrigger2["CASCADE_NUX_TRIGGER_MANAGER_FILE_OPENED"] = 8] = "CASCADE_NUX_TRIGGER_MANAGER_FILE_OPENED"; + CascadeNUXTrigger2[CascadeNUXTrigger2["CASCADE_NUX_TRIGGER_MANAGER_CONVERSATION_AVAILABLE"] = 10] = "CASCADE_NUX_TRIGGER_MANAGER_CONVERSATION_AVAILABLE"; })(CascadeNUXTrigger || (CascadeNUXTrigger = {})); -proto3.util.setEnumType( - CascadeNUXTrigger, - 'exa.codeium_common_pb.CascadeNUXTrigger', - [ - { no: 0, name: 'CASCADE_NUX_TRIGGER_UNSPECIFIED' }, - { no: 1, name: 'CASCADE_NUX_TRIGGER_PRODUCED_CODE_DIFF' }, - { no: 3, name: 'CASCADE_NUX_TRIGGER_OPEN_BROWSER_URL' }, - { no: 4, name: 'CASCADE_NUX_TRIGGER_WEB_SEARCH' }, - { no: 5, name: 'CASCADE_NUX_TRIGGER_MANAGER_POSTONBOARDING_COMPLETE' }, - { no: 6, name: 'CASCADE_NUX_TRIGGER_MANAGER_ARTIFACT_CREATED' }, - { no: 7, name: 'CASCADE_NUX_TRIGGER_MANAGER_ARTIFACT_OPENED' }, - { no: 8, name: 'CASCADE_NUX_TRIGGER_MANAGER_FILE_OPENED' }, - { no: 10, name: 'CASCADE_NUX_TRIGGER_MANAGER_CONVERSATION_AVAILABLE' }, - ], -); +proto3.util.setEnumType(CascadeNUXTrigger, "exa.codeium_common_pb.CascadeNUXTrigger", [ + { no: 0, name: "CASCADE_NUX_TRIGGER_UNSPECIFIED" }, + { no: 1, name: "CASCADE_NUX_TRIGGER_PRODUCED_CODE_DIFF" }, + { no: 3, name: "CASCADE_NUX_TRIGGER_OPEN_BROWSER_URL" }, + { no: 4, name: "CASCADE_NUX_TRIGGER_WEB_SEARCH" }, + { no: 5, name: "CASCADE_NUX_TRIGGER_MANAGER_POSTONBOARDING_COMPLETE" }, + { no: 6, name: "CASCADE_NUX_TRIGGER_MANAGER_ARTIFACT_CREATED" }, + { no: 7, name: "CASCADE_NUX_TRIGGER_MANAGER_ARTIFACT_OPENED" }, + { no: 8, name: "CASCADE_NUX_TRIGGER_MANAGER_FILE_OPENED" }, + { no: 10, name: "CASCADE_NUX_TRIGGER_MANAGER_CONVERSATION_AVAILABLE" } +]); var AnnotationsConfig; -(function (AnnotationsConfig2) { - AnnotationsConfig2[(AnnotationsConfig2['UNSPECIFIED'] = 0)] = 'UNSPECIFIED'; - AnnotationsConfig2[(AnnotationsConfig2['ENABLED'] = 1)] = 'ENABLED'; - AnnotationsConfig2[(AnnotationsConfig2['DISABLED'] = 2)] = 'DISABLED'; +(function(AnnotationsConfig2) { + AnnotationsConfig2[AnnotationsConfig2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + AnnotationsConfig2[AnnotationsConfig2["ENABLED"] = 1] = "ENABLED"; + AnnotationsConfig2[AnnotationsConfig2["DISABLED"] = 2] = "DISABLED"; })(AnnotationsConfig || (AnnotationsConfig = {})); -proto3.util.setEnumType( - AnnotationsConfig, - 'exa.codeium_common_pb.AnnotationsConfig', - [ - { no: 0, name: 'ANNOTATIONS_CONFIG_UNSPECIFIED' }, - { no: 1, name: 'ANNOTATIONS_CONFIG_ENABLED' }, - { no: 2, name: 'ANNOTATIONS_CONFIG_DISABLED' }, - ], -); +proto3.util.setEnumType(AnnotationsConfig, "exa.codeium_common_pb.AnnotationsConfig", [ + { no: 0, name: "ANNOTATIONS_CONFIG_UNSPECIFIED" }, + { no: 1, name: "ANNOTATIONS_CONFIG_ENABLED" }, + { no: 2, name: "ANNOTATIONS_CONFIG_DISABLED" } +]); var DetectAndUseProxy; -(function (DetectAndUseProxy2) { - DetectAndUseProxy2[(DetectAndUseProxy2['UNSPECIFIED'] = 0)] = 'UNSPECIFIED'; - DetectAndUseProxy2[(DetectAndUseProxy2['ENABLED'] = 1)] = 'ENABLED'; - DetectAndUseProxy2[(DetectAndUseProxy2['DISABLED'] = 2)] = 'DISABLED'; +(function(DetectAndUseProxy2) { + DetectAndUseProxy2[DetectAndUseProxy2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + DetectAndUseProxy2[DetectAndUseProxy2["ENABLED"] = 1] = "ENABLED"; + DetectAndUseProxy2[DetectAndUseProxy2["DISABLED"] = 2] = "DISABLED"; })(DetectAndUseProxy || (DetectAndUseProxy = {})); -proto3.util.setEnumType( - DetectAndUseProxy, - 'exa.codeium_common_pb.DetectAndUseProxy', - [ - { no: 0, name: 'DETECT_AND_USE_PROXY_UNSPECIFIED' }, - { no: 1, name: 'DETECT_AND_USE_PROXY_ENABLED' }, - { no: 2, name: 'DETECT_AND_USE_PROXY_DISABLED' }, - ], -); +proto3.util.setEnumType(DetectAndUseProxy, "exa.codeium_common_pb.DetectAndUseProxy", [ + { no: 0, name: "DETECT_AND_USE_PROXY_UNSPECIFIED" }, + { no: 1, name: "DETECT_AND_USE_PROXY_ENABLED" }, + { no: 2, name: "DETECT_AND_USE_PROXY_DISABLED" } +]); var BrowserJsExecutionPolicy; -(function (BrowserJsExecutionPolicy2) { - BrowserJsExecutionPolicy2[(BrowserJsExecutionPolicy2['UNSPECIFIED'] = 0)] = - 'UNSPECIFIED'; - BrowserJsExecutionPolicy2[(BrowserJsExecutionPolicy2['DISABLED'] = 1)] = - 'DISABLED'; - BrowserJsExecutionPolicy2[(BrowserJsExecutionPolicy2['ALWAYS_ASK'] = 2)] = - 'ALWAYS_ASK'; - BrowserJsExecutionPolicy2[(BrowserJsExecutionPolicy2['MODEL_DECIDES'] = 3)] = - 'MODEL_DECIDES'; - BrowserJsExecutionPolicy2[(BrowserJsExecutionPolicy2['TURBO'] = 4)] = 'TURBO'; +(function(BrowserJsExecutionPolicy2) { + BrowserJsExecutionPolicy2[BrowserJsExecutionPolicy2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + BrowserJsExecutionPolicy2[BrowserJsExecutionPolicy2["DISABLED"] = 1] = "DISABLED"; + BrowserJsExecutionPolicy2[BrowserJsExecutionPolicy2["ALWAYS_ASK"] = 2] = "ALWAYS_ASK"; + BrowserJsExecutionPolicy2[BrowserJsExecutionPolicy2["MODEL_DECIDES"] = 3] = "MODEL_DECIDES"; + BrowserJsExecutionPolicy2[BrowserJsExecutionPolicy2["TURBO"] = 4] = "TURBO"; })(BrowserJsExecutionPolicy || (BrowserJsExecutionPolicy = {})); -proto3.util.setEnumType( - BrowserJsExecutionPolicy, - 'exa.codeium_common_pb.BrowserJsExecutionPolicy', - [ - { no: 0, name: 'BROWSER_JS_EXECUTION_POLICY_UNSPECIFIED' }, - { no: 1, name: 'BROWSER_JS_EXECUTION_POLICY_DISABLED' }, - { no: 2, name: 'BROWSER_JS_EXECUTION_POLICY_ALWAYS_ASK' }, - { no: 3, name: 'BROWSER_JS_EXECUTION_POLICY_MODEL_DECIDES' }, - { no: 4, name: 'BROWSER_JS_EXECUTION_POLICY_TURBO' }, - ], -); +proto3.util.setEnumType(BrowserJsExecutionPolicy, "exa.codeium_common_pb.BrowserJsExecutionPolicy", [ + { no: 0, name: "BROWSER_JS_EXECUTION_POLICY_UNSPECIFIED" }, + { no: 1, name: "BROWSER_JS_EXECUTION_POLICY_DISABLED" }, + { no: 2, name: "BROWSER_JS_EXECUTION_POLICY_ALWAYS_ASK" }, + { no: 3, name: "BROWSER_JS_EXECUTION_POLICY_MODEL_DECIDES" }, + { no: 4, name: "BROWSER_JS_EXECUTION_POLICY_TURBO" } +]); var ModelType; -(function (ModelType2) { - ModelType2[(ModelType2['UNSPECIFIED'] = 0)] = 'UNSPECIFIED'; - ModelType2[(ModelType2['COMPLETION'] = 1)] = 'COMPLETION'; - ModelType2[(ModelType2['CHAT'] = 2)] = 'CHAT'; - ModelType2[(ModelType2['EMBED'] = 3)] = 'EMBED'; - ModelType2[(ModelType2['QUERY'] = 4)] = 'QUERY'; +(function(ModelType2) { + ModelType2[ModelType2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + ModelType2[ModelType2["COMPLETION"] = 1] = "COMPLETION"; + ModelType2[ModelType2["CHAT"] = 2] = "CHAT"; + ModelType2[ModelType2["EMBED"] = 3] = "EMBED"; + ModelType2[ModelType2["QUERY"] = 4] = "QUERY"; })(ModelType || (ModelType = {})); -proto3.util.setEnumType(ModelType, 'exa.codeium_common_pb.ModelType', [ - { no: 0, name: 'MODEL_TYPE_UNSPECIFIED' }, - { no: 1, name: 'MODEL_TYPE_COMPLETION' }, - { no: 2, name: 'MODEL_TYPE_CHAT' }, - { no: 3, name: 'MODEL_TYPE_EMBED' }, - { no: 4, name: 'MODEL_TYPE_QUERY' }, +proto3.util.setEnumType(ModelType, "exa.codeium_common_pb.ModelType", [ + { no: 0, name: "MODEL_TYPE_UNSPECIFIED" }, + { no: 1, name: "MODEL_TYPE_COMPLETION" }, + { no: 2, name: "MODEL_TYPE_CHAT" }, + { no: 3, name: "MODEL_TYPE_EMBED" }, + { no: 4, name: "MODEL_TYPE_QUERY" } ]); var APIProvider; -(function (APIProvider2) { - APIProvider2[(APIProvider2['API_PROVIDER_UNSPECIFIED'] = 0)] = - 'API_PROVIDER_UNSPECIFIED'; - APIProvider2[(APIProvider2['API_PROVIDER_INTERNAL'] = 1)] = - 'API_PROVIDER_INTERNAL'; - APIProvider2[(APIProvider2['API_PROVIDER_GOOGLE_VERTEX'] = 3)] = - 'API_PROVIDER_GOOGLE_VERTEX'; - APIProvider2[(APIProvider2['API_PROVIDER_GOOGLE_GEMINI'] = 24)] = - 'API_PROVIDER_GOOGLE_GEMINI'; - APIProvider2[(APIProvider2['API_PROVIDER_ANTHROPIC_VERTEX'] = 26)] = - 'API_PROVIDER_ANTHROPIC_VERTEX'; - APIProvider2[(APIProvider2['API_PROVIDER_GOOGLE_EVERGREEN'] = 30)] = - 'API_PROVIDER_GOOGLE_EVERGREEN'; - APIProvider2[(APIProvider2['API_PROVIDER_OPENAI_VERTEX'] = 31)] = - 'API_PROVIDER_OPENAI_VERTEX'; +(function(APIProvider2) { + APIProvider2[APIProvider2["API_PROVIDER_UNSPECIFIED"] = 0] = "API_PROVIDER_UNSPECIFIED"; + APIProvider2[APIProvider2["API_PROVIDER_INTERNAL"] = 1] = "API_PROVIDER_INTERNAL"; + APIProvider2[APIProvider2["API_PROVIDER_GOOGLE_VERTEX"] = 3] = "API_PROVIDER_GOOGLE_VERTEX"; + APIProvider2[APIProvider2["API_PROVIDER_GOOGLE_GEMINI"] = 24] = "API_PROVIDER_GOOGLE_GEMINI"; + APIProvider2[APIProvider2["API_PROVIDER_ANTHROPIC_VERTEX"] = 26] = "API_PROVIDER_ANTHROPIC_VERTEX"; + APIProvider2[APIProvider2["API_PROVIDER_GOOGLE_EVERGREEN"] = 30] = "API_PROVIDER_GOOGLE_EVERGREEN"; + APIProvider2[APIProvider2["API_PROVIDER_OPENAI_VERTEX"] = 31] = "API_PROVIDER_OPENAI_VERTEX"; })(APIProvider || (APIProvider = {})); -proto3.util.setEnumType(APIProvider, 'exa.codeium_common_pb.APIProvider', [ - { no: 0, name: 'API_PROVIDER_UNSPECIFIED' }, - { no: 1, name: 'API_PROVIDER_INTERNAL' }, - { no: 3, name: 'API_PROVIDER_GOOGLE_VERTEX' }, - { no: 24, name: 'API_PROVIDER_GOOGLE_GEMINI' }, - { no: 26, name: 'API_PROVIDER_ANTHROPIC_VERTEX' }, - { no: 30, name: 'API_PROVIDER_GOOGLE_EVERGREEN' }, - { no: 31, name: 'API_PROVIDER_OPENAI_VERTEX' }, +proto3.util.setEnumType(APIProvider, "exa.codeium_common_pb.APIProvider", [ + { no: 0, name: "API_PROVIDER_UNSPECIFIED" }, + { no: 1, name: "API_PROVIDER_INTERNAL" }, + { no: 3, name: "API_PROVIDER_GOOGLE_VERTEX" }, + { no: 24, name: "API_PROVIDER_GOOGLE_GEMINI" }, + { no: 26, name: "API_PROVIDER_ANTHROPIC_VERTEX" }, + { no: 30, name: "API_PROVIDER_GOOGLE_EVERGREEN" }, + { no: 31, name: "API_PROVIDER_OPENAI_VERTEX" } ]); var ModelStatus; -(function (ModelStatus2) { - ModelStatus2[(ModelStatus2['UNSPECIFIED'] = 0)] = 'UNSPECIFIED'; - ModelStatus2[(ModelStatus2['INFO'] = 1)] = 'INFO'; - ModelStatus2[(ModelStatus2['WARNING'] = 2)] = 'WARNING'; +(function(ModelStatus2) { + ModelStatus2[ModelStatus2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + ModelStatus2[ModelStatus2["INFO"] = 1] = "INFO"; + ModelStatus2[ModelStatus2["WARNING"] = 2] = "WARNING"; })(ModelStatus || (ModelStatus = {})); -proto3.util.setEnumType(ModelStatus, 'exa.codeium_common_pb.ModelStatus', [ - { no: 0, name: 'MODEL_STATUS_UNSPECIFIED' }, - { no: 1, name: 'MODEL_STATUS_INFO' }, - { no: 2, name: 'MODEL_STATUS_WARNING' }, +proto3.util.setEnumType(ModelStatus, "exa.codeium_common_pb.ModelStatus", [ + { no: 0, name: "MODEL_STATUS_UNSPECIFIED" }, + { no: 1, name: "MODEL_STATUS_INFO" }, + { no: 2, name: "MODEL_STATUS_WARNING" } ]); var CodeSource; -(function (CodeSource2) { - CodeSource2[(CodeSource2['UNSPECIFIED'] = 0)] = 'UNSPECIFIED'; - CodeSource2[(CodeSource2['BASE'] = 1)] = 'BASE'; - CodeSource2[(CodeSource2['CODEIUM'] = 2)] = 'CODEIUM'; - CodeSource2[(CodeSource2['USER'] = 3)] = 'USER'; - CodeSource2[(CodeSource2['USER_LARGE'] = 4)] = 'USER_LARGE'; - CodeSource2[(CodeSource2['UNKNOWN'] = 5)] = 'UNKNOWN'; +(function(CodeSource2) { + CodeSource2[CodeSource2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + CodeSource2[CodeSource2["BASE"] = 1] = "BASE"; + CodeSource2[CodeSource2["CODEIUM"] = 2] = "CODEIUM"; + CodeSource2[CodeSource2["USER"] = 3] = "USER"; + CodeSource2[CodeSource2["USER_LARGE"] = 4] = "USER_LARGE"; + CodeSource2[CodeSource2["UNKNOWN"] = 5] = "UNKNOWN"; })(CodeSource || (CodeSource = {})); -proto3.util.setEnumType(CodeSource, 'exa.codeium_common_pb.CodeSource', [ - { no: 0, name: 'CODE_SOURCE_UNSPECIFIED' }, - { no: 1, name: 'CODE_SOURCE_BASE' }, - { no: 2, name: 'CODE_SOURCE_CODEIUM' }, - { no: 3, name: 'CODE_SOURCE_USER' }, - { no: 4, name: 'CODE_SOURCE_USER_LARGE' }, - { no: 5, name: 'CODE_SOURCE_UNKNOWN' }, +proto3.util.setEnumType(CodeSource, "exa.codeium_common_pb.CodeSource", [ + { no: 0, name: "CODE_SOURCE_UNSPECIFIED" }, + { no: 1, name: "CODE_SOURCE_BASE" }, + { no: 2, name: "CODE_SOURCE_CODEIUM" }, + { no: 3, name: "CODE_SOURCE_USER" }, + { no: 4, name: "CODE_SOURCE_USER_LARGE" }, + { no: 5, name: "CODE_SOURCE_UNKNOWN" } ]); var DocumentType; -(function (DocumentType2) { - DocumentType2[(DocumentType2['UNSPECIFIED'] = 0)] = 'UNSPECIFIED'; - DocumentType2[(DocumentType2['SLACK_MESSAGE'] = 1)] = 'SLACK_MESSAGE'; - DocumentType2[(DocumentType2['SLACK_CHANNEL'] = 2)] = 'SLACK_CHANNEL'; - DocumentType2[(DocumentType2['GITHUB_ISSUE'] = 3)] = 'GITHUB_ISSUE'; - DocumentType2[(DocumentType2['GITHUB_ISSUE_COMMENT'] = 4)] = - 'GITHUB_ISSUE_COMMENT'; - DocumentType2[(DocumentType2['GITHUB_REPO'] = 8)] = 'GITHUB_REPO'; - DocumentType2[(DocumentType2['GOOGLE_DRIVE_FILE'] = 5)] = 'GOOGLE_DRIVE_FILE'; - DocumentType2[(DocumentType2['GOOGLE_DRIVE_FOLDER'] = 6)] = - 'GOOGLE_DRIVE_FOLDER'; - DocumentType2[(DocumentType2['JIRA_ISSUE'] = 7)] = 'JIRA_ISSUE'; - DocumentType2[(DocumentType2['CCI'] = 9)] = 'CCI'; +(function(DocumentType2) { + DocumentType2[DocumentType2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + DocumentType2[DocumentType2["SLACK_MESSAGE"] = 1] = "SLACK_MESSAGE"; + DocumentType2[DocumentType2["SLACK_CHANNEL"] = 2] = "SLACK_CHANNEL"; + DocumentType2[DocumentType2["GITHUB_ISSUE"] = 3] = "GITHUB_ISSUE"; + DocumentType2[DocumentType2["GITHUB_ISSUE_COMMENT"] = 4] = "GITHUB_ISSUE_COMMENT"; + DocumentType2[DocumentType2["GITHUB_REPO"] = 8] = "GITHUB_REPO"; + DocumentType2[DocumentType2["GOOGLE_DRIVE_FILE"] = 5] = "GOOGLE_DRIVE_FILE"; + DocumentType2[DocumentType2["GOOGLE_DRIVE_FOLDER"] = 6] = "GOOGLE_DRIVE_FOLDER"; + DocumentType2[DocumentType2["JIRA_ISSUE"] = 7] = "JIRA_ISSUE"; + DocumentType2[DocumentType2["CCI"] = 9] = "CCI"; })(DocumentType || (DocumentType = {})); -proto3.util.setEnumType(DocumentType, 'exa.codeium_common_pb.DocumentType', [ - { no: 0, name: 'DOCUMENT_TYPE_UNSPECIFIED' }, - { no: 1, name: 'DOCUMENT_TYPE_SLACK_MESSAGE' }, - { no: 2, name: 'DOCUMENT_TYPE_SLACK_CHANNEL' }, - { no: 3, name: 'DOCUMENT_TYPE_GITHUB_ISSUE' }, - { no: 4, name: 'DOCUMENT_TYPE_GITHUB_ISSUE_COMMENT' }, - { no: 8, name: 'DOCUMENT_TYPE_GITHUB_REPO' }, - { no: 5, name: 'DOCUMENT_TYPE_GOOGLE_DRIVE_FILE' }, - { no: 6, name: 'DOCUMENT_TYPE_GOOGLE_DRIVE_FOLDER' }, - { no: 7, name: 'DOCUMENT_TYPE_JIRA_ISSUE' }, - { no: 9, name: 'DOCUMENT_TYPE_CCI' }, +proto3.util.setEnumType(DocumentType, "exa.codeium_common_pb.DocumentType", [ + { no: 0, name: "DOCUMENT_TYPE_UNSPECIFIED" }, + { no: 1, name: "DOCUMENT_TYPE_SLACK_MESSAGE" }, + { no: 2, name: "DOCUMENT_TYPE_SLACK_CHANNEL" }, + { no: 3, name: "DOCUMENT_TYPE_GITHUB_ISSUE" }, + { no: 4, name: "DOCUMENT_TYPE_GITHUB_ISSUE_COMMENT" }, + { no: 8, name: "DOCUMENT_TYPE_GITHUB_REPO" }, + { no: 5, name: "DOCUMENT_TYPE_GOOGLE_DRIVE_FILE" }, + { no: 6, name: "DOCUMENT_TYPE_GOOGLE_DRIVE_FOLDER" }, + { no: 7, name: "DOCUMENT_TYPE_JIRA_ISSUE" }, + { no: 9, name: "DOCUMENT_TYPE_CCI" } ]); var ContextScopeType; -(function (ContextScopeType2) { - ContextScopeType2[(ContextScopeType2['UNSPECIFIED'] = 0)] = 'UNSPECIFIED'; - ContextScopeType2[(ContextScopeType2['FILE'] = 1)] = 'FILE'; - ContextScopeType2[(ContextScopeType2['DIRECTORY'] = 2)] = 'DIRECTORY'; - ContextScopeType2[(ContextScopeType2['REPOSITORY'] = 3)] = 'REPOSITORY'; - ContextScopeType2[(ContextScopeType2['CODE_CONTEXT'] = 4)] = 'CODE_CONTEXT'; - ContextScopeType2[(ContextScopeType2['CCI_WITH_SUBRANGE'] = 5)] = - 'CCI_WITH_SUBRANGE'; - ContextScopeType2[(ContextScopeType2['REPOSITORY_PATH'] = 6)] = - 'REPOSITORY_PATH'; - ContextScopeType2[(ContextScopeType2['SLACK'] = 7)] = 'SLACK'; - ContextScopeType2[(ContextScopeType2['GITHUB'] = 8)] = 'GITHUB'; - ContextScopeType2[(ContextScopeType2['FILE_LINE_RANGE'] = 9)] = - 'FILE_LINE_RANGE'; - ContextScopeType2[(ContextScopeType2['TEXT_BLOCK'] = 10)] = 'TEXT_BLOCK'; - ContextScopeType2[(ContextScopeType2['JIRA'] = 11)] = 'JIRA'; - ContextScopeType2[(ContextScopeType2['GOOGLE_DRIVE'] = 12)] = 'GOOGLE_DRIVE'; - ContextScopeType2[(ContextScopeType2['CONSOLE_LOG'] = 13)] = 'CONSOLE_LOG'; - ContextScopeType2[(ContextScopeType2['DOM_ELEMENT'] = 14)] = 'DOM_ELEMENT'; - ContextScopeType2[(ContextScopeType2['RECIPE'] = 15)] = 'RECIPE'; - ContextScopeType2[(ContextScopeType2['KNOWLEDGE'] = 16)] = 'KNOWLEDGE'; - ContextScopeType2[(ContextScopeType2['RULE'] = 17)] = 'RULE'; - ContextScopeType2[(ContextScopeType2['MCP_RESOURCE'] = 18)] = 'MCP_RESOURCE'; - ContextScopeType2[(ContextScopeType2['BROWSER_PAGE'] = 19)] = 'BROWSER_PAGE'; - ContextScopeType2[(ContextScopeType2['BROWSER_CODE_BLOCK'] = 20)] = - 'BROWSER_CODE_BLOCK'; - ContextScopeType2[(ContextScopeType2['BROWSER_TEXT'] = 21)] = 'BROWSER_TEXT'; - ContextScopeType2[(ContextScopeType2['CONVERSATION'] = 22)] = 'CONVERSATION'; - ContextScopeType2[(ContextScopeType2['USER_ACTIVITY'] = 23)] = - 'USER_ACTIVITY'; - ContextScopeType2[(ContextScopeType2['TERMINAL'] = 24)] = 'TERMINAL'; +(function(ContextScopeType2) { + ContextScopeType2[ContextScopeType2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + ContextScopeType2[ContextScopeType2["FILE"] = 1] = "FILE"; + ContextScopeType2[ContextScopeType2["DIRECTORY"] = 2] = "DIRECTORY"; + ContextScopeType2[ContextScopeType2["REPOSITORY"] = 3] = "REPOSITORY"; + ContextScopeType2[ContextScopeType2["CODE_CONTEXT"] = 4] = "CODE_CONTEXT"; + ContextScopeType2[ContextScopeType2["CCI_WITH_SUBRANGE"] = 5] = "CCI_WITH_SUBRANGE"; + ContextScopeType2[ContextScopeType2["REPOSITORY_PATH"] = 6] = "REPOSITORY_PATH"; + ContextScopeType2[ContextScopeType2["SLACK"] = 7] = "SLACK"; + ContextScopeType2[ContextScopeType2["GITHUB"] = 8] = "GITHUB"; + ContextScopeType2[ContextScopeType2["FILE_LINE_RANGE"] = 9] = "FILE_LINE_RANGE"; + ContextScopeType2[ContextScopeType2["TEXT_BLOCK"] = 10] = "TEXT_BLOCK"; + ContextScopeType2[ContextScopeType2["JIRA"] = 11] = "JIRA"; + ContextScopeType2[ContextScopeType2["GOOGLE_DRIVE"] = 12] = "GOOGLE_DRIVE"; + ContextScopeType2[ContextScopeType2["CONSOLE_LOG"] = 13] = "CONSOLE_LOG"; + ContextScopeType2[ContextScopeType2["DOM_ELEMENT"] = 14] = "DOM_ELEMENT"; + ContextScopeType2[ContextScopeType2["RECIPE"] = 15] = "RECIPE"; + ContextScopeType2[ContextScopeType2["KNOWLEDGE"] = 16] = "KNOWLEDGE"; + ContextScopeType2[ContextScopeType2["RULE"] = 17] = "RULE"; + ContextScopeType2[ContextScopeType2["MCP_RESOURCE"] = 18] = "MCP_RESOURCE"; + ContextScopeType2[ContextScopeType2["BROWSER_PAGE"] = 19] = "BROWSER_PAGE"; + ContextScopeType2[ContextScopeType2["BROWSER_CODE_BLOCK"] = 20] = "BROWSER_CODE_BLOCK"; + ContextScopeType2[ContextScopeType2["BROWSER_TEXT"] = 21] = "BROWSER_TEXT"; + ContextScopeType2[ContextScopeType2["CONVERSATION"] = 22] = "CONVERSATION"; + ContextScopeType2[ContextScopeType2["USER_ACTIVITY"] = 23] = "USER_ACTIVITY"; + ContextScopeType2[ContextScopeType2["TERMINAL"] = 24] = "TERMINAL"; })(ContextScopeType || (ContextScopeType = {})); -proto3.util.setEnumType( - ContextScopeType, - 'exa.codeium_common_pb.ContextScopeType', - [ - { no: 0, name: 'CONTEXT_SCOPE_TYPE_UNSPECIFIED' }, - { no: 1, name: 'CONTEXT_SCOPE_TYPE_FILE' }, - { no: 2, name: 'CONTEXT_SCOPE_TYPE_DIRECTORY' }, - { no: 3, name: 'CONTEXT_SCOPE_TYPE_REPOSITORY' }, - { no: 4, name: 'CONTEXT_SCOPE_TYPE_CODE_CONTEXT' }, - { no: 5, name: 'CONTEXT_SCOPE_TYPE_CCI_WITH_SUBRANGE' }, - { no: 6, name: 'CONTEXT_SCOPE_TYPE_REPOSITORY_PATH' }, - { no: 7, name: 'CONTEXT_SCOPE_TYPE_SLACK' }, - { no: 8, name: 'CONTEXT_SCOPE_TYPE_GITHUB' }, - { no: 9, name: 'CONTEXT_SCOPE_TYPE_FILE_LINE_RANGE' }, - { no: 10, name: 'CONTEXT_SCOPE_TYPE_TEXT_BLOCK' }, - { no: 11, name: 'CONTEXT_SCOPE_TYPE_JIRA' }, - { no: 12, name: 'CONTEXT_SCOPE_TYPE_GOOGLE_DRIVE' }, - { no: 13, name: 'CONTEXT_SCOPE_TYPE_CONSOLE_LOG' }, - { no: 14, name: 'CONTEXT_SCOPE_TYPE_DOM_ELEMENT' }, - { no: 15, name: 'CONTEXT_SCOPE_TYPE_RECIPE' }, - { no: 16, name: 'CONTEXT_SCOPE_TYPE_KNOWLEDGE' }, - { no: 17, name: 'CONTEXT_SCOPE_TYPE_RULE' }, - { no: 18, name: 'CONTEXT_SCOPE_TYPE_MCP_RESOURCE' }, - { no: 19, name: 'CONTEXT_SCOPE_TYPE_BROWSER_PAGE' }, - { no: 20, name: 'CONTEXT_SCOPE_TYPE_BROWSER_CODE_BLOCK' }, - { no: 21, name: 'CONTEXT_SCOPE_TYPE_BROWSER_TEXT' }, - { no: 22, name: 'CONTEXT_SCOPE_TYPE_CONVERSATION' }, - { no: 23, name: 'CONTEXT_SCOPE_TYPE_USER_ACTIVITY' }, - { no: 24, name: 'CONTEXT_SCOPE_TYPE_TERMINAL' }, - ], -); +proto3.util.setEnumType(ContextScopeType, "exa.codeium_common_pb.ContextScopeType", [ + { no: 0, name: "CONTEXT_SCOPE_TYPE_UNSPECIFIED" }, + { no: 1, name: "CONTEXT_SCOPE_TYPE_FILE" }, + { no: 2, name: "CONTEXT_SCOPE_TYPE_DIRECTORY" }, + { no: 3, name: "CONTEXT_SCOPE_TYPE_REPOSITORY" }, + { no: 4, name: "CONTEXT_SCOPE_TYPE_CODE_CONTEXT" }, + { no: 5, name: "CONTEXT_SCOPE_TYPE_CCI_WITH_SUBRANGE" }, + { no: 6, name: "CONTEXT_SCOPE_TYPE_REPOSITORY_PATH" }, + { no: 7, name: "CONTEXT_SCOPE_TYPE_SLACK" }, + { no: 8, name: "CONTEXT_SCOPE_TYPE_GITHUB" }, + { no: 9, name: "CONTEXT_SCOPE_TYPE_FILE_LINE_RANGE" }, + { no: 10, name: "CONTEXT_SCOPE_TYPE_TEXT_BLOCK" }, + { no: 11, name: "CONTEXT_SCOPE_TYPE_JIRA" }, + { no: 12, name: "CONTEXT_SCOPE_TYPE_GOOGLE_DRIVE" }, + { no: 13, name: "CONTEXT_SCOPE_TYPE_CONSOLE_LOG" }, + { no: 14, name: "CONTEXT_SCOPE_TYPE_DOM_ELEMENT" }, + { no: 15, name: "CONTEXT_SCOPE_TYPE_RECIPE" }, + { no: 16, name: "CONTEXT_SCOPE_TYPE_KNOWLEDGE" }, + { no: 17, name: "CONTEXT_SCOPE_TYPE_RULE" }, + { no: 18, name: "CONTEXT_SCOPE_TYPE_MCP_RESOURCE" }, + { no: 19, name: "CONTEXT_SCOPE_TYPE_BROWSER_PAGE" }, + { no: 20, name: "CONTEXT_SCOPE_TYPE_BROWSER_CODE_BLOCK" }, + { no: 21, name: "CONTEXT_SCOPE_TYPE_BROWSER_TEXT" }, + { no: 22, name: "CONTEXT_SCOPE_TYPE_CONVERSATION" }, + { no: 23, name: "CONTEXT_SCOPE_TYPE_USER_ACTIVITY" }, + { no: 24, name: "CONTEXT_SCOPE_TYPE_TERMINAL" } +]); var StatusLevel; -(function (StatusLevel2) { - StatusLevel2[(StatusLevel2['UNSPECIFIED'] = 0)] = 'UNSPECIFIED'; - StatusLevel2[(StatusLevel2['ERROR'] = 1)] = 'ERROR'; - StatusLevel2[(StatusLevel2['WARNING'] = 2)] = 'WARNING'; - StatusLevel2[(StatusLevel2['INFO'] = 3)] = 'INFO'; - StatusLevel2[(StatusLevel2['DEBUG'] = 4)] = 'DEBUG'; +(function(StatusLevel2) { + StatusLevel2[StatusLevel2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + StatusLevel2[StatusLevel2["ERROR"] = 1] = "ERROR"; + StatusLevel2[StatusLevel2["WARNING"] = 2] = "WARNING"; + StatusLevel2[StatusLevel2["INFO"] = 3] = "INFO"; + StatusLevel2[StatusLevel2["DEBUG"] = 4] = "DEBUG"; })(StatusLevel || (StatusLevel = {})); -proto3.util.setEnumType(StatusLevel, 'exa.codeium_common_pb.StatusLevel', [ - { no: 0, name: 'STATUS_LEVEL_UNSPECIFIED' }, - { no: 1, name: 'STATUS_LEVEL_ERROR' }, - { no: 2, name: 'STATUS_LEVEL_WARNING' }, - { no: 3, name: 'STATUS_LEVEL_INFO' }, - { no: 4, name: 'STATUS_LEVEL_DEBUG' }, +proto3.util.setEnumType(StatusLevel, "exa.codeium_common_pb.StatusLevel", [ + { no: 0, name: "STATUS_LEVEL_UNSPECIFIED" }, + { no: 1, name: "STATUS_LEVEL_ERROR" }, + { no: 2, name: "STATUS_LEVEL_WARNING" }, + { no: 3, name: "STATUS_LEVEL_INFO" }, + { no: 4, name: "STATUS_LEVEL_DEBUG" } ]); var CortexErrorCategory; -(function (CortexErrorCategory2) { - CortexErrorCategory2[(CortexErrorCategory2['UNSPECIFIED'] = 0)] = - 'UNSPECIFIED'; - CortexErrorCategory2[(CortexErrorCategory2['OVERALL'] = 1)] = 'OVERALL'; - CortexErrorCategory2[(CortexErrorCategory2['ACTION_PREPARE'] = 2)] = - 'ACTION_PREPARE'; - CortexErrorCategory2[(CortexErrorCategory2['ACTION_APPLY'] = 3)] = - 'ACTION_APPLY'; +(function(CortexErrorCategory2) { + CortexErrorCategory2[CortexErrorCategory2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + CortexErrorCategory2[CortexErrorCategory2["OVERALL"] = 1] = "OVERALL"; + CortexErrorCategory2[CortexErrorCategory2["ACTION_PREPARE"] = 2] = "ACTION_PREPARE"; + CortexErrorCategory2[CortexErrorCategory2["ACTION_APPLY"] = 3] = "ACTION_APPLY"; })(CortexErrorCategory || (CortexErrorCategory = {})); -proto3.util.setEnumType( - CortexErrorCategory, - 'exa.codeium_common_pb.CortexErrorCategory', - [ - { no: 0, name: 'CORTEX_ERROR_CATEGORY_UNSPECIFIED' }, - { no: 1, name: 'CORTEX_ERROR_CATEGORY_OVERALL' }, - { no: 2, name: 'CORTEX_ERROR_CATEGORY_ACTION_PREPARE' }, - { no: 3, name: 'CORTEX_ERROR_CATEGORY_ACTION_APPLY' }, - ], -); +proto3.util.setEnumType(CortexErrorCategory, "exa.codeium_common_pb.CortexErrorCategory", [ + { no: 0, name: "CORTEX_ERROR_CATEGORY_UNSPECIFIED" }, + { no: 1, name: "CORTEX_ERROR_CATEGORY_OVERALL" }, + { no: 2, name: "CORTEX_ERROR_CATEGORY_ACTION_PREPARE" }, + { no: 3, name: "CORTEX_ERROR_CATEGORY_ACTION_APPLY" } +]); var LastUpdateType; -(function (LastUpdateType2) { - LastUpdateType2[(LastUpdateType2['UNSPECIFIED'] = 0)] = 'UNSPECIFIED'; - LastUpdateType2[(LastUpdateType2['OVERALL'] = 1)] = 'OVERALL'; - LastUpdateType2[(LastUpdateType2['LAST_AUTOCOMPLETE_USAGE_TIME'] = 2)] = - 'LAST_AUTOCOMPLETE_USAGE_TIME'; - LastUpdateType2[(LastUpdateType2['LAST_CHAT_USAGE_TIME'] = 3)] = - 'LAST_CHAT_USAGE_TIME'; - LastUpdateType2[(LastUpdateType2['LAST_COMMAND_USAGE_TIME'] = 4)] = - 'LAST_COMMAND_USAGE_TIME'; +(function(LastUpdateType2) { + LastUpdateType2[LastUpdateType2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + LastUpdateType2[LastUpdateType2["OVERALL"] = 1] = "OVERALL"; + LastUpdateType2[LastUpdateType2["LAST_AUTOCOMPLETE_USAGE_TIME"] = 2] = "LAST_AUTOCOMPLETE_USAGE_TIME"; + LastUpdateType2[LastUpdateType2["LAST_CHAT_USAGE_TIME"] = 3] = "LAST_CHAT_USAGE_TIME"; + LastUpdateType2[LastUpdateType2["LAST_COMMAND_USAGE_TIME"] = 4] = "LAST_COMMAND_USAGE_TIME"; })(LastUpdateType || (LastUpdateType = {})); -proto3.util.setEnumType( - LastUpdateType, - 'exa.codeium_common_pb.LastUpdateType', - [ - { no: 0, name: 'LAST_UPDATE_TYPE_UNSPECIFIED' }, - { no: 1, name: 'LAST_UPDATE_TYPE_OVERALL' }, - { no: 2, name: 'LAST_UPDATE_TYPE_LAST_AUTOCOMPLETE_USAGE_TIME' }, - { no: 3, name: 'LAST_UPDATE_TYPE_LAST_CHAT_USAGE_TIME' }, - { no: 4, name: 'LAST_UPDATE_TYPE_LAST_COMMAND_USAGE_TIME' }, - ], -); +proto3.util.setEnumType(LastUpdateType, "exa.codeium_common_pb.LastUpdateType", [ + { no: 0, name: "LAST_UPDATE_TYPE_UNSPECIFIED" }, + { no: 1, name: "LAST_UPDATE_TYPE_OVERALL" }, + { no: 2, name: "LAST_UPDATE_TYPE_LAST_AUTOCOMPLETE_USAGE_TIME" }, + { no: 3, name: "LAST_UPDATE_TYPE_LAST_CHAT_USAGE_TIME" }, + { no: 4, name: "LAST_UPDATE_TYPE_LAST_COMMAND_USAGE_TIME" } +]); var OnboardingActionType; -(function (OnboardingActionType2) { - OnboardingActionType2[(OnboardingActionType2['UNSPECIFIED'] = 0)] = - 'UNSPECIFIED'; - OnboardingActionType2[(OnboardingActionType2['AUTOCOMPLETE'] = 1)] = - 'AUTOCOMPLETE'; - OnboardingActionType2[(OnboardingActionType2['COMMAND'] = 2)] = 'COMMAND'; - OnboardingActionType2[(OnboardingActionType2['CHAT'] = 3)] = 'CHAT'; +(function(OnboardingActionType2) { + OnboardingActionType2[OnboardingActionType2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + OnboardingActionType2[OnboardingActionType2["AUTOCOMPLETE"] = 1] = "AUTOCOMPLETE"; + OnboardingActionType2[OnboardingActionType2["COMMAND"] = 2] = "COMMAND"; + OnboardingActionType2[OnboardingActionType2["CHAT"] = 3] = "CHAT"; })(OnboardingActionType || (OnboardingActionType = {})); -proto3.util.setEnumType( - OnboardingActionType, - 'exa.codeium_common_pb.OnboardingActionType', - [ - { no: 0, name: 'ONBOARDING_ACTION_TYPE_UNSPECIFIED' }, - { no: 1, name: 'ONBOARDING_ACTION_TYPE_AUTOCOMPLETE' }, - { no: 2, name: 'ONBOARDING_ACTION_TYPE_COMMAND' }, - { no: 3, name: 'ONBOARDING_ACTION_TYPE_CHAT' }, - ], -); +proto3.util.setEnumType(OnboardingActionType, "exa.codeium_common_pb.OnboardingActionType", [ + { no: 0, name: "ONBOARDING_ACTION_TYPE_UNSPECIFIED" }, + { no: 1, name: "ONBOARDING_ACTION_TYPE_AUTOCOMPLETE" }, + { no: 2, name: "ONBOARDING_ACTION_TYPE_COMMAND" }, + { no: 3, name: "ONBOARDING_ACTION_TYPE_CHAT" } +]); var SupercompleteTriggerCondition; -(function (SupercompleteTriggerCondition2) { - SupercompleteTriggerCondition2[ - (SupercompleteTriggerCondition2['UNSPECIFIED'] = 0) - ] = 'UNSPECIFIED'; - SupercompleteTriggerCondition2[ - (SupercompleteTriggerCondition2['AUTOCOMPLETE_ACCEPT'] = 1) - ] = 'AUTOCOMPLETE_ACCEPT'; - SupercompleteTriggerCondition2[ - (SupercompleteTriggerCondition2['CURSOR_LINE_NAVIGATION'] = 2) - ] = 'CURSOR_LINE_NAVIGATION'; - SupercompleteTriggerCondition2[ - (SupercompleteTriggerCondition2['TYPING'] = 3) - ] = 'TYPING'; - SupercompleteTriggerCondition2[ - (SupercompleteTriggerCondition2['FORCED'] = 4) - ] = 'FORCED'; - SupercompleteTriggerCondition2[ - (SupercompleteTriggerCondition2['TAB_JUMP_ACCEPT'] = 5) - ] = 'TAB_JUMP_ACCEPT'; - SupercompleteTriggerCondition2[ - (SupercompleteTriggerCondition2['SUPERCOMPLETE_ACCEPT'] = 6) - ] = 'SUPERCOMPLETE_ACCEPT'; - SupercompleteTriggerCondition2[ - (SupercompleteTriggerCondition2['TAB_JUMP_PREDICTIVE'] = 7) - ] = 'TAB_JUMP_PREDICTIVE'; - SupercompleteTriggerCondition2[ - (SupercompleteTriggerCondition2['AUTOCOMPLETE_PREDICTIVE'] = 8) - ] = 'AUTOCOMPLETE_PREDICTIVE'; - SupercompleteTriggerCondition2[ - (SupercompleteTriggerCondition2['SUPERCOMPLETE_PREDICTIVE'] = 9) - ] = 'SUPERCOMPLETE_PREDICTIVE'; - SupercompleteTriggerCondition2[ - (SupercompleteTriggerCondition2['TAB_JUMP_EDIT'] = 10) - ] = 'TAB_JUMP_EDIT'; +(function(SupercompleteTriggerCondition2) { + SupercompleteTriggerCondition2[SupercompleteTriggerCondition2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + SupercompleteTriggerCondition2[SupercompleteTriggerCondition2["AUTOCOMPLETE_ACCEPT"] = 1] = "AUTOCOMPLETE_ACCEPT"; + SupercompleteTriggerCondition2[SupercompleteTriggerCondition2["CURSOR_LINE_NAVIGATION"] = 2] = "CURSOR_LINE_NAVIGATION"; + SupercompleteTriggerCondition2[SupercompleteTriggerCondition2["TYPING"] = 3] = "TYPING"; + SupercompleteTriggerCondition2[SupercompleteTriggerCondition2["FORCED"] = 4] = "FORCED"; + SupercompleteTriggerCondition2[SupercompleteTriggerCondition2["TAB_JUMP_ACCEPT"] = 5] = "TAB_JUMP_ACCEPT"; + SupercompleteTriggerCondition2[SupercompleteTriggerCondition2["SUPERCOMPLETE_ACCEPT"] = 6] = "SUPERCOMPLETE_ACCEPT"; + SupercompleteTriggerCondition2[SupercompleteTriggerCondition2["TAB_JUMP_PREDICTIVE"] = 7] = "TAB_JUMP_PREDICTIVE"; + SupercompleteTriggerCondition2[SupercompleteTriggerCondition2["AUTOCOMPLETE_PREDICTIVE"] = 8] = "AUTOCOMPLETE_PREDICTIVE"; + SupercompleteTriggerCondition2[SupercompleteTriggerCondition2["SUPERCOMPLETE_PREDICTIVE"] = 9] = "SUPERCOMPLETE_PREDICTIVE"; + SupercompleteTriggerCondition2[SupercompleteTriggerCondition2["TAB_JUMP_EDIT"] = 10] = "TAB_JUMP_EDIT"; })(SupercompleteTriggerCondition || (SupercompleteTriggerCondition = {})); -proto3.util.setEnumType( - SupercompleteTriggerCondition, - 'exa.codeium_common_pb.SupercompleteTriggerCondition', - [ - { no: 0, name: 'SUPERCOMPLETE_TRIGGER_CONDITION_UNSPECIFIED' }, - { no: 1, name: 'SUPERCOMPLETE_TRIGGER_CONDITION_AUTOCOMPLETE_ACCEPT' }, - { no: 2, name: 'SUPERCOMPLETE_TRIGGER_CONDITION_CURSOR_LINE_NAVIGATION' }, - { no: 3, name: 'SUPERCOMPLETE_TRIGGER_CONDITION_TYPING' }, - { no: 4, name: 'SUPERCOMPLETE_TRIGGER_CONDITION_FORCED' }, - { no: 5, name: 'SUPERCOMPLETE_TRIGGER_CONDITION_TAB_JUMP_ACCEPT' }, - { no: 6, name: 'SUPERCOMPLETE_TRIGGER_CONDITION_SUPERCOMPLETE_ACCEPT' }, - { no: 7, name: 'SUPERCOMPLETE_TRIGGER_CONDITION_TAB_JUMP_PREDICTIVE' }, - { no: 8, name: 'SUPERCOMPLETE_TRIGGER_CONDITION_AUTOCOMPLETE_PREDICTIVE' }, - { no: 9, name: 'SUPERCOMPLETE_TRIGGER_CONDITION_SUPERCOMPLETE_PREDICTIVE' }, - { no: 10, name: 'SUPERCOMPLETE_TRIGGER_CONDITION_TAB_JUMP_EDIT' }, - ], -); +proto3.util.setEnumType(SupercompleteTriggerCondition, "exa.codeium_common_pb.SupercompleteTriggerCondition", [ + { no: 0, name: "SUPERCOMPLETE_TRIGGER_CONDITION_UNSPECIFIED" }, + { no: 1, name: "SUPERCOMPLETE_TRIGGER_CONDITION_AUTOCOMPLETE_ACCEPT" }, + { no: 2, name: "SUPERCOMPLETE_TRIGGER_CONDITION_CURSOR_LINE_NAVIGATION" }, + { no: 3, name: "SUPERCOMPLETE_TRIGGER_CONDITION_TYPING" }, + { no: 4, name: "SUPERCOMPLETE_TRIGGER_CONDITION_FORCED" }, + { no: 5, name: "SUPERCOMPLETE_TRIGGER_CONDITION_TAB_JUMP_ACCEPT" }, + { no: 6, name: "SUPERCOMPLETE_TRIGGER_CONDITION_SUPERCOMPLETE_ACCEPT" }, + { no: 7, name: "SUPERCOMPLETE_TRIGGER_CONDITION_TAB_JUMP_PREDICTIVE" }, + { no: 8, name: "SUPERCOMPLETE_TRIGGER_CONDITION_AUTOCOMPLETE_PREDICTIVE" }, + { no: 9, name: "SUPERCOMPLETE_TRIGGER_CONDITION_SUPERCOMPLETE_PREDICTIVE" }, + { no: 10, name: "SUPERCOMPLETE_TRIGGER_CONDITION_TAB_JUMP_EDIT" } +]); var ProductEventType; -(function (ProductEventType2) { - ProductEventType2[(ProductEventType2['EVENT_UNSPECIFIED'] = 0)] = - 'EVENT_UNSPECIFIED'; - ProductEventType2[(ProductEventType2['ANTIGRAVITY_EDITOR_READY'] = 251)] = - 'ANTIGRAVITY_EDITOR_READY'; - ProductEventType2[(ProductEventType2['ANTIGRAVITY_EXTENSION_START'] = 253)] = - 'ANTIGRAVITY_EXTENSION_START'; - ProductEventType2[ - (ProductEventType2['ANTIGRAVITY_EXTENSION_ACTIVATED'] = 32) - ] = 'ANTIGRAVITY_EXTENSION_ACTIVATED'; - ProductEventType2[(ProductEventType2['LS_DOWNLOAD_START'] = 1)] = - 'LS_DOWNLOAD_START'; - ProductEventType2[(ProductEventType2['LS_DOWNLOAD_COMPLETE'] = 2)] = - 'LS_DOWNLOAD_COMPLETE'; - ProductEventType2[(ProductEventType2['LS_DOWNLOAD_FAILURE'] = 5)] = - 'LS_DOWNLOAD_FAILURE'; - ProductEventType2[(ProductEventType2['LS_BINARY_STARTUP'] = 250)] = - 'LS_BINARY_STARTUP'; - ProductEventType2[(ProductEventType2['LS_STARTUP'] = 3)] = 'LS_STARTUP'; - ProductEventType2[(ProductEventType2['LS_FAILURE'] = 4)] = 'LS_FAILURE'; - ProductEventType2[(ProductEventType2['AUTOCOMPLETE_ACCEPTED'] = 6)] = - 'AUTOCOMPLETE_ACCEPTED'; - ProductEventType2[(ProductEventType2['AUTOCOMPLETE_ONE_WORD_ACCEPTED'] = 7)] = - 'AUTOCOMPLETE_ONE_WORD_ACCEPTED'; - ProductEventType2[(ProductEventType2['CHAT_MESSAGE_SENT'] = 8)] = - 'CHAT_MESSAGE_SENT'; - ProductEventType2[(ProductEventType2['CHAT_MENTION_INSERT'] = 13)] = - 'CHAT_MENTION_INSERT'; - ProductEventType2[(ProductEventType2['CHAT_MENTION_MENU_OPEN'] = 19)] = - 'CHAT_MENTION_MENU_OPEN'; - ProductEventType2[(ProductEventType2['CHAT_OPEN_SETTINGS'] = 14)] = - 'CHAT_OPEN_SETTINGS'; - ProductEventType2[(ProductEventType2['CHAT_OPEN_CONTEXT_SETTINGS'] = 15)] = - 'CHAT_OPEN_CONTEXT_SETTINGS'; - ProductEventType2[(ProductEventType2['CHAT_WITH_CODEBASE'] = 16)] = - 'CHAT_WITH_CODEBASE'; - ProductEventType2[(ProductEventType2['CHAT_NEW_CONVERSATION'] = 17)] = - 'CHAT_NEW_CONVERSATION'; - ProductEventType2[(ProductEventType2['CHAT_CHANGE_MODEL'] = 18)] = - 'CHAT_CHANGE_MODEL'; - ProductEventType2[(ProductEventType2['CHAT_TOGGLE_FOCUS_INSERT_TEXT'] = 34)] = - 'CHAT_TOGGLE_FOCUS_INSERT_TEXT'; - ProductEventType2[(ProductEventType2['FUNCTION_REFACTOR'] = 28)] = - 'FUNCTION_REFACTOR'; - ProductEventType2[(ProductEventType2['EXPLAIN_CODE_BLOCK'] = 29)] = - 'EXPLAIN_CODE_BLOCK'; - ProductEventType2[(ProductEventType2['FUNCTION_ADD_DOCSTRING'] = 30)] = - 'FUNCTION_ADD_DOCSTRING'; - ProductEventType2[(ProductEventType2['EXPLAIN_PROBLEM'] = 31)] = - 'EXPLAIN_PROBLEM'; - ProductEventType2[(ProductEventType2['COMMAND_BOX_OPENED'] = 9)] = - 'COMMAND_BOX_OPENED'; - ProductEventType2[(ProductEventType2['COMMAND_SUBMITTED'] = 10)] = - 'COMMAND_SUBMITTED'; - ProductEventType2[(ProductEventType2['COMMAND_ACCEPTED'] = 11)] = - 'COMMAND_ACCEPTED'; - ProductEventType2[(ProductEventType2['COMMAND_REJECTED'] = 12)] = - 'COMMAND_REJECTED'; - ProductEventType2[ - (ProductEventType2['WS_ONBOARDING_LANDING_PAGE_OPENED'] = 20) - ] = 'WS_ONBOARDING_LANDING_PAGE_OPENED'; - ProductEventType2[ - (ProductEventType2['WS_ONBOARDING_SETUP_PAGE_OPENED'] = 21) - ] = 'WS_ONBOARDING_SETUP_PAGE_OPENED'; - ProductEventType2[ - (ProductEventType2['WS_ONBOARDING_KEYBINDINGS_PAGE_OPENED'] = 22) - ] = 'WS_ONBOARDING_KEYBINDINGS_PAGE_OPENED'; - ProductEventType2[ - (ProductEventType2['WS_ONBOARDING_MIGRATION_SCOPE_PAGE_OPENED'] = 23) - ] = 'WS_ONBOARDING_MIGRATION_SCOPE_PAGE_OPENED'; - ProductEventType2[ - (ProductEventType2['WS_ONBOARDING_IMPORT_PAGE_OPENED'] = 24) - ] = 'WS_ONBOARDING_IMPORT_PAGE_OPENED'; - ProductEventType2[ - (ProductEventType2['WS_ONBOARDING_AUTH_PAGE_OPENED'] = 25) - ] = 'WS_ONBOARDING_AUTH_PAGE_OPENED'; - ProductEventType2[ - (ProductEventType2['WS_ONBOARDING_AUTH_MANUAL_PAGE_OPENED'] = 26) - ] = 'WS_ONBOARDING_AUTH_MANUAL_PAGE_OPENED'; - ProductEventType2[ - (ProductEventType2['WS_ONBOARDING_CHOOSE_THEME_PAGE_OPENED'] = 35) - ] = 'WS_ONBOARDING_CHOOSE_THEME_PAGE_OPENED'; - ProductEventType2[ - (ProductEventType2['AGY_ONBOARDING_TERMS_OF_USE_PAGE_OPENED'] = 231) - ] = 'AGY_ONBOARDING_TERMS_OF_USE_PAGE_OPENED'; - ProductEventType2[ - (ProductEventType2['AGY_ONBOARDING_AGENT_CONFIG_PAGE_OPENED'] = 232) - ] = 'AGY_ONBOARDING_AGENT_CONFIG_PAGE_OPENED'; - ProductEventType2[ - (ProductEventType2['AGY_ONBOARDING_USAGE_MODE_PAGE_OPENED'] = 233) - ] = 'AGY_ONBOARDING_USAGE_MODE_PAGE_OPENED'; - ProductEventType2[ - (ProductEventType2['AGY_ONBOARDING_INSTALL_EXTENSIONS'] = 234) - ] = 'AGY_ONBOARDING_INSTALL_EXTENSIONS'; - ProductEventType2[(ProductEventType2['WS_ONBOARDING_COMPLETED'] = 27)] = - 'WS_ONBOARDING_COMPLETED'; - ProductEventType2[(ProductEventType2['WS_SKIPPED_ONBOARDING'] = 69)] = - 'WS_SKIPPED_ONBOARDING'; - ProductEventType2[(ProductEventType2['WS_SETTINGS_PAGE_OPEN'] = 72)] = - 'WS_SETTINGS_PAGE_OPEN'; - ProductEventType2[ - (ProductEventType2['WS_SETTINGS_PAGE_OPEN_WITH_SETTING_FOCUS'] = 73) - ] = 'WS_SETTINGS_PAGE_OPEN_WITH_SETTING_FOCUS'; - ProductEventType2[(ProductEventType2['EMPTY_WORKSPACE_PAGE_OPENED'] = 209)] = - 'EMPTY_WORKSPACE_PAGE_OPENED'; - ProductEventType2[ - (ProductEventType2['EMPTY_WORKSPACE_PAGE_RECENT_FOLDERS_CLICKED'] = 210) - ] = 'EMPTY_WORKSPACE_PAGE_RECENT_FOLDERS_CLICKED'; - ProductEventType2[ - (ProductEventType2['EMPTY_WORKSPACE_PAGE_OPEN_FOLDER_CLICKED'] = 211) - ] = 'EMPTY_WORKSPACE_PAGE_OPEN_FOLDER_CLICKED'; - ProductEventType2[ - (ProductEventType2['EMPTY_WORKSPACE_PAGE_GENERATE_PROJECT_CLICKED'] = 212) - ] = 'EMPTY_WORKSPACE_PAGE_GENERATE_PROJECT_CLICKED'; - ProductEventType2[(ProductEventType2['PROVIDE_FEEDBACK'] = 33)] = - 'PROVIDE_FEEDBACK'; - ProductEventType2[(ProductEventType2['CASCADE_MESSAGE_SENT'] = 36)] = - 'CASCADE_MESSAGE_SENT'; - ProductEventType2[ - (ProductEventType2['WS_OPEN_CASCADE_MEMORIES_PANEL'] = 38) - ] = 'WS_OPEN_CASCADE_MEMORIES_PANEL'; - ProductEventType2[(ProductEventType2['PROVIDE_MESSAGE_FEEDBACK'] = 41)] = - 'PROVIDE_MESSAGE_FEEDBACK'; - ProductEventType2[(ProductEventType2['CASCADE_MEMORY_DELETED'] = 42)] = - 'CASCADE_MEMORY_DELETED'; - ProductEventType2[(ProductEventType2['CASCADE_STEP_COMPLETED'] = 43)] = - 'CASCADE_STEP_COMPLETED'; - ProductEventType2[(ProductEventType2['ACKNOWLEDGE_CASCADE_CODE_EDIT'] = 44)] = - 'ACKNOWLEDGE_CASCADE_CODE_EDIT'; - ProductEventType2[ - (ProductEventType2['CASCADE_WEB_TOOLS_OPEN_READ_URL_MARKDOWN'] = 45) - ] = 'CASCADE_WEB_TOOLS_OPEN_READ_URL_MARKDOWN'; - ProductEventType2[ - (ProductEventType2['CASCADE_WEB_TOOLS_OPEN_CHUNK_MARKDOWN'] = 46) - ] = 'CASCADE_WEB_TOOLS_OPEN_CHUNK_MARKDOWN'; - ProductEventType2[(ProductEventType2['CASCADE_MCP_SERVER_INIT'] = 64)] = - 'CASCADE_MCP_SERVER_INIT'; - ProductEventType2[ - (ProductEventType2['CASCADE_KNOWLEDGE_BASE_ITEM_OPENED'] = 113) - ] = 'CASCADE_KNOWLEDGE_BASE_ITEM_OPENED'; - ProductEventType2[(ProductEventType2['CASCADE_VIEW_LOADED'] = 119)] = - 'CASCADE_VIEW_LOADED'; - ProductEventType2[ - (ProductEventType2['CASCADE_CONTEXT_SCOPE_ITEM_ATTACHED'] = 173) - ] = 'CASCADE_CONTEXT_SCOPE_ITEM_ATTACHED'; - ProductEventType2[(ProductEventType2['CASCADE_CLICK_EVENT'] = 65)] = - 'CASCADE_CLICK_EVENT'; - ProductEventType2[(ProductEventType2['CASCADE_IMPRESSION_EVENT'] = 67)] = - 'CASCADE_IMPRESSION_EVENT'; - ProductEventType2[(ProductEventType2['OPEN_CHANGELOG'] = 37)] = - 'OPEN_CHANGELOG'; - ProductEventType2[(ProductEventType2['CURSOR_DETECTED'] = 39)] = - 'CURSOR_DETECTED'; - ProductEventType2[(ProductEventType2['VSCODE_DETECTED'] = 40)] = - 'VSCODE_DETECTED'; - ProductEventType2[(ProductEventType2['JETBRAINS_DETECTED'] = 153)] = - 'JETBRAINS_DETECTED'; - ProductEventType2[ - (ProductEventType2['CROSS_SELL_EXTENSION_DOWNLOAD_ANTIGRAVITY_CLICK'] = 47) - ] = 'CROSS_SELL_EXTENSION_DOWNLOAD_ANTIGRAVITY_CLICK'; - ProductEventType2[ - (ProductEventType2[ - 'CROSS_SELL_EXTENSION_DOWNLOAD_ANTIGRAVITY_NUDGE_IMPRESSION' - ] = 48) - ] = 'CROSS_SELL_EXTENSION_DOWNLOAD_ANTIGRAVITY_NUDGE_IMPRESSION'; - ProductEventType2[ - (ProductEventType2['WS_PROBLEMS_TAB_SEND_ALL_TO_CASCADE'] = 49) - ] = 'WS_PROBLEMS_TAB_SEND_ALL_TO_CASCADE'; - ProductEventType2[ - (ProductEventType2['WS_PROBLEMS_TAB_SEND_ALL_IN_FILE_TO_CASCADE'] = 50) - ] = 'WS_PROBLEMS_TAB_SEND_ALL_IN_FILE_TO_CASCADE'; - ProductEventType2[(ProductEventType2['WS_CASCADE_BAR_FILE_NAV'] = 51)] = - 'WS_CASCADE_BAR_FILE_NAV'; - ProductEventType2[(ProductEventType2['WS_CASCADE_BAR_HUNK_NAV'] = 52)] = - 'WS_CASCADE_BAR_HUNK_NAV'; - ProductEventType2[(ProductEventType2['WS_CASCADE_BAR_ACCEPT_FILE'] = 53)] = - 'WS_CASCADE_BAR_ACCEPT_FILE'; - ProductEventType2[(ProductEventType2['WS_CASCADE_BAR_REJECT_FILE'] = 54)] = - 'WS_CASCADE_BAR_REJECT_FILE'; - ProductEventType2[(ProductEventType2['WS_CUSTOM_APP_ICON_MODAL_OPEN'] = 55)] = - 'WS_CUSTOM_APP_ICON_MODAL_OPEN'; - ProductEventType2[ - (ProductEventType2['WS_CUSTOM_APP_ICON_SELECT_CLASSIC'] = 56) - ] = 'WS_CUSTOM_APP_ICON_SELECT_CLASSIC'; - ProductEventType2[ - (ProductEventType2['WS_CUSTOM_APP_ICON_SELECT_CLASSIC_LIGHT'] = 57) - ] = 'WS_CUSTOM_APP_ICON_SELECT_CLASSIC_LIGHT'; - ProductEventType2[ - (ProductEventType2['WS_CUSTOM_APP_ICON_SELECT_RETRO'] = 58) - ] = 'WS_CUSTOM_APP_ICON_SELECT_RETRO'; - ProductEventType2[ - (ProductEventType2['WS_CUSTOM_APP_ICON_SELECT_BLUEPRINT'] = 59) - ] = 'WS_CUSTOM_APP_ICON_SELECT_BLUEPRINT'; - ProductEventType2[ - (ProductEventType2['WS_CUSTOM_APP_ICON_SELECT_HAND_DRAWN'] = 60) - ] = 'WS_CUSTOM_APP_ICON_SELECT_HAND_DRAWN'; - ProductEventType2[ - (ProductEventType2['WS_CUSTOM_APP_ICON_SELECT_SUNSET'] = 61) - ] = 'WS_CUSTOM_APP_ICON_SELECT_SUNSET'; - ProductEventType2[ - (ProductEventType2['WS_CUSTOM_APP_ICON_SELECT_VALENTINE'] = 66) - ] = 'WS_CUSTOM_APP_ICON_SELECT_VALENTINE'; - ProductEventType2[ - (ProductEventType2['WS_CUSTOM_APP_ICON_SELECT_PIXEL_SURF'] = 82) - ] = 'WS_CUSTOM_APP_ICON_SELECT_PIXEL_SURF'; - ProductEventType2[(ProductEventType2['ENTERED_MCP_TOOLBAR_TAB'] = 63)] = - 'ENTERED_MCP_TOOLBAR_TAB'; - ProductEventType2[(ProductEventType2['CLICKED_TO_CONFIGURE_MCP'] = 62)] = - 'CLICKED_TO_CONFIGURE_MCP'; - ProductEventType2[(ProductEventType2['WS_SETTINGS_UPDATED'] = 68)] = - 'WS_SETTINGS_UPDATED'; - ProductEventType2[(ProductEventType2['BROWSER_PREVIEW_DOM_ELEMENT'] = 70)] = - 'BROWSER_PREVIEW_DOM_ELEMENT'; - ProductEventType2[ - (ProductEventType2['BROWSER_PREVIEW_CONSOLE_OUTPUT'] = 71) - ] = 'BROWSER_PREVIEW_CONSOLE_OUTPUT'; - ProductEventType2[(ProductEventType2['WS_SETTINGS_CHANGED_BY_USER'] = 74)] = - 'WS_SETTINGS_CHANGED_BY_USER'; - ProductEventType2[ - (ProductEventType2['WS_GENERATE_COMMIT_MESSAGE_CLICKED'] = 75) - ] = 'WS_GENERATE_COMMIT_MESSAGE_CLICKED'; - ProductEventType2[ - (ProductEventType2['WS_GENERATE_COMMIT_MESSAGE_ERRORED'] = 76) - ] = 'WS_GENERATE_COMMIT_MESSAGE_ERRORED'; - ProductEventType2[ - (ProductEventType2['WS_CLICKED_COMMIT_FROM_SCM_PANEL'] = 77) - ] = 'WS_CLICKED_COMMIT_FROM_SCM_PANEL'; - ProductEventType2[ - (ProductEventType2['WS_CANCELED_GENERATE_COMMIT_MESSAGE'] = 79) - ] = 'WS_CANCELED_GENERATE_COMMIT_MESSAGE'; - ProductEventType2[(ProductEventType2['USING_DEV_EXTENSION'] = 78)] = - 'USING_DEV_EXTENSION'; - ProductEventType2[ - (ProductEventType2['WS_APP_DEPLOYMENT_CREATE_PROJECT'] = 80) - ] = 'WS_APP_DEPLOYMENT_CREATE_PROJECT'; - ProductEventType2[ - (ProductEventType2['WS_APP_DEPLOYMENT_DEPLOY_PROJECT'] = 81) - ] = 'WS_APP_DEPLOYMENT_DEPLOY_PROJECT'; - ProductEventType2[ - (ProductEventType2['CASCADE_OPEN_ACTIVE_CONVERSATION_DROPDOWN'] = 114) - ] = 'CASCADE_OPEN_ACTIVE_CONVERSATION_DROPDOWN'; - ProductEventType2[ - (ProductEventType2['CASCADE_SELECT_ACTIVE_CONVERSATION_ON_DROPDOWN'] = 115) - ] = 'CASCADE_SELECT_ACTIVE_CONVERSATION_ON_DROPDOWN'; - ProductEventType2[ - (ProductEventType2['CASCADE_NAVIGATE_ACTIVE_CONVERSATION_ON_DROPDOWN'] = - 122) - ] = 'CASCADE_NAVIGATE_ACTIVE_CONVERSATION_ON_DROPDOWN'; - ProductEventType2[ - (ProductEventType2['CASCADE_SNOOZE_CONVERSATION_ON_DROPDOWN'] = 123) - ] = 'CASCADE_SNOOZE_CONVERSATION_ON_DROPDOWN'; - ProductEventType2[ - (ProductEventType2['CASCADE_TOGGLE_NOTIFICATION_ON_DROPDOWN'] = 124) - ] = 'CASCADE_TOGGLE_NOTIFICATION_ON_DROPDOWN'; - ProductEventType2[ - (ProductEventType2['CASCADE_SELECT_NOTIFICATION_ON_DROPDOWN'] = 125) - ] = 'CASCADE_SELECT_NOTIFICATION_ON_DROPDOWN'; - ProductEventType2[ - (ProductEventType2['CASCADE_NAVIGATE_NOTIFICATION_ON_DROPDOWN'] = 126) - ] = 'CASCADE_NAVIGATE_NOTIFICATION_ON_DROPDOWN'; - ProductEventType2[ - (ProductEventType2['CASCADE_DISMISS_NOTIFICATION_ON_DROPDOWN'] = 127) - ] = 'CASCADE_DISMISS_NOTIFICATION_ON_DROPDOWN'; - ProductEventType2[ - (ProductEventType2['CASCADE_TRAJECTORY_SHARE_COPY_LINK'] = 137) - ] = 'CASCADE_TRAJECTORY_SHARE_COPY_LINK'; - ProductEventType2[ - (ProductEventType2['CASCADE_TRAJECTORY_SHARE_CREATE_LINK'] = 138) - ] = 'CASCADE_TRAJECTORY_SHARE_CREATE_LINK'; - ProductEventType2[ - (ProductEventType2['CASCADE_CUSTOMIZATIONS_TAB_CHANGE'] = 139) - ] = 'CASCADE_CUSTOMIZATIONS_TAB_CHANGE'; - ProductEventType2[(ProductEventType2['CASCADE_WORKFLOW_OPEN'] = 140)] = - 'CASCADE_WORKFLOW_OPEN'; - ProductEventType2[(ProductEventType2['CASCADE_NEW_WORKFLOW_CLICKED'] = 141)] = - 'CASCADE_NEW_WORKFLOW_CLICKED'; - ProductEventType2[ - (ProductEventType2['CASCADE_NEW_GLOBAL_WORKFLOW_CLICKED'] = 184) - ] = 'CASCADE_NEW_GLOBAL_WORKFLOW_CLICKED'; - ProductEventType2[ - (ProductEventType2['CASCADE_WORKFLOW_REFRESH_CLICKED'] = 142) - ] = 'CASCADE_WORKFLOW_REFRESH_CLICKED'; - ProductEventType2[(ProductEventType2['CASCADE_RULE_OPEN'] = 143)] = - 'CASCADE_RULE_OPEN'; - ProductEventType2[(ProductEventType2['CASCADE_NEW_RULE_CLICKED'] = 144)] = - 'CASCADE_NEW_RULE_CLICKED'; - ProductEventType2[ - (ProductEventType2['CASCADE_NEW_GLOBAL_RULE_CLICKED'] = 145) - ] = 'CASCADE_NEW_GLOBAL_RULE_CLICKED'; - ProductEventType2[(ProductEventType2['CASCADE_RULE_REFRESH_CLICKED'] = 146)] = - 'CASCADE_RULE_REFRESH_CLICKED'; - ProductEventType2[ - (ProductEventType2['CASCADE_IMPORT_RULES_FROM_CURSOR_CLICKED'] = 147) - ] = 'CASCADE_IMPORT_RULES_FROM_CURSOR_CLICKED'; - ProductEventType2[ - (ProductEventType2['WS_IMPORT_CURSOR_RULES_COMMAND_PALETTE'] = 152) - ] = 'WS_IMPORT_CURSOR_RULES_COMMAND_PALETTE'; - ProductEventType2[(ProductEventType2['CASCADE_CHANGES_ACCEPT_ALL'] = 83)] = - 'CASCADE_CHANGES_ACCEPT_ALL'; - ProductEventType2[(ProductEventType2['CASCADE_CHANGES_REJECT_ALL'] = 84)] = - 'CASCADE_CHANGES_REJECT_ALL'; - ProductEventType2[(ProductEventType2['CASCADE_MEMORIES_EDIT'] = 85)] = - 'CASCADE_MEMORIES_EDIT'; - ProductEventType2[(ProductEventType2['CASCADE_MEMORIES_VIEW'] = 86)] = - 'CASCADE_MEMORIES_VIEW'; - ProductEventType2[(ProductEventType2['KEYBOARD_SHORTCUT'] = 136)] = - 'KEYBOARD_SHORTCUT'; - ProductEventType2[(ProductEventType2['CASCADE_INSERT_AT_MENTION'] = 87)] = - 'CASCADE_INSERT_AT_MENTION'; - ProductEventType2[(ProductEventType2['CASCADE_ERROR_STEP'] = 120)] = - 'CASCADE_ERROR_STEP'; - ProductEventType2[ - (ProductEventType2['CASCADE_SUGGESTED_RESPONSES_SUGGESTION_CLICKED'] = 121) - ] = 'CASCADE_SUGGESTED_RESPONSES_SUGGESTION_CLICKED'; - ProductEventType2[(ProductEventType2['CASCADE_PLUGIN_PANEL_OPENED'] = 128)] = - 'CASCADE_PLUGIN_PANEL_OPENED'; - ProductEventType2[(ProductEventType2['CASCADE_PLUGIN_PAGE_OPENED'] = 129)] = - 'CASCADE_PLUGIN_PAGE_OPENED'; - ProductEventType2[(ProductEventType2['CASCADE_PLUGIN_INSTALLED'] = 130)] = - 'CASCADE_PLUGIN_INSTALLED'; - ProductEventType2[(ProductEventType2['CASCADE_PLUGIN_DISABLED'] = 131)] = - 'CASCADE_PLUGIN_DISABLED'; - ProductEventType2[(ProductEventType2['CASCADE_PLUGIN_ENABLED'] = 132)] = - 'CASCADE_PLUGIN_ENABLED'; - ProductEventType2[ - (ProductEventType2['CASCADE_PLUGIN_INSTALLATION_ERROR'] = 133) - ] = 'CASCADE_PLUGIN_INSTALLATION_ERROR'; - ProductEventType2[(ProductEventType2['CASCADE_PLUGIN_TOOL_ENABLED'] = 134)] = - 'CASCADE_PLUGIN_TOOL_ENABLED'; - ProductEventType2[(ProductEventType2['CASCADE_PLUGIN_TOOL_DISABLED'] = 135)] = - 'CASCADE_PLUGIN_TOOL_DISABLED'; - ProductEventType2[(ProductEventType2['CASCADE_CUSTOM_MODEL_EVENT'] = 229)] = - 'CASCADE_CUSTOM_MODEL_EVENT'; - ProductEventType2[(ProductEventType2['WEBSITE_NOT_FOUND_PAGE'] = 88)] = - 'WEBSITE_NOT_FOUND_PAGE'; - ProductEventType2[ - (ProductEventType2['WEBSITE_AUTH_REDIRECT_LONG_WAIT'] = 89) - ] = 'WEBSITE_AUTH_REDIRECT_LONG_WAIT'; - ProductEventType2[(ProductEventType2['WEBSITE_AUTH_REDIRECT_ERROR'] = 90)] = - 'WEBSITE_AUTH_REDIRECT_ERROR'; - ProductEventType2[ - (ProductEventType2['WEBSITE_AUTH_REDIRECT_SUCCESS'] = 112) - ] = 'WEBSITE_AUTH_REDIRECT_SUCCESS'; - ProductEventType2[(ProductEventType2['WEBSITE_PAGE_VISIT'] = 175)] = - 'WEBSITE_PAGE_VISIT'; - ProductEventType2[(ProductEventType2['WEBSITE_SIGNUP_INFO'] = 176)] = - 'WEBSITE_SIGNUP_INFO'; - ProductEventType2[(ProductEventType2['WEBSITE_START_PLAN_CHECKOUT'] = 177)] = - 'WEBSITE_START_PLAN_CHECKOUT'; - ProductEventType2[(ProductEventType2['WEBSITE_START_UPDATE_PAYMENT'] = 202)] = - 'WEBSITE_START_UPDATE_PAYMENT'; - ProductEventType2[(ProductEventType2['WEBSITE_START_VIEW_INVOICES'] = 203)] = - 'WEBSITE_START_VIEW_INVOICES'; - ProductEventType2[ - (ProductEventType2['WEBSITE_UNIVERSITY_LECTURE_VIEW'] = 214) - ] = 'WEBSITE_UNIVERSITY_LECTURE_VIEW'; - ProductEventType2[ - (ProductEventType2['WEBSITE_DISALLOW_ENTERPRISE_LOGIN'] = 224) - ] = 'WEBSITE_DISALLOW_ENTERPRISE_LOGIN'; - ProductEventType2[(ProductEventType2['WEBSITE_SSO_LOGIN_REDIRECT'] = 225)] = - 'WEBSITE_SSO_LOGIN_REDIRECT'; - ProductEventType2[(ProductEventType2['WEBSITE_ATTEMPT_TO_LOGIN'] = 226)] = - 'WEBSITE_ATTEMPT_TO_LOGIN'; - ProductEventType2[(ProductEventType2['WEBSITE_SUCCESSFUL_LOGIN'] = 227)] = - 'WEBSITE_SUCCESSFUL_LOGIN'; - ProductEventType2[(ProductEventType2['WEBSITE_FAILED_LOGIN'] = 228)] = - 'WEBSITE_FAILED_LOGIN'; - ProductEventType2[(ProductEventType2['JB_OPEN_PLAN_INFO'] = 91)] = - 'JB_OPEN_PLAN_INFO'; - ProductEventType2[(ProductEventType2['JB_SNOOZE_PLUGIN'] = 92)] = - 'JB_SNOOZE_PLUGIN'; - ProductEventType2[(ProductEventType2['JB_TOGGLE_PLUGIN_STATUS'] = 93)] = - 'JB_TOGGLE_PLUGIN_STATUS'; - ProductEventType2[(ProductEventType2['JB_SWITCH_CHANNEL'] = 94)] = - 'JB_SWITCH_CHANNEL'; - ProductEventType2[(ProductEventType2['JB_OPEN_SETTINGS'] = 95)] = - 'JB_OPEN_SETTINGS'; - ProductEventType2[(ProductEventType2['JB_PLUGIN_LOG_IN'] = 96)] = - 'JB_PLUGIN_LOG_IN'; - ProductEventType2[(ProductEventType2['JB_PLUGIN_LOG_OUT'] = 97)] = - 'JB_PLUGIN_LOG_OUT'; - ProductEventType2[(ProductEventType2['JB_OPEN_QUICK_REFERENCE'] = 98)] = - 'JB_OPEN_QUICK_REFERENCE'; - ProductEventType2[(ProductEventType2['JB_EDIT_KEYBOARD_SHORTCUTS'] = 99)] = - 'JB_EDIT_KEYBOARD_SHORTCUTS'; - ProductEventType2[(ProductEventType2['JB_CASCADE_BAR_CASCADE_ICON'] = 100)] = - 'JB_CASCADE_BAR_CASCADE_ICON'; - ProductEventType2[(ProductEventType2['JB_CASCADE_BAR_FILE_NAV'] = 101)] = - 'JB_CASCADE_BAR_FILE_NAV'; - ProductEventType2[(ProductEventType2['JB_CASCADE_BAR_HUNK_NAV'] = 102)] = - 'JB_CASCADE_BAR_HUNK_NAV'; - ProductEventType2[(ProductEventType2['JB_CASCADE_BAR_ACCEPT_FILE'] = 103)] = - 'JB_CASCADE_BAR_ACCEPT_FILE'; - ProductEventType2[(ProductEventType2['JB_CASCADE_BAR_REJECT_FILE'] = 104)] = - 'JB_CASCADE_BAR_REJECT_FILE'; - ProductEventType2[(ProductEventType2['JB_INLAY_HUNK_ACCEPT'] = 105)] = - 'JB_INLAY_HUNK_ACCEPT'; - ProductEventType2[(ProductEventType2['JB_INLAY_HUNK_REJECT'] = 106)] = - 'JB_INLAY_HUNK_REJECT'; - ProductEventType2[(ProductEventType2['JB_DIFF_RE_RENDER'] = 107)] = - 'JB_DIFF_RE_RENDER'; - ProductEventType2[(ProductEventType2['JB_ONBOARDING_OPENED'] = 108)] = - 'JB_ONBOARDING_OPENED'; - ProductEventType2[(ProductEventType2['JB_ONBOARDING_COMPLETED'] = 109)] = - 'JB_ONBOARDING_COMPLETED'; - ProductEventType2[(ProductEventType2['JB_ONBOARDING_SKIPPED'] = 110)] = - 'JB_ONBOARDING_SKIPPED'; - ProductEventType2[(ProductEventType2['JB_ONBOARDING_LEARN_MORE'] = 111)] = - 'JB_ONBOARDING_LEARN_MORE'; - ProductEventType2[(ProductEventType2['JB_DIFF_RESOLUTION_ERRORED'] = 116)] = - 'JB_DIFF_RESOLUTION_ERRORED'; - ProductEventType2[ - (ProductEventType2['JB_ACKNOWLEDGE_CODE_EDIT_ERRORED'] = 117) - ] = 'JB_ACKNOWLEDGE_CODE_EDIT_ERRORED'; - ProductEventType2[ - (ProductEventType2['JB_OPEN_SETTINGS_NOTIFICATION'] = 118) - ] = 'JB_OPEN_SETTINGS_NOTIFICATION'; - ProductEventType2[(ProductEventType2['JB_MCP_ADD_SERVER'] = 148)] = - 'JB_MCP_ADD_SERVER'; - ProductEventType2[(ProductEventType2['JB_MCP_SAVE_CONFIG'] = 149)] = - 'JB_MCP_SAVE_CONFIG'; - ProductEventType2[(ProductEventType2['JB_MCP_EXPAND_TOOLS'] = 150)] = - 'JB_MCP_EXPAND_TOOLS'; - ProductEventType2[(ProductEventType2['JB_DISABLE_AUTOGEN_MEMORY'] = 151)] = - 'JB_DISABLE_AUTOGEN_MEMORY'; - ProductEventType2[(ProductEventType2['JB_TOGGLE_AUTOCOMPLETE'] = 154)] = - 'JB_TOGGLE_AUTOCOMPLETE'; - ProductEventType2[(ProductEventType2['JB_LOGIN_MANUAL_AUTH_TOKEN'] = 174)] = - 'JB_LOGIN_MANUAL_AUTH_TOKEN'; - ProductEventType2[(ProductEventType2['JB_AUTO_UPDATED'] = 179)] = - 'JB_AUTO_UPDATED'; - ProductEventType2[(ProductEventType2['JB_DRAG_DROP_FILE'] = 182)] = - 'JB_DRAG_DROP_FILE'; - ProductEventType2[(ProductEventType2['JB_AUTO_OPEN_CHAT_WINDOW'] = 183)] = - 'JB_AUTO_OPEN_CHAT_WINDOW'; - ProductEventType2[ - (ProductEventType2['WS_TERMINAL_INTEGRATION_FORCE_EXIT'] = 155) - ] = 'WS_TERMINAL_INTEGRATION_FORCE_EXIT'; - ProductEventType2[(ProductEventType2['KNOWLEDGE_BASE_ITEM_CREATED'] = 156)] = - 'KNOWLEDGE_BASE_ITEM_CREATED'; - ProductEventType2[(ProductEventType2['KNOWLEDGE_BASE_ITEM_EDITED'] = 157)] = - 'KNOWLEDGE_BASE_ITEM_EDITED'; - ProductEventType2[(ProductEventType2['KNOWLEDGE_BASE_ITEM_DELETED'] = 158)] = - 'KNOWLEDGE_BASE_ITEM_DELETED'; - ProductEventType2[(ProductEventType2['KNOWLEDGE_BASE_ITEM_READ'] = 159)] = - 'KNOWLEDGE_BASE_ITEM_READ'; - ProductEventType2[ - (ProductEventType2['KNOWLEDGE_BASE_CONNECTION_CREATE'] = 160) - ] = 'KNOWLEDGE_BASE_CONNECTION_CREATE'; - ProductEventType2[ - (ProductEventType2['KNOWLEDGE_BASE_CONNECTION_REMOVE'] = 161) - ] = 'KNOWLEDGE_BASE_CONNECTION_REMOVE'; - ProductEventType2[ - (ProductEventType2['TEAM_CONFIG_TOGGLE_AUTO_RUN_COMMANDS'] = 162) - ] = 'TEAM_CONFIG_TOGGLE_AUTO_RUN_COMMANDS'; - ProductEventType2[ - (ProductEventType2['TEAM_CONFIG_TOGGLE_MCP_SERVERS'] = 163) - ] = 'TEAM_CONFIG_TOGGLE_MCP_SERVERS'; - ProductEventType2[ - (ProductEventType2['TEAM_CONFIG_TOGGLE_APP_DEPLOYMENTS'] = 164) - ] = 'TEAM_CONFIG_TOGGLE_APP_DEPLOYMENTS'; - ProductEventType2[ - (ProductEventType2['TEAM_CONFIG_TOGGLE_SANDBOX_APP_DEPLOYMENTS'] = 165) - ] = 'TEAM_CONFIG_TOGGLE_SANDBOX_APP_DEPLOYMENTS'; - ProductEventType2[ - (ProductEventType2['TEAM_CONFIG_TOGGLE_TEAMS_APP_DEPLOYMENTS'] = 166) - ] = 'TEAM_CONFIG_TOGGLE_TEAMS_APP_DEPLOYMENTS'; - ProductEventType2[ - (ProductEventType2['TEAM_CONFIG_TOGGLE_GITHUB_REVIEWS'] = 167) - ] = 'TEAM_CONFIG_TOGGLE_GITHUB_REVIEWS'; - ProductEventType2[ - (ProductEventType2['TEAM_CONFIG_TOGGLE_GITHUB_DESCRIPTION_EDITS'] = 168) - ] = 'TEAM_CONFIG_TOGGLE_GITHUB_DESCRIPTION_EDITS'; - ProductEventType2[ - (ProductEventType2['TEAM_CONFIG_TOGGLE_PR_REVIEW_GUIDELINES'] = 169) - ] = 'TEAM_CONFIG_TOGGLE_PR_REVIEW_GUIDELINES'; - ProductEventType2[ - (ProductEventType2['TEAM_CONFIG_TOGGLE_PR_DESCRIPTION_GUIDELINES'] = 170) - ] = 'TEAM_CONFIG_TOGGLE_PR_DESCRIPTION_GUIDELINES'; - ProductEventType2[ - (ProductEventType2['TEAM_CONFIG_TOGGLE_INDIVIDUAL_LEVEL_ANALYTICS'] = 171) - ] = 'TEAM_CONFIG_TOGGLE_INDIVIDUAL_LEVEL_ANALYTICS'; - ProductEventType2[ - (ProductEventType2['TEAM_CONFIG_TOGGLE_CONVERSATION_SHARING'] = 172) - ] = 'TEAM_CONFIG_TOGGLE_CONVERSATION_SHARING'; - ProductEventType2[ - (ProductEventType2['TEAM_CONFIG_UPDATE_MCP_SERVERS'] = 178) - ] = 'TEAM_CONFIG_UPDATE_MCP_SERVERS'; - ProductEventType2[ - (ProductEventType2['TEAM_CONFIG_TOGGLE_GITHUB_AUTO_REVIEWS'] = 207) - ] = 'TEAM_CONFIG_TOGGLE_GITHUB_AUTO_REVIEWS'; - ProductEventType2[ - (ProductEventType2['TEAM_CONFIG_UPDATE_TOP_UP_SETTINGS'] = 213) - ] = 'TEAM_CONFIG_UPDATE_TOP_UP_SETTINGS'; - ProductEventType2[(ProductEventType2['BROWSER_OPEN'] = 180)] = 'BROWSER_OPEN'; - ProductEventType2[ - (ProductEventType2['CASCADE_WEB_TOOLS_OPEN_BROWSER_MARKDOWN'] = 181) - ] = 'CASCADE_WEB_TOOLS_OPEN_BROWSER_MARKDOWN'; - ProductEventType2[(ProductEventType2['BROWSER_PAGE_LOAD_SUCCESS'] = 206)] = - 'BROWSER_PAGE_LOAD_SUCCESS'; - ProductEventType2[ - (ProductEventType2['BROWSER_TOOLBAR_INSERT_PAGE_MENTION'] = 208) - ] = 'BROWSER_TOOLBAR_INSERT_PAGE_MENTION'; - ProductEventType2[(ProductEventType2['BROWSER_INSERT_TEXT_CONTENT'] = 215)] = - 'BROWSER_INSERT_TEXT_CONTENT'; - ProductEventType2[(ProductEventType2['BROWSER_INSERT_SCREENSHOT'] = 216)] = - 'BROWSER_INSERT_SCREENSHOT'; - ProductEventType2[(ProductEventType2['BROWSER_INSERT_CODE_BLOCK'] = 217)] = - 'BROWSER_INSERT_CODE_BLOCK'; - ProductEventType2[(ProductEventType2['BROWSER_INSERT_LOG_BLOCK'] = 218)] = - 'BROWSER_INSERT_LOG_BLOCK'; - ProductEventType2[ - (ProductEventType2['BROWSER_INSERT_CONSOLE_OUTPUT'] = 219) - ] = 'BROWSER_INSERT_CONSOLE_OUTPUT'; - ProductEventType2[(ProductEventType2['BROWSER_INSERT_DOM_ELEMENT'] = 220)] = - 'BROWSER_INSERT_DOM_ELEMENT'; - ProductEventType2[ - (ProductEventType2['BROWSER_LAUNCH_FAILURE_DIAGNOSTICS'] = 230) - ] = 'BROWSER_LAUNCH_FAILURE_DIAGNOSTICS'; - ProductEventType2[ - (ProductEventType2['SUPERCOMPLETE_REQUEST_STARTED'] = 195) - ] = 'SUPERCOMPLETE_REQUEST_STARTED'; - ProductEventType2[(ProductEventType2['SUPERCOMPLETE_CACHE_HIT'] = 196)] = - 'SUPERCOMPLETE_CACHE_HIT'; - ProductEventType2[ - (ProductEventType2['SUPERCOMPLETE_ERROR_GETTING_RESPONSE'] = 197) - ] = 'SUPERCOMPLETE_ERROR_GETTING_RESPONSE'; - ProductEventType2[(ProductEventType2['SUPERCOMPLETE_NO_RESPONSE'] = 185)] = - 'SUPERCOMPLETE_NO_RESPONSE'; - ProductEventType2[ - (ProductEventType2['SUPERCOMPLETE_REQUEST_SUCCEEDED'] = 186) - ] = 'SUPERCOMPLETE_REQUEST_SUCCEEDED'; - ProductEventType2[(ProductEventType2['SUPERCOMPLETE_FILTERED'] = 187)] = - 'SUPERCOMPLETE_FILTERED'; - ProductEventType2[(ProductEventType2['TAB_JUMP_REQUEST_STARTED'] = 188)] = - 'TAB_JUMP_REQUEST_STARTED'; - ProductEventType2[(ProductEventType2['TAB_JUMP_CACHE_HIT'] = 189)] = - 'TAB_JUMP_CACHE_HIT'; - ProductEventType2[ - (ProductEventType2['TAB_JUMP_ERROR_GETTING_RESPONSE'] = 190) - ] = 'TAB_JUMP_ERROR_GETTING_RESPONSE'; - ProductEventType2[(ProductEventType2['TAB_JUMP_NO_RESPONSE'] = 191)] = - 'TAB_JUMP_NO_RESPONSE'; - ProductEventType2[(ProductEventType2['TAB_JUMP_PROCESSING_COMPLETE'] = 192)] = - 'TAB_JUMP_PROCESSING_COMPLETE'; - ProductEventType2[(ProductEventType2['TAB_JUMP_FILTERED'] = 193)] = - 'TAB_JUMP_FILTERED'; - ProductEventType2[(ProductEventType2['TAB_JUMP_ERROR_UI_RENDERED'] = 194)] = - 'TAB_JUMP_ERROR_UI_RENDERED'; - ProductEventType2[ - (ProductEventType2['AUTOCOMPLETE_CHAT_NO_RESPONSE'] = 221) - ] = 'AUTOCOMPLETE_CHAT_NO_RESPONSE'; - ProductEventType2[ - (ProductEventType2['AUTOCOMPLETE_CHAT_ERROR_GETTING_RESPONSE'] = 222) - ] = 'AUTOCOMPLETE_CHAT_ERROR_GETTING_RESPONSE'; - ProductEventType2[ - (ProductEventType2['AUTOCOMPLETE_CHAT_REQUEST_ACCEPTED'] = 223) - ] = 'AUTOCOMPLETE_CHAT_REQUEST_ACCEPTED'; +(function(ProductEventType2) { + ProductEventType2[ProductEventType2["EVENT_UNSPECIFIED"] = 0] = "EVENT_UNSPECIFIED"; + ProductEventType2[ProductEventType2["ANTIGRAVITY_EDITOR_READY"] = 251] = "ANTIGRAVITY_EDITOR_READY"; + ProductEventType2[ProductEventType2["ANTIGRAVITY_EXTENSION_START"] = 253] = "ANTIGRAVITY_EXTENSION_START"; + ProductEventType2[ProductEventType2["ANTIGRAVITY_EXTENSION_ACTIVATED"] = 32] = "ANTIGRAVITY_EXTENSION_ACTIVATED"; + ProductEventType2[ProductEventType2["LS_DOWNLOAD_START"] = 1] = "LS_DOWNLOAD_START"; + ProductEventType2[ProductEventType2["LS_DOWNLOAD_COMPLETE"] = 2] = "LS_DOWNLOAD_COMPLETE"; + ProductEventType2[ProductEventType2["LS_DOWNLOAD_FAILURE"] = 5] = "LS_DOWNLOAD_FAILURE"; + ProductEventType2[ProductEventType2["LS_BINARY_STARTUP"] = 250] = "LS_BINARY_STARTUP"; + ProductEventType2[ProductEventType2["LS_STARTUP"] = 3] = "LS_STARTUP"; + ProductEventType2[ProductEventType2["LS_FAILURE"] = 4] = "LS_FAILURE"; + ProductEventType2[ProductEventType2["AUTOCOMPLETE_ACCEPTED"] = 6] = "AUTOCOMPLETE_ACCEPTED"; + ProductEventType2[ProductEventType2["AUTOCOMPLETE_ONE_WORD_ACCEPTED"] = 7] = "AUTOCOMPLETE_ONE_WORD_ACCEPTED"; + ProductEventType2[ProductEventType2["CHAT_MESSAGE_SENT"] = 8] = "CHAT_MESSAGE_SENT"; + ProductEventType2[ProductEventType2["CHAT_MENTION_INSERT"] = 13] = "CHAT_MENTION_INSERT"; + ProductEventType2[ProductEventType2["CHAT_MENTION_MENU_OPEN"] = 19] = "CHAT_MENTION_MENU_OPEN"; + ProductEventType2[ProductEventType2["CHAT_OPEN_SETTINGS"] = 14] = "CHAT_OPEN_SETTINGS"; + ProductEventType2[ProductEventType2["CHAT_OPEN_CONTEXT_SETTINGS"] = 15] = "CHAT_OPEN_CONTEXT_SETTINGS"; + ProductEventType2[ProductEventType2["CHAT_WITH_CODEBASE"] = 16] = "CHAT_WITH_CODEBASE"; + ProductEventType2[ProductEventType2["CHAT_NEW_CONVERSATION"] = 17] = "CHAT_NEW_CONVERSATION"; + ProductEventType2[ProductEventType2["CHAT_CHANGE_MODEL"] = 18] = "CHAT_CHANGE_MODEL"; + ProductEventType2[ProductEventType2["CHAT_TOGGLE_FOCUS_INSERT_TEXT"] = 34] = "CHAT_TOGGLE_FOCUS_INSERT_TEXT"; + ProductEventType2[ProductEventType2["FUNCTION_REFACTOR"] = 28] = "FUNCTION_REFACTOR"; + ProductEventType2[ProductEventType2["EXPLAIN_CODE_BLOCK"] = 29] = "EXPLAIN_CODE_BLOCK"; + ProductEventType2[ProductEventType2["FUNCTION_ADD_DOCSTRING"] = 30] = "FUNCTION_ADD_DOCSTRING"; + ProductEventType2[ProductEventType2["EXPLAIN_PROBLEM"] = 31] = "EXPLAIN_PROBLEM"; + ProductEventType2[ProductEventType2["COMMAND_BOX_OPENED"] = 9] = "COMMAND_BOX_OPENED"; + ProductEventType2[ProductEventType2["COMMAND_SUBMITTED"] = 10] = "COMMAND_SUBMITTED"; + ProductEventType2[ProductEventType2["COMMAND_ACCEPTED"] = 11] = "COMMAND_ACCEPTED"; + ProductEventType2[ProductEventType2["COMMAND_REJECTED"] = 12] = "COMMAND_REJECTED"; + ProductEventType2[ProductEventType2["WS_ONBOARDING_LANDING_PAGE_OPENED"] = 20] = "WS_ONBOARDING_LANDING_PAGE_OPENED"; + ProductEventType2[ProductEventType2["WS_ONBOARDING_SETUP_PAGE_OPENED"] = 21] = "WS_ONBOARDING_SETUP_PAGE_OPENED"; + ProductEventType2[ProductEventType2["WS_ONBOARDING_KEYBINDINGS_PAGE_OPENED"] = 22] = "WS_ONBOARDING_KEYBINDINGS_PAGE_OPENED"; + ProductEventType2[ProductEventType2["WS_ONBOARDING_MIGRATION_SCOPE_PAGE_OPENED"] = 23] = "WS_ONBOARDING_MIGRATION_SCOPE_PAGE_OPENED"; + ProductEventType2[ProductEventType2["WS_ONBOARDING_IMPORT_PAGE_OPENED"] = 24] = "WS_ONBOARDING_IMPORT_PAGE_OPENED"; + ProductEventType2[ProductEventType2["WS_ONBOARDING_AUTH_PAGE_OPENED"] = 25] = "WS_ONBOARDING_AUTH_PAGE_OPENED"; + ProductEventType2[ProductEventType2["WS_ONBOARDING_AUTH_MANUAL_PAGE_OPENED"] = 26] = "WS_ONBOARDING_AUTH_MANUAL_PAGE_OPENED"; + ProductEventType2[ProductEventType2["WS_ONBOARDING_CHOOSE_THEME_PAGE_OPENED"] = 35] = "WS_ONBOARDING_CHOOSE_THEME_PAGE_OPENED"; + ProductEventType2[ProductEventType2["AGY_ONBOARDING_TERMS_OF_USE_PAGE_OPENED"] = 231] = "AGY_ONBOARDING_TERMS_OF_USE_PAGE_OPENED"; + ProductEventType2[ProductEventType2["AGY_ONBOARDING_AGENT_CONFIG_PAGE_OPENED"] = 232] = "AGY_ONBOARDING_AGENT_CONFIG_PAGE_OPENED"; + ProductEventType2[ProductEventType2["AGY_ONBOARDING_USAGE_MODE_PAGE_OPENED"] = 233] = "AGY_ONBOARDING_USAGE_MODE_PAGE_OPENED"; + ProductEventType2[ProductEventType2["AGY_ONBOARDING_INSTALL_EXTENSIONS"] = 234] = "AGY_ONBOARDING_INSTALL_EXTENSIONS"; + ProductEventType2[ProductEventType2["WS_ONBOARDING_COMPLETED"] = 27] = "WS_ONBOARDING_COMPLETED"; + ProductEventType2[ProductEventType2["WS_SKIPPED_ONBOARDING"] = 69] = "WS_SKIPPED_ONBOARDING"; + ProductEventType2[ProductEventType2["WS_SETTINGS_PAGE_OPEN"] = 72] = "WS_SETTINGS_PAGE_OPEN"; + ProductEventType2[ProductEventType2["WS_SETTINGS_PAGE_OPEN_WITH_SETTING_FOCUS"] = 73] = "WS_SETTINGS_PAGE_OPEN_WITH_SETTING_FOCUS"; + ProductEventType2[ProductEventType2["EMPTY_WORKSPACE_PAGE_OPENED"] = 209] = "EMPTY_WORKSPACE_PAGE_OPENED"; + ProductEventType2[ProductEventType2["EMPTY_WORKSPACE_PAGE_RECENT_FOLDERS_CLICKED"] = 210] = "EMPTY_WORKSPACE_PAGE_RECENT_FOLDERS_CLICKED"; + ProductEventType2[ProductEventType2["EMPTY_WORKSPACE_PAGE_OPEN_FOLDER_CLICKED"] = 211] = "EMPTY_WORKSPACE_PAGE_OPEN_FOLDER_CLICKED"; + ProductEventType2[ProductEventType2["EMPTY_WORKSPACE_PAGE_GENERATE_PROJECT_CLICKED"] = 212] = "EMPTY_WORKSPACE_PAGE_GENERATE_PROJECT_CLICKED"; + ProductEventType2[ProductEventType2["PROVIDE_FEEDBACK"] = 33] = "PROVIDE_FEEDBACK"; + ProductEventType2[ProductEventType2["CASCADE_MESSAGE_SENT"] = 36] = "CASCADE_MESSAGE_SENT"; + ProductEventType2[ProductEventType2["WS_OPEN_CASCADE_MEMORIES_PANEL"] = 38] = "WS_OPEN_CASCADE_MEMORIES_PANEL"; + ProductEventType2[ProductEventType2["PROVIDE_MESSAGE_FEEDBACK"] = 41] = "PROVIDE_MESSAGE_FEEDBACK"; + ProductEventType2[ProductEventType2["CASCADE_MEMORY_DELETED"] = 42] = "CASCADE_MEMORY_DELETED"; + ProductEventType2[ProductEventType2["CASCADE_STEP_COMPLETED"] = 43] = "CASCADE_STEP_COMPLETED"; + ProductEventType2[ProductEventType2["ACKNOWLEDGE_CASCADE_CODE_EDIT"] = 44] = "ACKNOWLEDGE_CASCADE_CODE_EDIT"; + ProductEventType2[ProductEventType2["CASCADE_WEB_TOOLS_OPEN_READ_URL_MARKDOWN"] = 45] = "CASCADE_WEB_TOOLS_OPEN_READ_URL_MARKDOWN"; + ProductEventType2[ProductEventType2["CASCADE_WEB_TOOLS_OPEN_CHUNK_MARKDOWN"] = 46] = "CASCADE_WEB_TOOLS_OPEN_CHUNK_MARKDOWN"; + ProductEventType2[ProductEventType2["CASCADE_MCP_SERVER_INIT"] = 64] = "CASCADE_MCP_SERVER_INIT"; + ProductEventType2[ProductEventType2["CASCADE_KNOWLEDGE_BASE_ITEM_OPENED"] = 113] = "CASCADE_KNOWLEDGE_BASE_ITEM_OPENED"; + ProductEventType2[ProductEventType2["CASCADE_VIEW_LOADED"] = 119] = "CASCADE_VIEW_LOADED"; + ProductEventType2[ProductEventType2["CASCADE_CONTEXT_SCOPE_ITEM_ATTACHED"] = 173] = "CASCADE_CONTEXT_SCOPE_ITEM_ATTACHED"; + ProductEventType2[ProductEventType2["CASCADE_CLICK_EVENT"] = 65] = "CASCADE_CLICK_EVENT"; + ProductEventType2[ProductEventType2["CASCADE_IMPRESSION_EVENT"] = 67] = "CASCADE_IMPRESSION_EVENT"; + ProductEventType2[ProductEventType2["OPEN_CHANGELOG"] = 37] = "OPEN_CHANGELOG"; + ProductEventType2[ProductEventType2["CURSOR_DETECTED"] = 39] = "CURSOR_DETECTED"; + ProductEventType2[ProductEventType2["VSCODE_DETECTED"] = 40] = "VSCODE_DETECTED"; + ProductEventType2[ProductEventType2["JETBRAINS_DETECTED"] = 153] = "JETBRAINS_DETECTED"; + ProductEventType2[ProductEventType2["CROSS_SELL_EXTENSION_DOWNLOAD_ANTIGRAVITY_CLICK"] = 47] = "CROSS_SELL_EXTENSION_DOWNLOAD_ANTIGRAVITY_CLICK"; + ProductEventType2[ProductEventType2["CROSS_SELL_EXTENSION_DOWNLOAD_ANTIGRAVITY_NUDGE_IMPRESSION"] = 48] = "CROSS_SELL_EXTENSION_DOWNLOAD_ANTIGRAVITY_NUDGE_IMPRESSION"; + ProductEventType2[ProductEventType2["WS_PROBLEMS_TAB_SEND_ALL_TO_CASCADE"] = 49] = "WS_PROBLEMS_TAB_SEND_ALL_TO_CASCADE"; + ProductEventType2[ProductEventType2["WS_PROBLEMS_TAB_SEND_ALL_IN_FILE_TO_CASCADE"] = 50] = "WS_PROBLEMS_TAB_SEND_ALL_IN_FILE_TO_CASCADE"; + ProductEventType2[ProductEventType2["WS_CASCADE_BAR_FILE_NAV"] = 51] = "WS_CASCADE_BAR_FILE_NAV"; + ProductEventType2[ProductEventType2["WS_CASCADE_BAR_HUNK_NAV"] = 52] = "WS_CASCADE_BAR_HUNK_NAV"; + ProductEventType2[ProductEventType2["WS_CASCADE_BAR_ACCEPT_FILE"] = 53] = "WS_CASCADE_BAR_ACCEPT_FILE"; + ProductEventType2[ProductEventType2["WS_CASCADE_BAR_REJECT_FILE"] = 54] = "WS_CASCADE_BAR_REJECT_FILE"; + ProductEventType2[ProductEventType2["WS_CUSTOM_APP_ICON_MODAL_OPEN"] = 55] = "WS_CUSTOM_APP_ICON_MODAL_OPEN"; + ProductEventType2[ProductEventType2["WS_CUSTOM_APP_ICON_SELECT_CLASSIC"] = 56] = "WS_CUSTOM_APP_ICON_SELECT_CLASSIC"; + ProductEventType2[ProductEventType2["WS_CUSTOM_APP_ICON_SELECT_CLASSIC_LIGHT"] = 57] = "WS_CUSTOM_APP_ICON_SELECT_CLASSIC_LIGHT"; + ProductEventType2[ProductEventType2["WS_CUSTOM_APP_ICON_SELECT_RETRO"] = 58] = "WS_CUSTOM_APP_ICON_SELECT_RETRO"; + ProductEventType2[ProductEventType2["WS_CUSTOM_APP_ICON_SELECT_BLUEPRINT"] = 59] = "WS_CUSTOM_APP_ICON_SELECT_BLUEPRINT"; + ProductEventType2[ProductEventType2["WS_CUSTOM_APP_ICON_SELECT_HAND_DRAWN"] = 60] = "WS_CUSTOM_APP_ICON_SELECT_HAND_DRAWN"; + ProductEventType2[ProductEventType2["WS_CUSTOM_APP_ICON_SELECT_SUNSET"] = 61] = "WS_CUSTOM_APP_ICON_SELECT_SUNSET"; + ProductEventType2[ProductEventType2["WS_CUSTOM_APP_ICON_SELECT_VALENTINE"] = 66] = "WS_CUSTOM_APP_ICON_SELECT_VALENTINE"; + ProductEventType2[ProductEventType2["WS_CUSTOM_APP_ICON_SELECT_PIXEL_SURF"] = 82] = "WS_CUSTOM_APP_ICON_SELECT_PIXEL_SURF"; + ProductEventType2[ProductEventType2["ENTERED_MCP_TOOLBAR_TAB"] = 63] = "ENTERED_MCP_TOOLBAR_TAB"; + ProductEventType2[ProductEventType2["CLICKED_TO_CONFIGURE_MCP"] = 62] = "CLICKED_TO_CONFIGURE_MCP"; + ProductEventType2[ProductEventType2["WS_SETTINGS_UPDATED"] = 68] = "WS_SETTINGS_UPDATED"; + ProductEventType2[ProductEventType2["BROWSER_PREVIEW_DOM_ELEMENT"] = 70] = "BROWSER_PREVIEW_DOM_ELEMENT"; + ProductEventType2[ProductEventType2["BROWSER_PREVIEW_CONSOLE_OUTPUT"] = 71] = "BROWSER_PREVIEW_CONSOLE_OUTPUT"; + ProductEventType2[ProductEventType2["WS_SETTINGS_CHANGED_BY_USER"] = 74] = "WS_SETTINGS_CHANGED_BY_USER"; + ProductEventType2[ProductEventType2["WS_GENERATE_COMMIT_MESSAGE_CLICKED"] = 75] = "WS_GENERATE_COMMIT_MESSAGE_CLICKED"; + ProductEventType2[ProductEventType2["WS_GENERATE_COMMIT_MESSAGE_ERRORED"] = 76] = "WS_GENERATE_COMMIT_MESSAGE_ERRORED"; + ProductEventType2[ProductEventType2["WS_CLICKED_COMMIT_FROM_SCM_PANEL"] = 77] = "WS_CLICKED_COMMIT_FROM_SCM_PANEL"; + ProductEventType2[ProductEventType2["WS_CANCELED_GENERATE_COMMIT_MESSAGE"] = 79] = "WS_CANCELED_GENERATE_COMMIT_MESSAGE"; + ProductEventType2[ProductEventType2["USING_DEV_EXTENSION"] = 78] = "USING_DEV_EXTENSION"; + ProductEventType2[ProductEventType2["WS_APP_DEPLOYMENT_CREATE_PROJECT"] = 80] = "WS_APP_DEPLOYMENT_CREATE_PROJECT"; + ProductEventType2[ProductEventType2["WS_APP_DEPLOYMENT_DEPLOY_PROJECT"] = 81] = "WS_APP_DEPLOYMENT_DEPLOY_PROJECT"; + ProductEventType2[ProductEventType2["CASCADE_OPEN_ACTIVE_CONVERSATION_DROPDOWN"] = 114] = "CASCADE_OPEN_ACTIVE_CONVERSATION_DROPDOWN"; + ProductEventType2[ProductEventType2["CASCADE_SELECT_ACTIVE_CONVERSATION_ON_DROPDOWN"] = 115] = "CASCADE_SELECT_ACTIVE_CONVERSATION_ON_DROPDOWN"; + ProductEventType2[ProductEventType2["CASCADE_NAVIGATE_ACTIVE_CONVERSATION_ON_DROPDOWN"] = 122] = "CASCADE_NAVIGATE_ACTIVE_CONVERSATION_ON_DROPDOWN"; + ProductEventType2[ProductEventType2["CASCADE_SNOOZE_CONVERSATION_ON_DROPDOWN"] = 123] = "CASCADE_SNOOZE_CONVERSATION_ON_DROPDOWN"; + ProductEventType2[ProductEventType2["CASCADE_TOGGLE_NOTIFICATION_ON_DROPDOWN"] = 124] = "CASCADE_TOGGLE_NOTIFICATION_ON_DROPDOWN"; + ProductEventType2[ProductEventType2["CASCADE_SELECT_NOTIFICATION_ON_DROPDOWN"] = 125] = "CASCADE_SELECT_NOTIFICATION_ON_DROPDOWN"; + ProductEventType2[ProductEventType2["CASCADE_NAVIGATE_NOTIFICATION_ON_DROPDOWN"] = 126] = "CASCADE_NAVIGATE_NOTIFICATION_ON_DROPDOWN"; + ProductEventType2[ProductEventType2["CASCADE_DISMISS_NOTIFICATION_ON_DROPDOWN"] = 127] = "CASCADE_DISMISS_NOTIFICATION_ON_DROPDOWN"; + ProductEventType2[ProductEventType2["CASCADE_TRAJECTORY_SHARE_COPY_LINK"] = 137] = "CASCADE_TRAJECTORY_SHARE_COPY_LINK"; + ProductEventType2[ProductEventType2["CASCADE_TRAJECTORY_SHARE_CREATE_LINK"] = 138] = "CASCADE_TRAJECTORY_SHARE_CREATE_LINK"; + ProductEventType2[ProductEventType2["CASCADE_CUSTOMIZATIONS_TAB_CHANGE"] = 139] = "CASCADE_CUSTOMIZATIONS_TAB_CHANGE"; + ProductEventType2[ProductEventType2["CASCADE_WORKFLOW_OPEN"] = 140] = "CASCADE_WORKFLOW_OPEN"; + ProductEventType2[ProductEventType2["CASCADE_NEW_WORKFLOW_CLICKED"] = 141] = "CASCADE_NEW_WORKFLOW_CLICKED"; + ProductEventType2[ProductEventType2["CASCADE_NEW_GLOBAL_WORKFLOW_CLICKED"] = 184] = "CASCADE_NEW_GLOBAL_WORKFLOW_CLICKED"; + ProductEventType2[ProductEventType2["CASCADE_WORKFLOW_REFRESH_CLICKED"] = 142] = "CASCADE_WORKFLOW_REFRESH_CLICKED"; + ProductEventType2[ProductEventType2["CASCADE_RULE_OPEN"] = 143] = "CASCADE_RULE_OPEN"; + ProductEventType2[ProductEventType2["CASCADE_NEW_RULE_CLICKED"] = 144] = "CASCADE_NEW_RULE_CLICKED"; + ProductEventType2[ProductEventType2["CASCADE_NEW_GLOBAL_RULE_CLICKED"] = 145] = "CASCADE_NEW_GLOBAL_RULE_CLICKED"; + ProductEventType2[ProductEventType2["CASCADE_RULE_REFRESH_CLICKED"] = 146] = "CASCADE_RULE_REFRESH_CLICKED"; + ProductEventType2[ProductEventType2["CASCADE_IMPORT_RULES_FROM_CURSOR_CLICKED"] = 147] = "CASCADE_IMPORT_RULES_FROM_CURSOR_CLICKED"; + ProductEventType2[ProductEventType2["WS_IMPORT_CURSOR_RULES_COMMAND_PALETTE"] = 152] = "WS_IMPORT_CURSOR_RULES_COMMAND_PALETTE"; + ProductEventType2[ProductEventType2["CASCADE_CHANGES_ACCEPT_ALL"] = 83] = "CASCADE_CHANGES_ACCEPT_ALL"; + ProductEventType2[ProductEventType2["CASCADE_CHANGES_REJECT_ALL"] = 84] = "CASCADE_CHANGES_REJECT_ALL"; + ProductEventType2[ProductEventType2["CASCADE_MEMORIES_EDIT"] = 85] = "CASCADE_MEMORIES_EDIT"; + ProductEventType2[ProductEventType2["CASCADE_MEMORIES_VIEW"] = 86] = "CASCADE_MEMORIES_VIEW"; + ProductEventType2[ProductEventType2["KEYBOARD_SHORTCUT"] = 136] = "KEYBOARD_SHORTCUT"; + ProductEventType2[ProductEventType2["CASCADE_INSERT_AT_MENTION"] = 87] = "CASCADE_INSERT_AT_MENTION"; + ProductEventType2[ProductEventType2["CASCADE_ERROR_STEP"] = 120] = "CASCADE_ERROR_STEP"; + ProductEventType2[ProductEventType2["CASCADE_SUGGESTED_RESPONSES_SUGGESTION_CLICKED"] = 121] = "CASCADE_SUGGESTED_RESPONSES_SUGGESTION_CLICKED"; + ProductEventType2[ProductEventType2["CASCADE_PLUGIN_PANEL_OPENED"] = 128] = "CASCADE_PLUGIN_PANEL_OPENED"; + ProductEventType2[ProductEventType2["CASCADE_PLUGIN_PAGE_OPENED"] = 129] = "CASCADE_PLUGIN_PAGE_OPENED"; + ProductEventType2[ProductEventType2["CASCADE_PLUGIN_INSTALLED"] = 130] = "CASCADE_PLUGIN_INSTALLED"; + ProductEventType2[ProductEventType2["CASCADE_PLUGIN_DISABLED"] = 131] = "CASCADE_PLUGIN_DISABLED"; + ProductEventType2[ProductEventType2["CASCADE_PLUGIN_ENABLED"] = 132] = "CASCADE_PLUGIN_ENABLED"; + ProductEventType2[ProductEventType2["CASCADE_PLUGIN_INSTALLATION_ERROR"] = 133] = "CASCADE_PLUGIN_INSTALLATION_ERROR"; + ProductEventType2[ProductEventType2["CASCADE_PLUGIN_TOOL_ENABLED"] = 134] = "CASCADE_PLUGIN_TOOL_ENABLED"; + ProductEventType2[ProductEventType2["CASCADE_PLUGIN_TOOL_DISABLED"] = 135] = "CASCADE_PLUGIN_TOOL_DISABLED"; + ProductEventType2[ProductEventType2["CASCADE_CUSTOM_MODEL_EVENT"] = 229] = "CASCADE_CUSTOM_MODEL_EVENT"; + ProductEventType2[ProductEventType2["WEBSITE_NOT_FOUND_PAGE"] = 88] = "WEBSITE_NOT_FOUND_PAGE"; + ProductEventType2[ProductEventType2["WEBSITE_AUTH_REDIRECT_LONG_WAIT"] = 89] = "WEBSITE_AUTH_REDIRECT_LONG_WAIT"; + ProductEventType2[ProductEventType2["WEBSITE_AUTH_REDIRECT_ERROR"] = 90] = "WEBSITE_AUTH_REDIRECT_ERROR"; + ProductEventType2[ProductEventType2["WEBSITE_AUTH_REDIRECT_SUCCESS"] = 112] = "WEBSITE_AUTH_REDIRECT_SUCCESS"; + ProductEventType2[ProductEventType2["WEBSITE_PAGE_VISIT"] = 175] = "WEBSITE_PAGE_VISIT"; + ProductEventType2[ProductEventType2["WEBSITE_SIGNUP_INFO"] = 176] = "WEBSITE_SIGNUP_INFO"; + ProductEventType2[ProductEventType2["WEBSITE_START_PLAN_CHECKOUT"] = 177] = "WEBSITE_START_PLAN_CHECKOUT"; + ProductEventType2[ProductEventType2["WEBSITE_START_UPDATE_PAYMENT"] = 202] = "WEBSITE_START_UPDATE_PAYMENT"; + ProductEventType2[ProductEventType2["WEBSITE_START_VIEW_INVOICES"] = 203] = "WEBSITE_START_VIEW_INVOICES"; + ProductEventType2[ProductEventType2["WEBSITE_UNIVERSITY_LECTURE_VIEW"] = 214] = "WEBSITE_UNIVERSITY_LECTURE_VIEW"; + ProductEventType2[ProductEventType2["WEBSITE_DISALLOW_ENTERPRISE_LOGIN"] = 224] = "WEBSITE_DISALLOW_ENTERPRISE_LOGIN"; + ProductEventType2[ProductEventType2["WEBSITE_SSO_LOGIN_REDIRECT"] = 225] = "WEBSITE_SSO_LOGIN_REDIRECT"; + ProductEventType2[ProductEventType2["WEBSITE_ATTEMPT_TO_LOGIN"] = 226] = "WEBSITE_ATTEMPT_TO_LOGIN"; + ProductEventType2[ProductEventType2["WEBSITE_SUCCESSFUL_LOGIN"] = 227] = "WEBSITE_SUCCESSFUL_LOGIN"; + ProductEventType2[ProductEventType2["WEBSITE_FAILED_LOGIN"] = 228] = "WEBSITE_FAILED_LOGIN"; + ProductEventType2[ProductEventType2["JB_OPEN_PLAN_INFO"] = 91] = "JB_OPEN_PLAN_INFO"; + ProductEventType2[ProductEventType2["JB_SNOOZE_PLUGIN"] = 92] = "JB_SNOOZE_PLUGIN"; + ProductEventType2[ProductEventType2["JB_TOGGLE_PLUGIN_STATUS"] = 93] = "JB_TOGGLE_PLUGIN_STATUS"; + ProductEventType2[ProductEventType2["JB_SWITCH_CHANNEL"] = 94] = "JB_SWITCH_CHANNEL"; + ProductEventType2[ProductEventType2["JB_OPEN_SETTINGS"] = 95] = "JB_OPEN_SETTINGS"; + ProductEventType2[ProductEventType2["JB_PLUGIN_LOG_IN"] = 96] = "JB_PLUGIN_LOG_IN"; + ProductEventType2[ProductEventType2["JB_PLUGIN_LOG_OUT"] = 97] = "JB_PLUGIN_LOG_OUT"; + ProductEventType2[ProductEventType2["JB_OPEN_QUICK_REFERENCE"] = 98] = "JB_OPEN_QUICK_REFERENCE"; + ProductEventType2[ProductEventType2["JB_EDIT_KEYBOARD_SHORTCUTS"] = 99] = "JB_EDIT_KEYBOARD_SHORTCUTS"; + ProductEventType2[ProductEventType2["JB_CASCADE_BAR_CASCADE_ICON"] = 100] = "JB_CASCADE_BAR_CASCADE_ICON"; + ProductEventType2[ProductEventType2["JB_CASCADE_BAR_FILE_NAV"] = 101] = "JB_CASCADE_BAR_FILE_NAV"; + ProductEventType2[ProductEventType2["JB_CASCADE_BAR_HUNK_NAV"] = 102] = "JB_CASCADE_BAR_HUNK_NAV"; + ProductEventType2[ProductEventType2["JB_CASCADE_BAR_ACCEPT_FILE"] = 103] = "JB_CASCADE_BAR_ACCEPT_FILE"; + ProductEventType2[ProductEventType2["JB_CASCADE_BAR_REJECT_FILE"] = 104] = "JB_CASCADE_BAR_REJECT_FILE"; + ProductEventType2[ProductEventType2["JB_INLAY_HUNK_ACCEPT"] = 105] = "JB_INLAY_HUNK_ACCEPT"; + ProductEventType2[ProductEventType2["JB_INLAY_HUNK_REJECT"] = 106] = "JB_INLAY_HUNK_REJECT"; + ProductEventType2[ProductEventType2["JB_DIFF_RE_RENDER"] = 107] = "JB_DIFF_RE_RENDER"; + ProductEventType2[ProductEventType2["JB_ONBOARDING_OPENED"] = 108] = "JB_ONBOARDING_OPENED"; + ProductEventType2[ProductEventType2["JB_ONBOARDING_COMPLETED"] = 109] = "JB_ONBOARDING_COMPLETED"; + ProductEventType2[ProductEventType2["JB_ONBOARDING_SKIPPED"] = 110] = "JB_ONBOARDING_SKIPPED"; + ProductEventType2[ProductEventType2["JB_ONBOARDING_LEARN_MORE"] = 111] = "JB_ONBOARDING_LEARN_MORE"; + ProductEventType2[ProductEventType2["JB_DIFF_RESOLUTION_ERRORED"] = 116] = "JB_DIFF_RESOLUTION_ERRORED"; + ProductEventType2[ProductEventType2["JB_ACKNOWLEDGE_CODE_EDIT_ERRORED"] = 117] = "JB_ACKNOWLEDGE_CODE_EDIT_ERRORED"; + ProductEventType2[ProductEventType2["JB_OPEN_SETTINGS_NOTIFICATION"] = 118] = "JB_OPEN_SETTINGS_NOTIFICATION"; + ProductEventType2[ProductEventType2["JB_MCP_ADD_SERVER"] = 148] = "JB_MCP_ADD_SERVER"; + ProductEventType2[ProductEventType2["JB_MCP_SAVE_CONFIG"] = 149] = "JB_MCP_SAVE_CONFIG"; + ProductEventType2[ProductEventType2["JB_MCP_EXPAND_TOOLS"] = 150] = "JB_MCP_EXPAND_TOOLS"; + ProductEventType2[ProductEventType2["JB_DISABLE_AUTOGEN_MEMORY"] = 151] = "JB_DISABLE_AUTOGEN_MEMORY"; + ProductEventType2[ProductEventType2["JB_TOGGLE_AUTOCOMPLETE"] = 154] = "JB_TOGGLE_AUTOCOMPLETE"; + ProductEventType2[ProductEventType2["JB_LOGIN_MANUAL_AUTH_TOKEN"] = 174] = "JB_LOGIN_MANUAL_AUTH_TOKEN"; + ProductEventType2[ProductEventType2["JB_AUTO_UPDATED"] = 179] = "JB_AUTO_UPDATED"; + ProductEventType2[ProductEventType2["JB_DRAG_DROP_FILE"] = 182] = "JB_DRAG_DROP_FILE"; + ProductEventType2[ProductEventType2["JB_AUTO_OPEN_CHAT_WINDOW"] = 183] = "JB_AUTO_OPEN_CHAT_WINDOW"; + ProductEventType2[ProductEventType2["WS_TERMINAL_INTEGRATION_FORCE_EXIT"] = 155] = "WS_TERMINAL_INTEGRATION_FORCE_EXIT"; + ProductEventType2[ProductEventType2["KNOWLEDGE_BASE_ITEM_CREATED"] = 156] = "KNOWLEDGE_BASE_ITEM_CREATED"; + ProductEventType2[ProductEventType2["KNOWLEDGE_BASE_ITEM_EDITED"] = 157] = "KNOWLEDGE_BASE_ITEM_EDITED"; + ProductEventType2[ProductEventType2["KNOWLEDGE_BASE_ITEM_DELETED"] = 158] = "KNOWLEDGE_BASE_ITEM_DELETED"; + ProductEventType2[ProductEventType2["KNOWLEDGE_BASE_ITEM_READ"] = 159] = "KNOWLEDGE_BASE_ITEM_READ"; + ProductEventType2[ProductEventType2["KNOWLEDGE_BASE_CONNECTION_CREATE"] = 160] = "KNOWLEDGE_BASE_CONNECTION_CREATE"; + ProductEventType2[ProductEventType2["KNOWLEDGE_BASE_CONNECTION_REMOVE"] = 161] = "KNOWLEDGE_BASE_CONNECTION_REMOVE"; + ProductEventType2[ProductEventType2["TEAM_CONFIG_TOGGLE_AUTO_RUN_COMMANDS"] = 162] = "TEAM_CONFIG_TOGGLE_AUTO_RUN_COMMANDS"; + ProductEventType2[ProductEventType2["TEAM_CONFIG_TOGGLE_MCP_SERVERS"] = 163] = "TEAM_CONFIG_TOGGLE_MCP_SERVERS"; + ProductEventType2[ProductEventType2["TEAM_CONFIG_TOGGLE_APP_DEPLOYMENTS"] = 164] = "TEAM_CONFIG_TOGGLE_APP_DEPLOYMENTS"; + ProductEventType2[ProductEventType2["TEAM_CONFIG_TOGGLE_SANDBOX_APP_DEPLOYMENTS"] = 165] = "TEAM_CONFIG_TOGGLE_SANDBOX_APP_DEPLOYMENTS"; + ProductEventType2[ProductEventType2["TEAM_CONFIG_TOGGLE_TEAMS_APP_DEPLOYMENTS"] = 166] = "TEAM_CONFIG_TOGGLE_TEAMS_APP_DEPLOYMENTS"; + ProductEventType2[ProductEventType2["TEAM_CONFIG_TOGGLE_GITHUB_REVIEWS"] = 167] = "TEAM_CONFIG_TOGGLE_GITHUB_REVIEWS"; + ProductEventType2[ProductEventType2["TEAM_CONFIG_TOGGLE_GITHUB_DESCRIPTION_EDITS"] = 168] = "TEAM_CONFIG_TOGGLE_GITHUB_DESCRIPTION_EDITS"; + ProductEventType2[ProductEventType2["TEAM_CONFIG_TOGGLE_PR_REVIEW_GUIDELINES"] = 169] = "TEAM_CONFIG_TOGGLE_PR_REVIEW_GUIDELINES"; + ProductEventType2[ProductEventType2["TEAM_CONFIG_TOGGLE_PR_DESCRIPTION_GUIDELINES"] = 170] = "TEAM_CONFIG_TOGGLE_PR_DESCRIPTION_GUIDELINES"; + ProductEventType2[ProductEventType2["TEAM_CONFIG_TOGGLE_INDIVIDUAL_LEVEL_ANALYTICS"] = 171] = "TEAM_CONFIG_TOGGLE_INDIVIDUAL_LEVEL_ANALYTICS"; + ProductEventType2[ProductEventType2["TEAM_CONFIG_TOGGLE_CONVERSATION_SHARING"] = 172] = "TEAM_CONFIG_TOGGLE_CONVERSATION_SHARING"; + ProductEventType2[ProductEventType2["TEAM_CONFIG_UPDATE_MCP_SERVERS"] = 178] = "TEAM_CONFIG_UPDATE_MCP_SERVERS"; + ProductEventType2[ProductEventType2["TEAM_CONFIG_TOGGLE_GITHUB_AUTO_REVIEWS"] = 207] = "TEAM_CONFIG_TOGGLE_GITHUB_AUTO_REVIEWS"; + ProductEventType2[ProductEventType2["TEAM_CONFIG_UPDATE_TOP_UP_SETTINGS"] = 213] = "TEAM_CONFIG_UPDATE_TOP_UP_SETTINGS"; + ProductEventType2[ProductEventType2["BROWSER_OPEN"] = 180] = "BROWSER_OPEN"; + ProductEventType2[ProductEventType2["CASCADE_WEB_TOOLS_OPEN_BROWSER_MARKDOWN"] = 181] = "CASCADE_WEB_TOOLS_OPEN_BROWSER_MARKDOWN"; + ProductEventType2[ProductEventType2["BROWSER_PAGE_LOAD_SUCCESS"] = 206] = "BROWSER_PAGE_LOAD_SUCCESS"; + ProductEventType2[ProductEventType2["BROWSER_TOOLBAR_INSERT_PAGE_MENTION"] = 208] = "BROWSER_TOOLBAR_INSERT_PAGE_MENTION"; + ProductEventType2[ProductEventType2["BROWSER_INSERT_TEXT_CONTENT"] = 215] = "BROWSER_INSERT_TEXT_CONTENT"; + ProductEventType2[ProductEventType2["BROWSER_INSERT_SCREENSHOT"] = 216] = "BROWSER_INSERT_SCREENSHOT"; + ProductEventType2[ProductEventType2["BROWSER_INSERT_CODE_BLOCK"] = 217] = "BROWSER_INSERT_CODE_BLOCK"; + ProductEventType2[ProductEventType2["BROWSER_INSERT_LOG_BLOCK"] = 218] = "BROWSER_INSERT_LOG_BLOCK"; + ProductEventType2[ProductEventType2["BROWSER_INSERT_CONSOLE_OUTPUT"] = 219] = "BROWSER_INSERT_CONSOLE_OUTPUT"; + ProductEventType2[ProductEventType2["BROWSER_INSERT_DOM_ELEMENT"] = 220] = "BROWSER_INSERT_DOM_ELEMENT"; + ProductEventType2[ProductEventType2["BROWSER_LAUNCH_FAILURE_DIAGNOSTICS"] = 230] = "BROWSER_LAUNCH_FAILURE_DIAGNOSTICS"; + ProductEventType2[ProductEventType2["SUPERCOMPLETE_REQUEST_STARTED"] = 195] = "SUPERCOMPLETE_REQUEST_STARTED"; + ProductEventType2[ProductEventType2["SUPERCOMPLETE_CACHE_HIT"] = 196] = "SUPERCOMPLETE_CACHE_HIT"; + ProductEventType2[ProductEventType2["SUPERCOMPLETE_ERROR_GETTING_RESPONSE"] = 197] = "SUPERCOMPLETE_ERROR_GETTING_RESPONSE"; + ProductEventType2[ProductEventType2["SUPERCOMPLETE_NO_RESPONSE"] = 185] = "SUPERCOMPLETE_NO_RESPONSE"; + ProductEventType2[ProductEventType2["SUPERCOMPLETE_REQUEST_SUCCEEDED"] = 186] = "SUPERCOMPLETE_REQUEST_SUCCEEDED"; + ProductEventType2[ProductEventType2["SUPERCOMPLETE_FILTERED"] = 187] = "SUPERCOMPLETE_FILTERED"; + ProductEventType2[ProductEventType2["TAB_JUMP_REQUEST_STARTED"] = 188] = "TAB_JUMP_REQUEST_STARTED"; + ProductEventType2[ProductEventType2["TAB_JUMP_CACHE_HIT"] = 189] = "TAB_JUMP_CACHE_HIT"; + ProductEventType2[ProductEventType2["TAB_JUMP_ERROR_GETTING_RESPONSE"] = 190] = "TAB_JUMP_ERROR_GETTING_RESPONSE"; + ProductEventType2[ProductEventType2["TAB_JUMP_NO_RESPONSE"] = 191] = "TAB_JUMP_NO_RESPONSE"; + ProductEventType2[ProductEventType2["TAB_JUMP_PROCESSING_COMPLETE"] = 192] = "TAB_JUMP_PROCESSING_COMPLETE"; + ProductEventType2[ProductEventType2["TAB_JUMP_FILTERED"] = 193] = "TAB_JUMP_FILTERED"; + ProductEventType2[ProductEventType2["TAB_JUMP_ERROR_UI_RENDERED"] = 194] = "TAB_JUMP_ERROR_UI_RENDERED"; + ProductEventType2[ProductEventType2["AUTOCOMPLETE_CHAT_NO_RESPONSE"] = 221] = "AUTOCOMPLETE_CHAT_NO_RESPONSE"; + ProductEventType2[ProductEventType2["AUTOCOMPLETE_CHAT_ERROR_GETTING_RESPONSE"] = 222] = "AUTOCOMPLETE_CHAT_ERROR_GETTING_RESPONSE"; + ProductEventType2[ProductEventType2["AUTOCOMPLETE_CHAT_REQUEST_ACCEPTED"] = 223] = "AUTOCOMPLETE_CHAT_REQUEST_ACCEPTED"; })(ProductEventType || (ProductEventType = {})); -proto3.util.setEnumType( - ProductEventType, - 'exa.codeium_common_pb.ProductEventType', - [ - { no: 0, name: 'EVENT_UNSPECIFIED' }, - { no: 251, name: 'ANTIGRAVITY_EDITOR_READY' }, - { no: 253, name: 'ANTIGRAVITY_EXTENSION_START' }, - { no: 32, name: 'ANTIGRAVITY_EXTENSION_ACTIVATED' }, - { no: 1, name: 'LS_DOWNLOAD_START' }, - { no: 2, name: 'LS_DOWNLOAD_COMPLETE' }, - { no: 5, name: 'LS_DOWNLOAD_FAILURE' }, - { no: 250, name: 'LS_BINARY_STARTUP' }, - { no: 3, name: 'LS_STARTUP' }, - { no: 4, name: 'LS_FAILURE' }, - { no: 6, name: 'AUTOCOMPLETE_ACCEPTED' }, - { no: 7, name: 'AUTOCOMPLETE_ONE_WORD_ACCEPTED' }, - { no: 8, name: 'CHAT_MESSAGE_SENT' }, - { no: 13, name: 'CHAT_MENTION_INSERT' }, - { no: 19, name: 'CHAT_MENTION_MENU_OPEN' }, - { no: 14, name: 'CHAT_OPEN_SETTINGS' }, - { no: 15, name: 'CHAT_OPEN_CONTEXT_SETTINGS' }, - { no: 16, name: 'CHAT_WITH_CODEBASE' }, - { no: 17, name: 'CHAT_NEW_CONVERSATION' }, - { no: 18, name: 'CHAT_CHANGE_MODEL' }, - { no: 34, name: 'CHAT_TOGGLE_FOCUS_INSERT_TEXT' }, - { no: 28, name: 'FUNCTION_REFACTOR' }, - { no: 29, name: 'EXPLAIN_CODE_BLOCK' }, - { no: 30, name: 'FUNCTION_ADD_DOCSTRING' }, - { no: 31, name: 'EXPLAIN_PROBLEM' }, - { no: 9, name: 'COMMAND_BOX_OPENED' }, - { no: 10, name: 'COMMAND_SUBMITTED' }, - { no: 11, name: 'COMMAND_ACCEPTED' }, - { no: 12, name: 'COMMAND_REJECTED' }, - { no: 20, name: 'WS_ONBOARDING_LANDING_PAGE_OPENED' }, - { no: 21, name: 'WS_ONBOARDING_SETUP_PAGE_OPENED' }, - { no: 22, name: 'WS_ONBOARDING_KEYBINDINGS_PAGE_OPENED' }, - { no: 23, name: 'WS_ONBOARDING_MIGRATION_SCOPE_PAGE_OPENED' }, - { no: 24, name: 'WS_ONBOARDING_IMPORT_PAGE_OPENED' }, - { no: 25, name: 'WS_ONBOARDING_AUTH_PAGE_OPENED' }, - { no: 26, name: 'WS_ONBOARDING_AUTH_MANUAL_PAGE_OPENED' }, - { no: 35, name: 'WS_ONBOARDING_CHOOSE_THEME_PAGE_OPENED' }, - { no: 231, name: 'AGY_ONBOARDING_TERMS_OF_USE_PAGE_OPENED' }, - { no: 232, name: 'AGY_ONBOARDING_AGENT_CONFIG_PAGE_OPENED' }, - { no: 233, name: 'AGY_ONBOARDING_USAGE_MODE_PAGE_OPENED' }, - { no: 234, name: 'AGY_ONBOARDING_INSTALL_EXTENSIONS' }, - { no: 27, name: 'WS_ONBOARDING_COMPLETED' }, - { no: 69, name: 'WS_SKIPPED_ONBOARDING' }, - { no: 72, name: 'WS_SETTINGS_PAGE_OPEN' }, - { no: 73, name: 'WS_SETTINGS_PAGE_OPEN_WITH_SETTING_FOCUS' }, - { no: 209, name: 'EMPTY_WORKSPACE_PAGE_OPENED' }, - { no: 210, name: 'EMPTY_WORKSPACE_PAGE_RECENT_FOLDERS_CLICKED' }, - { no: 211, name: 'EMPTY_WORKSPACE_PAGE_OPEN_FOLDER_CLICKED' }, - { no: 212, name: 'EMPTY_WORKSPACE_PAGE_GENERATE_PROJECT_CLICKED' }, - { no: 33, name: 'PROVIDE_FEEDBACK' }, - { no: 36, name: 'CASCADE_MESSAGE_SENT' }, - { no: 38, name: 'WS_OPEN_CASCADE_MEMORIES_PANEL' }, - { no: 41, name: 'PROVIDE_MESSAGE_FEEDBACK' }, - { no: 42, name: 'CASCADE_MEMORY_DELETED' }, - { no: 43, name: 'CASCADE_STEP_COMPLETED' }, - { no: 44, name: 'ACKNOWLEDGE_CASCADE_CODE_EDIT' }, - { no: 45, name: 'CASCADE_WEB_TOOLS_OPEN_READ_URL_MARKDOWN' }, - { no: 46, name: 'CASCADE_WEB_TOOLS_OPEN_CHUNK_MARKDOWN' }, - { no: 64, name: 'CASCADE_MCP_SERVER_INIT' }, - { no: 113, name: 'CASCADE_KNOWLEDGE_BASE_ITEM_OPENED' }, - { no: 119, name: 'CASCADE_VIEW_LOADED' }, - { no: 173, name: 'CASCADE_CONTEXT_SCOPE_ITEM_ATTACHED' }, - { no: 65, name: 'CASCADE_CLICK_EVENT' }, - { no: 67, name: 'CASCADE_IMPRESSION_EVENT' }, - { no: 37, name: 'OPEN_CHANGELOG' }, - { no: 39, name: 'CURSOR_DETECTED' }, - { no: 40, name: 'VSCODE_DETECTED' }, - { no: 153, name: 'JETBRAINS_DETECTED' }, - { no: 47, name: 'CROSS_SELL_EXTENSION_DOWNLOAD_ANTIGRAVITY_CLICK' }, - { - no: 48, - name: 'CROSS_SELL_EXTENSION_DOWNLOAD_ANTIGRAVITY_NUDGE_IMPRESSION', - }, - { no: 49, name: 'WS_PROBLEMS_TAB_SEND_ALL_TO_CASCADE' }, - { no: 50, name: 'WS_PROBLEMS_TAB_SEND_ALL_IN_FILE_TO_CASCADE' }, - { no: 51, name: 'WS_CASCADE_BAR_FILE_NAV' }, - { no: 52, name: 'WS_CASCADE_BAR_HUNK_NAV' }, - { no: 53, name: 'WS_CASCADE_BAR_ACCEPT_FILE' }, - { no: 54, name: 'WS_CASCADE_BAR_REJECT_FILE' }, - { no: 55, name: 'WS_CUSTOM_APP_ICON_MODAL_OPEN' }, - { no: 56, name: 'WS_CUSTOM_APP_ICON_SELECT_CLASSIC' }, - { no: 57, name: 'WS_CUSTOM_APP_ICON_SELECT_CLASSIC_LIGHT' }, - { no: 58, name: 'WS_CUSTOM_APP_ICON_SELECT_RETRO' }, - { no: 59, name: 'WS_CUSTOM_APP_ICON_SELECT_BLUEPRINT' }, - { no: 60, name: 'WS_CUSTOM_APP_ICON_SELECT_HAND_DRAWN' }, - { no: 61, name: 'WS_CUSTOM_APP_ICON_SELECT_SUNSET' }, - { no: 66, name: 'WS_CUSTOM_APP_ICON_SELECT_VALENTINE' }, - { no: 82, name: 'WS_CUSTOM_APP_ICON_SELECT_PIXEL_SURF' }, - { no: 63, name: 'ENTERED_MCP_TOOLBAR_TAB' }, - { no: 62, name: 'CLICKED_TO_CONFIGURE_MCP' }, - { no: 68, name: 'WS_SETTINGS_UPDATED' }, - { no: 70, name: 'BROWSER_PREVIEW_DOM_ELEMENT' }, - { no: 71, name: 'BROWSER_PREVIEW_CONSOLE_OUTPUT' }, - { no: 74, name: 'WS_SETTINGS_CHANGED_BY_USER' }, - { no: 75, name: 'WS_GENERATE_COMMIT_MESSAGE_CLICKED' }, - { no: 76, name: 'WS_GENERATE_COMMIT_MESSAGE_ERRORED' }, - { no: 77, name: 'WS_CLICKED_COMMIT_FROM_SCM_PANEL' }, - { no: 79, name: 'WS_CANCELED_GENERATE_COMMIT_MESSAGE' }, - { no: 78, name: 'USING_DEV_EXTENSION' }, - { no: 80, name: 'WS_APP_DEPLOYMENT_CREATE_PROJECT' }, - { no: 81, name: 'WS_APP_DEPLOYMENT_DEPLOY_PROJECT' }, - { no: 114, name: 'CASCADE_OPEN_ACTIVE_CONVERSATION_DROPDOWN' }, - { no: 115, name: 'CASCADE_SELECT_ACTIVE_CONVERSATION_ON_DROPDOWN' }, - { no: 122, name: 'CASCADE_NAVIGATE_ACTIVE_CONVERSATION_ON_DROPDOWN' }, - { no: 123, name: 'CASCADE_SNOOZE_CONVERSATION_ON_DROPDOWN' }, - { no: 124, name: 'CASCADE_TOGGLE_NOTIFICATION_ON_DROPDOWN' }, - { no: 125, name: 'CASCADE_SELECT_NOTIFICATION_ON_DROPDOWN' }, - { no: 126, name: 'CASCADE_NAVIGATE_NOTIFICATION_ON_DROPDOWN' }, - { no: 127, name: 'CASCADE_DISMISS_NOTIFICATION_ON_DROPDOWN' }, - { no: 137, name: 'CASCADE_TRAJECTORY_SHARE_COPY_LINK' }, - { no: 138, name: 'CASCADE_TRAJECTORY_SHARE_CREATE_LINK' }, - { no: 139, name: 'CASCADE_CUSTOMIZATIONS_TAB_CHANGE' }, - { no: 140, name: 'CASCADE_WORKFLOW_OPEN' }, - { no: 141, name: 'CASCADE_NEW_WORKFLOW_CLICKED' }, - { no: 184, name: 'CASCADE_NEW_GLOBAL_WORKFLOW_CLICKED' }, - { no: 142, name: 'CASCADE_WORKFLOW_REFRESH_CLICKED' }, - { no: 143, name: 'CASCADE_RULE_OPEN' }, - { no: 144, name: 'CASCADE_NEW_RULE_CLICKED' }, - { no: 145, name: 'CASCADE_NEW_GLOBAL_RULE_CLICKED' }, - { no: 146, name: 'CASCADE_RULE_REFRESH_CLICKED' }, - { no: 147, name: 'CASCADE_IMPORT_RULES_FROM_CURSOR_CLICKED' }, - { no: 152, name: 'WS_IMPORT_CURSOR_RULES_COMMAND_PALETTE' }, - { no: 83, name: 'CASCADE_CHANGES_ACCEPT_ALL' }, - { no: 84, name: 'CASCADE_CHANGES_REJECT_ALL' }, - { no: 85, name: 'CASCADE_MEMORIES_EDIT' }, - { no: 86, name: 'CASCADE_MEMORIES_VIEW' }, - { no: 136, name: 'KEYBOARD_SHORTCUT' }, - { no: 87, name: 'CASCADE_INSERT_AT_MENTION' }, - { no: 120, name: 'CASCADE_ERROR_STEP' }, - { no: 121, name: 'CASCADE_SUGGESTED_RESPONSES_SUGGESTION_CLICKED' }, - { no: 128, name: 'CASCADE_PLUGIN_PANEL_OPENED' }, - { no: 129, name: 'CASCADE_PLUGIN_PAGE_OPENED' }, - { no: 130, name: 'CASCADE_PLUGIN_INSTALLED' }, - { no: 131, name: 'CASCADE_PLUGIN_DISABLED' }, - { no: 132, name: 'CASCADE_PLUGIN_ENABLED' }, - { no: 133, name: 'CASCADE_PLUGIN_INSTALLATION_ERROR' }, - { no: 134, name: 'CASCADE_PLUGIN_TOOL_ENABLED' }, - { no: 135, name: 'CASCADE_PLUGIN_TOOL_DISABLED' }, - { no: 229, name: 'CASCADE_CUSTOM_MODEL_EVENT' }, - { no: 88, name: 'WEBSITE_NOT_FOUND_PAGE' }, - { no: 89, name: 'WEBSITE_AUTH_REDIRECT_LONG_WAIT' }, - { no: 90, name: 'WEBSITE_AUTH_REDIRECT_ERROR' }, - { no: 112, name: 'WEBSITE_AUTH_REDIRECT_SUCCESS' }, - { no: 175, name: 'WEBSITE_PAGE_VISIT' }, - { no: 176, name: 'WEBSITE_SIGNUP_INFO' }, - { no: 177, name: 'WEBSITE_START_PLAN_CHECKOUT' }, - { no: 202, name: 'WEBSITE_START_UPDATE_PAYMENT' }, - { no: 203, name: 'WEBSITE_START_VIEW_INVOICES' }, - { no: 214, name: 'WEBSITE_UNIVERSITY_LECTURE_VIEW' }, - { no: 224, name: 'WEBSITE_DISALLOW_ENTERPRISE_LOGIN' }, - { no: 225, name: 'WEBSITE_SSO_LOGIN_REDIRECT' }, - { no: 226, name: 'WEBSITE_ATTEMPT_TO_LOGIN' }, - { no: 227, name: 'WEBSITE_SUCCESSFUL_LOGIN' }, - { no: 228, name: 'WEBSITE_FAILED_LOGIN' }, - { no: 91, name: 'JB_OPEN_PLAN_INFO' }, - { no: 92, name: 'JB_SNOOZE_PLUGIN' }, - { no: 93, name: 'JB_TOGGLE_PLUGIN_STATUS' }, - { no: 94, name: 'JB_SWITCH_CHANNEL' }, - { no: 95, name: 'JB_OPEN_SETTINGS' }, - { no: 96, name: 'JB_PLUGIN_LOG_IN' }, - { no: 97, name: 'JB_PLUGIN_LOG_OUT' }, - { no: 98, name: 'JB_OPEN_QUICK_REFERENCE' }, - { no: 99, name: 'JB_EDIT_KEYBOARD_SHORTCUTS' }, - { no: 100, name: 'JB_CASCADE_BAR_CASCADE_ICON' }, - { no: 101, name: 'JB_CASCADE_BAR_FILE_NAV' }, - { no: 102, name: 'JB_CASCADE_BAR_HUNK_NAV' }, - { no: 103, name: 'JB_CASCADE_BAR_ACCEPT_FILE' }, - { no: 104, name: 'JB_CASCADE_BAR_REJECT_FILE' }, - { no: 105, name: 'JB_INLAY_HUNK_ACCEPT' }, - { no: 106, name: 'JB_INLAY_HUNK_REJECT' }, - { no: 107, name: 'JB_DIFF_RE_RENDER' }, - { no: 108, name: 'JB_ONBOARDING_OPENED' }, - { no: 109, name: 'JB_ONBOARDING_COMPLETED' }, - { no: 110, name: 'JB_ONBOARDING_SKIPPED' }, - { no: 111, name: 'JB_ONBOARDING_LEARN_MORE' }, - { no: 116, name: 'JB_DIFF_RESOLUTION_ERRORED' }, - { no: 117, name: 'JB_ACKNOWLEDGE_CODE_EDIT_ERRORED' }, - { no: 118, name: 'JB_OPEN_SETTINGS_NOTIFICATION' }, - { no: 148, name: 'JB_MCP_ADD_SERVER' }, - { no: 149, name: 'JB_MCP_SAVE_CONFIG' }, - { no: 150, name: 'JB_MCP_EXPAND_TOOLS' }, - { no: 151, name: 'JB_DISABLE_AUTOGEN_MEMORY' }, - { no: 154, name: 'JB_TOGGLE_AUTOCOMPLETE' }, - { no: 174, name: 'JB_LOGIN_MANUAL_AUTH_TOKEN' }, - { no: 179, name: 'JB_AUTO_UPDATED' }, - { no: 182, name: 'JB_DRAG_DROP_FILE' }, - { no: 183, name: 'JB_AUTO_OPEN_CHAT_WINDOW' }, - { no: 155, name: 'WS_TERMINAL_INTEGRATION_FORCE_EXIT' }, - { no: 156, name: 'KNOWLEDGE_BASE_ITEM_CREATED' }, - { no: 157, name: 'KNOWLEDGE_BASE_ITEM_EDITED' }, - { no: 158, name: 'KNOWLEDGE_BASE_ITEM_DELETED' }, - { no: 159, name: 'KNOWLEDGE_BASE_ITEM_READ' }, - { no: 160, name: 'KNOWLEDGE_BASE_CONNECTION_CREATE' }, - { no: 161, name: 'KNOWLEDGE_BASE_CONNECTION_REMOVE' }, - { no: 162, name: 'TEAM_CONFIG_TOGGLE_AUTO_RUN_COMMANDS' }, - { no: 163, name: 'TEAM_CONFIG_TOGGLE_MCP_SERVERS' }, - { no: 164, name: 'TEAM_CONFIG_TOGGLE_APP_DEPLOYMENTS' }, - { no: 165, name: 'TEAM_CONFIG_TOGGLE_SANDBOX_APP_DEPLOYMENTS' }, - { no: 166, name: 'TEAM_CONFIG_TOGGLE_TEAMS_APP_DEPLOYMENTS' }, - { no: 167, name: 'TEAM_CONFIG_TOGGLE_GITHUB_REVIEWS' }, - { no: 168, name: 'TEAM_CONFIG_TOGGLE_GITHUB_DESCRIPTION_EDITS' }, - { no: 169, name: 'TEAM_CONFIG_TOGGLE_PR_REVIEW_GUIDELINES' }, - { no: 170, name: 'TEAM_CONFIG_TOGGLE_PR_DESCRIPTION_GUIDELINES' }, - { no: 171, name: 'TEAM_CONFIG_TOGGLE_INDIVIDUAL_LEVEL_ANALYTICS' }, - { no: 172, name: 'TEAM_CONFIG_TOGGLE_CONVERSATION_SHARING' }, - { no: 178, name: 'TEAM_CONFIG_UPDATE_MCP_SERVERS' }, - { no: 207, name: 'TEAM_CONFIG_TOGGLE_GITHUB_AUTO_REVIEWS' }, - { no: 213, name: 'TEAM_CONFIG_UPDATE_TOP_UP_SETTINGS' }, - { no: 180, name: 'BROWSER_OPEN' }, - { no: 181, name: 'CASCADE_WEB_TOOLS_OPEN_BROWSER_MARKDOWN' }, - { no: 206, name: 'BROWSER_PAGE_LOAD_SUCCESS' }, - { no: 208, name: 'BROWSER_TOOLBAR_INSERT_PAGE_MENTION' }, - { no: 215, name: 'BROWSER_INSERT_TEXT_CONTENT' }, - { no: 216, name: 'BROWSER_INSERT_SCREENSHOT' }, - { no: 217, name: 'BROWSER_INSERT_CODE_BLOCK' }, - { no: 218, name: 'BROWSER_INSERT_LOG_BLOCK' }, - { no: 219, name: 'BROWSER_INSERT_CONSOLE_OUTPUT' }, - { no: 220, name: 'BROWSER_INSERT_DOM_ELEMENT' }, - { no: 230, name: 'BROWSER_LAUNCH_FAILURE_DIAGNOSTICS' }, - { no: 195, name: 'SUPERCOMPLETE_REQUEST_STARTED' }, - { no: 196, name: 'SUPERCOMPLETE_CACHE_HIT' }, - { no: 197, name: 'SUPERCOMPLETE_ERROR_GETTING_RESPONSE' }, - { no: 185, name: 'SUPERCOMPLETE_NO_RESPONSE' }, - { no: 186, name: 'SUPERCOMPLETE_REQUEST_SUCCEEDED' }, - { no: 187, name: 'SUPERCOMPLETE_FILTERED' }, - { no: 188, name: 'TAB_JUMP_REQUEST_STARTED' }, - { no: 189, name: 'TAB_JUMP_CACHE_HIT' }, - { no: 190, name: 'TAB_JUMP_ERROR_GETTING_RESPONSE' }, - { no: 191, name: 'TAB_JUMP_NO_RESPONSE' }, - { no: 192, name: 'TAB_JUMP_PROCESSING_COMPLETE' }, - { no: 193, name: 'TAB_JUMP_FILTERED' }, - { no: 194, name: 'TAB_JUMP_ERROR_UI_RENDERED' }, - { no: 221, name: 'AUTOCOMPLETE_CHAT_NO_RESPONSE' }, - { no: 222, name: 'AUTOCOMPLETE_CHAT_ERROR_GETTING_RESPONSE' }, - { no: 223, name: 'AUTOCOMPLETE_CHAT_REQUEST_ACCEPTED' }, - ], -); +proto3.util.setEnumType(ProductEventType, "exa.codeium_common_pb.ProductEventType", [ + { no: 0, name: "EVENT_UNSPECIFIED" }, + { no: 251, name: "ANTIGRAVITY_EDITOR_READY" }, + { no: 253, name: "ANTIGRAVITY_EXTENSION_START" }, + { no: 32, name: "ANTIGRAVITY_EXTENSION_ACTIVATED" }, + { no: 1, name: "LS_DOWNLOAD_START" }, + { no: 2, name: "LS_DOWNLOAD_COMPLETE" }, + { no: 5, name: "LS_DOWNLOAD_FAILURE" }, + { no: 250, name: "LS_BINARY_STARTUP" }, + { no: 3, name: "LS_STARTUP" }, + { no: 4, name: "LS_FAILURE" }, + { no: 6, name: "AUTOCOMPLETE_ACCEPTED" }, + { no: 7, name: "AUTOCOMPLETE_ONE_WORD_ACCEPTED" }, + { no: 8, name: "CHAT_MESSAGE_SENT" }, + { no: 13, name: "CHAT_MENTION_INSERT" }, + { no: 19, name: "CHAT_MENTION_MENU_OPEN" }, + { no: 14, name: "CHAT_OPEN_SETTINGS" }, + { no: 15, name: "CHAT_OPEN_CONTEXT_SETTINGS" }, + { no: 16, name: "CHAT_WITH_CODEBASE" }, + { no: 17, name: "CHAT_NEW_CONVERSATION" }, + { no: 18, name: "CHAT_CHANGE_MODEL" }, + { no: 34, name: "CHAT_TOGGLE_FOCUS_INSERT_TEXT" }, + { no: 28, name: "FUNCTION_REFACTOR" }, + { no: 29, name: "EXPLAIN_CODE_BLOCK" }, + { no: 30, name: "FUNCTION_ADD_DOCSTRING" }, + { no: 31, name: "EXPLAIN_PROBLEM" }, + { no: 9, name: "COMMAND_BOX_OPENED" }, + { no: 10, name: "COMMAND_SUBMITTED" }, + { no: 11, name: "COMMAND_ACCEPTED" }, + { no: 12, name: "COMMAND_REJECTED" }, + { no: 20, name: "WS_ONBOARDING_LANDING_PAGE_OPENED" }, + { no: 21, name: "WS_ONBOARDING_SETUP_PAGE_OPENED" }, + { no: 22, name: "WS_ONBOARDING_KEYBINDINGS_PAGE_OPENED" }, + { no: 23, name: "WS_ONBOARDING_MIGRATION_SCOPE_PAGE_OPENED" }, + { no: 24, name: "WS_ONBOARDING_IMPORT_PAGE_OPENED" }, + { no: 25, name: "WS_ONBOARDING_AUTH_PAGE_OPENED" }, + { no: 26, name: "WS_ONBOARDING_AUTH_MANUAL_PAGE_OPENED" }, + { no: 35, name: "WS_ONBOARDING_CHOOSE_THEME_PAGE_OPENED" }, + { no: 231, name: "AGY_ONBOARDING_TERMS_OF_USE_PAGE_OPENED" }, + { no: 232, name: "AGY_ONBOARDING_AGENT_CONFIG_PAGE_OPENED" }, + { no: 233, name: "AGY_ONBOARDING_USAGE_MODE_PAGE_OPENED" }, + { no: 234, name: "AGY_ONBOARDING_INSTALL_EXTENSIONS" }, + { no: 27, name: "WS_ONBOARDING_COMPLETED" }, + { no: 69, name: "WS_SKIPPED_ONBOARDING" }, + { no: 72, name: "WS_SETTINGS_PAGE_OPEN" }, + { no: 73, name: "WS_SETTINGS_PAGE_OPEN_WITH_SETTING_FOCUS" }, + { no: 209, name: "EMPTY_WORKSPACE_PAGE_OPENED" }, + { no: 210, name: "EMPTY_WORKSPACE_PAGE_RECENT_FOLDERS_CLICKED" }, + { no: 211, name: "EMPTY_WORKSPACE_PAGE_OPEN_FOLDER_CLICKED" }, + { no: 212, name: "EMPTY_WORKSPACE_PAGE_GENERATE_PROJECT_CLICKED" }, + { no: 33, name: "PROVIDE_FEEDBACK" }, + { no: 36, name: "CASCADE_MESSAGE_SENT" }, + { no: 38, name: "WS_OPEN_CASCADE_MEMORIES_PANEL" }, + { no: 41, name: "PROVIDE_MESSAGE_FEEDBACK" }, + { no: 42, name: "CASCADE_MEMORY_DELETED" }, + { no: 43, name: "CASCADE_STEP_COMPLETED" }, + { no: 44, name: "ACKNOWLEDGE_CASCADE_CODE_EDIT" }, + { no: 45, name: "CASCADE_WEB_TOOLS_OPEN_READ_URL_MARKDOWN" }, + { no: 46, name: "CASCADE_WEB_TOOLS_OPEN_CHUNK_MARKDOWN" }, + { no: 64, name: "CASCADE_MCP_SERVER_INIT" }, + { no: 113, name: "CASCADE_KNOWLEDGE_BASE_ITEM_OPENED" }, + { no: 119, name: "CASCADE_VIEW_LOADED" }, + { no: 173, name: "CASCADE_CONTEXT_SCOPE_ITEM_ATTACHED" }, + { no: 65, name: "CASCADE_CLICK_EVENT" }, + { no: 67, name: "CASCADE_IMPRESSION_EVENT" }, + { no: 37, name: "OPEN_CHANGELOG" }, + { no: 39, name: "CURSOR_DETECTED" }, + { no: 40, name: "VSCODE_DETECTED" }, + { no: 153, name: "JETBRAINS_DETECTED" }, + { no: 47, name: "CROSS_SELL_EXTENSION_DOWNLOAD_ANTIGRAVITY_CLICK" }, + { no: 48, name: "CROSS_SELL_EXTENSION_DOWNLOAD_ANTIGRAVITY_NUDGE_IMPRESSION" }, + { no: 49, name: "WS_PROBLEMS_TAB_SEND_ALL_TO_CASCADE" }, + { no: 50, name: "WS_PROBLEMS_TAB_SEND_ALL_IN_FILE_TO_CASCADE" }, + { no: 51, name: "WS_CASCADE_BAR_FILE_NAV" }, + { no: 52, name: "WS_CASCADE_BAR_HUNK_NAV" }, + { no: 53, name: "WS_CASCADE_BAR_ACCEPT_FILE" }, + { no: 54, name: "WS_CASCADE_BAR_REJECT_FILE" }, + { no: 55, name: "WS_CUSTOM_APP_ICON_MODAL_OPEN" }, + { no: 56, name: "WS_CUSTOM_APP_ICON_SELECT_CLASSIC" }, + { no: 57, name: "WS_CUSTOM_APP_ICON_SELECT_CLASSIC_LIGHT" }, + { no: 58, name: "WS_CUSTOM_APP_ICON_SELECT_RETRO" }, + { no: 59, name: "WS_CUSTOM_APP_ICON_SELECT_BLUEPRINT" }, + { no: 60, name: "WS_CUSTOM_APP_ICON_SELECT_HAND_DRAWN" }, + { no: 61, name: "WS_CUSTOM_APP_ICON_SELECT_SUNSET" }, + { no: 66, name: "WS_CUSTOM_APP_ICON_SELECT_VALENTINE" }, + { no: 82, name: "WS_CUSTOM_APP_ICON_SELECT_PIXEL_SURF" }, + { no: 63, name: "ENTERED_MCP_TOOLBAR_TAB" }, + { no: 62, name: "CLICKED_TO_CONFIGURE_MCP" }, + { no: 68, name: "WS_SETTINGS_UPDATED" }, + { no: 70, name: "BROWSER_PREVIEW_DOM_ELEMENT" }, + { no: 71, name: "BROWSER_PREVIEW_CONSOLE_OUTPUT" }, + { no: 74, name: "WS_SETTINGS_CHANGED_BY_USER" }, + { no: 75, name: "WS_GENERATE_COMMIT_MESSAGE_CLICKED" }, + { no: 76, name: "WS_GENERATE_COMMIT_MESSAGE_ERRORED" }, + { no: 77, name: "WS_CLICKED_COMMIT_FROM_SCM_PANEL" }, + { no: 79, name: "WS_CANCELED_GENERATE_COMMIT_MESSAGE" }, + { no: 78, name: "USING_DEV_EXTENSION" }, + { no: 80, name: "WS_APP_DEPLOYMENT_CREATE_PROJECT" }, + { no: 81, name: "WS_APP_DEPLOYMENT_DEPLOY_PROJECT" }, + { no: 114, name: "CASCADE_OPEN_ACTIVE_CONVERSATION_DROPDOWN" }, + { no: 115, name: "CASCADE_SELECT_ACTIVE_CONVERSATION_ON_DROPDOWN" }, + { no: 122, name: "CASCADE_NAVIGATE_ACTIVE_CONVERSATION_ON_DROPDOWN" }, + { no: 123, name: "CASCADE_SNOOZE_CONVERSATION_ON_DROPDOWN" }, + { no: 124, name: "CASCADE_TOGGLE_NOTIFICATION_ON_DROPDOWN" }, + { no: 125, name: "CASCADE_SELECT_NOTIFICATION_ON_DROPDOWN" }, + { no: 126, name: "CASCADE_NAVIGATE_NOTIFICATION_ON_DROPDOWN" }, + { no: 127, name: "CASCADE_DISMISS_NOTIFICATION_ON_DROPDOWN" }, + { no: 137, name: "CASCADE_TRAJECTORY_SHARE_COPY_LINK" }, + { no: 138, name: "CASCADE_TRAJECTORY_SHARE_CREATE_LINK" }, + { no: 139, name: "CASCADE_CUSTOMIZATIONS_TAB_CHANGE" }, + { no: 140, name: "CASCADE_WORKFLOW_OPEN" }, + { no: 141, name: "CASCADE_NEW_WORKFLOW_CLICKED" }, + { no: 184, name: "CASCADE_NEW_GLOBAL_WORKFLOW_CLICKED" }, + { no: 142, name: "CASCADE_WORKFLOW_REFRESH_CLICKED" }, + { no: 143, name: "CASCADE_RULE_OPEN" }, + { no: 144, name: "CASCADE_NEW_RULE_CLICKED" }, + { no: 145, name: "CASCADE_NEW_GLOBAL_RULE_CLICKED" }, + { no: 146, name: "CASCADE_RULE_REFRESH_CLICKED" }, + { no: 147, name: "CASCADE_IMPORT_RULES_FROM_CURSOR_CLICKED" }, + { no: 152, name: "WS_IMPORT_CURSOR_RULES_COMMAND_PALETTE" }, + { no: 83, name: "CASCADE_CHANGES_ACCEPT_ALL" }, + { no: 84, name: "CASCADE_CHANGES_REJECT_ALL" }, + { no: 85, name: "CASCADE_MEMORIES_EDIT" }, + { no: 86, name: "CASCADE_MEMORIES_VIEW" }, + { no: 136, name: "KEYBOARD_SHORTCUT" }, + { no: 87, name: "CASCADE_INSERT_AT_MENTION" }, + { no: 120, name: "CASCADE_ERROR_STEP" }, + { no: 121, name: "CASCADE_SUGGESTED_RESPONSES_SUGGESTION_CLICKED" }, + { no: 128, name: "CASCADE_PLUGIN_PANEL_OPENED" }, + { no: 129, name: "CASCADE_PLUGIN_PAGE_OPENED" }, + { no: 130, name: "CASCADE_PLUGIN_INSTALLED" }, + { no: 131, name: "CASCADE_PLUGIN_DISABLED" }, + { no: 132, name: "CASCADE_PLUGIN_ENABLED" }, + { no: 133, name: "CASCADE_PLUGIN_INSTALLATION_ERROR" }, + { no: 134, name: "CASCADE_PLUGIN_TOOL_ENABLED" }, + { no: 135, name: "CASCADE_PLUGIN_TOOL_DISABLED" }, + { no: 229, name: "CASCADE_CUSTOM_MODEL_EVENT" }, + { no: 88, name: "WEBSITE_NOT_FOUND_PAGE" }, + { no: 89, name: "WEBSITE_AUTH_REDIRECT_LONG_WAIT" }, + { no: 90, name: "WEBSITE_AUTH_REDIRECT_ERROR" }, + { no: 112, name: "WEBSITE_AUTH_REDIRECT_SUCCESS" }, + { no: 175, name: "WEBSITE_PAGE_VISIT" }, + { no: 176, name: "WEBSITE_SIGNUP_INFO" }, + { no: 177, name: "WEBSITE_START_PLAN_CHECKOUT" }, + { no: 202, name: "WEBSITE_START_UPDATE_PAYMENT" }, + { no: 203, name: "WEBSITE_START_VIEW_INVOICES" }, + { no: 214, name: "WEBSITE_UNIVERSITY_LECTURE_VIEW" }, + { no: 224, name: "WEBSITE_DISALLOW_ENTERPRISE_LOGIN" }, + { no: 225, name: "WEBSITE_SSO_LOGIN_REDIRECT" }, + { no: 226, name: "WEBSITE_ATTEMPT_TO_LOGIN" }, + { no: 227, name: "WEBSITE_SUCCESSFUL_LOGIN" }, + { no: 228, name: "WEBSITE_FAILED_LOGIN" }, + { no: 91, name: "JB_OPEN_PLAN_INFO" }, + { no: 92, name: "JB_SNOOZE_PLUGIN" }, + { no: 93, name: "JB_TOGGLE_PLUGIN_STATUS" }, + { no: 94, name: "JB_SWITCH_CHANNEL" }, + { no: 95, name: "JB_OPEN_SETTINGS" }, + { no: 96, name: "JB_PLUGIN_LOG_IN" }, + { no: 97, name: "JB_PLUGIN_LOG_OUT" }, + { no: 98, name: "JB_OPEN_QUICK_REFERENCE" }, + { no: 99, name: "JB_EDIT_KEYBOARD_SHORTCUTS" }, + { no: 100, name: "JB_CASCADE_BAR_CASCADE_ICON" }, + { no: 101, name: "JB_CASCADE_BAR_FILE_NAV" }, + { no: 102, name: "JB_CASCADE_BAR_HUNK_NAV" }, + { no: 103, name: "JB_CASCADE_BAR_ACCEPT_FILE" }, + { no: 104, name: "JB_CASCADE_BAR_REJECT_FILE" }, + { no: 105, name: "JB_INLAY_HUNK_ACCEPT" }, + { no: 106, name: "JB_INLAY_HUNK_REJECT" }, + { no: 107, name: "JB_DIFF_RE_RENDER" }, + { no: 108, name: "JB_ONBOARDING_OPENED" }, + { no: 109, name: "JB_ONBOARDING_COMPLETED" }, + { no: 110, name: "JB_ONBOARDING_SKIPPED" }, + { no: 111, name: "JB_ONBOARDING_LEARN_MORE" }, + { no: 116, name: "JB_DIFF_RESOLUTION_ERRORED" }, + { no: 117, name: "JB_ACKNOWLEDGE_CODE_EDIT_ERRORED" }, + { no: 118, name: "JB_OPEN_SETTINGS_NOTIFICATION" }, + { no: 148, name: "JB_MCP_ADD_SERVER" }, + { no: 149, name: "JB_MCP_SAVE_CONFIG" }, + { no: 150, name: "JB_MCP_EXPAND_TOOLS" }, + { no: 151, name: "JB_DISABLE_AUTOGEN_MEMORY" }, + { no: 154, name: "JB_TOGGLE_AUTOCOMPLETE" }, + { no: 174, name: "JB_LOGIN_MANUAL_AUTH_TOKEN" }, + { no: 179, name: "JB_AUTO_UPDATED" }, + { no: 182, name: "JB_DRAG_DROP_FILE" }, + { no: 183, name: "JB_AUTO_OPEN_CHAT_WINDOW" }, + { no: 155, name: "WS_TERMINAL_INTEGRATION_FORCE_EXIT" }, + { no: 156, name: "KNOWLEDGE_BASE_ITEM_CREATED" }, + { no: 157, name: "KNOWLEDGE_BASE_ITEM_EDITED" }, + { no: 158, name: "KNOWLEDGE_BASE_ITEM_DELETED" }, + { no: 159, name: "KNOWLEDGE_BASE_ITEM_READ" }, + { no: 160, name: "KNOWLEDGE_BASE_CONNECTION_CREATE" }, + { no: 161, name: "KNOWLEDGE_BASE_CONNECTION_REMOVE" }, + { no: 162, name: "TEAM_CONFIG_TOGGLE_AUTO_RUN_COMMANDS" }, + { no: 163, name: "TEAM_CONFIG_TOGGLE_MCP_SERVERS" }, + { no: 164, name: "TEAM_CONFIG_TOGGLE_APP_DEPLOYMENTS" }, + { no: 165, name: "TEAM_CONFIG_TOGGLE_SANDBOX_APP_DEPLOYMENTS" }, + { no: 166, name: "TEAM_CONFIG_TOGGLE_TEAMS_APP_DEPLOYMENTS" }, + { no: 167, name: "TEAM_CONFIG_TOGGLE_GITHUB_REVIEWS" }, + { no: 168, name: "TEAM_CONFIG_TOGGLE_GITHUB_DESCRIPTION_EDITS" }, + { no: 169, name: "TEAM_CONFIG_TOGGLE_PR_REVIEW_GUIDELINES" }, + { no: 170, name: "TEAM_CONFIG_TOGGLE_PR_DESCRIPTION_GUIDELINES" }, + { no: 171, name: "TEAM_CONFIG_TOGGLE_INDIVIDUAL_LEVEL_ANALYTICS" }, + { no: 172, name: "TEAM_CONFIG_TOGGLE_CONVERSATION_SHARING" }, + { no: 178, name: "TEAM_CONFIG_UPDATE_MCP_SERVERS" }, + { no: 207, name: "TEAM_CONFIG_TOGGLE_GITHUB_AUTO_REVIEWS" }, + { no: 213, name: "TEAM_CONFIG_UPDATE_TOP_UP_SETTINGS" }, + { no: 180, name: "BROWSER_OPEN" }, + { no: 181, name: "CASCADE_WEB_TOOLS_OPEN_BROWSER_MARKDOWN" }, + { no: 206, name: "BROWSER_PAGE_LOAD_SUCCESS" }, + { no: 208, name: "BROWSER_TOOLBAR_INSERT_PAGE_MENTION" }, + { no: 215, name: "BROWSER_INSERT_TEXT_CONTENT" }, + { no: 216, name: "BROWSER_INSERT_SCREENSHOT" }, + { no: 217, name: "BROWSER_INSERT_CODE_BLOCK" }, + { no: 218, name: "BROWSER_INSERT_LOG_BLOCK" }, + { no: 219, name: "BROWSER_INSERT_CONSOLE_OUTPUT" }, + { no: 220, name: "BROWSER_INSERT_DOM_ELEMENT" }, + { no: 230, name: "BROWSER_LAUNCH_FAILURE_DIAGNOSTICS" }, + { no: 195, name: "SUPERCOMPLETE_REQUEST_STARTED" }, + { no: 196, name: "SUPERCOMPLETE_CACHE_HIT" }, + { no: 197, name: "SUPERCOMPLETE_ERROR_GETTING_RESPONSE" }, + { no: 185, name: "SUPERCOMPLETE_NO_RESPONSE" }, + { no: 186, name: "SUPERCOMPLETE_REQUEST_SUCCEEDED" }, + { no: 187, name: "SUPERCOMPLETE_FILTERED" }, + { no: 188, name: "TAB_JUMP_REQUEST_STARTED" }, + { no: 189, name: "TAB_JUMP_CACHE_HIT" }, + { no: 190, name: "TAB_JUMP_ERROR_GETTING_RESPONSE" }, + { no: 191, name: "TAB_JUMP_NO_RESPONSE" }, + { no: 192, name: "TAB_JUMP_PROCESSING_COMPLETE" }, + { no: 193, name: "TAB_JUMP_FILTERED" }, + { no: 194, name: "TAB_JUMP_ERROR_UI_RENDERED" }, + { no: 221, name: "AUTOCOMPLETE_CHAT_NO_RESPONSE" }, + { no: 222, name: "AUTOCOMPLETE_CHAT_ERROR_GETTING_RESPONSE" }, + { no: 223, name: "AUTOCOMPLETE_CHAT_REQUEST_ACCEPTED" } +]); var IndexChoice; -(function (IndexChoice2) { - IndexChoice2[(IndexChoice2['UNSPECIFIED'] = 0)] = 'UNSPECIFIED'; - IndexChoice2[(IndexChoice2['GITHUB_BASE'] = 1)] = 'GITHUB_BASE'; - IndexChoice2[(IndexChoice2['SLACK_BASE'] = 2)] = 'SLACK_BASE'; - IndexChoice2[(IndexChoice2['SLACK_AGGREGATE'] = 3)] = 'SLACK_AGGREGATE'; - IndexChoice2[(IndexChoice2['GOOGLE_DRIVE_BASE'] = 4)] = 'GOOGLE_DRIVE_BASE'; - IndexChoice2[(IndexChoice2['JIRA_BASE'] = 5)] = 'JIRA_BASE'; - IndexChoice2[(IndexChoice2['SCM'] = 6)] = 'SCM'; +(function(IndexChoice2) { + IndexChoice2[IndexChoice2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + IndexChoice2[IndexChoice2["GITHUB_BASE"] = 1] = "GITHUB_BASE"; + IndexChoice2[IndexChoice2["SLACK_BASE"] = 2] = "SLACK_BASE"; + IndexChoice2[IndexChoice2["SLACK_AGGREGATE"] = 3] = "SLACK_AGGREGATE"; + IndexChoice2[IndexChoice2["GOOGLE_DRIVE_BASE"] = 4] = "GOOGLE_DRIVE_BASE"; + IndexChoice2[IndexChoice2["JIRA_BASE"] = 5] = "JIRA_BASE"; + IndexChoice2[IndexChoice2["SCM"] = 6] = "SCM"; })(IndexChoice || (IndexChoice = {})); -proto3.util.setEnumType(IndexChoice, 'exa.codeium_common_pb.IndexChoice', [ - { no: 0, name: 'INDEX_CHOICE_UNSPECIFIED' }, - { no: 1, name: 'INDEX_CHOICE_GITHUB_BASE' }, - { no: 2, name: 'INDEX_CHOICE_SLACK_BASE' }, - { no: 3, name: 'INDEX_CHOICE_SLACK_AGGREGATE' }, - { no: 4, name: 'INDEX_CHOICE_GOOGLE_DRIVE_BASE' }, - { no: 5, name: 'INDEX_CHOICE_JIRA_BASE' }, - { no: 6, name: 'INDEX_CHOICE_SCM' }, +proto3.util.setEnumType(IndexChoice, "exa.codeium_common_pb.IndexChoice", [ + { no: 0, name: "INDEX_CHOICE_UNSPECIFIED" }, + { no: 1, name: "INDEX_CHOICE_GITHUB_BASE" }, + { no: 2, name: "INDEX_CHOICE_SLACK_BASE" }, + { no: 3, name: "INDEX_CHOICE_SLACK_AGGREGATE" }, + { no: 4, name: "INDEX_CHOICE_GOOGLE_DRIVE_BASE" }, + { no: 5, name: "INDEX_CHOICE_JIRA_BASE" }, + { no: 6, name: "INDEX_CHOICE_SCM" } ]); var MarkdownNodeType; -(function (MarkdownNodeType2) { - MarkdownNodeType2[(MarkdownNodeType2['UNSPECIFIED'] = 0)] = 'UNSPECIFIED'; - MarkdownNodeType2[(MarkdownNodeType2['HEADER_1'] = 1)] = 'HEADER_1'; - MarkdownNodeType2[(MarkdownNodeType2['HEADER_2'] = 2)] = 'HEADER_2'; - MarkdownNodeType2[(MarkdownNodeType2['HEADER_3'] = 3)] = 'HEADER_3'; - MarkdownNodeType2[(MarkdownNodeType2['HEADER_4'] = 4)] = 'HEADER_4'; - MarkdownNodeType2[(MarkdownNodeType2['HEADER_5'] = 5)] = 'HEADER_5'; - MarkdownNodeType2[(MarkdownNodeType2['HEADER_6'] = 6)] = 'HEADER_6'; +(function(MarkdownNodeType2) { + MarkdownNodeType2[MarkdownNodeType2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + MarkdownNodeType2[MarkdownNodeType2["HEADER_1"] = 1] = "HEADER_1"; + MarkdownNodeType2[MarkdownNodeType2["HEADER_2"] = 2] = "HEADER_2"; + MarkdownNodeType2[MarkdownNodeType2["HEADER_3"] = 3] = "HEADER_3"; + MarkdownNodeType2[MarkdownNodeType2["HEADER_4"] = 4] = "HEADER_4"; + MarkdownNodeType2[MarkdownNodeType2["HEADER_5"] = 5] = "HEADER_5"; + MarkdownNodeType2[MarkdownNodeType2["HEADER_6"] = 6] = "HEADER_6"; })(MarkdownNodeType || (MarkdownNodeType = {})); -proto3.util.setEnumType( - MarkdownNodeType, - 'exa.codeium_common_pb.MarkdownNodeType', - [ - { no: 0, name: 'MARKDOWN_NODE_TYPE_UNSPECIFIED' }, - { no: 1, name: 'MARKDOWN_NODE_TYPE_HEADER_1' }, - { no: 2, name: 'MARKDOWN_NODE_TYPE_HEADER_2' }, - { no: 3, name: 'MARKDOWN_NODE_TYPE_HEADER_3' }, - { no: 4, name: 'MARKDOWN_NODE_TYPE_HEADER_4' }, - { no: 5, name: 'MARKDOWN_NODE_TYPE_HEADER_5' }, - { no: 6, name: 'MARKDOWN_NODE_TYPE_HEADER_6' }, - ], -); +proto3.util.setEnumType(MarkdownNodeType, "exa.codeium_common_pb.MarkdownNodeType", [ + { no: 0, name: "MARKDOWN_NODE_TYPE_UNSPECIFIED" }, + { no: 1, name: "MARKDOWN_NODE_TYPE_HEADER_1" }, + { no: 2, name: "MARKDOWN_NODE_TYPE_HEADER_2" }, + { no: 3, name: "MARKDOWN_NODE_TYPE_HEADER_3" }, + { no: 4, name: "MARKDOWN_NODE_TYPE_HEADER_4" }, + { no: 5, name: "MARKDOWN_NODE_TYPE_HEADER_5" }, + { no: 6, name: "MARKDOWN_NODE_TYPE_HEADER_6" } +]); var TerminalShellCommandSource; -(function (TerminalShellCommandSource2) { - TerminalShellCommandSource2[ - (TerminalShellCommandSource2['UNSPECIFIED'] = 0) - ] = 'UNSPECIFIED'; - TerminalShellCommandSource2[(TerminalShellCommandSource2['USER'] = 1)] = - 'USER'; - TerminalShellCommandSource2[(TerminalShellCommandSource2['CASCADE'] = 2)] = - 'CASCADE'; +(function(TerminalShellCommandSource2) { + TerminalShellCommandSource2[TerminalShellCommandSource2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + TerminalShellCommandSource2[TerminalShellCommandSource2["USER"] = 1] = "USER"; + TerminalShellCommandSource2[TerminalShellCommandSource2["CASCADE"] = 2] = "CASCADE"; })(TerminalShellCommandSource || (TerminalShellCommandSource = {})); -proto3.util.setEnumType( - TerminalShellCommandSource, - 'exa.codeium_common_pb.TerminalShellCommandSource', - [ - { no: 0, name: 'TERMINAL_SHELL_COMMAND_SOURCE_UNSPECIFIED' }, - { no: 1, name: 'TERMINAL_SHELL_COMMAND_SOURCE_USER' }, - { no: 2, name: 'TERMINAL_SHELL_COMMAND_SOURCE_CASCADE' }, - ], -); +proto3.util.setEnumType(TerminalShellCommandSource, "exa.codeium_common_pb.TerminalShellCommandSource", [ + { no: 0, name: "TERMINAL_SHELL_COMMAND_SOURCE_UNSPECIFIED" }, + { no: 1, name: "TERMINAL_SHELL_COMMAND_SOURCE_USER" }, + { no: 2, name: "TERMINAL_SHELL_COMMAND_SOURCE_CASCADE" } +]); var TerminalShellCommandStatus; -(function (TerminalShellCommandStatus2) { - TerminalShellCommandStatus2[ - (TerminalShellCommandStatus2['UNSPECIFIED'] = 0) - ] = 'UNSPECIFIED'; - TerminalShellCommandStatus2[(TerminalShellCommandStatus2['RUNNING'] = 1)] = - 'RUNNING'; - TerminalShellCommandStatus2[(TerminalShellCommandStatus2['COMPLETED'] = 2)] = - 'COMPLETED'; +(function(TerminalShellCommandStatus2) { + TerminalShellCommandStatus2[TerminalShellCommandStatus2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + TerminalShellCommandStatus2[TerminalShellCommandStatus2["RUNNING"] = 1] = "RUNNING"; + TerminalShellCommandStatus2[TerminalShellCommandStatus2["COMPLETED"] = 2] = "COMPLETED"; })(TerminalShellCommandStatus || (TerminalShellCommandStatus = {})); -proto3.util.setEnumType( - TerminalShellCommandStatus, - 'exa.codeium_common_pb.TerminalShellCommandStatus', - [ - { no: 0, name: 'TERMINAL_SHELL_COMMAND_STATUS_UNSPECIFIED' }, - { no: 1, name: 'TERMINAL_SHELL_COMMAND_STATUS_RUNNING' }, - { no: 2, name: 'TERMINAL_SHELL_COMMAND_STATUS_COMPLETED' }, - ], -); +proto3.util.setEnumType(TerminalShellCommandStatus, "exa.codeium_common_pb.TerminalShellCommandStatus", [ + { no: 0, name: "TERMINAL_SHELL_COMMAND_STATUS_UNSPECIFIED" }, + { no: 1, name: "TERMINAL_SHELL_COMMAND_STATUS_RUNNING" }, + { no: 2, name: "TERMINAL_SHELL_COMMAND_STATUS_COMPLETED" } +]); var DeploymentBuildStatus; -(function (DeploymentBuildStatus2) { - DeploymentBuildStatus2[(DeploymentBuildStatus2['UNSPECIFIED'] = 0)] = - 'UNSPECIFIED'; - DeploymentBuildStatus2[(DeploymentBuildStatus2['QUEUED'] = 1)] = 'QUEUED'; - DeploymentBuildStatus2[(DeploymentBuildStatus2['INITIALIZING'] = 2)] = - 'INITIALIZING'; - DeploymentBuildStatus2[(DeploymentBuildStatus2['BUILDING'] = 3)] = 'BUILDING'; - DeploymentBuildStatus2[(DeploymentBuildStatus2['ERROR'] = 4)] = 'ERROR'; - DeploymentBuildStatus2[(DeploymentBuildStatus2['READY'] = 5)] = 'READY'; - DeploymentBuildStatus2[(DeploymentBuildStatus2['CANCELED'] = 6)] = 'CANCELED'; +(function(DeploymentBuildStatus2) { + DeploymentBuildStatus2[DeploymentBuildStatus2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + DeploymentBuildStatus2[DeploymentBuildStatus2["QUEUED"] = 1] = "QUEUED"; + DeploymentBuildStatus2[DeploymentBuildStatus2["INITIALIZING"] = 2] = "INITIALIZING"; + DeploymentBuildStatus2[DeploymentBuildStatus2["BUILDING"] = 3] = "BUILDING"; + DeploymentBuildStatus2[DeploymentBuildStatus2["ERROR"] = 4] = "ERROR"; + DeploymentBuildStatus2[DeploymentBuildStatus2["READY"] = 5] = "READY"; + DeploymentBuildStatus2[DeploymentBuildStatus2["CANCELED"] = 6] = "CANCELED"; })(DeploymentBuildStatus || (DeploymentBuildStatus = {})); -proto3.util.setEnumType( - DeploymentBuildStatus, - 'exa.codeium_common_pb.DeploymentBuildStatus', - [ - { no: 0, name: 'DEPLOYMENT_BUILD_STATUS_UNSPECIFIED' }, - { no: 1, name: 'DEPLOYMENT_BUILD_STATUS_QUEUED' }, - { no: 2, name: 'DEPLOYMENT_BUILD_STATUS_INITIALIZING' }, - { no: 3, name: 'DEPLOYMENT_BUILD_STATUS_BUILDING' }, - { no: 4, name: 'DEPLOYMENT_BUILD_STATUS_ERROR' }, - { no: 5, name: 'DEPLOYMENT_BUILD_STATUS_READY' }, - { no: 6, name: 'DEPLOYMENT_BUILD_STATUS_CANCELED' }, - ], -); +proto3.util.setEnumType(DeploymentBuildStatus, "exa.codeium_common_pb.DeploymentBuildStatus", [ + { no: 0, name: "DEPLOYMENT_BUILD_STATUS_UNSPECIFIED" }, + { no: 1, name: "DEPLOYMENT_BUILD_STATUS_QUEUED" }, + { no: 2, name: "DEPLOYMENT_BUILD_STATUS_INITIALIZING" }, + { no: 3, name: "DEPLOYMENT_BUILD_STATUS_BUILDING" }, + { no: 4, name: "DEPLOYMENT_BUILD_STATUS_ERROR" }, + { no: 5, name: "DEPLOYMENT_BUILD_STATUS_READY" }, + { no: 6, name: "DEPLOYMENT_BUILD_STATUS_CANCELED" } +]); var DeploymentProvider; -(function (DeploymentProvider2) { - DeploymentProvider2[(DeploymentProvider2['UNSPECIFIED'] = 0)] = 'UNSPECIFIED'; - DeploymentProvider2[(DeploymentProvider2['VERCEL'] = 1)] = 'VERCEL'; - DeploymentProvider2[(DeploymentProvider2['NETLIFY'] = 2)] = 'NETLIFY'; - DeploymentProvider2[(DeploymentProvider2['CLOUDFLARE'] = 3)] = 'CLOUDFLARE'; +(function(DeploymentProvider2) { + DeploymentProvider2[DeploymentProvider2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + DeploymentProvider2[DeploymentProvider2["VERCEL"] = 1] = "VERCEL"; + DeploymentProvider2[DeploymentProvider2["NETLIFY"] = 2] = "NETLIFY"; + DeploymentProvider2[DeploymentProvider2["CLOUDFLARE"] = 3] = "CLOUDFLARE"; })(DeploymentProvider || (DeploymentProvider = {})); -proto3.util.setEnumType( - DeploymentProvider, - 'exa.codeium_common_pb.DeploymentProvider', - [ - { no: 0, name: 'DEPLOYMENT_PROVIDER_UNSPECIFIED' }, - { no: 1, name: 'DEPLOYMENT_PROVIDER_VERCEL' }, - { no: 2, name: 'DEPLOYMENT_PROVIDER_NETLIFY' }, - { no: 3, name: 'DEPLOYMENT_PROVIDER_CLOUDFLARE' }, - ], -); +proto3.util.setEnumType(DeploymentProvider, "exa.codeium_common_pb.DeploymentProvider", [ + { no: 0, name: "DEPLOYMENT_PROVIDER_UNSPECIFIED" }, + { no: 1, name: "DEPLOYMENT_PROVIDER_VERCEL" }, + { no: 2, name: "DEPLOYMENT_PROVIDER_NETLIFY" }, + { no: 3, name: "DEPLOYMENT_PROVIDER_CLOUDFLARE" } +]); var ValidationStatus; -(function (ValidationStatus2) { - ValidationStatus2[(ValidationStatus2['UNSPECIFIED'] = 0)] = 'UNSPECIFIED'; - ValidationStatus2[(ValidationStatus2['AVAILABLE'] = 1)] = 'AVAILABLE'; - ValidationStatus2[(ValidationStatus2['IN_USE'] = 2)] = 'IN_USE'; - ValidationStatus2[(ValidationStatus2['TAKEN'] = 3)] = 'TAKEN'; - ValidationStatus2[(ValidationStatus2['INVALID'] = 4)] = 'INVALID'; +(function(ValidationStatus2) { + ValidationStatus2[ValidationStatus2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + ValidationStatus2[ValidationStatus2["AVAILABLE"] = 1] = "AVAILABLE"; + ValidationStatus2[ValidationStatus2["IN_USE"] = 2] = "IN_USE"; + ValidationStatus2[ValidationStatus2["TAKEN"] = 3] = "TAKEN"; + ValidationStatus2[ValidationStatus2["INVALID"] = 4] = "INVALID"; })(ValidationStatus || (ValidationStatus = {})); -proto3.util.setEnumType( - ValidationStatus, - 'exa.codeium_common_pb.ValidationStatus', - [ - { no: 0, name: 'VALIDATION_STATUS_UNSPECIFIED' }, - { no: 1, name: 'VALIDATION_STATUS_AVAILABLE' }, - { no: 2, name: 'VALIDATION_STATUS_IN_USE' }, - { no: 3, name: 'VALIDATION_STATUS_TAKEN' }, - { no: 4, name: 'VALIDATION_STATUS_INVALID' }, - ], -); +proto3.util.setEnumType(ValidationStatus, "exa.codeium_common_pb.ValidationStatus", [ + { no: 0, name: "VALIDATION_STATUS_UNSPECIFIED" }, + { no: 1, name: "VALIDATION_STATUS_AVAILABLE" }, + { no: 2, name: "VALIDATION_STATUS_IN_USE" }, + { no: 3, name: "VALIDATION_STATUS_TAKEN" }, + { no: 4, name: "VALIDATION_STATUS_INVALID" } +]); var PromptTemplaterType; -(function (PromptTemplaterType2) { - PromptTemplaterType2[(PromptTemplaterType2['UNSPECIFIED'] = 0)] = - 'UNSPECIFIED'; - PromptTemplaterType2[(PromptTemplaterType2['LLAMA_2'] = 1)] = 'LLAMA_2'; - PromptTemplaterType2[(PromptTemplaterType2['LLAMA_3'] = 2)] = 'LLAMA_3'; - PromptTemplaterType2[(PromptTemplaterType2['CHATML'] = 3)] = 'CHATML'; - PromptTemplaterType2[(PromptTemplaterType2['CHAT_TRANSCRIPT'] = 4)] = - 'CHAT_TRANSCRIPT'; - PromptTemplaterType2[(PromptTemplaterType2['DEEPSEEK_V2'] = 5)] = - 'DEEPSEEK_V2'; - PromptTemplaterType2[(PromptTemplaterType2['DEEPSEEK_V3'] = 6)] = - 'DEEPSEEK_V3'; +(function(PromptTemplaterType2) { + PromptTemplaterType2[PromptTemplaterType2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + PromptTemplaterType2[PromptTemplaterType2["LLAMA_2"] = 1] = "LLAMA_2"; + PromptTemplaterType2[PromptTemplaterType2["LLAMA_3"] = 2] = "LLAMA_3"; + PromptTemplaterType2[PromptTemplaterType2["CHATML"] = 3] = "CHATML"; + PromptTemplaterType2[PromptTemplaterType2["CHAT_TRANSCRIPT"] = 4] = "CHAT_TRANSCRIPT"; + PromptTemplaterType2[PromptTemplaterType2["DEEPSEEK_V2"] = 5] = "DEEPSEEK_V2"; + PromptTemplaterType2[PromptTemplaterType2["DEEPSEEK_V3"] = 6] = "DEEPSEEK_V3"; })(PromptTemplaterType || (PromptTemplaterType = {})); -proto3.util.setEnumType( - PromptTemplaterType, - 'exa.codeium_common_pb.PromptTemplaterType', - [ - { no: 0, name: 'PROMPT_TEMPLATER_TYPE_UNSPECIFIED' }, - { no: 1, name: 'PROMPT_TEMPLATER_TYPE_LLAMA_2' }, - { no: 2, name: 'PROMPT_TEMPLATER_TYPE_LLAMA_3' }, - { no: 3, name: 'PROMPT_TEMPLATER_TYPE_CHATML' }, - { no: 4, name: 'PROMPT_TEMPLATER_TYPE_CHAT_TRANSCRIPT' }, - { no: 5, name: 'PROMPT_TEMPLATER_TYPE_DEEPSEEK_V2' }, - { no: 6, name: 'PROMPT_TEMPLATER_TYPE_DEEPSEEK_V3' }, - ], -); +proto3.util.setEnumType(PromptTemplaterType, "exa.codeium_common_pb.PromptTemplaterType", [ + { no: 0, name: "PROMPT_TEMPLATER_TYPE_UNSPECIFIED" }, + { no: 1, name: "PROMPT_TEMPLATER_TYPE_LLAMA_2" }, + { no: 2, name: "PROMPT_TEMPLATER_TYPE_LLAMA_3" }, + { no: 3, name: "PROMPT_TEMPLATER_TYPE_CHATML" }, + { no: 4, name: "PROMPT_TEMPLATER_TYPE_CHAT_TRANSCRIPT" }, + { no: 5, name: "PROMPT_TEMPLATER_TYPE_DEEPSEEK_V2" }, + { no: 6, name: "PROMPT_TEMPLATER_TYPE_DEEPSEEK_V3" } +]); var ToolFormatterType; -(function (ToolFormatterType2) { - ToolFormatterType2[(ToolFormatterType2['UNSPECIFIED'] = 0)] = 'UNSPECIFIED'; - ToolFormatterType2[(ToolFormatterType2['LLAMA_3'] = 1)] = 'LLAMA_3'; - ToolFormatterType2[(ToolFormatterType2['HERMES'] = 2)] = 'HERMES'; - ToolFormatterType2[(ToolFormatterType2['XML'] = 3)] = 'XML'; - ToolFormatterType2[(ToolFormatterType2['CHAT_TRANSCRIPT'] = 4)] = - 'CHAT_TRANSCRIPT'; - ToolFormatterType2[(ToolFormatterType2['NONE'] = 5)] = 'NONE'; +(function(ToolFormatterType2) { + ToolFormatterType2[ToolFormatterType2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + ToolFormatterType2[ToolFormatterType2["LLAMA_3"] = 1] = "LLAMA_3"; + ToolFormatterType2[ToolFormatterType2["HERMES"] = 2] = "HERMES"; + ToolFormatterType2[ToolFormatterType2["XML"] = 3] = "XML"; + ToolFormatterType2[ToolFormatterType2["CHAT_TRANSCRIPT"] = 4] = "CHAT_TRANSCRIPT"; + ToolFormatterType2[ToolFormatterType2["NONE"] = 5] = "NONE"; })(ToolFormatterType || (ToolFormatterType = {})); -proto3.util.setEnumType( - ToolFormatterType, - 'exa.codeium_common_pb.ToolFormatterType', - [ - { no: 0, name: 'TOOL_FORMATTER_TYPE_UNSPECIFIED' }, - { no: 1, name: 'TOOL_FORMATTER_TYPE_LLAMA_3' }, - { no: 2, name: 'TOOL_FORMATTER_TYPE_HERMES' }, - { no: 3, name: 'TOOL_FORMATTER_TYPE_XML' }, - { no: 4, name: 'TOOL_FORMATTER_TYPE_CHAT_TRANSCRIPT' }, - { no: 5, name: 'TOOL_FORMATTER_TYPE_NONE' }, - ], -); +proto3.util.setEnumType(ToolFormatterType, "exa.codeium_common_pb.ToolFormatterType", [ + { no: 0, name: "TOOL_FORMATTER_TYPE_UNSPECIFIED" }, + { no: 1, name: "TOOL_FORMATTER_TYPE_LLAMA_3" }, + { no: 2, name: "TOOL_FORMATTER_TYPE_HERMES" }, + { no: 3, name: "TOOL_FORMATTER_TYPE_XML" }, + { no: 4, name: "TOOL_FORMATTER_TYPE_CHAT_TRANSCRIPT" }, + { no: 5, name: "TOOL_FORMATTER_TYPE_NONE" } +]); var BrowserInstallationStatus; -(function (BrowserInstallationStatus2) { - BrowserInstallationStatus2[(BrowserInstallationStatus2['UNSPECIFIED'] = 0)] = - 'UNSPECIFIED'; - BrowserInstallationStatus2[ - (BrowserInstallationStatus2['NOT_INSTALLED'] = 1) - ] = 'NOT_INSTALLED'; - BrowserInstallationStatus2[(BrowserInstallationStatus2['IN_PROGRESS'] = 2)] = - 'IN_PROGRESS'; - BrowserInstallationStatus2[(BrowserInstallationStatus2['COMPLETE'] = 3)] = - 'COMPLETE'; - BrowserInstallationStatus2[(BrowserInstallationStatus2['ERROR'] = 4)] = - 'ERROR'; +(function(BrowserInstallationStatus2) { + BrowserInstallationStatus2[BrowserInstallationStatus2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + BrowserInstallationStatus2[BrowserInstallationStatus2["NOT_INSTALLED"] = 1] = "NOT_INSTALLED"; + BrowserInstallationStatus2[BrowserInstallationStatus2["IN_PROGRESS"] = 2] = "IN_PROGRESS"; + BrowserInstallationStatus2[BrowserInstallationStatus2["COMPLETE"] = 3] = "COMPLETE"; + BrowserInstallationStatus2[BrowserInstallationStatus2["ERROR"] = 4] = "ERROR"; })(BrowserInstallationStatus || (BrowserInstallationStatus = {})); -proto3.util.setEnumType( - BrowserInstallationStatus, - 'exa.codeium_common_pb.BrowserInstallationStatus', - [ - { no: 0, name: 'BROWSER_INSTALLATION_STATUS_UNSPECIFIED' }, - { no: 1, name: 'BROWSER_INSTALLATION_STATUS_NOT_INSTALLED' }, - { no: 2, name: 'BROWSER_INSTALLATION_STATUS_IN_PROGRESS' }, - { no: 3, name: 'BROWSER_INSTALLATION_STATUS_COMPLETE' }, - { no: 4, name: 'BROWSER_INSTALLATION_STATUS_ERROR' }, - ], -); +proto3.util.setEnumType(BrowserInstallationStatus, "exa.codeium_common_pb.BrowserInstallationStatus", [ + { no: 0, name: "BROWSER_INSTALLATION_STATUS_UNSPECIFIED" }, + { no: 1, name: "BROWSER_INSTALLATION_STATUS_NOT_INSTALLED" }, + { no: 2, name: "BROWSER_INSTALLATION_STATUS_IN_PROGRESS" }, + { no: 3, name: "BROWSER_INSTALLATION_STATUS_COMPLETE" }, + { no: 4, name: "BROWSER_INSTALLATION_STATUS_ERROR" } +]); var BetterDirection; -(function (BetterDirection2) { - BetterDirection2[(BetterDirection2['UNSPECIFIED'] = 0)] = 'UNSPECIFIED'; - BetterDirection2[(BetterDirection2['LOWER'] = 1)] = 'LOWER'; - BetterDirection2[(BetterDirection2['HIGHER'] = 2)] = 'HIGHER'; +(function(BetterDirection2) { + BetterDirection2[BetterDirection2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + BetterDirection2[BetterDirection2["LOWER"] = 1] = "LOWER"; + BetterDirection2[BetterDirection2["HIGHER"] = 2] = "HIGHER"; })(BetterDirection || (BetterDirection = {})); -proto3.util.setEnumType( - BetterDirection, - 'exa.codeium_common_pb.BetterDirection', - [ - { no: 0, name: 'BETTER_DIRECTION_UNSPECIFIED' }, - { no: 1, name: 'BETTER_DIRECTION_LOWER' }, - { no: 2, name: 'BETTER_DIRECTION_HIGHER' }, - ], -); +proto3.util.setEnumType(BetterDirection, "exa.codeium_common_pb.BetterDirection", [ + { no: 0, name: "BETTER_DIRECTION_UNSPECIFIED" }, + { no: 1, name: "BETTER_DIRECTION_LOWER" }, + { no: 2, name: "BETTER_DIRECTION_HIGHER" } +]); var MetricsScope; -(function (MetricsScope2) { - MetricsScope2[(MetricsScope2['UNSPECIFIED'] = 0)] = 'UNSPECIFIED'; - MetricsScope2[(MetricsScope2['EXECUTION_SEGMENT'] = 1)] = 'EXECUTION_SEGMENT'; - MetricsScope2[(MetricsScope2['TRAJECTORY'] = 2)] = 'TRAJECTORY'; +(function(MetricsScope2) { + MetricsScope2[MetricsScope2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + MetricsScope2[MetricsScope2["EXECUTION_SEGMENT"] = 1] = "EXECUTION_SEGMENT"; + MetricsScope2[MetricsScope2["TRAJECTORY"] = 2] = "TRAJECTORY"; })(MetricsScope || (MetricsScope = {})); -proto3.util.setEnumType(MetricsScope, 'exa.codeium_common_pb.MetricsScope', [ - { no: 0, name: 'METRICS_SCOPE_UNSPECIFIED' }, - { no: 1, name: 'METRICS_SCOPE_EXECUTION_SEGMENT' }, - { no: 2, name: 'METRICS_SCOPE_TRAJECTORY' }, +proto3.util.setEnumType(MetricsScope, "exa.codeium_common_pb.MetricsScope", [ + { no: 0, name: "METRICS_SCOPE_UNSPECIFIED" }, + { no: 1, name: "METRICS_SCOPE_EXECUTION_SEGMENT" }, + { no: 2, name: "METRICS_SCOPE_TRAJECTORY" } ]); var TrajectoryType; -(function (TrajectoryType2) { - TrajectoryType2[(TrajectoryType2['UNSPECIFIED'] = 0)] = 'UNSPECIFIED'; - TrajectoryType2[(TrajectoryType2['CASCADE'] = 1)] = 'CASCADE'; - TrajectoryType2[(TrajectoryType2['MAINLINE_TRAJECTORY'] = 2)] = - 'MAINLINE_TRAJECTORY'; +(function(TrajectoryType2) { + TrajectoryType2[TrajectoryType2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + TrajectoryType2[TrajectoryType2["CASCADE"] = 1] = "CASCADE"; + TrajectoryType2[TrajectoryType2["MAINLINE_TRAJECTORY"] = 2] = "MAINLINE_TRAJECTORY"; })(TrajectoryType || (TrajectoryType = {})); -proto3.util.setEnumType( - TrajectoryType, - 'exa.codeium_common_pb.TrajectoryType', - [ - { no: 0, name: 'TRAJECTORY_TYPE_UNSPECIFIED' }, - { no: 1, name: 'TRAJECTORY_TYPE_CASCADE' }, - { no: 2, name: 'TRAJECTORY_TYPE_MAINLINE_TRAJECTORY' }, - ], -); +proto3.util.setEnumType(TrajectoryType, "exa.codeium_common_pb.TrajectoryType", [ + { no: 0, name: "TRAJECTORY_TYPE_UNSPECIFIED" }, + { no: 1, name: "TRAJECTORY_TYPE_CASCADE" }, + { no: 2, name: "TRAJECTORY_TYPE_MAINLINE_TRAJECTORY" } +]); var RefreshCustomizationType; -(function (RefreshCustomizationType2) { - RefreshCustomizationType2[(RefreshCustomizationType2['UNSPECIFIED'] = 0)] = - 'UNSPECIFIED'; - RefreshCustomizationType2[(RefreshCustomizationType2['RULE'] = 1)] = 'RULE'; - RefreshCustomizationType2[(RefreshCustomizationType2['WORKFLOW'] = 2)] = - 'WORKFLOW'; - RefreshCustomizationType2[(RefreshCustomizationType2['SKILL'] = 3)] = 'SKILL'; +(function(RefreshCustomizationType2) { + RefreshCustomizationType2[RefreshCustomizationType2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + RefreshCustomizationType2[RefreshCustomizationType2["RULE"] = 1] = "RULE"; + RefreshCustomizationType2[RefreshCustomizationType2["WORKFLOW"] = 2] = "WORKFLOW"; + RefreshCustomizationType2[RefreshCustomizationType2["SKILL"] = 3] = "SKILL"; })(RefreshCustomizationType || (RefreshCustomizationType = {})); -proto3.util.setEnumType( - RefreshCustomizationType, - 'exa.codeium_common_pb.RefreshCustomizationType', - [ - { no: 0, name: 'REFRESH_CUSTOMIZATION_TYPE_UNSPECIFIED' }, - { no: 1, name: 'REFRESH_CUSTOMIZATION_TYPE_RULE' }, - { no: 2, name: 'REFRESH_CUSTOMIZATION_TYPE_WORKFLOW' }, - { no: 3, name: 'REFRESH_CUSTOMIZATION_TYPE_SKILL' }, - ], -); +proto3.util.setEnumType(RefreshCustomizationType, "exa.codeium_common_pb.RefreshCustomizationType", [ + { no: 0, name: "REFRESH_CUSTOMIZATION_TYPE_UNSPECIFIED" }, + { no: 1, name: "REFRESH_CUSTOMIZATION_TYPE_RULE" }, + { no: 2, name: "REFRESH_CUSTOMIZATION_TYPE_WORKFLOW" }, + { no: 3, name: "REFRESH_CUSTOMIZATION_TYPE_SKILL" } +]); var ThirdPartyWebSearchProvider; -(function (ThirdPartyWebSearchProvider2) { - ThirdPartyWebSearchProvider2[ - (ThirdPartyWebSearchProvider2['UNSPECIFIED'] = 0) - ] = 'UNSPECIFIED'; - ThirdPartyWebSearchProvider2[(ThirdPartyWebSearchProvider2['GEMINI'] = 2)] = - 'GEMINI'; +(function(ThirdPartyWebSearchProvider2) { + ThirdPartyWebSearchProvider2[ThirdPartyWebSearchProvider2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + ThirdPartyWebSearchProvider2[ThirdPartyWebSearchProvider2["GEMINI"] = 2] = "GEMINI"; })(ThirdPartyWebSearchProvider || (ThirdPartyWebSearchProvider = {})); -proto3.util.setEnumType( - ThirdPartyWebSearchProvider, - 'exa.codeium_common_pb.ThirdPartyWebSearchProvider', - [ - { no: 0, name: 'THIRD_PARTY_WEB_SEARCH_PROVIDER_UNSPECIFIED' }, - { no: 2, name: 'THIRD_PARTY_WEB_SEARCH_PROVIDER_GEMINI' }, - ], -); +proto3.util.setEnumType(ThirdPartyWebSearchProvider, "exa.codeium_common_pb.ThirdPartyWebSearchProvider", [ + { no: 0, name: "THIRD_PARTY_WEB_SEARCH_PROVIDER_UNSPECIFIED" }, + { no: 2, name: "THIRD_PARTY_WEB_SEARCH_PROVIDER_GEMINI" } +]); var ThirdPartyWebSearchModel; -(function (ThirdPartyWebSearchModel2) { - ThirdPartyWebSearchModel2[(ThirdPartyWebSearchModel2['UNSPECIFIED'] = 0)] = - 'UNSPECIFIED'; - ThirdPartyWebSearchModel2[(ThirdPartyWebSearchModel2['O3'] = 1)] = 'O3'; - ThirdPartyWebSearchModel2[(ThirdPartyWebSearchModel2['GPT_4_1'] = 2)] = - 'GPT_4_1'; - ThirdPartyWebSearchModel2[(ThirdPartyWebSearchModel2['O4_MINI'] = 3)] = - 'O4_MINI'; +(function(ThirdPartyWebSearchModel2) { + ThirdPartyWebSearchModel2[ThirdPartyWebSearchModel2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + ThirdPartyWebSearchModel2[ThirdPartyWebSearchModel2["O3"] = 1] = "O3"; + ThirdPartyWebSearchModel2[ThirdPartyWebSearchModel2["GPT_4_1"] = 2] = "GPT_4_1"; + ThirdPartyWebSearchModel2[ThirdPartyWebSearchModel2["O4_MINI"] = 3] = "O4_MINI"; })(ThirdPartyWebSearchModel || (ThirdPartyWebSearchModel = {})); -proto3.util.setEnumType( - ThirdPartyWebSearchModel, - 'exa.codeium_common_pb.ThirdPartyWebSearchModel', - [ - { no: 0, name: 'THIRD_PARTY_WEB_SEARCH_MODEL_UNSPECIFIED' }, - { no: 1, name: 'THIRD_PARTY_WEB_SEARCH_MODEL_O3' }, - { no: 2, name: 'THIRD_PARTY_WEB_SEARCH_MODEL_GPT_4_1' }, - { no: 3, name: 'THIRD_PARTY_WEB_SEARCH_MODEL_O4_MINI' }, - ], -); +proto3.util.setEnumType(ThirdPartyWebSearchModel, "exa.codeium_common_pb.ThirdPartyWebSearchModel", [ + { no: 0, name: "THIRD_PARTY_WEB_SEARCH_MODEL_UNSPECIFIED" }, + { no: 1, name: "THIRD_PARTY_WEB_SEARCH_MODEL_O3" }, + { no: 2, name: "THIRD_PARTY_WEB_SEARCH_MODEL_GPT_4_1" }, + { no: 3, name: "THIRD_PARTY_WEB_SEARCH_MODEL_O4_MINI" } +]); var WorkingDirectoryStatus; -(function (WorkingDirectoryStatus2) { - WorkingDirectoryStatus2[(WorkingDirectoryStatus2['UNSPECIFIED'] = 0)] = - 'UNSPECIFIED'; - WorkingDirectoryStatus2[(WorkingDirectoryStatus2['READY'] = 1)] = 'READY'; - WorkingDirectoryStatus2[(WorkingDirectoryStatus2['LOADING'] = 2)] = 'LOADING'; - WorkingDirectoryStatus2[(WorkingDirectoryStatus2['ERROR'] = 3)] = 'ERROR'; +(function(WorkingDirectoryStatus2) { + WorkingDirectoryStatus2[WorkingDirectoryStatus2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + WorkingDirectoryStatus2[WorkingDirectoryStatus2["READY"] = 1] = "READY"; + WorkingDirectoryStatus2[WorkingDirectoryStatus2["LOADING"] = 2] = "LOADING"; + WorkingDirectoryStatus2[WorkingDirectoryStatus2["ERROR"] = 3] = "ERROR"; })(WorkingDirectoryStatus || (WorkingDirectoryStatus = {})); -proto3.util.setEnumType( - WorkingDirectoryStatus, - 'exa.codeium_common_pb.WorkingDirectoryStatus', - [ - { no: 0, name: 'WORKING_DIRECTORY_STATUS_UNSPECIFIED' }, - { no: 1, name: 'WORKING_DIRECTORY_STATUS_READY' }, - { no: 2, name: 'WORKING_DIRECTORY_STATUS_LOADING' }, - { no: 3, name: 'WORKING_DIRECTORY_STATUS_ERROR' }, - ], -); +proto3.util.setEnumType(WorkingDirectoryStatus, "exa.codeium_common_pb.WorkingDirectoryStatus", [ + { no: 0, name: "WORKING_DIRECTORY_STATUS_UNSPECIFIED" }, + { no: 1, name: "WORKING_DIRECTORY_STATUS_READY" }, + { no: 2, name: "WORKING_DIRECTORY_STATUS_LOADING" }, + { no: 3, name: "WORKING_DIRECTORY_STATUS_ERROR" } +]); var ArtifactApprovalStatus; -(function (ArtifactApprovalStatus2) { - ArtifactApprovalStatus2[(ArtifactApprovalStatus2['UNSPECIFIED'] = 0)] = - 'UNSPECIFIED'; - ArtifactApprovalStatus2[(ArtifactApprovalStatus2['APPROVED'] = 1)] = - 'APPROVED'; - ArtifactApprovalStatus2[(ArtifactApprovalStatus2['REQUESTED_CHANGES'] = 2)] = - 'REQUESTED_CHANGES'; +(function(ArtifactApprovalStatus2) { + ArtifactApprovalStatus2[ArtifactApprovalStatus2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + ArtifactApprovalStatus2[ArtifactApprovalStatus2["APPROVED"] = 1] = "APPROVED"; + ArtifactApprovalStatus2[ArtifactApprovalStatus2["REQUESTED_CHANGES"] = 2] = "REQUESTED_CHANGES"; })(ArtifactApprovalStatus || (ArtifactApprovalStatus = {})); -proto3.util.setEnumType( - ArtifactApprovalStatus, - 'exa.codeium_common_pb.ArtifactApprovalStatus', - [ - { no: 0, name: 'ARTIFACT_APPROVAL_STATUS_UNSPECIFIED' }, - { no: 1, name: 'ARTIFACT_APPROVAL_STATUS_APPROVED' }, - { no: 2, name: 'ARTIFACT_APPROVAL_STATUS_REQUESTED_CHANGES' }, - ], -); +proto3.util.setEnumType(ArtifactApprovalStatus, "exa.codeium_common_pb.ArtifactApprovalStatus", [ + { no: 0, name: "ARTIFACT_APPROVAL_STATUS_UNSPECIFIED" }, + { no: 1, name: "ARTIFACT_APPROVAL_STATUS_APPROVED" }, + { no: 2, name: "ARTIFACT_APPROVAL_STATUS_REQUESTED_CHANGES" } +]); var ArtifactType; -(function (ArtifactType2) { - ArtifactType2[(ArtifactType2['UNSPECIFIED'] = 0)] = 'UNSPECIFIED'; - ArtifactType2[(ArtifactType2['IMPLEMENTATION_PLAN'] = 1)] = - 'IMPLEMENTATION_PLAN'; - ArtifactType2[(ArtifactType2['WALKTHROUGH'] = 2)] = 'WALKTHROUGH'; - ArtifactType2[(ArtifactType2['TASK'] = 3)] = 'TASK'; - ArtifactType2[(ArtifactType2['OTHER'] = 4)] = 'OTHER'; +(function(ArtifactType2) { + ArtifactType2[ArtifactType2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + ArtifactType2[ArtifactType2["IMPLEMENTATION_PLAN"] = 1] = "IMPLEMENTATION_PLAN"; + ArtifactType2[ArtifactType2["WALKTHROUGH"] = 2] = "WALKTHROUGH"; + ArtifactType2[ArtifactType2["TASK"] = 3] = "TASK"; + ArtifactType2[ArtifactType2["OTHER"] = 4] = "OTHER"; })(ArtifactType || (ArtifactType = {})); -proto3.util.setEnumType(ArtifactType, 'exa.codeium_common_pb.ArtifactType', [ - { no: 0, name: 'ARTIFACT_TYPE_UNSPECIFIED' }, - { no: 1, name: 'ARTIFACT_TYPE_IMPLEMENTATION_PLAN' }, - { no: 2, name: 'ARTIFACT_TYPE_WALKTHROUGH' }, - { no: 3, name: 'ARTIFACT_TYPE_TASK' }, - { no: 4, name: 'ARTIFACT_TYPE_OTHER' }, +proto3.util.setEnumType(ArtifactType, "exa.codeium_common_pb.ArtifactType", [ + { no: 0, name: "ARTIFACT_TYPE_UNSPECIFIED" }, + { no: 1, name: "ARTIFACT_TYPE_IMPLEMENTATION_PLAN" }, + { no: 2, name: "ARTIFACT_TYPE_WALKTHROUGH" }, + { no: 3, name: "ARTIFACT_TYPE_TASK" }, + { no: 4, name: "ARTIFACT_TYPE_OTHER" } ]); var BrowserJsAutoRunPolicy; -(function (BrowserJsAutoRunPolicy2) { - BrowserJsAutoRunPolicy2[(BrowserJsAutoRunPolicy2['UNSPECIFIED'] = 0)] = - 'UNSPECIFIED'; - BrowserJsAutoRunPolicy2[(BrowserJsAutoRunPolicy2['DISABLED'] = 1)] = - 'DISABLED'; - BrowserJsAutoRunPolicy2[(BrowserJsAutoRunPolicy2['MODEL_DECIDES'] = 2)] = - 'MODEL_DECIDES'; - BrowserJsAutoRunPolicy2[(BrowserJsAutoRunPolicy2['ENABLED'] = 3)] = 'ENABLED'; +(function(BrowserJsAutoRunPolicy2) { + BrowserJsAutoRunPolicy2[BrowserJsAutoRunPolicy2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + BrowserJsAutoRunPolicy2[BrowserJsAutoRunPolicy2["DISABLED"] = 1] = "DISABLED"; + BrowserJsAutoRunPolicy2[BrowserJsAutoRunPolicy2["MODEL_DECIDES"] = 2] = "MODEL_DECIDES"; + BrowserJsAutoRunPolicy2[BrowserJsAutoRunPolicy2["ENABLED"] = 3] = "ENABLED"; })(BrowserJsAutoRunPolicy || (BrowserJsAutoRunPolicy = {})); -proto3.util.setEnumType( - BrowserJsAutoRunPolicy, - 'exa.codeium_common_pb.BrowserJsAutoRunPolicy', - [ - { no: 0, name: 'BROWSER_JS_AUTO_RUN_POLICY_UNSPECIFIED' }, - { no: 1, name: 'BROWSER_JS_AUTO_RUN_POLICY_DISABLED' }, - { no: 2, name: 'BROWSER_JS_AUTO_RUN_POLICY_MODEL_DECIDES' }, - { no: 3, name: 'BROWSER_JS_AUTO_RUN_POLICY_ENABLED' }, - ], -); +proto3.util.setEnumType(BrowserJsAutoRunPolicy, "exa.codeium_common_pb.BrowserJsAutoRunPolicy", [ + { no: 0, name: "BROWSER_JS_AUTO_RUN_POLICY_UNSPECIFIED" }, + { no: 1, name: "BROWSER_JS_AUTO_RUN_POLICY_DISABLED" }, + { no: 2, name: "BROWSER_JS_AUTO_RUN_POLICY_MODEL_DECIDES" }, + { no: 3, name: "BROWSER_JS_AUTO_RUN_POLICY_ENABLED" } +]); var CompletionsRequest = class _CompletionsRequest extends Message { /** * @generated from field: exa.codeium_common_pb.CompletionConfiguration configuration = 1; @@ -8946,22 +7264,22 @@ var CompletionsRequest = class _CompletionsRequest extends Message { /** * @generated from field: string prompt = 2; */ - prompt = ''; + prompt = ""; /** * @generated from field: string serialized_prompt = 26; */ - serializedPrompt = ''; + serializedPrompt = ""; /** * @generated from field: string context_prompt = 21; */ - contextPrompt = ''; + contextPrompt = ""; /** * Uid is set by the API server. It is used for prompt cache sticky load * balancing and management of prompt cache lookups / evictions. * * @generated from field: string uid = 25; */ - uid = ''; + uid = ""; /** * @generated from field: repeated exa.codeium_common_pb.PromptElementRange prompt_element_ranges = 8; */ @@ -8989,7 +7307,7 @@ var CompletionsRequest = class _CompletionsRequest extends Message { /** * @generated from field: string editor_language = 3; */ - editorLanguage = ''; + editorLanguage = ""; /** * @generated from field: exa.codeium_common_pb.Language language = 4; */ @@ -8999,25 +7317,25 @@ var CompletionsRequest = class _CompletionsRequest extends Message { * * @generated from field: string absolute_path_uri_for_telemetry = 5; */ - absolutePathUriForTelemetry = ''; + absolutePathUriForTelemetry = ""; /** * @generated from field: string relative_path_for_telemetry = 6; */ - relativePathForTelemetry = ''; + relativePathForTelemetry = ""; /** * This used to be an absolute path but is now a URI. * * @generated from field: string workspace_uri_for_telemetry = 13; */ - workspaceUriForTelemetry = ''; + workspaceUriForTelemetry = ""; /** * @generated from field: string experiment_features_json = 7; */ - experimentFeaturesJson = ''; + experimentFeaturesJson = ""; /** * @generated from field: string experiment_variant_json = 19; */ - experimentVariantJson = ''; + experimentVariantJson = ""; /** * @generated from field: exa.codeium_common_pb.Model model = 10; */ @@ -9041,7 +7359,7 @@ var CompletionsRequest = class _CompletionsRequest extends Message { * * @generated from field: string model_tag = 17; */ - modelTag = ''; + modelTag = ""; /** * Free-form string tags for tagging experiments. There may be situations in * which an experiment is "on", but the prerequisite for it has not been met, @@ -9056,7 +7374,7 @@ var CompletionsRequest = class _CompletionsRequest extends Message { * * @generated from field: string eval_suffix = 22; */ - evalSuffix = ''; + evalSuffix = ""; /** * Prompt annotated ranges used for inference. * @@ -9075,165 +7393,136 @@ var CompletionsRequest = class _CompletionsRequest extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.CompletionsRequest'; + static typeName = "exa.codeium_common_pb.CompletionsRequest"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'configuration', - kind: 'message', - T: CompletionConfiguration, - }, + { no: 1, name: "configuration", kind: "message", T: CompletionConfiguration }, { no: 2, - name: 'prompt', - kind: 'scalar', - T: 9, + name: "prompt", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 26, - name: 'serialized_prompt', - kind: 'scalar', - T: 9, + name: "serialized_prompt", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 21, - name: 'context_prompt', - kind: 'scalar', - T: 9, + name: "context_prompt", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 25, - name: 'uid', - kind: 'scalar', - T: 9, + name: "uid", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { - no: 8, - name: 'prompt_element_ranges', - kind: 'message', - T: PromptElementRange, - repeated: true, - }, - { - no: 9, - name: 'prompt_element_kind_infos', - kind: 'message', - T: PromptElementKindInfo, - repeated: true, - }, + { no: 8, name: "prompt_element_ranges", kind: "message", T: PromptElementRange, repeated: true }, + { no: 9, name: "prompt_element_kind_infos", kind: "message", T: PromptElementKindInfo, repeated: true }, { no: 11, - name: 'prompt_latency_ms', - kind: 'scalar', - T: 4, + name: "prompt_latency_ms", + kind: "scalar", + T: 4 /* ScalarType.UINT64 */ }, - { - no: 12, - name: 'prompt_stage_latencies', - kind: 'message', - T: PromptStageLatency, - repeated: true, - }, + { no: 12, name: "prompt_stage_latencies", kind: "message", T: PromptStageLatency, repeated: true }, { no: 20, - name: 'num_tokenized_bytes', - kind: 'scalar', - T: 4, + name: "num_tokenized_bytes", + kind: "scalar", + T: 4 /* ScalarType.UINT64 */ }, { no: 3, - name: 'editor_language', - kind: 'scalar', - T: 9, + name: "editor_language", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 4, name: 'language', kind: 'enum', T: proto3.getEnumType(Language) }, + { no: 4, name: "language", kind: "enum", T: proto3.getEnumType(Language) }, { no: 5, - name: 'absolute_path_uri_for_telemetry', - kind: 'scalar', - T: 9, + name: "absolute_path_uri_for_telemetry", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 6, - name: 'relative_path_for_telemetry', - kind: 'scalar', - T: 9, + name: "relative_path_for_telemetry", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 13, - name: 'workspace_uri_for_telemetry', - kind: 'scalar', - T: 9, + name: "workspace_uri_for_telemetry", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 7, - name: 'experiment_features_json', - kind: 'scalar', - T: 9, + name: "experiment_features_json", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 19, - name: 'experiment_variant_json', - kind: 'scalar', - T: 9, + name: "experiment_variant_json", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 10, name: 'model', kind: 'enum', T: proto3.getEnumType(Model) }, + { no: 10, name: "model", kind: "enum", T: proto3.getEnumType(Model) }, { no: 14, - name: 'has_line_suffix', - kind: 'scalar', - T: 8, + name: "has_line_suffix", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 15, - name: 'should_inline_fim', - kind: 'scalar', - T: 8, + name: "should_inline_fim", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, - { no: 16, name: 'repository', kind: 'message', T: Repository }, + { no: 16, name: "repository", kind: "message", T: Repository }, { no: 17, - name: 'model_tag', - kind: 'scalar', - T: 9, + name: "model_tag", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 18, name: 'experiment_tags', kind: 'scalar', T: 9, repeated: true }, + { no: 18, name: "experiment_tags", kind: "scalar", T: 9, repeated: true }, { no: 22, - name: 'eval_suffix', - kind: 'scalar', - T: 9, + name: "eval_suffix", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { - no: 23, - name: 'prompt_annotation_ranges', - kind: 'message', - T: PromptAnnotationRange, - repeated: true, - }, + { no: 23, name: "prompt_annotation_ranges", kind: "message", T: PromptAnnotationRange, repeated: true }, { no: 24, - name: 'supports_packed_streaming_completion_maps', - kind: 'scalar', - T: 8, + name: "supports_packed_streaming_completion_maps", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ - }, + } ]); static fromBinary(bytes, options) { return new _CompletionsRequest().fromBinary(bytes, options); @@ -9333,121 +7622,121 @@ var CompletionConfiguration = class _CompletionConfiguration extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.CompletionConfiguration'; + static typeName = "exa.codeium_common_pb.CompletionConfiguration"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'num_completions', - kind: 'scalar', - T: 4, + name: "num_completions", + kind: "scalar", + T: 4 /* ScalarType.UINT64 */ }, { no: 2, - name: 'max_tokens', - kind: 'scalar', - T: 4, + name: "max_tokens", + kind: "scalar", + T: 4 /* ScalarType.UINT64 */ }, { no: 3, - name: 'max_newlines', - kind: 'scalar', - T: 4, + name: "max_newlines", + kind: "scalar", + T: 4 /* ScalarType.UINT64 */ }, { no: 4, - name: 'min_log_probability', - kind: 'scalar', - T: 1, + name: "min_log_probability", + kind: "scalar", + T: 1 /* ScalarType.DOUBLE */ }, { no: 5, - name: 'temperature', - kind: 'scalar', - T: 1, + name: "temperature", + kind: "scalar", + T: 1 /* ScalarType.DOUBLE */ }, { no: 6, - name: 'first_temperature', - kind: 'scalar', - T: 1, + name: "first_temperature", + kind: "scalar", + T: 1 /* ScalarType.DOUBLE */ }, { no: 7, - name: 'top_k', - kind: 'scalar', - T: 4, + name: "top_k", + kind: "scalar", + T: 4 /* ScalarType.UINT64 */ }, { no: 8, - name: 'top_p', - kind: 'scalar', - T: 1, + name: "top_p", + kind: "scalar", + T: 1 /* ScalarType.DOUBLE */ }, - { no: 9, name: 'stop_patterns', kind: 'scalar', T: 9, repeated: true }, + { no: 9, name: "stop_patterns", kind: "scalar", T: 9, repeated: true }, { no: 10, - name: 'seed', - kind: 'scalar', - T: 4, + name: "seed", + kind: "scalar", + T: 4 /* ScalarType.UINT64 */ }, { no: 11, - name: 'fim_eot_prob_threshold', - kind: 'scalar', - T: 1, + name: "fim_eot_prob_threshold", + kind: "scalar", + T: 1 /* ScalarType.DOUBLE */ }, { no: 12, - name: 'use_fim_eot_threshold', - kind: 'scalar', - T: 8, + name: "use_fim_eot_threshold", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 13, - name: 'do_not_score_stop_tokens', - kind: 'scalar', - T: 8, + name: "do_not_score_stop_tokens", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 14, - name: 'sqrt_len_normalized_log_prob_score', - kind: 'scalar', - T: 8, + name: "sqrt_len_normalized_log_prob_score", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 15, - name: 'last_message_is_partial', - kind: 'scalar', - T: 8, + name: "last_message_is_partial", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 16, - name: 'return_logprob', - kind: 'scalar', - T: 8, + name: "return_logprob", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 17, - name: 'disable_parallel_tool_calls', - kind: 'scalar', - T: 8, + name: "disable_parallel_tool_calls", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ - }, + } ]); static fromBinary(bytes, options) { return new _CompletionConfiguration().fromBinary(bytes, options); @@ -9492,42 +7781,37 @@ var PromptElementRange = class _PromptElementRange extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.PromptElementRange'; + static typeName = "exa.codeium_common_pb.PromptElementRange"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'kind', - kind: 'enum', - T: proto3.getEnumType(PromptElementKind), - }, + { no: 1, name: "kind", kind: "enum", T: proto3.getEnumType(PromptElementKind) }, { no: 2, - name: 'byte_offset_start', - kind: 'scalar', - T: 4, + name: "byte_offset_start", + kind: "scalar", + T: 4 /* ScalarType.UINT64 */ }, { no: 3, - name: 'byte_offset_end', - kind: 'scalar', - T: 4, + name: "byte_offset_end", + kind: "scalar", + T: 4 /* ScalarType.UINT64 */ }, { no: 4, - name: 'token_offset_start', - kind: 'scalar', - T: 4, + name: "token_offset_start", + kind: "scalar", + T: 4 /* ScalarType.UINT64 */ }, { no: 5, - name: 'token_offset_end', - kind: 'scalar', - T: 4, + name: "token_offset_end", + kind: "scalar", + T: 4 /* ScalarType.UINT64 */ - }, + } ]); static fromBinary(bytes, options) { return new _PromptElementRange().fromBinary(bytes, options); @@ -9546,11 +7830,11 @@ var ActionPointer = class _ActionPointer extends Message { /** * @generated from field: string cortex_plan_id = 1; */ - cortexPlanId = ''; + cortexPlanId = ""; /** * @generated from field: string code_plan_id = 2; */ - codePlanId = ''; + codePlanId = ""; /** * -1 is for the latest action in the plan. * @@ -9562,29 +7846,29 @@ var ActionPointer = class _ActionPointer extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.ActionPointer'; + static typeName = "exa.codeium_common_pb.ActionPointer"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'cortex_plan_id', - kind: 'scalar', - T: 9, + name: "cortex_plan_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'code_plan_id', - kind: 'scalar', - T: 9, + name: "code_plan_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 3, - name: 'action_index', - kind: 'scalar', - T: 5, + name: "action_index", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ - }, + } ]); static fromBinary(bytes, options) { return new _ActionPointer().fromBinary(bytes, options); @@ -9619,41 +7903,36 @@ var PromptAnnotationRange = class _PromptAnnotationRange extends Message { * * @generated from field: string suffix = 4; */ - suffix = ''; + suffix = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.PromptAnnotationRange'; + static typeName = "exa.codeium_common_pb.PromptAnnotationRange"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'kind', - kind: 'enum', - T: proto3.getEnumType(PromptAnnotationKind), - }, + { no: 1, name: "kind", kind: "enum", T: proto3.getEnumType(PromptAnnotationKind) }, { no: 2, - name: 'byte_offset_start', - kind: 'scalar', - T: 4, + name: "byte_offset_start", + kind: "scalar", + T: 4 /* ScalarType.UINT64 */ }, { no: 3, - name: 'byte_offset_end', - kind: 'scalar', - T: 4, + name: "byte_offset_end", + kind: "scalar", + T: 4 /* ScalarType.UINT64 */ }, { no: 4, - name: 'suffix', - kind: 'scalar', - T: 9, + name: "suffix", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _PromptAnnotationRange().fromBinary(bytes, options); @@ -9682,7 +7961,7 @@ var ExperimentWithVariant = class _ExperimentWithVariant extends Message { * * @generated from field: string key_string = 5; */ - keyString = ''; + keyString = ""; /** * @generated from field: bool disabled = 6; */ @@ -9704,32 +7983,27 @@ var ExperimentWithVariant = class _ExperimentWithVariant extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.ExperimentWithVariant'; + static typeName = "exa.codeium_common_pb.ExperimentWithVariant"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'key', kind: 'enum', T: proto3.getEnumType(ExperimentKey) }, + { no: 1, name: "key", kind: "enum", T: proto3.getEnumType(ExperimentKey) }, { no: 5, - name: 'key_string', - kind: 'scalar', - T: 9, + name: "key_string", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 6, - name: 'disabled', - kind: 'scalar', - T: 8, + name: "disabled", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, - { no: 2, name: 'string', kind: 'scalar', T: 9, oneof: 'payload' }, - { no: 3, name: 'json', kind: 'scalar', T: 9, oneof: 'payload' }, - { no: 4, name: 'csv', kind: 'scalar', T: 9, oneof: 'payload' }, - { - no: 7, - name: 'source', - kind: 'enum', - T: proto3.getEnumType(ExperimentSource), - }, + { no: 2, name: "string", kind: "scalar", T: 9, oneof: "payload" }, + { no: 3, name: "json", kind: "scalar", T: 9, oneof: "payload" }, + { no: 4, name: "csv", kind: "scalar", T: 9, oneof: "payload" }, + { no: 7, name: "source", kind: "enum", T: proto3.getEnumType(ExperimentSource) } ]); static fromBinary(bytes, options) { return new _ExperimentWithVariant().fromBinary(bytes, options); @@ -9789,57 +8063,21 @@ var ExperimentConfig = class _ExperimentConfig extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.ExperimentConfig'; + static typeName = "exa.codeium_common_pb.ExperimentConfig"; static fields = proto3.util.newFieldList(() => [ - { - no: 6, - name: 'experiments', - kind: 'message', - T: ExperimentWithVariant, - repeated: true, - }, - { - no: 1, - name: 'force_enable_experiments', - kind: 'enum', - T: proto3.getEnumType(ExperimentKey), - repeated: true, - }, - { - no: 2, - name: 'force_disable_experiments', - kind: 'enum', - T: proto3.getEnumType(ExperimentKey), - repeated: true, - }, - { - no: 3, - name: 'force_enable_experiments_with_variants', - kind: 'message', - T: ExperimentWithVariant, - repeated: true, - }, - { - no: 4, - name: 'force_enable_experiment_strings', - kind: 'scalar', - T: 9, - repeated: true, - }, - { - no: 5, - name: 'force_disable_experiment_strings', - kind: 'scalar', - T: 9, - repeated: true, - }, + { no: 6, name: "experiments", kind: "message", T: ExperimentWithVariant, repeated: true }, + { no: 1, name: "force_enable_experiments", kind: "enum", T: proto3.getEnumType(ExperimentKey), repeated: true }, + { no: 2, name: "force_disable_experiments", kind: "enum", T: proto3.getEnumType(ExperimentKey), repeated: true }, + { no: 3, name: "force_enable_experiments_with_variants", kind: "message", T: ExperimentWithVariant, repeated: true }, + { no: 4, name: "force_enable_experiment_strings", kind: "scalar", T: 9, repeated: true }, + { no: 5, name: "force_disable_experiment_strings", kind: "scalar", T: 9, repeated: true }, { no: 7, - name: 'dev_mode', - kind: 'scalar', - T: 8, + name: "dev_mode", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ - }, + } ]); static fromBinary(bytes, options) { return new _ExperimentConfig().fromBinary(bytes, options); @@ -9858,95 +8096,85 @@ var ExperimentLanguageServerVersionPayload = class _ExperimentLanguageServerVers /** * @generated from field: string sha = 1; */ - sha = ''; + sha = ""; /** * @generated from field: string crc32c_linux_x64 = 2; */ - crc32cLinuxX64 = ''; + crc32cLinuxX64 = ""; /** * @generated from field: string crc32c_linux_arm = 3; */ - crc32cLinuxArm = ''; + crc32cLinuxArm = ""; /** * @generated from field: string crc32c_macos_x64 = 4; */ - crc32cMacosX64 = ''; + crc32cMacosX64 = ""; /** * @generated from field: string crc32c_macos_arm = 5; */ - crc32cMacosArm = ''; + crc32cMacosArm = ""; /** * @generated from field: string crc32c_windows_x64 = 6; */ - crc32cWindowsX64 = ''; + crc32cWindowsX64 = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = - 'exa.codeium_common_pb.ExperimentLanguageServerVersionPayload'; + static typeName = "exa.codeium_common_pb.ExperimentLanguageServerVersionPayload"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'sha', - kind: 'scalar', - T: 9, + name: "sha", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'crc32c_linux_x64', - kind: 'scalar', - T: 9, + name: "crc32c_linux_x64", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 3, - name: 'crc32c_linux_arm', - kind: 'scalar', - T: 9, + name: "crc32c_linux_arm", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 4, - name: 'crc32c_macos_x64', - kind: 'scalar', - T: 9, + name: "crc32c_macos_x64", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 5, - name: 'crc32c_macos_arm', - kind: 'scalar', - T: 9, + name: "crc32c_macos_arm", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 6, - name: 'crc32c_windows_x64', - kind: 'scalar', - T: 9, + name: "crc32c_windows_x64", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { - return new _ExperimentLanguageServerVersionPayload().fromBinary( - bytes, - options, - ); + return new _ExperimentLanguageServerVersionPayload().fromBinary(bytes, options); } static fromJson(jsonValue, options) { - return new _ExperimentLanguageServerVersionPayload().fromJson( - jsonValue, - options, - ); + return new _ExperimentLanguageServerVersionPayload().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _ExperimentLanguageServerVersionPayload().fromJsonString( - jsonString, - options, - ); + return new _ExperimentLanguageServerVersionPayload().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_ExperimentLanguageServerVersionPayload, a, b); @@ -9958,34 +8186,34 @@ var ExperimentModelConfigPayload = class _ExperimentModelConfigPayload extends M * * @generated from field: string model_name = 1; */ - modelName = ''; + modelName = ""; /** * Context check model. * * @generated from field: string context_check_model_name = 2; */ - contextCheckModelName = ''; + contextCheckModelName = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.ExperimentModelConfigPayload'; + static typeName = "exa.codeium_common_pb.ExperimentModelConfigPayload"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'model_name', - kind: 'scalar', - T: 9, + name: "model_name", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'context_check_model_name', - kind: 'scalar', - T: 9, + name: "context_check_model_name", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _ExperimentModelConfigPayload().fromBinary(bytes, options); @@ -9994,10 +8222,7 @@ var ExperimentModelConfigPayload = class _ExperimentModelConfigPayload extends M return new _ExperimentModelConfigPayload().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _ExperimentModelConfigPayload().fromJsonString( - jsonString, - options, - ); + return new _ExperimentModelConfigPayload().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_ExperimentModelConfigPayload, a, b); @@ -10009,21 +8234,21 @@ var ExperimentMiddleModeTokenPayload = class _ExperimentMiddleModeTokenPayload e * * @generated from field: string mode_token = 1; */ - modeToken = ''; + modeToken = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.ExperimentMiddleModeTokenPayload'; + static typeName = "exa.codeium_common_pb.ExperimentMiddleModeTokenPayload"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'mode_token', - kind: 'scalar', - T: 9, + name: "mode_token", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _ExperimentMiddleModeTokenPayload().fromBinary(bytes, options); @@ -10032,10 +8257,7 @@ var ExperimentMiddleModeTokenPayload = class _ExperimentMiddleModeTokenPayload e return new _ExperimentMiddleModeTokenPayload().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _ExperimentMiddleModeTokenPayload().fromJsonString( - jsonString, - options, - ); + return new _ExperimentMiddleModeTokenPayload().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_ExperimentMiddleModeTokenPayload, a, b); @@ -10053,34 +8275,24 @@ var ExperimentMultilineModelThresholdPayload = class _ExperimentMultilineModelTh proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = - 'exa.codeium_common_pb.ExperimentMultilineModelThresholdPayload'; + static typeName = "exa.codeium_common_pb.ExperimentMultilineModelThresholdPayload"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'threshold', - kind: 'scalar', - T: 2, + name: "threshold", + kind: "scalar", + T: 2 /* ScalarType.FLOAT */ - }, + } ]); static fromBinary(bytes, options) { - return new _ExperimentMultilineModelThresholdPayload().fromBinary( - bytes, - options, - ); + return new _ExperimentMultilineModelThresholdPayload().fromBinary(bytes, options); } static fromJson(jsonValue, options) { - return new _ExperimentMultilineModelThresholdPayload().fromJson( - jsonValue, - options, - ); + return new _ExperimentMultilineModelThresholdPayload().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _ExperimentMultilineModelThresholdPayload().fromJsonString( - jsonString, - options, - ); + return new _ExperimentMultilineModelThresholdPayload().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_ExperimentMultilineModelThresholdPayload, a, b); @@ -10112,37 +8324,25 @@ var ExperimentSentryPayload = class _ExperimentSentryPayload extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.ExperimentSentryPayload'; + static typeName = "exa.codeium_common_pb.ExperimentSentryPayload"; static fields = proto3.util.newFieldList(() => [ { no: 2, - name: 'sample_rate', - kind: 'scalar', - T: 1, + name: "sample_rate", + kind: "scalar", + T: 1 /* ScalarType.DOUBLE */ }, - { - no: 3, - name: 'procedure_to_sample_rate', - kind: 'map', - K: 9, - V: { - kind: 'scalar', - T: 1, - /* ScalarType.DOUBLE */ - }, - }, - { - no: 5, - name: 'error_match_to_sample_rate', - kind: 'map', - K: 9, - V: { - kind: 'scalar', - T: 1, - /* ScalarType.DOUBLE */ - }, - }, + { no: 3, name: "procedure_to_sample_rate", kind: "map", K: 9, V: { + kind: "scalar", + T: 1 + /* ScalarType.DOUBLE */ + } }, + { no: 5, name: "error_match_to_sample_rate", kind: "map", K: 9, V: { + kind: "scalar", + T: 1 + /* ScalarType.DOUBLE */ + } } ]); static fromBinary(bytes, options) { return new _ExperimentSentryPayload().fromBinary(bytes, options); @@ -10161,7 +8361,7 @@ var TeamOrganizationalControls = class _TeamOrganizationalControls extends Messa /** * @generated from field: string team_id = 1; */ - teamId = ''; + teamId = ""; /** * List of model labels like "Claude 3.5 Sonnet" that can be used by * @@ -10197,38 +8397,20 @@ var TeamOrganizationalControls = class _TeamOrganizationalControls extends Messa proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.TeamOrganizationalControls'; + static typeName = "exa.codeium_common_pb.TeamOrganizationalControls"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'team_id', - kind: 'scalar', - T: 9, + name: "team_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { - no: 2, - name: 'cascade_model_labels', - kind: 'scalar', - T: 9, - repeated: true, - }, - { - no: 3, - name: 'command_model_labels', - kind: 'scalar', - T: 9, - repeated: true, - }, - { no: 4, name: 'created_at', kind: 'message', T: Timestamp }, - { no: 5, name: 'updated_at', kind: 'message', T: Timestamp }, - { - no: 6, - name: 'extension_model_labels', - kind: 'scalar', - T: 9, - repeated: true, - }, + { no: 2, name: "cascade_model_labels", kind: "scalar", T: 9, repeated: true }, + { no: 3, name: "command_model_labels", kind: "scalar", T: 9, repeated: true }, + { no: 4, name: "created_at", kind: "message", T: Timestamp }, + { no: 5, name: "updated_at", kind: "message", T: Timestamp }, + { no: 6, name: "extension_model_labels", kind: "scalar", T: 9, repeated: true } ]); static fromBinary(bytes, options) { return new _TeamOrganizationalControls().fromBinary(bytes, options); @@ -10237,10 +8419,7 @@ var TeamOrganizationalControls = class _TeamOrganizationalControls extends Messa return new _TeamOrganizationalControls().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _TeamOrganizationalControls().fromJsonString( - jsonString, - options, - ); + return new _TeamOrganizationalControls().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_TeamOrganizationalControls, a, b); @@ -10258,45 +8437,25 @@ var ExperimentProfilingTelemetrySampleRatePayload = class _ExperimentProfilingTe proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = - 'exa.codeium_common_pb.ExperimentProfilingTelemetrySampleRatePayload'; + static typeName = "exa.codeium_common_pb.ExperimentProfilingTelemetrySampleRatePayload"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'memory_usage_to_sample_rate', - kind: 'map', - K: 9, - V: { - kind: 'scalar', - T: 1, - /* ScalarType.DOUBLE */ - }, - }, + { no: 1, name: "memory_usage_to_sample_rate", kind: "map", K: 9, V: { + kind: "scalar", + T: 1 + /* ScalarType.DOUBLE */ + } } ]); static fromBinary(bytes, options) { - return new _ExperimentProfilingTelemetrySampleRatePayload().fromBinary( - bytes, - options, - ); + return new _ExperimentProfilingTelemetrySampleRatePayload().fromBinary(bytes, options); } static fromJson(jsonValue, options) { - return new _ExperimentProfilingTelemetrySampleRatePayload().fromJson( - jsonValue, - options, - ); + return new _ExperimentProfilingTelemetrySampleRatePayload().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _ExperimentProfilingTelemetrySampleRatePayload().fromJsonString( - jsonString, - options, - ); + return new _ExperimentProfilingTelemetrySampleRatePayload().fromJsonString(jsonString, options); } static equals(a, b) { - return proto3.util.equals( - _ExperimentProfilingTelemetrySampleRatePayload, - a, - b, - ); + return proto3.util.equals(_ExperimentProfilingTelemetrySampleRatePayload, a, b); } }; var ModelOrAlias = class _ModelOrAlias extends Message { @@ -10309,22 +8468,10 @@ var ModelOrAlias = class _ModelOrAlias extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.ModelOrAlias'; + static typeName = "exa.codeium_common_pb.ModelOrAlias"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'model', - kind: 'enum', - T: proto3.getEnumType(Model), - oneof: 'choice', - }, - { - no: 2, - name: 'alias', - kind: 'enum', - T: proto3.getEnumType(ModelAlias), - oneof: 'choice', - }, + { no: 1, name: "model", kind: "enum", T: proto3.getEnumType(Model), oneof: "choice" }, + { no: 2, name: "alias", kind: "enum", T: proto3.getEnumType(ModelAlias), oneof: "choice" } ]); static fromBinary(bytes, options) { return new _ModelOrAlias().fromBinary(bytes, options); @@ -10378,41 +8525,31 @@ var PromptElementKindInfo = class _PromptElementKindInfo extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.PromptElementKindInfo'; + static typeName = "exa.codeium_common_pb.PromptElementKindInfo"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'kind', - kind: 'enum', - T: proto3.getEnumType(PromptElementKind), - }, - { - no: 2, - name: 'experiment_key', - kind: 'enum', - T: proto3.getEnumType(ExperimentKey), - }, + { no: 1, name: "kind", kind: "enum", T: proto3.getEnumType(PromptElementKind) }, + { no: 2, name: "experiment_key", kind: "enum", T: proto3.getEnumType(ExperimentKey) }, { no: 3, - name: 'enabled', - kind: 'scalar', - T: 8, + name: "enabled", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 4, - name: 'num_considered', - kind: 'scalar', - T: 4, + name: "num_considered", + kind: "scalar", + T: 4 /* ScalarType.UINT64 */ }, { no: 5, - name: 'num_included', - kind: 'scalar', - T: 4, + name: "num_included", + kind: "scalar", + T: 4 /* ScalarType.UINT64 */ - }, + } ]); static fromBinary(bytes, options) { return new _PromptElementKindInfo().fromBinary(bytes, options); @@ -10445,21 +8582,16 @@ var PromptElementInclusionMetadata = class _PromptElementInclusionMetadata exten proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.PromptElementInclusionMetadata'; + static typeName = "exa.codeium_common_pb.PromptElementInclusionMetadata"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'included', - kind: 'scalar', - T: 8, + name: "included", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, - { - no: 2, - name: 'exclusion_reason', - kind: 'enum', - T: proto3.getEnumType(PromptElementExclusionReason), - }, + { no: 2, name: "exclusion_reason", kind: "enum", T: proto3.getEnumType(PromptElementExclusionReason) } ]); static fromBinary(bytes, options) { return new _PromptElementInclusionMetadata().fromBinary(bytes, options); @@ -10468,10 +8600,7 @@ var PromptElementInclusionMetadata = class _PromptElementInclusionMetadata exten return new _PromptElementInclusionMetadata().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _PromptElementInclusionMetadata().fromJsonString( - jsonString, - options, - ); + return new _PromptElementInclusionMetadata().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_PromptElementInclusionMetadata, a, b); @@ -10481,7 +8610,7 @@ var PromptStageLatency = class _PromptStageLatency extends Message { /** * @generated from field: string name = 1; */ - name = ''; + name = ""; /** * @generated from field: uint64 latency_ms = 2; */ @@ -10491,22 +8620,22 @@ var PromptStageLatency = class _PromptStageLatency extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.PromptStageLatency'; + static typeName = "exa.codeium_common_pb.PromptStageLatency"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'name', - kind: 'scalar', - T: 9, + name: "name", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'latency_ms', - kind: 'scalar', - T: 4, + name: "latency_ms", + kind: "scalar", + T: 4 /* ScalarType.UINT64 */ - }, + } ]); static fromBinary(bytes, options) { return new _PromptStageLatency().fromBinary(bytes, options); @@ -10555,11 +8684,11 @@ var CompletionResponse = class _CompletionResponse extends Message { * * @generated from field: string prompt_id = 8; */ - promptId = ''; + promptId = ""; /** * @generated from field: string model_tag = 10; */ - modelTag = ''; + modelTag = ""; /** * @generated from field: optional exa.codeium_common_pb.CompletionProfile completion_profile = 11; */ @@ -10569,72 +8698,60 @@ var CompletionResponse = class _CompletionResponse extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.CompletionResponse'; + static typeName = "exa.codeium_common_pb.CompletionResponse"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'completions', - kind: 'message', - T: Completion, - repeated: true, - }, + { no: 1, name: "completions", kind: "message", T: Completion, repeated: true }, { no: 2, - name: 'max_tokens', - kind: 'scalar', - T: 4, + name: "max_tokens", + kind: "scalar", + T: 4 /* ScalarType.UINT64 */ }, { no: 3, - name: 'temperature', - kind: 'scalar', - T: 1, + name: "temperature", + kind: "scalar", + T: 1 /* ScalarType.DOUBLE */ }, { no: 4, - name: 'top_k', - kind: 'scalar', - T: 4, + name: "top_k", + kind: "scalar", + T: 4 /* ScalarType.UINT64 */ }, { no: 5, - name: 'top_p', - kind: 'scalar', - T: 1, + name: "top_p", + kind: "scalar", + T: 1 /* ScalarType.DOUBLE */ }, - { no: 6, name: 'stop_patterns', kind: 'scalar', T: 9, repeated: true }, + { no: 6, name: "stop_patterns", kind: "scalar", T: 9, repeated: true }, { no: 7, - name: 'prompt_length', - kind: 'scalar', - T: 4, + name: "prompt_length", + kind: "scalar", + T: 4 /* ScalarType.UINT64 */ }, { no: 8, - name: 'prompt_id', - kind: 'scalar', - T: 9, + name: "prompt_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 10, - name: 'model_tag', - kind: 'scalar', - T: 9, + name: "model_tag", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { - no: 11, - name: 'completion_profile', - kind: 'message', - T: CompletionProfile, - opt: true, - }, + { no: 11, name: "completion_profile", kind: "message", T: CompletionProfile, opt: true } ]); static fromBinary(bytes, options) { return new _CompletionResponse().fromBinary(bytes, options); @@ -10653,15 +8770,15 @@ var Completion = class _Completion extends Message { /** * @generated from field: string completion_id = 1; */ - completionId = ''; + completionId = ""; /** * @generated from field: string text = 2; */ - text = ''; + text = ""; /** * @generated from field: string stop = 4; */ - stop = ''; + stop = ""; /** * Populated / overwritten on the language server, derived from probabilities. * @@ -10712,7 +8829,7 @@ var Completion = class _Completion extends Message { * * @generated from field: string original_text = 14; */ - originalText = ''; + originalText = ""; /** * Tool calls generated by the model. Populated by the language server / api * server. @@ -10725,94 +8842,71 @@ var Completion = class _Completion extends Message { * * @generated from field: string trace_id = 17; */ - traceId = ''; + traceId = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.Completion'; + static typeName = "exa.codeium_common_pb.Completion"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'completion_id', - kind: 'scalar', - T: 9, + name: "completion_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'text', - kind: 'scalar', - T: 9, + name: "text", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 4, - name: 'stop', - kind: 'scalar', - T: 9, + name: "stop", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 5, - name: 'score', - kind: 'scalar', - T: 1, + name: "score", + kind: "scalar", + T: 1 /* ScalarType.DOUBLE */ }, - { no: 6, name: 'tokens', kind: 'scalar', T: 4, repeated: true }, - { no: 7, name: 'decoded_tokens', kind: 'scalar', T: 9, repeated: true }, - { no: 8, name: 'probabilities', kind: 'scalar', T: 1, repeated: true }, - { - no: 9, - name: 'adjusted_probabilities', - kind: 'scalar', - T: 1, - repeated: true, - }, - { no: 16, name: 'logprobs', kind: 'scalar', T: 1, repeated: true }, + { no: 6, name: "tokens", kind: "scalar", T: 4, repeated: true }, + { no: 7, name: "decoded_tokens", kind: "scalar", T: 9, repeated: true }, + { no: 8, name: "probabilities", kind: "scalar", T: 1, repeated: true }, + { no: 9, name: "adjusted_probabilities", kind: "scalar", T: 1, repeated: true }, + { no: 16, name: "logprobs", kind: "scalar", T: 1, repeated: true }, { no: 10, - name: 'generated_length', - kind: 'scalar', - T: 4, + name: "generated_length", + kind: "scalar", + T: 4 /* ScalarType.UINT64 */ }, - { - no: 12, - name: 'stop_reason', - kind: 'enum', - T: proto3.getEnumType(StopReason), - }, - { - no: 13, - name: 'filter_reasons', - kind: 'enum', - T: proto3.getEnumType(FilterReason), - repeated: true, - }, + { no: 12, name: "stop_reason", kind: "enum", T: proto3.getEnumType(StopReason) }, + { no: 13, name: "filter_reasons", kind: "enum", T: proto3.getEnumType(FilterReason), repeated: true }, { no: 14, - name: 'original_text', - kind: 'scalar', - T: 9, + name: "original_text", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { - no: 15, - name: 'tool_calls', - kind: 'message', - T: ChatToolCall, - repeated: true, - }, + { no: 15, name: "tool_calls", kind: "message", T: ChatToolCall, repeated: true }, { no: 17, - name: 'trace_id', - kind: 'scalar', - T: 9, + name: "trace_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _Completion().fromBinary(bytes, options); @@ -10866,11 +8960,11 @@ var StreamingCompletionInfo = class _StreamingCompletionInfo extends Message { * * @generated from field: string prompt_id = 9; */ - promptId = ''; + promptId = ""; /** * @generated from field: string model_tag = 8; */ - modelTag = ''; + modelTag = ""; /** * This is only returned for dev requests if the CompletionsRequest object was * modified on the server. @@ -10892,71 +8986,61 @@ var StreamingCompletionInfo = class _StreamingCompletionInfo extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.StreamingCompletionInfo'; + static typeName = "exa.codeium_common_pb.StreamingCompletionInfo"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'completion_ids', kind: 'scalar', T: 9, repeated: true }, + { no: 1, name: "completion_ids", kind: "scalar", T: 9, repeated: true }, { no: 2, - name: 'max_tokens', - kind: 'scalar', - T: 4, + name: "max_tokens", + kind: "scalar", + T: 4 /* ScalarType.UINT64 */ }, { no: 3, - name: 'temperature', - kind: 'scalar', - T: 1, + name: "temperature", + kind: "scalar", + T: 1 /* ScalarType.DOUBLE */ }, { no: 4, - name: 'top_k', - kind: 'scalar', - T: 4, + name: "top_k", + kind: "scalar", + T: 4 /* ScalarType.UINT64 */ }, { no: 5, - name: 'top_p', - kind: 'scalar', - T: 1, + name: "top_p", + kind: "scalar", + T: 1 /* ScalarType.DOUBLE */ }, - { no: 6, name: 'stop_patterns', kind: 'scalar', T: 9, repeated: true }, + { no: 6, name: "stop_patterns", kind: "scalar", T: 9, repeated: true }, { no: 7, - name: 'prompt_length', - kind: 'scalar', - T: 4, + name: "prompt_length", + kind: "scalar", + T: 4 /* ScalarType.UINT64 */ }, { no: 9, - name: 'prompt_id', - kind: 'scalar', - T: 9, + name: "prompt_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 8, - name: 'model_tag', - kind: 'scalar', - T: 9, + name: "model_tag", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { - no: 10, - name: 'completions_request', - kind: 'message', - T: CompletionsRequest, - }, - { - no: 11, - name: 'eval_suffix_info', - kind: 'message', - T: StreamingEvalSuffixInfo, - }, + { no: 10, name: "completions_request", kind: "message", T: CompletionsRequest }, + { no: 11, name: "eval_suffix_info", kind: "message", T: StreamingEvalSuffixInfo } ]); static fromBinary(bytes, options) { return new _StreamingCompletionInfo().fromBinary(bytes, options); @@ -11019,78 +9103,78 @@ var SingleModelCompletionProfile = class _SingleModelCompletionProfile extends M proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.SingleModelCompletionProfile'; + static typeName = "exa.codeium_common_pb.SingleModelCompletionProfile"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'total_prefill_pass_time', - kind: 'scalar', - T: 1, + name: "total_prefill_pass_time", + kind: "scalar", + T: 1 /* ScalarType.DOUBLE */ }, { no: 2, - name: 'avg_prefill_pass_time', - kind: 'scalar', - T: 1, + name: "avg_prefill_pass_time", + kind: "scalar", + T: 1 /* ScalarType.DOUBLE */ }, { no: 3, - name: 'num_prefill_passes', - kind: 'scalar', - T: 4, + name: "num_prefill_passes", + kind: "scalar", + T: 4 /* ScalarType.UINT64 */ }, { no: 7, - name: 'total_spec_copy_pass_time', - kind: 'scalar', - T: 1, + name: "total_spec_copy_pass_time", + kind: "scalar", + T: 1 /* ScalarType.DOUBLE */ }, { no: 8, - name: 'avg_spec_copy_pass_time', - kind: 'scalar', - T: 1, + name: "avg_spec_copy_pass_time", + kind: "scalar", + T: 1 /* ScalarType.DOUBLE */ }, { no: 9, - name: 'num_spec_copy_passes', - kind: 'scalar', - T: 4, + name: "num_spec_copy_passes", + kind: "scalar", + T: 4 /* ScalarType.UINT64 */ }, { no: 4, - name: 'total_generation_pass_time', - kind: 'scalar', - T: 1, + name: "total_generation_pass_time", + kind: "scalar", + T: 1 /* ScalarType.DOUBLE */ }, { no: 5, - name: 'avg_generation_pass_time', - kind: 'scalar', - T: 1, + name: "avg_generation_pass_time", + kind: "scalar", + T: 1 /* ScalarType.DOUBLE */ }, { no: 6, - name: 'num_generation_passes', - kind: 'scalar', - T: 4, + name: "num_generation_passes", + kind: "scalar", + T: 4 /* ScalarType.UINT64 */ }, { no: 10, - name: 'total_model_time', - kind: 'scalar', - T: 1, + name: "total_model_time", + kind: "scalar", + T: 1 /* ScalarType.DOUBLE */ - }, + } ]); static fromBinary(bytes, options) { return new _SingleModelCompletionProfile().fromBinary(bytes, options); @@ -11099,10 +9183,7 @@ var SingleModelCompletionProfile = class _SingleModelCompletionProfile extends M return new _SingleModelCompletionProfile().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _SingleModelCompletionProfile().fromJsonString( - jsonString, - options, - ); + return new _SingleModelCompletionProfile().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_SingleModelCompletionProfile, a, b); @@ -11147,49 +9228,32 @@ var CompletionProfile = class _CompletionProfile extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.CompletionProfile'; + static typeName = "exa.codeium_common_pb.CompletionProfile"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'model_profile', - kind: 'message', - T: SingleModelCompletionProfile, - }, - { - no: 2, - name: 'draft_model_profile', - kind: 'message', - T: SingleModelCompletionProfile, - opt: true, - }, + { no: 1, name: "model_profile", kind: "message", T: SingleModelCompletionProfile }, + { no: 2, name: "draft_model_profile", kind: "message", T: SingleModelCompletionProfile, opt: true }, { no: 3, - name: 'time_to_first_prefill_pass', - kind: 'scalar', - T: 1, + name: "time_to_first_prefill_pass", + kind: "scalar", + T: 1 /* ScalarType.DOUBLE */ }, { no: 4, - name: 'time_to_first_token', - kind: 'scalar', - T: 1, + name: "time_to_first_token", + kind: "scalar", + T: 1 /* ScalarType.DOUBLE */ }, { no: 5, - name: 'total_completion_time', - kind: 'scalar', - T: 1, + name: "total_completion_time", + kind: "scalar", + T: 1 /* ScalarType.DOUBLE */ }, - { - no: 6, - name: 'model_usage', - kind: 'message', - T: ModelUsageStats, - opt: true, - }, + { no: 6, name: "model_usage", kind: "message", T: ModelUsageStats, opt: true } ]); static fromBinary(bytes, options) { return new _CompletionProfile().fromBinary(bytes, options); @@ -11244,7 +9308,7 @@ var StreamingCompletion = class _StreamingCompletion extends Message { * * @generated from field: string stop = 6; */ - stop = ''; + stop = ""; /** * Optional server-side stop reason. Should be set when completion_finished is * set to true. @@ -11264,70 +9328,59 @@ var StreamingCompletion = class _StreamingCompletion extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.StreamingCompletion'; + static typeName = "exa.codeium_common_pb.StreamingCompletion"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'decoded_token', - kind: 'scalar', - T: 12, + name: "decoded_token", + kind: "scalar", + T: 12 /* ScalarType.BYTES */ }, { no: 2, - name: 'token', - kind: 'scalar', - T: 4, + name: "token", + kind: "scalar", + T: 4 /* ScalarType.UINT64 */ }, { no: 3, - name: 'probability', - kind: 'scalar', - T: 1, + name: "probability", + kind: "scalar", + T: 1 /* ScalarType.DOUBLE */ }, { no: 4, - name: 'adjusted_probability', - kind: 'scalar', - T: 1, + name: "adjusted_probability", + kind: "scalar", + T: 1 /* ScalarType.DOUBLE */ }, { no: 9, - name: 'logprob', - kind: 'scalar', - T: 1, + name: "logprob", + kind: "scalar", + T: 1 /* ScalarType.DOUBLE */ }, { no: 5, - name: 'completion_finished', - kind: 'scalar', - T: 8, + name: "completion_finished", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 6, - name: 'stop', - kind: 'scalar', - T: 9, + name: "stop", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { - no: 7, - name: 'stop_reason', - kind: 'enum', - T: proto3.getEnumType(StopReason), - }, - { - no: 8, - name: 'attribution_statuses', - kind: 'map', - K: 13, - V: { kind: 'enum', T: proto3.getEnumType(AttributionStatus) }, - }, + { no: 7, name: "stop_reason", kind: "enum", T: proto3.getEnumType(StopReason) }, + { no: 8, name: "attribution_statuses", kind: "map", K: 13, V: { kind: "enum", T: proto3.getEnumType(AttributionStatus) } } ]); static fromBinary(bytes, options) { return new _StreamingCompletion().fromBinary(bytes, options); @@ -11359,15 +9412,9 @@ var StreamingCompletionMap = class _StreamingCompletionMap extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.StreamingCompletionMap'; + static typeName = "exa.codeium_common_pb.StreamingCompletionMap"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'completions', - kind: 'map', - K: 5, - V: { kind: 'message', T: StreamingCompletion }, - }, + { no: 1, name: "completions", kind: "map", K: 5, V: { kind: "message", T: StreamingCompletion } } ]); static fromBinary(bytes, options) { return new _StreamingCompletionMap().fromBinary(bytes, options); @@ -11394,15 +9441,9 @@ var PackedStreamingCompletionMaps = class _PackedStreamingCompletionMaps extends proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.PackedStreamingCompletionMaps'; + static typeName = "exa.codeium_common_pb.PackedStreamingCompletionMaps"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'completion_maps', - kind: 'message', - T: StreamingCompletionMap, - repeated: true, - }, + { no: 1, name: "completion_maps", kind: "message", T: StreamingCompletionMap, repeated: true } ]); static fromBinary(bytes, options) { return new _PackedStreamingCompletionMaps().fromBinary(bytes, options); @@ -11411,10 +9452,7 @@ var PackedStreamingCompletionMaps = class _PackedStreamingCompletionMaps extends return new _PackedStreamingCompletionMaps().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _PackedStreamingCompletionMaps().fromJsonString( - jsonString, - options, - ); + return new _PackedStreamingCompletionMaps().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_PackedStreamingCompletionMaps, a, b); @@ -11441,22 +9479,16 @@ var StreamingEvalSuffixInfo = class _StreamingEvalSuffixInfo extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.StreamingEvalSuffixInfo'; + static typeName = "exa.codeium_common_pb.StreamingEvalSuffixInfo"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'per_token_log_likelihoods', - kind: 'scalar', - T: 2, - repeated: true, - }, + { no: 1, name: "per_token_log_likelihoods", kind: "scalar", T: 2, repeated: true }, { no: 2, - name: 'is_greedy', - kind: 'scalar', - T: 8, + name: "is_greedy", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ - }, + } ]); static fromBinary(bytes, options) { return new _StreamingEvalSuffixInfo().fromBinary(bytes, options); @@ -11487,36 +9519,12 @@ var StreamingCompletionResponse = class _StreamingCompletionResponse extends Mes proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.StreamingCompletionResponse'; + static typeName = "exa.codeium_common_pb.StreamingCompletionResponse"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'completion_info', - kind: 'message', - T: StreamingCompletionInfo, - oneof: 'payload', - }, - { - no: 2, - name: 'completion_map', - kind: 'message', - T: StreamingCompletionMap, - oneof: 'payload', - }, - { - no: 4, - name: 'packed_completion_maps', - kind: 'message', - T: PackedStreamingCompletionMaps, - oneof: 'payload', - }, - { - no: 5, - name: 'completion_profile', - kind: 'message', - T: CompletionProfile, - opt: true, - }, + { no: 1, name: "completion_info", kind: "message", T: StreamingCompletionInfo, oneof: "payload" }, + { no: 2, name: "completion_map", kind: "message", T: StreamingCompletionMap, oneof: "payload" }, + { no: 4, name: "packed_completion_maps", kind: "message", T: PackedStreamingCompletionMaps, oneof: "payload" }, + { no: 5, name: "completion_profile", kind: "message", T: CompletionProfile, opt: true } ]); static fromBinary(bytes, options) { return new _StreamingCompletionResponse().fromBinary(bytes, options); @@ -11525,10 +9533,7 @@ var StreamingCompletionResponse = class _StreamingCompletionResponse extends Mes return new _StreamingCompletionResponse().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _StreamingCompletionResponse().fromJsonString( - jsonString, - options, - ); + return new _StreamingCompletionResponse().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_StreamingCompletionResponse, a, b); @@ -11587,71 +9592,71 @@ var CompletionLatencyInfo = class _CompletionLatencyInfo extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.CompletionLatencyInfo'; + static typeName = "exa.codeium_common_pb.CompletionLatencyInfo"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'api_server_latency_ms', - kind: 'scalar', - T: 4, + name: "api_server_latency_ms", + kind: "scalar", + T: 4 /* ScalarType.UINT64 */ }, { no: 2, - name: 'language_server_latency_ms', - kind: 'scalar', - T: 4, + name: "language_server_latency_ms", + kind: "scalar", + T: 4 /* ScalarType.UINT64 */ }, { no: 3, - name: 'network_latency_ms', - kind: 'scalar', - T: 4, + name: "network_latency_ms", + kind: "scalar", + T: 4 /* ScalarType.UINT64 */ }, { no: 4, - name: 'api_server_first_byte_latency_ms', - kind: 'scalar', - T: 4, + name: "api_server_first_byte_latency_ms", + kind: "scalar", + T: 4 /* ScalarType.UINT64 */ }, { no: 5, - name: 'language_server_first_byte_latency_ms', - kind: 'scalar', - T: 4, + name: "language_server_first_byte_latency_ms", + kind: "scalar", + T: 4 /* ScalarType.UINT64 */ }, { no: 6, - name: 'network_first_byte_latency_ms', - kind: 'scalar', - T: 4, + name: "network_first_byte_latency_ms", + kind: "scalar", + T: 4 /* ScalarType.UINT64 */ }, { no: 7, - name: 'api_server_first_line_latency_ms', - kind: 'scalar', - T: 4, + name: "api_server_first_line_latency_ms", + kind: "scalar", + T: 4 /* ScalarType.UINT64 */ }, { no: 8, - name: 'language_server_first_line_latency_ms', - kind: 'scalar', - T: 4, + name: "language_server_first_line_latency_ms", + kind: "scalar", + T: 4 /* ScalarType.UINT64 */ }, { no: 9, - name: 'network_first_line_latency_ms', - kind: 'scalar', - T: 4, + name: "network_first_line_latency_ms", + kind: "scalar", + T: 4 /* ScalarType.UINT64 */ - }, + } ]); static fromBinary(bytes, options) { return new _CompletionLatencyInfo().fromBinary(bytes, options); @@ -11680,10 +9685,10 @@ var CompletionWithLatencyInfo = class _CompletionWithLatencyInfo extends Message proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.CompletionWithLatencyInfo'; + static typeName = "exa.codeium_common_pb.CompletionWithLatencyInfo"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'completion', kind: 'message', T: Completion }, - { no: 2, name: 'latency_info', kind: 'message', T: CompletionLatencyInfo }, + { no: 1, name: "completion", kind: "message", T: Completion }, + { no: 2, name: "latency_info", kind: "message", T: CompletionLatencyInfo } ]); static fromBinary(bytes, options) { return new _CompletionWithLatencyInfo().fromBinary(bytes, options); @@ -11720,22 +9725,12 @@ var EmbeddingsRequest = class _EmbeddingsRequest extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.EmbeddingsRequest'; + static typeName = "exa.codeium_common_pb.EmbeddingsRequest"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'prompts', kind: 'scalar', T: 9, repeated: true }, - { - no: 2, - name: 'priority', - kind: 'enum', - T: proto3.getEnumType(EmbeddingPriority), - }, - { - no: 3, - name: 'prefix', - kind: 'enum', - T: proto3.getEnumType(EmbeddingPrefix), - }, - { no: 4, name: 'model', kind: 'enum', T: proto3.getEnumType(Model) }, + { no: 1, name: "prompts", kind: "scalar", T: 9, repeated: true }, + { no: 2, name: "priority", kind: "enum", T: proto3.getEnumType(EmbeddingPriority) }, + { no: 3, name: "prefix", kind: "enum", T: proto3.getEnumType(EmbeddingPrefix) }, + { no: 4, name: "model", kind: "enum", T: proto3.getEnumType(Model) } ]); static fromBinary(bytes, options) { return new _EmbeddingsRequest().fromBinary(bytes, options); @@ -11763,9 +9758,9 @@ var Embedding = class _Embedding extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.Embedding'; + static typeName = "exa.codeium_common_pb.Embedding"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'values', kind: 'scalar', T: 2, repeated: true }, + { no: 1, name: "values", kind: "scalar", T: 2, repeated: true } ]); static fromBinary(bytes, options) { return new _Embedding().fromBinary(bytes, options); @@ -11797,22 +9792,16 @@ var EmbeddingResponse = class _EmbeddingResponse extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.EmbeddingResponse'; + static typeName = "exa.codeium_common_pb.EmbeddingResponse"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'embeddings', - kind: 'message', - T: Embedding, - repeated: true, - }, + { no: 1, name: "embeddings", kind: "message", T: Embedding, repeated: true }, { no: 2, - name: 'prompts_exceeded_context_length', - kind: 'scalar', - T: 8, + name: "prompts_exceeded_context_length", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ - }, + } ]); static fromBinary(bytes, options) { return new _EmbeddingResponse().fromBinary(bytes, options); @@ -11835,7 +9824,7 @@ var RewardsRequest = class _RewardsRequest extends Message { * * @generated from field: string prefix = 2; */ - prefix = ''; + prefix = ""; /** * items should already be wrapped with any special tokens in string form. * The model relies on the hidden state of the last token, so that should @@ -11855,23 +9844,23 @@ var RewardsRequest = class _RewardsRequest extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.RewardsRequest'; + static typeName = "exa.codeium_common_pb.RewardsRequest"; static fields = proto3.util.newFieldList(() => [ { no: 2, - name: 'prefix', - kind: 'scalar', - T: 9, + name: "prefix", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 3, name: 'items', kind: 'scalar', T: 9, repeated: true }, + { no: 3, name: "items", kind: "scalar", T: 9, repeated: true }, { no: 4, - name: 'has_instruct_tokens', - kind: 'scalar', - T: 8, + name: "has_instruct_tokens", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ - }, + } ]); static fromBinary(bytes, options) { return new _RewardsRequest().fromBinary(bytes, options); @@ -11902,16 +9891,16 @@ var RewardsResponse = class _RewardsResponse extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.RewardsResponse'; + static typeName = "exa.codeium_common_pb.RewardsResponse"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'values', kind: 'scalar', T: 2, repeated: true }, + { no: 1, name: "values", kind: "scalar", T: 2, repeated: true }, { no: 2, - name: 'prompts_exceeded_context_length', - kind: 'scalar', - T: 8, + name: "prompts_exceeded_context_length", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ - }, + } ]); static fromBinary(bytes, options) { return new _RewardsResponse().fromBinary(bytes, options); @@ -11932,67 +9921,67 @@ var Metadata = class _Metadata extends Message { * * @generated from field: string ide_name = 1; */ - ideName = ''; + ideName = ""; /** * Jetski / Antigravity version * * @generated from field: string ide_version = 7; */ - ideVersion = ''; + ideVersion = ""; /** * Should be same as IDE name. * * @generated from field: string extension_name = 12; */ - extensionName = ''; + extensionName = ""; /** * Language server version. * * @generated from field: string extension_version = 2; */ - extensionVersion = ''; + extensionVersion = ""; /** * Path for extension (to determine VSCode Fork). * * @generated from field: string extension_path = 17; */ - extensionPath = ''; + extensionPath = ""; /** * Locale of the user. * * @generated from field: string locale = 4; */ - locale = ''; + locale = ""; /** * JSON encoding of os version. Populated by LS client interceptor. * * @generated from field: string os = 5; */ - os = ''; + os = ""; /** * JSON encoding of hardware version. * * @generated from field: string hardware = 8; */ - hardware = ''; + hardware = ""; /** * UID for a session. * * @generated from field: string session_id = 10; */ - sessionId = ''; + sessionId = ""; /** * Device identifier used to prevent duplicate trial accounts. * * @generated from field: string device_fingerprint = 24; */ - deviceFingerprint = ''; + deviceFingerprint = ""; /** * Paid GCA tier of the user (e.g. g1-pro-tier) * * @generated from field: string user_tier_id = 29; */ - userTierId = ''; + userTierId = ""; /** * Timestamp message reaches language server. For GetChatMessage requests, * this has been repurposed to be updated right before the request is sent to @@ -12006,21 +9995,21 @@ var Metadata = class _Metadata extends Message { * * @generated from field: string trigger_id = 25; */ - triggerId = ''; + triggerId = ""; /** * Used to verify the authenticity of requests. Populated by LS client * interceptor. * * @generated from field: string id = 27; */ - id = ''; + id = ""; /** * Not a UUID check due to external auth source support. * TODO(nick): remove when removing old auth. * * @generated from field: string api_key = 3; */ - apiKey = ''; + apiKey = ""; /** * Whether telemetry is disabled at an IDE level. Note that this is separate * from disabling code snippet telemetry. @@ -12040,128 +10029,128 @@ var Metadata = class _Metadata extends Message { * * @generated from field: string region_code = 30; */ - regionCode = ''; + regionCode = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.Metadata'; + static typeName = "exa.codeium_common_pb.Metadata"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'ide_name', - kind: 'scalar', - T: 9, + name: "ide_name", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 7, - name: 'ide_version', - kind: 'scalar', - T: 9, + name: "ide_version", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 12, - name: 'extension_name', - kind: 'scalar', - T: 9, + name: "extension_name", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'extension_version', - kind: 'scalar', - T: 9, + name: "extension_version", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 17, - name: 'extension_path', - kind: 'scalar', - T: 9, + name: "extension_path", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 4, - name: 'locale', - kind: 'scalar', - T: 9, + name: "locale", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 5, - name: 'os', - kind: 'scalar', - T: 9, + name: "os", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 8, - name: 'hardware', - kind: 'scalar', - T: 9, + name: "hardware", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 10, - name: 'session_id', - kind: 'scalar', - T: 9, + name: "session_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 24, - name: 'device_fingerprint', - kind: 'scalar', - T: 9, + name: "device_fingerprint", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 29, - name: 'user_tier_id', - kind: 'scalar', - T: 9, + name: "user_tier_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 16, name: 'ls_timestamp', kind: 'message', T: Timestamp }, + { no: 16, name: "ls_timestamp", kind: "message", T: Timestamp }, { no: 25, - name: 'trigger_id', - kind: 'scalar', - T: 9, + name: "trigger_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 27, - name: 'id', - kind: 'scalar', - T: 9, + name: "id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 3, - name: 'api_key', - kind: 'scalar', - T: 9, + name: "api_key", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 6, - name: 'disable_telemetry', - kind: 'scalar', - T: 8, + name: "disable_telemetry", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, - { no: 18, name: 'user_tags', kind: 'scalar', T: 9, repeated: true }, + { no: 18, name: "user_tags", kind: "scalar", T: 9, repeated: true }, { no: 30, - name: 'region_code', - kind: 'scalar', - T: 9, + name: "region_code", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _Metadata().fromBinary(bytes, options); @@ -12194,29 +10183,29 @@ var EditorOptions = class _EditorOptions extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.EditorOptions'; + static typeName = "exa.codeium_common_pb.EditorOptions"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'tab_size', - kind: 'scalar', - T: 4, + name: "tab_size", + kind: "scalar", + T: 4 /* ScalarType.UINT64 */ }, { no: 2, - name: 'insert_spaces', - kind: 'scalar', - T: 8, + name: "insert_spaces", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 3, - name: 'disable_autocomplete_in_comments', - kind: 'scalar', - T: 8, + name: "disable_autocomplete_in_comments", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ - }, + } ]); static fromBinary(bytes, options) { return new _EditorOptions().fromBinary(bytes, options); @@ -12235,7 +10224,7 @@ var ErrorTrace = class _ErrorTrace extends Message { /** * @generated from field: string error_id = 1; */ - errorId = ''; + errorId = ""; /** * @generated from field: int64 timestamp_unix_ms = 2; */ @@ -12243,7 +10232,7 @@ var ErrorTrace = class _ErrorTrace extends Message { /** * @generated from field: string stacktrace = 3; */ - stacktrace = ''; + stacktrace = ""; /** * @generated from field: bool recovered = 4; */ @@ -12251,22 +10240,22 @@ var ErrorTrace = class _ErrorTrace extends Message { /** * @generated from field: string full_stderr = 5; */ - fullStderr = ''; + fullStderr = ""; /** * We don't include a full codeium_common.Metadata field to avoid * the risk of leaking PII. Instead only include the field we need. * * @generated from field: string ide_name = 6; */ - ideName = ''; + ideName = ""; /** * @generated from field: string ide_version = 7; */ - ideVersion = ''; + ideVersion = ""; /** * @generated from field: string os = 8; */ - os = ''; + os = ""; /** * @generated from field: bool is_dev = 9; */ @@ -12276,71 +10265,71 @@ var ErrorTrace = class _ErrorTrace extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.ErrorTrace'; + static typeName = "exa.codeium_common_pb.ErrorTrace"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'error_id', - kind: 'scalar', - T: 9, + name: "error_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'timestamp_unix_ms', - kind: 'scalar', - T: 3, + name: "timestamp_unix_ms", + kind: "scalar", + T: 3 /* ScalarType.INT64 */ }, { no: 3, - name: 'stacktrace', - kind: 'scalar', - T: 9, + name: "stacktrace", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 4, - name: 'recovered', - kind: 'scalar', - T: 8, + name: "recovered", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 5, - name: 'full_stderr', - kind: 'scalar', - T: 9, + name: "full_stderr", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 6, - name: 'ide_name', - kind: 'scalar', - T: 9, + name: "ide_name", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 7, - name: 'ide_version', - kind: 'scalar', - T: 9, + name: "ide_version", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 8, - name: 'os', - kind: 'scalar', - T: 9, + name: "os", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 9, - name: 'is_dev', - kind: 'scalar', - T: 8, + name: "is_dev", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ - }, + } ]); static fromBinary(bytes, options) { return new _ErrorTrace().fromBinary(bytes, options); @@ -12363,7 +10352,7 @@ var Event = class _Event extends Message { /** * @generated from field: string event_json = 2; */ - eventJson = ''; + eventJson = ""; /** * @generated from field: int64 timestamp_unix_ms = 3; */ @@ -12373,28 +10362,23 @@ var Event = class _Event extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.Event'; + static typeName = "exa.codeium_common_pb.Event"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'event_type', - kind: 'enum', - T: proto3.getEnumType(EventType), - }, + { no: 1, name: "event_type", kind: "enum", T: proto3.getEnumType(EventType) }, { no: 2, - name: 'event_json', - kind: 'scalar', - T: 9, + name: "event_json", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 3, - name: 'timestamp_unix_ms', - kind: 'scalar', - T: 3, + name: "timestamp_unix_ms", + kind: "scalar", + T: 3 /* ScalarType.INT64 */ - }, + } ]); static fromBinary(bytes, options) { return new _Event().fromBinary(bytes, options); @@ -12429,61 +10413,61 @@ var Citation = class _Citation extends Message { * * @generated from field: string uri = 3; */ - uri = ''; + uri = ""; /** * The title of the citation * * @generated from field: string title = 4; */ - title = ''; + title = ""; /** * The license from the citation * * @generated from field: string license = 5; */ - license = ''; + license = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.Citation'; + static typeName = "exa.codeium_common_pb.Citation"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'start_index', - kind: 'scalar', - T: 5, + name: "start_index", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, { no: 2, - name: 'end_index', - kind: 'scalar', - T: 5, + name: "end_index", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, { no: 3, - name: 'uri', - kind: 'scalar', - T: 9, + name: "uri", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 4, - name: 'title', - kind: 'scalar', - T: 9, + name: "title", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 5, - name: 'license', - kind: 'scalar', - T: 9, + name: "license", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _Citation().fromBinary(bytes, options); @@ -12508,9 +10492,9 @@ var CitationMetadata = class _CitationMetadata extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.CitationMetadata'; + static typeName = "exa.codeium_common_pb.CitationMetadata"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'citations', kind: 'message', T: Citation, repeated: true }, + { no: 1, name: "citations", kind: "message", T: Citation, repeated: true } ]); static fromBinary(bytes, options) { return new _CitationMetadata().fromBinary(bytes, options); @@ -12539,22 +10523,22 @@ var Recitation = class _Recitation extends Message { * * @generated from field: string content = 2; */ - content = ''; + content = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.Recitation'; + static typeName = "exa.codeium_common_pb.Recitation"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'citation', kind: 'message', T: Citation }, + { no: 1, name: "citation", kind: "message", T: Citation }, { no: 2, - name: 'content', - kind: 'scalar', - T: 9, + name: "content", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _Recitation().fromBinary(bytes, options); @@ -12579,15 +10563,9 @@ var RecitationMetadata = class _RecitationMetadata extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.RecitationMetadata'; + static typeName = "exa.codeium_common_pb.RecitationMetadata"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'recitations', - kind: 'message', - T: Recitation, - repeated: true, - }, + { no: 1, name: "recitations", kind: "message", T: Recitation, repeated: true } ]); static fromBinary(bytes, options) { return new _RecitationMetadata().fromBinary(bytes, options); @@ -12608,17 +10586,17 @@ var SearchResultRecord = class _SearchResultRecord extends Message { * * @generated from field: string search_id = 1; */ - searchId = ''; + searchId = ""; /** * UUID for each search result. * * @generated from field: string result_id = 2; */ - resultId = ''; + resultId = ""; /** * @generated from field: string absolute_path = 3; */ - absolutePath = ''; + absolutePath = ""; /** * @generated from field: repeated exa.codeium_common_pb.WorkspacePath workspace_paths = 4; */ @@ -12628,7 +10606,7 @@ var SearchResultRecord = class _SearchResultRecord extends Message { * * @generated from field: string text = 5; */ - text = ''; + text = ""; /** * @generated from field: exa.codeium_common_pb.EmbeddingMetadata embedding_metadata = 6; */ @@ -12644,7 +10622,7 @@ var SearchResultRecord = class _SearchResultRecord extends Message { /** * @generated from field: string representative_path = 9; */ - representativePath = ''; + representativePath = ""; /** * @generated from field: float mean_similarity_score = 10; */ @@ -12658,83 +10636,67 @@ var SearchResultRecord = class _SearchResultRecord extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.SearchResultRecord'; + static typeName = "exa.codeium_common_pb.SearchResultRecord"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'search_id', - kind: 'scalar', - T: 9, + name: "search_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'result_id', - kind: 'scalar', - T: 9, + name: "result_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 3, - name: 'absolute_path', - kind: 'scalar', - T: 9, + name: "absolute_path", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { - no: 4, - name: 'workspace_paths', - kind: 'message', - T: WorkspacePath, - repeated: true, - }, + { no: 4, name: "workspace_paths", kind: "message", T: WorkspacePath, repeated: true }, { no: 5, - name: 'text', - kind: 'scalar', - T: 9, + name: "text", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { - no: 6, - name: 'embedding_metadata', - kind: 'message', - T: EmbeddingMetadata, - }, + { no: 6, name: "embedding_metadata", kind: "message", T: EmbeddingMetadata }, { no: 7, - name: 'similarity_score', - kind: 'scalar', - T: 2, + name: "similarity_score", + kind: "scalar", + T: 2 /* ScalarType.FLOAT */ }, { no: 8, - name: 'num_results_in_cluster', - kind: 'scalar', - T: 3, + name: "num_results_in_cluster", + kind: "scalar", + T: 3 /* ScalarType.INT64 */ }, { no: 9, - name: 'representative_path', - kind: 'scalar', - T: 9, + name: "representative_path", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 10, - name: 'mean_similarity_score', - kind: 'scalar', - T: 2, + name: "mean_similarity_score", + kind: "scalar", + T: 2 /* ScalarType.FLOAT */ }, - { - no: 11, - name: 'search_result_type', - kind: 'enum', - T: proto3.getEnumType(SearchResultType), - }, + { no: 11, name: "search_result_type", kind: "enum", T: proto3.getEnumType(SearchResultType) } ]); static fromBinary(bytes, options) { return new _SearchResultRecord().fromBinary(bytes, options); @@ -12756,45 +10718,45 @@ var WorkspacePath = class _WorkspacePath extends Message { * @generated from field: string workspace_migrate_me_to_uri = 1 [deprecated = true]; * @deprecated */ - workspaceMigrateMeToUri = ''; + workspaceMigrateMeToUri = ""; /** * @generated from field: string workspace_uri = 3; */ - workspaceUri = ''; + workspaceUri = ""; /** * Relative path to the search result file. * * @generated from field: string relative_path = 2; */ - relativePath = ''; + relativePath = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.WorkspacePath'; + static typeName = "exa.codeium_common_pb.WorkspacePath"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'workspace_migrate_me_to_uri', - kind: 'scalar', - T: 9, + name: "workspace_migrate_me_to_uri", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 3, - name: 'workspace_uri', - kind: 'scalar', - T: 9, + name: "workspace_uri", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'relative_path', - kind: 'scalar', - T: 9, + name: "relative_path", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _WorkspacePath().fromBinary(bytes, options); @@ -12815,7 +10777,7 @@ var EmbeddingMetadata = class _EmbeddingMetadata extends Message { * * @generated from field: string node_name = 1; */ - nodeName = ''; + nodeName = ""; /** * Line in the file where the search result starts. Inclusive. * @@ -12839,35 +10801,30 @@ var EmbeddingMetadata = class _EmbeddingMetadata extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.EmbeddingMetadata'; + static typeName = "exa.codeium_common_pb.EmbeddingMetadata"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'node_name', - kind: 'scalar', - T: 9, + name: "node_name", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'start_line', - kind: 'scalar', - T: 13, + name: "start_line", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, { no: 3, - name: 'end_line', - kind: 'scalar', - T: 13, + name: "end_line", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, - { - no: 4, - name: 'embed_type', - kind: 'enum', - T: proto3.getEnumType(EmbedType), - }, + { no: 4, name: "embed_type", kind: "enum", T: proto3.getEnumType(EmbedType) } ]); static fromBinary(bytes, options) { return new _EmbeddingMetadata().fromBinary(bytes, options); @@ -12892,15 +10849,9 @@ var MockResponseData = class _MockResponseData extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.MockResponseData'; + static typeName = "exa.codeium_common_pb.MockResponseData"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'completions', - kind: 'message', - T: Completion, - repeated: true, - }, + { no: 1, name: "completions", kind: "message", T: Completion, repeated: true } ]); static fromBinary(bytes, options) { return new _MockResponseData().fromBinary(bytes, options); @@ -12919,7 +10870,7 @@ var WorkspaceIndexData = class _WorkspaceIndexData extends Message { /** * @generated from field: string workspace_uri_for_telemetry = 1; */ - workspaceUriForTelemetry = ''; + workspaceUriForTelemetry = ""; /** * @generated from field: google.protobuf.Timestamp indexing_start = 2; */ @@ -12959,73 +10910,73 @@ var WorkspaceIndexData = class _WorkspaceIndexData extends Message { /** * @generated from field: string error = 11; */ - error = ''; + error = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.WorkspaceIndexData'; + static typeName = "exa.codeium_common_pb.WorkspaceIndexData"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'workspace_uri_for_telemetry', - kind: 'scalar', - T: 9, + name: "workspace_uri_for_telemetry", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 2, name: 'indexing_start', kind: 'message', T: Timestamp }, - { no: 3, name: 'indexing_end', kind: 'message', T: Timestamp }, - { no: 4, name: 'embedding_duration', kind: 'message', T: Duration }, + { no: 2, name: "indexing_start", kind: "message", T: Timestamp }, + { no: 3, name: "indexing_end", kind: "message", T: Timestamp }, + { no: 4, name: "embedding_duration", kind: "message", T: Duration }, { no: 5, - name: 'num_files_total', - kind: 'scalar', - T: 3, + name: "num_files_total", + kind: "scalar", + T: 3 /* ScalarType.INT64 */ }, { no: 6, - name: 'num_files_to_embed', - kind: 'scalar', - T: 3, + name: "num_files_to_embed", + kind: "scalar", + T: 3 /* ScalarType.INT64 */ }, { no: 7, - name: 'num_nodes_total', - kind: 'scalar', - T: 3, + name: "num_nodes_total", + kind: "scalar", + T: 3 /* ScalarType.INT64 */ }, { no: 8, - name: 'num_nodes_to_embed', - kind: 'scalar', - T: 3, + name: "num_nodes_to_embed", + kind: "scalar", + T: 3 /* ScalarType.INT64 */ }, { no: 9, - name: 'num_tokens', - kind: 'scalar', - T: 3, + name: "num_tokens", + kind: "scalar", + T: 3 /* ScalarType.INT64 */ }, { no: 10, - name: 'num_high_priority_nodes_to_embed', - kind: 'scalar', - T: 3, + name: "num_high_priority_nodes_to_embed", + kind: "scalar", + T: 3 /* ScalarType.INT64 */ }, { no: 11, - name: 'error', - kind: 'scalar', - T: 9, + name: "error", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _WorkspaceIndexData().fromBinary(bytes, options); @@ -13044,7 +10995,7 @@ var WorkspaceStats = class _WorkspaceStats extends Message { /** * @generated from field: string workspace = 3; */ - workspace = ''; + workspace = ""; /** * The keys are Languages. * @@ -13068,44 +11019,32 @@ var WorkspaceStats = class _WorkspaceStats extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.WorkspaceStats'; + static typeName = "exa.codeium_common_pb.WorkspaceStats"; static fields = proto3.util.newFieldList(() => [ { no: 3, - name: 'workspace', - kind: 'scalar', - T: 9, + name: "workspace", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { - no: 1, - name: 'num_files', - kind: 'map', - K: 5, - V: { - kind: 'scalar', - T: 3, - /* ScalarType.INT64 */ - }, - }, - { - no: 2, - name: 'num_bytes', - kind: 'map', - K: 5, - V: { - kind: 'scalar', - T: 3, - /* ScalarType.INT64 */ - }, - }, + { no: 1, name: "num_files", kind: "map", K: 5, V: { + kind: "scalar", + T: 3 + /* ScalarType.INT64 */ + } }, + { no: 2, name: "num_bytes", kind: "map", K: 5, V: { + kind: "scalar", + T: 3 + /* ScalarType.INT64 */ + } }, { no: 4, - name: 'initial_scan_completed', - kind: 'scalar', - T: 8, + name: "initial_scan_completed", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ - }, + } ]); static fromBinary(bytes, options) { return new _WorkspaceStats().fromBinary(bytes, options); @@ -13140,23 +11079,23 @@ var PartialIndexMetadata = class _PartialIndexMetadata extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.PartialIndexMetadata'; + static typeName = "exa.codeium_common_pb.PartialIndexMetadata"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'num_total_files', - kind: 'scalar', - T: 13, + name: "num_total_files", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, { no: 2, - name: 'num_indexed_files', - kind: 'scalar', - T: 13, + name: "num_indexed_files", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, - { no: 3, name: 'cutoff_timestamp', kind: 'message', T: Timestamp }, + { no: 3, name: "cutoff_timestamp", kind: "message", T: Timestamp } ]); static fromBinary(bytes, options) { return new _PartialIndexMetadata().fromBinary(bytes, options); @@ -13175,23 +11114,23 @@ var FunctionInfo = class _FunctionInfo extends Message { /** * @generated from field: string raw_source = 1; */ - rawSource = ''; + rawSource = ""; /** * @generated from field: string clean_function = 2; */ - cleanFunction = ''; + cleanFunction = ""; /** * @generated from field: string docstring = 3; */ - docstring = ''; + docstring = ""; /** * @generated from field: string node_name = 4; */ - nodeName = ''; + nodeName = ""; /** * @generated from field: string params = 5; */ - params = ''; + params = ""; /** * @generated from field: int32 definition_line = 6; */ @@ -13219,7 +11158,7 @@ var FunctionInfo = class _FunctionInfo extends Message { /** * @generated from field: string leading_whitespace = 11; */ - leadingWhitespace = ''; + leadingWhitespace = ""; /** * @generated from field: exa.codeium_common_pb.Language language = 12; */ @@ -13237,100 +11176,100 @@ var FunctionInfo = class _FunctionInfo extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.FunctionInfo'; + static typeName = "exa.codeium_common_pb.FunctionInfo"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'raw_source', - kind: 'scalar', - T: 9, + name: "raw_source", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'clean_function', - kind: 'scalar', - T: 9, + name: "clean_function", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 3, - name: 'docstring', - kind: 'scalar', - T: 9, + name: "docstring", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 4, - name: 'node_name', - kind: 'scalar', - T: 9, + name: "node_name", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 5, - name: 'params', - kind: 'scalar', - T: 9, + name: "params", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 6, - name: 'definition_line', - kind: 'scalar', - T: 5, + name: "definition_line", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, { no: 7, - name: 'start_line', - kind: 'scalar', - T: 5, + name: "start_line", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, { no: 8, - name: 'end_line', - kind: 'scalar', - T: 5, + name: "end_line", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, { no: 9, - name: 'start_col', - kind: 'scalar', - T: 5, + name: "start_col", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, { no: 10, - name: 'end_col', - kind: 'scalar', - T: 5, + name: "end_col", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, { no: 11, - name: 'leading_whitespace', - kind: 'scalar', - T: 9, + name: "leading_whitespace", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 12, name: 'language', kind: 'enum', T: proto3.getEnumType(Language) }, + { no: 12, name: "language", kind: "enum", T: proto3.getEnumType(Language) }, { no: 13, - name: 'body_start_line', - kind: 'scalar', - T: 5, + name: "body_start_line", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, { no: 14, - name: 'body_start_col', - kind: 'scalar', - T: 5, + name: "body_start_col", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ - }, + } ]); static fromBinary(bytes, options) { return new _FunctionInfo().fromBinary(bytes, options); @@ -13349,7 +11288,7 @@ var ClassInfo = class _ClassInfo extends Message { /** * @generated from field: string raw_source = 1; */ - rawSource = ''; + rawSource = ""; /** * @generated from field: int32 start_line = 2; */ @@ -13369,7 +11308,7 @@ var ClassInfo = class _ClassInfo extends Message { /** * @generated from field: string leading_whitespace = 6; */ - leadingWhitespace = ''; + leadingWhitespace = ""; /** * @generated from field: repeated string fields_and_constructors = 7; */ @@ -13377,11 +11316,11 @@ var ClassInfo = class _ClassInfo extends Message { /** * @generated from field: string docstring = 8; */ - docstring = ''; + docstring = ""; /** * @generated from field: string node_name = 9; */ - nodeName = ''; + nodeName = ""; /** * @generated from field: repeated exa.codeium_common_pb.FunctionInfo methods = 10; */ @@ -13407,94 +11346,82 @@ var ClassInfo = class _ClassInfo extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.ClassInfo'; + static typeName = "exa.codeium_common_pb.ClassInfo"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'raw_source', - kind: 'scalar', - T: 9, + name: "raw_source", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'start_line', - kind: 'scalar', - T: 5, + name: "start_line", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, { no: 3, - name: 'end_line', - kind: 'scalar', - T: 5, + name: "end_line", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, { no: 4, - name: 'start_col', - kind: 'scalar', - T: 5, + name: "start_col", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, { no: 5, - name: 'end_col', - kind: 'scalar', - T: 5, + name: "end_col", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, { no: 6, - name: 'leading_whitespace', - kind: 'scalar', - T: 9, + name: "leading_whitespace", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { - no: 7, - name: 'fields_and_constructors', - kind: 'scalar', - T: 9, - repeated: true, - }, + { no: 7, name: "fields_and_constructors", kind: "scalar", T: 9, repeated: true }, { no: 8, - name: 'docstring', - kind: 'scalar', - T: 9, + name: "docstring", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 9, - name: 'node_name', - kind: 'scalar', - T: 9, + name: "node_name", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { - no: 10, - name: 'methods', - kind: 'message', - T: FunctionInfo, - repeated: true, - }, - { no: 11, name: 'node_lineage', kind: 'scalar', T: 9, repeated: true }, + { no: 10, name: "methods", kind: "message", T: FunctionInfo, repeated: true }, + { no: 11, name: "node_lineage", kind: "scalar", T: 9, repeated: true }, { no: 12, - name: 'is_exported', - kind: 'scalar', - T: 8, + name: "is_exported", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, - { no: 13, name: 'language', kind: 'enum', T: proto3.getEnumType(Language) }, + { no: 13, name: "language", kind: "enum", T: proto3.getEnumType(Language) }, { no: 14, - name: 'definition_line', - kind: 'scalar', - T: 5, + name: "definition_line", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ - }, + } ]); static fromBinary(bytes, options) { return new _ClassInfo().fromBinary(bytes, options); @@ -13521,7 +11448,7 @@ var TeamsFeaturesMetadata = class _TeamsFeaturesMetadata extends Message { * * @generated from field: string stripe_subscription_id = 2; */ - stripeSubscriptionId = ''; + stripeSubscriptionId = ""; /** * Whether the team has access to the feature * @@ -13533,29 +11460,29 @@ var TeamsFeaturesMetadata = class _TeamsFeaturesMetadata extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.TeamsFeaturesMetadata'; + static typeName = "exa.codeium_common_pb.TeamsFeaturesMetadata"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'is_active', - kind: 'scalar', - T: 8, + name: "is_active", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 2, - name: 'stripe_subscription_id', - kind: 'scalar', - T: 9, + name: "stripe_subscription_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 3, - name: 'has_access', - kind: 'scalar', - T: 8, + name: "has_access", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ - }, + } ]); static fromBinary(bytes, options) { return new _TeamsFeaturesMetadata().fromBinary(bytes, options); @@ -13584,16 +11511,16 @@ var QuotaInfo = class _QuotaInfo extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.QuotaInfo'; + static typeName = "exa.codeium_common_pb.QuotaInfo"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'remaining_fraction', - kind: 'scalar', - T: 2, + name: "remaining_fraction", + kind: "scalar", + T: 2 /* ScalarType.FLOAT */ }, - { no: 2, name: 'reset_time', kind: 'message', T: Timestamp }, + { no: 2, name: "reset_time", kind: "message", T: Timestamp } ]); static fromBinary(bytes, options) { return new _QuotaInfo().fromBinary(bytes, options); @@ -13614,7 +11541,7 @@ var ClientModelConfig = class _ClientModelConfig extends Message { * * @generated from field: string label = 1; */ - label = ''; + label = ""; /** * @generated from field: exa.codeium_common_pb.ModelOrAlias model_or_alias = 2; */ @@ -13659,7 +11586,7 @@ var ClientModelConfig = class _ClientModelConfig extends Message { * * @generated from field: string beta_warning_message = 8; */ - betaWarningMessage = ''; + betaWarningMessage = ""; /** * If true, the model is beta. * @@ -13690,7 +11617,7 @@ var ClientModelConfig = class _ClientModelConfig extends Message { * * @generated from field: string description = 14; */ - description = ''; + description = ""; /** * Quota information for this model, coming from go/quotaserver. * @@ -13700,11 +11627,11 @@ var ClientModelConfig = class _ClientModelConfig extends Message { /** * @generated from field: string tag_title = 16; */ - tagTitle = ''; + tagTitle = ""; /** * @generated from field: string tag_description = 17; */ - tagDescription = ''; + tagDescription = ""; /** * Map of MIME types to whether the model supports them. * If this map is populated, it takes precedence over the individual boolean @@ -13718,124 +11645,102 @@ var ClientModelConfig = class _ClientModelConfig extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.ClientModelConfig'; + static typeName = "exa.codeium_common_pb.ClientModelConfig"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'label', - kind: 'scalar', - T: 9, + name: "label", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 2, name: 'model_or_alias', kind: 'message', T: ModelOrAlias }, + { no: 2, name: "model_or_alias", kind: "message", T: ModelOrAlias }, { no: 3, - name: 'credit_multiplier', - kind: 'scalar', - T: 2, + name: "credit_multiplier", + kind: "scalar", + T: 2 /* ScalarType.FLOAT */ }, - { - no: 13, - name: 'pricing_type', - kind: 'enum', - T: proto3.getEnumType(ModelPricingType), - }, + { no: 13, name: "pricing_type", kind: "enum", T: proto3.getEnumType(ModelPricingType) }, { no: 4, - name: 'disabled', - kind: 'scalar', - T: 8, + name: "disabled", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 5, - name: 'supports_images', - kind: 'scalar', - T: 8, + name: "supports_images", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 6, - name: 'supports_legacy', - kind: 'scalar', - T: 8, + name: "supports_legacy", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 7, - name: 'is_premium', - kind: 'scalar', - T: 8, + name: "is_premium", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 8, - name: 'beta_warning_message', - kind: 'scalar', - T: 9, + name: "beta_warning_message", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 9, - name: 'is_beta', - kind: 'scalar', - T: 8, + name: "is_beta", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, - { - no: 10, - name: 'provider', - kind: 'enum', - T: proto3.getEnumType(ModelProvider), - }, + { no: 10, name: "provider", kind: "enum", T: proto3.getEnumType(ModelProvider) }, { no: 11, - name: 'is_recommended', - kind: 'scalar', - T: 8, + name: "is_recommended", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, - { - no: 12, - name: 'allowed_tiers', - kind: 'enum', - T: proto3.getEnumType(TeamsTier), - repeated: true, - }, + { no: 12, name: "allowed_tiers", kind: "enum", T: proto3.getEnumType(TeamsTier), repeated: true }, { no: 14, - name: 'description', - kind: 'scalar', - T: 9, + name: "description", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 15, name: 'quota_info', kind: 'message', T: QuotaInfo }, + { no: 15, name: "quota_info", kind: "message", T: QuotaInfo }, { no: 16, - name: 'tag_title', - kind: 'scalar', - T: 9, + name: "tag_title", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 17, - name: 'tag_description', - kind: 'scalar', - T: 9, + name: "tag_description", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { - no: 18, - name: 'supported_mime_types', - kind: 'map', - K: 9, - V: { - kind: 'scalar', - T: 8, - /* ScalarType.BOOL */ - }, - }, + { no: 18, name: "supported_mime_types", kind: "map", K: 9, V: { + kind: "scalar", + T: 8 + /* ScalarType.BOOL */ + } } ]); static fromBinary(bytes, options) { return new _ClientModelConfig().fromBinary(bytes, options); @@ -13863,22 +11768,22 @@ var DefaultOverrideModelConfig = class _DefaultOverrideModelConfig extends Messa * * @generated from field: string version_id = 2; */ - versionId = ''; + versionId = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.DefaultOverrideModelConfig'; + static typeName = "exa.codeium_common_pb.DefaultOverrideModelConfig"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'model_or_alias', kind: 'message', T: ModelOrAlias }, + { no: 1, name: "model_or_alias", kind: "message", T: ModelOrAlias }, { no: 2, - name: 'version_id', - kind: 'scalar', - T: 9, + name: "version_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _DefaultOverrideModelConfig().fromBinary(bytes, options); @@ -13887,10 +11792,7 @@ var DefaultOverrideModelConfig = class _DefaultOverrideModelConfig extends Messa return new _DefaultOverrideModelConfig().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _DefaultOverrideModelConfig().fromJsonString( - jsonString, - options, - ); + return new _DefaultOverrideModelConfig().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_DefaultOverrideModelConfig, a, b); @@ -13903,7 +11805,7 @@ var ClientModelSort = class _ClientModelSort extends Message { * * @generated from field: string name = 1; */ - name = ''; + name = ""; /** * Groups of models within this sort. * @@ -13915,22 +11817,16 @@ var ClientModelSort = class _ClientModelSort extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.ClientModelSort'; + static typeName = "exa.codeium_common_pb.ClientModelSort"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'name', - kind: 'scalar', - T: 9, + name: "name", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { - no: 2, - name: 'groups', - kind: 'message', - T: ClientModelGroup, - repeated: true, - }, + { no: 2, name: "groups", kind: "message", T: ClientModelGroup, repeated: true } ]); static fromBinary(bytes, options) { return new _ClientModelSort().fromBinary(bytes, options); @@ -13952,7 +11848,7 @@ var ClientModelGroup = class _ClientModelGroup extends Message { * * @generated from field: string group_name = 1; */ - groupName = ''; + groupName = ""; /** * List of model labels in this group. * @@ -13964,16 +11860,16 @@ var ClientModelGroup = class _ClientModelGroup extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.ClientModelGroup'; + static typeName = "exa.codeium_common_pb.ClientModelGroup"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'group_name', - kind: 'scalar', - T: 9, + name: "group_name", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 2, name: 'model_labels', kind: 'scalar', T: 9, repeated: true }, + { no: 2, name: "model_labels", kind: "scalar", T: 9, repeated: true } ]); static fromBinary(bytes, options) { return new _ClientModelGroup().fromBinary(bytes, options); @@ -14006,29 +11902,11 @@ var CascadeModelConfigData = class _CascadeModelConfigData extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.CascadeModelConfigData'; + static typeName = "exa.codeium_common_pb.CascadeModelConfigData"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'client_model_configs', - kind: 'message', - T: ClientModelConfig, - repeated: true, - }, - { - no: 2, - name: 'client_model_sorts', - kind: 'message', - T: ClientModelSort, - repeated: true, - }, - { - no: 3, - name: 'default_override_model_config', - kind: 'message', - T: DefaultOverrideModelConfig, - opt: true, - }, + { no: 1, name: "client_model_configs", kind: "message", T: ClientModelConfig, repeated: true }, + { no: 2, name: "client_model_sorts", kind: "message", T: ClientModelSort, repeated: true }, + { no: 3, name: "default_override_model_config", kind: "message", T: DefaultOverrideModelConfig, opt: true } ]); static fromBinary(bytes, options) { return new _CascadeModelConfigData().fromBinary(bytes, options); @@ -14057,16 +11935,16 @@ var AllowedModelConfig = class _AllowedModelConfig extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.AllowedModelConfig'; + static typeName = "exa.codeium_common_pb.AllowedModelConfig"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'model_or_alias', kind: 'message', T: ModelOrAlias }, + { no: 1, name: "model_or_alias", kind: "message", T: ModelOrAlias }, { no: 2, - name: 'credit_multiplier', - kind: 'scalar', - T: 2, + name: "credit_multiplier", + kind: "scalar", + T: 2 /* ScalarType.FLOAT */ - }, + } ]); static fromBinary(bytes, options) { return new _AllowedModelConfig().fromBinary(bytes, options); @@ -14093,7 +11971,7 @@ var PlanInfo = class _PlanInfo extends Message { * * @generated from field: string plan_name = 2; */ - planName = ''; + planName = ""; /** * Boolean feature gates * @@ -14257,218 +12135,201 @@ var PlanInfo = class _PlanInfo extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.PlanInfo'; + static typeName = "exa.codeium_common_pb.PlanInfo"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'teams_tier', - kind: 'enum', - T: proto3.getEnumType(TeamsTier), - }, + { no: 1, name: "teams_tier", kind: "enum", T: proto3.getEnumType(TeamsTier) }, { no: 2, - name: 'plan_name', - kind: 'scalar', - T: 9, + name: "plan_name", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 3, - name: 'has_autocomplete_fast_mode', - kind: 'scalar', - T: 8, + name: "has_autocomplete_fast_mode", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 4, - name: 'allow_sticky_premium_models', - kind: 'scalar', - T: 8, + name: "allow_sticky_premium_models", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 5, - name: 'has_forge_access', - kind: 'scalar', - T: 8, + name: "has_forge_access", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 11, - name: 'disable_code_snippet_telemetry', - kind: 'scalar', - T: 8, + name: "disable_code_snippet_telemetry", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 15, - name: 'allow_premium_command_models', - kind: 'scalar', - T: 8, + name: "allow_premium_command_models", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 23, - name: 'has_tab_to_jump', - kind: 'scalar', - T: 8, + name: "has_tab_to_jump", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 6, - name: 'max_num_premium_chat_messages', - kind: 'scalar', - T: 3, + name: "max_num_premium_chat_messages", + kind: "scalar", + T: 3 /* ScalarType.INT64 */ }, { no: 7, - name: 'max_num_chat_input_tokens', - kind: 'scalar', - T: 3, + name: "max_num_chat_input_tokens", + kind: "scalar", + T: 3 /* ScalarType.INT64 */ }, { no: 8, - name: 'max_custom_chat_instruction_characters', - kind: 'scalar', - T: 3, + name: "max_custom_chat_instruction_characters", + kind: "scalar", + T: 3 /* ScalarType.INT64 */ }, { no: 9, - name: 'max_num_pinned_context_items', - kind: 'scalar', - T: 3, + name: "max_num_pinned_context_items", + kind: "scalar", + T: 3 /* ScalarType.INT64 */ }, { no: 10, - name: 'max_local_index_size', - kind: 'scalar', - T: 3, + name: "max_local_index_size", + kind: "scalar", + T: 3 /* ScalarType.INT64 */ }, { no: 26, - name: 'max_unclaimed_sites', - kind: 'scalar', - T: 5, + name: "max_unclaimed_sites", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, { no: 12, - name: 'monthly_prompt_credits', - kind: 'scalar', - T: 5, + name: "monthly_prompt_credits", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, { no: 13, - name: 'monthly_flow_credits', - kind: 'scalar', - T: 5, + name: "monthly_flow_credits", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, { no: 14, - name: 'monthly_flex_credit_purchase_amount', - kind: 'scalar', - T: 5, + name: "monthly_flex_credit_purchase_amount", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, { no: 17, - name: 'is_teams', - kind: 'scalar', - T: 8, + name: "is_teams", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 16, - name: 'is_enterprise', - kind: 'scalar', - T: 8, + name: "is_enterprise", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 18, - name: 'can_buy_more_credits', - kind: 'scalar', - T: 8, + name: "can_buy_more_credits", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 19, - name: 'cascade_web_search_enabled', - kind: 'scalar', - T: 8, + name: "cascade_web_search_enabled", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 20, - name: 'can_customize_app_icon', - kind: 'scalar', - T: 8, + name: "can_customize_app_icon", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 22, - name: 'cascade_can_auto_run_commands', - kind: 'scalar', - T: 8, + name: "cascade_can_auto_run_commands", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 25, - name: 'can_generate_commit_messages', - kind: 'scalar', - T: 8, + name: "can_generate_commit_messages", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 27, - name: 'knowledge_base_enabled', - kind: 'scalar', - T: 8, + name: "knowledge_base_enabled", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, - { - no: 21, - name: 'cascade_allowed_models_config', - kind: 'message', - T: AllowedModelConfig, - repeated: true, - }, - { no: 24, name: 'default_team_config', kind: 'message', T: TeamConfig }, + { no: 21, name: "cascade_allowed_models_config", kind: "message", T: AllowedModelConfig, repeated: true }, + { no: 24, name: "default_team_config", kind: "message", T: TeamConfig }, { no: 28, - name: 'can_share_conversations', - kind: 'scalar', - T: 8, + name: "can_share_conversations", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 29, - name: 'can_allow_cascade_in_background', - kind: 'scalar', - T: 8, + name: "can_allow_cascade_in_background", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, - { - no: 30, - name: 'default_team_features', - kind: 'map', - K: 5, - V: { kind: 'message', T: TeamsFeaturesMetadata }, - }, + { no: 30, name: "default_team_features", kind: "map", K: 5, V: { kind: "message", T: TeamsFeaturesMetadata } }, { no: 31, - name: 'browser_enabled', - kind: 'scalar', - T: 8, + name: "browser_enabled", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ - }, + } ]); static fromBinary(bytes, options) { return new _PlanInfo().fromBinary(bytes, options); @@ -14513,49 +12374,44 @@ var TopUpStatus = class _TopUpStatus extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.TopUpStatus'; + static typeName = "exa.codeium_common_pb.TopUpStatus"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'top_up_transaction_status', - kind: 'enum', - T: proto3.getEnumType(TransactionStatus), - }, + { no: 1, name: "top_up_transaction_status", kind: "enum", T: proto3.getEnumType(TransactionStatus) }, { no: 2, - name: 'top_up_enabled', - kind: 'scalar', - T: 8, + name: "top_up_enabled", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 3, - name: 'monthly_top_up_amount', - kind: 'scalar', - T: 5, + name: "monthly_top_up_amount", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, { no: 4, - name: 'top_up_spent', - kind: 'scalar', - T: 5, + name: "top_up_spent", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, { no: 5, - name: 'top_up_increment', - kind: 'scalar', - T: 5, + name: "top_up_increment", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, { no: 6, - name: 'top_up_criteria_met', - kind: 'scalar', - T: 8, + name: "top_up_criteria_met", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ - }, + } ]); static fromBinary(bytes, options) { return new _TopUpStatus().fromBinary(bytes, options); @@ -14620,54 +12476,54 @@ var PlanStatus = class _PlanStatus extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.PlanStatus'; + static typeName = "exa.codeium_common_pb.PlanStatus"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'plan_info', kind: 'message', T: PlanInfo }, - { no: 2, name: 'plan_start', kind: 'message', T: Timestamp }, - { no: 3, name: 'plan_end', kind: 'message', T: Timestamp }, + { no: 1, name: "plan_info", kind: "message", T: PlanInfo }, + { no: 2, name: "plan_start", kind: "message", T: Timestamp }, + { no: 3, name: "plan_end", kind: "message", T: Timestamp }, { no: 8, - name: 'available_prompt_credits', - kind: 'scalar', - T: 5, + name: "available_prompt_credits", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, { no: 9, - name: 'available_flow_credits', - kind: 'scalar', - T: 5, + name: "available_flow_credits", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, { no: 4, - name: 'available_flex_credits', - kind: 'scalar', - T: 5, + name: "available_flex_credits", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, { no: 7, - name: 'used_flex_credits', - kind: 'scalar', - T: 5, + name: "used_flex_credits", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, { no: 5, - name: 'used_flow_credits', - kind: 'scalar', - T: 5, + name: "used_flow_credits", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, { no: 6, - name: 'used_prompt_credits', - kind: 'scalar', - T: 5, + name: "used_prompt_credits", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, - { no: 10, name: 'top_up_status', kind: 'message', T: TopUpStatus }, + { no: 10, name: "top_up_status", kind: "message", T: TopUpStatus } ]); static fromBinary(bytes, options) { return new _PlanStatus().fromBinary(bytes, options); @@ -14697,7 +12553,7 @@ var UserStatus = class _UserStatus extends Message { /** * @generated from field: string name = 3; */ - name = ''; + name = ""; /** * @generated from field: bool ignore_chat_telemetry_setting = 4; */ @@ -14709,7 +12565,7 @@ var UserStatus = class _UserStatus extends Message { * * @generated from field: string team_id = 5; */ - teamId = ''; + teamId = ""; /** * @generated from field: exa.codeium_common_pb.UserTeamStatus team_status = 6; */ @@ -14717,7 +12573,7 @@ var UserStatus = class _UserStatus extends Message { /** * @generated from field: string email = 7; */ - email = ''; + email = ""; /** * @generated from field: repeated exa.codeium_common_pb.UserFeatures user_features = 9; */ @@ -14783,7 +12639,7 @@ var UserStatus = class _UserStatus extends Message { * @generated from field: string g1_tier = 35 [deprecated = true]; * @deprecated */ - g1Tier = ''; + g1Tier = ""; /** * The Google UserTier object from onboarding.proto * @@ -14801,136 +12657,108 @@ var UserStatus = class _UserStatus extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.UserStatus'; + static typeName = "exa.codeium_common_pb.UserStatus"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'pro', - kind: 'scalar', - T: 8, + name: "pro", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 2, - name: 'disable_telemetry', - kind: 'scalar', - T: 8, + name: "disable_telemetry", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 3, - name: 'name', - kind: 'scalar', - T: 9, + name: "name", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 4, - name: 'ignore_chat_telemetry_setting', - kind: 'scalar', - T: 8, + name: "ignore_chat_telemetry_setting", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 5, - name: 'team_id', - kind: 'scalar', - T: 9, + name: "team_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { - no: 6, - name: 'team_status', - kind: 'enum', - T: proto3.getEnumType(UserTeamStatus), - }, + { no: 6, name: "team_status", kind: "enum", T: proto3.getEnumType(UserTeamStatus) }, { no: 7, - name: 'email', - kind: 'scalar', - T: 9, + name: "email", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { - no: 9, - name: 'user_features', - kind: 'enum', - T: proto3.getEnumType(UserFeatures), - repeated: true, - }, - { - no: 8, - name: 'teams_features', - kind: 'enum', - T: proto3.getEnumType(TeamsFeatures), - repeated: true, - }, - { - no: 11, - name: 'permissions', - kind: 'enum', - T: proto3.getEnumType(Permission), - repeated: true, - }, - { no: 12, name: 'plan_info', kind: 'message', T: PlanInfo }, - { no: 13, name: 'plan_status', kind: 'message', T: PlanStatus }, + { no: 9, name: "user_features", kind: "enum", T: proto3.getEnumType(UserFeatures), repeated: true }, + { no: 8, name: "teams_features", kind: "enum", T: proto3.getEnumType(TeamsFeatures), repeated: true }, + { no: 11, name: "permissions", kind: "enum", T: proto3.getEnumType(Permission), repeated: true }, + { no: 12, name: "plan_info", kind: "message", T: PlanInfo }, + { no: 13, name: "plan_status", kind: "message", T: PlanStatus }, { no: 31, - name: 'has_used_antigravity', - kind: 'scalar', - T: 8, + name: "has_used_antigravity", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 28, - name: 'user_used_prompt_credits', - kind: 'scalar', - T: 3, + name: "user_used_prompt_credits", + kind: "scalar", + T: 3 /* ScalarType.INT64 */ }, { no: 29, - name: 'user_used_flow_credits', - kind: 'scalar', - T: 3, + name: "user_used_flow_credits", + kind: "scalar", + T: 3 /* ScalarType.INT64 */ }, { no: 30, - name: 'has_fingerprint_set', - kind: 'scalar', - T: 8, + name: "has_fingerprint_set", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, - { no: 32, name: 'team_config', kind: 'message', T: TeamConfig }, - { - no: 33, - name: 'cascade_model_config_data', - kind: 'message', - T: CascadeModelConfigData, - }, + { no: 32, name: "team_config", kind: "message", T: TeamConfig }, + { no: 33, name: "cascade_model_config_data", kind: "message", T: CascadeModelConfigData }, { no: 34, - name: 'accepted_latest_terms_of_service', - kind: 'scalar', - T: 8, + name: "accepted_latest_terms_of_service", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 35, - name: 'g1_tier', - kind: 'scalar', - T: 9, + name: "g1_tier", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 36, name: 'user_tier', kind: 'message', T: UserTier }, + { no: 36, name: "user_tier", kind: "message", T: UserTier }, { no: 37, - name: 'user_data_collection_force_disabled', - kind: 'scalar', - T: 8, + name: "user_data_collection_force_disabled", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ - }, + } ]); static fromBinary(bytes, options) { return new _UserStatus().fromBinary(bytes, options); @@ -14955,16 +12783,10 @@ var ScmWorkspaceInfo = class _ScmWorkspaceInfo extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.ScmWorkspaceInfo'; + static typeName = "exa.codeium_common_pb.ScmWorkspaceInfo"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'perforce_info', - kind: 'message', - T: PerforceDepotInfo, - oneof: 'info', - }, - { no: 2, name: 'git_info', kind: 'message', T: GitRepoInfo, oneof: 'info' }, + { no: 1, name: "perforce_info", kind: "message", T: PerforceDepotInfo, oneof: "info" }, + { no: 2, name: "git_info", kind: "message", T: GitRepoInfo, oneof: "info" } ]); static fromBinary(bytes, options) { return new _ScmWorkspaceInfo().fromBinary(bytes, options); @@ -14985,47 +12807,47 @@ var PerforceDepotInfo = class _PerforceDepotInfo extends Message { * * @generated from field: string depot_name = 1; */ - depotName = ''; + depotName = ""; /** * Optional name to identify the version of this repo. * * @generated from field: string version_alias = 2; */ - versionAlias = ''; + versionAlias = ""; /** * e.g p4d://host:port * * @generated from field: string base_p4d_url = 3; */ - baseP4dUrl = ''; + baseP4dUrl = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.PerforceDepotInfo'; + static typeName = "exa.codeium_common_pb.PerforceDepotInfo"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'depot_name', - kind: 'scalar', - T: 9, + name: "depot_name", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'version_alias', - kind: 'scalar', - T: 9, + name: "version_alias", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 3, - name: 'base_p4d_url', - kind: 'scalar', - T: 9, + name: "base_p4d_url", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _PerforceDepotInfo().fromBinary(bytes, options); @@ -15046,27 +12868,27 @@ var GitRepoInfo = class _GitRepoInfo extends Message { * * @generated from field: string name = 1; */ - name = ''; + name = ""; /** * @generated from field: string owner = 2; */ - owner = ''; + owner = ""; /** * Unique name of the repository, commonly owner/name. * * @generated from field: string repo_name = 5; */ - repoName = ''; + repoName = ""; /** * @generated from field: string commit = 3; */ - commit = ''; + commit = ""; /** * Optional name to identify the version of this repo. * * @generated from field: string version_alias = 4; */ - versionAlias = ''; + versionAlias = ""; /** * @generated from field: exa.codeium_common_pb.ScmProvider scm_provider = 6; */ @@ -15076,62 +12898,57 @@ var GitRepoInfo = class _GitRepoInfo extends Message { * * @generated from field: string base_git_url = 7; */ - baseGitUrl = ''; + baseGitUrl = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.GitRepoInfo'; + static typeName = "exa.codeium_common_pb.GitRepoInfo"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'name', - kind: 'scalar', - T: 9, + name: "name", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'owner', - kind: 'scalar', - T: 9, + name: "owner", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 5, - name: 'repo_name', - kind: 'scalar', - T: 9, + name: "repo_name", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 3, - name: 'commit', - kind: 'scalar', - T: 9, + name: "commit", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 4, - name: 'version_alias', - kind: 'scalar', - T: 9, + name: "version_alias", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { - no: 6, - name: 'scm_provider', - kind: 'enum', - T: proto3.getEnumType(ScmProvider), - }, + { no: 6, name: "scm_provider", kind: "enum", T: proto3.getEnumType(ScmProvider) }, { no: 7, - name: 'base_git_url', - kind: 'scalar', - T: 9, + name: "base_git_url", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _GitRepoInfo().fromBinary(bytes, options); @@ -15153,11 +12970,11 @@ var CodeContextItem = class _CodeContextItem extends Message { * @generated from field: string absolute_path_migrate_me_to_uri = 1 [deprecated = true]; * @deprecated */ - absolutePathMigrateMeToUri = ''; + absolutePathMigrateMeToUri = ""; /** * @generated from field: string absolute_uri = 16; */ - absoluteUri = ''; + absoluteUri = ""; /** * Path relative to workspace roots. CodeContextItem may not always be within * a workspace. @@ -15170,7 +12987,7 @@ var CodeContextItem = class _CodeContextItem extends Message { * * @generated from field: string node_name = 3; */ - nodeName = ''; + nodeName = ""; /** * List of parent nodes in descending order. * @@ -15238,87 +13055,70 @@ var CodeContextItem = class _CodeContextItem extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.CodeContextItem'; + static typeName = "exa.codeium_common_pb.CodeContextItem"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'absolute_path_migrate_me_to_uri', - kind: 'scalar', - T: 9, + name: "absolute_path_migrate_me_to_uri", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 16, - name: 'absolute_uri', - kind: 'scalar', - T: 9, + name: "absolute_uri", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { - no: 2, - name: 'workspace_paths', - kind: 'message', - T: WorkspacePath, - repeated: true, - }, + { no: 2, name: "workspace_paths", kind: "message", T: WorkspacePath, repeated: true }, { no: 3, - name: 'node_name', - kind: 'scalar', - T: 9, + name: "node_name", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 4, name: 'node_lineage', kind: 'scalar', T: 9, repeated: true }, + { no: 4, name: "node_lineage", kind: "scalar", T: 9, repeated: true }, { no: 5, - name: 'start_line', - kind: 'scalar', - T: 13, + name: "start_line", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, { no: 12, - name: 'start_col', - kind: 'scalar', - T: 13, + name: "start_col", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, { no: 6, - name: 'end_line', - kind: 'scalar', - T: 13, + name: "end_line", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, { no: 13, - name: 'end_col', - kind: 'scalar', - T: 13, + name: "end_col", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, - { - no: 7, - name: 'context_type', - kind: 'enum', - T: proto3.getEnumType(CodeContextType), - }, - { no: 10, name: 'language', kind: 'enum', T: proto3.getEnumType(Language) }, - { - no: 11, - name: 'snippet_by_type', - kind: 'map', - K: 9, - V: { kind: 'message', T: SnippetWithWordCount }, - }, - { no: 14, name: 'repo_info', kind: 'message', T: GitRepoInfo }, + { no: 7, name: "context_type", kind: "enum", T: proto3.getEnumType(CodeContextType) }, + { no: 10, name: "language", kind: "enum", T: proto3.getEnumType(Language) }, + { no: 11, name: "snippet_by_type", kind: "map", K: 9, V: { kind: "message", T: SnippetWithWordCount } }, + { no: 14, name: "repo_info", kind: "message", T: GitRepoInfo }, { no: 15, - name: 'file_content_hash', - kind: 'scalar', - T: 12, + name: "file_content_hash", + kind: "scalar", + T: 12 /* ScalarType.BYTES */ - }, + } ]); static fromBinary(bytes, options) { return new _CodeContextItem().fromBinary(bytes, options); @@ -15337,7 +13137,7 @@ var SnippetWithWordCount = class _SnippetWithWordCount extends Message { /** * @generated from field: string snippet = 1; */ - snippet = ''; + snippet = ""; /** * There is one word count per Word Splitter type, where a Word Splitter is a * particular algorithm for breaking a string into "words". @@ -15350,22 +13150,16 @@ var SnippetWithWordCount = class _SnippetWithWordCount extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.SnippetWithWordCount'; + static typeName = "exa.codeium_common_pb.SnippetWithWordCount"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'snippet', - kind: 'scalar', - T: 9, + name: "snippet", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { - no: 2, - name: 'word_count_by_splitter', - kind: 'map', - K: 9, - V: { kind: 'message', T: WordCount }, - }, + { no: 2, name: "word_count_by_splitter", kind: "map", K: 9, V: { kind: "message", T: WordCount } } ]); static fromBinary(bytes, options) { return new _SnippetWithWordCount().fromBinary(bytes, options); @@ -15390,19 +13184,13 @@ var WordCount = class _WordCount extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.WordCount'; + static typeName = "exa.codeium_common_pb.WordCount"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'word_count_map', - kind: 'map', - K: 9, - V: { - kind: 'scalar', - T: 3, - /* ScalarType.INT64 */ - }, - }, + { no: 1, name: "word_count_map", kind: "map", K: 9, V: { + kind: "scalar", + T: 3 + /* ScalarType.INT64 */ + } } ]); static fromBinary(bytes, options) { return new _WordCount().fromBinary(bytes, options); @@ -15421,87 +13209,87 @@ var Repository = class _Repository extends Message { /** * @generated from field: string computed_name = 1; */ - computedName = ''; + computedName = ""; /** * @generated from field: string git_origin_url = 2; */ - gitOriginUrl = ''; + gitOriginUrl = ""; /** * @generated from field: string git_upstream_url = 3; */ - gitUpstreamUrl = ''; + gitUpstreamUrl = ""; /** * @generated from field: string reported_name = 4; */ - reportedName = ''; + reportedName = ""; /** * @generated from field: string model_name = 5; */ - modelName = ''; + modelName = ""; /** * @generated from field: string submodule_url = 6; */ - submoduleUrl = ''; + submoduleUrl = ""; /** * @generated from field: string submodule_path = 7; */ - submodulePath = ''; + submodulePath = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.Repository'; + static typeName = "exa.codeium_common_pb.Repository"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'computed_name', - kind: 'scalar', - T: 9, + name: "computed_name", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'git_origin_url', - kind: 'scalar', - T: 9, + name: "git_origin_url", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 3, - name: 'git_upstream_url', - kind: 'scalar', - T: 9, + name: "git_upstream_url", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 4, - name: 'reported_name', - kind: 'scalar', - T: 9, + name: "reported_name", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 5, - name: 'model_name', - kind: 'scalar', - T: 9, + name: "model_name", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 6, - name: 'submodule_url', - kind: 'scalar', - T: 9, + name: "submodule_url", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 7, - name: 'submodule_path', - kind: 'scalar', - T: 9, + name: "submodule_path", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _Repository().fromBinary(bytes, options); @@ -15524,21 +13312,21 @@ var CaptureFileRequestData = class _CaptureFileRequestData extends Message { /** * @generated from field: string prompt_id = 2; */ - promptId = ''; + promptId = ""; /** * absolute file path. * * @generated from field: string file_path = 3; */ - filePath = ''; + filePath = ""; /** * @generated from field: string original_file_content = 4; */ - originalFileContent = ''; + originalFileContent = ""; /** * @generated from field: string completion_text = 5; */ - completionText = ''; + completionText = ""; /** * start of replacement range for completion (measured in bytes). * @@ -15568,65 +13356,65 @@ var CaptureFileRequestData = class _CaptureFileRequestData extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.CaptureFileRequestData'; + static typeName = "exa.codeium_common_pb.CaptureFileRequestData"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'metadata', kind: 'message', T: Metadata }, + { no: 1, name: "metadata", kind: "message", T: Metadata }, { no: 2, - name: 'prompt_id', - kind: 'scalar', - T: 9, + name: "prompt_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 3, - name: 'file_path', - kind: 'scalar', - T: 9, + name: "file_path", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 4, - name: 'original_file_content', - kind: 'scalar', - T: 9, + name: "original_file_content", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 5, - name: 'completion_text', - kind: 'scalar', - T: 9, + name: "completion_text", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 6, - name: 'start_offset', - kind: 'scalar', - T: 4, + name: "start_offset", + kind: "scalar", + T: 4 /* ScalarType.UINT64 */ }, { no: 7, - name: 'end_offset', - kind: 'scalar', - T: 4, + name: "end_offset", + kind: "scalar", + T: 4 /* ScalarType.UINT64 */ }, { no: 8, - name: 'cursor_line', - kind: 'scalar', - T: 4, + name: "cursor_line", + kind: "scalar", + T: 4 /* ScalarType.UINT64 */ }, { no: 9, - name: 'cursor_column', - kind: 'scalar', - T: 4, + name: "cursor_column", + kind: "scalar", + T: 4 /* ScalarType.UINT64 */ - }, + } ]); static fromBinary(bytes, options) { return new _CaptureFileRequestData().fromBinary(bytes, options); @@ -15681,57 +13469,57 @@ var CompletionStatistics = class _CompletionStatistics extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.CompletionStatistics'; + static typeName = "exa.codeium_common_pb.CompletionStatistics"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'num_acceptances', - kind: 'scalar', - T: 13, + name: "num_acceptances", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, { no: 2, - name: 'num_rejections', - kind: 'scalar', - T: 13, + name: "num_rejections", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, { no: 3, - name: 'num_lines_accepted', - kind: 'scalar', - T: 13, + name: "num_lines_accepted", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, { no: 4, - name: 'num_bytes_accepted', - kind: 'scalar', - T: 13, + name: "num_bytes_accepted", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, { no: 5, - name: 'num_users', - kind: 'scalar', - T: 13, + name: "num_users", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, { no: 6, - name: 'active_developer_days', - kind: 'scalar', - T: 13, + name: "active_developer_days", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, { no: 7, - name: 'active_developer_hours', - kind: 'scalar', - T: 13, + name: "active_developer_hours", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ - }, + } ]); static fromBinary(bytes, options) { return new _CompletionStatistics().fromBinary(bytes, options); @@ -15760,15 +13548,10 @@ var CompletionByDateEntry = class _CompletionByDateEntry extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.CompletionByDateEntry'; + static typeName = "exa.codeium_common_pb.CompletionByDateEntry"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'timestamp', kind: 'message', T: Timestamp }, - { - no: 2, - name: 'completion_statistics', - kind: 'message', - T: CompletionStatistics, - }, + { no: 1, name: "timestamp", kind: "message", T: Timestamp }, + { no: 2, name: "completion_statistics", kind: "message", T: CompletionStatistics } ]); static fromBinary(bytes, options) { return new _CompletionByDateEntry().fromBinary(bytes, options); @@ -15797,15 +13580,10 @@ var CompletionByLanguageEntry = class _CompletionByLanguageEntry extends Message proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.CompletionByLanguageEntry'; + static typeName = "exa.codeium_common_pb.CompletionByLanguageEntry"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'language', kind: 'enum', T: proto3.getEnumType(Language) }, - { - no: 2, - name: 'completion_statistics', - kind: 'message', - T: CompletionStatistics, - }, + { no: 1, name: "language", kind: "enum", T: proto3.getEnumType(Language) }, + { no: 2, name: "completion_statistics", kind: "message", T: CompletionStatistics } ]); static fromBinary(bytes, options) { return new _CompletionByLanguageEntry().fromBinary(bytes, options); @@ -15891,113 +13669,113 @@ var ChatStats = class _ChatStats extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.ChatStats'; + static typeName = "exa.codeium_common_pb.ChatStats"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'chats_sent', - kind: 'scalar', - T: 4, + name: "chats_sent", + kind: "scalar", + T: 4 /* ScalarType.UINT64 */ }, { no: 2, - name: 'chats_received', - kind: 'scalar', - T: 4, + name: "chats_received", + kind: "scalar", + T: 4 /* ScalarType.UINT64 */ }, { no: 3, - name: 'chats_accepted', - kind: 'scalar', - T: 4, + name: "chats_accepted", + kind: "scalar", + T: 4 /* ScalarType.UINT64 */ }, { no: 4, - name: 'chats_inserted_at_cursor', - kind: 'scalar', - T: 4, + name: "chats_inserted_at_cursor", + kind: "scalar", + T: 4 /* ScalarType.UINT64 */ }, { no: 5, - name: 'chats_applied', - kind: 'scalar', - T: 4, + name: "chats_applied", + kind: "scalar", + T: 4 /* ScalarType.UINT64 */ }, { no: 6, - name: 'chat_loc_used', - kind: 'scalar', - T: 4, + name: "chat_loc_used", + kind: "scalar", + T: 4 /* ScalarType.UINT64 */ }, { no: 7, - name: 'chat_code_blocks_used', - kind: 'scalar', - T: 4, + name: "chat_code_blocks_used", + kind: "scalar", + T: 4 /* ScalarType.UINT64 */ }, { no: 8, - name: 'function_explain_count', - kind: 'scalar', - T: 4, + name: "function_explain_count", + kind: "scalar", + T: 4 /* ScalarType.UINT64 */ }, { no: 9, - name: 'function_docstring_count', - kind: 'scalar', - T: 4, + name: "function_docstring_count", + kind: "scalar", + T: 4 /* ScalarType.UINT64 */ }, { no: 10, - name: 'function_refactor_count', - kind: 'scalar', - T: 4, + name: "function_refactor_count", + kind: "scalar", + T: 4 /* ScalarType.UINT64 */ }, { no: 11, - name: 'code_block_explain_count', - kind: 'scalar', - T: 4, + name: "code_block_explain_count", + kind: "scalar", + T: 4 /* ScalarType.UINT64 */ }, { no: 12, - name: 'code_block_refactor_count', - kind: 'scalar', - T: 4, + name: "code_block_refactor_count", + kind: "scalar", + T: 4 /* ScalarType.UINT64 */ }, { no: 13, - name: 'problem_explain_count', - kind: 'scalar', - T: 4, + name: "problem_explain_count", + kind: "scalar", + T: 4 /* ScalarType.UINT64 */ }, { no: 14, - name: 'function_unit_tests_count', - kind: 'scalar', - T: 4, + name: "function_unit_tests_count", + kind: "scalar", + T: 4 /* ScalarType.UINT64 */ }, { no: 15, - name: 'active_developer_days', - kind: 'scalar', - T: 13, + name: "active_developer_days", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ - }, + } ]); static fromBinary(bytes, options) { return new _ChatStats().fromBinary(bytes, options); @@ -16026,10 +13804,10 @@ var ChatStatsByDateEntry = class _ChatStatsByDateEntry extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.ChatStatsByDateEntry'; + static typeName = "exa.codeium_common_pb.ChatStatsByDateEntry"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'timestamp', kind: 'message', T: Timestamp }, - { no: 2, name: 'chat_stats', kind: 'message', T: ChatStats }, + { no: 1, name: "timestamp", kind: "message", T: Timestamp }, + { no: 2, name: "chat_stats", kind: "message", T: ChatStats } ]); static fromBinary(bytes, options) { return new _ChatStatsByDateEntry().fromBinary(bytes, options); @@ -16058,10 +13836,10 @@ var ChatStatsByModelEntry = class _ChatStatsByModelEntry extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.ChatStatsByModelEntry'; + static typeName = "exa.codeium_common_pb.ChatStatsByModelEntry"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'model_id', kind: 'enum', T: proto3.getEnumType(Model) }, - { no: 2, name: 'chat_stats', kind: 'message', T: ChatStats }, + { no: 1, name: "model_id", kind: "enum", T: proto3.getEnumType(Model) }, + { no: 2, name: "chat_stats", kind: "message", T: ChatStats } ]); static fromBinary(bytes, options) { return new _ChatStatsByModelEntry().fromBinary(bytes, options); @@ -16130,96 +13908,90 @@ var CommandStats = class _CommandStats extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.CommandStats'; + static typeName = "exa.codeium_common_pb.CommandStats"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'num_commands', - kind: 'scalar', - T: 4, + name: "num_commands", + kind: "scalar", + T: 4 /* ScalarType.UINT64 */ }, { no: 2, - name: 'num_commands_accepted', - kind: 'scalar', - T: 4, + name: "num_commands_accepted", + kind: "scalar", + T: 4 /* ScalarType.UINT64 */ }, { no: 3, - name: 'num_commands_rejected', - kind: 'scalar', - T: 4, + name: "num_commands_rejected", + kind: "scalar", + T: 4 /* ScalarType.UINT64 */ }, { no: 4, - name: 'num_edits', - kind: 'scalar', - T: 4, + name: "num_edits", + kind: "scalar", + T: 4 /* ScalarType.UINT64 */ }, { no: 5, - name: 'num_generations', - kind: 'scalar', - T: 4, + name: "num_generations", + kind: "scalar", + T: 4 /* ScalarType.UINT64 */ }, { no: 6, - name: 'loc_added', - kind: 'scalar', - T: 4, + name: "loc_added", + kind: "scalar", + T: 4 /* ScalarType.UINT64 */ }, { no: 7, - name: 'loc_removed', - kind: 'scalar', - T: 4, + name: "loc_removed", + kind: "scalar", + T: 4 /* ScalarType.UINT64 */ }, { no: 8, - name: 'bytes_added', - kind: 'scalar', - T: 4, + name: "bytes_added", + kind: "scalar", + T: 4 /* ScalarType.UINT64 */ }, { no: 9, - name: 'bytes_removed', - kind: 'scalar', - T: 4, + name: "bytes_removed", + kind: "scalar", + T: 4 /* ScalarType.UINT64 */ }, { no: 10, - name: 'loc_selected', - kind: 'scalar', - T: 4, + name: "loc_selected", + kind: "scalar", + T: 4 /* ScalarType.UINT64 */ }, { no: 11, - name: 'bytes_selected', - kind: 'scalar', - T: 4, + name: "bytes_selected", + kind: "scalar", + T: 4 /* ScalarType.UINT64 */ }, - { - no: 12, - name: 'num_commands_by_source', - kind: 'map', - K: 9, - V: { - kind: 'scalar', - T: 4, - /* ScalarType.UINT64 */ - }, - }, + { no: 12, name: "num_commands_by_source", kind: "map", K: 9, V: { + kind: "scalar", + T: 4 + /* ScalarType.UINT64 */ + } } ]); static fromBinary(bytes, options) { return new _CommandStats().fromBinary(bytes, options); @@ -16248,10 +14020,10 @@ var CommandStatsByDateEntry = class _CommandStatsByDateEntry extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.CommandStatsByDateEntry'; + static typeName = "exa.codeium_common_pb.CommandStatsByDateEntry"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'timestamp', kind: 'message', T: Timestamp }, - { no: 2, name: 'command_stats', kind: 'message', T: CommandStats }, + { no: 1, name: "timestamp", kind: "message", T: Timestamp }, + { no: 2, name: "command_stats", kind: "message", T: CommandStats } ]); static fromBinary(bytes, options) { return new _CommandStatsByDateEntry().fromBinary(bytes, options); @@ -16270,11 +14042,11 @@ var UserTableStats = class _UserTableStats extends Message { /** * @generated from field: string name = 1; */ - name = ''; + name = ""; /** * @generated from field: string email = 2; */ - email = ''; + email = ""; /** * @generated from field: google.protobuf.Timestamp last_update_time = 3; */ @@ -16282,7 +14054,7 @@ var UserTableStats = class _UserTableStats extends Message { /** * @generated from field: string api_key = 4; */ - apiKey = ''; + apiKey = ""; /** * @generated from field: bool disable_codeium = 5; */ @@ -16294,7 +14066,7 @@ var UserTableStats = class _UserTableStats extends Message { /** * @generated from field: string role = 7; */ - role = ''; + role = ""; /** * @generated from field: google.protobuf.Timestamp signup_time = 8; */ @@ -16320,67 +14092,62 @@ var UserTableStats = class _UserTableStats extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.UserTableStats'; + static typeName = "exa.codeium_common_pb.UserTableStats"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'name', - kind: 'scalar', - T: 9, + name: "name", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'email', - kind: 'scalar', - T: 9, + name: "email", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 3, name: 'last_update_time', kind: 'message', T: Timestamp }, + { no: 3, name: "last_update_time", kind: "message", T: Timestamp }, { no: 4, - name: 'api_key', - kind: 'scalar', - T: 9, + name: "api_key", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 5, - name: 'disable_codeium', - kind: 'scalar', - T: 8, + name: "disable_codeium", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 6, - name: 'active_days', - kind: 'scalar', - T: 13, + name: "active_days", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, { no: 7, - name: 'role', - kind: 'scalar', - T: 9, + name: "role", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 8, name: 'signup_time', kind: 'message', T: Timestamp }, - { - no: 9, - name: 'last_autocomplete_usage_time', - kind: 'message', - T: Timestamp, - }, - { no: 10, name: 'last_chat_usage_time', kind: 'message', T: Timestamp }, - { no: 11, name: 'last_command_usage_time', kind: 'message', T: Timestamp }, + { no: 8, name: "signup_time", kind: "message", T: Timestamp }, + { no: 9, name: "last_autocomplete_usage_time", kind: "message", T: Timestamp }, + { no: 10, name: "last_chat_usage_time", kind: "message", T: Timestamp }, + { no: 11, name: "last_command_usage_time", kind: "message", T: Timestamp }, { no: 12, - name: 'prompt_credits_used', - kind: 'scalar', - T: 3, + name: "prompt_credits_used", + kind: "scalar", + T: 3 /* ScalarType.INT64 */ - }, + } ]); static fromBinary(bytes, options) { return new _UserTableStats().fromBinary(bytes, options); @@ -16409,15 +14176,10 @@ var CascadeNUXState = class _CascadeNUXState extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.CascadeNUXState'; + static typeName = "exa.codeium_common_pb.CascadeNUXState"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'event', - kind: 'enum', - T: proto3.getEnumType(CascadeNUXEvent), - }, - { no: 2, name: 'timestamp', kind: 'message', T: Timestamp }, + { no: 1, name: "event", kind: "enum", T: proto3.getEnumType(CascadeNUXEvent) }, + { no: 2, name: "timestamp", kind: "message", T: Timestamp } ]); static fromBinary(bytes, options) { return new _CascadeNUXState().fromBinary(bytes, options); @@ -16446,10 +14208,10 @@ var UserNUXState = class _UserNUXState extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.UserNUXState'; + static typeName = "exa.codeium_common_pb.UserNUXState"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'event', kind: 'enum', T: proto3.getEnumType(UserNUXEvent) }, - { no: 2, name: 'timestamp', kind: 'message', T: Timestamp }, + { no: 1, name: "event", kind: "enum", T: proto3.getEnumType(UserNUXEvent) }, + { no: 2, name: "timestamp", kind: "message", T: Timestamp } ]); static fromBinary(bytes, options) { return new _UserNUXState().fromBinary(bytes, options); @@ -16474,9 +14236,9 @@ var ConversationBrainConfig = class _ConversationBrainConfig extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.ConversationBrainConfig'; + static typeName = "exa.codeium_common_pb.ConversationBrainConfig"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'plan_mode', kind: 'enum', T: proto3.getEnumType(PlanMode) }, + { no: 1, name: "plan_mode", kind: "enum", T: proto3.getEnumType(PlanMode) } ]); static fromBinary(bytes, options) { return new _ConversationBrainConfig().fromBinary(bytes, options); @@ -16501,15 +14263,15 @@ var FeatureUsageData = class _FeatureUsageData extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.FeatureUsageData'; + static typeName = "exa.codeium_common_pb.FeatureUsageData"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'has_used', - kind: 'scalar', - T: 8, + name: "has_used", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ - }, + } ]); static fromBinary(bytes, options) { return new _FeatureUsageData().fromBinary(bytes, options); @@ -16550,14 +14312,14 @@ var CascadeNUXConfig = class _CascadeNUXConfig extends Message { * * @generated from field: string analytics_event_name = 4; */ - analyticsEventName = ''; + analyticsEventName = ""; /** * An optional URL to learn more about the NUX. Shown in a little "Learn More" * button. Usually points to antigravity docs. * * @generated from field: string learn_more_url = 7; */ - learnMoreUrl = ''; + learnMoreUrl = ""; /** * Higher for NUXes that will be shown first. Usually should be zero. * @@ -16581,7 +14343,7 @@ var CascadeNUXConfig = class _CascadeNUXConfig extends Message { * * @generated from field: string title = 12; */ - title = ''; + title = ""; /** * Body of the NUX. * @@ -16605,71 +14367,56 @@ var CascadeNUXConfig = class _CascadeNUXConfig extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.CascadeNUXConfig'; + static typeName = "exa.codeium_common_pb.CascadeNUXConfig"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'uid', - kind: 'scalar', - T: 13, + name: "uid", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, - { - no: 2, - name: 'location', - kind: 'enum', - T: proto3.getEnumType(CascadeNUXLocation), - }, - { - no: 3, - name: 'trigger', - kind: 'enum', - T: proto3.getEnumType(CascadeNUXTrigger), - }, + { no: 2, name: "location", kind: "enum", T: proto3.getEnumType(CascadeNUXLocation) }, + { no: 3, name: "trigger", kind: "enum", T: proto3.getEnumType(CascadeNUXTrigger) }, { no: 4, - name: 'analytics_event_name', - kind: 'scalar', - T: 9, + name: "analytics_event_name", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 7, - name: 'learn_more_url', - kind: 'scalar', - T: 9, + name: "learn_more_url", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 8, - name: 'priority', - kind: 'scalar', - T: 5, + name: "priority", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, - { - no: 10, - name: 'icon', - kind: 'enum', - T: proto3.getEnumType(CascadeNUXIcon), - }, + { no: 10, name: "icon", kind: "enum", T: proto3.getEnumType(CascadeNUXIcon) }, { no: 11, - name: 'requires_idle_cascade', - kind: 'scalar', - T: 8, + name: "requires_idle_cascade", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 12, - name: 'title', - kind: 'scalar', - T: 9, + name: "title", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 13, name: 'body', kind: 'scalar', T: 9, opt: true }, - { no: 14, name: 'image_url', kind: 'scalar', T: 9, opt: true }, - { no: 15, name: 'video_url', kind: 'scalar', T: 9, opt: true }, + { no: 13, name: "body", kind: "scalar", T: 9, opt: true }, + { no: 14, name: "image_url", kind: "scalar", T: 9, opt: true }, + { no: 15, name: "video_url", kind: "scalar", T: 9, opt: true } ]); static fromBinary(bytes, options) { return new _CascadeNUXConfig().fromBinary(bytes, options); @@ -16735,7 +14482,7 @@ var UserSettings = class _UserSettings extends Message { * @generated from field: string last_selected_model_name = 8 [deprecated = true]; * @deprecated */ - lastSelectedModelName = ''; + lastSelectedModelName = ""; /** * Cascade Settings that should be set only in the CascadePanel. * They are set to optional so that the extension settings don't overwrite @@ -17063,8 +14810,7 @@ var UserSettings = class _UserSettings extends Message { * * @generated from field: exa.codeium_common_pb.AutoContinueOnMaxGeneratorInvocations auto_continue_on_max_generator_invocations = 59; */ - autoContinueOnMaxGeneratorInvocations = - AutoContinueOnMaxGeneratorInvocations.UNSPECIFIED; + autoContinueOnMaxGeneratorInvocations = AutoContinueOnMaxGeneratorInvocations.UNSPECIFIED; /** * List of recently used cascade models (LRU order, max 3 items) * Deprecated: Essentially unused @@ -17145,7 +14891,7 @@ var UserSettings = class _UserSettings extends Message { * @generated from field: string browser_chrome_path = 76 [deprecated = true]; * @deprecated */ - browserChromePath = ''; + browserChromePath = ""; /** * Custom path for the browser user profile directory. If not specified, the * default profile path will be used. @@ -17154,7 +14900,7 @@ var UserSettings = class _UserSettings extends Message { * @generated from field: string browser_user_profile_path = 77 [deprecated = true]; * @deprecated */ - browserUserProfilePath = ''; + browserUserProfilePath = ""; /** * Port number for Chrome DevTools Protocol remote debugging. Default is 9222. * Changed to avoid port conflicts. @@ -17196,424 +14942,251 @@ var UserSettings = class _UserSettings extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.UserSettings'; + static typeName = "exa.codeium_common_pb.UserSettings"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'open_most_recent_chat_conversation', - kind: 'scalar', - T: 8, + name: "open_most_recent_chat_conversation", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, - { - no: 2, - name: 'last_selected_model', - kind: 'enum', - T: proto3.getEnumType(Model), - }, - { - no: 3, - name: 'theme_preference', - kind: 'enum', - T: proto3.getEnumType(ThemePreference), - }, - { - no: 7, - name: 'remember_last_model_selection', - kind: 'enum', - T: proto3.getEnumType(RememberLastModelSelection), - }, - { - no: 6, - name: 'autocomplete_speed', - kind: 'enum', - T: proto3.getEnumType(AutocompleteSpeed), - }, + { no: 2, name: "last_selected_model", kind: "enum", T: proto3.getEnumType(Model) }, + { no: 3, name: "theme_preference", kind: "enum", T: proto3.getEnumType(ThemePreference) }, + { no: 7, name: "remember_last_model_selection", kind: "enum", T: proto3.getEnumType(RememberLastModelSelection) }, + { no: 6, name: "autocomplete_speed", kind: "enum", T: proto3.getEnumType(AutocompleteSpeed) }, { no: 8, - name: 'last_selected_model_name', - kind: 'scalar', - T: 9, + name: "last_selected_model_name", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { - no: 9, - name: 'last_selected_cascade_model', - kind: 'enum', - T: proto3.getEnumType(Model), - opt: true, - }, - { - no: 30, - name: 'last_selected_cascade_model_or_alias', - kind: 'message', - T: ModelOrAlias, - opt: true, - }, - { - no: 13, - name: 'cascade_planner_mode', - kind: 'enum', - T: proto3.getEnumType(ConversationalPlannerMode), - opt: true, - }, - { - no: 46, - name: 'last_model_override', - kind: 'enum', - T: proto3.getEnumType(Model), - opt: true, - }, - { - no: 58, - name: 'last_model_default_override_version_id', - kind: 'scalar', - T: 9, - opt: true, - }, - { - no: 14, - name: 'cascade_allowed_commands', - kind: 'scalar', - T: 9, - repeated: true, - }, - { - no: 15, - name: 'cascade_denied_commands', - kind: 'scalar', - T: 9, - repeated: true, - }, + { no: 9, name: "last_selected_cascade_model", kind: "enum", T: proto3.getEnumType(Model), opt: true }, + { no: 30, name: "last_selected_cascade_model_or_alias", kind: "message", T: ModelOrAlias, opt: true }, + { no: 13, name: "cascade_planner_mode", kind: "enum", T: proto3.getEnumType(ConversationalPlannerMode), opt: true }, + { no: 46, name: "last_model_override", kind: "enum", T: proto3.getEnumType(Model), opt: true }, + { no: 58, name: "last_model_default_override_version_id", kind: "scalar", T: 9, opt: true }, + { no: 14, name: "cascade_allowed_commands", kind: "scalar", T: 9, repeated: true }, + { no: 15, name: "cascade_denied_commands", kind: "scalar", T: 9, repeated: true }, { no: 18, - name: 'cascade_web_search_disabled', - kind: 'scalar', - T: 8, + name: "cascade_web_search_disabled", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, - { - no: 67, - name: 'tab_enabled', - kind: 'enum', - T: proto3.getEnumType(TabEnabled), - }, + { no: 67, name: "tab_enabled", kind: "enum", T: proto3.getEnumType(TabEnabled) }, { no: 21, - name: 'disable_selection_popup', - kind: 'scalar', - T: 8, + name: "disable_selection_popup", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 22, - name: 'disable_explain_problem_inlay_hint', - kind: 'scalar', - T: 8, + name: "disable_explain_problem_inlay_hint", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 23, - name: 'disable_inlay_hint_shortcuts', - kind: 'scalar', - T: 8, + name: "disable_inlay_hint_shortcuts", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 24, - name: 'disable_open_cascade_on_reload', - kind: 'scalar', - T: 8, + name: "disable_open_cascade_on_reload", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 25, - name: 'disable_auto_open_edited_files', - kind: 'scalar', - T: 8, + name: "disable_auto_open_edited_files", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 26, - name: 'disable_tab_to_jump', - kind: 'scalar', - T: 8, + name: "disable_tab_to_jump", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, - { - no: 27, - name: 'cascade_auto_execution_policy', - kind: 'enum', - T: proto3.getEnumType(CascadeCommandsAutoExecution), - }, - { - no: 28, - name: 'last_selected_cascade_id', - kind: 'scalar', - T: 9, - opt: true, - }, + { no: 27, name: "cascade_auto_execution_policy", kind: "enum", T: proto3.getEnumType(CascadeCommandsAutoExecution) }, + { no: 28, name: "last_selected_cascade_id", kind: "scalar", T: 9, opt: true }, { no: 29, - name: 'explain_and_fix_in_current_conversation', - kind: 'scalar', - T: 8, + name: "explain_and_fix_in_current_conversation", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 31, - name: 'allow_cascade_access_gitignore_files', - kind: 'scalar', - T: 8, + name: "allow_cascade_access_gitignore_files", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 79, - name: 'allow_agent_access_non_workspace_files', - kind: 'scalar', - T: 8, + name: "allow_agent_access_non_workspace_files", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 32, - name: 'disable_cascade_auto_fix_lints', - kind: 'scalar', - T: 8, + name: "disable_cascade_auto_fix_lints", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, - { - no: 34, - name: 'detect_and_use_proxy', - kind: 'enum', - T: proto3.getEnumType(DetectAndUseProxy), - }, + { no: 34, name: "detect_and_use_proxy", kind: "enum", T: proto3.getEnumType(DetectAndUseProxy) }, { no: 35, - name: 'disable_tab_to_import', - kind: 'scalar', - T: 8, + name: "disable_tab_to_import", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 36, - name: 'use_clipboard_for_completions', - kind: 'scalar', - T: 8, + name: "use_clipboard_for_completions", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 37, - name: 'disable_highlight_after_accept', - kind: 'scalar', - T: 8, + name: "disable_highlight_after_accept", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 39, - name: 'disable_auto_generate_memories', - kind: 'scalar', - T: 8, + name: "disable_auto_generate_memories", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 40, - name: 'enable_sounds_for_special_events', - kind: 'scalar', - T: 8, + name: "enable_sounds_for_special_events", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 41, - name: 'enable_tab_sounds', - kind: 'scalar', - T: 8, + name: "enable_tab_sounds", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 42, - name: 'allow_cascade_in_background', - kind: 'scalar', - T: 8, + name: "allow_cascade_in_background", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, - { - no: 43, - name: 'tab_to_jump', - kind: 'enum', - T: proto3.getEnumType(TabToJump), - }, - { - no: 44, - name: 'cascade_web_search', - kind: 'enum', - T: proto3.getEnumType(CascadeWebSearchTool), - }, + { no: 43, name: "tab_to_jump", kind: "enum", T: proto3.getEnumType(TabToJump) }, + { no: 44, name: "cascade_web_search", kind: "enum", T: proto3.getEnumType(CascadeWebSearchTool) }, { no: 45, - name: 'enable_terminal_completion', - kind: 'scalar', - T: 8, + name: "enable_terminal_completion", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 55, - name: 'is_snoozed', - kind: 'scalar', - T: 8, + name: "is_snoozed", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 48, - name: 'disable_cascade_in_background', - kind: 'scalar', - T: 8, + name: "disable_cascade_in_background", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, - { no: 50, name: 'custom_workspace', kind: 'scalar', T: 9, repeated: true }, - { - no: 54, - name: 'global_plan_mode_preference', - kind: 'enum', - T: proto3.getEnumType(PlanMode), - }, - { - no: 52, - name: 'cached_cascade_model_configs', - kind: 'message', - T: ClientModelConfig, - repeated: true, - }, - { - no: 53, - name: 'cached_cascade_model_sorts', - kind: 'message', - T: ClientModelSort, - repeated: true, - }, - { - no: 56, - name: 'cascade_run_extension_code', - kind: 'enum', - T: proto3.getEnumType(CascadeRunExtensionCode), - }, - { - no: 57, - name: 'cascade_run_extension_code_auto_run', - kind: 'enum', - T: proto3.getEnumType(CascadeRunExtensionCodeAutoRun), - }, - { - no: 65, - name: 'cascade_input_autocomplete', - kind: 'enum', - T: proto3.getEnumType(CascadeInputAutocomplete), - }, - { - no: 59, - name: 'auto_continue_on_max_generator_invocations', - kind: 'enum', - T: proto3.getEnumType(AutoContinueOnMaxGeneratorInvocations), - }, - { - no: 61, - name: 'recently_used_cascade_models', - kind: 'scalar', - T: 9, - repeated: true, - }, - { - no: 63, - name: 'annotations_config', - kind: 'enum', - T: proto3.getEnumType(AnnotationsConfig), - }, - { - no: 66, - name: 'relative_working_dir_paths', - kind: 'scalar', - T: 9, - repeated: true, - }, - { - no: 68, - name: 'custom_models', - kind: 'map', - K: 9, - V: { kind: 'message', T: ModelInfo }, - }, + { no: 50, name: "custom_workspace", kind: "scalar", T: 9, repeated: true }, + { no: 54, name: "global_plan_mode_preference", kind: "enum", T: proto3.getEnumType(PlanMode) }, + { no: 52, name: "cached_cascade_model_configs", kind: "message", T: ClientModelConfig, repeated: true }, + { no: 53, name: "cached_cascade_model_sorts", kind: "message", T: ClientModelSort, repeated: true }, + { no: 56, name: "cascade_run_extension_code", kind: "enum", T: proto3.getEnumType(CascadeRunExtensionCode) }, + { no: 57, name: "cascade_run_extension_code_auto_run", kind: "enum", T: proto3.getEnumType(CascadeRunExtensionCodeAutoRun) }, + { no: 65, name: "cascade_input_autocomplete", kind: "enum", T: proto3.getEnumType(CascadeInputAutocomplete) }, + { no: 59, name: "auto_continue_on_max_generator_invocations", kind: "enum", T: proto3.getEnumType(AutoContinueOnMaxGeneratorInvocations) }, + { no: 61, name: "recently_used_cascade_models", kind: "scalar", T: 9, repeated: true }, + { no: 63, name: "annotations_config", kind: "enum", T: proto3.getEnumType(AnnotationsConfig) }, + { no: 66, name: "relative_working_dir_paths", kind: "scalar", T: 9, repeated: true }, + { no: 68, name: "custom_models", kind: "map", K: 9, V: { kind: "message", T: ModelInfo } }, { no: 69, - name: 'disable_code_snippet_telemetry', - kind: 'scalar', - T: 8, + name: "disable_code_snippet_telemetry", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, - { - no: 70, - name: 'planning_mode', - kind: 'enum', - T: proto3.getEnumType(PlanningMode), - }, - { - no: 71, - name: 'agent_browser_tools', - kind: 'enum', - T: proto3.getEnumType(AgentBrowserTools), - }, - { - no: 72, - name: 'artifact_review_mode', - kind: 'enum', - T: proto3.getEnumType(ArtifactReviewMode), - }, + { no: 70, name: "planning_mode", kind: "enum", T: proto3.getEnumType(PlanningMode) }, + { no: 71, name: "agent_browser_tools", kind: "enum", T: proto3.getEnumType(AgentBrowserTools) }, + { no: 72, name: "artifact_review_mode", kind: "enum", T: proto3.getEnumType(ArtifactReviewMode) }, { no: 75, - name: 'allow_tab_access_gitignore_files', - kind: 'scalar', - T: 8, + name: "allow_tab_access_gitignore_files", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 76, - name: 'browser_chrome_path', - kind: 'scalar', - T: 9, + name: "browser_chrome_path", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 77, - name: 'browser_user_profile_path', - kind: 'scalar', - T: 9, + name: "browser_user_profile_path", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 78, - name: 'browser_cdp_port', - kind: 'scalar', - T: 5, + name: "browser_cdp_port", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, { no: 80, - name: 'demo_mode_enabled', - kind: 'scalar', - T: 8, + name: "demo_mode_enabled", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, - { - no: 81, - name: 'browser_js_execution_policy', - kind: 'enum', - T: proto3.getEnumType(BrowserJsExecutionPolicy), - }, + { no: 81, name: "browser_js_execution_policy", kind: "enum", T: proto3.getEnumType(BrowserJsExecutionPolicy) }, { no: 82, - name: 'secure_mode_enabled', - kind: 'scalar', - T: 8, + name: "secure_mode_enabled", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ - }, + } ]); static fromBinary(bytes, options) { return new _UserSettings().fromBinary(bytes, options); @@ -17638,15 +15211,15 @@ var UserAccountSettings = class _UserAccountSettings extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.UserAccountSettings'; + static typeName = "exa.codeium_common_pb.UserAccountSettings"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'disable_code_snippet_telemetry', - kind: 'scalar', - T: 8, + name: "disable_code_snippet_telemetry", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ - }, + } ]); static fromBinary(bytes, options) { return new _UserAccountSettings().fromBinary(bytes, options); @@ -17858,187 +15431,181 @@ var ModelFeatures = class _ModelFeatures extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.ModelFeatures'; + static typeName = "exa.codeium_common_pb.ModelFeatures"; static fields = proto3.util.newFieldList(() => [ { no: 2, - name: 'supports_context_tokens', - kind: 'scalar', - T: 8, + name: "supports_context_tokens", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 3, - name: 'requires_instruct_tags', - kind: 'scalar', - T: 8, + name: "requires_instruct_tags", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 4, - name: 'requires_fim_context', - kind: 'scalar', - T: 8, + name: "requires_fim_context", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 5, - name: 'requires_context_snippet_prefix', - kind: 'scalar', - T: 8, + name: "requires_context_snippet_prefix", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 6, - name: 'requires_context_relevance_tags', - kind: 'scalar', - T: 8, + name: "requires_context_relevance_tags", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 7, - name: 'requires_llama3_tokens', - kind: 'scalar', - T: 8, + name: "requires_llama3_tokens", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 8, - name: 'zero_shot_capable', - kind: 'scalar', - T: 8, + name: "zero_shot_capable", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 9, - name: 'requires_autocomplete_as_command', - kind: 'scalar', - T: 8, + name: "requires_autocomplete_as_command", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 10, - name: 'supports_cursor_aware_supercomplete', - kind: 'scalar', - T: 8, + name: "supports_cursor_aware_supercomplete", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 11, - name: 'supports_images', - kind: 'scalar', - T: 8, + name: "supports_images", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 22, - name: 'supports_pdf', - kind: 'scalar', - T: 8, + name: "supports_pdf", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 23, - name: 'supports_video', - kind: 'scalar', - T: 8, + name: "supports_video", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, - { - no: 28, - name: 'supported_mime_types', - kind: 'map', - K: 9, - V: { - kind: 'scalar', - T: 8, - /* ScalarType.BOOL */ - }, - }, + { no: 28, name: "supported_mime_types", kind: "map", K: 9, V: { + kind: "scalar", + T: 8 + /* ScalarType.BOOL */ + } }, { no: 12, - name: 'supports_tool_calls', - kind: 'scalar', - T: 8, + name: "supports_tool_calls", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 27, - name: 'does_not_support_tool_choice', - kind: 'scalar', - T: 8, + name: "does_not_support_tool_choice", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 13, - name: 'supports_cumulative_context', - kind: 'scalar', - T: 8, + name: "supports_cumulative_context", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 14, - name: 'tab_jump_print_line_range', - kind: 'scalar', - T: 8, + name: "tab_jump_print_line_range", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 15, - name: 'supports_thinking', - kind: 'scalar', - T: 8, + name: "supports_thinking", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 21, - name: 'supports_raw_thinking', - kind: 'scalar', - T: 8, + name: "supports_raw_thinking", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 17, - name: 'supports_estimate_token_counter', - kind: 'scalar', - T: 8, + name: "supports_estimate_token_counter", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 18, - name: 'add_cursor_to_find_replace_target', - kind: 'scalar', - T: 8, + name: "add_cursor_to_find_replace_target", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 19, - name: 'supports_tab_jump_use_whole_document', - kind: 'scalar', - T: 8, + name: "supports_tab_jump_use_whole_document", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 24, - name: 'supports_model_info_override', - kind: 'scalar', - T: 8, + name: "supports_model_info_override", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 25, - name: 'requires_lead_in_generation', - kind: 'scalar', - T: 8, + name: "requires_lead_in_generation", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 26, - name: 'requires_no_xml_tool_examples', - kind: 'scalar', - T: 8, + name: "requires_no_xml_tool_examples", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ - }, + } ]); static fromBinary(bytes, options) { return new _ModelFeatures().fromBinary(bytes, options); @@ -18065,31 +15632,31 @@ var ExternalModel = class _ExternalModel extends Message { /** * @generated from field: string model_name = 3; */ - modelName = ''; + modelName = ""; /** * @generated from field: string base_url = 4; */ - baseUrl = ''; + baseUrl = ""; /** * @generated from field: string api_key = 5; */ - apiKey = ''; + apiKey = ""; /** * @generated from field: string access_key = 6; */ - accessKey = ''; + accessKey = ""; /** * @generated from field: string secret_access_key = 7; */ - secretAccessKey = ''; + secretAccessKey = ""; /** * @generated from field: string region = 8; */ - region = ''; + region = ""; /** * @generated from field: string project_id = 9; */ - projectId = ''; + projectId = ""; /** * @generated from field: uint32 id = 10; */ @@ -18107,86 +15674,86 @@ var ExternalModel = class _ExternalModel extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.ExternalModel'; + static typeName = "exa.codeium_common_pb.ExternalModel"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'is_internal', - kind: 'scalar', - T: 8, + name: "is_internal", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, - { no: 2, name: 'model_id', kind: 'enum', T: proto3.getEnumType(Model) }, + { no: 2, name: "model_id", kind: "enum", T: proto3.getEnumType(Model) }, { no: 3, - name: 'model_name', - kind: 'scalar', - T: 9, + name: "model_name", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 4, - name: 'base_url', - kind: 'scalar', - T: 9, + name: "base_url", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 5, - name: 'api_key', - kind: 'scalar', - T: 9, + name: "api_key", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 6, - name: 'access_key', - kind: 'scalar', - T: 9, + name: "access_key", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 7, - name: 'secret_access_key', - kind: 'scalar', - T: 9, + name: "secret_access_key", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 8, - name: 'region', - kind: 'scalar', - T: 9, + name: "region", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 9, - name: 'project_id', - kind: 'scalar', - T: 9, + name: "project_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 10, - name: 'id', - kind: 'scalar', - T: 13, + name: "id", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, { no: 11, - name: 'max_completion_tokens', - kind: 'scalar', - T: 5, + name: "max_completion_tokens", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, { no: 12, - name: 'max_input_tokens', - kind: 'scalar', - T: 5, + name: "max_input_tokens", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ - }, + } ]); static fromBinary(bytes, options) { return new _ExternalModel().fromBinary(bytes, options); @@ -18231,7 +15798,7 @@ var ModelInfo = class _ModelInfo extends Message { * * @generated from field: string tokenizer_type = 5; */ - tokenizerType = ''; + tokenizerType = ""; /** * @generated from field: exa.codeium_common_pb.ModelFeatures model_features = 6; */ @@ -18245,7 +15812,7 @@ var ModelInfo = class _ModelInfo extends Message { * * @generated from field: string model_name = 8; */ - modelName = ''; + modelName = ""; /** * @generated from field: bool supports_context = 9; */ @@ -18259,13 +15826,13 @@ var ModelInfo = class _ModelInfo extends Message { /** * @generated from field: string base_url = 11; */ - baseUrl = ''; + baseUrl = ""; /** * Set within api server for easier use of external models * * @generated from field: string chat_model_name = 12; */ - chatModelName = ''; + chatModelName = ""; /** * Max output tokens for the model. This is only ever set for external API * providers since MaxOutputTokens is set on the inference server for any @@ -18305,111 +15872,91 @@ var ModelInfo = class _ModelInfo extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.ModelInfo'; + static typeName = "exa.codeium_common_pb.ModelInfo"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'model_id', kind: 'enum', T: proto3.getEnumType(Model) }, + { no: 1, name: "model_id", kind: "enum", T: proto3.getEnumType(Model) }, { no: 2, - name: 'is_internal', - kind: 'scalar', - T: 8, + name: "is_internal", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, - { - no: 3, - name: 'model_type', - kind: 'enum', - T: proto3.getEnumType(ModelType), - }, + { no: 3, name: "model_type", kind: "enum", T: proto3.getEnumType(ModelType) }, { no: 4, - name: 'max_tokens', - kind: 'scalar', - T: 5, + name: "max_tokens", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, { no: 5, - name: 'tokenizer_type', - kind: 'scalar', - T: 9, + name: "tokenizer_type", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 6, name: 'model_features', kind: 'message', T: ModelFeatures }, - { - no: 7, - name: 'api_provider', - kind: 'enum', - T: proto3.getEnumType(APIProvider), - }, + { no: 6, name: "model_features", kind: "message", T: ModelFeatures }, + { no: 7, name: "api_provider", kind: "enum", T: proto3.getEnumType(APIProvider) }, { no: 8, - name: 'model_name', - kind: 'scalar', - T: 9, + name: "model_name", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 9, - name: 'supports_context', - kind: 'scalar', - T: 8, + name: "supports_context", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 10, - name: 'embed_dim', - kind: 'scalar', - T: 5, + name: "embed_dim", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, { no: 11, - name: 'base_url', - kind: 'scalar', - T: 9, + name: "base_url", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 12, - name: 'chat_model_name', - kind: 'scalar', - T: 9, + name: "chat_model_name", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 13, - name: 'max_output_tokens', - kind: 'scalar', - T: 5, + name: "max_output_tokens", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, - { - no: 14, - name: 'prompt_templater_type', - kind: 'enum', - T: proto3.getEnumType(PromptTemplaterType), - }, - { - no: 15, - name: 'tool_formatter_type', - kind: 'enum', - T: proto3.getEnumType(ToolFormatterType), - }, + { no: 14, name: "prompt_templater_type", kind: "enum", T: proto3.getEnumType(PromptTemplaterType) }, + { no: 15, name: "tool_formatter_type", kind: "enum", T: proto3.getEnumType(ToolFormatterType) }, { no: 16, - name: 'thinking_budget', - kind: 'scalar', - T: 5, + name: "thinking_budget", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, { no: 17, - name: 'min_thinking_budget', - kind: 'scalar', - T: 5, + name: "min_thinking_budget", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ - }, + } ]); static fromBinary(bytes, options) { return new _ModelInfo().fromBinary(bytes, options); @@ -18434,15 +15981,9 @@ var ApiProviderRoutingConfig = class _ApiProviderRoutingConfig extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.ApiProviderRoutingConfig'; + static typeName = "exa.codeium_common_pb.ApiProviderRoutingConfig"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'model_map', - kind: 'map', - K: 9, - V: { kind: 'message', T: ApiProviderConfigMap }, - }, + { no: 1, name: "model_map", kind: "map", K: 9, V: { kind: "message", T: ApiProviderConfigMap } } ]); static fromBinary(bytes, options) { return new _ApiProviderRoutingConfig().fromBinary(bytes, options); @@ -18467,15 +16008,9 @@ var ApiProviderConfigMap = class _ApiProviderConfigMap extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.ApiProviderConfigMap'; + static typeName = "exa.codeium_common_pb.ApiProviderConfigMap"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'provider_map', - kind: 'map', - K: 9, - V: { kind: 'message', T: ApiProviderConfig }, - }, + { no: 1, name: "provider_map", kind: "map", K: 9, V: { kind: "message", T: ApiProviderConfig } } ]); static fromBinary(bytes, options) { return new _ApiProviderConfigMap().fromBinary(bytes, options); @@ -18504,22 +16039,22 @@ var ApiProviderConfig = class _ApiProviderConfig extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.ApiProviderConfig'; + static typeName = "exa.codeium_common_pb.ApiProviderConfig"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'weight', - kind: 'scalar', - T: 13, + name: "weight", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, { no: 2, - name: 'cache_ttl_minutes', - kind: 'scalar', - T: 13, + name: "cache_ttl_minutes", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ - }, + } ]); static fromBinary(bytes, options) { return new _ApiProviderConfig().fromBinary(bytes, options); @@ -18551,10 +16086,10 @@ var ModelConfig = class _ModelConfig extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.ModelConfig'; + static typeName = "exa.codeium_common_pb.ModelConfig"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'generation_model', kind: 'message', T: ModelInfo }, - { no: 2, name: 'context_check_model', kind: 'message', T: ModelInfo }, + { no: 1, name: "generation_model", kind: "message", T: ModelInfo }, + { no: 2, name: "context_check_model", kind: "message", T: ModelInfo } ]); static fromBinary(bytes, options) { return new _ModelConfig().fromBinary(bytes, options); @@ -18577,7 +16112,7 @@ var ModelStatusInfo = class _ModelStatusInfo extends Message { /** * @generated from field: string message = 2; */ - message = ''; + message = ""; /** * @generated from field: exa.codeium_common_pb.ModelStatus status = 3; */ @@ -18587,17 +16122,17 @@ var ModelStatusInfo = class _ModelStatusInfo extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.ModelStatusInfo'; + static typeName = "exa.codeium_common_pb.ModelStatusInfo"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'model', kind: 'enum', T: proto3.getEnumType(Model) }, + { no: 1, name: "model", kind: "enum", T: proto3.getEnumType(Model) }, { no: 2, - name: 'message', - kind: 'scalar', - T: 9, + name: "message", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 3, name: 'status', kind: 'enum', T: proto3.getEnumType(ModelStatus) }, + { no: 3, name: "status", kind: "enum", T: proto3.getEnumType(ModelStatus) } ]); static fromBinary(bytes, options) { return new _ModelStatusInfo().fromBinary(bytes, options); @@ -18616,76 +16151,76 @@ var CompletionExample = class _CompletionExample extends Message { /** * @generated from field: string uid = 1; */ - uid = ''; + uid = ""; /** * @generated from field: string completion_id = 2; */ - completionId = ''; + completionId = ""; /** * @generated from field: string file_path = 3; */ - filePath = ''; + filePath = ""; /** * @generated from field: string short_prefix = 4; */ - shortPrefix = ''; + shortPrefix = ""; /** * @generated from field: string completion_text = 5; */ - completionText = ''; + completionText = ""; /** * @generated from field: string short_suffix = 6; */ - shortSuffix = ''; + shortSuffix = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.CompletionExample'; + static typeName = "exa.codeium_common_pb.CompletionExample"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'uid', - kind: 'scalar', - T: 9, + name: "uid", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'completion_id', - kind: 'scalar', - T: 9, + name: "completion_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 3, - name: 'file_path', - kind: 'scalar', - T: 9, + name: "file_path", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 4, - name: 'short_prefix', - kind: 'scalar', - T: 9, + name: "short_prefix", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 5, - name: 'completion_text', - kind: 'scalar', - T: 9, + name: "completion_text", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 6, - name: 'short_suffix', - kind: 'scalar', - T: 9, + name: "short_suffix", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _CompletionExample().fromBinary(bytes, options); @@ -18710,7 +16245,7 @@ var CompletionExampleWithMetadata = class _CompletionExampleWithMetadata extends * * @generated from field: string name = 2; */ - name = ''; + name = ""; /** * @generated from field: google.protobuf.Timestamp time = 4; */ @@ -18720,17 +16255,17 @@ var CompletionExampleWithMetadata = class _CompletionExampleWithMetadata extends proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.CompletionExampleWithMetadata'; + static typeName = "exa.codeium_common_pb.CompletionExampleWithMetadata"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'example', kind: 'message', T: CompletionExample }, + { no: 1, name: "example", kind: "message", T: CompletionExample }, { no: 2, - name: 'name', - kind: 'scalar', - T: 9, + name: "name", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 4, name: 'time', kind: 'message', T: Timestamp }, + { no: 4, name: "time", kind: "message", T: Timestamp } ]); static fromBinary(bytes, options) { return new _CompletionExampleWithMetadata().fromBinary(bytes, options); @@ -18739,10 +16274,7 @@ var CompletionExampleWithMetadata = class _CompletionExampleWithMetadata extends return new _CompletionExampleWithMetadata().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _CompletionExampleWithMetadata().fromJsonString( - jsonString, - options, - ); + return new _CompletionExampleWithMetadata().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_CompletionExampleWithMetadata, a, b); @@ -18762,10 +16294,10 @@ var CciWithSubrange = class _CciWithSubrange extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.CciWithSubrange'; + static typeName = "exa.codeium_common_pb.CciWithSubrange"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'cci', kind: 'message', T: CodeContextItem }, - { no: 2, name: 'subrange', kind: 'message', T: ContextSubrange }, + { no: 1, name: "cci", kind: "message", T: CodeContextItem }, + { no: 2, name: "subrange", kind: "message", T: ContextSubrange } ]); static fromBinary(bytes, options) { return new _CciWithSubrange().fromBinary(bytes, options); @@ -18802,28 +16334,23 @@ var ContextSubrange = class _ContextSubrange extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.ContextSubrange'; + static typeName = "exa.codeium_common_pb.ContextSubrange"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'snippet_type', - kind: 'enum', - T: proto3.getEnumType(ContextSnippetType), - }, + { no: 1, name: "snippet_type", kind: "enum", T: proto3.getEnumType(ContextSnippetType) }, { no: 2, - name: 'start_offset', - kind: 'scalar', - T: 3, + name: "start_offset", + kind: "scalar", + T: 3 /* ScalarType.INT64 */ }, { no: 3, - name: 'end_offset', - kind: 'scalar', - T: 3, + name: "end_offset", + kind: "scalar", + T: 3 /* ScalarType.INT64 */ - }, + } ]); static fromBinary(bytes, options) { return new _ContextSubrange().fromBinary(bytes, options); @@ -18843,11 +16370,11 @@ var PathScopeItem = class _PathScopeItem extends Message { * @generated from field: string absolute_path_migrate_me_to_uri = 1 [deprecated = true]; * @deprecated */ - absolutePathMigrateMeToUri = ''; + absolutePathMigrateMeToUri = ""; /** * @generated from field: string absolute_uri = 5; */ - absoluteUri = ''; + absoluteUri = ""; /** * Map from workspace path to relative path. * @@ -18874,58 +16401,46 @@ var PathScopeItem = class _PathScopeItem extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.PathScopeItem'; + static typeName = "exa.codeium_common_pb.PathScopeItem"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'absolute_path_migrate_me_to_uri', - kind: 'scalar', - T: 9, + name: "absolute_path_migrate_me_to_uri", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 5, - name: 'absolute_uri', - kind: 'scalar', - T: 9, + name: "absolute_uri", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { - no: 2, - name: 'workspace_relative_paths_migrate_me_to_workspace_uris', - kind: 'map', - K: 9, - V: { - kind: 'scalar', - T: 9, - /* ScalarType.STRING */ - }, - }, - { - no: 6, - name: 'workspace_uris_to_relative_paths', - kind: 'map', - K: 9, - V: { - kind: 'scalar', - T: 9, - /* ScalarType.STRING */ - }, - }, + { no: 2, name: "workspace_relative_paths_migrate_me_to_workspace_uris", kind: "map", K: 9, V: { + kind: "scalar", + T: 9 + /* ScalarType.STRING */ + } }, + { no: 6, name: "workspace_uris_to_relative_paths", kind: "map", K: 9, V: { + kind: "scalar", + T: 9 + /* ScalarType.STRING */ + } }, { no: 3, - name: 'num_files', - kind: 'scalar', - T: 13, + name: "num_files", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, { no: 4, - name: 'num_bytes', - kind: 'scalar', - T: 4, + name: "num_bytes", + kind: "scalar", + T: 4 /* ScalarType.UINT64 */ - }, + } ]); static fromBinary(bytes, options) { return new _PathScopeItem().fromBinary(bytes, options); @@ -18944,7 +16459,7 @@ var FileLineRange = class _FileLineRange extends Message { /** * @generated from field: string absolute_uri = 1; */ - absoluteUri = ''; + absoluteUri = ""; /** * 0-indexed * @@ -18962,29 +16477,29 @@ var FileLineRange = class _FileLineRange extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.FileLineRange'; + static typeName = "exa.codeium_common_pb.FileLineRange"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'absolute_uri', - kind: 'scalar', - T: 9, + name: "absolute_uri", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'start_line', - kind: 'scalar', - T: 13, + name: "start_line", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, { no: 3, - name: 'end_line', - kind: 'scalar', - T: 13, + name: "end_line", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ - }, + } ]); static fromBinary(bytes, options) { return new _FileLineRange().fromBinary(bytes, options); @@ -19003,7 +16518,7 @@ var TextBlock = class _TextBlock extends Message { /** * @generated from field: string content = 1; */ - content = ''; + content = ""; /** * @generated from oneof exa.codeium_common_pb.TextBlock.identifier */ @@ -19013,23 +16528,17 @@ var TextBlock = class _TextBlock extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.TextBlock'; + static typeName = "exa.codeium_common_pb.TextBlock"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'content', - kind: 'scalar', - T: 9, + name: "content", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { - no: 2, - name: 'file_line_range', - kind: 'message', - T: FileLineRange, - oneof: 'identifier', - }, - { no: 3, name: 'label', kind: 'scalar', T: 9, oneof: 'identifier' }, + { no: 2, name: "file_line_range", kind: "message", T: FileLineRange, oneof: "identifier" }, + { no: 3, name: "label", kind: "scalar", T: 9, oneof: "identifier" } ]); static fromBinary(bytes, options) { return new _TextBlock().fromBinary(bytes, options); @@ -19054,9 +16563,9 @@ var RepositoryScopeItem = class _RepositoryScopeItem extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.RepositoryScopeItem'; + static typeName = "exa.codeium_common_pb.RepositoryScopeItem"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'repo_info', kind: 'message', T: GitRepoInfo }, + { no: 1, name: "repo_info", kind: "message", T: GitRepoInfo } ]); static fromBinary(bytes, options) { return new _RepositoryScopeItem().fromBinary(bytes, options); @@ -19079,7 +16588,7 @@ var RepositoryPathScopeItem = class _RepositoryPathScopeItem extends Message { /** * @generated from field: string relative_path = 2; */ - relativePath = ''; + relativePath = ""; /** * @generated from field: bool is_dir = 3; */ @@ -19089,23 +16598,23 @@ var RepositoryPathScopeItem = class _RepositoryPathScopeItem extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.RepositoryPathScopeItem'; + static typeName = "exa.codeium_common_pb.RepositoryPathScopeItem"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'repo_info', kind: 'message', T: GitRepoInfo }, + { no: 1, name: "repo_info", kind: "message", T: GitRepoInfo }, { no: 2, - name: 'relative_path', - kind: 'scalar', - T: 9, + name: "relative_path", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 3, - name: 'is_dir', - kind: 'scalar', - T: 8, + name: "is_dir", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ - }, + } ]); static fromBinary(bytes, options) { return new _RepositoryPathScopeItem().fromBinary(bytes, options); @@ -19126,7 +16635,7 @@ var KnowledgeBaseScopeItem = class _KnowledgeBaseScopeItem extends Message { * * @generated from field: string document_id = 1; */ - documentId = ''; + documentId = ""; /** * @generated from field: exa.codeium_common_pb.IndexChoice index = 7; */ @@ -19140,70 +16649,65 @@ var KnowledgeBaseScopeItem = class _KnowledgeBaseScopeItem extends Message { * * @generated from field: string display_name = 3; */ - displayName = ''; + displayName = ""; /** * @generated from field: string description = 4; */ - description = ''; + description = ""; /** * @generated from field: string display_source = 5; */ - displaySource = ''; + displaySource = ""; /** * Url to the knowledge base item if available. * * @generated from field: string url = 6; */ - url = ''; + url = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.KnowledgeBaseScopeItem'; + static typeName = "exa.codeium_common_pb.KnowledgeBaseScopeItem"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'document_id', - kind: 'scalar', - T: 9, + name: "document_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 7, name: 'index', kind: 'enum', T: proto3.getEnumType(IndexChoice) }, - { - no: 8, - name: 'document_type', - kind: 'enum', - T: proto3.getEnumType(DocumentType), - }, + { no: 7, name: "index", kind: "enum", T: proto3.getEnumType(IndexChoice) }, + { no: 8, name: "document_type", kind: "enum", T: proto3.getEnumType(DocumentType) }, { no: 3, - name: 'display_name', - kind: 'scalar', - T: 9, + name: "display_name", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 4, - name: 'description', - kind: 'scalar', - T: 9, + name: "description", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 5, - name: 'display_source', - kind: 'scalar', - T: 9, + name: "display_source", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 6, - name: 'url', - kind: 'scalar', - T: 9, + name: "url", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _KnowledgeBaseScopeItem().fromBinary(bytes, options); @@ -19224,61 +16728,61 @@ var ConsoleLogLine = class _ConsoleLogLine extends Message { * * @generated from field: string timestamp_str = 1; */ - timestampStr = ''; + timestampStr = ""; /** * Type of the log (error, warn, info, debug). * * @generated from field: string type = 2; */ - type = ''; + type = ""; /** * Actual output of the log. * * @generated from field: string output = 3; */ - output = ''; + output = ""; /** * Location of the log, including file path and line number, e.g., * "third_party_upload_content_script.js:962:0". * * @generated from field: string location = 4; */ - location = ''; + location = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.ConsoleLogLine'; + static typeName = "exa.codeium_common_pb.ConsoleLogLine"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'timestamp_str', - kind: 'scalar', - T: 9, + name: "timestamp_str", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'type', - kind: 'scalar', - T: 9, + name: "type", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 3, - name: 'output', - kind: 'scalar', - T: 9, + name: "output", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 4, - name: 'location', - kind: 'scalar', - T: 9, + name: "location", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _ConsoleLogLine().fromBinary(bytes, options); @@ -19305,28 +16809,22 @@ var ConsoleLogScopeItem = class _ConsoleLogScopeItem extends Message { * * @generated from field: string server_address = 2; */ - serverAddress = ''; + serverAddress = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.ConsoleLogScopeItem'; + static typeName = "exa.codeium_common_pb.ConsoleLogScopeItem"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'lines', - kind: 'message', - T: ConsoleLogLine, - repeated: true, - }, + { no: 1, name: "lines", kind: "message", T: ConsoleLogLine, repeated: true }, { no: 2, - name: 'server_address', - kind: 'scalar', - T: 9, + name: "server_address", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _ConsoleLogScopeItem().fromBinary(bytes, options); @@ -19347,25 +16845,25 @@ var DOMElementScopeItem = class _DOMElementScopeItem extends Message { * * @generated from field: string tag_name = 1; */ - tagName = ''; + tagName = ""; /** * Outer HTML of the element (may be truncated). * * @generated from field: string outer_html = 2; */ - outerHtml = ''; + outerHtml = ""; /** * ID of the element (if applicable). * * @generated from field: string id = 3; */ - id = ''; + id = ""; /** * Name of the containing React component (if applicable). * * @generated from field: string react_component_name = 4; */ - reactComponentName = ''; + reactComponentName = ""; /** * File line range (no end line) for the containing React component (if * applicable). @@ -19378,37 +16876,37 @@ var DOMElementScopeItem = class _DOMElementScopeItem extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.DOMElementScopeItem'; + static typeName = "exa.codeium_common_pb.DOMElementScopeItem"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'tag_name', - kind: 'scalar', - T: 9, + name: "tag_name", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'outer_html', - kind: 'scalar', - T: 9, + name: "outer_html", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 3, - name: 'id', - kind: 'scalar', - T: 9, + name: "id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 4, - name: 'react_component_name', - kind: 'scalar', - T: 9, + name: "react_component_name", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 5, name: 'file_line_range', kind: 'message', T: FileLineRange }, + { no: 5, name: "file_line_range", kind: "message", T: FileLineRange } ]); static fromBinary(bytes, options) { return new _DOMElementScopeItem().fromBinary(bytes, options); @@ -19437,29 +16935,17 @@ var DOMNode = class _DOMNode extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.DOMNode'; + static typeName = "exa.codeium_common_pb.DOMNode"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'is_visible', - kind: 'scalar', - T: 8, + name: "is_visible", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, - { - no: 2, - name: 'element', - kind: 'message', - T: DOMNode_ElementNode, - oneof: 'node_data', - }, - { - no: 3, - name: 'text', - kind: 'message', - T: DOMNode_TextNode, - oneof: 'node_data', - }, + { no: 2, name: "element", kind: "message", T: DOMNode_ElementNode, oneof: "node_data" }, + { no: 3, name: "text", kind: "message", T: DOMNode_TextNode, oneof: "node_data" } ]); static fromBinary(bytes, options) { return new _DOMNode().fromBinary(bytes, options); @@ -19478,11 +16964,11 @@ var DOMNode_ElementNode = class _DOMNode_ElementNode extends Message { /** * @generated from field: string tag_name = 1; */ - tagName = ''; + tagName = ""; /** * @generated from field: string xpath = 2; */ - xpath = ''; + xpath = ""; /** * IDs of child nodes * @@ -19520,69 +17006,63 @@ var DOMNode_ElementNode = class _DOMNode_ElementNode extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.DOMNode.ElementNode'; + static typeName = "exa.codeium_common_pb.DOMNode.ElementNode"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'tag_name', - kind: 'scalar', - T: 9, + name: "tag_name", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'xpath', - kind: 'scalar', - T: 9, + name: "xpath", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 3, name: 'children', kind: 'scalar', T: 9, repeated: true }, - { - no: 4, - name: 'attributes', - kind: 'map', - K: 9, - V: { - kind: 'scalar', - T: 9, - /* ScalarType.STRING */ - }, - }, + { no: 3, name: "children", kind: "scalar", T: 9, repeated: true }, + { no: 4, name: "attributes", kind: "map", K: 9, V: { + kind: "scalar", + T: 9 + /* ScalarType.STRING */ + } }, { no: 5, - name: 'is_interactive', - kind: 'scalar', - T: 8, + name: "is_interactive", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 6, - name: 'is_top_element', - kind: 'scalar', - T: 8, + name: "is_top_element", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 7, - name: 'highlight_index', - kind: 'scalar', - T: 5, + name: "highlight_index", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, { no: 8, - name: 'central_x', - kind: 'scalar', - T: 5, + name: "central_x", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, { no: 9, - name: 'central_y', - kind: 'scalar', - T: 5, + name: "central_y", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ - }, + } ]); static fromBinary(bytes, options) { return new _DOMNode_ElementNode().fromBinary(bytes, options); @@ -19601,21 +17081,21 @@ var DOMNode_TextNode = class _DOMNode_TextNode extends Message { /** * @generated from field: string text = 1; */ - text = ''; + text = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.DOMNode.TextNode'; + static typeName = "exa.codeium_common_pb.DOMNode.TextNode"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'text', - kind: 'scalar', - T: 9, + name: "text", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _DOMNode_TextNode().fromBinary(bytes, options); @@ -19636,7 +17116,7 @@ var DOMTree = class _DOMTree extends Message { * * @generated from field: string root_id = 1; */ - rootId = ''; + rootId = ""; /** * Map from node ID to DOM node. * @@ -19648,22 +17128,16 @@ var DOMTree = class _DOMTree extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.DOMTree'; + static typeName = "exa.codeium_common_pb.DOMTree"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'root_id', - kind: 'scalar', - T: 9, + name: "root_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { - no: 2, - name: 'map', - kind: 'map', - K: 9, - V: { kind: 'message', T: DOMNode }, - }, + { no: 2, name: "map", kind: "map", K: 9, V: { kind: "message", T: DOMNode } } ]); static fromBinary(bytes, options) { return new _DOMTree().fromBinary(bytes, options); @@ -19708,36 +17182,36 @@ var Viewport = class _Viewport extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.Viewport'; + static typeName = "exa.codeium_common_pb.Viewport"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'x', - kind: 'scalar', - T: 5, + name: "x", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, { no: 2, - name: 'y', - kind: 'scalar', - T: 5, + name: "y", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, { no: 3, - name: 'width', - kind: 'scalar', - T: 5, + name: "width", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, { no: 4, - name: 'height', - kind: 'scalar', - T: 5, + name: "height", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ - }, + } ]); static fromBinary(bytes, options) { return new _Viewport().fromBinary(bytes, options); @@ -19756,19 +17230,19 @@ var RecipeScopeItem = class _RecipeScopeItem extends Message { /** * @generated from field: string recipe_id = 1; */ - recipeId = ''; + recipeId = ""; /** * @generated from field: string title = 2; */ - title = ''; + title = ""; /** * @generated from field: string description = 3; */ - description = ''; + description = ""; /** * @generated from field: string system_prompt = 4; */ - systemPrompt = ''; + systemPrompt = ""; /** * Optional URI to the file containing the workflow (formerly known as a * recipe). @@ -19781,37 +17255,37 @@ var RecipeScopeItem = class _RecipeScopeItem extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.RecipeScopeItem'; + static typeName = "exa.codeium_common_pb.RecipeScopeItem"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'recipe_id', - kind: 'scalar', - T: 9, + name: "recipe_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'title', - kind: 'scalar', - T: 9, + name: "title", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 3, - name: 'description', - kind: 'scalar', - T: 9, + name: "description", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 4, - name: 'system_prompt', - kind: 'scalar', - T: 9, + name: "system_prompt", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 5, name: 'uri', kind: 'scalar', T: 9, opt: true }, + { no: 5, name: "uri", kind: "scalar", T: 9, opt: true } ]); static fromBinary(bytes, options) { return new _RecipeScopeItem().fromBinary(bytes, options); @@ -19830,46 +17304,46 @@ var RuleScopeItem = class _RuleScopeItem extends Message { /** * @generated from field: string rule_path = 1; */ - rulePath = ''; + rulePath = ""; /** * @generated from field: string rule_name = 2; */ - ruleName = ''; + ruleName = ""; /** * TODO(sean): This is actually the content, will rename after cut to minimize * risk of bricking my local state * * @generated from field: string description = 3; */ - description = ''; + description = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.RuleScopeItem'; + static typeName = "exa.codeium_common_pb.RuleScopeItem"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'rule_path', - kind: 'scalar', - T: 9, + name: "rule_path", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'rule_name', - kind: 'scalar', - T: 9, + name: "rule_name", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 3, - name: 'description', - kind: 'scalar', - T: 9, + name: "description", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _RuleScopeItem().fromBinary(bytes, options); @@ -19888,11 +17362,11 @@ var McpResourceItem = class _McpResourceItem extends Message { /** * @generated from field: string uri = 1; */ - uri = ''; + uri = ""; /** * @generated from field: string name = 2; */ - name = ''; + name = ""; /** * @generated from field: optional string description = 3; */ @@ -19904,37 +17378,37 @@ var McpResourceItem = class _McpResourceItem extends Message { /** * @generated from field: string server_name = 5; */ - serverName = ''; + serverName = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.McpResourceItem'; + static typeName = "exa.codeium_common_pb.McpResourceItem"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'uri', - kind: 'scalar', - T: 9, + name: "uri", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'name', - kind: 'scalar', - T: 9, + name: "name", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 3, name: 'description', kind: 'scalar', T: 9, opt: true }, - { no: 4, name: 'mime_type', kind: 'scalar', T: 9, opt: true }, + { no: 3, name: "description", kind: "scalar", T: 9, opt: true }, + { no: 4, name: "mime_type", kind: "scalar", T: 9, opt: true }, { no: 5, - name: 'server_name', - kind: 'scalar', - T: 9, + name: "server_name", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _McpResourceItem().fromBinary(bytes, options); @@ -19955,60 +17429,60 @@ var BrowserPageScopeItem = class _BrowserPageScopeItem extends Message { * * @generated from field: string url = 1; */ - url = ''; + url = ""; /** * Title of the page * * @generated from field: string title = 2; */ - title = ''; + title = ""; /** * All visible text content from the page * * @generated from field: string visible_text_content = 3; */ - visibleTextContent = ''; + visibleTextContent = ""; /** * ID of the page in the browser session * * @generated from field: string page_id = 4; */ - pageId = ''; + pageId = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.BrowserPageScopeItem'; + static typeName = "exa.codeium_common_pb.BrowserPageScopeItem"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'url', - kind: 'scalar', - T: 9, + name: "url", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'title', - kind: 'scalar', - T: 9, + name: "title", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 3, - name: 'visible_text_content', - kind: 'scalar', - T: 9, + name: "visible_text_content", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 4, - name: 'page_id', - kind: 'scalar', - T: 9, + name: "page_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _BrowserPageScopeItem().fromBinary(bytes, options); @@ -20029,19 +17503,19 @@ var BrowserCodeBlockScopeItem = class _BrowserCodeBlockScopeItem extends Message * * @generated from field: string url = 1; */ - url = ''; + url = ""; /** * Title of the page * * @generated from field: string title = 2; */ - title = ''; + title = ""; /** * The text content of the code block * * @generated from field: string code_content = 3; */ - codeContent = ''; + codeContent = ""; /** * Detected or user-specified language of the code * @@ -20059,44 +17533,44 @@ var BrowserCodeBlockScopeItem = class _BrowserCodeBlockScopeItem extends Message * * @generated from field: string page_id = 6; */ - pageId = ''; + pageId = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.BrowserCodeBlockScopeItem'; + static typeName = "exa.codeium_common_pb.BrowserCodeBlockScopeItem"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'url', - kind: 'scalar', - T: 9, + name: "url", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'title', - kind: 'scalar', - T: 9, + name: "title", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 3, - name: 'code_content', - kind: 'scalar', - T: 9, + name: "code_content", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 4, name: 'language', kind: 'enum', T: proto3.getEnumType(Language) }, - { no: 5, name: 'context_text', kind: 'scalar', T: 9, opt: true }, + { no: 4, name: "language", kind: "enum", T: proto3.getEnumType(Language) }, + { no: 5, name: "context_text", kind: "scalar", T: 9, opt: true }, { no: 6, - name: 'page_id', - kind: 'scalar', - T: 9, + name: "page_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _BrowserCodeBlockScopeItem().fromBinary(bytes, options); @@ -20117,47 +17591,47 @@ var BrowserTextScopeItem = class _BrowserTextScopeItem extends Message { * * @generated from field: string url = 1; */ - url = ''; + url = ""; /** * The inner text content of the selected element * * @generated from field: string visible_text = 2; */ - visibleText = ''; + visibleText = ""; /** * ID of the page in the browser session * * @generated from field: string page_id = 3; */ - pageId = ''; + pageId = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.BrowserTextScopeItem'; + static typeName = "exa.codeium_common_pb.BrowserTextScopeItem"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'url', - kind: 'scalar', - T: 9, + name: "url", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'visible_text', - kind: 'scalar', - T: 9, + name: "visible_text", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 3, - name: 'page_id', - kind: 'scalar', - T: 9, + name: "page_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _BrowserTextScopeItem().fromBinary(bytes, options); @@ -20178,13 +17652,13 @@ var ConversationScopeItem = class _ConversationScopeItem extends Message { * * @generated from field: string id = 1; */ - id = ''; + id = ""; /** * Conversation title * * @generated from field: string title = 2; */ - title = ''; + title = ""; /** * Last modified time * @@ -20196,23 +17670,23 @@ var ConversationScopeItem = class _ConversationScopeItem extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.ConversationScopeItem'; + static typeName = "exa.codeium_common_pb.ConversationScopeItem"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'id', - kind: 'scalar', - T: 9, + name: "id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'title', - kind: 'scalar', - T: 9, + name: "title", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 3, name: 'last_modified_time', kind: 'message', T: Timestamp }, + { no: 3, name: "last_modified_time", kind: "message", T: Timestamp } ]); static fromBinary(bytes, options) { return new _ConversationScopeItem().fromBinary(bytes, options); @@ -20233,13 +17707,13 @@ var UserActivityScopeItem = class _UserActivityScopeItem extends Message { * * @generated from field: string id = 1; */ - id = ''; + id = ""; /** * Git branch associated with activity ("" if there is no branch) * * @generated from field: string branch = 2; */ - branch = ''; + branch = ""; /** * Whether this is the active trajectory for an active workspace * @@ -20251,29 +17725,29 @@ var UserActivityScopeItem = class _UserActivityScopeItem extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.UserActivityScopeItem'; + static typeName = "exa.codeium_common_pb.UserActivityScopeItem"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'id', - kind: 'scalar', - T: 9, + name: "id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'branch', - kind: 'scalar', - T: 9, + name: "branch", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 3, - name: 'current', - kind: 'scalar', - T: 8, + name: "current", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ - }, + } ]); static fromBinary(bytes, options) { return new _UserActivityScopeItem().fromBinary(bytes, options); @@ -20294,19 +17768,19 @@ var TerminalScopeItem = class _TerminalScopeItem extends Message { * * @generated from field: string process_id = 1; */ - processId = ''; + processId = ""; /** * Terminal name * * @generated from field: string name = 2; */ - name = ''; + name = ""; /** * Last command executed in the terminal * * @generated from field: string last_command = 3; */ - lastCommand = ''; + lastCommand = ""; /** * Content of some selection within the terminal buffer. * @@ -20318,30 +17792,30 @@ var TerminalScopeItem = class _TerminalScopeItem extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.TerminalScopeItem'; + static typeName = "exa.codeium_common_pb.TerminalScopeItem"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'process_id', - kind: 'scalar', - T: 9, + name: "process_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'name', - kind: 'scalar', - T: 9, + name: "name", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 3, - name: 'last_command', - kind: 'scalar', - T: 9, + name: "last_command", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 4, name: 'selectionContent', kind: 'scalar', T: 9, opt: true }, + { no: 4, name: "selectionContent", kind: "scalar", T: 9, opt: true } ]); static fromBinary(bytes, options) { return new _TerminalScopeItem().fromBinary(bytes, options); @@ -20366,176 +17840,32 @@ var ContextScopeItem = class _ContextScopeItem extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.ContextScopeItem'; + static typeName = "exa.codeium_common_pb.ContextScopeItem"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'file', - kind: 'message', - T: PathScopeItem, - oneof: 'scope_item', - }, - { - no: 2, - name: 'directory', - kind: 'message', - T: PathScopeItem, - oneof: 'scope_item', - }, - { - no: 3, - name: 'repository', - kind: 'message', - T: RepositoryScopeItem, - oneof: 'scope_item', - }, - { - no: 4, - name: 'code_context', - kind: 'message', - T: CodeContextItem, - oneof: 'scope_item', - }, - { - no: 6, - name: 'cci_with_subrange', - kind: 'message', - T: CciWithSubrange, - oneof: 'scope_item', - }, - { - no: 7, - name: 'repository_path', - kind: 'message', - T: RepositoryPathScopeItem, - oneof: 'scope_item', - }, - { - no: 8, - name: 'slack', - kind: 'message', - T: KnowledgeBaseScopeItem, - oneof: 'scope_item', - }, - { - no: 9, - name: 'github', - kind: 'message', - T: KnowledgeBaseScopeItem, - oneof: 'scope_item', - }, - { - no: 10, - name: 'file_line_range', - kind: 'message', - T: FileLineRange, - oneof: 'scope_item', - }, - { - no: 11, - name: 'text_block', - kind: 'message', - T: TextBlock, - oneof: 'scope_item', - }, - { - no: 12, - name: 'jira', - kind: 'message', - T: KnowledgeBaseScopeItem, - oneof: 'scope_item', - }, - { - no: 13, - name: 'google_drive', - kind: 'message', - T: KnowledgeBaseScopeItem, - oneof: 'scope_item', - }, - { - no: 14, - name: 'console_log', - kind: 'message', - T: ConsoleLogScopeItem, - oneof: 'scope_item', - }, - { - no: 15, - name: 'dom_element', - kind: 'message', - T: DOMElementScopeItem, - oneof: 'scope_item', - }, - { - no: 16, - name: 'recipe', - kind: 'message', - T: RecipeScopeItem, - oneof: 'scope_item', - }, - { - no: 17, - name: 'knowledge', - kind: 'message', - T: KnowledgeBaseScopeItem, - oneof: 'scope_item', - }, - { - no: 18, - name: 'rule', - kind: 'message', - T: RuleScopeItem, - oneof: 'scope_item', - }, - { - no: 19, - name: 'mcp_resource', - kind: 'message', - T: McpResourceItem, - oneof: 'scope_item', - }, - { - no: 20, - name: 'browser_page', - kind: 'message', - T: BrowserPageScopeItem, - oneof: 'scope_item', - }, - { - no: 21, - name: 'browser_code_block', - kind: 'message', - T: BrowserCodeBlockScopeItem, - oneof: 'scope_item', - }, - { - no: 22, - name: 'browser_text', - kind: 'message', - T: BrowserTextScopeItem, - oneof: 'scope_item', - }, - { - no: 23, - name: 'conversation', - kind: 'message', - T: ConversationScopeItem, - oneof: 'scope_item', - }, - { - no: 24, - name: 'user_activity', - kind: 'message', - T: UserActivityScopeItem, - oneof: 'scope_item', - }, - { - no: 25, - name: 'terminal', - kind: 'message', - T: TerminalScopeItem, - oneof: 'scope_item', - }, + { no: 1, name: "file", kind: "message", T: PathScopeItem, oneof: "scope_item" }, + { no: 2, name: "directory", kind: "message", T: PathScopeItem, oneof: "scope_item" }, + { no: 3, name: "repository", kind: "message", T: RepositoryScopeItem, oneof: "scope_item" }, + { no: 4, name: "code_context", kind: "message", T: CodeContextItem, oneof: "scope_item" }, + { no: 6, name: "cci_with_subrange", kind: "message", T: CciWithSubrange, oneof: "scope_item" }, + { no: 7, name: "repository_path", kind: "message", T: RepositoryPathScopeItem, oneof: "scope_item" }, + { no: 8, name: "slack", kind: "message", T: KnowledgeBaseScopeItem, oneof: "scope_item" }, + { no: 9, name: "github", kind: "message", T: KnowledgeBaseScopeItem, oneof: "scope_item" }, + { no: 10, name: "file_line_range", kind: "message", T: FileLineRange, oneof: "scope_item" }, + { no: 11, name: "text_block", kind: "message", T: TextBlock, oneof: "scope_item" }, + { no: 12, name: "jira", kind: "message", T: KnowledgeBaseScopeItem, oneof: "scope_item" }, + { no: 13, name: "google_drive", kind: "message", T: KnowledgeBaseScopeItem, oneof: "scope_item" }, + { no: 14, name: "console_log", kind: "message", T: ConsoleLogScopeItem, oneof: "scope_item" }, + { no: 15, name: "dom_element", kind: "message", T: DOMElementScopeItem, oneof: "scope_item" }, + { no: 16, name: "recipe", kind: "message", T: RecipeScopeItem, oneof: "scope_item" }, + { no: 17, name: "knowledge", kind: "message", T: KnowledgeBaseScopeItem, oneof: "scope_item" }, + { no: 18, name: "rule", kind: "message", T: RuleScopeItem, oneof: "scope_item" }, + { no: 19, name: "mcp_resource", kind: "message", T: McpResourceItem, oneof: "scope_item" }, + { no: 20, name: "browser_page", kind: "message", T: BrowserPageScopeItem, oneof: "scope_item" }, + { no: 21, name: "browser_code_block", kind: "message", T: BrowserCodeBlockScopeItem, oneof: "scope_item" }, + { no: 22, name: "browser_text", kind: "message", T: BrowserTextScopeItem, oneof: "scope_item" }, + { no: 23, name: "conversation", kind: "message", T: ConversationScopeItem, oneof: "scope_item" }, + { no: 24, name: "user_activity", kind: "message", T: UserActivityScopeItem, oneof: "scope_item" }, + { no: 25, name: "terminal", kind: "message", T: TerminalScopeItem, oneof: "scope_item" } ]); static fromBinary(bytes, options) { return new _ContextScopeItem().fromBinary(bytes, options); @@ -20560,15 +17890,9 @@ var ContextScope = class _ContextScope extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.ContextScope'; + static typeName = "exa.codeium_common_pb.ContextScope"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'items', - kind: 'message', - T: ContextScopeItem, - repeated: true, - }, + { no: 1, name: "items", kind: "message", T: ContextScopeItem, repeated: true } ]); static fromBinary(bytes, options) { return new _ContextScope().fromBinary(bytes, options); @@ -20587,7 +17911,7 @@ var NodeExecutionRecord = class _NodeExecutionRecord extends Message { /** * @generated from field: string node_name = 1; */ - nodeName = ''; + nodeName = ""; /** * @generated from field: google.protobuf.Timestamp start_time = 2; */ @@ -20617,37 +17941,32 @@ var NodeExecutionRecord = class _NodeExecutionRecord extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.NodeExecutionRecord'; + static typeName = "exa.codeium_common_pb.NodeExecutionRecord"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'node_name', - kind: 'scalar', - T: 9, + name: "node_name", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 2, name: 'start_time', kind: 'message', T: Timestamp }, - { no: 3, name: 'end_time', kind: 'message', T: Timestamp }, + { no: 2, name: "start_time", kind: "message", T: Timestamp }, + { no: 3, name: "end_time", kind: "message", T: Timestamp }, { no: 5, - name: 'graph_state_json', - kind: 'scalar', - T: 12, + name: "graph_state_json", + kind: "scalar", + T: 12 /* ScalarType.BYTES */ }, { no: 6, - name: 'graph_state_json_num_bytes', - kind: 'scalar', - T: 4, + name: "graph_state_json_num_bytes", + kind: "scalar", + T: 4 /* ScalarType.UINT64 */ }, - { - no: 4, - name: 'subgraph_execution', - kind: 'message', - T: GraphExecutionState, - }, + { no: 4, name: "subgraph_execution", kind: "message", T: GraphExecutionState } ]); static fromBinary(bytes, options) { return new _NodeExecutionRecord().fromBinary(bytes, options); @@ -20676,16 +17995,10 @@ var GraphExecutionState = class _GraphExecutionState extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.GraphExecutionState'; + static typeName = "exa.codeium_common_pb.GraphExecutionState"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'current', kind: 'message', T: NodeExecutionRecord }, - { - no: 2, - name: 'history', - kind: 'message', - T: NodeExecutionRecord, - repeated: true, - }, + { no: 1, name: "current", kind: "message", T: NodeExecutionRecord }, + { no: 2, name: "history", kind: "message", T: NodeExecutionRecord, repeated: true } ]); static fromBinary(bytes, options) { return new _GraphExecutionState().fromBinary(bytes, options); @@ -20713,9 +18026,9 @@ var Guideline = class _Guideline extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.Guideline'; + static typeName = "exa.codeium_common_pb.Guideline"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'items', kind: 'message', T: GuidelineItem, repeated: true }, + { no: 1, name: "items", kind: "message", T: GuidelineItem, repeated: true } ]); static fromBinary(bytes, options) { return new _Guideline().fromBinary(bytes, options); @@ -20736,21 +18049,21 @@ var GuidelineItem = class _GuidelineItem extends Message { * * @generated from field: string guideline = 1; */ - guideline = ''; + guideline = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.GuidelineItem'; + static typeName = "exa.codeium_common_pb.GuidelineItem"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'guideline', - kind: 'scalar', - T: 9, + name: "guideline", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _GuidelineItem().fromBinary(bytes, options); @@ -20793,37 +18106,37 @@ var ChatNodeConfig = class _ChatNodeConfig extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.ChatNodeConfig'; + static typeName = "exa.codeium_common_pb.ChatNodeConfig"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'model', kind: 'enum', T: proto3.getEnumType(Model) }, + { no: 1, name: "model", kind: "enum", T: proto3.getEnumType(Model) }, { no: 2, - name: 'max_input_tokens', - kind: 'scalar', - T: 13, + name: "max_input_tokens", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, { no: 3, - name: 'temperature', - kind: 'scalar', - T: 2, + name: "temperature", + kind: "scalar", + T: 2 /* ScalarType.FLOAT */ }, { no: 4, - name: 'max_output_tokens', - kind: 'scalar', - T: 13, + name: "max_output_tokens", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, { no: 5, - name: 'order_snippets_by_file', - kind: 'scalar', - T: 8, + name: "order_snippets_by_file", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ - }, + } ]); static fromBinary(bytes, options) { return new _ChatNodeConfig().fromBinary(bytes, options); @@ -20892,72 +18205,66 @@ var MQueryConfig = class _MQueryConfig extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.MQueryConfig'; + static typeName = "exa.codeium_common_pb.MQueryConfig"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'should_batch_ccis', - kind: 'scalar', - T: 8, + name: "should_batch_ccis", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 2, - name: 'max_tokens_per_subrange', - kind: 'scalar', - T: 3, + name: "max_tokens_per_subrange", + kind: "scalar", + T: 3 /* ScalarType.INT64 */ }, { no: 3, - name: 'num_parser_workers', - kind: 'scalar', - T: 3, + name: "num_parser_workers", + kind: "scalar", + T: 3 /* ScalarType.INT64 */ }, { no: 4, - name: 'num_workers_per_distributed_scorer', - kind: 'scalar', - T: 3, + name: "num_workers_per_distributed_scorer", + kind: "scalar", + T: 3 /* ScalarType.INT64 */ }, { no: 5, - name: 'verbose', - kind: 'scalar', - T: 8, + name: "verbose", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, - { no: 6, name: 'ignore_extensions', kind: 'scalar', T: 9, repeated: true }, - { - no: 7, - name: 'ignore_directory_stubs', - kind: 'scalar', - T: 9, - repeated: true, - }, + { no: 6, name: "ignore_extensions", kind: "scalar", T: 9, repeated: true }, + { no: 7, name: "ignore_directory_stubs", kind: "scalar", T: 9, repeated: true }, { no: 8, - name: 'min_token_space_for_context', - kind: 'scalar', - T: 13, + name: "min_token_space_for_context", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, { no: 9, - name: 'max_target_files', - kind: 'scalar', - T: 13, + name: "max_target_files", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, { no: 10, - name: 'top_cci_count', - kind: 'scalar', - T: 13, + name: "top_cci_count", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ - }, + } ]); static fromBinary(bytes, options) { return new _MQueryConfig().fromBinary(bytes, options); @@ -20976,11 +18283,11 @@ var CompletionDelta = class _CompletionDelta extends Message { /** * @generated from field: string delta_text = 1; */ - deltaText = ''; + deltaText = ""; /** * @generated from field: string delta_raw_generation = 12; */ - deltaRawGeneration = ''; + deltaRawGeneration = ""; /** * @generated from field: uint32 delta_tokens = 2; */ @@ -21005,7 +18312,7 @@ var CompletionDelta = class _CompletionDelta extends Message { /** * @generated from field: string delta_thinking = 6; */ - deltaThinking = ''; + deltaThinking = ""; /** * @generated from field: bytes delta_signature = 7; */ @@ -21028,92 +18335,81 @@ var CompletionDelta = class _CompletionDelta extends Message { * * @generated from field: string trace_id = 13; */ - traceId = ''; + traceId = ""; /** * Optional message from the model explaining the stop reason. * Currently populated when Gemini API returns a finishMessage. * * @generated from field: string stop_message = 14; */ - stopMessage = ''; + stopMessage = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.CompletionDelta'; + static typeName = "exa.codeium_common_pb.CompletionDelta"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'delta_text', - kind: 'scalar', - T: 9, + name: "delta_text", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 12, - name: 'delta_raw_generation', - kind: 'scalar', - T: 9, + name: "delta_raw_generation", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'delta_tokens', - kind: 'scalar', - T: 13, + name: "delta_tokens", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, - { - no: 3, - name: 'stop_reason', - kind: 'enum', - T: proto3.getEnumType(StopReason), - }, - { no: 4, name: 'usage', kind: 'message', T: ModelUsageStats }, - { - no: 5, - name: 'delta_tool_calls', - kind: 'message', - T: ChatToolCall, - repeated: true, - }, + { no: 3, name: "stop_reason", kind: "enum", T: proto3.getEnumType(StopReason) }, + { no: 4, name: "usage", kind: "message", T: ModelUsageStats }, + { no: 5, name: "delta_tool_calls", kind: "message", T: ChatToolCall, repeated: true }, { no: 6, - name: 'delta_thinking', - kind: 'scalar', - T: 9, + name: "delta_thinking", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 7, - name: 'delta_signature', - kind: 'scalar', - T: 12, + name: "delta_signature", + kind: "scalar", + T: 12 /* ScalarType.BYTES */ }, { no: 8, - name: 'thinking_redacted', - kind: 'scalar', - T: 8, + name: "thinking_redacted", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, - { no: 11, name: 'citation_metadata', kind: 'message', T: CitationMetadata }, + { no: 11, name: "citation_metadata", kind: "message", T: CitationMetadata }, { no: 13, - name: 'trace_id', - kind: 'scalar', - T: 9, + name: "trace_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 14, - name: 'stop_message', - kind: 'scalar', - T: 9, + name: "stop_message", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _CompletionDelta().fromBinary(bytes, options); @@ -21149,7 +18445,7 @@ var CompletionDeltaMap = class _CompletionDeltaMap extends Message { * * @generated from field: string prompt = 2; */ - prompt = ''; + prompt = ""; /** * CompletionProfile contains latency profiling info for the completions * This is guaranteed to be populated in at most one response delta (the last @@ -21163,28 +18459,17 @@ var CompletionDeltaMap = class _CompletionDeltaMap extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.CompletionDeltaMap'; + static typeName = "exa.codeium_common_pb.CompletionDeltaMap"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'deltas', - kind: 'map', - K: 5, - V: { kind: 'message', T: CompletionDelta }, - }, + { no: 1, name: "deltas", kind: "map", K: 5, V: { kind: "message", T: CompletionDelta } }, { no: 2, - name: 'prompt', - kind: 'scalar', - T: 9, + name: "prompt", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { - no: 3, - name: 'completion_profile', - kind: 'message', - T: CompletionProfile, - }, + { no: 3, name: "completion_profile", kind: "message", T: CompletionProfile } ]); static fromBinary(bytes, options) { return new _CompletionDeltaMap().fromBinary(bytes, options); @@ -21203,43 +18488,43 @@ var ChatCompletionInfo = class _ChatCompletionInfo extends Message { /** * @generated from field: string prompt = 1; */ - prompt = ''; + prompt = ""; /** * @generated from field: string inference_address = 2; */ - inferenceAddress = ''; + inferenceAddress = ""; /** * @generated from field: string serialized_prompt = 3; */ - serializedPrompt = ''; + serializedPrompt = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.ChatCompletionInfo'; + static typeName = "exa.codeium_common_pb.ChatCompletionInfo"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'prompt', - kind: 'scalar', - T: 9, + name: "prompt", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'inference_address', - kind: 'scalar', - T: 9, + name: "inference_address", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 3, - name: 'serialized_prompt', - kind: 'scalar', - T: 9, + name: "serialized_prompt", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _ChatCompletionInfo().fromBinary(bytes, options); @@ -21258,15 +18543,15 @@ var ChatToolCall = class _ChatToolCall extends Message { /** * @generated from field: string id = 1; */ - id = ''; + id = ""; /** * @generated from field: string name = 2; */ - name = ''; + name = ""; /** * @generated from field: string arguments_json = 3; */ - argumentsJson = ''; + argumentsJson = ""; /** * If the JSON provided in the tool call is invalid, then arguments_json will * be {} and the underlying invalid_json_str will contain the raw invalid @@ -21275,13 +18560,13 @@ var ChatToolCall = class _ChatToolCall extends Message { * * @generated from field: string invalid_json_str = 4; */ - invalidJsonStr = ''; + invalidJsonStr = ""; /** * Error message describing why the json is invalid. * * @generated from field: string invalid_json_err = 5; */ - invalidJsonErr = ''; + invalidJsonErr = ""; /** * Gemini API can return thought signatures in function call parts, so we * need to save it in the tool call too. @@ -21290,7 +18575,7 @@ var ChatToolCall = class _ChatToolCall extends Message { * @generated from field: string thought_signature = 6 [deprecated = true]; * @deprecated */ - thoughtSignature = ''; + thoughtSignature = ""; /** * @generated from field: bytes thinking_signature = 7; */ @@ -21302,70 +18587,70 @@ var ChatToolCall = class _ChatToolCall extends Message { * * @generated from field: string original_arguments_json = 8; */ - originalArgumentsJson = ''; + originalArgumentsJson = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.ChatToolCall'; + static typeName = "exa.codeium_common_pb.ChatToolCall"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'id', - kind: 'scalar', - T: 9, + name: "id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'name', - kind: 'scalar', - T: 9, + name: "name", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 3, - name: 'arguments_json', - kind: 'scalar', - T: 9, + name: "arguments_json", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 4, - name: 'invalid_json_str', - kind: 'scalar', - T: 9, + name: "invalid_json_str", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 5, - name: 'invalid_json_err', - kind: 'scalar', - T: 9, + name: "invalid_json_err", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 6, - name: 'thought_signature', - kind: 'scalar', - T: 9, + name: "thought_signature", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 7, - name: 'thinking_signature', - kind: 'scalar', - T: 12, + name: "thinking_signature", + kind: "scalar", + T: 12 /* ScalarType.BYTES */ }, { no: 8, - name: 'original_arguments_json', - kind: 'scalar', - T: 9, + name: "original_arguments_json", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _ChatToolCall().fromBinary(bytes, options); @@ -21388,22 +18673,22 @@ var Status = class _Status extends Message { /** * @generated from field: string message = 2; */ - message = ''; + message = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.Status'; + static typeName = "exa.codeium_common_pb.Status"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'level', kind: 'enum', T: proto3.getEnumType(StatusLevel) }, + { no: 1, name: "level", kind: "enum", T: proto3.getEnumType(StatusLevel) }, { no: 2, - name: 'message', - kind: 'scalar', - T: 9, + name: "message", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _Status().fromBinary(bytes, options); @@ -21436,22 +18721,22 @@ var DocumentPosition = class _DocumentPosition extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.DocumentPosition'; + static typeName = "exa.codeium_common_pb.DocumentPosition"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'row', - kind: 'scalar', - T: 4, + name: "row", + kind: "scalar", + T: 4 /* ScalarType.UINT64 */ }, { no: 2, - name: 'col', - kind: 'scalar', - T: 4, + name: "col", + kind: "scalar", + T: 4 /* ScalarType.UINT64 */ - }, + } ]); static fromBinary(bytes, options) { return new _DocumentPosition().fromBinary(bytes, options); @@ -21494,24 +18779,24 @@ var Range = class _Range extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.Range'; + static typeName = "exa.codeium_common_pb.Range"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'start_offset', - kind: 'scalar', - T: 4, + name: "start_offset", + kind: "scalar", + T: 4 /* ScalarType.UINT64 */ }, { no: 2, - name: 'end_offset', - kind: 'scalar', - T: 4, + name: "end_offset", + kind: "scalar", + T: 4 /* ScalarType.UINT64 */ }, - { no: 3, name: 'start_position', kind: 'message', T: DocumentPosition }, - { no: 4, name: 'end_position', kind: 'message', T: DocumentPosition }, + { no: 3, name: "start_position", kind: "message", T: DocumentPosition }, + { no: 4, name: "end_position", kind: "message", T: DocumentPosition } ]); static fromBinary(bytes, options) { return new _Range().fromBinary(bytes, options); @@ -21533,11 +18818,11 @@ var Document = class _Document extends Message { * @generated from field: string absolute_path_migrate_me_to_uri = 1 [deprecated = true]; * @deprecated */ - absolutePathMigrateMeToUri = ''; + absolutePathMigrateMeToUri = ""; /** * @generated from field: string absolute_uri = 12; */ - absoluteUri = ''; + absoluteUri = ""; /** * Path relative to the root of the workspace. Slash separated. * Leave empty if the document is not in the workspace. @@ -21545,21 +18830,21 @@ var Document = class _Document extends Message { * @generated from field: string relative_path_migrate_me_to_workspace_uri = 2 [deprecated = true]; * @deprecated */ - relativePathMigrateMeToWorkspaceUri = ''; + relativePathMigrateMeToWorkspaceUri = ""; /** * @generated from field: string workspace_uri = 13; */ - workspaceUri = ''; + workspaceUri = ""; /** * @generated from field: string text = 3; */ - text = ''; + text = ""; /** * Language ID provided by the editor. * * @generated from field: string editor_language = 4; */ - editorLanguage = ''; + editorLanguage = ""; /** * Language enum standardized across editors. * @@ -21583,7 +18868,7 @@ var Document = class _Document extends Message { * * @generated from field: string line_ending = 7; */ - lineEnding = ''; + lineEnding = ""; /** * Portion of document visible in IDE; * @@ -21642,110 +18927,110 @@ var Document = class _Document extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.Document'; + static typeName = "exa.codeium_common_pb.Document"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'absolute_path_migrate_me_to_uri', - kind: 'scalar', - T: 9, + name: "absolute_path_migrate_me_to_uri", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 12, - name: 'absolute_uri', - kind: 'scalar', - T: 9, + name: "absolute_uri", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'relative_path_migrate_me_to_workspace_uri', - kind: 'scalar', - T: 9, + name: "relative_path_migrate_me_to_workspace_uri", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 13, - name: 'workspace_uri', - kind: 'scalar', - T: 9, + name: "workspace_uri", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 3, - name: 'text', - kind: 'scalar', - T: 9, + name: "text", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 4, - name: 'editor_language', - kind: 'scalar', - T: 9, + name: "editor_language", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 5, name: 'language', kind: 'enum', T: proto3.getEnumType(Language) }, + { no: 5, name: "language", kind: "enum", T: proto3.getEnumType(Language) }, { no: 6, - name: 'cursor_offset', - kind: 'scalar', - T: 4, + name: "cursor_offset", + kind: "scalar", + T: 4 /* ScalarType.UINT64 */ }, - { no: 8, name: 'cursor_position', kind: 'message', T: DocumentPosition }, + { no: 8, name: "cursor_position", kind: "message", T: DocumentPosition }, { no: 7, - name: 'line_ending', - kind: 'scalar', - T: 9, + name: "line_ending", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 9, name: 'visible_range', kind: 'message', T: Range }, + { no: 9, name: "visible_range", kind: "message", T: Range }, { no: 10, - name: 'is_cutoff_start', - kind: 'scalar', - T: 8, + name: "is_cutoff_start", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 11, - name: 'is_cutoff_end', - kind: 'scalar', - T: 8, + name: "is_cutoff_end", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 14, - name: 'lines_cutoff_start', - kind: 'scalar', - T: 5, + name: "lines_cutoff_start", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, { no: 15, - name: 'lines_cutoff_end', - kind: 'scalar', - T: 5, + name: "lines_cutoff_end", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, - { no: 16, name: 'timestamp', kind: 'message', T: Timestamp }, + { no: 16, name: "timestamp", kind: "message", T: Timestamp }, { no: 17, - name: 'is_dirty', - kind: 'scalar', - T: 8, + name: "is_dirty", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 18, - name: 'is_synthetic', - kind: 'scalar', - T: 8, + name: "is_synthetic", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ - }, + } ]); static fromBinary(bytes, options) { return new _Document().fromBinary(bytes, options); @@ -21782,23 +19067,11 @@ var PromptComponents = class _PromptComponents extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.PromptComponents'; + static typeName = "exa.codeium_common_pb.PromptComponents"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'document', kind: 'message', T: Document }, - { - no: 2, - name: 'other_documents', - kind: 'message', - T: Document, - repeated: true, - }, - { - no: 3, - name: 'code_context_items', - kind: 'message', - T: CodeContextItem, - repeated: true, - }, + { no: 1, name: "document", kind: "message", T: Document }, + { no: 2, name: "other_documents", kind: "message", T: Document, repeated: true }, + { no: 3, name: "code_context_items", kind: "message", T: CodeContextItem, repeated: true } ]); static fromBinary(bytes, options) { return new _PromptComponents().fromBinary(bytes, options); @@ -21823,16 +19096,10 @@ var TextOrScopeItem = class _TextOrScopeItem extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.TextOrScopeItem'; + static typeName = "exa.codeium_common_pb.TextOrScopeItem"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'text', kind: 'scalar', T: 9, oneof: 'chunk' }, - { - no: 2, - name: 'item', - kind: 'message', - T: ContextScopeItem, - oneof: 'chunk', - }, + { no: 1, name: "text", kind: "scalar", T: 9, oneof: "chunk" }, + { no: 2, name: "item", kind: "message", T: ContextScopeItem, oneof: "chunk" } ]); static fromBinary(bytes, options) { return new _TextOrScopeItem().fromBinary(bytes, options); @@ -21853,13 +19120,13 @@ var PinnedContextConfig = class _PinnedContextConfig extends Message { * * @generated from field: string match_repo_name = 1; */ - matchRepoName = ''; + matchRepoName = ""; /** * Prefix match path. * * @generated from field: string match_path = 2; */ - matchPath = ''; + matchPath = ""; /** * @generated from field: repeated exa.codeium_common_pb.PinnedContext pinned_contexts = 3; */ @@ -21869,29 +19136,23 @@ var PinnedContextConfig = class _PinnedContextConfig extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.PinnedContextConfig'; + static typeName = "exa.codeium_common_pb.PinnedContextConfig"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'match_repo_name', - kind: 'scalar', - T: 9, + name: "match_repo_name", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'match_path', - kind: 'scalar', - T: 9, + name: "match_path", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { - no: 3, - name: 'pinned_contexts', - kind: 'message', - T: PinnedContext, - repeated: true, - }, + { no: 3, name: "pinned_contexts", kind: "message", T: PinnedContext, repeated: true } ]); static fromBinary(bytes, options) { return new _PinnedContextConfig().fromBinary(bytes, options); @@ -21916,15 +19177,9 @@ var PinnedContext = class _PinnedContext extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.PinnedContext'; + static typeName = "exa.codeium_common_pb.PinnedContext"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'repository_path', - kind: 'message', - T: RepositoryPath, - oneof: 'context_item', - }, + { no: 1, name: "repository_path", kind: "message", T: RepositoryPath, oneof: "context_item" } ]); static fromBinary(bytes, options) { return new _PinnedContext().fromBinary(bytes, options); @@ -21943,47 +19198,47 @@ var RepositoryPath = class _RepositoryPath extends Message { /** * @generated from field: string remote_repo_name = 1; */ - remoteRepoName = ''; + remoteRepoName = ""; /** * empty string for latest * * @generated from field: string version = 2; */ - version = ''; + version = ""; /** * empty string for relative_path will pin the whole repo instead * * @generated from field: string relative_path = 3; */ - relativePath = ''; + relativePath = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.RepositoryPath'; + static typeName = "exa.codeium_common_pb.RepositoryPath"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'remote_repo_name', - kind: 'scalar', - T: 9, + name: "remote_repo_name", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'version', - kind: 'scalar', - T: 9, + name: "version", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 3, - name: 'relative_path', - kind: 'scalar', - T: 9, + name: "relative_path", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _RepositoryPath().fromBinary(bytes, options); @@ -22010,15 +19265,9 @@ var DefaultPinnedContextConfig = class _DefaultPinnedContextConfig extends Messa proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.DefaultPinnedContextConfig'; + static typeName = "exa.codeium_common_pb.DefaultPinnedContextConfig"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'pinned_context_configs', - kind: 'message', - T: PinnedContextConfig, - repeated: true, - }, + { no: 1, name: "pinned_context_configs", kind: "message", T: PinnedContextConfig, repeated: true } ]); static fromBinary(bytes, options) { return new _DefaultPinnedContextConfig().fromBinary(bytes, options); @@ -22027,10 +19276,7 @@ var DefaultPinnedContextConfig = class _DefaultPinnedContextConfig extends Messa return new _DefaultPinnedContextConfig().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _DefaultPinnedContextConfig().fromJsonString( - jsonString, - options, - ); + return new _DefaultPinnedContextConfig().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_DefaultPinnedContextConfig, a, b); @@ -22040,32 +19286,32 @@ var Rule = class _Rule extends Message { /** * @generated from field: string id = 1; */ - id = ''; + id = ""; /** * @generated from field: string prompt = 2; */ - prompt = ''; + prompt = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.Rule'; + static typeName = "exa.codeium_common_pb.Rule"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'id', - kind: 'scalar', - T: 9, + name: "id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'prompt', - kind: 'scalar', - T: 9, + name: "prompt", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _Rule().fromBinary(bytes, options); @@ -22084,7 +19330,7 @@ var RuleViolation = class _RuleViolation extends Message { /** * @generated from field: string id = 1; */ - id = ''; + id = ""; /** * @generated from field: exa.codeium_common_pb.Rule rule = 2; */ @@ -22102,30 +19348,30 @@ var RuleViolation = class _RuleViolation extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.RuleViolation'; + static typeName = "exa.codeium_common_pb.RuleViolation"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'id', - kind: 'scalar', - T: 9, + name: "id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 2, name: 'rule', kind: 'message', T: Rule }, + { no: 2, name: "rule", kind: "message", T: Rule }, { no: 3, - name: 'start_line', - kind: 'scalar', - T: 5, + name: "start_line", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, { no: 4, - name: 'end_line', - kind: 'scalar', - T: 5, + name: "end_line", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ - }, + } ]); static fromBinary(bytes, options) { return new _RuleViolation().fromBinary(bytes, options); @@ -22150,9 +19396,9 @@ var LanguageServerDiagnostics = class _LanguageServerDiagnostics extends Message proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.LanguageServerDiagnostics'; + static typeName = "exa.codeium_common_pb.LanguageServerDiagnostics"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'logs', kind: 'scalar', T: 9, repeated: true }, + { no: 1, name: "logs", kind: "scalar", T: 9, repeated: true } ]); static fromBinary(bytes, options) { return new _LanguageServerDiagnostics().fromBinary(bytes, options); @@ -22177,9 +19423,9 @@ var IndexerStats = class _IndexerStats extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.IndexerStats'; + static typeName = "exa.codeium_common_pb.IndexerStats"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'database', kind: 'message', T: IndexerDbStats }, + { no: 1, name: "database", kind: "message", T: IndexerDbStats } ]); static fromBinary(bytes, options) { return new _IndexerStats().fromBinary(bytes, options); @@ -22204,22 +19450,10 @@ var IndexerDbStats = class _IndexerDbStats extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.IndexerDbStats'; + static typeName = "exa.codeium_common_pb.IndexerDbStats"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'local_sqlite_faiss', - kind: 'message', - T: LocalSqliteFaissDbStats, - oneof: 'backend', - }, - { - no: 2, - name: 'postgres', - kind: 'message', - T: PostgresDbStats, - oneof: 'backend', - }, + { no: 1, name: "local_sqlite_faiss", kind: "message", T: LocalSqliteFaissDbStats, oneof: "backend" }, + { no: 2, name: "postgres", kind: "message", T: PostgresDbStats, oneof: "backend" } ]); static fromBinary(bytes, options) { return new _IndexerDbStats().fromBinary(bytes, options); @@ -22252,29 +19486,23 @@ var LocalSqliteFaissDbStats = class _LocalSqliteFaissDbStats extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.LocalSqliteFaissDbStats'; + static typeName = "exa.codeium_common_pb.LocalSqliteFaissDbStats"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'faiss_state_stats', - kind: 'message', - T: FaissStateStats, - repeated: true, - }, + { no: 1, name: "faiss_state_stats", kind: "message", T: FaissStateStats, repeated: true }, { no: 2, - name: 'total_item_count', - kind: 'scalar', - T: 3, + name: "total_item_count", + kind: "scalar", + T: 3 /* ScalarType.INT64 */ }, { no: 3, - name: 'quantized', - kind: 'scalar', - T: 8, + name: "quantized", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ - }, + } ]); static fromBinary(bytes, options) { return new _LocalSqliteFaissDbStats().fromBinary(bytes, options); @@ -22297,7 +19525,7 @@ var FaissStateStats = class _FaissStateStats extends Message { /** * @generated from field: string workspace = 2; */ - workspace = ''; + workspace = ""; /** * @generated from field: int64 item_count = 3; */ @@ -22307,28 +19535,23 @@ var FaissStateStats = class _FaissStateStats extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.FaissStateStats'; + static typeName = "exa.codeium_common_pb.FaissStateStats"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'embedding_source', - kind: 'enum', - T: proto3.getEnumType(EmbeddingSource), - }, + { no: 1, name: "embedding_source", kind: "enum", T: proto3.getEnumType(EmbeddingSource) }, { no: 2, - name: 'workspace', - kind: 'scalar', - T: 9, + name: "workspace", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 3, - name: 'item_count', - kind: 'scalar', - T: 3, + name: "item_count", + kind: "scalar", + T: 3 /* ScalarType.INT64 */ - }, + } ]); static fromBinary(bytes, options) { return new _FaissStateStats().fromBinary(bytes, options); @@ -22349,7 +19572,7 @@ var PostgresDbStats = class _PostgresDbStats extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.PostgresDbStats'; + static typeName = "exa.codeium_common_pb.PostgresDbStats"; static fields = proto3.util.newFieldList(() => []); static fromBinary(bytes, options) { return new _PostgresDbStats().fromBinary(bytes, options); @@ -22378,15 +19601,10 @@ var LastUpdateRecord = class _LastUpdateRecord extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.LastUpdateRecord'; + static typeName = "exa.codeium_common_pb.LastUpdateRecord"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'time', kind: 'message', T: Timestamp }, - { - no: 2, - name: 'type', - kind: 'enum', - T: proto3.getEnumType(LastUpdateType), - }, + { no: 1, name: "time", kind: "message", T: Timestamp }, + { no: 2, name: "type", kind: "enum", T: proto3.getEnumType(LastUpdateType) } ]); static fromBinary(bytes, options) { return new _LastUpdateRecord().fromBinary(bytes, options); @@ -22448,7 +19666,7 @@ var ModelUsageStats = class _ModelUsageStats extends Message { * * @generated from field: string message_id = 7; */ - messageId = ''; + messageId = ""; /** * Response headers from the API provider. * @@ -22460,7 +19678,7 @@ var ModelUsageStats = class _ModelUsageStats extends Message { * * @generated from field: string response_id = 11; */ - responseId = ''; + responseId = ""; /** * No longer being used after moving to GDM. * @@ -22473,82 +19691,71 @@ var ModelUsageStats = class _ModelUsageStats extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.ModelUsageStats'; + static typeName = "exa.codeium_common_pb.ModelUsageStats"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'model', kind: 'enum', T: proto3.getEnumType(Model) }, + { no: 1, name: "model", kind: "enum", T: proto3.getEnumType(Model) }, { no: 2, - name: 'input_tokens', - kind: 'scalar', - T: 4, + name: "input_tokens", + kind: "scalar", + T: 4 /* ScalarType.UINT64 */ }, { no: 3, - name: 'output_tokens', - kind: 'scalar', - T: 4, + name: "output_tokens", + kind: "scalar", + T: 4 /* ScalarType.UINT64 */ }, { no: 9, - name: 'thinking_output_tokens', - kind: 'scalar', - T: 4, + name: "thinking_output_tokens", + kind: "scalar", + T: 4 /* ScalarType.UINT64 */ }, { no: 10, - name: 'response_output_tokens', - kind: 'scalar', - T: 4, + name: "response_output_tokens", + kind: "scalar", + T: 4 /* ScalarType.UINT64 */ }, { no: 5, - name: 'cache_read_tokens', - kind: 'scalar', - T: 4, + name: "cache_read_tokens", + kind: "scalar", + T: 4 /* ScalarType.UINT64 */ }, - { - no: 6, - name: 'api_provider', - kind: 'enum', - T: proto3.getEnumType(APIProvider), - }, + { no: 6, name: "api_provider", kind: "enum", T: proto3.getEnumType(APIProvider) }, { no: 7, - name: 'message_id', - kind: 'scalar', - T: 9, + name: "message_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { - no: 8, - name: 'response_header', - kind: 'map', - K: 9, - V: { - kind: 'scalar', - T: 9, - /* ScalarType.STRING */ - }, - }, + { no: 8, name: "response_header", kind: "map", K: 9, V: { + kind: "scalar", + T: 9 + /* ScalarType.STRING */ + } }, { no: 11, - name: 'response_id', - kind: 'scalar', - T: 9, + name: "response_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 4, - name: 'cache_write_tokens', - kind: 'scalar', - T: 4, + name: "cache_write_tokens", + kind: "scalar", + T: 4 /* ScalarType.UINT64 */ - }, + } ]); static fromBinary(bytes, options) { return new _ModelUsageStats().fromBinary(bytes, options); @@ -22567,21 +19774,21 @@ var SuperCompleteFilterReason = class _SuperCompleteFilterReason extends Message /** * @generated from field: string reason = 1; */ - reason = ''; + reason = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.SuperCompleteFilterReason'; + static typeName = "exa.codeium_common_pb.SuperCompleteFilterReason"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'reason', - kind: 'scalar', - T: 9, + name: "reason", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _SuperCompleteFilterReason().fromBinary(bytes, options); @@ -22604,19 +19811,19 @@ var CodeDiagnostic = class _CodeDiagnostic extends Message { /** * @generated from field: string message = 2; */ - message = ''; + message = ""; /** * @generated from field: string severity = 3; */ - severity = ''; + severity = ""; /** * @generated from field: string source = 4; */ - source = ''; + source = ""; /** * @generated from field: string uri = 5; */ - uri = ''; + uri = ""; /** * A unique ID to identify the diagnostic across its lifetime. * @@ -22639,46 +19846,46 @@ var CodeDiagnostic = class _CodeDiagnostic extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.CodeDiagnostic'; + static typeName = "exa.codeium_common_pb.CodeDiagnostic"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'range', kind: 'message', T: Range }, + { no: 1, name: "range", kind: "message", T: Range }, { no: 2, - name: 'message', - kind: 'scalar', - T: 9, + name: "message", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 3, - name: 'severity', - kind: 'scalar', - T: 9, + name: "severity", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 4, - name: 'source', - kind: 'scalar', - T: 9, + name: "source", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 5, - name: 'uri', - kind: 'scalar', - T: 9, + name: "uri", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 6, name: 'id', kind: 'scalar', T: 9, opt: true }, - { no: 7, name: 'language', kind: 'enum', T: proto3.getEnumType(Language) }, + { no: 6, name: "id", kind: "scalar", T: 9, opt: true }, + { no: 7, name: "language", kind: "enum", T: proto3.getEnumType(Language) }, { no: 8, - name: 'score', - kind: 'scalar', - T: 3, + name: "score", + kind: "scalar", + T: 3 /* ScalarType.INT64 */ - }, + } ]); static fromBinary(bytes, options) { return new _CodeDiagnostic().fromBinary(bytes, options); @@ -22701,31 +19908,31 @@ var IntellisenseSuggestion = class _IntellisenseSuggestion extends Message { /** * @generated from field: string text = 2; */ - text = ''; + text = ""; /** * @generated from field: string label = 3; */ - label = ''; + label = ""; /** * @generated from field: string label_detail = 4; */ - labelDetail = ''; + labelDetail = ""; /** * @generated from field: string description = 5; */ - description = ''; + description = ""; /** * @generated from field: string detail = 6; */ - detail = ''; + detail = ""; /** * @generated from field: string documentation = 7; */ - documentation = ''; + documentation = ""; /** * @generated from field: string kind = 8; */ - kind = ''; + kind = ""; /** * @generated from field: bool selected = 9; */ @@ -22735,65 +19942,65 @@ var IntellisenseSuggestion = class _IntellisenseSuggestion extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.IntellisenseSuggestion'; + static typeName = "exa.codeium_common_pb.IntellisenseSuggestion"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'range', kind: 'message', T: Range }, + { no: 1, name: "range", kind: "message", T: Range }, { no: 2, - name: 'text', - kind: 'scalar', - T: 9, + name: "text", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 3, - name: 'label', - kind: 'scalar', - T: 9, + name: "label", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 4, - name: 'label_detail', - kind: 'scalar', - T: 9, + name: "label_detail", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 5, - name: 'description', - kind: 'scalar', - T: 9, + name: "description", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 6, - name: 'detail', - kind: 'scalar', - T: 9, + name: "detail", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 7, - name: 'documentation', - kind: 'scalar', - T: 9, + name: "documentation", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 8, - name: 'kind', - kind: 'scalar', - T: 9, + name: "kind", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 9, - name: 'selected', - kind: 'scalar', - T: 8, + name: "selected", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ - }, + } ]); static fromBinary(bytes, options) { return new _IntellisenseSuggestion().fromBinary(bytes, options); @@ -22835,30 +20042,24 @@ var DocumentLinesElement = class _DocumentLinesElement extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.DocumentLinesElement'; + static typeName = "exa.codeium_common_pb.DocumentLinesElement"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'document_query', kind: 'message', T: DocumentQuery }, - { - no: 2, - name: 'overlapped_code_context_items', - kind: 'message', - T: CodeContextItem, - repeated: true, - }, + { no: 1, name: "document_query", kind: "message", T: DocumentQuery }, + { no: 2, name: "overlapped_code_context_items", kind: "message", T: CodeContextItem, repeated: true }, { no: 3, - name: 'first_element_suffix_overlap', - kind: 'scalar', - T: 13, + name: "first_element_suffix_overlap", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, { no: 4, - name: 'last_element_prefix_overlap', - kind: 'scalar', - T: 13, + name: "last_element_prefix_overlap", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ - }, + } ]); static fromBinary(bytes, options) { return new _DocumentLinesElement().fromBinary(bytes, options); @@ -22877,7 +20078,7 @@ var DocumentQuery = class _DocumentQuery extends Message { /** * @generated from field: string text = 1; */ - text = ''; + text = ""; /** * @generated from field: int32 cursor_offset = 2; */ @@ -22901,43 +20102,43 @@ var DocumentQuery = class _DocumentQuery extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.DocumentQuery'; + static typeName = "exa.codeium_common_pb.DocumentQuery"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'text', - kind: 'scalar', - T: 9, + name: "text", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'cursor_offset', - kind: 'scalar', - T: 5, + name: "cursor_offset", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, { no: 3, - name: 'start_line', - kind: 'scalar', - T: 13, + name: "start_line", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, { no: 4, - name: 'end_line', - kind: 'scalar', - T: 13, + name: "end_line", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, { no: 5, - name: 'use_character_position', - kind: 'scalar', - T: 8, + name: "use_character_position", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ - }, + } ]); static fromBinary(bytes, options) { return new _DocumentQuery().fromBinary(bytes, options); @@ -22962,23 +20163,11 @@ var DocumentOutlineElement = class _DocumentOutlineElement extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.DocumentOutlineElement'; + static typeName = "exa.codeium_common_pb.DocumentOutlineElement"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'code_context_item', - kind: 'message', - T: CodeContextItem, - oneof: 'element', - }, - { - no: 2, - name: 'document_lines_element', - kind: 'message', - T: DocumentLinesElement, - oneof: 'element', - }, - { no: 3, name: 'text', kind: 'scalar', T: 9, oneof: 'element' }, + { no: 1, name: "code_context_item", kind: "message", T: CodeContextItem, oneof: "element" }, + { no: 2, name: "document_lines_element", kind: "message", T: DocumentLinesElement, oneof: "element" }, + { no: 3, name: "text", kind: "scalar", T: 9, oneof: "element" } ]); static fromBinary(bytes, options) { return new _DocumentOutlineElement().fromBinary(bytes, options); @@ -23014,22 +20203,16 @@ var DocumentOutline = class _DocumentOutline extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.DocumentOutline'; + static typeName = "exa.codeium_common_pb.DocumentOutline"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'elements', - kind: 'message', - T: DocumentOutlineElement, - repeated: true, - }, + { no: 1, name: "elements", kind: "message", T: DocumentOutlineElement, repeated: true }, { no: 2, - name: 'start_index', - kind: 'scalar', - T: 3, + name: "start_index", + kind: "scalar", + T: 3 /* ScalarType.INT64 */ - }, + } ]); static fromBinary(bytes, options) { return new _DocumentOutline().fromBinary(bytes, options); @@ -23048,31 +20231,31 @@ var ProductEvent = class _ProductEvent extends Message { /** * @generated from field: string event_name = 1; */ - eventName = ''; + eventName = ""; /** * @generated from field: string api_key = 2; */ - apiKey = ''; + apiKey = ""; /** * @generated from field: string installation_id = 3; */ - installationId = ''; + installationId = ""; /** * @generated from field: string ide_name = 4; */ - ideName = ''; + ideName = ""; /** * @generated from field: string os = 5; */ - os = ''; + os = ""; /** * @generated from field: string codeium_version = 6; */ - codeiumVersion = ''; + codeiumVersion = ""; /** * @generated from field: string ide_version = 7; */ - ideVersion = ''; + ideVersion = ""; /** * @generated from field: uint64 duration_ms = 8; */ @@ -23086,75 +20269,69 @@ var ProductEvent = class _ProductEvent extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.ProductEvent'; + static typeName = "exa.codeium_common_pb.ProductEvent"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'event_name', - kind: 'scalar', - T: 9, + name: "event_name", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'api_key', - kind: 'scalar', - T: 9, + name: "api_key", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 3, - name: 'installation_id', - kind: 'scalar', - T: 9, + name: "installation_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 4, - name: 'ide_name', - kind: 'scalar', - T: 9, + name: "ide_name", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 5, - name: 'os', - kind: 'scalar', - T: 9, + name: "os", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 6, - name: 'codeium_version', - kind: 'scalar', - T: 9, + name: "codeium_version", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 7, - name: 'ide_version', - kind: 'scalar', - T: 9, + name: "ide_version", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 8, - name: 'duration_ms', - kind: 'scalar', - T: 4, + name: "duration_ms", + kind: "scalar", + T: 4 /* ScalarType.UINT64 */ }, - { - no: 9, - name: 'extra', - kind: 'map', - K: 9, - V: { - kind: 'scalar', - T: 9, - /* ScalarType.STRING */ - }, - }, + { no: 9, name: "extra", kind: "map", K: 9, V: { + kind: "scalar", + T: 9 + /* ScalarType.STRING */ + } } ]); static fromBinary(bytes, options) { return new _ProductEvent().fromBinary(bytes, options); @@ -23183,23 +20360,17 @@ var KnowledgeBaseChunk = class _KnowledgeBaseChunk extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.KnowledgeBaseChunk'; + static typeName = "exa.codeium_common_pb.KnowledgeBaseChunk"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'text', kind: 'scalar', T: 9, oneof: 'chunk_type' }, - { - no: 3, - name: 'markdown_chunk', - kind: 'message', - T: MarkdownChunk, - oneof: 'chunk_type', - }, + { no: 1, name: "text", kind: "scalar", T: 9, oneof: "chunk_type" }, + { no: 3, name: "markdown_chunk", kind: "message", T: MarkdownChunk, oneof: "chunk_type" }, { no: 2, - name: 'position', - kind: 'scalar', - T: 5, + name: "position", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ - }, + } ]); static fromBinary(bytes, options) { return new _KnowledgeBaseChunk().fromBinary(bytes, options); @@ -23218,15 +20389,15 @@ var KnowledgeBaseItem = class _KnowledgeBaseItem extends Message { /** * @generated from field: string document_id = 1; */ - documentId = ''; + documentId = ""; /** * @generated from field: string url = 3; */ - url = ''; + url = ""; /** * @generated from field: string title = 4; */ - title = ''; + title = ""; /** * @generated from field: google.protobuf.Timestamp timestamp = 5; */ @@ -23240,7 +20411,7 @@ var KnowledgeBaseItem = class _KnowledgeBaseItem extends Message { * * @generated from field: string summary = 7; */ - summary = ''; + summary = ""; /** * Optional DOM tree of the knowledge base item. * @@ -23266,60 +20437,54 @@ var KnowledgeBaseItem = class _KnowledgeBaseItem extends Message { * @generated from field: string text = 2 [deprecated = true]; * @deprecated */ - text = ''; + text = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.KnowledgeBaseItem'; + static typeName = "exa.codeium_common_pb.KnowledgeBaseItem"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'document_id', - kind: 'scalar', - T: 9, + name: "document_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 3, - name: 'url', - kind: 'scalar', - T: 9, + name: "url", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 4, - name: 'title', - kind: 'scalar', - T: 9, + name: "title", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 5, name: 'timestamp', kind: 'message', T: Timestamp }, - { - no: 6, - name: 'chunks', - kind: 'message', - T: KnowledgeBaseChunk, - repeated: true, - }, + { no: 5, name: "timestamp", kind: "message", T: Timestamp }, + { no: 6, name: "chunks", kind: "message", T: KnowledgeBaseChunk, repeated: true }, { no: 7, - name: 'summary', - kind: 'scalar', - T: 9, + name: "summary", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 9, name: 'dom_tree', kind: 'message', T: DOMTree }, - { no: 8, name: 'image', kind: 'message', T: ImageData }, - { no: 10, name: 'media', kind: 'message', T: Media }, + { no: 9, name: "dom_tree", kind: "message", T: DOMTree }, + { no: 8, name: "image", kind: "message", T: ImageData }, + { no: 10, name: "media", kind: "message", T: Media }, { no: 2, - name: 'text', - kind: 'scalar', - T: 9, + name: "text", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _KnowledgeBaseItem().fromBinary(bytes, options); @@ -23352,47 +20517,42 @@ var KnowledgeBaseItemWithMetadata = class _KnowledgeBaseItemWithMetadata extends * * @generated from field: string index_name = 3; */ - indexName = ''; + indexName = ""; /** * where the document came from, * * @generated from field: string document_source_name = 4; */ - documentSourceName = ''; + documentSourceName = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.KnowledgeBaseItemWithMetadata'; + static typeName = "exa.codeium_common_pb.KnowledgeBaseItemWithMetadata"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'knowledge_base_item', - kind: 'message', - T: KnowledgeBaseItem, - }, + { no: 1, name: "knowledge_base_item", kind: "message", T: KnowledgeBaseItem }, { no: 2, - name: 'score', - kind: 'scalar', - T: 2, + name: "score", + kind: "scalar", + T: 2 /* ScalarType.FLOAT */ }, { no: 3, - name: 'index_name', - kind: 'scalar', - T: 9, + name: "index_name", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 4, - name: 'document_source_name', - kind: 'scalar', - T: 9, + name: "document_source_name", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _KnowledgeBaseItemWithMetadata().fromBinary(bytes, options); @@ -23401,10 +20561,7 @@ var KnowledgeBaseItemWithMetadata = class _KnowledgeBaseItemWithMetadata extends return new _KnowledgeBaseItemWithMetadata().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _KnowledgeBaseItemWithMetadata().fromJsonString( - jsonString, - options, - ); + return new _KnowledgeBaseItemWithMetadata().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_KnowledgeBaseItemWithMetadata, a, b); @@ -23414,7 +20571,7 @@ var KnowledgeBaseGroup = class _KnowledgeBaseGroup extends Message { /** * @generated from field: string description = 1; */ - description = ''; + description = ""; /** * not required for aggregates, i.e. Slack channels * @@ -23430,23 +20587,17 @@ var KnowledgeBaseGroup = class _KnowledgeBaseGroup extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.KnowledgeBaseGroup'; + static typeName = "exa.codeium_common_pb.KnowledgeBaseGroup"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'description', - kind: 'scalar', - T: 9, + name: "description", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 2, name: 'item', kind: 'message', T: KnowledgeBaseItemWithMetadata }, - { - no: 3, - name: 'children', - kind: 'message', - T: _KnowledgeBaseGroup, - repeated: true, - }, + { no: 2, name: "item", kind: "message", T: KnowledgeBaseItemWithMetadata }, + { no: 3, name: "children", kind: "message", T: _KnowledgeBaseGroup, repeated: true } ]); static fromBinary(bytes, options) { return new _KnowledgeBaseGroup().fromBinary(bytes, options); @@ -23467,61 +20618,61 @@ var ImageData = class _ImageData extends Message { * * @generated from field: string base64_data = 1; */ - base64Data = ''; + base64Data = ""; /** * MIME type of the image (e.g., "image/jpeg", "image/png") * * @generated from field: string mime_type = 2; */ - mimeType = ''; + mimeType = ""; /** * AI Generated Caption, populated when using a model that has * supportsImageCaptions = true * * @generated from field: string caption = 3; */ - caption = ''; + caption = ""; /** * Optional URI where the image is stored (e.g., file path or URL) * * @generated from field: string uri = 4; */ - uri = ''; + uri = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.ImageData'; + static typeName = "exa.codeium_common_pb.ImageData"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'base64_data', - kind: 'scalar', - T: 9, + name: "base64_data", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'mime_type', - kind: 'scalar', - T: 9, + name: "mime_type", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 3, - name: 'caption', - kind: 'scalar', - T: 9, + name: "caption", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 4, - name: 'uri', - kind: 'scalar', - T: 9, + name: "uri", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _ImageData().fromBinary(bytes, options); @@ -23540,21 +20691,21 @@ var Blobref = class _Blobref extends Message { /** * @generated from field: string blob_id = 1; */ - blobId = ''; + blobId = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.Blobref'; + static typeName = "exa.codeium_common_pb.Blobref"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'blob_id', - kind: 'scalar', - T: 9, + name: "blob_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _Blobref().fromBinary(bytes, options); @@ -23575,14 +20726,14 @@ var Media = class _Media extends Message { * * @generated from field: string mime_type = 1; */ - mimeType = ''; + mimeType = ""; /** * Optional description of the media, e.g., "Screenshot of the app" * Or summary of the media * * @generated from field: string description = 4; */ - description = ''; + description = ""; /** * @generated from oneof exa.codeium_common_pb.Media.payload */ @@ -23592,7 +20743,7 @@ var Media = class _Media extends Message { * * @generated from field: string uri = 5; */ - uri = ''; + uri = ""; /** * Optional thumbnail for video * @@ -23610,45 +20761,45 @@ var Media = class _Media extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.Media'; + static typeName = "exa.codeium_common_pb.Media"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'mime_type', - kind: 'scalar', - T: 9, + name: "mime_type", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 4, - name: 'description', - kind: 'scalar', - T: 9, + name: "description", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 2, name: 'inline_data', kind: 'scalar', T: 12, oneof: 'payload' }, - { no: 3, name: 'blobref', kind: 'message', T: Blobref, oneof: 'payload' }, + { no: 2, name: "inline_data", kind: "scalar", T: 12, oneof: "payload" }, + { no: 3, name: "blobref", kind: "message", T: Blobref, oneof: "payload" }, { no: 5, - name: 'uri', - kind: 'scalar', - T: 9, + name: "uri", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 6, - name: 'thumbnail', - kind: 'scalar', - T: 12, + name: "thumbnail", + kind: "scalar", + T: 12 /* ScalarType.BYTES */ }, { no: 7, - name: 'duration_seconds', - kind: 'scalar', - T: 2, + name: "duration_seconds", + kind: "scalar", + T: 2 /* ScalarType.FLOAT */ - }, + } ]); static fromBinary(bytes, options) { return new _Media().fromBinary(bytes, options); @@ -23667,34 +20818,34 @@ var TextData = class _TextData extends Message { /** * @generated from field: string text = 1; */ - text = ''; + text = ""; /** * MIME type of the text (e.g., "text/plain", "text/markdown") * * @generated from field: string mime_type = 2; */ - mimeType = ''; + mimeType = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.TextData'; + static typeName = "exa.codeium_common_pb.TextData"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'text', - kind: 'scalar', - T: 9, + name: "text", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'mime_type', - kind: 'scalar', - T: 9, + name: "mime_type", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _TextData().fromBinary(bytes, options); @@ -23722,28 +20873,22 @@ var MarkdownChunk = class _MarkdownChunk extends Message { * * @generated from field: string text = 2; */ - text = ''; + text = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.MarkdownChunk'; + static typeName = "exa.codeium_common_pb.MarkdownChunk"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'headers', - kind: 'message', - T: MarkdownChunk_MarkdownHeader, - repeated: true, - }, + { no: 1, name: "headers", kind: "message", T: MarkdownChunk_MarkdownHeader, repeated: true }, { no: 2, - name: 'text', - kind: 'scalar', - T: 9, + name: "text", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _MarkdownChunk().fromBinary(bytes, options); @@ -23766,27 +20911,22 @@ var MarkdownChunk_MarkdownHeader = class _MarkdownChunk_MarkdownHeader extends M /** * @generated from field: string text = 2; */ - text = ''; + text = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.MarkdownChunk.MarkdownHeader'; + static typeName = "exa.codeium_common_pb.MarkdownChunk.MarkdownHeader"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'type', - kind: 'enum', - T: proto3.getEnumType(MarkdownNodeType), - }, + { no: 1, name: "type", kind: "enum", T: proto3.getEnumType(MarkdownNodeType) }, { no: 2, - name: 'text', - kind: 'scalar', - T: 9, + name: "text", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _MarkdownChunk_MarkdownHeader().fromBinary(bytes, options); @@ -23795,10 +20935,7 @@ var MarkdownChunk_MarkdownHeader = class _MarkdownChunk_MarkdownHeader extends M return new _MarkdownChunk_MarkdownHeader().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _MarkdownChunk_MarkdownHeader().fromJsonString( - jsonString, - options, - ); + return new _MarkdownChunk_MarkdownHeader().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_MarkdownChunk_MarkdownHeader, a, b); @@ -23814,7 +20951,7 @@ var TerminalShellCommandHeader = class _TerminalShellCommandHeader extends Messa * * @generated from field: string terminal_id = 1; */ - terminalId = ''; + terminalId = ""; /** * PID of the shell process that executed the command. * @@ -23827,13 +20964,13 @@ var TerminalShellCommandHeader = class _TerminalShellCommandHeader extends Messa * * @generated from field: string command_line = 3; */ - commandLine = ''; + commandLine = ""; /** * Working directory that the shell command was executed in. * * @generated from field: string cwd = 4; */ - cwd = ''; + cwd = ""; /** * Timestamp when the shell command was executed. * @@ -23851,44 +20988,39 @@ var TerminalShellCommandHeader = class _TerminalShellCommandHeader extends Messa proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.TerminalShellCommandHeader'; + static typeName = "exa.codeium_common_pb.TerminalShellCommandHeader"; static fields = proto3.util.newFieldList(() => [ - { no: 7, name: 'metadata', kind: 'message', T: Metadata }, + { no: 7, name: "metadata", kind: "message", T: Metadata }, { no: 1, - name: 'terminal_id', - kind: 'scalar', - T: 9, + name: "terminal_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'shell_pid', - kind: 'scalar', - T: 13, + name: "shell_pid", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, { no: 3, - name: 'command_line', - kind: 'scalar', - T: 9, + name: "command_line", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 4, - name: 'cwd', - kind: 'scalar', - T: 9, + name: "cwd", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 5, name: 'start_time', kind: 'message', T: Timestamp }, - { - no: 6, - name: 'source', - kind: 'enum', - T: proto3.getEnumType(TerminalShellCommandSource), - }, + { no: 5, name: "start_time", kind: "message", T: Timestamp }, + { no: 6, name: "source", kind: "enum", T: proto3.getEnumType(TerminalShellCommandSource) } ]); static fromBinary(bytes, options) { return new _TerminalShellCommandHeader().fromBinary(bytes, options); @@ -23897,10 +21029,7 @@ var TerminalShellCommandHeader = class _TerminalShellCommandHeader extends Messa return new _TerminalShellCommandHeader().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _TerminalShellCommandHeader().fromJsonString( - jsonString, - options, - ); + return new _TerminalShellCommandHeader().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_TerminalShellCommandHeader, a, b); @@ -23918,15 +21047,15 @@ var TerminalShellCommandData = class _TerminalShellCommandData extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.TerminalShellCommandData'; + static typeName = "exa.codeium_common_pb.TerminalShellCommandData"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'raw_data', - kind: 'scalar', - T: 12, + name: "raw_data", + kind: "scalar", + T: 12 /* ScalarType.BYTES */ - }, + } ]); static fromBinary(bytes, options) { return new _TerminalShellCommandData().fromBinary(bytes, options); @@ -23960,10 +21089,10 @@ var TerminalShellCommandTrailer = class _TerminalShellCommandTrailer extends Mes proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.TerminalShellCommandTrailer'; + static typeName = "exa.codeium_common_pb.TerminalShellCommandTrailer"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'exit_code', kind: 'scalar', T: 5, opt: true }, - { no: 2, name: 'end_time', kind: 'message', T: Timestamp }, + { no: 1, name: "exit_code", kind: "scalar", T: 5, opt: true }, + { no: 2, name: "end_time", kind: "message", T: Timestamp } ]); static fromBinary(bytes, options) { return new _TerminalShellCommandTrailer().fromBinary(bytes, options); @@ -23972,10 +21101,7 @@ var TerminalShellCommandTrailer = class _TerminalShellCommandTrailer extends Mes return new _TerminalShellCommandTrailer().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _TerminalShellCommandTrailer().fromJsonString( - jsonString, - options, - ); + return new _TerminalShellCommandTrailer().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_TerminalShellCommandTrailer, a, b); @@ -23991,29 +21117,11 @@ var TerminalShellCommandStreamChunk = class _TerminalShellCommandStreamChunk ext proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.TerminalShellCommandStreamChunk'; + static typeName = "exa.codeium_common_pb.TerminalShellCommandStreamChunk"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'header', - kind: 'message', - T: TerminalShellCommandHeader, - oneof: 'value', - }, - { - no: 2, - name: 'data', - kind: 'message', - T: TerminalShellCommandData, - oneof: 'value', - }, - { - no: 3, - name: 'trailer', - kind: 'message', - T: TerminalShellCommandTrailer, - oneof: 'value', - }, + { no: 1, name: "header", kind: "message", T: TerminalShellCommandHeader, oneof: "value" }, + { no: 2, name: "data", kind: "message", T: TerminalShellCommandData, oneof: "value" }, + { no: 3, name: "trailer", kind: "message", T: TerminalShellCommandTrailer, oneof: "value" } ]); static fromBinary(bytes, options) { return new _TerminalShellCommandStreamChunk().fromBinary(bytes, options); @@ -24022,10 +21130,7 @@ var TerminalShellCommandStreamChunk = class _TerminalShellCommandStreamChunk ext return new _TerminalShellCommandStreamChunk().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _TerminalShellCommandStreamChunk().fromJsonString( - jsonString, - options, - ); + return new _TerminalShellCommandStreamChunk().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_TerminalShellCommandStreamChunk, a, b); @@ -24037,7 +21142,7 @@ var TerminalShellCommand = class _TerminalShellCommand extends Message { * * @generated from field: string id = 10; */ - id = ''; + id = ""; /** * PID of the shell process that executed the command. * @@ -24050,13 +21155,13 @@ var TerminalShellCommand = class _TerminalShellCommand extends Message { * * @generated from field: string command_line = 2; */ - commandLine = ''; + commandLine = ""; /** * Working directory that the shell command was executed in. * * @generated from field: string cwd = 3; */ - cwd = ''; + cwd = ""; /** * Aggregated and processed output. * @@ -24105,59 +21210,49 @@ var TerminalShellCommand = class _TerminalShellCommand extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.TerminalShellCommand'; + static typeName = "exa.codeium_common_pb.TerminalShellCommand"; static fields = proto3.util.newFieldList(() => [ { no: 10, - name: 'id', - kind: 'scalar', - T: 9, + name: "id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 1, - name: 'shell_pid', - kind: 'scalar', - T: 13, + name: "shell_pid", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, { no: 2, - name: 'command_line', - kind: 'scalar', - T: 9, + name: "command_line", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 3, - name: 'cwd', - kind: 'scalar', - T: 9, + name: "cwd", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 4, - name: 'output', - kind: 'scalar', - T: 12, + name: "output", + kind: "scalar", + T: 12 /* ScalarType.BYTES */ }, - { no: 5, name: 'exit_code', kind: 'scalar', T: 5, opt: true }, - { no: 6, name: 'start_time', kind: 'message', T: Timestamp }, - { no: 7, name: 'end_time', kind: 'message', T: Timestamp }, - { no: 11, name: 'last_updated_time', kind: 'message', T: Timestamp }, - { - no: 8, - name: 'status', - kind: 'enum', - T: proto3.getEnumType(TerminalShellCommandStatus), - }, - { - no: 9, - name: 'source', - kind: 'enum', - T: proto3.getEnumType(TerminalShellCommandSource), - }, + { no: 5, name: "exit_code", kind: "scalar", T: 5, opt: true }, + { no: 6, name: "start_time", kind: "message", T: Timestamp }, + { no: 7, name: "end_time", kind: "message", T: Timestamp }, + { no: 11, name: "last_updated_time", kind: "message", T: Timestamp }, + { no: 8, name: "status", kind: "enum", T: proto3.getEnumType(TerminalShellCommandStatus) }, + { no: 9, name: "source", kind: "enum", T: proto3.getEnumType(TerminalShellCommandSource) } ]); static fromBinary(bytes, options) { return new _TerminalShellCommand().fromBinary(bytes, options); @@ -24176,54 +21271,54 @@ var TerminalCommandData = class _TerminalCommandData extends Message { /** * @generated from field: string terminal_id = 1; */ - terminalId = ''; + terminalId = ""; /** * @generated from field: string platform = 2; */ - platform = ''; + platform = ""; /** * @generated from field: string cwd = 3; */ - cwd = ''; + cwd = ""; /** * @generated from field: string shell_name = 4; */ - shellName = ''; + shellName = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.TerminalCommandData'; + static typeName = "exa.codeium_common_pb.TerminalCommandData"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'terminal_id', - kind: 'scalar', - T: 9, + name: "terminal_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'platform', - kind: 'scalar', - T: 9, + name: "platform", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 3, - name: 'cwd', - kind: 'scalar', - T: 9, + name: "cwd", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 4, - name: 'shell_name', - kind: 'scalar', - T: 9, + name: "shell_name", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _TerminalCommandData().fromBinary(bytes, options); @@ -24242,11 +21337,11 @@ var AntigravityProject = class _AntigravityProject extends Message { /** * @generated from field: string antigravity_project_id = 1; */ - antigravityProjectId = ''; + antigravityProjectId = ""; /** * @generated from field: string auth_uid = 2; */ - authUid = ''; + authUid = ""; /** * @generated from field: exa.codeium_common_pb.DeploymentProvider deployment_provider = 3; */ @@ -24254,14 +21349,14 @@ var AntigravityProject = class _AntigravityProject extends Message { /** * @generated from field: string provider_project_id = 4; */ - providerProjectId = ''; + providerProjectId = ""; /** * The name of the project. This shows up on the provider dashboard and is * different from the subdomain name. * * @generated from field: string project_name = 5; */ - projectName = ''; + projectName = ""; /** * @generated from field: google.protobuf.Timestamp created_at = 6; */ @@ -24275,13 +21370,13 @@ var AntigravityProject = class _AntigravityProject extends Message { * * @generated from field: string domain = 8; */ - domain = ''; + domain = ""; /** * The subdomain the deployment is deployed to. Example: my-project * * @generated from field: string subdomain_name = 9; */ - subdomainName = ''; + subdomainName = ""; /** * When the deployment will expire (after which it will be removed by the cron * job) @@ -24309,87 +21404,82 @@ var AntigravityProject = class _AntigravityProject extends Message { * * @generated from field: string provider_team_id = 14; */ - providerTeamId = ''; + providerTeamId = ""; /** * Public URL to access the app * * @generated from field: string project_url = 13; */ - projectUrl = ''; + projectUrl = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.AntigravityProject'; + static typeName = "exa.codeium_common_pb.AntigravityProject"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'antigravity_project_id', - kind: 'scalar', - T: 9, + name: "antigravity_project_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'auth_uid', - kind: 'scalar', - T: 9, + name: "auth_uid", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { - no: 3, - name: 'deployment_provider', - kind: 'enum', - T: proto3.getEnumType(DeploymentProvider), - }, + { no: 3, name: "deployment_provider", kind: "enum", T: proto3.getEnumType(DeploymentProvider) }, { no: 4, - name: 'provider_project_id', - kind: 'scalar', - T: 9, + name: "provider_project_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 5, - name: 'project_name', - kind: 'scalar', - T: 9, + name: "project_name", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 6, name: 'created_at', kind: 'message', T: Timestamp }, - { no: 7, name: 'updated_at', kind: 'message', T: Timestamp }, + { no: 6, name: "created_at", kind: "message", T: Timestamp }, + { no: 7, name: "updated_at", kind: "message", T: Timestamp }, { no: 8, - name: 'domain', - kind: 'scalar', - T: 9, + name: "domain", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 9, - name: 'subdomain_name', - kind: 'scalar', - T: 9, + name: "subdomain_name", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 10, name: 'expires_at', kind: 'message', T: Timestamp }, - { no: 11, name: 'claimed_at', kind: 'message', T: Timestamp }, - { no: 12, name: 'deprovisioned_at', kind: 'message', T: Timestamp }, + { no: 10, name: "expires_at", kind: "message", T: Timestamp }, + { no: 11, name: "claimed_at", kind: "message", T: Timestamp }, + { no: 12, name: "deprovisioned_at", kind: "message", T: Timestamp }, { no: 14, - name: 'provider_team_id', - kind: 'scalar', - T: 9, + name: "provider_team_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 13, - name: 'project_url', - kind: 'scalar', - T: 9, + name: "project_url", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _AntigravityProject().fromBinary(bytes, options); @@ -24408,11 +21498,11 @@ var AntigravityDeployment = class _AntigravityDeployment extends Message { /** * @generated from field: string antigravity_deployment_id = 1; */ - antigravityDeploymentId = ''; + antigravityDeploymentId = ""; /** * @generated from field: string auth_uid = 2; */ - authUid = ''; + authUid = ""; /** * @generated from field: exa.codeium_common_pb.DeploymentProvider deployment_provider = 3; */ @@ -24420,27 +21510,27 @@ var AntigravityDeployment = class _AntigravityDeployment extends Message { /** * @generated from field: string provider_deployment_id = 14; */ - providerDeploymentId = ''; + providerDeploymentId = ""; /** * This references the antigravity_project_id * * @generated from field: string antigravity_project_id = 19; */ - antigravityProjectId = ''; + antigravityProjectId = ""; /** * in the antigravity_projects table * * @generated from field: string project_id = 4; */ - projectId = ''; + projectId = ""; /** * @generated from field: string project_name = 5; */ - projectName = ''; + projectName = ""; /** * @generated from field: string workspace_path = 6; */ - workspacePath = ''; + workspacePath = ""; /** * @generated from field: google.protobuf.Timestamp created_at = 7; */ @@ -24454,20 +21544,20 @@ var AntigravityDeployment = class _AntigravityDeployment extends Message { * * @generated from field: string domain = 16; */ - domain = ''; + domain = ""; /** * The subdomain the deployment is deployed to. Example: my-project * * @generated from field: string subdomain_name = 17; */ - subdomainName = ''; + subdomainName = ""; /** * Team ID of the provider if this project is not on the Antigravity sandbox * account * * @generated from field: string provider_team_id = 20; */ - providerTeamId = ''; + providerTeamId = ""; /** * When the deployment will expire (after which it will be removed by the cron * job) @@ -24481,7 +21571,7 @@ var AntigravityDeployment = class _AntigravityDeployment extends Message { * * @generated from field: string deployment_url = 12; */ - deploymentUrl = ''; + deploymentUrl = ""; /** * When the deployment was claimed by the user. If site is unclaimed, this * will be unset. @@ -24501,122 +21591,117 @@ var AntigravityDeployment = class _AntigravityDeployment extends Message { * * @generated from field: string build_status_url = 9; */ - buildStatusUrl = ''; + buildStatusUrl = ""; /** * Public URL to access the app * * @generated from field: string project_url = 10; */ - projectUrl = ''; + projectUrl = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.AntigravityDeployment'; + static typeName = "exa.codeium_common_pb.AntigravityDeployment"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'antigravity_deployment_id', - kind: 'scalar', - T: 9, + name: "antigravity_deployment_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'auth_uid', - kind: 'scalar', - T: 9, + name: "auth_uid", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { - no: 3, - name: 'deployment_provider', - kind: 'enum', - T: proto3.getEnumType(DeploymentProvider), - }, + { no: 3, name: "deployment_provider", kind: "enum", T: proto3.getEnumType(DeploymentProvider) }, { no: 14, - name: 'provider_deployment_id', - kind: 'scalar', - T: 9, + name: "provider_deployment_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 19, - name: 'antigravity_project_id', - kind: 'scalar', - T: 9, + name: "antigravity_project_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 4, - name: 'project_id', - kind: 'scalar', - T: 9, + name: "project_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 5, - name: 'project_name', - kind: 'scalar', - T: 9, + name: "project_name", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 6, - name: 'workspace_path', - kind: 'scalar', - T: 9, + name: "workspace_path", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 7, name: 'created_at', kind: 'message', T: Timestamp }, - { no: 8, name: 'updated_at', kind: 'message', T: Timestamp }, + { no: 7, name: "created_at", kind: "message", T: Timestamp }, + { no: 8, name: "updated_at", kind: "message", T: Timestamp }, { no: 16, - name: 'domain', - kind: 'scalar', - T: 9, + name: "domain", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 17, - name: 'subdomain_name', - kind: 'scalar', - T: 9, + name: "subdomain_name", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 20, - name: 'provider_team_id', - kind: 'scalar', - T: 9, + name: "provider_team_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 11, name: 'expires_at', kind: 'message', T: Timestamp }, + { no: 11, name: "expires_at", kind: "message", T: Timestamp }, { no: 12, - name: 'deployment_url', - kind: 'scalar', - T: 9, + name: "deployment_url", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 15, name: 'claimed_at', kind: 'message', T: Timestamp }, - { no: 13, name: 'deprovisioned_at', kind: 'message', T: Timestamp }, + { no: 15, name: "claimed_at", kind: "message", T: Timestamp }, + { no: 13, name: "deprovisioned_at", kind: "message", T: Timestamp }, { no: 9, - name: 'build_status_url', - kind: 'scalar', - T: 9, + name: "build_status_url", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 10, - name: 'project_url', - kind: 'scalar', - T: 9, + name: "project_url", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _AntigravityDeployment().fromBinary(bytes, options); @@ -24650,61 +21735,56 @@ var DeployTarget = class _DeployTarget extends Message { * * @generated from field: string provider_team_id = 3; */ - providerTeamId = ''; + providerTeamId = ""; /** * Slug of the team that owns the site. This is "antigravity" if the site is * on the umbrella account * * @generated from field: string provider_team_slug = 4; */ - providerTeamSlug = ''; + providerTeamSlug = ""; /** * Domain of the site * * @generated from field: string domain = 5; */ - domain = ''; + domain = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.DeployTarget'; + static typeName = "exa.codeium_common_pb.DeployTarget"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'deployment_provider', - kind: 'enum', - T: proto3.getEnumType(DeploymentProvider), - }, + { no: 1, name: "deployment_provider", kind: "enum", T: proto3.getEnumType(DeploymentProvider) }, { no: 2, - name: 'is_sandbox', - kind: 'scalar', - T: 8, + name: "is_sandbox", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 3, - name: 'provider_team_id', - kind: 'scalar', - T: 9, + name: "provider_team_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 4, - name: 'provider_team_slug', - kind: 'scalar', - T: 9, + name: "provider_team_slug", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 5, - name: 'domain', - kind: 'scalar', - T: 9, + name: "domain", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _DeployTarget().fromBinary(bytes, options); @@ -24727,7 +21807,7 @@ var WebDocsOption = class _WebDocsOption extends Message { * * @generated from field: string label = 1; */ - label = ''; + label = ""; /** * The URL of the documentation or human-language instructions to prompt the * LLM to lookup live documentation via web search. @@ -24754,25 +21834,25 @@ var WebDocsOption = class _WebDocsOption extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.WebDocsOption'; + static typeName = "exa.codeium_common_pb.WebDocsOption"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'label', - kind: 'scalar', - T: 9, + name: "label", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 2, name: 'docs_url', kind: 'scalar', T: 9, oneof: 'value' }, - { no: 3, name: 'docs_search_domain', kind: 'scalar', T: 9, oneof: 'value' }, - { no: 4, name: 'synonyms', kind: 'scalar', T: 9, repeated: true }, + { no: 2, name: "docs_url", kind: "scalar", T: 9, oneof: "value" }, + { no: 3, name: "docs_search_domain", kind: "scalar", T: 9, oneof: "value" }, + { no: 4, name: "synonyms", kind: "scalar", T: 9, repeated: true }, { no: 5, - name: 'is_featured', - kind: 'scalar', - T: 8, + name: "is_featured", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ - }, + } ]); static fromBinary(bytes, options) { return new _WebDocsOption().fromBinary(bytes, options); @@ -24791,7 +21871,7 @@ var TeamConfig = class _TeamConfig extends Message { /** * @generated from field: string team_id = 1; */ - teamId = ''; + teamId = ""; /** * @generated from field: int32 user_prompt_credit_cap = 2; */ @@ -24871,14 +21951,14 @@ var TeamConfig = class _TeamConfig extends Message { * * @generated from field: string pull_request_review_guidelines = 14; */ - pullRequestReviewGuidelines = ''; + pullRequestReviewGuidelines = ""; /** * Guidelines that Antigravity will use when editing pull request * descriptions. * * @generated from field: string pull_request_description_guidelines = 16; */ - pullRequestDescriptionGuidelines = ''; + pullRequestDescriptionGuidelines = ""; /** * Whether tool calls are disabled for this team. * @@ -24945,176 +22025,158 @@ var TeamConfig = class _TeamConfig extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.TeamConfig'; + static typeName = "exa.codeium_common_pb.TeamConfig"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'team_id', - kind: 'scalar', - T: 9, + name: "team_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'user_prompt_credit_cap', - kind: 'scalar', - T: 5, + name: "user_prompt_credit_cap", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, { no: 3, - name: 'user_flow_credit_cap', - kind: 'scalar', - T: 5, + name: "user_flow_credit_cap", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, { no: 4, - name: 'auto_provision_cascade_seat', - kind: 'scalar', - T: 8, + name: "auto_provision_cascade_seat", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 5, - name: 'allow_mcp_servers', - kind: 'scalar', - T: 8, + name: "allow_mcp_servers", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 7, - name: 'allow_auto_run_commands', - kind: 'scalar', - T: 8, + name: "allow_auto_run_commands", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 9, - name: 'max_unclaimed_sites', - kind: 'scalar', - T: 5, + name: "max_unclaimed_sites", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, { no: 10, - name: 'allow_app_deployments', - kind: 'scalar', - T: 8, + name: "allow_app_deployments", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 19, - name: 'allow_sandbox_app_deployments', - kind: 'scalar', - T: 8, + name: "allow_sandbox_app_deployments", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 20, - name: 'allow_teams_app_deployments', - kind: 'scalar', - T: 8, + name: "allow_teams_app_deployments", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 11, - name: 'max_new_sites_per_day', - kind: 'scalar', - T: 5, + name: "max_new_sites_per_day", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, { no: 12, - name: 'allow_github_reviews', - kind: 'scalar', - T: 8, + name: "allow_github_reviews", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 13, - name: 'allow_github_description_edits', - kind: 'scalar', - T: 8, + name: "allow_github_description_edits", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 14, - name: 'pull_request_review_guidelines', - kind: 'scalar', - T: 9, + name: "pull_request_review_guidelines", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 16, - name: 'pull_request_description_guidelines', - kind: 'scalar', - T: 9, + name: "pull_request_description_guidelines", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 15, - name: 'disable_tool_calls', - kind: 'scalar', - T: 8, + name: "disable_tool_calls", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 17, - name: 'allow_individual_level_analytics', - kind: 'scalar', - T: 8, + name: "allow_individual_level_analytics", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, - { - no: 18, - name: 'allow_conversation_sharing', - kind: 'scalar', - T: 8, - opt: true, - }, - { - no: 21, - name: 'pull_request_review_rate_limit', - kind: 'scalar', - T: 5, - opt: true, - }, + { no: 18, name: "allow_conversation_sharing", kind: "scalar", T: 8, opt: true }, + { no: 21, name: "pull_request_review_rate_limit", kind: "scalar", T: 5, opt: true }, { no: 22, - name: 'allow_attribution', - kind: 'scalar', - T: 8, + name: "allow_attribution", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, - { - no: 23, - name: 'allowed_mcp_servers', - kind: 'message', - T: McpServerConfig, - repeated: true, - }, + { no: 23, name: "allowed_mcp_servers", kind: "message", T: McpServerConfig, repeated: true }, { no: 24, - name: 'allow_github_auto_reviews', - kind: 'scalar', - T: 8, + name: "allow_github_auto_reviews", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 25, - name: 'allow_browser_experimental_features', - kind: 'scalar', - T: 8, + name: "allow_browser_experimental_features", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 26, - name: 'disable_tool_call_execution_outside_workspace', - kind: 'scalar', - T: 8, + name: "disable_tool_call_execution_outside_workspace", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ - }, + } ]); static fromBinary(bytes, options) { return new _TeamConfig().fromBinary(bytes, options); @@ -25136,34 +22198,34 @@ var WebAppDeploymentConfig = class _WebAppDeploymentConfig extends Message { * * @generated from field: string project_id = 1; */ - projectId = ''; + projectId = ""; /** * The framework used for the app (examples: nextjs, sveltekit, etc.). * * @generated from field: string framework = 2; */ - framework = ''; + framework = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.WebAppDeploymentConfig'; + static typeName = "exa.codeium_common_pb.WebAppDeploymentConfig"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'project_id', - kind: 'scalar', - T: 9, + name: "project_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'framework', - kind: 'scalar', - T: 9, + name: "framework", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _WebAppDeploymentConfig().fromBinary(bytes, options); @@ -25182,19 +22244,19 @@ var McpServerTemplate = class _McpServerTemplate extends Message { /** * @generated from field: string title = 1; */ - title = ''; + title = ""; /** * @generated from field: string id = 2; */ - id = ''; + id = ""; /** * @generated from field: string link = 3; */ - link = ''; + link = ""; /** * @generated from field: string description = 4; */ - description = ''; + description = ""; /** * Key is the command type (e.g., "npx", "docker") * @@ -25206,43 +22268,37 @@ var McpServerTemplate = class _McpServerTemplate extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.McpServerTemplate'; + static typeName = "exa.codeium_common_pb.McpServerTemplate"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'title', - kind: 'scalar', - T: 9, + name: "title", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'id', - kind: 'scalar', - T: 9, + name: "id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 3, - name: 'link', - kind: 'scalar', - T: 9, + name: "link", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 4, - name: 'description', - kind: 'scalar', - T: 9, + name: "description", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { - no: 5, - name: 'commands', - kind: 'map', - K: 9, - V: { kind: 'message', T: McpServerCommand }, - }, + { no: 5, name: "commands", kind: "map", K: 9, V: { kind: "message", T: McpServerCommand } } ]); static fromBinary(bytes, options) { return new _McpServerTemplate().fromBinary(bytes, options); @@ -25271,16 +22327,10 @@ var McpServerCommand = class _McpServerCommand extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.McpServerCommand'; + static typeName = "exa.codeium_common_pb.McpServerCommand"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'template', kind: 'message', T: McpCommandTemplate }, - { - no: 2, - name: 'variables', - kind: 'message', - T: McpCommandVariable, - repeated: true, - }, + { no: 1, name: "template", kind: "message", T: McpCommandTemplate }, + { no: 2, name: "variables", kind: "message", T: McpCommandVariable, repeated: true } ]); static fromBinary(bytes, options) { return new _McpServerCommand().fromBinary(bytes, options); @@ -25299,7 +22349,7 @@ var McpCommandTemplate = class _McpCommandTemplate extends Message { /** * @generated from field: string command = 1; */ - command = ''; + command = ""; /** * @generated from field: repeated string args = 2; */ @@ -25313,27 +22363,21 @@ var McpCommandTemplate = class _McpCommandTemplate extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.McpCommandTemplate'; + static typeName = "exa.codeium_common_pb.McpCommandTemplate"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'command', - kind: 'scalar', - T: 9, + name: "command", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 2, name: 'args', kind: 'scalar', T: 9, repeated: true }, - { - no: 3, - name: 'env', - kind: 'map', - K: 9, - V: { - kind: 'scalar', - T: 9, - /* ScalarType.STRING */ - }, - }, + { no: 2, name: "args", kind: "scalar", T: 9, repeated: true }, + { no: 3, name: "env", kind: "map", K: 9, V: { + kind: "scalar", + T: 9 + /* ScalarType.STRING */ + } } ]); static fromBinary(bytes, options) { return new _McpCommandTemplate().fromBinary(bytes, options); @@ -25352,54 +22396,54 @@ var McpCommandVariable = class _McpCommandVariable extends Message { /** * @generated from field: string name = 1; */ - name = ''; + name = ""; /** * @generated from field: string title = 2; */ - title = ''; + title = ""; /** * @generated from field: string description = 3; */ - description = ''; + description = ""; /** * @generated from field: string link = 4; */ - link = ''; + link = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.McpCommandVariable'; + static typeName = "exa.codeium_common_pb.McpCommandVariable"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'name', - kind: 'scalar', - T: 9, + name: "name", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'title', - kind: 'scalar', - T: 9, + name: "title", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 3, - name: 'description', - kind: 'scalar', - T: 9, + name: "description", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 4, - name: 'link', - kind: 'scalar', - T: 9, + name: "link", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _McpCommandVariable().fromBinary(bytes, options); @@ -25418,7 +22462,7 @@ var McpServerConfig = class _McpServerConfig extends Message { /** * @generated from field: string server_id = 1; */ - serverId = ''; + serverId = ""; /** * @generated from oneof exa.codeium_common_pb.McpServerConfig.configuration */ @@ -25428,29 +22472,17 @@ var McpServerConfig = class _McpServerConfig extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.McpServerConfig'; + static typeName = "exa.codeium_common_pb.McpServerConfig"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'server_id', - kind: 'scalar', - T: 9, + name: "server_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { - no: 2, - name: 'local', - kind: 'message', - T: McpLocalServer, - oneof: 'configuration', - }, - { - no: 3, - name: 'remote', - kind: 'message', - T: McpRemoteServer, - oneof: 'configuration', - }, + { no: 2, name: "local", kind: "message", T: McpLocalServer, oneof: "configuration" }, + { no: 3, name: "remote", kind: "message", T: McpRemoteServer, oneof: "configuration" } ]); static fromBinary(bytes, options) { return new _McpServerConfig().fromBinary(bytes, options); @@ -25469,7 +22501,7 @@ var McpLocalServer = class _McpLocalServer extends Message { /** * @generated from field: string command = 1; */ - command = ''; + command = ""; /** * @generated from field: repeated string args = 2; */ @@ -25483,27 +22515,21 @@ var McpLocalServer = class _McpLocalServer extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.McpLocalServer'; + static typeName = "exa.codeium_common_pb.McpLocalServer"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'command', - kind: 'scalar', - T: 9, + name: "command", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 2, name: 'args', kind: 'scalar', T: 9, repeated: true }, - { - no: 3, - name: 'env', - kind: 'map', - K: 9, - V: { - kind: 'scalar', - T: 9, - /* ScalarType.STRING */ - }, - }, + { no: 2, name: "args", kind: "scalar", T: 9, repeated: true }, + { no: 3, name: "env", kind: "map", K: 9, V: { + kind: "scalar", + T: 9 + /* ScalarType.STRING */ + } } ]); static fromBinary(bytes, options) { return new _McpLocalServer().fromBinary(bytes, options); @@ -25522,11 +22548,11 @@ var McpRemoteServer = class _McpRemoteServer extends Message { /** * @generated from field: string type = 1; */ - type = ''; + type = ""; /** * @generated from field: string url = 2; */ - url = ''; + url = ""; /** * @generated from field: map headers = 3; */ @@ -25536,33 +22562,27 @@ var McpRemoteServer = class _McpRemoteServer extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.McpRemoteServer'; + static typeName = "exa.codeium_common_pb.McpRemoteServer"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'type', - kind: 'scalar', - T: 9, + name: "type", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'url', - kind: 'scalar', - T: 9, + name: "url", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { - no: 3, - name: 'headers', - kind: 'map', - K: 9, - V: { - kind: 'scalar', - T: 9, - /* ScalarType.STRING */ - }, - }, + { no: 3, name: "headers", kind: "map", K: 9, V: { + kind: "scalar", + T: 9 + /* ScalarType.STRING */ + } } ]); static fromBinary(bytes, options) { return new _McpRemoteServer().fromBinary(bytes, options); @@ -25581,11 +22601,11 @@ var UnleashContext = class _UnleashContext extends Message { /** * @generated from field: string user_id = 1; */ - userId = ''; + userId = ""; /** * @generated from field: string session_id = 2; */ - sessionId = ''; + sessionId = ""; /** * @generated from field: map properties = 3; */ @@ -25595,33 +22615,27 @@ var UnleashContext = class _UnleashContext extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.UnleashContext'; + static typeName = "exa.codeium_common_pb.UnleashContext"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'user_id', - kind: 'scalar', - T: 9, + name: "user_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'session_id', - kind: 'scalar', - T: 9, + name: "session_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { - no: 3, - name: 'properties', - kind: 'map', - K: 9, - V: { - kind: 'scalar', - T: 9, - /* ScalarType.STRING */ - }, - }, + { no: 3, name: "properties", kind: "map", K: 9, V: { + kind: "scalar", + T: 9 + /* ScalarType.STRING */ + } } ]); static fromBinary(bytes, options) { return new _UnleashContext().fromBinary(bytes, options); @@ -25644,7 +22658,7 @@ var BrowserStateSnapshot = class _BrowserStateSnapshot extends Message { /** * @generated from field: string user_active_page_id = 2; */ - userActivePageId = ''; + userActivePageId = ""; /** * @generated from field: repeated exa.codeium_common_pb.BrowserPageMetadata pages = 3; */ @@ -25654,23 +22668,17 @@ var BrowserStateSnapshot = class _BrowserStateSnapshot extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.BrowserStateSnapshot'; + static typeName = "exa.codeium_common_pb.BrowserStateSnapshot"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'timestamp', kind: 'message', T: Timestamp }, + { no: 1, name: "timestamp", kind: "message", T: Timestamp }, { no: 2, - name: 'user_active_page_id', - kind: 'scalar', - T: 9, + name: "user_active_page_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { - no: 3, - name: 'pages', - kind: 'message', - T: BrowserPageMetadata, - repeated: true, - }, + { no: 3, name: "pages", kind: "message", T: BrowserPageMetadata, repeated: true } ]); static fromBinary(bytes, options) { return new _BrowserStateSnapshot().fromBinary(bytes, options); @@ -25691,19 +22699,19 @@ var BrowserPageMetadata = class _BrowserPageMetadata extends Message { * * @generated from field: string url = 1; */ - url = ''; + url = ""; /** * Playwright page identifier. * * @generated from field: string page_id = 2; */ - pageId = ''; + pageId = ""; /** * Title of the page. * * @generated from field: string page_title = 3; */ - pageTitle = ''; + pageTitle = ""; /** * Width of the viewport in pixels. * @@ -25727,7 +22735,7 @@ var BrowserPageMetadata = class _BrowserPageMetadata extends Message { * * @generated from field: string favicon_url = 6; */ - faviconUrl = ''; + faviconUrl = ""; /** * Device pixel ratio of the page. * @@ -25745,65 +22753,65 @@ var BrowserPageMetadata = class _BrowserPageMetadata extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.BrowserPageMetadata'; + static typeName = "exa.codeium_common_pb.BrowserPageMetadata"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'url', - kind: 'scalar', - T: 9, + name: "url", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'page_id', - kind: 'scalar', - T: 9, + name: "page_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 3, - name: 'page_title', - kind: 'scalar', - T: 9, + name: "page_title", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 4, - name: 'viewport_width', - kind: 'scalar', - T: 13, + name: "viewport_width", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, { no: 5, - name: 'viewport_height', - kind: 'scalar', - T: 13, + name: "viewport_height", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, { no: 9, - name: 'page_height', - kind: 'scalar', - T: 13, + name: "page_height", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, { no: 6, - name: 'favicon_url', - kind: 'scalar', - T: 9, + name: "favicon_url", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 8, - name: 'device_pixel_ratio', - kind: 'scalar', - T: 2, + name: "device_pixel_ratio", + kind: "scalar", + T: 2 /* ScalarType.FLOAT */ }, - { no: 7, name: 'last_visited_time', kind: 'message', T: Timestamp }, + { no: 7, name: "last_visited_time", kind: "message", T: Timestamp } ]); static fromBinary(bytes, options) { return new _BrowserPageMetadata().fromBinary(bytes, options); @@ -25852,60 +22860,60 @@ var BrowserClickInteraction = class _BrowserClickInteraction extends Message { * * @generated from field: string target_element_tag_name = 5; */ - targetElementTagName = ''; + targetElementTagName = ""; /** * @generated from field: string target_element_x_path = 6; */ - targetElementXPath = ''; + targetElementXPath = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.BrowserClickInteraction'; + static typeName = "exa.codeium_common_pb.BrowserClickInteraction"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'viewport_scroll_x', - kind: 'scalar', - T: 13, + name: "viewport_scroll_x", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, { no: 2, - name: 'viewport_scroll_y', - kind: 'scalar', - T: 13, + name: "viewport_scroll_y", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, { no: 3, - name: 'click_x', - kind: 'scalar', - T: 13, + name: "click_x", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, { no: 4, - name: 'click_y', - kind: 'scalar', - T: 13, + name: "click_y", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, { no: 5, - name: 'target_element_tag_name', - kind: 'scalar', - T: 9, + name: "target_element_tag_name", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 6, - name: 'target_element_x_path', - kind: 'scalar', - T: 9, + name: "target_element_x_path", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _BrowserClickInteraction().fromBinary(bytes, options); @@ -25940,22 +22948,22 @@ var BrowserScrollInteraction = class _BrowserScrollInteraction extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.BrowserScrollInteraction'; + static typeName = "exa.codeium_common_pb.BrowserScrollInteraction"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'viewport_scroll_x', - kind: 'scalar', - T: 13, + name: "viewport_scroll_x", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, { no: 2, - name: 'viewport_scroll_y', - kind: 'scalar', - T: 13, + name: "viewport_scroll_y", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ - }, + } ]); static fromBinary(bytes, options) { return new _BrowserScrollInteraction().fromBinary(bytes, options); @@ -25994,24 +23002,12 @@ var BrowserInteraction = class _BrowserInteraction extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.BrowserInteraction'; + static typeName = "exa.codeium_common_pb.BrowserInteraction"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'timestamp', kind: 'message', T: Timestamp }, - { no: 2, name: 'page_metadata', kind: 'message', T: BrowserPageMetadata }, - { - no: 3, - name: 'click', - kind: 'message', - T: BrowserClickInteraction, - oneof: 'interaction', - }, - { - no: 4, - name: 'scroll', - kind: 'message', - T: BrowserScrollInteraction, - oneof: 'interaction', - }, + { no: 1, name: "timestamp", kind: "message", T: Timestamp }, + { no: 2, name: "page_metadata", kind: "message", T: BrowserPageMetadata }, + { no: 3, name: "click", kind: "message", T: BrowserClickInteraction, oneof: "interaction" }, + { no: 4, name: "scroll", kind: "message", T: BrowserScrollInteraction, oneof: "interaction" } ]); static fromBinary(bytes, options) { return new _BrowserInteraction().fromBinary(bytes, options); @@ -26039,7 +23035,7 @@ var MetricsMetadata = class _MetricsMetadata extends Message { * * @generated from field: string description = 2; */ - description = ''; + description = ""; /** * In which direction is this metric considered better. Leave unspecified if * no direction. @@ -26071,37 +23067,32 @@ var MetricsMetadata = class _MetricsMetadata extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.MetricsMetadata'; + static typeName = "exa.codeium_common_pb.MetricsMetadata"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'version', - kind: 'scalar', - T: 5, + name: "version", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, { no: 2, - name: 'description', - kind: 'scalar', - T: 9, + name: "description", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { - no: 3, - name: 'better_direction', - kind: 'enum', - T: proto3.getEnumType(BetterDirection), - }, + { no: 3, name: "better_direction", kind: "enum", T: proto3.getEnumType(BetterDirection) }, { no: 4, - name: 'is_bool', - kind: 'scalar', - T: 8, + name: "is_bool", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, - { no: 5, name: 'null_default_value', kind: 'scalar', T: 2, opt: true }, - { no: 6, name: 'scope', kind: 'enum', T: proto3.getEnumType(MetricsScope) }, + { no: 5, name: "null_default_value", kind: "scalar", T: 2, opt: true }, + { no: 6, name: "scope", kind: "enum", T: proto3.getEnumType(MetricsScope) } ]); static fromBinary(bytes, options) { return new _MetricsMetadata().fromBinary(bytes, options); @@ -26122,7 +23113,7 @@ var MetricsRecord = class _MetricsRecord extends Message { * * @generated from field: string name = 1; */ - name = ''; + name = ""; /** * Metadata relating to the generation and definition of the metric. * @@ -26144,7 +23135,7 @@ var MetricsRecord = class _MetricsRecord extends Message { * * @generated from field: string error = 6; */ - error = ''; + error = ""; /** * Trajectory id corresponding to the generator metadata producing this * record. Used primarily for LLM judge-based metrics. Empty if not @@ -26152,7 +23143,7 @@ var MetricsRecord = class _MetricsRecord extends Message { * * @generated from field: string trajectory_id = 7; */ - trajectoryId = ''; + trajectoryId = ""; /** * If a lower value is considered better. * @@ -26172,62 +23163,56 @@ var MetricsRecord = class _MetricsRecord extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.MetricsRecord'; + static typeName = "exa.codeium_common_pb.MetricsRecord"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'name', - kind: 'scalar', - T: 9, + name: "name", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 9, name: 'metadata', kind: 'message', T: MetricsMetadata }, + { no: 9, name: "metadata", kind: "message", T: MetricsMetadata }, { no: 2, - name: 'value', - kind: 'scalar', - T: 2, + name: "value", + kind: "scalar", + T: 2 /* ScalarType.FLOAT */ }, - { - no: 3, - name: 'details', - kind: 'map', - K: 9, - V: { - kind: 'scalar', - T: 9, - /* ScalarType.STRING */ - }, - }, + { no: 3, name: "details", kind: "map", K: 9, V: { + kind: "scalar", + T: 9 + /* ScalarType.STRING */ + } }, { no: 6, - name: 'error', - kind: 'scalar', - T: 9, + name: "error", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 7, - name: 'trajectory_id', - kind: 'scalar', - T: 9, + name: "trajectory_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 4, - name: 'lower_better', - kind: 'scalar', - T: 8, + name: "lower_better", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 5, - name: 'is_bool', - kind: 'scalar', - T: 8, + name: "is_bool", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ - }, + } ]); static fromBinary(bytes, options) { return new _MetricsRecord().fromBinary(bytes, options); @@ -26252,15 +23237,9 @@ var StepLevelMetricsRecord = class _StepLevelMetricsRecord extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.StepLevelMetricsRecord'; + static typeName = "exa.codeium_common_pb.StepLevelMetricsRecord"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'metrics', - kind: 'message', - T: MetricsRecord, - repeated: true, - }, + { no: 1, name: "metrics", kind: "message", T: MetricsRecord, repeated: true } ]); static fromBinary(bytes, options) { return new _StepLevelMetricsRecord().fromBinary(bytes, options); @@ -26283,22 +23262,22 @@ var ModelNotification = class _ModelNotification extends Message { /** * @generated from field: string message = 2; */ - message = ''; + message = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.ModelNotification'; + static typeName = "exa.codeium_common_pb.ModelNotification"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'model', kind: 'enum', T: proto3.getEnumType(Model) }, + { no: 1, name: "model", kind: "enum", T: proto3.getEnumType(Model) }, { no: 2, - name: 'message', - kind: 'scalar', - T: 9, + name: "message", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _ModelNotification().fromBinary(bytes, options); @@ -26323,30 +23302,18 @@ var ModelNotificationExperimentPayload = class _ModelNotificationExperimentPaylo proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.ModelNotificationExperimentPayload'; + static typeName = "exa.codeium_common_pb.ModelNotificationExperimentPayload"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'model_notifications', - kind: 'message', - T: ModelNotification, - repeated: true, - }, + { no: 1, name: "model_notifications", kind: "message", T: ModelNotification, repeated: true } ]); static fromBinary(bytes, options) { return new _ModelNotificationExperimentPayload().fromBinary(bytes, options); } static fromJson(jsonValue, options) { - return new _ModelNotificationExperimentPayload().fromJson( - jsonValue, - options, - ); + return new _ModelNotificationExperimentPayload().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _ModelNotificationExperimentPayload().fromJsonString( - jsonString, - options, - ); + return new _ModelNotificationExperimentPayload().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_ModelNotificationExperimentPayload, a, b); @@ -26358,7 +23325,7 @@ var LspReference = class _LspReference extends Message { * * @generated from field: string uri = 1; */ - uri = ''; + uri = ""; /** * Range in the file * @@ -26376,17 +23343,17 @@ var LspReference = class _LspReference extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.LspReference'; + static typeName = "exa.codeium_common_pb.LspReference"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'uri', - kind: 'scalar', - T: 9, + name: "uri", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 2, name: 'range', kind: 'message', T: Range }, - { no: 3, name: 'snippet', kind: 'scalar', T: 9, opt: true }, + { no: 2, name: "range", kind: "message", T: Range }, + { no: 3, name: "snippet", kind: "scalar", T: 9, opt: true } ]); static fromBinary(bytes, options) { return new _LspReference().fromBinary(bytes, options); @@ -26405,69 +23372,55 @@ var CascadeModelHeaderWarningExperimentPayload = class _CascadeModelHeaderWarnin /** * @generated from field: string text = 1; */ - text = ''; + text = ""; /** * @generated from field: string tooltip_text = 2; */ - tooltipText = ''; + tooltipText = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = - 'exa.codeium_common_pb.CascadeModelHeaderWarningExperimentPayload'; + static typeName = "exa.codeium_common_pb.CascadeModelHeaderWarningExperimentPayload"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'text', - kind: 'scalar', - T: 9, + name: "text", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'tooltip_text', - kind: 'scalar', - T: 9, + name: "tooltip_text", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { - return new _CascadeModelHeaderWarningExperimentPayload().fromBinary( - bytes, - options, - ); + return new _CascadeModelHeaderWarningExperimentPayload().fromBinary(bytes, options); } static fromJson(jsonValue, options) { - return new _CascadeModelHeaderWarningExperimentPayload().fromJson( - jsonValue, - options, - ); + return new _CascadeModelHeaderWarningExperimentPayload().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _CascadeModelHeaderWarningExperimentPayload().fromJsonString( - jsonString, - options, - ); + return new _CascadeModelHeaderWarningExperimentPayload().fromJsonString(jsonString, options); } static equals(a, b) { - return proto3.util.equals( - _CascadeModelHeaderWarningExperimentPayload, - a, - b, - ); + return proto3.util.equals(_CascadeModelHeaderWarningExperimentPayload, a, b); } }; var CodeAnnotation = class _CodeAnnotation extends Message { /** * @generated from field: string id = 1; */ - id = ''; + id = ""; /** * @generated from field: string uri = 2; */ - uri = ''; + uri = ""; /** * @generated from field: uint32 line = 3; */ @@ -26475,7 +23428,7 @@ var CodeAnnotation = class _CodeAnnotation extends Message { /** * @generated from field: string content = 4; */ - content = ''; + content = ""; /** * @generated from field: google.protobuf.Timestamp created_at = 5; */ @@ -26485,37 +23438,37 @@ var CodeAnnotation = class _CodeAnnotation extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.CodeAnnotation'; + static typeName = "exa.codeium_common_pb.CodeAnnotation"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'id', - kind: 'scalar', - T: 9, + name: "id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'uri', - kind: 'scalar', - T: 9, + name: "uri", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 3, - name: 'line', - kind: 'scalar', - T: 13, + name: "line", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, { no: 4, - name: 'content', - kind: 'scalar', - T: 9, + name: "content", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 5, name: 'created_at', kind: 'message', T: Timestamp }, + { no: 5, name: "created_at", kind: "message", T: Timestamp } ]); static fromBinary(bytes, options) { return new _CodeAnnotation().fromBinary(bytes, options); @@ -26540,15 +23493,9 @@ var CodeAnnotationsState = class _CodeAnnotationsState extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.CodeAnnotationsState'; + static typeName = "exa.codeium_common_pb.CodeAnnotationsState"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'annotations', - kind: 'message', - T: CodeAnnotation, - repeated: true, - }, + { no: 1, name: "annotations", kind: "message", T: CodeAnnotation, repeated: true } ]); static fromBinary(bytes, options) { return new _CodeAnnotationsState().fromBinary(bytes, options); @@ -26573,22 +23520,10 @@ var TrajectoryDescription = class _TrajectoryDescription extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.TrajectoryDescription'; + static typeName = "exa.codeium_common_pb.TrajectoryDescription"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'cascade_conversation_title', - kind: 'scalar', - T: 9, - oneof: 'description', - }, - { - no: 2, - name: 'mainline_branch_name', - kind: 'scalar', - T: 9, - oneof: 'description', - }, + { no: 1, name: "cascade_conversation_title", kind: "scalar", T: 9, oneof: "description" }, + { no: 2, name: "mainline_branch_name", kind: "scalar", T: 9, oneof: "description" } ]); static fromBinary(bytes, options) { return new _TrajectoryDescription().fromBinary(bytes, options); @@ -26613,14 +23548,9 @@ var ThirdPartyWebSearchConfig = class _ThirdPartyWebSearchConfig extends Message proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.ThirdPartyWebSearchConfig'; + static typeName = "exa.codeium_common_pb.ThirdPartyWebSearchConfig"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'provider', - kind: 'enum', - T: proto3.getEnumType(ThirdPartyWebSearchProvider), - }, + { no: 1, name: "provider", kind: "enum", T: proto3.getEnumType(ThirdPartyWebSearchProvider) } ]); static fromBinary(bytes, options) { return new _ThirdPartyWebSearchConfig().fromBinary(bytes, options); @@ -26643,28 +23573,28 @@ var GRPCStatus = class _GRPCStatus extends Message { /** * @generated from field: string message = 2; */ - message = ''; + message = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.GRPCStatus'; + static typeName = "exa.codeium_common_pb.GRPCStatus"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'code', - kind: 'scalar', - T: 5, + name: "code", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, { no: 2, - name: 'message', - kind: 'scalar', - T: 9, + name: "message", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _GRPCStatus().fromBinary(bytes, options); @@ -26683,11 +23613,11 @@ var WorkingDirectoryInfo = class _WorkingDirectoryInfo extends Message { /** * @generated from field: string absolute_uri = 1; */ - absoluteUri = ''; + absoluteUri = ""; /** * @generated from field: string relative_path = 2; */ - relativePath = ''; + relativePath = ""; /** * @generated from field: exa.codeium_common_pb.WorkingDirectoryStatus status = 3; */ @@ -26697,41 +23627,36 @@ var WorkingDirectoryInfo = class _WorkingDirectoryInfo extends Message { * * @generated from field: string error = 4; */ - error = ''; + error = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.WorkingDirectoryInfo'; + static typeName = "exa.codeium_common_pb.WorkingDirectoryInfo"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'absolute_uri', - kind: 'scalar', - T: 9, + name: "absolute_uri", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'relative_path', - kind: 'scalar', - T: 9, + name: "relative_path", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { - no: 3, - name: 'status', - kind: 'enum', - T: proto3.getEnumType(WorkingDirectoryStatus), - }, + { no: 3, name: "status", kind: "enum", T: proto3.getEnumType(WorkingDirectoryStatus) }, { no: 4, - name: 'error', - kind: 'scalar', - T: 9, + name: "error", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _WorkingDirectoryInfo().fromBinary(bytes, options); @@ -26765,10 +23690,10 @@ var ArtifactFullFileTarget = class _ArtifactFullFileTarget extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.ArtifactFullFileTarget'; + static typeName = "exa.codeium_common_pb.ArtifactFullFileTarget"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'image', kind: 'message', T: ImageData }, - { no: 2, name: 'media', kind: 'message', T: Media }, + { no: 1, name: "image", kind: "message", T: ImageData }, + { no: 2, name: "media", kind: "message", T: Media } ]); static fromBinary(bytes, options) { return new _ArtifactFullFileTarget().fromBinary(bytes, options); @@ -26789,7 +23714,7 @@ var TextSelection = class _TextSelection extends Message { * * @generated from field: string content = 1; */ - content = ''; + content = ""; /** * Inclusive * @@ -26807,29 +23732,29 @@ var TextSelection = class _TextSelection extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.TextSelection'; + static typeName = "exa.codeium_common_pb.TextSelection"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'content', - kind: 'scalar', - T: 9, + name: "content", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'start_line', - kind: 'scalar', - T: 5, + name: "start_line", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, { no: 3, - name: 'end_line', - kind: 'scalar', - T: 5, + name: "end_line", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ - }, + } ]); static fromBinary(bytes, options) { return new _TextSelection().fromBinary(bytes, options); @@ -26883,38 +23808,38 @@ var ArtifactImageSelection = class _ArtifactImageSelection extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.ArtifactImageSelection'; + static typeName = "exa.codeium_common_pb.ArtifactImageSelection"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'cropped_image', kind: 'message', T: ImageData }, + { no: 1, name: "cropped_image", kind: "message", T: ImageData }, { no: 2, - name: 'x', - kind: 'scalar', - T: 2, + name: "x", + kind: "scalar", + T: 2 /* ScalarType.FLOAT */ }, { no: 3, - name: 'y', - kind: 'scalar', - T: 2, + name: "y", + kind: "scalar", + T: 2 /* ScalarType.FLOAT */ }, { no: 4, - name: 'width', - kind: 'scalar', - T: 2, + name: "width", + kind: "scalar", + T: 2 /* ScalarType.FLOAT */ }, { no: 5, - name: 'height', - kind: 'scalar', - T: 2, + name: "height", + kind: "scalar", + T: 2 /* ScalarType.FLOAT */ }, - { no: 6, name: 'cropped_media', kind: 'message', T: Media }, + { no: 6, name: "cropped_media", kind: "message", T: Media } ]); static fromBinary(bytes, options) { return new _ArtifactImageSelection().fromBinary(bytes, options); @@ -26939,22 +23864,10 @@ var ArtifactSelection = class _ArtifactSelection extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.ArtifactSelection'; + static typeName = "exa.codeium_common_pb.ArtifactSelection"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'text_selection', - kind: 'message', - T: TextSelection, - oneof: 'selection', - }, - { - no: 2, - name: 'image_selection', - kind: 'message', - T: ArtifactImageSelection, - oneof: 'selection', - }, + { no: 1, name: "text_selection", kind: "message", T: TextSelection, oneof: "selection" }, + { no: 2, name: "image_selection", kind: "message", T: ArtifactImageSelection, oneof: "selection" } ]); static fromBinary(bytes, options) { return new _ArtifactSelection().fromBinary(bytes, options); @@ -26979,15 +23892,9 @@ var ArtifactSelectionTarget = class _ArtifactSelectionTarget extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.ArtifactSelectionTarget'; + static typeName = "exa.codeium_common_pb.ArtifactSelectionTarget"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'selections', - kind: 'message', - T: ArtifactSelection, - repeated: true, - }, + { no: 1, name: "selections", kind: "message", T: ArtifactSelection, repeated: true } ]); static fromBinary(bytes, options) { return new _ArtifactSelectionTarget().fromBinary(bytes, options); @@ -27006,7 +23913,7 @@ var ArtifactComment = class _ArtifactComment extends Message { /** * @generated from field: string artifact_uri = 1; */ - artifactUri = ''; + artifactUri = ""; /** * Scope of the comment. * @@ -27016,7 +23923,7 @@ var ArtifactComment = class _ArtifactComment extends Message { /** * @generated from field: string comment = 4; */ - comment = ''; + comment = ""; /** * This reflects whether the user has approved or requested changes on * the artifact. This is only populated if the scope is full_file. @@ -27030,42 +23937,25 @@ var ArtifactComment = class _ArtifactComment extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.ArtifactComment'; + static typeName = "exa.codeium_common_pb.ArtifactComment"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'artifact_uri', - kind: 'scalar', - T: 9, + name: "artifact_uri", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { - no: 5, - name: 'full_file', - kind: 'message', - T: ArtifactFullFileTarget, - oneof: 'scope', - }, - { - no: 6, - name: 'selections', - kind: 'message', - T: ArtifactSelectionTarget, - oneof: 'scope', - }, + { no: 5, name: "full_file", kind: "message", T: ArtifactFullFileTarget, oneof: "scope" }, + { no: 6, name: "selections", kind: "message", T: ArtifactSelectionTarget, oneof: "scope" }, { no: 4, - name: 'comment', - kind: 'scalar', - T: 9, + name: "comment", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { - no: 7, - name: 'approval_status', - kind: 'enum', - T: proto3.getEnumType(ArtifactApprovalStatus), - }, + { no: 7, name: "approval_status", kind: "enum", T: proto3.getEnumType(ArtifactApprovalStatus) } ]); static fromBinary(bytes, options) { return new _ArtifactComment().fromBinary(bytes, options); @@ -27091,7 +23981,7 @@ var ArtifactMetadata = class _ArtifactMetadata extends Message { * * @generated from field: string summary = 2; */ - summary = ''; + summary = ""; /** * @generated from field: google.protobuf.Timestamp created_at = 3; */ @@ -27109,30 +23999,25 @@ var ArtifactMetadata = class _ArtifactMetadata extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.ArtifactMetadata'; + static typeName = "exa.codeium_common_pb.ArtifactMetadata"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'artifact_type', - kind: 'enum', - T: proto3.getEnumType(ArtifactType), - }, + { no: 1, name: "artifact_type", kind: "enum", T: proto3.getEnumType(ArtifactType) }, { no: 2, - name: 'summary', - kind: 'scalar', - T: 9, + name: "summary", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 3, name: 'created_at', kind: 'message', T: Timestamp }, - { no: 4, name: 'updated_at', kind: 'message', T: Timestamp }, + { no: 3, name: "created_at", kind: "message", T: Timestamp }, + { no: 4, name: "updated_at", kind: "message", T: Timestamp }, { no: 5, - name: 'version', - kind: 'scalar', - T: 3, + name: "version", + kind: "scalar", + T: 3 /* ScalarType.INT64 */ - }, + } ]); static fromBinary(bytes, options) { return new _ArtifactMetadata().fromBinary(bytes, options); @@ -27159,35 +24044,23 @@ var DiffCommentInfo = class _DiffCommentInfo extends Message { /** * @generated from field: string comment = 3; */ - comment = ''; + comment = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.DiffCommentInfo'; + static typeName = "exa.codeium_common_pb.DiffCommentInfo"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'original_selection', - kind: 'message', - T: TextSelection, - opt: true, - }, - { - no: 2, - name: 'modified_selection', - kind: 'message', - T: TextSelection, - opt: true, - }, + { no: 1, name: "original_selection", kind: "message", T: TextSelection, opt: true }, + { no: 2, name: "modified_selection", kind: "message", T: TextSelection, opt: true }, { no: 3, - name: 'comment', - kind: 'scalar', - T: 9, + name: "comment", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _DiffCommentInfo().fromBinary(bytes, options); @@ -27206,7 +24079,7 @@ var FileDiffComment = class _FileDiffComment extends Message { /** * @generated from field: string file_uri = 1; */ - fileUri = ''; + fileUri = ""; /** * @generated from field: repeated exa.codeium_common_pb.DiffCommentInfo diff_comment_infos = 3; */ @@ -27216,22 +24089,16 @@ var FileDiffComment = class _FileDiffComment extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.FileDiffComment'; + static typeName = "exa.codeium_common_pb.FileDiffComment"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'file_uri', - kind: 'scalar', - T: 9, + name: "file_uri", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { - no: 3, - name: 'diff_comment_infos', - kind: 'message', - T: DiffCommentInfo, - repeated: true, - }, + { no: 3, name: "diff_comment_infos", kind: "message", T: DiffCommentInfo, repeated: true } ]); static fromBinary(bytes, options) { return new _FileDiffComment().fromBinary(bytes, options); @@ -27250,7 +24117,7 @@ var FileCommentInfo = class _FileCommentInfo extends Message { /** * @generated from field: string comment = 1; */ - comment = ''; + comment = ""; /** * @generated from field: exa.codeium_common_pb.TextSelection selection = 2; */ @@ -27260,16 +24127,16 @@ var FileCommentInfo = class _FileCommentInfo extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.FileCommentInfo'; + static typeName = "exa.codeium_common_pb.FileCommentInfo"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'comment', - kind: 'scalar', - T: 9, + name: "comment", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 2, name: 'selection', kind: 'message', T: TextSelection }, + { no: 2, name: "selection", kind: "message", T: TextSelection } ]); static fromBinary(bytes, options) { return new _FileCommentInfo().fromBinary(bytes, options); @@ -27288,7 +24155,7 @@ var FileComment = class _FileComment extends Message { /** * @generated from field: string file_uri = 1; */ - fileUri = ''; + fileUri = ""; /** * @generated from field: repeated exa.codeium_common_pb.FileCommentInfo file_comment_infos = 2; */ @@ -27298,22 +24165,16 @@ var FileComment = class _FileComment extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.FileComment'; + static typeName = "exa.codeium_common_pb.FileComment"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'file_uri', - kind: 'scalar', - T: 9, + name: "file_uri", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { - no: 2, - name: 'file_comment_infos', - kind: 'message', - T: FileCommentInfo, - repeated: true, - }, + { no: 2, name: "file_comment_infos", kind: "message", T: FileCommentInfo, repeated: true } ]); static fromBinary(bytes, options) { return new _FileComment().fromBinary(bytes, options); @@ -27346,26 +24207,11 @@ var OnlineMetricsConfig = class _OnlineMetricsConfig extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.OnlineMetricsConfig'; + static typeName = "exa.codeium_common_pb.OnlineMetricsConfig"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'user_step_judge_config', - kind: 'message', - T: UserStepJudgeConfig, - }, - { - no: 2, - name: 'planning_mode_judge_config', - kind: 'message', - T: PlanningModeJudgeConfig, - }, - { - no: 3, - name: 'prompt_section_judge_config', - kind: 'message', - T: PromptSectionJudgeConfig, - }, + { no: 1, name: "user_step_judge_config", kind: "message", T: UserStepJudgeConfig }, + { no: 2, name: "planning_mode_judge_config", kind: "message", T: PlanningModeJudgeConfig }, + { no: 3, name: "prompt_section_judge_config", kind: "message", T: PromptSectionJudgeConfig } ]); static fromBinary(bytes, options) { return new _OnlineMetricsConfig().fromBinary(bytes, options); @@ -27396,23 +24242,11 @@ var MetricsSamplingConfig = class _MetricsSamplingConfig extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.MetricsSamplingConfig'; + static typeName = "exa.codeium_common_pb.MetricsSamplingConfig"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'uniform', - kind: 'message', - T: SamplingStrategyUniform, - oneof: 'sampling_strategy', - }, - { - no: 2, - name: 'generator_metadata_aware', - kind: 'message', - T: SamplingStrategyGeneratorMetadataAware, - oneof: 'sampling_strategy', - }, - { no: 3, name: 'random_seed', kind: 'scalar', T: 3, opt: true }, + { no: 1, name: "uniform", kind: "message", T: SamplingStrategyUniform, oneof: "sampling_strategy" }, + { no: 2, name: "generator_metadata_aware", kind: "message", T: SamplingStrategyGeneratorMetadataAware, oneof: "sampling_strategy" }, + { no: 3, name: "random_seed", kind: "scalar", T: 3, opt: true } ]); static fromBinary(bytes, options) { return new _MetricsSamplingConfig().fromBinary(bytes, options); @@ -27439,15 +24273,15 @@ var SamplingStrategyUniform = class _SamplingStrategyUniform extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.SamplingStrategyUniform'; + static typeName = "exa.codeium_common_pb.SamplingStrategyUniform"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'sampling_rate', - kind: 'scalar', - T: 2, + name: "sampling_rate", + kind: "scalar", + T: 2 /* ScalarType.FLOAT */ - }, + } ]); static fromBinary(bytes, options) { return new _SamplingStrategyUniform().fromBinary(bytes, options); @@ -27494,55 +24328,45 @@ var SamplingStrategyGeneratorMetadataAware = class _SamplingStrategyGeneratorMet proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = - 'exa.codeium_common_pb.SamplingStrategyGeneratorMetadataAware'; + static typeName = "exa.codeium_common_pb.SamplingStrategyGeneratorMetadataAware"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'target_sampling_rate', - kind: 'scalar', - T: 2, + name: "target_sampling_rate", + kind: "scalar", + T: 2 /* ScalarType.FLOAT */ }, { no: 2, - name: 'baseline_sampling_rate', - kind: 'scalar', - T: 2, + name: "baseline_sampling_rate", + kind: "scalar", + T: 2 /* ScalarType.FLOAT */ }, { no: 3, - name: 'start_generator_metadata_index', - kind: 'scalar', - T: 5, + name: "start_generator_metadata_index", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, { no: 4, - name: 'end_generator_metadata_index', - kind: 'scalar', - T: 5, + name: "end_generator_metadata_index", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ - }, + } ]); static fromBinary(bytes, options) { - return new _SamplingStrategyGeneratorMetadataAware().fromBinary( - bytes, - options, - ); + return new _SamplingStrategyGeneratorMetadataAware().fromBinary(bytes, options); } static fromJson(jsonValue, options) { - return new _SamplingStrategyGeneratorMetadataAware().fromJson( - jsonValue, - options, - ); + return new _SamplingStrategyGeneratorMetadataAware().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _SamplingStrategyGeneratorMetadataAware().fromJsonString( - jsonString, - options, - ); + return new _SamplingStrategyGeneratorMetadataAware().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_SamplingStrategyGeneratorMetadataAware, a, b); @@ -27566,23 +24390,17 @@ var PromptSectionJudgeConfig = class _PromptSectionJudgeConfig extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.PromptSectionJudgeConfig'; + static typeName = "exa.codeium_common_pb.PromptSectionJudgeConfig"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'enabled', - kind: 'scalar', - T: 8, + name: "enabled", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, - { - no: 2, - name: 'sampling_config', - kind: 'message', - T: MetricsSamplingConfig, - opt: true, - }, - { no: 3, name: 'judge_model', kind: 'enum', T: proto3.getEnumType(Model) }, + { no: 2, name: "sampling_config", kind: "message", T: MetricsSamplingConfig, opt: true }, + { no: 3, name: "judge_model", kind: "enum", T: proto3.getEnumType(Model) } ]); static fromBinary(bytes, options) { return new _PromptSectionJudgeConfig().fromBinary(bytes, options); @@ -27619,30 +24437,24 @@ var UserStepJudgeConfig = class _UserStepJudgeConfig extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.UserStepJudgeConfig'; + static typeName = "exa.codeium_common_pb.UserStepJudgeConfig"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'enabled', - kind: 'scalar', - T: 8, + name: "enabled", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, - { - no: 2, - name: 'sampling_config', - kind: 'message', - T: MetricsSamplingConfig, - opt: true, - }, - { no: 3, name: 'judge_model', kind: 'enum', T: proto3.getEnumType(Model) }, + { no: 2, name: "sampling_config", kind: "message", T: MetricsSamplingConfig, opt: true }, + { no: 3, name: "judge_model", kind: "enum", T: proto3.getEnumType(Model) }, { no: 4, - name: 'max_tokens', - kind: 'scalar', - T: 13, + name: "max_tokens", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ - }, + } ]); static fromBinary(bytes, options) { return new _UserStepJudgeConfig().fromBinary(bytes, options); @@ -27675,17 +24487,11 @@ var PlanningModeJudgeConfig = class _PlanningModeJudgeConfig extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.PlanningModeJudgeConfig'; + static typeName = "exa.codeium_common_pb.PlanningModeJudgeConfig"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'enabled', kind: 'scalar', T: 8, opt: true }, - { - no: 2, - name: 'sampling_config', - kind: 'message', - T: MetricsSamplingConfig, - opt: true, - }, - { no: 3, name: 'judge_model', kind: 'enum', T: proto3.getEnumType(Model) }, + { no: 1, name: "enabled", kind: "scalar", T: 8, opt: true }, + { no: 2, name: "sampling_config", kind: "message", T: MetricsSamplingConfig, opt: true }, + { no: 3, name: "judge_model", kind: "enum", T: proto3.getEnumType(Model) } ]); static fromBinary(bytes, options) { return new _PlanningModeJudgeConfig().fromBinary(bytes, options); @@ -27714,22 +24520,22 @@ var Point2 = class _Point2 extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.Point2'; + static typeName = "exa.codeium_common_pb.Point2"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'x', - kind: 'scalar', - T: 5, + name: "x", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, { no: 2, - name: 'y', - kind: 'scalar', - T: 5, + name: "y", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ - }, + } ]); static fromBinary(bytes, options) { return new _Point2().fromBinary(bytes, options); @@ -27748,23 +24554,23 @@ var JetskiTelemetryExtension = class _JetskiTelemetryExtension extends Message { /** * @generated from field: string ide_name = 16; */ - ideName = ''; + ideName = ""; /** * @generated from field: string ide_version = 17; */ - ideVersion = ''; + ideVersion = ""; /** * @generated from field: string os = 18; */ - os = ''; + os = ""; /** * @generated from field: string arch = 19; */ - arch = ''; + arch = ""; /** * @generated from field: string user_tier_id = 22; */ - userTierId = ''; + userTierId = ""; /** * @generated from field: repeated string user_tags = 23; */ @@ -27782,72 +24588,54 @@ var JetskiTelemetryExtension = class _JetskiTelemetryExtension extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.JetskiTelemetryExtension'; + static typeName = "exa.codeium_common_pb.JetskiTelemetryExtension"; static fields = proto3.util.newFieldList(() => [ { no: 16, - name: 'ide_name', - kind: 'scalar', - T: 9, + name: "ide_name", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 17, - name: 'ide_version', - kind: 'scalar', - T: 9, + name: "ide_version", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 18, - name: 'os', - kind: 'scalar', - T: 9, + name: "os", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 19, - name: 'arch', - kind: 'scalar', - T: 9, + name: "arch", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 22, - name: 'user_tier_id', - kind: 'scalar', - T: 9, + name: "user_tier_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 23, name: 'user_tags', kind: 'scalar', T: 9, repeated: true }, + { no: 23, name: "user_tags", kind: "scalar", T: 9, repeated: true }, { no: 24, - name: 'is_redacted', - kind: 'scalar', - T: 8, + name: "is_redacted", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, - { - no: 6, - name: 'analytics_event_metadata', - kind: 'message', - T: AnalyticsEventMetadata, - oneof: 'payload', - }, - { - no: 15, - name: 'error_trace_metadata', - kind: 'message', - T: ErrorTraceMetadata, - oneof: 'payload', - }, - { - no: 26, - name: 'observability_data', - kind: 'message', - T: ObservabilityData, - oneof: 'payload', - }, + { no: 6, name: "analytics_event_metadata", kind: "message", T: AnalyticsEventMetadata, oneof: "payload" }, + { no: 15, name: "error_trace_metadata", kind: "message", T: ErrorTraceMetadata, oneof: "payload" }, + { no: 26, name: "observability_data", kind: "message", T: ObservabilityData, oneof: "payload" } ]); static fromBinary(bytes, options) { return new _JetskiTelemetryExtension().fromBinary(bytes, options); @@ -27866,32 +24654,32 @@ var ExtraMetadata = class _ExtraMetadata extends Message { /** * @generated from field: string key = 1; */ - key = ''; + key = ""; /** * @generated from field: string value = 2; */ - value = ''; + value = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.ExtraMetadata'; + static typeName = "exa.codeium_common_pb.ExtraMetadata"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'key', - kind: 'scalar', - T: 9, + name: "key", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'value', - kind: 'scalar', - T: 9, + name: "value", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _ExtraMetadata().fromBinary(bytes, options); @@ -27910,7 +24698,7 @@ var Experiment = class _Experiment extends Message { /** * @generated from field: string key = 1; */ - key = ''; + key = ""; /** * @generated from field: bool enabled = 2; */ @@ -27920,22 +24708,22 @@ var Experiment = class _Experiment extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.Experiment'; + static typeName = "exa.codeium_common_pb.Experiment"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'key', - kind: 'scalar', - T: 9, + name: "key", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'enabled', - kind: 'scalar', - T: 8, + name: "enabled", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ - }, + } ]); static fromBinary(bytes, options) { return new _Experiment().fromBinary(bytes, options); @@ -27956,7 +24744,7 @@ var AnalyticsEventMetadata = class _AnalyticsEventMetadata extends Message { * * @generated from field: string event_type = 1; */ - eventType = ''; + eventType = ""; /** * Additional metadata associated with the event. * @@ -27974,23 +24762,17 @@ var AnalyticsEventMetadata = class _AnalyticsEventMetadata extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.AnalyticsEventMetadata'; + static typeName = "exa.codeium_common_pb.AnalyticsEventMetadata"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'event_type', - kind: 'scalar', - T: 9, + name: "event_type", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 2, name: 'extra', kind: 'message', T: ExtraMetadata, repeated: true }, - { - no: 3, - name: 'experiments', - kind: 'message', - T: Experiment, - repeated: true, - }, + { no: 2, name: "extra", kind: "message", T: ExtraMetadata, repeated: true }, + { no: 3, name: "experiments", kind: "message", T: Experiment, repeated: true } ]); static fromBinary(bytes, options) { return new _AnalyticsEventMetadata().fromBinary(bytes, options); @@ -28015,9 +24797,9 @@ var ErrorTraceMetadata = class _ErrorTraceMetadata extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.ErrorTraceMetadata'; + static typeName = "exa.codeium_common_pb.ErrorTraceMetadata"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'error_trace', kind: 'message', T: ErrorTrace }, + { no: 1, name: "error_trace", kind: "message", T: ErrorTrace } ]); static fromBinary(bytes, options) { return new _ErrorTraceMetadata().fromBinary(bytes, options); @@ -28036,7 +24818,7 @@ var ObservabilityData = class _ObservabilityData extends Message { /** * @generated from field: string type = 1; */ - type = ''; + type = ""; /** * Data that is safe to retain without redaction. * @@ -28055,29 +24837,17 @@ var ObservabilityData = class _ObservabilityData extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.ObservabilityData'; + static typeName = "exa.codeium_common_pb.ObservabilityData"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'type', - kind: 'scalar', - T: 9, + name: "type", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { - no: 2, - name: 'non_sensitive_data', - kind: 'message', - T: ExtraMetadata, - repeated: true, - }, - { - no: 3, - name: 'sensitive_data', - kind: 'message', - T: ExtraMetadata, - repeated: true, - }, + { no: 2, name: "non_sensitive_data", kind: "message", T: ExtraMetadata, repeated: true }, + { no: 3, name: "sensitive_data", kind: "message", T: ExtraMetadata, repeated: true } ]); static fromBinary(bytes, options) { return new _ObservabilityData().fromBinary(bytes, options); @@ -28106,22 +24876,22 @@ var LogEvent = class _LogEvent extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.LogEvent'; + static typeName = "exa.codeium_common_pb.LogEvent"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'event_time_ms', - kind: 'scalar', - T: 3, + name: "event_time_ms", + kind: "scalar", + T: 3 /* ScalarType.INT64 */ }, { no: 6, - name: 'source_extension', - kind: 'scalar', - T: 12, + name: "source_extension", + kind: "scalar", + T: 12 /* ScalarType.BYTES */ - }, + } ]); static fromBinary(bytes, options) { return new _LogEvent().fromBinary(bytes, options); @@ -28148,15 +24918,15 @@ var ClientInfo = class _ClientInfo extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.ClientInfo'; + static typeName = "exa.codeium_common_pb.ClientInfo"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'client_type', - kind: 'scalar', - T: 5, + name: "client_type", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ - }, + } ]); static fromBinary(bytes, options) { return new _ClientInfo().fromBinary(bytes, options); @@ -28195,24 +24965,24 @@ var LogRequest = class _LogRequest extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.LogRequest'; + static typeName = "exa.codeium_common_pb.LogRequest"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'client_info', kind: 'message', T: ClientInfo }, + { no: 1, name: "client_info", kind: "message", T: ClientInfo }, { no: 2, - name: 'log_source', - kind: 'scalar', - T: 5, + name: "log_source", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, - { no: 3, name: 'log_events', kind: 'message', T: LogEvent, repeated: true }, + { no: 3, name: "log_events", kind: "message", T: LogEvent, repeated: true }, { no: 4, - name: 'request_time_ms', - kind: 'scalar', - T: 3, + name: "request_time_ms", + kind: "scalar", + T: 3 /* ScalarType.INT64 */ - }, + } ]); static fromBinary(bytes, options) { return new _LogRequest().fromBinary(bytes, options); @@ -28237,15 +25007,15 @@ var LogResponse = class _LogResponse extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.codeium_common_pb.LogResponse'; + static typeName = "exa.codeium_common_pb.LogResponse"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'next_request_wait_millis', - kind: 'scalar', - T: 3, + name: "next_request_wait_millis", + kind: "scalar", + T: 3 /* ScalarType.INT64 */ - }, + } ]); static fromBinary(bytes, options) { return new _LogResponse().fromBinary(bytes, options); @@ -28263,52 +25033,47 @@ var LogResponse = class _LogResponse extends Message { // exa/proto_ts/dist/exa/diff_action_pb/diff_action_pb.js var UnifiedDiffLineType; -(function (UnifiedDiffLineType2) { - UnifiedDiffLineType2[(UnifiedDiffLineType2['UNSPECIFIED'] = 0)] = - 'UNSPECIFIED'; - UnifiedDiffLineType2[(UnifiedDiffLineType2['INSERT'] = 1)] = 'INSERT'; - UnifiedDiffLineType2[(UnifiedDiffLineType2['DELETE'] = 2)] = 'DELETE'; - UnifiedDiffLineType2[(UnifiedDiffLineType2['UNCHANGED'] = 3)] = 'UNCHANGED'; +(function(UnifiedDiffLineType2) { + UnifiedDiffLineType2[UnifiedDiffLineType2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + UnifiedDiffLineType2[UnifiedDiffLineType2["INSERT"] = 1] = "INSERT"; + UnifiedDiffLineType2[UnifiedDiffLineType2["DELETE"] = 2] = "DELETE"; + UnifiedDiffLineType2[UnifiedDiffLineType2["UNCHANGED"] = 3] = "UNCHANGED"; })(UnifiedDiffLineType || (UnifiedDiffLineType = {})); -proto3.util.setEnumType( - UnifiedDiffLineType, - 'exa.diff_action_pb.UnifiedDiffLineType', - [ - { no: 0, name: 'UNIFIED_DIFF_LINE_TYPE_UNSPECIFIED' }, - { no: 1, name: 'UNIFIED_DIFF_LINE_TYPE_INSERT' }, - { no: 2, name: 'UNIFIED_DIFF_LINE_TYPE_DELETE' }, - { no: 3, name: 'UNIFIED_DIFF_LINE_TYPE_UNCHANGED' }, - ], -); +proto3.util.setEnumType(UnifiedDiffLineType, "exa.diff_action_pb.UnifiedDiffLineType", [ + { no: 0, name: "UNIFIED_DIFF_LINE_TYPE_UNSPECIFIED" }, + { no: 1, name: "UNIFIED_DIFF_LINE_TYPE_INSERT" }, + { no: 2, name: "UNIFIED_DIFF_LINE_TYPE_DELETE" }, + { no: 3, name: "UNIFIED_DIFF_LINE_TYPE_UNCHANGED" } +]); var DiffChangeType; -(function (DiffChangeType2) { - DiffChangeType2[(DiffChangeType2['UNSPECIFIED'] = 0)] = 'UNSPECIFIED'; - DiffChangeType2[(DiffChangeType2['INSERT'] = 1)] = 'INSERT'; - DiffChangeType2[(DiffChangeType2['DELETE'] = 2)] = 'DELETE'; - DiffChangeType2[(DiffChangeType2['UNCHANGED'] = 3)] = 'UNCHANGED'; +(function(DiffChangeType2) { + DiffChangeType2[DiffChangeType2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + DiffChangeType2[DiffChangeType2["INSERT"] = 1] = "INSERT"; + DiffChangeType2[DiffChangeType2["DELETE"] = 2] = "DELETE"; + DiffChangeType2[DiffChangeType2["UNCHANGED"] = 3] = "UNCHANGED"; })(DiffChangeType || (DiffChangeType = {})); -proto3.util.setEnumType(DiffChangeType, 'exa.diff_action_pb.DiffChangeType', [ - { no: 0, name: 'DIFF_CHANGE_TYPE_UNSPECIFIED' }, - { no: 1, name: 'DIFF_CHANGE_TYPE_INSERT' }, - { no: 2, name: 'DIFF_CHANGE_TYPE_DELETE' }, - { no: 3, name: 'DIFF_CHANGE_TYPE_UNCHANGED' }, +proto3.util.setEnumType(DiffChangeType, "exa.diff_action_pb.DiffChangeType", [ + { no: 0, name: "DIFF_CHANGE_TYPE_UNSPECIFIED" }, + { no: 1, name: "DIFF_CHANGE_TYPE_INSERT" }, + { no: 2, name: "DIFF_CHANGE_TYPE_DELETE" }, + { no: 3, name: "DIFF_CHANGE_TYPE_UNCHANGED" } ]); var DiffType; -(function (DiffType2) { - DiffType2[(DiffType2['UNSPECIFIED'] = 0)] = 'UNSPECIFIED'; - DiffType2[(DiffType2['UNIFIED'] = 1)] = 'UNIFIED'; - DiffType2[(DiffType2['CHARACTER'] = 2)] = 'CHARACTER'; - DiffType2[(DiffType2['COMBO'] = 3)] = 'COMBO'; - DiffType2[(DiffType2['TMP_SUPERCOMPLETE'] = 4)] = 'TMP_SUPERCOMPLETE'; - DiffType2[(DiffType2['TMP_TAB_JUMP'] = 5)] = 'TMP_TAB_JUMP'; +(function(DiffType2) { + DiffType2[DiffType2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + DiffType2[DiffType2["UNIFIED"] = 1] = "UNIFIED"; + DiffType2[DiffType2["CHARACTER"] = 2] = "CHARACTER"; + DiffType2[DiffType2["COMBO"] = 3] = "COMBO"; + DiffType2[DiffType2["TMP_SUPERCOMPLETE"] = 4] = "TMP_SUPERCOMPLETE"; + DiffType2[DiffType2["TMP_TAB_JUMP"] = 5] = "TMP_TAB_JUMP"; })(DiffType || (DiffType = {})); -proto3.util.setEnumType(DiffType, 'exa.diff_action_pb.DiffType', [ - { no: 0, name: 'DIFF_TYPE_UNSPECIFIED' }, - { no: 1, name: 'DIFF_TYPE_UNIFIED' }, - { no: 2, name: 'DIFF_TYPE_CHARACTER' }, - { no: 3, name: 'DIFF_TYPE_COMBO' }, - { no: 4, name: 'DIFF_TYPE_TMP_SUPERCOMPLETE' }, - { no: 5, name: 'DIFF_TYPE_TMP_TAB_JUMP' }, +proto3.util.setEnumType(DiffType, "exa.diff_action_pb.DiffType", [ + { no: 0, name: "DIFF_TYPE_UNSPECIFIED" }, + { no: 1, name: "DIFF_TYPE_UNIFIED" }, + { no: 2, name: "DIFF_TYPE_CHARACTER" }, + { no: 3, name: "DIFF_TYPE_COMBO" }, + { no: 4, name: "DIFF_TYPE_TMP_SUPERCOMPLETE" }, + { no: 5, name: "DIFF_TYPE_TMP_TAB_JUMP" } ]); var UnifiedDiff = class _UnifiedDiff extends Message { /** @@ -28320,15 +25085,9 @@ var UnifiedDiff = class _UnifiedDiff extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.diff_action_pb.UnifiedDiff'; + static typeName = "exa.diff_action_pb.UnifiedDiff"; static fields = proto3.util.newFieldList(() => [ - { - no: 3, - name: 'lines', - kind: 'message', - T: UnifiedDiff_UnifiedDiffLine, - repeated: true, - }, + { no: 3, name: "lines", kind: "message", T: UnifiedDiff_UnifiedDiffLine, repeated: true } ]); static fromBinary(bytes, options) { return new _UnifiedDiff().fromBinary(bytes, options); @@ -28347,7 +25106,7 @@ var UnifiedDiff_UnifiedDiffLine = class _UnifiedDiff_UnifiedDiffLine extends Mes /** * @generated from field: string text = 1; */ - text = ''; + text = ""; /** * @generated from field: exa.diff_action_pb.UnifiedDiffLineType type = 2; */ @@ -28357,21 +25116,16 @@ var UnifiedDiff_UnifiedDiffLine = class _UnifiedDiff_UnifiedDiffLine extends Mes proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.diff_action_pb.UnifiedDiff.UnifiedDiffLine'; + static typeName = "exa.diff_action_pb.UnifiedDiff.UnifiedDiffLine"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'text', - kind: 'scalar', - T: 9, + name: "text", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { - no: 2, - name: 'type', - kind: 'enum', - T: proto3.getEnumType(UnifiedDiffLineType), - }, + { no: 2, name: "type", kind: "enum", T: proto3.getEnumType(UnifiedDiffLineType) } ]); static fromBinary(bytes, options) { return new _UnifiedDiff_UnifiedDiffLine().fromBinary(bytes, options); @@ -28380,10 +25134,7 @@ var UnifiedDiff_UnifiedDiffLine = class _UnifiedDiff_UnifiedDiffLine extends Mes return new _UnifiedDiff_UnifiedDiffLine().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _UnifiedDiff_UnifiedDiffLine().fromJsonString( - jsonString, - options, - ); + return new _UnifiedDiff_UnifiedDiffLine().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_UnifiedDiff_UnifiedDiffLine, a, b); @@ -28410,23 +25161,23 @@ var DiffBlock = class _DiffBlock extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.diff_action_pb.DiffBlock'; + static typeName = "exa.diff_action_pb.DiffBlock"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'start_line', - kind: 'scalar', - T: 5, + name: "start_line", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, { no: 2, - name: 'end_line', - kind: 'scalar', - T: 5, + name: "end_line", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, - { no: 3, name: 'unified_diff', kind: 'message', T: UnifiedDiff }, + { no: 3, name: "unified_diff", kind: "message", T: UnifiedDiff } ]); static fromBinary(bytes, options) { return new _DiffBlock().fromBinary(bytes, options); @@ -28445,7 +25196,7 @@ var CharacterDiffChange = class _CharacterDiffChange extends Message { /** * @generated from field: string text = 1; */ - text = ''; + text = ""; /** * @generated from field: exa.diff_action_pb.DiffChangeType type = 2; */ @@ -28455,21 +25206,16 @@ var CharacterDiffChange = class _CharacterDiffChange extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.diff_action_pb.CharacterDiffChange'; + static typeName = "exa.diff_action_pb.CharacterDiffChange"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'text', - kind: 'scalar', - T: 9, + name: "text", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { - no: 2, - name: 'type', - kind: 'enum', - T: proto3.getEnumType(DiffChangeType), - }, + { no: 2, name: "type", kind: "enum", T: proto3.getEnumType(DiffChangeType) } ]); static fromBinary(bytes, options) { return new _CharacterDiffChange().fromBinary(bytes, options); @@ -28499,15 +25245,9 @@ var CharacterDiff = class _CharacterDiff extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.diff_action_pb.CharacterDiff'; + static typeName = "exa.diff_action_pb.CharacterDiff"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'changes', - kind: 'message', - T: CharacterDiffChange, - repeated: true, - }, + { no: 1, name: "changes", kind: "message", T: CharacterDiffChange, repeated: true } ]); static fromBinary(bytes, options) { return new _CharacterDiff().fromBinary(bytes, options); @@ -28528,7 +25268,7 @@ var ComboDiffLine = class _ComboDiffLine extends Message { * * @generated from field: string text = 1; */ - text = ''; + text = ""; /** * Whether the line contains insertions/deletions or is unchanged. * @@ -28551,22 +25291,17 @@ var ComboDiffLine = class _ComboDiffLine extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.diff_action_pb.ComboDiffLine'; + static typeName = "exa.diff_action_pb.ComboDiffLine"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'text', - kind: 'scalar', - T: 9, + name: "text", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { - no: 2, - name: 'type', - kind: 'enum', - T: proto3.getEnumType(DiffChangeType), - }, - { no: 3, name: 'character_diff', kind: 'message', T: CharacterDiff }, + { no: 2, name: "type", kind: "enum", T: proto3.getEnumType(DiffChangeType) }, + { no: 3, name: "character_diff", kind: "message", T: CharacterDiff } ]); static fromBinary(bytes, options) { return new _ComboDiffLine().fromBinary(bytes, options); @@ -28593,9 +25328,9 @@ var ComboDiff = class _ComboDiff extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.diff_action_pb.ComboDiff'; + static typeName = "exa.diff_action_pb.ComboDiff"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'lines', kind: 'message', T: ComboDiffLine, repeated: true }, + { no: 1, name: "lines", kind: "message", T: ComboDiffLine, repeated: true } ]); static fromBinary(bytes, options) { return new _ComboDiff().fromBinary(bytes, options); @@ -28628,11 +25363,11 @@ var DiffSet = class _DiffSet extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.diff_action_pb.DiffSet'; + static typeName = "exa.diff_action_pb.DiffSet"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'unified_diff', kind: 'message', T: UnifiedDiff }, - { no: 2, name: 'character_diff', kind: 'message', T: CharacterDiff }, - { no: 3, name: 'combo_diff', kind: 'message', T: ComboDiff }, + { no: 1, name: "unified_diff", kind: "message", T: UnifiedDiff }, + { no: 2, name: "character_diff", kind: "message", T: CharacterDiff }, + { no: 3, name: "combo_diff", kind: "message", T: ComboDiff } ]); static fromBinary(bytes, options) { return new _DiffSet().fromBinary(bytes, options); @@ -28657,9 +25392,9 @@ var DiffList = class _DiffList extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.diff_action_pb.DiffList'; + static typeName = "exa.diff_action_pb.DiffList"; static fields = proto3.util.newFieldList(() => [ - { no: 2, name: 'diffs', kind: 'message', T: DiffBlock, repeated: true }, + { no: 2, name: "diffs", kind: "message", T: DiffBlock, repeated: true } ]); static fromBinary(bytes, options) { return new _DiffList().fromBinary(bytes, options); @@ -28677,68 +25412,55 @@ var DiffList = class _DiffList extends Message { // exa/proto_ts/dist/exa/chat_pb/chat_pb.js var ChatFeedbackType; -(function (ChatFeedbackType2) { - ChatFeedbackType2[(ChatFeedbackType2['FEEDBACK_TYPE_UNSPECIFIED'] = 0)] = - 'FEEDBACK_TYPE_UNSPECIFIED'; - ChatFeedbackType2[(ChatFeedbackType2['FEEDBACK_TYPE_ACCEPT'] = 1)] = - 'FEEDBACK_TYPE_ACCEPT'; - ChatFeedbackType2[(ChatFeedbackType2['FEEDBACK_TYPE_REJECT'] = 2)] = - 'FEEDBACK_TYPE_REJECT'; - ChatFeedbackType2[(ChatFeedbackType2['FEEDBACK_TYPE_COPIED'] = 3)] = - 'FEEDBACK_TYPE_COPIED'; - ChatFeedbackType2[(ChatFeedbackType2['FEEDBACK_TYPE_ACCEPT_DIFF'] = 4)] = - 'FEEDBACK_TYPE_ACCEPT_DIFF'; - ChatFeedbackType2[(ChatFeedbackType2['FEEDBACK_TYPE_REJECT_DIFF'] = 5)] = - 'FEEDBACK_TYPE_REJECT_DIFF'; - ChatFeedbackType2[(ChatFeedbackType2['FEEDBACK_TYPE_APPLY_DIFF'] = 6)] = - 'FEEDBACK_TYPE_APPLY_DIFF'; - ChatFeedbackType2[(ChatFeedbackType2['FEEDBACK_TYPE_INSERT_AT_CURSOR'] = 7)] = - 'FEEDBACK_TYPE_INSERT_AT_CURSOR'; +(function(ChatFeedbackType2) { + ChatFeedbackType2[ChatFeedbackType2["FEEDBACK_TYPE_UNSPECIFIED"] = 0] = "FEEDBACK_TYPE_UNSPECIFIED"; + ChatFeedbackType2[ChatFeedbackType2["FEEDBACK_TYPE_ACCEPT"] = 1] = "FEEDBACK_TYPE_ACCEPT"; + ChatFeedbackType2[ChatFeedbackType2["FEEDBACK_TYPE_REJECT"] = 2] = "FEEDBACK_TYPE_REJECT"; + ChatFeedbackType2[ChatFeedbackType2["FEEDBACK_TYPE_COPIED"] = 3] = "FEEDBACK_TYPE_COPIED"; + ChatFeedbackType2[ChatFeedbackType2["FEEDBACK_TYPE_ACCEPT_DIFF"] = 4] = "FEEDBACK_TYPE_ACCEPT_DIFF"; + ChatFeedbackType2[ChatFeedbackType2["FEEDBACK_TYPE_REJECT_DIFF"] = 5] = "FEEDBACK_TYPE_REJECT_DIFF"; + ChatFeedbackType2[ChatFeedbackType2["FEEDBACK_TYPE_APPLY_DIFF"] = 6] = "FEEDBACK_TYPE_APPLY_DIFF"; + ChatFeedbackType2[ChatFeedbackType2["FEEDBACK_TYPE_INSERT_AT_CURSOR"] = 7] = "FEEDBACK_TYPE_INSERT_AT_CURSOR"; })(ChatFeedbackType || (ChatFeedbackType = {})); -proto3.util.setEnumType(ChatFeedbackType, 'exa.chat_pb.ChatFeedbackType', [ - { no: 0, name: 'FEEDBACK_TYPE_UNSPECIFIED' }, - { no: 1, name: 'FEEDBACK_TYPE_ACCEPT' }, - { no: 2, name: 'FEEDBACK_TYPE_REJECT' }, - { no: 3, name: 'FEEDBACK_TYPE_COPIED' }, - { no: 4, name: 'FEEDBACK_TYPE_ACCEPT_DIFF' }, - { no: 5, name: 'FEEDBACK_TYPE_REJECT_DIFF' }, - { no: 6, name: 'FEEDBACK_TYPE_APPLY_DIFF' }, - { no: 7, name: 'FEEDBACK_TYPE_INSERT_AT_CURSOR' }, +proto3.util.setEnumType(ChatFeedbackType, "exa.chat_pb.ChatFeedbackType", [ + { no: 0, name: "FEEDBACK_TYPE_UNSPECIFIED" }, + { no: 1, name: "FEEDBACK_TYPE_ACCEPT" }, + { no: 2, name: "FEEDBACK_TYPE_REJECT" }, + { no: 3, name: "FEEDBACK_TYPE_COPIED" }, + { no: 4, name: "FEEDBACK_TYPE_ACCEPT_DIFF" }, + { no: 5, name: "FEEDBACK_TYPE_REJECT_DIFF" }, + { no: 6, name: "FEEDBACK_TYPE_APPLY_DIFF" }, + { no: 7, name: "FEEDBACK_TYPE_INSERT_AT_CURSOR" } ]); var ChatIntentType; -(function (ChatIntentType2) { - ChatIntentType2[(ChatIntentType2['CHAT_INTENT_UNSPECIFIED'] = 0)] = - 'CHAT_INTENT_UNSPECIFIED'; - ChatIntentType2[(ChatIntentType2['CHAT_INTENT_GENERIC'] = 1)] = - 'CHAT_INTENT_GENERIC'; - ChatIntentType2[(ChatIntentType2['CHAT_INTENT_CODE_BLOCK_REFACTOR'] = 6)] = - 'CHAT_INTENT_CODE_BLOCK_REFACTOR'; - ChatIntentType2[(ChatIntentType2['CHAT_INTENT_GENERATE_CODE'] = 9)] = - 'CHAT_INTENT_GENERATE_CODE'; - ChatIntentType2[(ChatIntentType2['CHAT_INTENT_FAST_APPLY'] = 12)] = - 'CHAT_INTENT_FAST_APPLY'; +(function(ChatIntentType2) { + ChatIntentType2[ChatIntentType2["CHAT_INTENT_UNSPECIFIED"] = 0] = "CHAT_INTENT_UNSPECIFIED"; + ChatIntentType2[ChatIntentType2["CHAT_INTENT_GENERIC"] = 1] = "CHAT_INTENT_GENERIC"; + ChatIntentType2[ChatIntentType2["CHAT_INTENT_CODE_BLOCK_REFACTOR"] = 6] = "CHAT_INTENT_CODE_BLOCK_REFACTOR"; + ChatIntentType2[ChatIntentType2["CHAT_INTENT_GENERATE_CODE"] = 9] = "CHAT_INTENT_GENERATE_CODE"; + ChatIntentType2[ChatIntentType2["CHAT_INTENT_FAST_APPLY"] = 12] = "CHAT_INTENT_FAST_APPLY"; })(ChatIntentType || (ChatIntentType = {})); -proto3.util.setEnumType(ChatIntentType, 'exa.chat_pb.ChatIntentType', [ - { no: 0, name: 'CHAT_INTENT_UNSPECIFIED' }, - { no: 1, name: 'CHAT_INTENT_GENERIC' }, - { no: 6, name: 'CHAT_INTENT_CODE_BLOCK_REFACTOR' }, - { no: 9, name: 'CHAT_INTENT_GENERATE_CODE' }, - { no: 12, name: 'CHAT_INTENT_FAST_APPLY' }, +proto3.util.setEnumType(ChatIntentType, "exa.chat_pb.ChatIntentType", [ + { no: 0, name: "CHAT_INTENT_UNSPECIFIED" }, + { no: 1, name: "CHAT_INTENT_GENERIC" }, + { no: 6, name: "CHAT_INTENT_CODE_BLOCK_REFACTOR" }, + { no: 9, name: "CHAT_INTENT_GENERATE_CODE" }, + { no: 12, name: "CHAT_INTENT_FAST_APPLY" } ]); var CacheControlType; -(function (CacheControlType2) { - CacheControlType2[(CacheControlType2['UNSPECIFIED'] = 0)] = 'UNSPECIFIED'; - CacheControlType2[(CacheControlType2['EPHEMERAL'] = 1)] = 'EPHEMERAL'; +(function(CacheControlType2) { + CacheControlType2[CacheControlType2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + CacheControlType2[CacheControlType2["EPHEMERAL"] = 1] = "EPHEMERAL"; })(CacheControlType || (CacheControlType = {})); -proto3.util.setEnumType(CacheControlType, 'exa.chat_pb.CacheControlType', [ - { no: 0, name: 'CACHE_CONTROL_TYPE_UNSPECIFIED' }, - { no: 1, name: 'CACHE_CONTROL_TYPE_EPHEMERAL' }, +proto3.util.setEnumType(CacheControlType, "exa.chat_pb.CacheControlType", [ + { no: 0, name: "CACHE_CONTROL_TYPE_UNSPECIFIED" }, + { no: 1, name: "CACHE_CONTROL_TYPE_EPHEMERAL" } ]); var CodeBlockInfo = class _CodeBlockInfo extends Message { /** * @generated from field: string raw_source = 1; */ - rawSource = ''; + rawSource = ""; /** * 0-indexed (start & end). * Start position of the code block. @@ -28767,43 +25489,43 @@ var CodeBlockInfo = class _CodeBlockInfo extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.chat_pb.CodeBlockInfo'; + static typeName = "exa.chat_pb.CodeBlockInfo"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'raw_source', - kind: 'scalar', - T: 9, + name: "raw_source", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'start_line', - kind: 'scalar', - T: 5, + name: "start_line", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, { no: 3, - name: 'start_col', - kind: 'scalar', - T: 5, + name: "start_col", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, { no: 4, - name: 'end_line', - kind: 'scalar', - T: 5, + name: "end_line", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, { no: 5, - name: 'end_col', - kind: 'scalar', - T: 5, + name: "end_col", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ - }, + } ]); static fromBinary(bytes, options) { return new _CodeBlockInfo().fromBinary(bytes, options); @@ -28888,7 +25610,7 @@ var ChatMetrics = class _ChatMetrics extends Message { * * @generated from field: string active_document_absolute_path = 11; */ - activeDocumentAbsolutePath = ''; + activeDocumentAbsolutePath = ""; /** * The last code context item that was active when the chat request was made. * @@ -28918,101 +25640,96 @@ var ChatMetrics = class _ChatMetrics extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.chat_pb.ChatMetrics'; + static typeName = "exa.chat_pb.ChatMetrics"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'response_stream_latency_ms', - kind: 'scalar', - T: 4, + name: "response_stream_latency_ms", + kind: "scalar", + T: 4 /* ScalarType.UINT64 */ }, { no: 2, - name: 'refresh_context_latency_ms', - kind: 'scalar', - T: 4, + name: "refresh_context_latency_ms", + kind: "scalar", + T: 4 /* ScalarType.UINT64 */ }, { no: 3, - name: 'should_get_local_context_for_chat_latency_ms', - kind: 'scalar', - T: 4, + name: "should_get_local_context_for_chat_latency_ms", + kind: "scalar", + T: 4 /* ScalarType.UINT64 */ }, { no: 4, - name: 'should_get_local_context_for_chat', - kind: 'scalar', - T: 8, + name: "should_get_local_context_for_chat", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 5, - name: 'compute_change_events_latency_ms', - kind: 'scalar', - T: 4, + name: "compute_change_events_latency_ms", + kind: "scalar", + T: 4 /* ScalarType.UINT64 */ }, { no: 6, - name: 'context_to_chat_prompt_latency_ms', - kind: 'scalar', - T: 4, + name: "context_to_chat_prompt_latency_ms", + kind: "scalar", + T: 4 /* ScalarType.UINT64 */ }, { no: 7, - name: 'num_prompt_tokens', - kind: 'scalar', - T: 5, + name: "num_prompt_tokens", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, { no: 8, - name: 'num_system_prompt_tokens', - kind: 'scalar', - T: 5, + name: "num_system_prompt_tokens", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, { no: 16, - name: 'num_input_tokens', - kind: 'scalar', - T: 4, + name: "num_input_tokens", + kind: "scalar", + T: 4 /* ScalarType.UINT64 */ }, - { no: 9, name: 'start_timestamp', kind: 'message', T: Timestamp }, - { no: 10, name: 'end_timestamp', kind: 'message', T: Timestamp }, + { no: 9, name: "start_timestamp", kind: "message", T: Timestamp }, + { no: 10, name: "end_timestamp", kind: "message", T: Timestamp }, { no: 11, - name: 'active_document_absolute_path', - kind: 'scalar', - T: 9, + name: "active_document_absolute_path", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { - no: 12, - name: 'last_active_code_context_item', - kind: 'message', - T: CodeContextItem, - }, + { no: 12, name: "last_active_code_context_item", kind: "message", T: CodeContextItem }, { no: 13, - name: 'num_indexed_files', - kind: 'scalar', - T: 4, + name: "num_indexed_files", + kind: "scalar", + T: 4 /* ScalarType.UINT64 */ }, { no: 14, - name: 'num_indexed_code_context_items', - kind: 'scalar', - T: 4, + name: "num_indexed_code_context_items", + kind: "scalar", + T: 4 /* ScalarType.UINT64 */ }, - { no: 15, name: 'model', kind: 'enum', T: proto3.getEnumType(Model) }, + { no: 15, name: "model", kind: "enum", T: proto3.getEnumType(Model) } ]); static fromBinary(bytes, options) { return new _ChatMetrics().fromBinary(bytes, options); @@ -29033,7 +25750,7 @@ var IntentGeneric = class _IntentGeneric extends Message { * * @generated from field: string text = 1; */ - text = ''; + text = ""; /** * @generated from field: repeated exa.codeium_common_pb.TextOrScopeItem items = 2; */ @@ -29043,22 +25760,16 @@ var IntentGeneric = class _IntentGeneric extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.chat_pb.IntentGeneric'; + static typeName = "exa.chat_pb.IntentGeneric"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'text', - kind: 'scalar', - T: 9, + name: "text", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { - no: 2, - name: 'items', - kind: 'message', - T: TextOrScopeItem, - repeated: true, - }, + { no: 2, name: "items", kind: "message", T: TextOrScopeItem, repeated: true } ]); static fromBinary(bytes, options) { return new _IntentGeneric().fromBinary(bytes, options); @@ -29086,45 +25797,45 @@ var IntentCodeBlockRefactor = class _IntentCodeBlockRefactor extends Message { * @generated from field: string file_path_migrate_me_to_uri = 3 [deprecated = true]; * @deprecated */ - filePathMigrateMeToUri = ''; + filePathMigrateMeToUri = ""; /** * @generated from field: string uri = 5; */ - uri = ''; + uri = ""; /** * @generated from field: string refactor_description = 4; */ - refactorDescription = ''; + refactorDescription = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.chat_pb.IntentCodeBlockRefactor'; + static typeName = "exa.chat_pb.IntentCodeBlockRefactor"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'code_block_info', kind: 'message', T: CodeBlockInfo }, - { no: 2, name: 'language', kind: 'enum', T: proto3.getEnumType(Language) }, + { no: 1, name: "code_block_info", kind: "message", T: CodeBlockInfo }, + { no: 2, name: "language", kind: "enum", T: proto3.getEnumType(Language) }, { no: 3, - name: 'file_path_migrate_me_to_uri', - kind: 'scalar', - T: 9, + name: "file_path_migrate_me_to_uri", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 5, - name: 'uri', - kind: 'scalar', - T: 9, + name: "uri", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 4, - name: 'refactor_description', - kind: 'scalar', - T: 9, + name: "refactor_description", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _IntentCodeBlockRefactor().fromBinary(bytes, options); @@ -29143,7 +25854,7 @@ var IntentGenerateCode = class _IntentGenerateCode extends Message { /** * @generated from field: string instruction = 1; */ - instruction = ''; + instruction = ""; /** * @generated from field: exa.codeium_common_pb.Language language = 2; */ @@ -29152,11 +25863,11 @@ var IntentGenerateCode = class _IntentGenerateCode extends Message { * @generated from field: string file_path_migrate_me_to_uri = 3 [deprecated = true]; * @deprecated */ - filePathMigrateMeToUri = ''; + filePathMigrateMeToUri = ""; /** * @generated from field: string uri = 5; */ - uri = ''; + uri = ""; /** * Line to insert the generated code into. * @@ -29168,37 +25879,37 @@ var IntentGenerateCode = class _IntentGenerateCode extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.chat_pb.IntentGenerateCode'; + static typeName = "exa.chat_pb.IntentGenerateCode"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'instruction', - kind: 'scalar', - T: 9, + name: "instruction", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 2, name: 'language', kind: 'enum', T: proto3.getEnumType(Language) }, + { no: 2, name: "language", kind: "enum", T: proto3.getEnumType(Language) }, { no: 3, - name: 'file_path_migrate_me_to_uri', - kind: 'scalar', - T: 9, + name: "file_path_migrate_me_to_uri", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 5, - name: 'uri', - kind: 'scalar', - T: 9, + name: "uri", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 4, - name: 'line_number', - kind: 'scalar', - T: 5, + name: "line_number", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ - }, + } ]); static fromBinary(bytes, options) { return new _IntentGenerateCode().fromBinary(bytes, options); @@ -29217,7 +25928,7 @@ var IntentFastApply = class _IntentFastApply extends Message { /** * @generated from field: string diff_outline = 1; */ - diffOutline = ''; + diffOutline = ""; /** * @generated from field: exa.codeium_common_pb.Language language = 2; */ @@ -29231,17 +25942,17 @@ var IntentFastApply = class _IntentFastApply extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.chat_pb.IntentFastApply'; + static typeName = "exa.chat_pb.IntentFastApply"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'diff_outline', - kind: 'scalar', - T: 9, + name: "diff_outline", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 2, name: 'language', kind: 'enum', T: proto3.getEnumType(Language) }, - { no: 3, name: 'old_code', kind: 'message', T: CodeBlockInfo }, + { no: 2, name: "language", kind: "enum", T: proto3.getEnumType(Language) }, + { no: 3, name: "old_code", kind: "message", T: CodeBlockInfo } ]); static fromBinary(bytes, options) { return new _IntentFastApply().fromBinary(bytes, options); @@ -29273,43 +25984,19 @@ var ChatMessageIntent = class _ChatMessageIntent extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.chat_pb.ChatMessageIntent'; + static typeName = "exa.chat_pb.ChatMessageIntent"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'generic', - kind: 'message', - T: IntentGeneric, - oneof: 'intent', - }, - { - no: 6, - name: 'code_block_refactor', - kind: 'message', - T: IntentCodeBlockRefactor, - oneof: 'intent', - }, - { - no: 9, - name: 'generate_code', - kind: 'message', - T: IntentGenerateCode, - oneof: 'intent', - }, - { - no: 13, - name: 'fast_apply', - kind: 'message', - T: IntentFastApply, - oneof: 'intent', - }, + { no: 1, name: "generic", kind: "message", T: IntentGeneric, oneof: "intent" }, + { no: 6, name: "code_block_refactor", kind: "message", T: IntentCodeBlockRefactor, oneof: "intent" }, + { no: 9, name: "generate_code", kind: "message", T: IntentGenerateCode, oneof: "intent" }, + { no: 13, name: "fast_apply", kind: "message", T: IntentFastApply, oneof: "intent" }, { no: 12, - name: 'num_tokens', - kind: 'scalar', - T: 13, + name: "num_tokens", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ - }, + } ]); static fromBinary(bytes, options) { return new _ChatMessageIntent().fromBinary(bytes, options); @@ -29330,7 +26017,7 @@ var ChatMessageActionSearch = class _ChatMessageActionSearch extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.chat_pb.ChatMessageActionSearch'; + static typeName = "exa.chat_pb.ChatMessageActionSearch"; static fields = proto3.util.newFieldList(() => []); static fromBinary(bytes, options) { return new _ChatMessageActionSearch().fromBinary(bytes, options); @@ -29352,11 +26039,11 @@ var ChatMessageActionEdit = class _ChatMessageActionEdit extends Message { * @generated from field: string file_path_migrate_me_to_uri = 1 [deprecated = true]; * @deprecated */ - filePathMigrateMeToUri = ''; + filePathMigrateMeToUri = ""; /** * @generated from field: string uri = 6; */ - uri = ''; + uri = ""; /** * The diff that should be applied on the file. * @@ -29377,48 +26064,48 @@ var ChatMessageActionEdit = class _ChatMessageActionEdit extends Message { * * @generated from field: string text_pre = 4; */ - textPre = ''; + textPre = ""; /** * @generated from field: string text_post = 5; */ - textPost = ''; + textPost = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.chat_pb.ChatMessageActionEdit'; + static typeName = "exa.chat_pb.ChatMessageActionEdit"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'file_path_migrate_me_to_uri', - kind: 'scalar', - T: 9, + name: "file_path_migrate_me_to_uri", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 6, - name: 'uri', - kind: 'scalar', - T: 9, + name: "uri", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 2, name: 'diff', kind: 'message', T: DiffBlock }, - { no: 3, name: 'language', kind: 'enum', T: proto3.getEnumType(Language) }, + { no: 2, name: "diff", kind: "message", T: DiffBlock }, + { no: 3, name: "language", kind: "enum", T: proto3.getEnumType(Language) }, { no: 4, - name: 'text_pre', - kind: 'scalar', - T: 9, + name: "text_pre", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 5, - name: 'text_post', - kind: 'scalar', - T: 9, + name: "text_post", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _ChatMessageActionEdit().fromBinary(bytes, options); @@ -29437,34 +26124,34 @@ var ChatMessageActionGeneric = class _ChatMessageActionGeneric extends Message { /** * @generated from field: string text = 1; */ - text = ''; + text = ""; /** * Markdown text to be displayed on the client (includes citations) * * @generated from field: string display_text = 2; */ - displayText = ''; + displayText = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.chat_pb.ChatMessageActionGeneric'; + static typeName = "exa.chat_pb.ChatMessageActionGeneric"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'text', - kind: 'scalar', - T: 9, + name: "text", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'display_text', - kind: 'scalar', - T: 9, + name: "display_text", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _ChatMessageActionGeneric().fromBinary(bytes, options); @@ -29497,38 +26184,32 @@ var ChatMessageStatusContextRelevancy = class _ChatMessageStatusContextRelevancy proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.chat_pb.ChatMessageStatusContextRelevancy'; + static typeName = "exa.chat_pb.ChatMessageStatusContextRelevancy"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'is_loading', - kind: 'scalar', - T: 8, + name: "is_loading", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 2, - name: 'is_relevant', - kind: 'scalar', - T: 8, + name: "is_relevant", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, - { no: 3, name: 'query_suggestions', kind: 'scalar', T: 9, repeated: true }, + { no: 3, name: "query_suggestions", kind: "scalar", T: 9, repeated: true } ]); static fromBinary(bytes, options) { return new _ChatMessageStatusContextRelevancy().fromBinary(bytes, options); } static fromJson(jsonValue, options) { - return new _ChatMessageStatusContextRelevancy().fromJson( - jsonValue, - options, - ); + return new _ChatMessageStatusContextRelevancy().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _ChatMessageStatusContextRelevancy().fromJsonString( - jsonString, - options, - ); + return new _ChatMessageStatusContextRelevancy().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_ChatMessageStatusContextRelevancy, a, b); @@ -29544,15 +26225,9 @@ var ChatMessageStatus = class _ChatMessageStatus extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.chat_pb.ChatMessageStatus'; + static typeName = "exa.chat_pb.ChatMessageStatus"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'context_relevancy', - kind: 'message', - T: ChatMessageStatusContextRelevancy, - oneof: 'status', - }, + { no: 1, name: "context_relevancy", kind: "message", T: ChatMessageStatusContextRelevancy, oneof: "status" } ]); static fromBinary(bytes, options) { return new _ChatMessageStatus().fromBinary(bytes, options); @@ -29571,21 +26246,21 @@ var ChatMessageError = class _ChatMessageError extends Message { /** * @generated from field: string text = 1; */ - text = ''; + text = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.chat_pb.ChatMessageError'; + static typeName = "exa.chat_pb.ChatMessageError"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'text', - kind: 'scalar', - T: 9, + name: "text", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _ChatMessageError().fromBinary(bytes, options); @@ -29632,57 +26307,22 @@ var ChatMessageAction = class _ChatMessageAction extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.chat_pb.ChatMessageAction'; + static typeName = "exa.chat_pb.ChatMessageAction"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'generic', - kind: 'message', - T: ChatMessageActionGeneric, - oneof: 'action', - }, - { - no: 3, - name: 'edit', - kind: 'message', - T: ChatMessageActionEdit, - oneof: 'action', - }, - { - no: 5, - name: 'search', - kind: 'message', - T: ChatMessageActionSearch, - oneof: 'action', - }, + { no: 1, name: "generic", kind: "message", T: ChatMessageActionGeneric, oneof: "action" }, + { no: 3, name: "edit", kind: "message", T: ChatMessageActionEdit, oneof: "action" }, + { no: 5, name: "search", kind: "message", T: ChatMessageActionSearch, oneof: "action" }, { no: 2, - name: 'num_tokens', - kind: 'scalar', - T: 13, + name: "num_tokens", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, - { - no: 4, - name: 'context_items', - kind: 'message', - T: CodeContextItem, - repeated: true, - }, - { - no: 6, - name: 'latest_intent', - kind: 'enum', - T: proto3.getEnumType(ChatIntentType), - }, - { no: 7, name: 'generation_stats', kind: 'message', T: ChatMetrics }, - { - no: 8, - name: 'knowledge_base_items', - kind: 'message', - T: KnowledgeBaseItemWithMetadata, - repeated: true, - }, + { no: 4, name: "context_items", kind: "message", T: CodeContextItem, repeated: true }, + { no: 6, name: "latest_intent", kind: "enum", T: proto3.getEnumType(ChatIntentType) }, + { no: 7, name: "generation_stats", kind: "message", T: ChatMetrics }, + { no: 8, name: "knowledge_base_items", kind: "message", T: KnowledgeBaseItemWithMetadata, repeated: true } ]); static fromBinary(bytes, options) { return new _ChatMessageAction().fromBinary(bytes, options); @@ -29703,7 +26343,7 @@ var ChatMessage = class _ChatMessage extends Message { * * @generated from field: string message_id = 1; */ - messageId = ''; + messageId = ""; /** * Where the message came from (ie. user, bot, system, etc.) * @@ -29720,7 +26360,7 @@ var ChatMessage = class _ChatMessage extends Message { * * @generated from field: string conversation_id = 4; */ - conversationId = ''; + conversationId = ""; /** * @generated from oneof exa.chat_pb.ChatMessage.content */ @@ -29748,72 +26388,43 @@ var ChatMessage = class _ChatMessage extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.chat_pb.ChatMessage'; + static typeName = "exa.chat_pb.ChatMessage"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'message_id', - kind: 'scalar', - T: 9, + name: "message_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { - no: 2, - name: 'source', - kind: 'enum', - T: proto3.getEnumType(ChatMessageSource), - }, - { no: 3, name: 'timestamp', kind: 'message', T: Timestamp }, + { no: 2, name: "source", kind: "enum", T: proto3.getEnumType(ChatMessageSource) }, + { no: 3, name: "timestamp", kind: "message", T: Timestamp }, { no: 4, - name: 'conversation_id', - kind: 'scalar', - T: 9, + name: "conversation_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { - no: 5, - name: 'intent', - kind: 'message', - T: ChatMessageIntent, - oneof: 'content', - }, - { - no: 6, - name: 'action', - kind: 'message', - T: ChatMessageAction, - oneof: 'content', - }, - { - no: 7, - name: 'error', - kind: 'message', - T: ChatMessageError, - oneof: 'content', - }, - { - no: 8, - name: 'status', - kind: 'message', - T: ChatMessageStatus, - oneof: 'content', - }, + { no: 5, name: "intent", kind: "message", T: ChatMessageIntent, oneof: "content" }, + { no: 6, name: "action", kind: "message", T: ChatMessageAction, oneof: "content" }, + { no: 7, name: "error", kind: "message", T: ChatMessageError, oneof: "content" }, + { no: 8, name: "status", kind: "message", T: ChatMessageStatus, oneof: "content" }, { no: 9, - name: 'in_progress', - kind: 'scalar', - T: 8, + name: "in_progress", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, - { no: 10, name: 'request', kind: 'message', T: GetChatMessageRequest }, + { no: 10, name: "request", kind: "message", T: GetChatMessageRequest }, { no: 11, - name: 'redact', - kind: 'scalar', - T: 8, + name: "redact", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ - }, + } ]); static fromBinary(bytes, options) { return new _ChatMessage().fromBinary(bytes, options); @@ -29838,15 +26449,9 @@ var Conversation = class _Conversation extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.chat_pb.Conversation'; + static typeName = "exa.chat_pb.Conversation"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'messages', - kind: 'message', - T: ChatMessage, - repeated: true, - }, + { no: 1, name: "messages", kind: "message", T: ChatMessage, repeated: true } ]); static fromBinary(bytes, options) { return new _Conversation().fromBinary(bytes, options); @@ -29865,7 +26470,7 @@ var ChatMessagePrompt = class _ChatMessagePrompt extends Message { /** * @generated from field: string message_id = 1; */ - messageId = ''; + messageId = ""; /** * @generated from field: exa.codeium_common_pb.ChatMessageSource source = 2; */ @@ -29875,7 +26480,7 @@ var ChatMessagePrompt = class _ChatMessagePrompt extends Message { * * @generated from field: string prompt = 3; */ - prompt = ''; + prompt = ""; /** * @generated from field: uint32 num_tokens = 4; */ @@ -29895,7 +26500,7 @@ var ChatMessagePrompt = class _ChatMessagePrompt extends Message { * * @generated from field: string tool_call_id = 7; */ - toolCallId = ''; + toolCallId = ""; /** * @generated from field: exa.chat_pb.PromptCacheOptions prompt_cache_options = 8; */ @@ -29922,7 +26527,7 @@ var ChatMessagePrompt = class _ChatMessagePrompt extends Message { * * @generated from field: string thinking = 11; */ - thinking = ''; + thinking = ""; /** * Deprecated: No need for this field anymore, just always circulate the * thinking text and signature. @@ -29930,7 +26535,7 @@ var ChatMessagePrompt = class _ChatMessagePrompt extends Message { * @generated from field: string raw_thinking = 17 [deprecated = true]; * @deprecated */ - rawThinking = ''; + rawThinking = ""; /** * Signature of the thinking string. * Deprecated. Use thinking_signature instead. @@ -29938,7 +26543,7 @@ var ChatMessagePrompt = class _ChatMessagePrompt extends Message { * @generated from field: string signature = 12 [deprecated = true]; * @deprecated */ - signature = ''; + signature = ""; /** * @generated from field: bytes thinking_signature = 20; */ @@ -29967,120 +26572,98 @@ var ChatMessagePrompt = class _ChatMessagePrompt extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.chat_pb.ChatMessagePrompt'; + static typeName = "exa.chat_pb.ChatMessagePrompt"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'message_id', - kind: 'scalar', - T: 9, + name: "message_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { - no: 2, - name: 'source', - kind: 'enum', - T: proto3.getEnumType(ChatMessageSource), - }, + { no: 2, name: "source", kind: "enum", T: proto3.getEnumType(ChatMessageSource) }, { no: 3, - name: 'prompt', - kind: 'scalar', - T: 9, + name: "prompt", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 4, - name: 'num_tokens', - kind: 'scalar', - T: 13, + name: "num_tokens", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, { no: 5, - name: 'safe_for_code_telemetry', - kind: 'scalar', - T: 8, + name: "safe_for_code_telemetry", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, - { - no: 6, - name: 'tool_calls', - kind: 'message', - T: ChatToolCall, - repeated: true, - }, + { no: 6, name: "tool_calls", kind: "message", T: ChatToolCall, repeated: true }, { no: 7, - name: 'tool_call_id', - kind: 'scalar', - T: 9, + name: "tool_call_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { - no: 8, - name: 'prompt_cache_options', - kind: 'message', - T: PromptCacheOptions, - }, + { no: 8, name: "prompt_cache_options", kind: "message", T: PromptCacheOptions }, { no: 9, - name: 'tool_result_is_error', - kind: 'scalar', - T: 8, + name: "tool_result_is_error", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, - { no: 10, name: 'images', kind: 'message', T: ImageData, repeated: true }, - { no: 19, name: 'media', kind: 'message', T: Media, repeated: true }, + { no: 10, name: "images", kind: "message", T: ImageData, repeated: true }, + { no: 19, name: "media", kind: "message", T: Media, repeated: true }, { no: 11, - name: 'thinking', - kind: 'scalar', - T: 9, + name: "thinking", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 17, - name: 'raw_thinking', - kind: 'scalar', - T: 9, + name: "raw_thinking", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 12, - name: 'signature', - kind: 'scalar', - T: 9, + name: "signature", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 20, - name: 'thinking_signature', - kind: 'scalar', - T: 12, + name: "thinking_signature", + kind: "scalar", + T: 12 /* ScalarType.BYTES */ }, { no: 13, - name: 'thinking_redacted', - kind: 'scalar', - T: 8, + name: "thinking_redacted", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, - { - no: 14, - name: 'prompt_annotation_ranges', - kind: 'message', - T: PromptAnnotationRange, - repeated: true, - }, + { no: 14, name: "prompt_annotation_ranges", kind: "message", T: PromptAnnotationRange, repeated: true }, { no: 18, - name: 'step_idx', - kind: 'scalar', - T: 5, + name: "step_idx", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ - }, + } ]); static fromBinary(bytes, options) { return new _ChatMessagePrompt().fromBinary(bytes, options); @@ -30105,15 +26688,9 @@ var ChatMessagePrompts = class _ChatMessagePrompts extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.chat_pb.ChatMessagePrompts'; + static typeName = "exa.chat_pb.ChatMessagePrompts"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'prompts', - kind: 'message', - T: ChatMessagePrompt, - repeated: true, - }, + { no: 1, name: "prompts", kind: "message", T: ChatMessagePrompt, repeated: true } ]); static fromBinary(bytes, options) { return new _ChatMessagePrompts().fromBinary(bytes, options); @@ -30138,14 +26715,9 @@ var PromptCacheOptions = class _PromptCacheOptions extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.chat_pb.PromptCacheOptions'; + static typeName = "exa.chat_pb.PromptCacheOptions"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'type', - kind: 'enum', - T: proto3.getEnumType(CacheControlType), - }, + { no: 1, name: "type", kind: "enum", T: proto3.getEnumType(CacheControlType) } ]); static fromBinary(bytes, options) { return new _PromptCacheOptions().fromBinary(bytes, options); @@ -30164,18 +26736,18 @@ var ChatToolDefinition = class _ChatToolDefinition extends Message { /** * @generated from field: string name = 1; */ - name = ''; + name = ""; /** * @generated from field: string description = 2; */ - description = ''; + description = ""; /** * Should be convertible into json.RawMessage and interpreted as JSON Schema * object. * * @generated from field: string json_schema_string = 3; */ - jsonSchemaString = ''; + jsonSchemaString = ""; /** * Forces structured outputs. Only applicable to OpenAI models including and * later than MODEL_CHAT_GPT_4O_2024_08_06 Note that this limits the supported @@ -30198,56 +26770,50 @@ var ChatToolDefinition = class _ChatToolDefinition extends Message { * * @generated from field: string server_name = 6; */ - serverName = ''; + serverName = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.chat_pb.ChatToolDefinition'; + static typeName = "exa.chat_pb.ChatToolDefinition"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'name', - kind: 'scalar', - T: 9, + name: "name", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'description', - kind: 'scalar', - T: 9, + name: "description", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 3, - name: 'json_schema_string', - kind: 'scalar', - T: 9, + name: "json_schema_string", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 4, - name: 'strict', - kind: 'scalar', - T: 8, + name: "strict", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, - { - no: 5, - name: 'attribution_field_names', - kind: 'scalar', - T: 9, - repeated: true, - }, + { no: 5, name: "attribution_field_names", kind: "scalar", T: 9, repeated: true }, { no: 6, - name: 'server_name', - kind: 'scalar', - T: 9, + name: "server_name", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _ChatToolDefinition().fromBinary(bytes, options); @@ -30272,10 +26838,10 @@ var ChatToolChoice = class _ChatToolChoice extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.chat_pb.ChatToolChoice'; + static typeName = "exa.chat_pb.ChatToolChoice"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'option_name', kind: 'scalar', T: 9, oneof: 'choice' }, - { no: 2, name: 'tool_name', kind: 'scalar', T: 9, oneof: 'choice' }, + { no: 1, name: "option_name", kind: "scalar", T: 9, oneof: "choice" }, + { no: 2, name: "tool_name", kind: "scalar", T: 9, oneof: "choice" } ]); static fromBinary(bytes, options) { return new _ChatToolChoice().fromBinary(bytes, options); @@ -30294,7 +26860,7 @@ var ChatMentionsSearchRequest = class _ChatMentionsSearchRequest extends Message /** * @generated from field: string query = 1; */ - query = ''; + query = ""; /** * Filters on the types of code context items to search over. * @@ -30312,29 +26878,23 @@ var ChatMentionsSearchRequest = class _ChatMentionsSearchRequest extends Message proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.chat_pb.ChatMentionsSearchRequest'; + static typeName = "exa.chat_pb.ChatMentionsSearchRequest"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'query', - kind: 'scalar', - T: 9, + name: "query", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { - no: 2, - name: 'allowed_types', - kind: 'enum', - T: proto3.getEnumType(CodeContextType), - repeated: true, - }, + { no: 2, name: "allowed_types", kind: "enum", T: proto3.getEnumType(CodeContextType), repeated: true }, { no: 3, - name: 'include_repo_info', - kind: 'scalar', - T: 8, + name: "include_repo_info", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ - }, + } ]); static fromBinary(bytes, options) { return new _ChatMentionsSearchRequest().fromBinary(bytes, options); @@ -30363,22 +26923,10 @@ var ChatMentionsSearchResponse = class _ChatMentionsSearchResponse extends Messa proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.chat_pb.ChatMentionsSearchResponse'; + static typeName = "exa.chat_pb.ChatMentionsSearchResponse"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'cci_items', - kind: 'message', - T: CodeContextItem, - repeated: true, - }, - { - no: 2, - name: 'repo_infos', - kind: 'message', - T: GitRepoInfo, - repeated: true, - }, + { no: 1, name: "cci_items", kind: "message", T: CodeContextItem, repeated: true }, + { no: 2, name: "repo_infos", kind: "message", T: GitRepoInfo, repeated: true } ]); static fromBinary(bytes, options) { return new _ChatMentionsSearchResponse().fromBinary(bytes, options); @@ -30387,10 +26935,7 @@ var ChatMentionsSearchResponse = class _ChatMentionsSearchResponse extends Messa return new _ChatMentionsSearchResponse().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _ChatMentionsSearchResponse().fromJsonString( - jsonString, - options, - ); + return new _ChatMentionsSearchResponse().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_ChatMentionsSearchResponse, a, b); @@ -30426,7 +26971,7 @@ var GetChatMessageRequest = class _GetChatMessageRequest extends Message { * * @generated from field: string active_selection = 11; */ - activeSelection = ''; + activeSelection = ""; /** * @generated from field: exa.codeium_common_pb.ContextInclusionType context_inclusion_type = 8; */ @@ -30442,11 +26987,11 @@ var GetChatMessageRequest = class _GetChatMessageRequest extends Message { * * @generated from field: string system_prompt_override = 10; */ - systemPromptOverride = ''; + systemPromptOverride = ""; /** * @generated from field: string chat_model_name = 14; */ - chatModelName = ''; + chatModelName = ""; /** * @generated from field: exa.chat_pb.GetChatMessageRequest.EnterpriseExternalModelConfig enterprise_chat_model_config = 15; */ @@ -30471,74 +27016,40 @@ var GetChatMessageRequest = class _GetChatMessageRequest extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.chat_pb.GetChatMessageRequest'; + static typeName = "exa.chat_pb.GetChatMessageRequest"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'metadata', kind: 'message', T: Metadata }, - { - no: 3, - name: 'chat_messages', - kind: 'message', - T: ChatMessage, - repeated: true, - }, - { no: 5, name: 'active_document', kind: 'message', T: Document }, - { - no: 12, - name: 'open_document_uris', - kind: 'scalar', - T: 9, - repeated: true, - }, - { no: 13, name: 'workspace_uris', kind: 'scalar', T: 9, repeated: true }, + { no: 1, name: "metadata", kind: "message", T: Metadata }, + { no: 3, name: "chat_messages", kind: "message", T: ChatMessage, repeated: true }, + { no: 5, name: "active_document", kind: "message", T: Document }, + { no: 12, name: "open_document_uris", kind: "scalar", T: 9, repeated: true }, + { no: 13, name: "workspace_uris", kind: "scalar", T: 9, repeated: true }, { no: 11, - name: 'active_selection', - kind: 'scalar', - T: 9, + name: "active_selection", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { - no: 8, - name: 'context_inclusion_type', - kind: 'enum', - T: proto3.getEnumType(ContextInclusionType), - }, - { no: 9, name: 'chat_model', kind: 'enum', T: proto3.getEnumType(Model) }, + { no: 8, name: "context_inclusion_type", kind: "enum", T: proto3.getEnumType(ContextInclusionType) }, + { no: 9, name: "chat_model", kind: "enum", T: proto3.getEnumType(Model) }, { no: 10, - name: 'system_prompt_override', - kind: 'scalar', - T: 9, + name: "system_prompt_override", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 14, - name: 'chat_model_name', - kind: 'scalar', - T: 9, + name: "chat_model_name", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { - no: 15, - name: 'enterprise_chat_model_config', - kind: 'message', - T: GetChatMessageRequest_EnterpriseExternalModelConfig, - }, - { no: 4, name: 'experiment_config', kind: 'message', T: ExperimentConfig }, - { - no: 6, - name: 'open_document_paths_migrate_me_to_uris', - kind: 'scalar', - T: 9, - repeated: true, - }, - { - no: 7, - name: 'workspace_paths_migrate_me_to_uris', - kind: 'scalar', - T: 9, - repeated: true, - }, + { no: 15, name: "enterprise_chat_model_config", kind: "message", T: GetChatMessageRequest_EnterpriseExternalModelConfig }, + { no: 4, name: "experiment_config", kind: "message", T: ExperimentConfig }, + { no: 6, name: "open_document_paths_migrate_me_to_uris", kind: "scalar", T: 9, repeated: true }, + { no: 7, name: "workspace_paths_migrate_me_to_uris", kind: "scalar", T: 9, repeated: true } ]); static fromBinary(bytes, options) { return new _GetChatMessageRequest().fromBinary(bytes, options); @@ -30567,48 +27078,34 @@ var GetChatMessageRequest_EnterpriseExternalModelConfig = class _GetChatMessageR proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = - 'exa.chat_pb.GetChatMessageRequest.EnterpriseExternalModelConfig'; + static typeName = "exa.chat_pb.GetChatMessageRequest.EnterpriseExternalModelConfig"; static fields = proto3.util.newFieldList(() => [ { no: 2, - name: 'max_output_tokens', - kind: 'scalar', - T: 5, + name: "max_output_tokens", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, { no: 3, - name: 'max_input_tokens', - kind: 'scalar', - T: 5, + name: "max_input_tokens", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ - }, + } ]); static fromBinary(bytes, options) { - return new _GetChatMessageRequest_EnterpriseExternalModelConfig().fromBinary( - bytes, - options, - ); + return new _GetChatMessageRequest_EnterpriseExternalModelConfig().fromBinary(bytes, options); } static fromJson(jsonValue, options) { - return new _GetChatMessageRequest_EnterpriseExternalModelConfig().fromJson( - jsonValue, - options, - ); + return new _GetChatMessageRequest_EnterpriseExternalModelConfig().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _GetChatMessageRequest_EnterpriseExternalModelConfig().fromJsonString( - jsonString, - options, - ); + return new _GetChatMessageRequest_EnterpriseExternalModelConfig().fromJsonString(jsonString, options); } static equals(a, b) { - return proto3.util.equals( - _GetChatMessageRequest_EnterpriseExternalModelConfig, - a, - b, - ); + return proto3.util.equals(_GetChatMessageRequest_EnterpriseExternalModelConfig, a, b); } }; var ChatExperimentStatus = class _ChatExperimentStatus extends Message { @@ -30625,21 +27122,16 @@ var ChatExperimentStatus = class _ChatExperimentStatus extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.chat_pb.ChatExperimentStatus'; + static typeName = "exa.chat_pb.ChatExperimentStatus"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'experiment_key', - kind: 'enum', - T: proto3.getEnumType(ExperimentKey), - }, + { no: 1, name: "experiment_key", kind: "enum", T: proto3.getEnumType(ExperimentKey) }, { no: 2, - name: 'enabled', - kind: 'scalar', - T: 8, + name: "enabled", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ - }, + } ]); static fromBinary(bytes, options) { return new _ChatExperimentStatus().fromBinary(bytes, options); @@ -30662,49 +27154,44 @@ var FormattedChatMessage = class _FormattedChatMessage extends Message { /** * @generated from field: string header = 2; */ - header = ''; + header = ""; /** * @generated from field: string content = 3; */ - content = ''; + content = ""; /** * @generated from field: string footer = 4; */ - footer = ''; + footer = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.chat_pb.FormattedChatMessage'; + static typeName = "exa.chat_pb.FormattedChatMessage"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'role', - kind: 'enum', - T: proto3.getEnumType(ChatMessageSource), - }, + { no: 1, name: "role", kind: "enum", T: proto3.getEnumType(ChatMessageSource) }, { no: 2, - name: 'header', - kind: 'scalar', - T: 9, + name: "header", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 3, - name: 'content', - kind: 'scalar', - T: 9, + name: "content", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 4, - name: 'footer', - kind: 'scalar', - T: 9, + name: "footer", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _FormattedChatMessage().fromBinary(bytes, options); @@ -30729,15 +27216,9 @@ var IndexMap = class _IndexMap extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.chat_pb.IndexMap'; + static typeName = "exa.chat_pb.IndexMap"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'index_map', - kind: 'map', - K: 5, - V: { kind: 'message', T: IndexMap_IndexList }, - }, + { no: 1, name: "index_map", kind: "map", K: 5, V: { kind: "message", T: IndexMap_IndexList } } ]); static fromBinary(bytes, options) { return new _IndexMap().fromBinary(bytes, options); @@ -30762,9 +27243,9 @@ var IndexMap_IndexList = class _IndexMap_IndexList extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.chat_pb.IndexMap.IndexList'; + static typeName = "exa.chat_pb.IndexMap.IndexList"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'indices', kind: 'scalar', T: 5, repeated: true }, + { no: 1, name: "indices", kind: "scalar", T: 5, repeated: true } ]); static fromBinary(bytes, options) { return new _IndexMap_IndexList().fromBinary(bytes, options); @@ -30783,7 +27264,7 @@ var ChatMessageRollout = class _ChatMessageRollout extends Message { /** * @generated from field: string system_prompt = 1; */ - systemPrompt = ''; + systemPrompt = ""; /** * @generated from field: repeated exa.chat_pb.ChatToolDefinition tools = 2; */ @@ -30811,43 +27292,20 @@ var ChatMessageRollout = class _ChatMessageRollout extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.chat_pb.ChatMessageRollout'; + static typeName = "exa.chat_pb.ChatMessageRollout"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'system_prompt', - kind: 'scalar', - T: 9, + name: "system_prompt", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { - no: 2, - name: 'tools', - kind: 'message', - T: ChatToolDefinition, - repeated: true, - }, - { no: 3, name: 'tool_choice', kind: 'message', T: ChatToolChoice }, - { - no: 4, - name: 'input_chat_messages', - kind: 'message', - T: ChatMessagePrompt, - repeated: true, - }, - { - no: 5, - name: 'output_chat_messages', - kind: 'message', - T: ChatMessagePrompt, - repeated: true, - }, - { - no: 6, - name: 'trajectory_to_chat_message_index_map', - kind: 'message', - T: IndexMap, - }, + { no: 2, name: "tools", kind: "message", T: ChatToolDefinition, repeated: true }, + { no: 3, name: "tool_choice", kind: "message", T: ChatToolChoice }, + { no: 4, name: "input_chat_messages", kind: "message", T: ChatMessagePrompt, repeated: true }, + { no: 5, name: "output_chat_messages", kind: "message", T: ChatMessagePrompt, repeated: true }, + { no: 6, name: "trajectory_to_chat_message_index_map", kind: "message", T: IndexMap } ]); static fromBinary(bytes, options) { return new _ChatMessageRollout().fromBinary(bytes, options); @@ -30868,13 +27326,13 @@ var XboxInferenceToolRequest = class _XboxInferenceToolRequest extends Message { * * @generated from field: string model_name = 3; */ - modelName = ''; + modelName = ""; /** * Codeium Model Enum, stringified * * @generated from field: string model_enum = 4; */ - modelEnum = ''; + modelEnum = ""; /** * @generated from field: exa.chat_pb.Example gemini_example = 2; */ @@ -30884,23 +27342,23 @@ var XboxInferenceToolRequest = class _XboxInferenceToolRequest extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.chat_pb.XboxInferenceToolRequest'; + static typeName = "exa.chat_pb.XboxInferenceToolRequest"; static fields = proto3.util.newFieldList(() => [ { no: 3, - name: 'model_name', - kind: 'scalar', - T: 9, + name: "model_name", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 4, - name: 'model_enum', - kind: 'scalar', - T: 9, + name: "model_enum", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 2, name: 'gemini_example', kind: 'message', T: Example }, + { no: 2, name: "gemini_example", kind: "message", T: Example } ]); static fromBinary(bytes, options) { return new _XboxInferenceToolRequest().fromBinary(bytes, options); @@ -30927,9 +27385,9 @@ var Example = class _Example extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.chat_pb.Example'; + static typeName = "exa.chat_pb.Example"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'messages', kind: 'message', T: Message2, repeated: true }, + { no: 1, name: "messages", kind: "message", T: Message2, repeated: true } ]); static fromBinary(bytes, options) { return new _Example().fromBinary(bytes, options); @@ -30953,7 +27411,7 @@ var Message2 = class _Message extends Message { * * @generated from field: string role = 1; */ - role = ''; + role = ""; /** * Content of the message as a series of chunks. In the simplest case, * could be a single chunk with a text value. @@ -30966,16 +27424,16 @@ var Message2 = class _Message extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.chat_pb.Message'; + static typeName = "exa.chat_pb.Message"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'role', - kind: 'scalar', - T: 9, + name: "role", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 2, name: 'chunks', kind: 'message', T: Chunk, repeated: true }, + { no: 2, name: "chunks", kind: "message", T: Chunk, repeated: true } ]); static fromBinary(bytes, options) { return new _Message().fromBinary(bytes, options); @@ -31009,16 +27467,11 @@ var Chunk = class _Chunk extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.chat_pb.Chunk'; + static typeName = "exa.chat_pb.Chunk"; static fields = proto3.util.newFieldList(() => [ - { no: 3, name: 'text', kind: 'scalar', T: 9, oneof: 'value' }, - { no: 4, name: 'image', kind: 'message', T: Image, oneof: 'value' }, - { - no: 10, - name: 'trainable', - kind: 'enum', - T: proto3.getEnumType(Chunk_Trainable), - }, + { no: 3, name: "text", kind: "scalar", T: 9, oneof: "value" }, + { no: 4, name: "image", kind: "message", T: Image, oneof: "value" }, + { no: 10, name: "trainable", kind: "enum", T: proto3.getEnumType(Chunk_Trainable) } ]); static fromBinary(bytes, options) { return new _Chunk().fromBinary(bytes, options); @@ -31034,19 +27487,17 @@ var Chunk = class _Chunk extends Message { } }; var Chunk_Trainable; -(function (Chunk_Trainable2) { - Chunk_Trainable2[(Chunk_Trainable2['UNKNOWN_TRAINABLE'] = 0)] = - 'UNKNOWN_TRAINABLE'; - Chunk_Trainable2[(Chunk_Trainable2['FORMATTER_DEFINED'] = 1)] = - 'FORMATTER_DEFINED'; - Chunk_Trainable2[(Chunk_Trainable2['ALWAYS'] = 2)] = 'ALWAYS'; - Chunk_Trainable2[(Chunk_Trainable2['NEVER'] = 3)] = 'NEVER'; +(function(Chunk_Trainable2) { + Chunk_Trainable2[Chunk_Trainable2["UNKNOWN_TRAINABLE"] = 0] = "UNKNOWN_TRAINABLE"; + Chunk_Trainable2[Chunk_Trainable2["FORMATTER_DEFINED"] = 1] = "FORMATTER_DEFINED"; + Chunk_Trainable2[Chunk_Trainable2["ALWAYS"] = 2] = "ALWAYS"; + Chunk_Trainable2[Chunk_Trainable2["NEVER"] = 3] = "NEVER"; })(Chunk_Trainable || (Chunk_Trainable = {})); -proto3.util.setEnumType(Chunk_Trainable, 'exa.chat_pb.Chunk.Trainable', [ - { no: 0, name: 'UNKNOWN_TRAINABLE' }, - { no: 1, name: 'FORMATTER_DEFINED' }, - { no: 2, name: 'ALWAYS' }, - { no: 3, name: 'NEVER' }, +proto3.util.setEnumType(Chunk_Trainable, "exa.chat_pb.Chunk.Trainable", [ + { no: 0, name: "UNKNOWN_TRAINABLE" }, + { no: 1, name: "FORMATTER_DEFINED" }, + { no: 2, name: "ALWAYS" }, + { no: 3, name: "NEVER" } ]); var Image = class _Image extends Message { /** @@ -31072,23 +27523,23 @@ var Image = class _Image extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.chat_pb.Image'; + static typeName = "exa.chat_pb.Image"; static fields = proto3.util.newFieldList(() => [ - { no: 5, name: 'value', kind: 'message', T: FileData }, + { no: 5, name: "value", kind: "message", T: FileData }, { no: 3, - name: 'height_px', - kind: 'scalar', - T: 5, + name: "height_px", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, { no: 4, - name: 'width_px', - kind: 'scalar', - T: 5, + name: "width_px", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ - }, + } ]); static fromBinary(bytes, options) { return new _Image().fromBinary(bytes, options); @@ -31116,28 +27567,28 @@ var FileData = class _FileData extends Message { * * @generated from field: string mime_type = 2; */ - mimeType = ''; + mimeType = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.chat_pb.FileData'; + static typeName = "exa.chat_pb.FileData"; static fields = proto3.util.newFieldList(() => [ { no: 3, - name: 'content', - kind: 'scalar', - T: 12, + name: "content", + kind: "scalar", + T: 12 /* ScalarType.BYTES */ }, { no: 2, - name: 'mime_type', - kind: 'scalar', - T: 9, + name: "mime_type", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _FileData().fromBinary(bytes, options); @@ -31165,28 +27616,22 @@ var RpcRequest = class _RpcRequest extends Message { * * @generated from field: string id = 3; */ - id = ''; + id = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.chat_pb.RpcRequest'; + static typeName = "exa.chat_pb.RpcRequest"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'run_tool_request', - kind: 'message', - T: RunToolRequest, - oneof: 'request', - }, + { no: 1, name: "run_tool_request", kind: "message", T: RunToolRequest, oneof: "request" }, { no: 3, - name: 'id', - kind: 'scalar', - T: 9, + name: "id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _RpcRequest().fromBinary(bytes, options); @@ -31211,28 +27656,22 @@ var RpcResponse = class _RpcResponse extends Message { * * @generated from field: string request_id = 2; */ - requestId = ''; + requestId = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.chat_pb.RpcResponse'; + static typeName = "exa.chat_pb.RpcResponse"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'run_tool_response', - kind: 'message', - T: RunToolResponse, - oneof: 'response', - }, + { no: 1, name: "run_tool_response", kind: "message", T: RunToolResponse, oneof: "response" }, { no: 2, - name: 'request_id', - kind: 'scalar', - T: 9, + name: "request_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _RpcResponse().fromBinary(bytes, options); @@ -31258,7 +27697,7 @@ var RunToolRequest = class _RunToolRequest extends Message { * * @generated from field: string name = 1; */ - name = ''; + name = ""; /** * One tool can support multiple operations/methods. `operation_id` clarifies * the exact method to use. @@ -31270,7 +27709,7 @@ var RunToolRequest = class _RunToolRequest extends Message { * * @generated from field: string operation_id = 2; */ - operationId = ''; + operationId = ""; /** * Parameters to be supplied to the tool method. These must be conformant with * tool's manifest/OpenAPI spec. @@ -31284,35 +27723,35 @@ var RunToolRequest = class _RunToolRequest extends Message { * * @generated from field: string parameters = 3; */ - parameters = ''; + parameters = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.chat_pb.RunToolRequest'; + static typeName = "exa.chat_pb.RunToolRequest"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'name', - kind: 'scalar', - T: 9, + name: "name", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'operation_id', - kind: 'scalar', - T: 9, + name: "operation_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 3, - name: 'parameters', - kind: 'scalar', - T: 9, + name: "parameters", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _RunToolRequest().fromBinary(bytes, options); @@ -31331,7 +27770,7 @@ var RunToolResponse = class _RunToolResponse extends Message { /** * @generated from field: string response = 1; */ - response = ''; + response = ""; /** * @generated from field: exa.chat_pb.RunToolResponse.Status status = 2; */ @@ -31341,16 +27780,16 @@ var RunToolResponse = class _RunToolResponse extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.chat_pb.RunToolResponse'; + static typeName = "exa.chat_pb.RunToolResponse"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'response', - kind: 'scalar', - T: 9, + name: "response", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 2, name: 'status', kind: 'message', T: RunToolResponse_Status }, + { no: 2, name: "status", kind: "message", T: RunToolResponse_Status } ]); static fromBinary(bytes, options) { return new _RunToolResponse().fromBinary(bytes, options); @@ -31375,28 +27814,28 @@ var RunToolResponse_Status = class _RunToolResponse_Status extends Message { * * @generated from field: string status_message = 2; */ - statusMessage = ''; + statusMessage = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.chat_pb.RunToolResponse.Status'; + static typeName = "exa.chat_pb.RunToolResponse.Status"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'code', - kind: 'scalar', - T: 5, + name: "code", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, { no: 2, - name: 'status_message', - kind: 'scalar', - T: 9, + name: "status_message", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _RunToolResponse_Status().fromBinary(bytes, options); @@ -31414,92 +27853,68 @@ var RunToolResponse_Status = class _RunToolResponse_Status extends Message { // exa/proto_ts/dist/exa/context_module_pb/context_module_pb.js var ContextChangeType; -(function (ContextChangeType2) { - ContextChangeType2[(ContextChangeType2['UNSPECIFIED'] = 0)] = 'UNSPECIFIED'; - ContextChangeType2[(ContextChangeType2['ACTIVE_DOCUMENT'] = 1)] = - 'ACTIVE_DOCUMENT'; - ContextChangeType2[(ContextChangeType2['CURSOR_POSITION'] = 2)] = - 'CURSOR_POSITION'; - ContextChangeType2[(ContextChangeType2['CHAT_MESSAGE_RECEIVED'] = 3)] = - 'CHAT_MESSAGE_RECEIVED'; - ContextChangeType2[(ContextChangeType2['OPEN_DOCUMENTS'] = 4)] = - 'OPEN_DOCUMENTS'; - ContextChangeType2[(ContextChangeType2['ORACLE_ITEMS'] = 5)] = 'ORACLE_ITEMS'; - ContextChangeType2[(ContextChangeType2['PINNED_CONTEXT'] = 6)] = - 'PINNED_CONTEXT'; - ContextChangeType2[(ContextChangeType2['PINNED_GUIDELINE'] = 7)] = - 'PINNED_GUIDELINE'; - ContextChangeType2[(ContextChangeType2['ACTIVE_NODE'] = 9)] = 'ACTIVE_NODE'; +(function(ContextChangeType2) { + ContextChangeType2[ContextChangeType2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + ContextChangeType2[ContextChangeType2["ACTIVE_DOCUMENT"] = 1] = "ACTIVE_DOCUMENT"; + ContextChangeType2[ContextChangeType2["CURSOR_POSITION"] = 2] = "CURSOR_POSITION"; + ContextChangeType2[ContextChangeType2["CHAT_MESSAGE_RECEIVED"] = 3] = "CHAT_MESSAGE_RECEIVED"; + ContextChangeType2[ContextChangeType2["OPEN_DOCUMENTS"] = 4] = "OPEN_DOCUMENTS"; + ContextChangeType2[ContextChangeType2["ORACLE_ITEMS"] = 5] = "ORACLE_ITEMS"; + ContextChangeType2[ContextChangeType2["PINNED_CONTEXT"] = 6] = "PINNED_CONTEXT"; + ContextChangeType2[ContextChangeType2["PINNED_GUIDELINE"] = 7] = "PINNED_GUIDELINE"; + ContextChangeType2[ContextChangeType2["ACTIVE_NODE"] = 9] = "ACTIVE_NODE"; })(ContextChangeType || (ContextChangeType = {})); -proto3.util.setEnumType( - ContextChangeType, - 'exa.context_module_pb.ContextChangeType', - [ - { no: 0, name: 'CONTEXT_CHANGE_TYPE_UNSPECIFIED' }, - { no: 1, name: 'CONTEXT_CHANGE_TYPE_ACTIVE_DOCUMENT' }, - { no: 2, name: 'CONTEXT_CHANGE_TYPE_CURSOR_POSITION' }, - { no: 3, name: 'CONTEXT_CHANGE_TYPE_CHAT_MESSAGE_RECEIVED' }, - { no: 4, name: 'CONTEXT_CHANGE_TYPE_OPEN_DOCUMENTS' }, - { no: 5, name: 'CONTEXT_CHANGE_TYPE_ORACLE_ITEMS' }, - { no: 6, name: 'CONTEXT_CHANGE_TYPE_PINNED_CONTEXT' }, - { no: 7, name: 'CONTEXT_CHANGE_TYPE_PINNED_GUIDELINE' }, - { no: 9, name: 'CONTEXT_CHANGE_TYPE_ACTIVE_NODE' }, - ], -); +proto3.util.setEnumType(ContextChangeType, "exa.context_module_pb.ContextChangeType", [ + { no: 0, name: "CONTEXT_CHANGE_TYPE_UNSPECIFIED" }, + { no: 1, name: "CONTEXT_CHANGE_TYPE_ACTIVE_DOCUMENT" }, + { no: 2, name: "CONTEXT_CHANGE_TYPE_CURSOR_POSITION" }, + { no: 3, name: "CONTEXT_CHANGE_TYPE_CHAT_MESSAGE_RECEIVED" }, + { no: 4, name: "CONTEXT_CHANGE_TYPE_OPEN_DOCUMENTS" }, + { no: 5, name: "CONTEXT_CHANGE_TYPE_ORACLE_ITEMS" }, + { no: 6, name: "CONTEXT_CHANGE_TYPE_PINNED_CONTEXT" }, + { no: 7, name: "CONTEXT_CHANGE_TYPE_PINNED_GUIDELINE" }, + { no: 9, name: "CONTEXT_CHANGE_TYPE_ACTIVE_NODE" } +]); var ContextUseCase; -(function (ContextUseCase2) { - ContextUseCase2[(ContextUseCase2['UNSPECIFIED'] = 0)] = 'UNSPECIFIED'; - ContextUseCase2[(ContextUseCase2['AUTOCOMPLETE'] = 1)] = 'AUTOCOMPLETE'; - ContextUseCase2[(ContextUseCase2['CHAT'] = 2)] = 'CHAT'; - ContextUseCase2[(ContextUseCase2['CHAT_COMPLETION'] = 3)] = 'CHAT_COMPLETION'; - ContextUseCase2[(ContextUseCase2['CORTEX_RESEARCH'] = 4)] = 'CORTEX_RESEARCH'; - ContextUseCase2[(ContextUseCase2['EVAL'] = 5)] = 'EVAL'; - ContextUseCase2[(ContextUseCase2['CHAT_COMPLETION_GENERATE'] = 6)] = - 'CHAT_COMPLETION_GENERATE'; - ContextUseCase2[(ContextUseCase2['SUPERCOMPLETE'] = 7)] = 'SUPERCOMPLETE'; - ContextUseCase2[(ContextUseCase2['FAST_APPLY'] = 8)] = 'FAST_APPLY'; - ContextUseCase2[(ContextUseCase2['COMMAND_TERMINAL'] = 9)] = - 'COMMAND_TERMINAL'; +(function(ContextUseCase2) { + ContextUseCase2[ContextUseCase2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + ContextUseCase2[ContextUseCase2["AUTOCOMPLETE"] = 1] = "AUTOCOMPLETE"; + ContextUseCase2[ContextUseCase2["CHAT"] = 2] = "CHAT"; + ContextUseCase2[ContextUseCase2["CHAT_COMPLETION"] = 3] = "CHAT_COMPLETION"; + ContextUseCase2[ContextUseCase2["CORTEX_RESEARCH"] = 4] = "CORTEX_RESEARCH"; + ContextUseCase2[ContextUseCase2["EVAL"] = 5] = "EVAL"; + ContextUseCase2[ContextUseCase2["CHAT_COMPLETION_GENERATE"] = 6] = "CHAT_COMPLETION_GENERATE"; + ContextUseCase2[ContextUseCase2["SUPERCOMPLETE"] = 7] = "SUPERCOMPLETE"; + ContextUseCase2[ContextUseCase2["FAST_APPLY"] = 8] = "FAST_APPLY"; + ContextUseCase2[ContextUseCase2["COMMAND_TERMINAL"] = 9] = "COMMAND_TERMINAL"; })(ContextUseCase || (ContextUseCase = {})); -proto3.util.setEnumType( - ContextUseCase, - 'exa.context_module_pb.ContextUseCase', - [ - { no: 0, name: 'CONTEXT_USE_CASE_UNSPECIFIED' }, - { no: 1, name: 'CONTEXT_USE_CASE_AUTOCOMPLETE' }, - { no: 2, name: 'CONTEXT_USE_CASE_CHAT' }, - { no: 3, name: 'CONTEXT_USE_CASE_CHAT_COMPLETION' }, - { no: 4, name: 'CONTEXT_USE_CASE_CORTEX_RESEARCH' }, - { no: 5, name: 'CONTEXT_USE_CASE_EVAL' }, - { no: 6, name: 'CONTEXT_USE_CASE_CHAT_COMPLETION_GENERATE' }, - { no: 7, name: 'CONTEXT_USE_CASE_SUPERCOMPLETE' }, - { no: 8, name: 'CONTEXT_USE_CASE_FAST_APPLY' }, - { no: 9, name: 'CONTEXT_USE_CASE_COMMAND_TERMINAL' }, - ], -); +proto3.util.setEnumType(ContextUseCase, "exa.context_module_pb.ContextUseCase", [ + { no: 0, name: "CONTEXT_USE_CASE_UNSPECIFIED" }, + { no: 1, name: "CONTEXT_USE_CASE_AUTOCOMPLETE" }, + { no: 2, name: "CONTEXT_USE_CASE_CHAT" }, + { no: 3, name: "CONTEXT_USE_CASE_CHAT_COMPLETION" }, + { no: 4, name: "CONTEXT_USE_CASE_CORTEX_RESEARCH" }, + { no: 5, name: "CONTEXT_USE_CASE_EVAL" }, + { no: 6, name: "CONTEXT_USE_CASE_CHAT_COMPLETION_GENERATE" }, + { no: 7, name: "CONTEXT_USE_CASE_SUPERCOMPLETE" }, + { no: 8, name: "CONTEXT_USE_CASE_FAST_APPLY" }, + { no: 9, name: "CONTEXT_USE_CASE_COMMAND_TERMINAL" } +]); var ContextRefreshReason; -(function (ContextRefreshReason2) { - ContextRefreshReason2[(ContextRefreshReason2['UNSPECIFIED'] = 0)] = - 'UNSPECIFIED'; - ContextRefreshReason2[(ContextRefreshReason2['AUTOCOMPLETE'] = 1)] = - 'AUTOCOMPLETE'; - ContextRefreshReason2[(ContextRefreshReason2['CHAT'] = 2)] = 'CHAT'; - ContextRefreshReason2[(ContextRefreshReason2['IDE_ACTION'] = 4)] = - 'IDE_ACTION'; - ContextRefreshReason2[(ContextRefreshReason2['CHAT_COMPLETION'] = 5)] = - 'CHAT_COMPLETION'; +(function(ContextRefreshReason2) { + ContextRefreshReason2[ContextRefreshReason2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + ContextRefreshReason2[ContextRefreshReason2["AUTOCOMPLETE"] = 1] = "AUTOCOMPLETE"; + ContextRefreshReason2[ContextRefreshReason2["CHAT"] = 2] = "CHAT"; + ContextRefreshReason2[ContextRefreshReason2["IDE_ACTION"] = 4] = "IDE_ACTION"; + ContextRefreshReason2[ContextRefreshReason2["CHAT_COMPLETION"] = 5] = "CHAT_COMPLETION"; })(ContextRefreshReason || (ContextRefreshReason = {})); -proto3.util.setEnumType( - ContextRefreshReason, - 'exa.context_module_pb.ContextRefreshReason', - [ - { no: 0, name: 'CONTEXT_REFRESH_REASON_UNSPECIFIED' }, - { no: 1, name: 'CONTEXT_REFRESH_REASON_AUTOCOMPLETE' }, - { no: 2, name: 'CONTEXT_REFRESH_REASON_CHAT' }, - { no: 4, name: 'CONTEXT_REFRESH_REASON_IDE_ACTION' }, - { no: 5, name: 'CONTEXT_REFRESH_REASON_CHAT_COMPLETION' }, - ], -); +proto3.util.setEnumType(ContextRefreshReason, "exa.context_module_pb.ContextRefreshReason", [ + { no: 0, name: "CONTEXT_REFRESH_REASON_UNSPECIFIED" }, + { no: 1, name: "CONTEXT_REFRESH_REASON_AUTOCOMPLETE" }, + { no: 2, name: "CONTEXT_REFRESH_REASON_CHAT" }, + { no: 4, name: "CONTEXT_REFRESH_REASON_IDE_ACTION" }, + { no: 5, name: "CONTEXT_REFRESH_REASON_CHAT_COMPLETION" } +]); var ContextChangeEvent = class _ContextChangeEvent extends Message { /** * @generated from oneof exa.context_module_pb.ContextChangeEvent.context_change_event @@ -31514,70 +27929,17 @@ var ContextChangeEvent = class _ContextChangeEvent extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.context_module_pb.ContextChangeEvent'; + static typeName = "exa.context_module_pb.ContextChangeEvent"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'context_change_active_document', - kind: 'message', - T: ContextChangeActiveDocument, - oneof: 'context_change_event', - }, - { - no: 2, - name: 'context_change_cursor_position', - kind: 'message', - T: ContextChangeCursorPosition, - oneof: 'context_change_event', - }, - { - no: 3, - name: 'context_change_chat_message_received', - kind: 'message', - T: ContextChangeChatMessageReceived, - oneof: 'context_change_event', - }, - { - no: 4, - name: 'context_change_open_documents', - kind: 'message', - T: ContextChangeOpenDocuments, - oneof: 'context_change_event', - }, - { - no: 5, - name: 'context_change_oracle_items', - kind: 'message', - T: ContextChangeOracleItems, - oneof: 'context_change_event', - }, - { - no: 7, - name: 'context_change_pinned_context', - kind: 'message', - T: ContextChangePinnedContext, - oneof: 'context_change_event', - }, - { - no: 8, - name: 'context_change_pinned_guideline', - kind: 'message', - T: ContextChangePinnedGuideline, - oneof: 'context_change_event', - }, - { - no: 10, - name: 'context_change_active_node', - kind: 'message', - T: ContextChangeActiveNode, - oneof: 'context_change_event', - }, - { - no: 6, - name: 'context_refresh_reason', - kind: 'enum', - T: proto3.getEnumType(ContextRefreshReason), - }, + { no: 1, name: "context_change_active_document", kind: "message", T: ContextChangeActiveDocument, oneof: "context_change_event" }, + { no: 2, name: "context_change_cursor_position", kind: "message", T: ContextChangeCursorPosition, oneof: "context_change_event" }, + { no: 3, name: "context_change_chat_message_received", kind: "message", T: ContextChangeChatMessageReceived, oneof: "context_change_event" }, + { no: 4, name: "context_change_open_documents", kind: "message", T: ContextChangeOpenDocuments, oneof: "context_change_event" }, + { no: 5, name: "context_change_oracle_items", kind: "message", T: ContextChangeOracleItems, oneof: "context_change_event" }, + { no: 7, name: "context_change_pinned_context", kind: "message", T: ContextChangePinnedContext, oneof: "context_change_event" }, + { no: 8, name: "context_change_pinned_guideline", kind: "message", T: ContextChangePinnedGuideline, oneof: "context_change_event" }, + { no: 10, name: "context_change_active_node", kind: "message", T: ContextChangeActiveNode, oneof: "context_change_event" }, + { no: 6, name: "context_refresh_reason", kind: "enum", T: proto3.getEnumType(ContextRefreshReason) } ]); static fromBinary(bytes, options) { return new _ContextChangeEvent().fromBinary(bytes, options); @@ -31602,9 +27964,9 @@ var ContextChangeActiveDocument = class _ContextChangeActiveDocument extends Mes proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.context_module_pb.ContextChangeActiveDocument'; + static typeName = "exa.context_module_pb.ContextChangeActiveDocument"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'document', kind: 'message', T: Document }, + { no: 1, name: "document", kind: "message", T: Document } ]); static fromBinary(bytes, options) { return new _ContextChangeActiveDocument().fromBinary(bytes, options); @@ -31613,10 +27975,7 @@ var ContextChangeActiveDocument = class _ContextChangeActiveDocument extends Mes return new _ContextChangeActiveDocument().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _ContextChangeActiveDocument().fromJsonString( - jsonString, - options, - ); + return new _ContextChangeActiveDocument().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_ContextChangeActiveDocument, a, b); @@ -31634,9 +27993,9 @@ var ContextChangeCursorPosition = class _ContextChangeCursorPosition extends Mes proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.context_module_pb.ContextChangeCursorPosition'; + static typeName = "exa.context_module_pb.ContextChangeCursorPosition"; static fields = proto3.util.newFieldList(() => [ - { no: 2, name: 'document', kind: 'message', T: Document }, + { no: 2, name: "document", kind: "message", T: Document } ]); static fromBinary(bytes, options) { return new _ContextChangeCursorPosition().fromBinary(bytes, options); @@ -31645,10 +28004,7 @@ var ContextChangeCursorPosition = class _ContextChangeCursorPosition extends Mes return new _ContextChangeCursorPosition().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _ContextChangeCursorPosition().fromJsonString( - jsonString, - options, - ); + return new _ContextChangeCursorPosition().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_ContextChangeCursorPosition, a, b); @@ -31664,15 +28020,9 @@ var ContextChangeChatMessageReceived = class _ContextChangeChatMessageReceived e proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.context_module_pb.ContextChangeChatMessageReceived'; + static typeName = "exa.context_module_pb.ContextChangeChatMessageReceived"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'chat_messages', - kind: 'message', - T: ChatMessage, - repeated: true, - }, + { no: 1, name: "chat_messages", kind: "message", T: ChatMessage, repeated: true } ]); static fromBinary(bytes, options) { return new _ContextChangeChatMessageReceived().fromBinary(bytes, options); @@ -31681,10 +28031,7 @@ var ContextChangeChatMessageReceived = class _ContextChangeChatMessageReceived e return new _ContextChangeChatMessageReceived().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _ContextChangeChatMessageReceived().fromJsonString( - jsonString, - options, - ); + return new _ContextChangeChatMessageReceived().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_ContextChangeChatMessageReceived, a, b); @@ -31700,15 +28047,9 @@ var ContextChangeOpenDocuments = class _ContextChangeOpenDocuments extends Messa proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.context_module_pb.ContextChangeOpenDocuments'; + static typeName = "exa.context_module_pb.ContextChangeOpenDocuments"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'other_open_documents', - kind: 'message', - T: Document, - repeated: true, - }, + { no: 1, name: "other_open_documents", kind: "message", T: Document, repeated: true } ]); static fromBinary(bytes, options) { return new _ContextChangeOpenDocuments().fromBinary(bytes, options); @@ -31717,10 +28058,7 @@ var ContextChangeOpenDocuments = class _ContextChangeOpenDocuments extends Messa return new _ContextChangeOpenDocuments().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _ContextChangeOpenDocuments().fromJsonString( - jsonString, - options, - ); + return new _ContextChangeOpenDocuments().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_ContextChangeOpenDocuments, a, b); @@ -31736,15 +28074,9 @@ var ContextChangeOracleItems = class _ContextChangeOracleItems extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.context_module_pb.ContextChangeOracleItems'; + static typeName = "exa.context_module_pb.ContextChangeOracleItems"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'oracle_items', - kind: 'message', - T: CodeContextItem, - repeated: true, - }, + { no: 1, name: "oracle_items", kind: "message", T: CodeContextItem, repeated: true } ]); static fromBinary(bytes, options) { return new _ContextChangeOracleItems().fromBinary(bytes, options); @@ -31769,22 +28101,10 @@ var ContextChangePinnedContext = class _ContextChangePinnedContext extends Messa proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.context_module_pb.ContextChangePinnedContext'; + static typeName = "exa.context_module_pb.ContextChangePinnedContext"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'pinned_scope', - kind: 'message', - T: ContextScope, - oneof: 'scope', - }, - { - no: 2, - name: 'mentioned_scope', - kind: 'message', - T: ContextScope, - oneof: 'scope', - }, + { no: 1, name: "pinned_scope", kind: "message", T: ContextScope, oneof: "scope" }, + { no: 2, name: "mentioned_scope", kind: "message", T: ContextScope, oneof: "scope" } ]); static fromBinary(bytes, options) { return new _ContextChangePinnedContext().fromBinary(bytes, options); @@ -31793,10 +28113,7 @@ var ContextChangePinnedContext = class _ContextChangePinnedContext extends Messa return new _ContextChangePinnedContext().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _ContextChangePinnedContext().fromJsonString( - jsonString, - options, - ); + return new _ContextChangePinnedContext().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_ContextChangePinnedContext, a, b); @@ -31812,9 +28129,9 @@ var ContextChangePinnedGuideline = class _ContextChangePinnedGuideline extends M proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.context_module_pb.ContextChangePinnedGuideline'; + static typeName = "exa.context_module_pb.ContextChangePinnedGuideline"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'guideline', kind: 'message', T: Guideline }, + { no: 1, name: "guideline", kind: "message", T: Guideline } ]); static fromBinary(bytes, options) { return new _ContextChangePinnedGuideline().fromBinary(bytes, options); @@ -31823,10 +28140,7 @@ var ContextChangePinnedGuideline = class _ContextChangePinnedGuideline extends M return new _ContextChangePinnedGuideline().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _ContextChangePinnedGuideline().fromJsonString( - jsonString, - options, - ); + return new _ContextChangePinnedGuideline().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_ContextChangePinnedGuideline, a, b); @@ -31853,17 +28167,17 @@ var ContextChangeActiveNode = class _ContextChangeActiveNode extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.context_module_pb.ContextChangeActiveNode'; + static typeName = "exa.context_module_pb.ContextChangeActiveNode"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'active_node', kind: 'message', T: CodeContextItem }, - { no: 2, name: 'document', kind: 'message', T: Document }, + { no: 1, name: "active_node", kind: "message", T: CodeContextItem }, + { no: 2, name: "document", kind: "message", T: Document }, { no: 3, - name: 'actual_node_change', - kind: 'scalar', - T: 8, + name: "actual_node_change", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ - }, + } ]); static fromBinary(bytes, options) { return new _ContextChangeActiveNode().fromBinary(bytes, options); @@ -31896,7 +28210,7 @@ var RetrievedCodeContextItemMetadata = class _RetrievedCodeContextItemMetadata e * * @generated from field: string scorer = 3; */ - scorer = ''; + scorer = ""; /** * The score of this item given by that scorer. * @@ -31921,49 +28235,32 @@ var RetrievedCodeContextItemMetadata = class _RetrievedCodeContextItemMetadata e proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.context_module_pb.RetrievedCodeContextItemMetadata'; + static typeName = "exa.context_module_pb.RetrievedCodeContextItemMetadata"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'context_sources', - kind: 'enum', - T: proto3.getEnumType(CodeContextSource), - repeated: true, - }, - { - no: 2, - name: 'context_type', - kind: 'enum', - T: proto3.getEnumType(CodeContextType), - }, + { no: 1, name: "context_sources", kind: "enum", T: proto3.getEnumType(CodeContextSource), repeated: true }, + { no: 2, name: "context_type", kind: "enum", T: proto3.getEnumType(CodeContextType) }, { no: 3, - name: 'scorer', - kind: 'scalar', - T: 9, + name: "scorer", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 4, - name: 'score', - kind: 'scalar', - T: 2, + name: "score", + kind: "scalar", + T: 2 /* ScalarType.FLOAT */ }, - { - no: 5, - name: 'provider_metadata', - kind: 'map', - K: 9, - V: { kind: 'message', T: CodeContextProviderMetadata }, - }, + { no: 5, name: "provider_metadata", kind: "map", K: 9, V: { kind: "message", T: CodeContextProviderMetadata } }, { no: 6, - name: 'is_in_pinned_scope', - kind: 'scalar', - T: 8, + name: "is_in_pinned_scope", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ - }, + } ]); static fromBinary(bytes, options) { return new _RetrievedCodeContextItemMetadata().fromBinary(bytes, options); @@ -31972,10 +28269,7 @@ var RetrievedCodeContextItemMetadata = class _RetrievedCodeContextItemMetadata e return new _RetrievedCodeContextItemMetadata().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _RetrievedCodeContextItemMetadata().fromJsonString( - jsonString, - options, - ); + return new _RetrievedCodeContextItemMetadata().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_RetrievedCodeContextItemMetadata, a, b); @@ -31995,34 +28289,19 @@ var CciWithSubrangeWithRetrievalMetadata = class _CciWithSubrangeWithRetrievalMe proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = - 'exa.context_module_pb.CciWithSubrangeWithRetrievalMetadata'; + static typeName = "exa.context_module_pb.CciWithSubrangeWithRetrievalMetadata"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'cci_with_subrange', kind: 'message', T: CciWithSubrange }, - { - no: 2, - name: 'metadata', - kind: 'message', - T: RetrievedCodeContextItemMetadata, - }, + { no: 1, name: "cci_with_subrange", kind: "message", T: CciWithSubrange }, + { no: 2, name: "metadata", kind: "message", T: RetrievedCodeContextItemMetadata } ]); static fromBinary(bytes, options) { - return new _CciWithSubrangeWithRetrievalMetadata().fromBinary( - bytes, - options, - ); + return new _CciWithSubrangeWithRetrievalMetadata().fromBinary(bytes, options); } static fromJson(jsonValue, options) { - return new _CciWithSubrangeWithRetrievalMetadata().fromJson( - jsonValue, - options, - ); + return new _CciWithSubrangeWithRetrievalMetadata().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _CciWithSubrangeWithRetrievalMetadata().fromJsonString( - jsonString, - options, - ); + return new _CciWithSubrangeWithRetrievalMetadata().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_CciWithSubrangeWithRetrievalMetadata, a, b); @@ -32042,34 +28321,19 @@ var CodeContextItemWithRetrievalMetadata = class _CodeContextItemWithRetrievalMe proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = - 'exa.context_module_pb.CodeContextItemWithRetrievalMetadata'; + static typeName = "exa.context_module_pb.CodeContextItemWithRetrievalMetadata"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'code_context_item', kind: 'message', T: CodeContextItem }, - { - no: 2, - name: 'metadata', - kind: 'message', - T: RetrievedCodeContextItemMetadata, - }, + { no: 1, name: "code_context_item", kind: "message", T: CodeContextItem }, + { no: 2, name: "metadata", kind: "message", T: RetrievedCodeContextItemMetadata } ]); static fromBinary(bytes, options) { - return new _CodeContextItemWithRetrievalMetadata().fromBinary( - bytes, - options, - ); + return new _CodeContextItemWithRetrievalMetadata().fromBinary(bytes, options); } static fromJson(jsonValue, options) { - return new _CodeContextItemWithRetrievalMetadata().fromJson( - jsonValue, - options, - ); + return new _CodeContextItemWithRetrievalMetadata().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _CodeContextItemWithRetrievalMetadata().fromJsonString( - jsonString, - options, - ); + return new _CodeContextItemWithRetrievalMetadata().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_CodeContextItemWithRetrievalMetadata, a, b); @@ -32079,7 +28343,7 @@ var FileNameWithRetrievalMetadata = class _FileNameWithRetrievalMetadata extends /** * @generated from field: string absolute_uri = 1; */ - absoluteUri = ''; + absoluteUri = ""; /** * TODO(rmalde) rename this type to be * RetrievedContextItemMetadata so it's not specific to CCI's @@ -32092,21 +28356,16 @@ var FileNameWithRetrievalMetadata = class _FileNameWithRetrievalMetadata extends proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.context_module_pb.FileNameWithRetrievalMetadata'; + static typeName = "exa.context_module_pb.FileNameWithRetrievalMetadata"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'absolute_uri', - kind: 'scalar', - T: 9, + name: "absolute_uri", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { - no: 2, - name: 'metadata', - kind: 'message', - T: RetrievedCodeContextItemMetadata, - }, + { no: 2, name: "metadata", kind: "message", T: RetrievedCodeContextItemMetadata } ]); static fromBinary(bytes, options) { return new _FileNameWithRetrievalMetadata().fromBinary(bytes, options); @@ -32115,10 +28374,7 @@ var FileNameWithRetrievalMetadata = class _FileNameWithRetrievalMetadata extends return new _FileNameWithRetrievalMetadata().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _FileNameWithRetrievalMetadata().fromJsonString( - jsonString, - options, - ); + return new _FileNameWithRetrievalMetadata().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_FileNameWithRetrievalMetadata, a, b); @@ -32137,15 +28393,15 @@ var CodeContextProviderMetadata = class _CodeContextProviderMetadata extends Mes proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.context_module_pb.CodeContextProviderMetadata'; + static typeName = "exa.context_module_pb.CodeContextProviderMetadata"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'relative_weight', - kind: 'scalar', - T: 2, + name: "relative_weight", + kind: "scalar", + T: 2 /* ScalarType.FLOAT */ - }, + } ]); static fromBinary(bytes, options) { return new _CodeContextProviderMetadata().fromBinary(bytes, options); @@ -32154,10 +28410,7 @@ var CodeContextProviderMetadata = class _CodeContextProviderMetadata extends Mes return new _CodeContextProviderMetadata().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _CodeContextProviderMetadata().fromJsonString( - jsonString, - options, - ); + return new _CodeContextProviderMetadata().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_CodeContextProviderMetadata, a, b); @@ -32185,34 +28438,24 @@ var ContextModuleStats = class _ContextModuleStats extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.context_module_pb.ContextModuleStats'; + static typeName = "exa.context_module_pb.ContextModuleStats"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'context_module_state_stats', - kind: 'message', - T: ContextModuleStateStats, - }, - { - no: 2, - name: 'code_context_item_index_stats', - kind: 'message', - T: CodeContextItemIndexStats, - }, + { no: 1, name: "context_module_state_stats", kind: "message", T: ContextModuleStateStats }, + { no: 2, name: "code_context_item_index_stats", kind: "message", T: CodeContextItemIndexStats }, { no: 3, - name: 'get_stats_latency_ms', - kind: 'scalar', - T: 3, + name: "get_stats_latency_ms", + kind: "scalar", + T: 3 /* ScalarType.INT64 */ }, { no: 4, - name: 'context_module_age_s', - kind: 'scalar', - T: 3, + name: "context_module_age_s", + kind: "scalar", + T: 3 /* ScalarType.INT64 */ - }, + } ]); static fromBinary(bytes, options) { return new _ContextModuleStats().fromBinary(bytes, options); @@ -32245,29 +28488,29 @@ var ContextModuleStateStats = class _ContextModuleStateStats extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.context_module_pb.ContextModuleStateStats'; + static typeName = "exa.context_module_pb.ContextModuleStateStats"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'cci_per_source_bytes', - kind: 'scalar', - T: 3, + name: "cci_per_source_bytes", + kind: "scalar", + T: 3 /* ScalarType.INT64 */ }, { no: 2, - name: 'active_document_bytes', - kind: 'scalar', - T: 3, + name: "active_document_bytes", + kind: "scalar", + T: 3 /* ScalarType.INT64 */ }, { no: 3, - name: 'other_open_documents_bytes', - kind: 'scalar', - T: 3, + name: "other_open_documents_bytes", + kind: "scalar", + T: 3 /* ScalarType.INT64 */ - }, + } ]); static fromBinary(bytes, options) { return new _ContextModuleStateStats().fromBinary(bytes, options); @@ -32332,64 +28575,64 @@ var CodeContextItemIndexStats = class _CodeContextItemIndexStats extends Message proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.context_module_pb.CodeContextItemIndexStats'; + static typeName = "exa.context_module_pb.CodeContextItemIndexStats"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'all_ccis_bytes', - kind: 'scalar', - T: 3, + name: "all_ccis_bytes", + kind: "scalar", + T: 3 /* ScalarType.INT64 */ }, { no: 2, - name: 'num_ccis_tracked', - kind: 'scalar', - T: 3, + name: "num_ccis_tracked", + kind: "scalar", + T: 3 /* ScalarType.INT64 */ }, { no: 3, - name: 'term_frequency_map_bytes', - kind: 'scalar', - T: 3, + name: "term_frequency_map_bytes", + kind: "scalar", + T: 3 /* ScalarType.INT64 */ }, { no: 4, - name: 'num_terms_tracked', - kind: 'scalar', - T: 3, + name: "num_terms_tracked", + kind: "scalar", + T: 3 /* ScalarType.INT64 */ }, { no: 5, - name: 'file_to_cci_map_bytes', - kind: 'scalar', - T: 3, + name: "file_to_cci_map_bytes", + kind: "scalar", + T: 3 /* ScalarType.INT64 */ }, { no: 6, - name: 'num_files_tracked', - kind: 'scalar', - T: 3, + name: "num_files_tracked", + kind: "scalar", + T: 3 /* ScalarType.INT64 */ }, { no: 7, - name: 'last_modified_bytes', - kind: 'scalar', - T: 3, + name: "last_modified_bytes", + kind: "scalar", + T: 3 /* ScalarType.INT64 */ }, { no: 8, - name: 'hash_map_bytes', - kind: 'scalar', - T: 3, + name: "hash_map_bytes", + kind: "scalar", + T: 3 /* ScalarType.INT64 */ - }, + } ]); static fromBinary(bytes, options) { return new _CodeContextItemIndexStats().fromBinary(bytes, options); @@ -32418,10 +28661,10 @@ var PersistentContextModuleState = class _PersistentContextModuleState extends M proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.context_module_pb.PersistentContextModuleState'; + static typeName = "exa.context_module_pb.PersistentContextModuleState"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'pinned_guideline', kind: 'message', T: Guideline }, - { no: 2, name: 'pinned_context_scope', kind: 'message', T: ContextScope }, + { no: 1, name: "pinned_guideline", kind: "message", T: Guideline }, + { no: 2, name: "pinned_context_scope", kind: "message", T: ContextScope } ]); static fromBinary(bytes, options) { return new _PersistentContextModuleState().fromBinary(bytes, options); @@ -32430,10 +28673,7 @@ var PersistentContextModuleState = class _PersistentContextModuleState extends M return new _PersistentContextModuleState().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _PersistentContextModuleState().fromJsonString( - jsonString, - options, - ); + return new _PersistentContextModuleState().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_PersistentContextModuleState, a, b); @@ -32477,44 +28717,16 @@ var ContextModuleResult = class _ContextModuleResult extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.context_module_pb.ContextModuleResult'; + static typeName = "exa.context_module_pb.ContextModuleResult"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'retrieved_cci_with_subranges', - kind: 'message', - T: CciWithSubrangeWithRetrievalMetadata, - repeated: true, - }, - { no: 2, name: 'active_document', kind: 'message', T: Document }, - { - no: 5, - name: 'active_document_outline', - kind: 'message', - T: DocumentOutline, - }, - { no: 3, name: 'local_node_state', kind: 'message', T: LocalNodeState }, - { no: 4, name: 'guideline', kind: 'message', T: Guideline }, - { - no: 6, - name: 'open_documents', - kind: 'message', - T: Document, - repeated: true, - }, - { - no: 8, - name: 'running_terminal_commands', - kind: 'message', - T: TerminalShellCommand, - repeated: true, - }, - { - no: 9, - name: 'browser_state_snapshot', - kind: 'message', - T: BrowserStateSnapshot, - }, + { no: 1, name: "retrieved_cci_with_subranges", kind: "message", T: CciWithSubrangeWithRetrievalMetadata, repeated: true }, + { no: 2, name: "active_document", kind: "message", T: Document }, + { no: 5, name: "active_document_outline", kind: "message", T: DocumentOutline }, + { no: 3, name: "local_node_state", kind: "message", T: LocalNodeState }, + { no: 4, name: "guideline", kind: "message", T: Guideline }, + { no: 6, name: "open_documents", kind: "message", T: Document, repeated: true }, + { no: 8, name: "running_terminal_commands", kind: "message", T: TerminalShellCommand, repeated: true }, + { no: 9, name: "browser_state_snapshot", kind: "message", T: BrowserStateSnapshot } ]); static fromBinary(bytes, options) { return new _ContextModuleResult().fromBinary(bytes, options); @@ -32547,11 +28759,11 @@ var LocalNodeState = class _LocalNodeState extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.context_module_pb.LocalNodeState'; + static typeName = "exa.context_module_pb.LocalNodeState"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'current_node', kind: 'message', T: CodeContextItem }, - { no: 2, name: 'closest_above_node', kind: 'message', T: CodeContextItem }, - { no: 3, name: 'closest_below_node', kind: 'message', T: CodeContextItem }, + { no: 1, name: "current_node", kind: "message", T: CodeContextItem }, + { no: 2, name: "closest_above_node", kind: "message", T: CodeContextItem }, + { no: 3, name: "closest_below_node", kind: "message", T: CodeContextItem } ]); static fromBinary(bytes, options) { return new _LocalNodeState().fromBinary(bytes, options); @@ -32569,28 +28781,16 @@ var LocalNodeState = class _LocalNodeState extends Message { // exa/proto_ts/dist/exa/chat_client_server_pb/chat_client_server_pb.js var ChatClientRequestStreamClientType; -(function (ChatClientRequestStreamClientType2) { - ChatClientRequestStreamClientType2[ - (ChatClientRequestStreamClientType2['UNSPECIFIED'] = 0) - ] = 'UNSPECIFIED'; - ChatClientRequestStreamClientType2[ - (ChatClientRequestStreamClientType2['IDE'] = 1) - ] = 'IDE'; - ChatClientRequestStreamClientType2[ - (ChatClientRequestStreamClientType2['BROWSER'] = 2) - ] = 'BROWSER'; -})( - ChatClientRequestStreamClientType || (ChatClientRequestStreamClientType = {}), -); -proto3.util.setEnumType( - ChatClientRequestStreamClientType, - 'exa.chat_client_server_pb.ChatClientRequestStreamClientType', - [ - { no: 0, name: 'CHAT_CLIENT_REQUEST_STREAM_CLIENT_TYPE_UNSPECIFIED' }, - { no: 1, name: 'CHAT_CLIENT_REQUEST_STREAM_CLIENT_TYPE_IDE' }, - { no: 2, name: 'CHAT_CLIENT_REQUEST_STREAM_CLIENT_TYPE_BROWSER' }, - ], -); +(function(ChatClientRequestStreamClientType2) { + ChatClientRequestStreamClientType2[ChatClientRequestStreamClientType2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + ChatClientRequestStreamClientType2[ChatClientRequestStreamClientType2["IDE"] = 1] = "IDE"; + ChatClientRequestStreamClientType2[ChatClientRequestStreamClientType2["BROWSER"] = 2] = "BROWSER"; +})(ChatClientRequestStreamClientType || (ChatClientRequestStreamClientType = {})); +proto3.util.setEnumType(ChatClientRequestStreamClientType, "exa.chat_client_server_pb.ChatClientRequestStreamClientType", [ + { no: 0, name: "CHAT_CLIENT_REQUEST_STREAM_CLIENT_TYPE_UNSPECIFIED" }, + { no: 1, name: "CHAT_CLIENT_REQUEST_STREAM_CLIENT_TYPE_IDE" }, + { no: 2, name: "CHAT_CLIENT_REQUEST_STREAM_CLIENT_TYPE_BROWSER" } +]); var StartChatClientRequestStreamRequest = class _StartChatClientRequestStreamRequest extends Message { /** * @generated from field: exa.chat_client_server_pb.ChatClientRequestStreamClientType client_type = 1; @@ -32601,33 +28801,18 @@ var StartChatClientRequestStreamRequest = class _StartChatClientRequestStreamReq proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = - 'exa.chat_client_server_pb.StartChatClientRequestStreamRequest'; + static typeName = "exa.chat_client_server_pb.StartChatClientRequestStreamRequest"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'client_type', - kind: 'enum', - T: proto3.getEnumType(ChatClientRequestStreamClientType), - }, + { no: 1, name: "client_type", kind: "enum", T: proto3.getEnumType(ChatClientRequestStreamClientType) } ]); static fromBinary(bytes, options) { - return new _StartChatClientRequestStreamRequest().fromBinary( - bytes, - options, - ); + return new _StartChatClientRequestStreamRequest().fromBinary(bytes, options); } static fromJson(jsonValue, options) { - return new _StartChatClientRequestStreamRequest().fromJson( - jsonValue, - options, - ); + return new _StartChatClientRequestStreamRequest().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _StartChatClientRequestStreamRequest().fromJsonString( - jsonString, - options, - ); + return new _StartChatClientRequestStreamRequest().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_StartChatClientRequestStreamRequest, a, b); @@ -32643,36 +28828,12 @@ var ChatClientRequest = class _ChatClientRequest extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.chat_client_server_pb.ChatClientRequest'; + static typeName = "exa.chat_client_server_pb.ChatClientRequest"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'add_cascade_input', - kind: 'message', - T: AddCascadeInputRequest, - oneof: 'request', - }, - { - no: 2, - name: 'send_action_to_chat_panel', - kind: 'message', - T: SendActionToChatPanelRequest, - oneof: 'request', - }, - { - no: 3, - name: 'initial_ack', - kind: 'message', - T: InitialAckRequest, - oneof: 'request', - }, - { - no: 4, - name: 'refresh_customization', - kind: 'message', - T: RefreshCustomizationRequest, - oneof: 'request', - }, + { no: 1, name: "add_cascade_input", kind: "message", T: AddCascadeInputRequest, oneof: "request" }, + { no: 2, name: "send_action_to_chat_panel", kind: "message", T: SendActionToChatPanelRequest, oneof: "request" }, + { no: 3, name: "initial_ack", kind: "message", T: InitialAckRequest, oneof: "request" }, + { no: 4, name: "refresh_customization", kind: "message", T: RefreshCustomizationRequest, oneof: "request" } ]); static fromBinary(bytes, options) { return new _ChatClientRequest().fromBinary(bytes, options); @@ -32710,17 +28871,11 @@ var AddCascadeInputRequest = class _AddCascadeInputRequest extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.chat_client_server_pb.AddCascadeInputRequest'; + static typeName = "exa.chat_client_server_pb.AddCascadeInputRequest"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'items', - kind: 'message', - T: TextOrScopeItem, - repeated: true, - }, - { no: 2, name: 'images', kind: 'message', T: ImageData, repeated: true }, - { no: 3, name: 'media', kind: 'message', T: Media, repeated: true }, + { no: 1, name: "items", kind: "message", T: TextOrScopeItem, repeated: true }, + { no: 2, name: "images", kind: "message", T: ImageData, repeated: true }, + { no: 3, name: "media", kind: "message", T: Media, repeated: true } ]); static fromBinary(bytes, options) { return new _AddCascadeInputRequest().fromBinary(bytes, options); @@ -32741,7 +28896,7 @@ var SendActionToChatPanelRequest = class _SendActionToChatPanelRequest extends M * * @generated from field: string action_type = 1; */ - actionType = ''; + actionType = ""; /** * The serialized payload for the action * @@ -32753,16 +28908,16 @@ var SendActionToChatPanelRequest = class _SendActionToChatPanelRequest extends M proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.chat_client_server_pb.SendActionToChatPanelRequest'; + static typeName = "exa.chat_client_server_pb.SendActionToChatPanelRequest"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'action_type', - kind: 'scalar', - T: 9, + name: "action_type", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 2, name: 'payload', kind: 'scalar', T: 12, repeated: true }, + { no: 2, name: "payload", kind: "scalar", T: 12, repeated: true } ]); static fromBinary(bytes, options) { return new _SendActionToChatPanelRequest().fromBinary(bytes, options); @@ -32771,10 +28926,7 @@ var SendActionToChatPanelRequest = class _SendActionToChatPanelRequest extends M return new _SendActionToChatPanelRequest().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _SendActionToChatPanelRequest().fromJsonString( - jsonString, - options, - ); + return new _SendActionToChatPanelRequest().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_SendActionToChatPanelRequest, a, b); @@ -32786,7 +28938,7 @@ var InitialAckRequest = class _InitialAckRequest extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.chat_client_server_pb.InitialAckRequest'; + static typeName = "exa.chat_client_server_pb.InitialAckRequest"; static fields = proto3.util.newFieldList(() => []); static fromBinary(bytes, options) { return new _InitialAckRequest().fromBinary(bytes, options); @@ -32811,14 +28963,9 @@ var RefreshCustomizationRequest = class _RefreshCustomizationRequest extends Mes proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.chat_client_server_pb.RefreshCustomizationRequest'; + static typeName = "exa.chat_client_server_pb.RefreshCustomizationRequest"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'config_type', - kind: 'enum', - T: proto3.getEnumType(RefreshCustomizationType), - }, + { no: 1, name: "config_type", kind: "enum", T: proto3.getEnumType(RefreshCustomizationType) } ]); static fromBinary(bytes, options) { return new _RefreshCustomizationRequest().fromBinary(bytes, options); @@ -32827,10 +28974,7 @@ var RefreshCustomizationRequest = class _RefreshCustomizationRequest extends Mes return new _RefreshCustomizationRequest().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _RefreshCustomizationRequest().fromJsonString( - jsonString, - options, - ); + return new _RefreshCustomizationRequest().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_RefreshCustomizationRequest, a, b); @@ -32839,47 +28983,46 @@ var RefreshCustomizationRequest = class _RefreshCustomizationRequest extends Mes // exa/proto_ts/dist/exa/index_pb/index_pb.js var IndexMode; -(function (IndexMode2) { - IndexMode2[(IndexMode2['UNSPECIFIED'] = 0)] = 'UNSPECIFIED'; - IndexMode2[(IndexMode2['HALFVEC'] = 1)] = 'HALFVEC'; - IndexMode2[(IndexMode2['BINARY'] = 2)] = 'BINARY'; - IndexMode2[(IndexMode2['BINARY_WITH_RERANK'] = 3)] = 'BINARY_WITH_RERANK'; - IndexMode2[(IndexMode2['BRUTE_FORCE'] = 4)] = 'BRUTE_FORCE'; - IndexMode2[(IndexMode2['RANDOM_SEARCH'] = 5)] = 'RANDOM_SEARCH'; +(function(IndexMode2) { + IndexMode2[IndexMode2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + IndexMode2[IndexMode2["HALFVEC"] = 1] = "HALFVEC"; + IndexMode2[IndexMode2["BINARY"] = 2] = "BINARY"; + IndexMode2[IndexMode2["BINARY_WITH_RERANK"] = 3] = "BINARY_WITH_RERANK"; + IndexMode2[IndexMode2["BRUTE_FORCE"] = 4] = "BRUTE_FORCE"; + IndexMode2[IndexMode2["RANDOM_SEARCH"] = 5] = "RANDOM_SEARCH"; })(IndexMode || (IndexMode = {})); -proto3.util.setEnumType(IndexMode, 'exa.index_pb.IndexMode', [ - { no: 0, name: 'INDEX_MODE_UNSPECIFIED' }, - { no: 1, name: 'INDEX_MODE_HALFVEC' }, - { no: 2, name: 'INDEX_MODE_BINARY' }, - { no: 3, name: 'INDEX_MODE_BINARY_WITH_RERANK' }, - { no: 4, name: 'INDEX_MODE_BRUTE_FORCE' }, - { no: 5, name: 'INDEX_MODE_RANDOM_SEARCH' }, +proto3.util.setEnumType(IndexMode, "exa.index_pb.IndexMode", [ + { no: 0, name: "INDEX_MODE_UNSPECIFIED" }, + { no: 1, name: "INDEX_MODE_HALFVEC" }, + { no: 2, name: "INDEX_MODE_BINARY" }, + { no: 3, name: "INDEX_MODE_BINARY_WITH_RERANK" }, + { no: 4, name: "INDEX_MODE_BRUTE_FORCE" }, + { no: 5, name: "INDEX_MODE_RANDOM_SEARCH" } ]); var IndexingStatus; -(function (IndexingStatus2) { - IndexingStatus2[(IndexingStatus2['UNSPECIFIED'] = 0)] = 'UNSPECIFIED'; - IndexingStatus2[(IndexingStatus2['ERROR'] = 1)] = 'ERROR'; - IndexingStatus2[(IndexingStatus2['QUEUED'] = 2)] = 'QUEUED'; - IndexingStatus2[(IndexingStatus2['CLONING_REPO'] = 3)] = 'CLONING_REPO'; - IndexingStatus2[(IndexingStatus2['SCANNING_REPO'] = 4)] = 'SCANNING_REPO'; - IndexingStatus2[(IndexingStatus2['GENERATING_EMBEDDINGS'] = 5)] = - 'GENERATING_EMBEDDINGS'; - IndexingStatus2[(IndexingStatus2['VECTOR_INDEXING'] = 6)] = 'VECTOR_INDEXING'; - IndexingStatus2[(IndexingStatus2['DONE'] = 7)] = 'DONE'; - IndexingStatus2[(IndexingStatus2['CANCELING'] = 8)] = 'CANCELING'; - IndexingStatus2[(IndexingStatus2['CANCELED'] = 9)] = 'CANCELED'; +(function(IndexingStatus2) { + IndexingStatus2[IndexingStatus2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + IndexingStatus2[IndexingStatus2["ERROR"] = 1] = "ERROR"; + IndexingStatus2[IndexingStatus2["QUEUED"] = 2] = "QUEUED"; + IndexingStatus2[IndexingStatus2["CLONING_REPO"] = 3] = "CLONING_REPO"; + IndexingStatus2[IndexingStatus2["SCANNING_REPO"] = 4] = "SCANNING_REPO"; + IndexingStatus2[IndexingStatus2["GENERATING_EMBEDDINGS"] = 5] = "GENERATING_EMBEDDINGS"; + IndexingStatus2[IndexingStatus2["VECTOR_INDEXING"] = 6] = "VECTOR_INDEXING"; + IndexingStatus2[IndexingStatus2["DONE"] = 7] = "DONE"; + IndexingStatus2[IndexingStatus2["CANCELING"] = 8] = "CANCELING"; + IndexingStatus2[IndexingStatus2["CANCELED"] = 9] = "CANCELED"; })(IndexingStatus || (IndexingStatus = {})); -proto3.util.setEnumType(IndexingStatus, 'exa.index_pb.IndexingStatus', [ - { no: 0, name: 'INDEXING_STATUS_UNSPECIFIED' }, - { no: 1, name: 'INDEXING_STATUS_ERROR' }, - { no: 2, name: 'INDEXING_STATUS_QUEUED' }, - { no: 3, name: 'INDEXING_STATUS_CLONING_REPO' }, - { no: 4, name: 'INDEXING_STATUS_SCANNING_REPO' }, - { no: 5, name: 'INDEXING_STATUS_GENERATING_EMBEDDINGS' }, - { no: 6, name: 'INDEXING_STATUS_VECTOR_INDEXING' }, - { no: 7, name: 'INDEXING_STATUS_DONE' }, - { no: 8, name: 'INDEXING_STATUS_CANCELING' }, - { no: 9, name: 'INDEXING_STATUS_CANCELED' }, +proto3.util.setEnumType(IndexingStatus, "exa.index_pb.IndexingStatus", [ + { no: 0, name: "INDEXING_STATUS_UNSPECIFIED" }, + { no: 1, name: "INDEXING_STATUS_ERROR" }, + { no: 2, name: "INDEXING_STATUS_QUEUED" }, + { no: 3, name: "INDEXING_STATUS_CLONING_REPO" }, + { no: 4, name: "INDEXING_STATUS_SCANNING_REPO" }, + { no: 5, name: "INDEXING_STATUS_GENERATING_EMBEDDINGS" }, + { no: 6, name: "INDEXING_STATUS_VECTOR_INDEXING" }, + { no: 7, name: "INDEXING_STATUS_DONE" }, + { no: 8, name: "INDEXING_STATUS_CANCELING" }, + { no: 9, name: "INDEXING_STATUS_CANCELED" } ]); var IndexDbVersion = class _IndexDbVersion extends Message { /** @@ -32901,22 +29044,22 @@ var IndexDbVersion = class _IndexDbVersion extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.index_pb.IndexDbVersion'; + static typeName = "exa.index_pb.IndexDbVersion"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'version', - kind: 'scalar', - T: 5, + name: "version", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, { no: 2, - name: 'enterprise_version', - kind: 'scalar', - T: 5, + name: "enterprise_version", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ - }, + } ]); static fromBinary(bytes, options) { return new _IndexDbVersion().fromBinary(bytes, options); @@ -32949,22 +29092,17 @@ var IndexBuildConfig = class _IndexBuildConfig extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.index_pb.IndexBuildConfig'; + static typeName = "exa.index_pb.IndexBuildConfig"; static fields = proto3.util.newFieldList(() => [ - { no: 2, name: 'db_version', kind: 'message', T: IndexDbVersion }, + { no: 2, name: "db_version", kind: "message", T: IndexDbVersion }, { no: 3, - name: 'cci_timeout_secs', - kind: 'scalar', - T: 5, + name: "cci_timeout_secs", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, - { - no: 4, - name: 'index_mode', - kind: 'enum', - T: proto3.getEnumType(IndexMode), - }, + { no: 4, name: "index_mode", kind: "enum", T: proto3.getEnumType(IndexMode) } ]); static fromBinary(bytes, options) { return new _IndexBuildConfig().fromBinary(bytes, options); @@ -32983,7 +29121,7 @@ var RepositoryConfig = class _RepositoryConfig extends Message { /** * @generated from field: string git_url = 1; */ - gitUrl = ''; + gitUrl = ""; /** * @generated from field: exa.codeium_common_pb.ScmProvider scm_provider = 2; */ @@ -33007,77 +29145,67 @@ var RepositoryConfig = class _RepositoryConfig extends Message { /** * @generated from field: string auth_uid = 7; */ - authUid = ''; + authUid = ""; /** * @generated from field: string email = 9; */ - email = ''; + email = ""; /** * @generated from field: string service_key_id = 8; */ - serviceKeyId = ''; + serviceKeyId = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.index_pb.RepositoryConfig'; + static typeName = "exa.index_pb.RepositoryConfig"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'git_url', - kind: 'scalar', - T: 9, + name: "git_url", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { - no: 2, - name: 'scm_provider', - kind: 'enum', - T: proto3.getEnumType(ScmProvider), - }, - { - no: 3, - name: 'auto_index_config', - kind: 'message', - T: RepositoryConfig_AutoIndexConfig, - }, + { no: 2, name: "scm_provider", kind: "enum", T: proto3.getEnumType(ScmProvider) }, + { no: 3, name: "auto_index_config", kind: "message", T: RepositoryConfig_AutoIndexConfig }, { no: 4, - name: 'store_snippets', - kind: 'scalar', - T: 8, + name: "store_snippets", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, - { no: 5, name: 'whitelisted_groups', kind: 'scalar', T: 9, repeated: true }, + { no: 5, name: "whitelisted_groups", kind: "scalar", T: 9, repeated: true }, { no: 6, - name: 'use_github_app', - kind: 'scalar', - T: 8, + name: "use_github_app", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 7, - name: 'auth_uid', - kind: 'scalar', - T: 9, + name: "auth_uid", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 9, - name: 'email', - kind: 'scalar', - T: 9, + name: "email", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 8, - name: 'service_key_id', - kind: 'scalar', - T: 9, + name: "service_key_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _RepositoryConfig().fromBinary(bytes, options); @@ -33096,7 +29224,7 @@ var RepositoryConfig_AutoIndexConfig = class _RepositoryConfig_AutoIndexConfig e /** * @generated from field: string branch_name = 1; */ - branchName = ''; + branchName = ""; /** * Interval with which to automatically index the latest * commit of the provided branch. @@ -33117,23 +29245,23 @@ var RepositoryConfig_AutoIndexConfig = class _RepositoryConfig_AutoIndexConfig e proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.index_pb.RepositoryConfig.AutoIndexConfig'; + static typeName = "exa.index_pb.RepositoryConfig.AutoIndexConfig"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'branch_name', - kind: 'scalar', - T: 9, + name: "branch_name", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 2, name: 'interval', kind: 'message', T: Duration }, + { no: 2, name: "interval", kind: "message", T: Duration }, { no: 3, - name: 'max_num_auto_indexes', - kind: 'scalar', - T: 5, + name: "max_num_auto_indexes", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ - }, + } ]); static fromBinary(bytes, options) { return new _RepositoryConfig_AutoIndexConfig().fromBinary(bytes, options); @@ -33142,10 +29270,7 @@ var RepositoryConfig_AutoIndexConfig = class _RepositoryConfig_AutoIndexConfig e return new _RepositoryConfig_AutoIndexConfig().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _RepositoryConfig_AutoIndexConfig().fromJsonString( - jsonString, - options, - ); + return new _RepositoryConfig_AutoIndexConfig().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_RepositoryConfig_AutoIndexConfig, a, b); @@ -33177,31 +29302,31 @@ var IndexConfig = class _IndexConfig extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.index_pb.IndexConfig'; + static typeName = "exa.index_pb.IndexConfig"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'prune_time', kind: 'message', T: Timestamp }, - { no: 2, name: 'prune_interval', kind: 'message', T: Duration }, + { no: 1, name: "prune_time", kind: "message", T: Timestamp }, + { no: 2, name: "prune_interval", kind: "message", T: Duration }, { no: 3, - name: 'enable_prune', - kind: 'scalar', - T: 8, + name: "enable_prune", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 4, - name: 'enable_smallest_repo_first', - kind: 'scalar', - T: 8, + name: "enable_smallest_repo_first", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 5, - name: 'enable_round_robin', - kind: 'scalar', - T: 8, + name: "enable_round_robin", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ - }, + } ]); static fromBinary(bytes, options) { return new _IndexConfig().fromBinary(bytes, options); @@ -33230,22 +29355,22 @@ var VectorIndexStats = class _VectorIndexStats extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.index_pb.VectorIndexStats'; + static typeName = "exa.index_pb.VectorIndexStats"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'num_embeddings', - kind: 'scalar', - T: 3, + name: "num_embeddings", + kind: "scalar", + T: 3 /* ScalarType.INT64 */ }, { no: 2, - name: 'index_bytes_count', - kind: 'scalar', - T: 3, + name: "index_bytes_count", + kind: "scalar", + T: 3 /* ScalarType.INT64 */ - }, + } ]); static fromBinary(bytes, options) { return new _VectorIndexStats().fromBinary(bytes, options); @@ -33271,7 +29396,7 @@ var ProgressBar = class _ProgressBar extends Message { /** * @generated from field: string text = 2; */ - text = ''; + text = ""; /** * @generated from field: google.protobuf.Duration remaining_time = 3; */ @@ -33281,23 +29406,23 @@ var ProgressBar = class _ProgressBar extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.index_pb.ProgressBar'; + static typeName = "exa.index_pb.ProgressBar"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'progress', - kind: 'scalar', - T: 2, + name: "progress", + kind: "scalar", + T: 2 /* ScalarType.FLOAT */ }, { no: 2, - name: 'text', - kind: 'scalar', - T: 9, + name: "text", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 3, name: 'remaining_time', kind: 'message', T: Duration }, + { no: 3, name: "remaining_time", kind: "message", T: Duration } ]); static fromBinary(bytes, options) { return new _ProgressBar().fromBinary(bytes, options); @@ -33316,15 +29441,15 @@ var Index = class _Index extends Message { /** * @generated from field: string id = 1; */ - id = ''; + id = ""; /** * @generated from field: string repo_name = 2; */ - repoName = ''; + repoName = ""; /** * @generated from field: string workspace = 3; */ - workspace = ''; + workspace = ""; /** * @generated from field: exa.codeium_common_pb.GitRepoInfo repo_info = 4; */ @@ -33348,7 +29473,7 @@ var Index = class _Index extends Message { /** * @generated from field: string status_detail = 8; */ - statusDetail = ''; + statusDetail = ""; /** * Whether or not the index was auto-indexed. * @@ -33364,11 +29489,11 @@ var Index = class _Index extends Message { /** * @generated from field: string auth_uid = 15; */ - authUid = ''; + authUid = ""; /** * @generated from field: string email = 16; */ - email = ''; + email = ""; /** * @generated from field: exa.index_pb.Index.RepoStats repo_stats = 14; */ @@ -33391,83 +29516,72 @@ var Index = class _Index extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.index_pb.Index'; + static typeName = "exa.index_pb.Index"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'id', - kind: 'scalar', - T: 9, + name: "id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'repo_name', - kind: 'scalar', - T: 9, + name: "repo_name", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 3, - name: 'workspace', - kind: 'scalar', - T: 9, + name: "workspace", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 4, name: 'repo_info', kind: 'message', T: GitRepoInfo }, - { no: 5, name: 'created_at', kind: 'message', T: Timestamp }, - { no: 6, name: 'updated_at', kind: 'message', T: Timestamp }, - { no: 13, name: 'scheduled_at', kind: 'message', T: Timestamp }, - { - no: 7, - name: 'status', - kind: 'enum', - T: proto3.getEnumType(IndexingStatus), - }, + { no: 4, name: "repo_info", kind: "message", T: GitRepoInfo }, + { no: 5, name: "created_at", kind: "message", T: Timestamp }, + { no: 6, name: "updated_at", kind: "message", T: Timestamp }, + { no: 13, name: "scheduled_at", kind: "message", T: Timestamp }, + { no: 7, name: "status", kind: "enum", T: proto3.getEnumType(IndexingStatus) }, { no: 8, - name: 'status_detail', - kind: 'scalar', - T: 9, + name: "status_detail", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 9, - name: 'auto_indexed', - kind: 'scalar', - T: 8, + name: "auto_indexed", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 12, - name: 'has_snippets', - kind: 'scalar', - T: 8, + name: "has_snippets", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 15, - name: 'auth_uid', - kind: 'scalar', - T: 9, + name: "auth_uid", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 16, - name: 'email', - kind: 'scalar', - T: 9, + name: "email", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 14, name: 'repo_stats', kind: 'message', T: Index_RepoStats }, - { - no: 10, - name: 'indexing_progress', - kind: 'map', - K: 9, - V: { kind: 'message', T: ProgressBar }, - }, - { no: 11, name: 'index_stats', kind: 'message', T: VectorIndexStats }, + { no: 14, name: "repo_stats", kind: "message", T: Index_RepoStats }, + { no: 10, name: "indexing_progress", kind: "map", K: 9, V: { kind: "message", T: ProgressBar } }, + { no: 11, name: "index_stats", kind: "message", T: VectorIndexStats } ]); static fromBinary(bytes, options) { return new _Index().fromBinary(bytes, options); @@ -33504,36 +29618,36 @@ var Index_RepoStats = class _Index_RepoStats extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.index_pb.Index.RepoStats'; + static typeName = "exa.index_pb.Index.RepoStats"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'size', - kind: 'scalar', - T: 3, + name: "size", + kind: "scalar", + T: 3 /* ScalarType.INT64 */ }, { no: 2, - name: 'file_count', - kind: 'scalar', - T: 3, + name: "file_count", + kind: "scalar", + T: 3 /* ScalarType.INT64 */ }, { no: 3, - name: 'size_no_ignore', - kind: 'scalar', - T: 3, + name: "size_no_ignore", + kind: "scalar", + T: 3 /* ScalarType.INT64 */ }, { no: 4, - name: 'file_count_no_ignore', - kind: 'scalar', - T: 3, + name: "file_count_no_ignore", + kind: "scalar", + T: 3 /* ScalarType.INT64 */ - }, + } ]); static fromBinary(bytes, options) { return new _Index_RepoStats().fromBinary(bytes, options); @@ -33554,7 +29668,7 @@ var Repository2 = class _Repository extends Message { * * @generated from field: string repo_name = 1; */ - repoName = ''; + repoName = ""; /** * Git URL will be redacted if message is used for response. * @@ -33585,20 +29699,20 @@ var Repository2 = class _Repository extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.index_pb.Repository'; + static typeName = "exa.index_pb.Repository"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'repo_name', - kind: 'scalar', - T: 9, + name: "repo_name", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 2, name: 'config', kind: 'message', T: RepositoryConfig }, - { no: 4, name: 'created_at', kind: 'message', T: Timestamp }, - { no: 5, name: 'updated_at', kind: 'message', T: Timestamp }, - { no: 6, name: 'last_used_at', kind: 'message', T: Timestamp }, - { no: 3, name: 'latest_index', kind: 'message', T: Index }, + { no: 2, name: "config", kind: "message", T: RepositoryConfig }, + { no: 4, name: "created_at", kind: "message", T: Timestamp }, + { no: 5, name: "updated_at", kind: "message", T: Timestamp }, + { no: 6, name: "last_used_at", kind: "message", T: Timestamp }, + { no: 3, name: "latest_index", kind: "message", T: Index } ]); static fromBinary(bytes, options) { return new _Repository().fromBinary(bytes, options); @@ -33623,23 +29737,23 @@ var RequestIndexVersion = class _RequestIndexVersion extends Message { * * @generated from field: string version_alias = 3; */ - versionAlias = ''; + versionAlias = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.index_pb.RequestIndexVersion'; + static typeName = "exa.index_pb.RequestIndexVersion"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'commit', kind: 'scalar', T: 9, oneof: 'version' }, - { no: 2, name: 'branch', kind: 'scalar', T: 9, oneof: 'version' }, + { no: 1, name: "commit", kind: "scalar", T: 9, oneof: "version" }, + { no: 2, name: "branch", kind: "scalar", T: 9, oneof: "version" }, { no: 3, - name: 'version_alias', - kind: 'scalar', - T: 9, + name: "version_alias", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _RequestIndexVersion().fromBinary(bytes, options); @@ -33660,20 +29774,20 @@ var ManagementMetadata = class _ManagementMetadata extends Message { * * @generated from field: string auth_token = 1; */ - authToken = ''; + authToken = ""; /** * This is not set by clients but is rather used internally for tracking * users' requests. * * @generated from field: string auth_uid = 2; */ - authUid = ''; + authUid = ""; /** * This is long lasting service_key generated by user. * * @generated from field: string service_key = 3; */ - serviceKey = ''; + serviceKey = ""; /** * Only used by Codeium internal team to forcefully target the public indexing * service rather than the team-specific indexing service instance. @@ -33688,60 +29802,60 @@ var ManagementMetadata = class _ManagementMetadata extends Message { * * @generated from field: string force_team_id = 5; */ - forceTeamId = ''; + forceTeamId = ""; /** * @generated from field: string service_key_id = 6; */ - serviceKeyId = ''; + serviceKeyId = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.index_pb.ManagementMetadata'; + static typeName = "exa.index_pb.ManagementMetadata"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'auth_token', - kind: 'scalar', - T: 9, + name: "auth_token", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'auth_uid', - kind: 'scalar', - T: 9, + name: "auth_uid", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 3, - name: 'service_key', - kind: 'scalar', - T: 9, + name: "service_key", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 4, - name: 'force_target_public_index', - kind: 'scalar', - T: 8, + name: "force_target_public_index", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 5, - name: 'force_team_id', - kind: 'scalar', - T: 9, + name: "force_team_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 6, - name: 'service_key_id', - kind: 'scalar', - T: 9, + name: "service_key_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _ManagementMetadata().fromBinary(bytes, options); @@ -33779,11 +29893,11 @@ var AddRepositoryRequest = class _AddRepositoryRequest extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.index_pb.AddRepositoryRequest'; + static typeName = "exa.index_pb.AddRepositoryRequest"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'metadata', kind: 'message', T: ManagementMetadata }, - { no: 2, name: 'config', kind: 'message', T: RepositoryConfig }, - { no: 3, name: 'initial_index', kind: 'message', T: RequestIndexVersion }, + { no: 1, name: "metadata", kind: "message", T: ManagementMetadata }, + { no: 2, name: "config", kind: "message", T: RepositoryConfig }, + { no: 3, name: "initial_index", kind: "message", T: RequestIndexVersion } ]); static fromBinary(bytes, options) { return new _AddRepositoryRequest().fromBinary(bytes, options); @@ -33802,32 +29916,32 @@ var AddRepositoryResponse = class _AddRepositoryResponse extends Message { /** * @generated from field: string repo_name = 1; */ - repoName = ''; + repoName = ""; /** * @generated from field: string index_id = 2; */ - indexId = ''; + indexId = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.index_pb.AddRepositoryResponse'; + static typeName = "exa.index_pb.AddRepositoryResponse"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'repo_name', - kind: 'scalar', - T: 9, + name: "repo_name", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'index_id', - kind: 'scalar', - T: 9, + name: "index_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _AddRepositoryResponse().fromBinary(bytes, options); @@ -33856,10 +29970,10 @@ var EnableIndexingRequest = class _EnableIndexingRequest extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.index_pb.EnableIndexingRequest'; + static typeName = "exa.index_pb.EnableIndexingRequest"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'metadata', kind: 'message', T: ManagementMetadata }, - { no: 2, name: 'config', kind: 'message', T: IndexBuildConfig }, + { no: 1, name: "metadata", kind: "message", T: ManagementMetadata }, + { no: 2, name: "config", kind: "message", T: IndexBuildConfig } ]); static fromBinary(bytes, options) { return new _EnableIndexingRequest().fromBinary(bytes, options); @@ -33880,7 +29994,7 @@ var EnableIndexingResponse = class _EnableIndexingResponse extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.index_pb.EnableIndexingResponse'; + static typeName = "exa.index_pb.EnableIndexingResponse"; static fields = proto3.util.newFieldList(() => []); static fromBinary(bytes, options) { return new _EnableIndexingResponse().fromBinary(bytes, options); @@ -33905,9 +30019,9 @@ var DisableIndexingRequest = class _DisableIndexingRequest extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.index_pb.DisableIndexingRequest'; + static typeName = "exa.index_pb.DisableIndexingRequest"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'metadata', kind: 'message', T: ManagementMetadata }, + { no: 1, name: "metadata", kind: "message", T: ManagementMetadata } ]); static fromBinary(bytes, options) { return new _DisableIndexingRequest().fromBinary(bytes, options); @@ -33928,7 +30042,7 @@ var DisableIndexingResponse = class _DisableIndexingResponse extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.index_pb.DisableIndexingResponse'; + static typeName = "exa.index_pb.DisableIndexingResponse"; static fields = proto3.util.newFieldList(() => []); static fromBinary(bytes, options) { return new _DisableIndexingResponse().fromBinary(bytes, options); @@ -33951,7 +30065,7 @@ var EditRepositoryRequest = class _EditRepositoryRequest extends Message { /** * @generated from field: string repo_name = 2; */ - repoName = ''; + repoName = ""; /** * Git url from config must match the repo_name. * @@ -33963,17 +30077,17 @@ var EditRepositoryRequest = class _EditRepositoryRequest extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.index_pb.EditRepositoryRequest'; + static typeName = "exa.index_pb.EditRepositoryRequest"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'metadata', kind: 'message', T: ManagementMetadata }, + { no: 1, name: "metadata", kind: "message", T: ManagementMetadata }, { no: 2, - name: 'repo_name', - kind: 'scalar', - T: 9, + name: "repo_name", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 3, name: 'config', kind: 'message', T: RepositoryConfig }, + { no: 3, name: "config", kind: "message", T: RepositoryConfig } ]); static fromBinary(bytes, options) { return new _EditRepositoryRequest().fromBinary(bytes, options); @@ -33994,7 +30108,7 @@ var EditRepositoryResponse = class _EditRepositoryResponse extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.index_pb.EditRepositoryResponse'; + static typeName = "exa.index_pb.EditRepositoryResponse"; static fields = proto3.util.newFieldList(() => []); static fromBinary(bytes, options) { return new _EditRepositoryResponse().fromBinary(bytes, options); @@ -34017,7 +30131,7 @@ var DeleteRepositoryRequest = class _DeleteRepositoryRequest extends Message { /** * @generated from field: string repo_name = 2; */ - repoName = ''; + repoName = ""; /** * @generated from field: repeated string repo_names = 3; */ @@ -34027,17 +30141,17 @@ var DeleteRepositoryRequest = class _DeleteRepositoryRequest extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.index_pb.DeleteRepositoryRequest'; + static typeName = "exa.index_pb.DeleteRepositoryRequest"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'metadata', kind: 'message', T: ManagementMetadata }, + { no: 1, name: "metadata", kind: "message", T: ManagementMetadata }, { no: 2, - name: 'repo_name', - kind: 'scalar', - T: 9, + name: "repo_name", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 3, name: 'repo_names', kind: 'scalar', T: 9, repeated: true }, + { no: 3, name: "repo_names", kind: "scalar", T: 9, repeated: true } ]); static fromBinary(bytes, options) { return new _DeleteRepositoryRequest().fromBinary(bytes, options); @@ -34058,7 +30172,7 @@ var DeleteRepositoryResponse = class _DeleteRepositoryResponse extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.index_pb.DeleteRepositoryResponse'; + static typeName = "exa.index_pb.DeleteRepositoryResponse"; static fields = proto3.util.newFieldList(() => []); static fromBinary(bytes, options) { return new _DeleteRepositoryResponse().fromBinary(bytes, options); @@ -34077,32 +30191,32 @@ var GetRepositoriesFilter = class _GetRepositoriesFilter extends Message { /** * @generated from field: string repo_name = 1; */ - repoName = ''; + repoName = ""; /** * @generated from field: string group_id = 2; */ - groupId = ''; + groupId = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.index_pb.GetRepositoriesFilter'; + static typeName = "exa.index_pb.GetRepositoriesFilter"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'repo_name', - kind: 'scalar', - T: 9, + name: "repo_name", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'group_id', - kind: 'scalar', - T: 9, + name: "group_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _GetRepositoriesFilter().fromBinary(bytes, options); @@ -34133,10 +30247,10 @@ var GetRepositoriesRequest = class _GetRepositoriesRequest extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.index_pb.GetRepositoriesRequest'; + static typeName = "exa.index_pb.GetRepositoriesRequest"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'metadata', kind: 'message', T: ManagementMetadata }, - { no: 2, name: 'filter', kind: 'message', T: GetRepositoriesFilter }, + { no: 1, name: "metadata", kind: "message", T: ManagementMetadata }, + { no: 2, name: "filter", kind: "message", T: GetRepositoriesFilter } ]); static fromBinary(bytes, options) { return new _GetRepositoriesRequest().fromBinary(bytes, options); @@ -34161,15 +30275,9 @@ var GetRepositoriesResponse = class _GetRepositoriesResponse extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.index_pb.GetRepositoriesResponse'; + static typeName = "exa.index_pb.GetRepositoriesResponse"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'repositories', - kind: 'message', - T: Repository2, - repeated: true, - }, + { no: 1, name: "repositories", kind: "message", T: Repository2, repeated: true } ]); static fromBinary(bytes, options) { return new _GetRepositoriesResponse().fromBinary(bytes, options); @@ -34192,22 +30300,22 @@ var GetIndexesRequest = class _GetIndexesRequest extends Message { /** * @generated from field: string repo_name = 2; */ - repoName = ''; + repoName = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.index_pb.GetIndexesRequest'; + static typeName = "exa.index_pb.GetIndexesRequest"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'metadata', kind: 'message', T: ManagementMetadata }, + { no: 1, name: "metadata", kind: "message", T: ManagementMetadata }, { no: 2, - name: 'repo_name', - kind: 'scalar', - T: 9, + name: "repo_name", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _GetIndexesRequest().fromBinary(bytes, options); @@ -34232,9 +30340,9 @@ var GetIndexesResponse = class _GetIndexesResponse extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.index_pb.GetIndexesResponse'; + static typeName = "exa.index_pb.GetIndexesResponse"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'indexes', kind: 'message', T: Index, repeated: true }, + { no: 1, name: "indexes", kind: "message", T: Index, repeated: true } ]); static fromBinary(bytes, options) { return new _GetIndexesResponse().fromBinary(bytes, options); @@ -34257,22 +30365,22 @@ var GetIndexRequest = class _GetIndexRequest extends Message { /** * @generated from field: string index_id = 2; */ - indexId = ''; + indexId = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.index_pb.GetIndexRequest'; + static typeName = "exa.index_pb.GetIndexRequest"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'metadata', kind: 'message', T: ManagementMetadata }, + { no: 1, name: "metadata", kind: "message", T: ManagementMetadata }, { no: 2, - name: 'index_id', - kind: 'scalar', - T: 9, + name: "index_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _GetIndexRequest().fromBinary(bytes, options); @@ -34301,10 +30409,10 @@ var GetIndexResponse = class _GetIndexResponse extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.index_pb.GetIndexResponse'; + static typeName = "exa.index_pb.GetIndexResponse"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'index', kind: 'message', T: Index }, - { no: 2, name: 'repository', kind: 'message', T: Repository2 }, + { no: 1, name: "index", kind: "message", T: Index }, + { no: 2, name: "repository", kind: "message", T: Repository2 } ]); static fromBinary(bytes, options) { return new _GetIndexResponse().fromBinary(bytes, options); @@ -34323,7 +30431,7 @@ var RemoteIndexStats = class _RemoteIndexStats extends Message { /** * @generated from field: string index_id = 1; */ - indexId = ''; + indexId = ""; /** * @generated from field: int64 cci_count = 2; */ @@ -34341,36 +30449,36 @@ var RemoteIndexStats = class _RemoteIndexStats extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.index_pb.RemoteIndexStats'; + static typeName = "exa.index_pb.RemoteIndexStats"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'index_id', - kind: 'scalar', - T: 9, + name: "index_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'cci_count', - kind: 'scalar', - T: 3, + name: "cci_count", + kind: "scalar", + T: 3 /* ScalarType.INT64 */ }, { no: 3, - name: 'snippet_count', - kind: 'scalar', - T: 3, + name: "snippet_count", + kind: "scalar", + T: 3 /* ScalarType.INT64 */ }, { no: 4, - name: 'embedding_count', - kind: 'scalar', - T: 3, + name: "embedding_count", + kind: "scalar", + T: 3 /* ScalarType.INT64 */ - }, + } ]); static fromBinary(bytes, options) { return new _RemoteIndexStats().fromBinary(bytes, options); @@ -34399,10 +30507,10 @@ var GetRemoteIndexStatsRequest = class _GetRemoteIndexStatsRequest extends Messa proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.index_pb.GetRemoteIndexStatsRequest'; + static typeName = "exa.index_pb.GetRemoteIndexStatsRequest"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'metadata', kind: 'message', T: ManagementMetadata }, - { no: 2, name: 'index_ids', kind: 'scalar', T: 9, repeated: true }, + { no: 1, name: "metadata", kind: "message", T: ManagementMetadata }, + { no: 2, name: "index_ids", kind: "scalar", T: 9, repeated: true } ]); static fromBinary(bytes, options) { return new _GetRemoteIndexStatsRequest().fromBinary(bytes, options); @@ -34411,10 +30519,7 @@ var GetRemoteIndexStatsRequest = class _GetRemoteIndexStatsRequest extends Messa return new _GetRemoteIndexStatsRequest().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _GetRemoteIndexStatsRequest().fromJsonString( - jsonString, - options, - ); + return new _GetRemoteIndexStatsRequest().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_GetRemoteIndexStatsRequest, a, b); @@ -34430,15 +30535,9 @@ var GetRemoteIndexStatsResponse = class _GetRemoteIndexStatsResponse extends Mes proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.index_pb.GetRemoteIndexStatsResponse'; + static typeName = "exa.index_pb.GetRemoteIndexStatsResponse"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'index_stats', - kind: 'message', - T: RemoteIndexStats, - repeated: true, - }, + { no: 1, name: "index_stats", kind: "message", T: RemoteIndexStats, repeated: true } ]); static fromBinary(bytes, options) { return new _GetRemoteIndexStatsResponse().fromBinary(bytes, options); @@ -34447,10 +30546,7 @@ var GetRemoteIndexStatsResponse = class _GetRemoteIndexStatsResponse extends Mes return new _GetRemoteIndexStatsResponse().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _GetRemoteIndexStatsResponse().fromJsonString( - jsonString, - options, - ); + return new _GetRemoteIndexStatsResponse().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_GetRemoteIndexStatsResponse, a, b); @@ -34464,7 +30560,7 @@ var AddIndexRequest = class _AddIndexRequest extends Message { /** * @generated from field: string repo_name = 2; */ - repoName = ''; + repoName = ""; /** * @generated from field: exa.index_pb.RequestIndexVersion version = 3; */ @@ -34474,17 +30570,17 @@ var AddIndexRequest = class _AddIndexRequest extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.index_pb.AddIndexRequest'; + static typeName = "exa.index_pb.AddIndexRequest"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'metadata', kind: 'message', T: ManagementMetadata }, + { no: 1, name: "metadata", kind: "message", T: ManagementMetadata }, { no: 2, - name: 'repo_name', - kind: 'scalar', - T: 9, + name: "repo_name", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 3, name: 'version', kind: 'message', T: RequestIndexVersion }, + { no: 3, name: "version", kind: "message", T: RequestIndexVersion } ]); static fromBinary(bytes, options) { return new _AddIndexRequest().fromBinary(bytes, options); @@ -34503,21 +30599,21 @@ var AddIndexResponse = class _AddIndexResponse extends Message { /** * @generated from field: string index_id = 1; */ - indexId = ''; + indexId = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.index_pb.AddIndexResponse'; + static typeName = "exa.index_pb.AddIndexResponse"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'index_id', - kind: 'scalar', - T: 9, + name: "index_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _AddIndexResponse().fromBinary(bytes, options); @@ -34540,7 +30636,7 @@ var CancelIndexingRequest = class _CancelIndexingRequest extends Message { /** * @generated from field: string index_id = 2; */ - indexId = ''; + indexId = ""; /** * @generated from field: repeated string index_ids = 3; */ @@ -34550,17 +30646,17 @@ var CancelIndexingRequest = class _CancelIndexingRequest extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.index_pb.CancelIndexingRequest'; + static typeName = "exa.index_pb.CancelIndexingRequest"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'metadata', kind: 'message', T: ManagementMetadata }, + { no: 1, name: "metadata", kind: "message", T: ManagementMetadata }, { no: 2, - name: 'index_id', - kind: 'scalar', - T: 9, + name: "index_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 3, name: 'index_ids', kind: 'scalar', T: 9, repeated: true }, + { no: 3, name: "index_ids", kind: "scalar", T: 9, repeated: true } ]); static fromBinary(bytes, options) { return new _CancelIndexingRequest().fromBinary(bytes, options); @@ -34581,7 +30677,7 @@ var CancelIndexingResponse = class _CancelIndexingResponse extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.index_pb.CancelIndexingResponse'; + static typeName = "exa.index_pb.CancelIndexingResponse"; static fields = proto3.util.newFieldList(() => []); static fromBinary(bytes, options) { return new _CancelIndexingResponse().fromBinary(bytes, options); @@ -34604,7 +30700,7 @@ var RetryIndexingRequest = class _RetryIndexingRequest extends Message { /** * @generated from field: string index_id = 2; */ - indexId = ''; + indexId = ""; /** * @generated from field: repeated string index_ids = 3; */ @@ -34614,17 +30710,17 @@ var RetryIndexingRequest = class _RetryIndexingRequest extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.index_pb.RetryIndexingRequest'; + static typeName = "exa.index_pb.RetryIndexingRequest"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'metadata', kind: 'message', T: ManagementMetadata }, + { no: 1, name: "metadata", kind: "message", T: ManagementMetadata }, { no: 2, - name: 'index_id', - kind: 'scalar', - T: 9, + name: "index_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 3, name: 'index_ids', kind: 'scalar', T: 9, repeated: true }, + { no: 3, name: "index_ids", kind: "scalar", T: 9, repeated: true } ]); static fromBinary(bytes, options) { return new _RetryIndexingRequest().fromBinary(bytes, options); @@ -34645,7 +30741,7 @@ var RetryIndexingResponse = class _RetryIndexingResponse extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.index_pb.RetryIndexingResponse'; + static typeName = "exa.index_pb.RetryIndexingResponse"; static fields = proto3.util.newFieldList(() => []); static fromBinary(bytes, options) { return new _RetryIndexingResponse().fromBinary(bytes, options); @@ -34668,7 +30764,7 @@ var DeleteIndexRequest = class _DeleteIndexRequest extends Message { /** * @generated from field: string index_id = 2; */ - indexId = ''; + indexId = ""; /** * @generated from field: repeated string index_ids = 3; */ @@ -34678,17 +30774,17 @@ var DeleteIndexRequest = class _DeleteIndexRequest extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.index_pb.DeleteIndexRequest'; + static typeName = "exa.index_pb.DeleteIndexRequest"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'metadata', kind: 'message', T: ManagementMetadata }, + { no: 1, name: "metadata", kind: "message", T: ManagementMetadata }, { no: 2, - name: 'index_id', - kind: 'scalar', - T: 9, + name: "index_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 3, name: 'index_ids', kind: 'scalar', T: 9, repeated: true }, + { no: 3, name: "index_ids", kind: "scalar", T: 9, repeated: true } ]); static fromBinary(bytes, options) { return new _DeleteIndexRequest().fromBinary(bytes, options); @@ -34709,7 +30805,7 @@ var DeleteIndexResponse = class _DeleteIndexResponse extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.index_pb.DeleteIndexResponse'; + static typeName = "exa.index_pb.DeleteIndexResponse"; static fields = proto3.util.newFieldList(() => []); static fromBinary(bytes, options) { return new _DeleteIndexResponse().fromBinary(bytes, options); @@ -34734,9 +30830,9 @@ var PruneDatabaseRequest = class _PruneDatabaseRequest extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.index_pb.PruneDatabaseRequest'; + static typeName = "exa.index_pb.PruneDatabaseRequest"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'metadata', kind: 'message', T: ManagementMetadata }, + { no: 1, name: "metadata", kind: "message", T: ManagementMetadata } ]); static fromBinary(bytes, options) { return new _PruneDatabaseRequest().fromBinary(bytes, options); @@ -34757,7 +30853,7 @@ var PruneDatabaseResponse = class _PruneDatabaseResponse extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.index_pb.PruneDatabaseResponse'; + static typeName = "exa.index_pb.PruneDatabaseResponse"; static fields = proto3.util.newFieldList(() => []); static fromBinary(bytes, options) { return new _PruneDatabaseResponse().fromBinary(bytes, options); @@ -34782,9 +30878,9 @@ var GetDatabaseStatsRequest = class _GetDatabaseStatsRequest extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.index_pb.GetDatabaseStatsRequest'; + static typeName = "exa.index_pb.GetDatabaseStatsRequest"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'metadata', kind: 'message', T: ManagementMetadata }, + { no: 1, name: "metadata", kind: "message", T: ManagementMetadata } ]); static fromBinary(bytes, options) { return new _GetDatabaseStatsRequest().fromBinary(bytes, options); @@ -34825,7 +30921,7 @@ var GetDatabaseStatsResponse = class _GetDatabaseStatsResponse extends Message { /** * @generated from field: string last_prune_error = 6; */ - lastPruneError = ''; + lastPruneError = ""; /** * Total bytes used by all tables in the database, not just the ones in * GetTableNames @@ -34838,57 +30934,57 @@ var GetDatabaseStatsResponse = class _GetDatabaseStatsResponse extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.index_pb.GetDatabaseStatsResponse'; + static typeName = "exa.index_pb.GetDatabaseStatsResponse"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'database_total_bytes_count', - kind: 'scalar', - T: 3, + name: "database_total_bytes_count", + kind: "scalar", + T: 3 /* ScalarType.INT64 */ }, { no: 2, - name: 'table_total_bytes_count', - kind: 'scalar', - T: 3, + name: "table_total_bytes_count", + kind: "scalar", + T: 3 /* ScalarType.INT64 */ }, { no: 3, - name: 'index_total_bytes_count', - kind: 'scalar', - T: 3, + name: "index_total_bytes_count", + kind: "scalar", + T: 3 /* ScalarType.INT64 */ }, { no: 4, - name: 'estimate_prunable_bytes', - kind: 'scalar', - T: 3, + name: "estimate_prunable_bytes", + kind: "scalar", + T: 3 /* ScalarType.INT64 */ }, { no: 5, - name: 'is_pruning', - kind: 'scalar', - T: 8, + name: "is_pruning", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 6, - name: 'last_prune_error', - kind: 'scalar', - T: 9, + name: "last_prune_error", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 7, - name: 'all_tables_bytes_count', - kind: 'scalar', - T: 3, + name: "all_tables_bytes_count", + kind: "scalar", + T: 3 /* ScalarType.INT64 */ - }, + } ]); static fromBinary(bytes, options) { return new _GetDatabaseStatsResponse().fromBinary(bytes, options); @@ -34917,10 +31013,10 @@ var SetIndexConfigRequest = class _SetIndexConfigRequest extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.index_pb.SetIndexConfigRequest'; + static typeName = "exa.index_pb.SetIndexConfigRequest"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'metadata', kind: 'message', T: ManagementMetadata }, - { no: 2, name: 'index_config', kind: 'message', T: IndexConfig }, + { no: 1, name: "metadata", kind: "message", T: ManagementMetadata }, + { no: 2, name: "index_config", kind: "message", T: IndexConfig } ]); static fromBinary(bytes, options) { return new _SetIndexConfigRequest().fromBinary(bytes, options); @@ -34941,7 +31037,7 @@ var SetIndexConfigResponse = class _SetIndexConfigResponse extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.index_pb.SetIndexConfigResponse'; + static typeName = "exa.index_pb.SetIndexConfigResponse"; static fields = proto3.util.newFieldList(() => []); static fromBinary(bytes, options) { return new _SetIndexConfigResponse().fromBinary(bytes, options); @@ -34966,9 +31062,9 @@ var GetIndexConfigRequest = class _GetIndexConfigRequest extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.index_pb.GetIndexConfigRequest'; + static typeName = "exa.index_pb.GetIndexConfigRequest"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'metadata', kind: 'message', T: ManagementMetadata }, + { no: 1, name: "metadata", kind: "message", T: ManagementMetadata } ]); static fromBinary(bytes, options) { return new _GetIndexConfigRequest().fromBinary(bytes, options); @@ -34993,9 +31089,9 @@ var GetIndexConfigResponse = class _GetIndexConfigResponse extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.index_pb.GetIndexConfigResponse'; + static typeName = "exa.index_pb.GetIndexConfigResponse"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'index_config', kind: 'message', T: IndexConfig }, + { no: 1, name: "index_config", kind: "message", T: IndexConfig } ]); static fromBinary(bytes, options) { return new _GetIndexConfigResponse().fromBinary(bytes, options); @@ -35020,9 +31116,9 @@ var GetNumberConnectionsRequest = class _GetNumberConnectionsRequest extends Mes proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.index_pb.GetNumberConnectionsRequest'; + static typeName = "exa.index_pb.GetNumberConnectionsRequest"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'metadata', kind: 'message', T: ManagementMetadata }, + { no: 1, name: "metadata", kind: "message", T: ManagementMetadata } ]); static fromBinary(bytes, options) { return new _GetNumberConnectionsRequest().fromBinary(bytes, options); @@ -35031,10 +31127,7 @@ var GetNumberConnectionsRequest = class _GetNumberConnectionsRequest extends Mes return new _GetNumberConnectionsRequest().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _GetNumberConnectionsRequest().fromJsonString( - jsonString, - options, - ); + return new _GetNumberConnectionsRequest().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_GetNumberConnectionsRequest, a, b); @@ -35050,19 +31143,13 @@ var GetNumberConnectionsResponse = class _GetNumberConnectionsResponse extends M proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.index_pb.GetNumberConnectionsResponse'; + static typeName = "exa.index_pb.GetNumberConnectionsResponse"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'connections_map', - kind: 'map', - K: 9, - V: { - kind: 'scalar', - T: 13, - /* ScalarType.UINT32 */ - }, - }, + { no: 1, name: "connections_map", kind: "map", K: 9, V: { + kind: "scalar", + T: 13 + /* ScalarType.UINT32 */ + } } ]); static fromBinary(bytes, options) { return new _GetNumberConnectionsResponse().fromBinary(bytes, options); @@ -35071,10 +31158,7 @@ var GetNumberConnectionsResponse = class _GetNumberConnectionsResponse extends M return new _GetNumberConnectionsResponse().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _GetNumberConnectionsResponse().fromJsonString( - jsonString, - options, - ); + return new _GetNumberConnectionsResponse().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_GetNumberConnectionsResponse, a, b); @@ -35090,9 +31174,9 @@ var GetConnectionsDebugInfoRequest = class _GetConnectionsDebugInfoRequest exten proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.index_pb.GetConnectionsDebugInfoRequest'; + static typeName = "exa.index_pb.GetConnectionsDebugInfoRequest"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'metadata', kind: 'message', T: ManagementMetadata }, + { no: 1, name: "metadata", kind: "message", T: ManagementMetadata } ]); static fromBinary(bytes, options) { return new _GetConnectionsDebugInfoRequest().fromBinary(bytes, options); @@ -35101,10 +31185,7 @@ var GetConnectionsDebugInfoRequest = class _GetConnectionsDebugInfoRequest exten return new _GetConnectionsDebugInfoRequest().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _GetConnectionsDebugInfoRequest().fromJsonString( - jsonString, - options, - ); + return new _GetConnectionsDebugInfoRequest().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_GetConnectionsDebugInfoRequest, a, b); @@ -35114,21 +31195,21 @@ var GetConnectionsDebugInfoResponse = class _GetConnectionsDebugInfoResponse ext /** * @generated from field: string debug_info = 1; */ - debugInfo = ''; + debugInfo = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.index_pb.GetConnectionsDebugInfoResponse'; + static typeName = "exa.index_pb.GetConnectionsDebugInfoResponse"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'debug_info', - kind: 'scalar', - T: 9, + name: "debug_info", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _GetConnectionsDebugInfoResponse().fromBinary(bytes, options); @@ -35137,10 +31218,7 @@ var GetConnectionsDebugInfoResponse = class _GetConnectionsDebugInfoResponse ext return new _GetConnectionsDebugInfoResponse().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _GetConnectionsDebugInfoResponse().fromJsonString( - jsonString, - options, - ); + return new _GetConnectionsDebugInfoResponse().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_GetConnectionsDebugInfoResponse, a, b); @@ -35164,17 +31242,17 @@ var GetIndexedRepositoriesRequest = class _GetIndexedRepositoriesRequest extends proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.index_pb.GetIndexedRepositoriesRequest'; + static typeName = "exa.index_pb.GetIndexedRepositoriesRequest"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'metadata', kind: 'message', T: Metadata }, + { no: 1, name: "metadata", kind: "message", T: Metadata }, { no: 2, - name: 'include_incomplete', - kind: 'scalar', - T: 8, + name: "include_incomplete", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, - { no: 3, name: 'group_ids_filter', kind: 'scalar', T: 9, repeated: true }, + { no: 3, name: "group_ids_filter", kind: "scalar", T: 9, repeated: true } ]); static fromBinary(bytes, options) { return new _GetIndexedRepositoriesRequest().fromBinary(bytes, options); @@ -35183,10 +31261,7 @@ var GetIndexedRepositoriesRequest = class _GetIndexedRepositoriesRequest extends return new _GetIndexedRepositoriesRequest().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _GetIndexedRepositoriesRequest().fromJsonString( - jsonString, - options, - ); + return new _GetIndexedRepositoriesRequest().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_GetIndexedRepositoriesRequest, a, b); @@ -35211,16 +31286,10 @@ var GetIndexedRepositoriesResponse = class _GetIndexedRepositoriesResponse exten proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.index_pb.GetIndexedRepositoriesResponse'; + static typeName = "exa.index_pb.GetIndexedRepositoriesResponse"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'repositories', - kind: 'message', - T: GitRepoInfo, - repeated: true, - }, - { no: 2, name: 'indexes', kind: 'message', T: Index, repeated: true }, + { no: 1, name: "repositories", kind: "message", T: GitRepoInfo, repeated: true }, + { no: 2, name: "indexes", kind: "message", T: Index, repeated: true } ]); static fromBinary(bytes, options) { return new _GetIndexedRepositoriesResponse().fromBinary(bytes, options); @@ -35229,10 +31298,7 @@ var GetIndexedRepositoriesResponse = class _GetIndexedRepositoriesResponse exten return new _GetIndexedRepositoriesResponse().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _GetIndexedRepositoriesResponse().fromJsonString( - jsonString, - options, - ); + return new _GetIndexedRepositoriesResponse().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_GetIndexedRepositoriesResponse, a, b); @@ -35267,11 +31333,11 @@ var RepositoryFilter = class _RepositoryFilter extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.index_pb.RepositoryFilter'; + static typeName = "exa.index_pb.RepositoryFilter"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'repository', kind: 'message', T: GitRepoInfo }, - { no: 2, name: 'excluded_files', kind: 'scalar', T: 9, repeated: true }, - { no: 3, name: 'filter_paths', kind: 'scalar', T: 9, repeated: true }, + { no: 1, name: "repository", kind: "message", T: GitRepoInfo }, + { no: 2, name: "excluded_files", kind: "scalar", T: 9, repeated: true }, + { no: 3, name: "filter_paths", kind: "scalar", T: 9, repeated: true } ]); static fromBinary(bytes, options) { return new _RepositoryFilter().fromBinary(bytes, options); @@ -35298,7 +31364,7 @@ var GetMatchingFilePathsRequest = class _GetMatchingFilePathsRequest extends Mes /** * @generated from field: string query = 3; */ - query = ''; + query = ""; /** * @generated from field: uint32 max_items = 4; */ @@ -35312,25 +31378,25 @@ var GetMatchingFilePathsRequest = class _GetMatchingFilePathsRequest extends Mes proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.index_pb.GetMatchingFilePathsRequest'; + static typeName = "exa.index_pb.GetMatchingFilePathsRequest"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'metadata', kind: 'message', T: Metadata }, - { no: 2, name: 'repository', kind: 'message', T: GitRepoInfo }, + { no: 1, name: "metadata", kind: "message", T: Metadata }, + { no: 2, name: "repository", kind: "message", T: GitRepoInfo }, { no: 3, - name: 'query', - kind: 'scalar', - T: 9, + name: "query", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 4, - name: 'max_items', - kind: 'scalar', - T: 13, + name: "max_items", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, - { no: 5, name: 'group_ids_filter', kind: 'scalar', T: 9, repeated: true }, + { no: 5, name: "group_ids_filter", kind: "scalar", T: 9, repeated: true } ]); static fromBinary(bytes, options) { return new _GetMatchingFilePathsRequest().fromBinary(bytes, options); @@ -35339,10 +31405,7 @@ var GetMatchingFilePathsRequest = class _GetMatchingFilePathsRequest extends Mes return new _GetMatchingFilePathsRequest().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _GetMatchingFilePathsRequest().fromJsonString( - jsonString, - options, - ); + return new _GetMatchingFilePathsRequest().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_GetMatchingFilePathsRequest, a, b); @@ -35358,15 +31421,9 @@ var GetMatchingFilePathsResponse = class _GetMatchingFilePathsResponse extends M proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.index_pb.GetMatchingFilePathsResponse'; + static typeName = "exa.index_pb.GetMatchingFilePathsResponse"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'relative_file_paths', - kind: 'scalar', - T: 9, - repeated: true, - }, + { no: 1, name: "relative_file_paths", kind: "scalar", T: 9, repeated: true } ]); static fromBinary(bytes, options) { return new _GetMatchingFilePathsResponse().fromBinary(bytes, options); @@ -35375,10 +31432,7 @@ var GetMatchingFilePathsResponse = class _GetMatchingFilePathsResponse extends M return new _GetMatchingFilePathsResponse().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _GetMatchingFilePathsResponse().fromJsonString( - jsonString, - options, - ); + return new _GetMatchingFilePathsResponse().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_GetMatchingFilePathsResponse, a, b); @@ -35412,40 +31466,28 @@ var GetNearestCCIsFromEmbeddingRequest = class _GetNearestCCIsFromEmbeddingReque proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.index_pb.GetNearestCCIsFromEmbeddingRequest'; + static typeName = "exa.index_pb.GetNearestCCIsFromEmbeddingRequest"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'metadata', kind: 'message', T: Metadata }, - { no: 2, name: 'embedding', kind: 'message', T: Embedding }, - { - no: 3, - name: 'repository_filters', - kind: 'message', - T: RepositoryFilter, - repeated: true, - }, + { no: 1, name: "metadata", kind: "message", T: Metadata }, + { no: 2, name: "embedding", kind: "message", T: Embedding }, + { no: 3, name: "repository_filters", kind: "message", T: RepositoryFilter, repeated: true }, { no: 4, - name: 'max_results', - kind: 'scalar', - T: 3, + name: "max_results", + kind: "scalar", + T: 3 /* ScalarType.INT64 */ }, - { no: 5, name: 'group_ids_filter', kind: 'scalar', T: 9, repeated: true }, + { no: 5, name: "group_ids_filter", kind: "scalar", T: 9, repeated: true } ]); static fromBinary(bytes, options) { return new _GetNearestCCIsFromEmbeddingRequest().fromBinary(bytes, options); } static fromJson(jsonValue, options) { - return new _GetNearestCCIsFromEmbeddingRequest().fromJson( - jsonValue, - options, - ); + return new _GetNearestCCIsFromEmbeddingRequest().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _GetNearestCCIsFromEmbeddingRequest().fromJsonString( - jsonString, - options, - ); + return new _GetNearestCCIsFromEmbeddingRequest().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_GetNearestCCIsFromEmbeddingRequest, a, b); @@ -35465,16 +31507,16 @@ var ScoredContextItem = class _ScoredContextItem extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.index_pb.ScoredContextItem'; + static typeName = "exa.index_pb.ScoredContextItem"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'code_context_item', kind: 'message', T: CodeContextItem }, + { no: 1, name: "code_context_item", kind: "message", T: CodeContextItem }, { no: 2, - name: 'score', - kind: 'scalar', - T: 2, + name: "score", + kind: "scalar", + T: 2 /* ScalarType.FLOAT */ - }, + } ]); static fromBinary(bytes, options) { return new _ScoredContextItem().fromBinary(bytes, options); @@ -35499,33 +31541,18 @@ var GetNearestCCIsFromEmbeddingResponse = class _GetNearestCCIsFromEmbeddingResp proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.index_pb.GetNearestCCIsFromEmbeddingResponse'; + static typeName = "exa.index_pb.GetNearestCCIsFromEmbeddingResponse"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'scored_context_items', - kind: 'message', - T: ScoredContextItem, - repeated: true, - }, + { no: 1, name: "scored_context_items", kind: "message", T: ScoredContextItem, repeated: true } ]); static fromBinary(bytes, options) { - return new _GetNearestCCIsFromEmbeddingResponse().fromBinary( - bytes, - options, - ); + return new _GetNearestCCIsFromEmbeddingResponse().fromBinary(bytes, options); } static fromJson(jsonValue, options) { - return new _GetNearestCCIsFromEmbeddingResponse().fromJson( - jsonValue, - options, - ); + return new _GetNearestCCIsFromEmbeddingResponse().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _GetNearestCCIsFromEmbeddingResponse().fromJsonString( - jsonString, - options, - ); + return new _GetNearestCCIsFromEmbeddingResponse().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_GetNearestCCIsFromEmbeddingResponse, a, b); @@ -35549,40 +31576,20 @@ var GetEmbeddingsForCodeContextItemsRequest = class _GetEmbeddingsForCodeContext proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.index_pb.GetEmbeddingsForCodeContextItemsRequest'; + static typeName = "exa.index_pb.GetEmbeddingsForCodeContextItemsRequest"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'metadata', kind: 'message', T: Metadata }, - { - no: 2, - name: 'code_context_items', - kind: 'message', - T: CodeContextItem, - repeated: true, - }, - { - no: 3, - name: 'snippet_type', - kind: 'enum', - T: proto3.getEnumType(ContextSnippetType), - }, + { no: 1, name: "metadata", kind: "message", T: Metadata }, + { no: 2, name: "code_context_items", kind: "message", T: CodeContextItem, repeated: true }, + { no: 3, name: "snippet_type", kind: "enum", T: proto3.getEnumType(ContextSnippetType) } ]); static fromBinary(bytes, options) { - return new _GetEmbeddingsForCodeContextItemsRequest().fromBinary( - bytes, - options, - ); + return new _GetEmbeddingsForCodeContextItemsRequest().fromBinary(bytes, options); } static fromJson(jsonValue, options) { - return new _GetEmbeddingsForCodeContextItemsRequest().fromJson( - jsonValue, - options, - ); + return new _GetEmbeddingsForCodeContextItemsRequest().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _GetEmbeddingsForCodeContextItemsRequest().fromJsonString( - jsonString, - options, - ); + return new _GetEmbeddingsForCodeContextItemsRequest().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_GetEmbeddingsForCodeContextItemsRequest, a, b); @@ -35600,33 +31607,18 @@ var GetEmbeddingsForCodeContextItemsResponse = class _GetEmbeddingsForCodeContex proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.index_pb.GetEmbeddingsForCodeContextItemsResponse'; + static typeName = "exa.index_pb.GetEmbeddingsForCodeContextItemsResponse"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'embeddings', - kind: 'message', - T: Embedding, - repeated: true, - }, + { no: 1, name: "embeddings", kind: "message", T: Embedding, repeated: true } ]); static fromBinary(bytes, options) { - return new _GetEmbeddingsForCodeContextItemsResponse().fromBinary( - bytes, - options, - ); + return new _GetEmbeddingsForCodeContextItemsResponse().fromBinary(bytes, options); } static fromJson(jsonValue, options) { - return new _GetEmbeddingsForCodeContextItemsResponse().fromJson( - jsonValue, - options, - ); + return new _GetEmbeddingsForCodeContextItemsResponse().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _GetEmbeddingsForCodeContextItemsResponse().fromJsonString( - jsonString, - options, - ); + return new _GetEmbeddingsForCodeContextItemsResponse().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_GetEmbeddingsForCodeContextItemsResponse, a, b); @@ -35636,7 +31628,7 @@ var IndexStats = class _IndexStats extends Message { /** * @generated from field: string repository_name = 1; */ - repositoryName = ''; + repositoryName = ""; /** * @generated from field: int64 file_count = 2; */ @@ -35650,29 +31642,29 @@ var IndexStats = class _IndexStats extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.index_pb.IndexStats'; + static typeName = "exa.index_pb.IndexStats"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'repository_name', - kind: 'scalar', - T: 9, + name: "repository_name", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'file_count', - kind: 'scalar', - T: 3, + name: "file_count", + kind: "scalar", + T: 3 /* ScalarType.INT64 */ }, { no: 3, - name: 'code_context_item_count', - kind: 'scalar', - T: 3, + name: "code_context_item_count", + kind: "scalar", + T: 3 /* ScalarType.INT64 */ - }, + } ]); static fromBinary(bytes, options) { return new _IndexStats().fromBinary(bytes, options); @@ -35701,64 +31693,22 @@ var IndexerEvent = class _IndexerEvent extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.index_pb.IndexerEvent'; + static typeName = "exa.index_pb.IndexerEvent"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'uid', - kind: 'scalar', - T: 4, + name: "uid", + kind: "scalar", + T: 4 /* ScalarType.UINT64 */ }, - { - no: 2, - name: 'deletion', - kind: 'message', - T: IndexerEvent_Deletion, - oneof: 'event_oneof', - }, - { - no: 3, - name: 'untrack', - kind: 'message', - T: IndexerEvent_Untrack, - oneof: 'event_oneof', - }, - { - no: 4, - name: 'update', - kind: 'message', - T: IndexerEvent_Update, - oneof: 'event_oneof', - }, - { - no: 5, - name: 'add_workspace', - kind: 'message', - T: IndexerEvent_AddWorkspace, - oneof: 'event_oneof', - }, - { - no: 6, - name: 'remove_workspace', - kind: 'message', - T: IndexerEvent_RemoveWorkspace, - oneof: 'event_oneof', - }, - { - no: 7, - name: 'ignore_workspace', - kind: 'message', - T: IndexerEvent_IgnoreWorkspace, - oneof: 'event_oneof', - }, - { - no: 8, - name: 'add_commit', - kind: 'message', - T: IndexerEvent_AddCommit, - oneof: 'event_oneof', - }, + { no: 2, name: "deletion", kind: "message", T: IndexerEvent_Deletion, oneof: "event_oneof" }, + { no: 3, name: "untrack", kind: "message", T: IndexerEvent_Untrack, oneof: "event_oneof" }, + { no: 4, name: "update", kind: "message", T: IndexerEvent_Update, oneof: "event_oneof" }, + { no: 5, name: "add_workspace", kind: "message", T: IndexerEvent_AddWorkspace, oneof: "event_oneof" }, + { no: 6, name: "remove_workspace", kind: "message", T: IndexerEvent_RemoveWorkspace, oneof: "event_oneof" }, + { no: 7, name: "ignore_workspace", kind: "message", T: IndexerEvent_IgnoreWorkspace, oneof: "event_oneof" }, + { no: 8, name: "add_commit", kind: "message", T: IndexerEvent_AddCommit, oneof: "event_oneof" } ]); static fromBinary(bytes, options) { return new _IndexerEvent().fromBinary(bytes, options); @@ -35777,21 +31727,21 @@ var IndexerEvent_Deletion = class _IndexerEvent_Deletion extends Message { /** * @generated from field: string absolute_uri = 1; */ - absoluteUri = ''; + absoluteUri = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.index_pb.IndexerEvent.Deletion'; + static typeName = "exa.index_pb.IndexerEvent.Deletion"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'absolute_uri', - kind: 'scalar', - T: 9, + name: "absolute_uri", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _IndexerEvent_Deletion().fromBinary(bytes, options); @@ -35810,7 +31760,7 @@ var IndexerEvent_Untrack = class _IndexerEvent_Untrack extends Message { /** * @generated from field: string absolute_uri = 1; */ - absoluteUri = ''; + absoluteUri = ""; /** * This contains the remaining active workspaces referencing this file. * @@ -35822,29 +31772,29 @@ var IndexerEvent_Untrack = class _IndexerEvent_Untrack extends Message { * * @generated from field: string workspace_uri = 3; */ - workspaceUri = ''; + workspaceUri = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.index_pb.IndexerEvent.Untrack'; + static typeName = "exa.index_pb.IndexerEvent.Untrack"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'absolute_uri', - kind: 'scalar', - T: 9, + name: "absolute_uri", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 2, name: 'paths', kind: 'message', T: WorkspacePath, repeated: true }, + { no: 2, name: "paths", kind: "message", T: WorkspacePath, repeated: true }, { no: 3, - name: 'workspace_uri', - kind: 'scalar', - T: 9, + name: "workspace_uri", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _IndexerEvent_Untrack().fromBinary(bytes, options); @@ -35863,7 +31813,7 @@ var IndexerEvent_Update = class _IndexerEvent_Update extends Message { /** * @generated from field: string absolute_uri = 1; */ - absoluteUri = ''; + absoluteUri = ""; /** * @generated from field: repeated exa.codeium_common_pb.WorkspacePath paths = 2; */ @@ -35883,23 +31833,18 @@ var IndexerEvent_Update = class _IndexerEvent_Update extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.index_pb.IndexerEvent.Update'; + static typeName = "exa.index_pb.IndexerEvent.Update"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'absolute_uri', - kind: 'scalar', - T: 9, + name: "absolute_uri", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 2, name: 'paths', kind: 'message', T: WorkspacePath, repeated: true }, - { no: 3, name: 'mod_time', kind: 'message', T: Timestamp }, - { - no: 4, - name: 'add_workspace_info', - kind: 'message', - T: IndexerEvent_Update_AddWorkspaceInfo, - }, + { no: 2, name: "paths", kind: "message", T: WorkspacePath, repeated: true }, + { no: 3, name: "mod_time", kind: "message", T: Timestamp }, + { no: 4, name: "add_workspace_info", kind: "message", T: IndexerEvent_Update_AddWorkspaceInfo } ]); static fromBinary(bytes, options) { return new _IndexerEvent_Update().fromBinary(bytes, options); @@ -35931,40 +31876,31 @@ var IndexerEvent_Update_AddWorkspaceInfo = class _IndexerEvent_Update_AddWorkspa proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.index_pb.IndexerEvent.Update.AddWorkspaceInfo'; + static typeName = "exa.index_pb.IndexerEvent.Update.AddWorkspaceInfo"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'add_workspace_uid', - kind: 'scalar', - T: 4, + name: "add_workspace_uid", + kind: "scalar", + T: 4 /* ScalarType.UINT64 */ }, { no: 2, - name: 'add_workspace_queue_uid', - kind: 'scalar', - T: 4, + name: "add_workspace_queue_uid", + kind: "scalar", + T: 4 /* ScalarType.UINT64 */ - }, + } ]); static fromBinary(bytes, options) { - return new _IndexerEvent_Update_AddWorkspaceInfo().fromBinary( - bytes, - options, - ); + return new _IndexerEvent_Update_AddWorkspaceInfo().fromBinary(bytes, options); } static fromJson(jsonValue, options) { - return new _IndexerEvent_Update_AddWorkspaceInfo().fromJson( - jsonValue, - options, - ); + return new _IndexerEvent_Update_AddWorkspaceInfo().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _IndexerEvent_Update_AddWorkspaceInfo().fromJsonString( - jsonString, - options, - ); + return new _IndexerEvent_Update_AddWorkspaceInfo().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_IndexerEvent_Update_AddWorkspaceInfo, a, b); @@ -35985,7 +31921,7 @@ var IndexerEvent_AddWorkspace = class _IndexerEvent_AddWorkspace extends Message /** * @generated from field: string workspace_uri = 3; */ - workspaceUri = ''; + workspaceUri = ""; /** * This is signed just for type convenience in Go code. * @@ -36003,43 +31939,43 @@ var IndexerEvent_AddWorkspace = class _IndexerEvent_AddWorkspace extends Message proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.index_pb.IndexerEvent.AddWorkspace'; + static typeName = "exa.index_pb.IndexerEvent.AddWorkspace"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'add_workspace_uid', - kind: 'scalar', - T: 4, + name: "add_workspace_uid", + kind: "scalar", + T: 4 /* ScalarType.UINT64 */ }, { no: 2, - name: 'add_workspace_queue_uid', - kind: 'scalar', - T: 4, + name: "add_workspace_queue_uid", + kind: "scalar", + T: 4 /* ScalarType.UINT64 */ }, { no: 3, - name: 'workspace_uri', - kind: 'scalar', - T: 9, + name: "workspace_uri", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 4, - name: 'num_files', - kind: 'scalar', - T: 3, + name: "num_files", + kind: "scalar", + T: 3 /* ScalarType.INT64 */ }, { no: 5, - name: 'size', - kind: 'scalar', - T: 3, + name: "size", + kind: "scalar", + T: 3 /* ScalarType.INT64 */ - }, + } ]); static fromBinary(bytes, options) { return new _IndexerEvent_AddWorkspace().fromBinary(bytes, options); @@ -36058,21 +31994,21 @@ var IndexerEvent_RemoveWorkspace = class _IndexerEvent_RemoveWorkspace extends M /** * @generated from field: string workspace_uri = 1; */ - workspaceUri = ''; + workspaceUri = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.index_pb.IndexerEvent.RemoveWorkspace'; + static typeName = "exa.index_pb.IndexerEvent.RemoveWorkspace"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'workspace_uri', - kind: 'scalar', - T: 9, + name: "workspace_uri", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _IndexerEvent_RemoveWorkspace().fromBinary(bytes, options); @@ -36081,10 +32017,7 @@ var IndexerEvent_RemoveWorkspace = class _IndexerEvent_RemoveWorkspace extends M return new _IndexerEvent_RemoveWorkspace().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _IndexerEvent_RemoveWorkspace().fromJsonString( - jsonString, - options, - ); + return new _IndexerEvent_RemoveWorkspace().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_IndexerEvent_RemoveWorkspace, a, b); @@ -36094,21 +32027,21 @@ var IndexerEvent_IgnoreWorkspace = class _IndexerEvent_IgnoreWorkspace extends M /** * @generated from field: string workspace_uri = 1; */ - workspaceUri = ''; + workspaceUri = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.index_pb.IndexerEvent.IgnoreWorkspace'; + static typeName = "exa.index_pb.IndexerEvent.IgnoreWorkspace"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'workspace_uri', - kind: 'scalar', - T: 9, + name: "workspace_uri", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _IndexerEvent_IgnoreWorkspace().fromBinary(bytes, options); @@ -36117,10 +32050,7 @@ var IndexerEvent_IgnoreWorkspace = class _IndexerEvent_IgnoreWorkspace extends M return new _IndexerEvent_IgnoreWorkspace().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _IndexerEvent_IgnoreWorkspace().fromJsonString( - jsonString, - options, - ); + return new _IndexerEvent_IgnoreWorkspace().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_IndexerEvent_IgnoreWorkspace, a, b); @@ -36130,21 +32060,21 @@ var IndexerEvent_AddCommit = class _IndexerEvent_AddCommit extends Message { /** * @generated from field: string sha = 1; */ - sha = ''; + sha = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.index_pb.IndexerEvent.AddCommit'; + static typeName = "exa.index_pb.IndexerEvent.AddCommit"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'sha', - kind: 'scalar', - T: 9, + name: "sha", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _IndexerEvent_AddCommit().fromBinary(bytes, options); @@ -36162,82 +32092,74 @@ var IndexerEvent_AddCommit = class _IndexerEvent_AddCommit extends Message { // exa/proto_ts/dist/exa/opensearch_clients_pb/opensearch_clients_pb.js var SearchMode; -(function (SearchMode2) { - SearchMode2[(SearchMode2['UNSPECIFIED'] = 0)] = 'UNSPECIFIED'; - SearchMode2[(SearchMode2['HYBRID'] = 1)] = 'HYBRID'; - SearchMode2[(SearchMode2['KEYWORD'] = 2)] = 'KEYWORD'; - SearchMode2[(SearchMode2['APPROXIMATE_KNN'] = 3)] = 'APPROXIMATE_KNN'; - SearchMode2[(SearchMode2['BRUTE_FORCE_KNN'] = 4)] = 'BRUTE_FORCE_KNN'; +(function(SearchMode2) { + SearchMode2[SearchMode2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + SearchMode2[SearchMode2["HYBRID"] = 1] = "HYBRID"; + SearchMode2[SearchMode2["KEYWORD"] = 2] = "KEYWORD"; + SearchMode2[SearchMode2["APPROXIMATE_KNN"] = 3] = "APPROXIMATE_KNN"; + SearchMode2[SearchMode2["BRUTE_FORCE_KNN"] = 4] = "BRUTE_FORCE_KNN"; })(SearchMode || (SearchMode = {})); -proto3.util.setEnumType(SearchMode, 'exa.opensearch_clients_pb.SearchMode', [ - { no: 0, name: 'SEARCH_MODE_UNSPECIFIED' }, - { no: 1, name: 'SEARCH_MODE_HYBRID' }, - { no: 2, name: 'SEARCH_MODE_KEYWORD' }, - { no: 3, name: 'SEARCH_MODE_APPROXIMATE_KNN' }, - { no: 4, name: 'SEARCH_MODE_BRUTE_FORCE_KNN' }, +proto3.util.setEnumType(SearchMode, "exa.opensearch_clients_pb.SearchMode", [ + { no: 0, name: "SEARCH_MODE_UNSPECIFIED" }, + { no: 1, name: "SEARCH_MODE_HYBRID" }, + { no: 2, name: "SEARCH_MODE_KEYWORD" }, + { no: 3, name: "SEARCH_MODE_APPROXIMATE_KNN" }, + { no: 4, name: "SEARCH_MODE_BRUTE_FORCE_KNN" } ]); var ForwardStatus; -(function (ForwardStatus2) { - ForwardStatus2[(ForwardStatus2['UNSPECIFIED'] = 0)] = 'UNSPECIFIED'; - ForwardStatus2[(ForwardStatus2['FAILURE'] = 1)] = 'FAILURE'; - ForwardStatus2[(ForwardStatus2['SAVED'] = 2)] = 'SAVED'; - ForwardStatus2[(ForwardStatus2['SUCCESS'] = 3)] = 'SUCCESS'; +(function(ForwardStatus2) { + ForwardStatus2[ForwardStatus2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + ForwardStatus2[ForwardStatus2["FAILURE"] = 1] = "FAILURE"; + ForwardStatus2[ForwardStatus2["SAVED"] = 2] = "SAVED"; + ForwardStatus2[ForwardStatus2["SUCCESS"] = 3] = "SUCCESS"; })(ForwardStatus || (ForwardStatus = {})); -proto3.util.setEnumType( - ForwardStatus, - 'exa.opensearch_clients_pb.ForwardStatus', - [ - { no: 0, name: 'FORWARD_STATUS_UNSPECIFIED' }, - { no: 1, name: 'FORWARD_STATUS_FAILURE' }, - { no: 2, name: 'FORWARD_STATUS_SAVED' }, - { no: 3, name: 'FORWARD_STATUS_SUCCESS' }, - ], -); +proto3.util.setEnumType(ForwardStatus, "exa.opensearch_clients_pb.ForwardStatus", [ + { no: 0, name: "FORWARD_STATUS_UNSPECIFIED" }, + { no: 1, name: "FORWARD_STATUS_FAILURE" }, + { no: 2, name: "FORWARD_STATUS_SAVED" }, + { no: 3, name: "FORWARD_STATUS_SUCCESS" } +]); var ConnectorType; -(function (ConnectorType2) { - ConnectorType2[(ConnectorType2['UNSPECIFIED'] = 0)] = 'UNSPECIFIED'; - ConnectorType2[(ConnectorType2['GITHUB'] = 1)] = 'GITHUB'; - ConnectorType2[(ConnectorType2['SLACK'] = 2)] = 'SLACK'; - ConnectorType2[(ConnectorType2['GOOGLE_DRIVE'] = 3)] = 'GOOGLE_DRIVE'; - ConnectorType2[(ConnectorType2['JIRA'] = 4)] = 'JIRA'; - ConnectorType2[(ConnectorType2['CODEIUM'] = 5)] = 'CODEIUM'; - ConnectorType2[(ConnectorType2['EMAIL'] = 6)] = 'EMAIL'; - ConnectorType2[(ConnectorType2['GITHUB_OAUTH'] = 7)] = 'GITHUB_OAUTH'; +(function(ConnectorType2) { + ConnectorType2[ConnectorType2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + ConnectorType2[ConnectorType2["GITHUB"] = 1] = "GITHUB"; + ConnectorType2[ConnectorType2["SLACK"] = 2] = "SLACK"; + ConnectorType2[ConnectorType2["GOOGLE_DRIVE"] = 3] = "GOOGLE_DRIVE"; + ConnectorType2[ConnectorType2["JIRA"] = 4] = "JIRA"; + ConnectorType2[ConnectorType2["CODEIUM"] = 5] = "CODEIUM"; + ConnectorType2[ConnectorType2["EMAIL"] = 6] = "EMAIL"; + ConnectorType2[ConnectorType2["GITHUB_OAUTH"] = 7] = "GITHUB_OAUTH"; })(ConnectorType || (ConnectorType = {})); -proto3.util.setEnumType( - ConnectorType, - 'exa.opensearch_clients_pb.ConnectorType', - [ - { no: 0, name: 'CONNECTOR_TYPE_UNSPECIFIED' }, - { no: 1, name: 'CONNECTOR_TYPE_GITHUB' }, - { no: 2, name: 'CONNECTOR_TYPE_SLACK' }, - { no: 3, name: 'CONNECTOR_TYPE_GOOGLE_DRIVE' }, - { no: 4, name: 'CONNECTOR_TYPE_JIRA' }, - { no: 5, name: 'CONNECTOR_TYPE_CODEIUM' }, - { no: 6, name: 'CONNECTOR_TYPE_EMAIL' }, - { no: 7, name: 'CONNECTOR_TYPE_GITHUB_OAUTH' }, - ], -); +proto3.util.setEnumType(ConnectorType, "exa.opensearch_clients_pb.ConnectorType", [ + { no: 0, name: "CONNECTOR_TYPE_UNSPECIFIED" }, + { no: 1, name: "CONNECTOR_TYPE_GITHUB" }, + { no: 2, name: "CONNECTOR_TYPE_SLACK" }, + { no: 3, name: "CONNECTOR_TYPE_GOOGLE_DRIVE" }, + { no: 4, name: "CONNECTOR_TYPE_JIRA" }, + { no: 5, name: "CONNECTOR_TYPE_CODEIUM" }, + { no: 6, name: "CONNECTOR_TYPE_EMAIL" }, + { no: 7, name: "CONNECTOR_TYPE_GITHUB_OAUTH" } +]); var JobStatus; -(function (JobStatus2) { - JobStatus2[(JobStatus2['UNSPECIFIED'] = 0)] = 'UNSPECIFIED'; - JobStatus2[(JobStatus2['QUEUED'] = 1)] = 'QUEUED'; - JobStatus2[(JobStatus2['RUNNING'] = 2)] = 'RUNNING'; - JobStatus2[(JobStatus2['COMPLETED'] = 3)] = 'COMPLETED'; - JobStatus2[(JobStatus2['CANCELLED'] = 4)] = 'CANCELLED'; - JobStatus2[(JobStatus2['CANCELLING'] = 5)] = 'CANCELLING'; - JobStatus2[(JobStatus2['ERRORED'] = 6)] = 'ERRORED'; - JobStatus2[(JobStatus2['RETRYABLE'] = 7)] = 'RETRYABLE'; +(function(JobStatus2) { + JobStatus2[JobStatus2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + JobStatus2[JobStatus2["QUEUED"] = 1] = "QUEUED"; + JobStatus2[JobStatus2["RUNNING"] = 2] = "RUNNING"; + JobStatus2[JobStatus2["COMPLETED"] = 3] = "COMPLETED"; + JobStatus2[JobStatus2["CANCELLED"] = 4] = "CANCELLED"; + JobStatus2[JobStatus2["CANCELLING"] = 5] = "CANCELLING"; + JobStatus2[JobStatus2["ERRORED"] = 6] = "ERRORED"; + JobStatus2[JobStatus2["RETRYABLE"] = 7] = "RETRYABLE"; })(JobStatus || (JobStatus = {})); -proto3.util.setEnumType(JobStatus, 'exa.opensearch_clients_pb.JobStatus', [ - { no: 0, name: 'JOB_STATUS_UNSPECIFIED' }, - { no: 1, name: 'JOB_STATUS_QUEUED' }, - { no: 2, name: 'JOB_STATUS_RUNNING' }, - { no: 3, name: 'JOB_STATUS_COMPLETED' }, - { no: 4, name: 'JOB_STATUS_CANCELLED' }, - { no: 5, name: 'JOB_STATUS_CANCELLING' }, - { no: 6, name: 'JOB_STATUS_ERRORED' }, - { no: 7, name: 'JOB_STATUS_RETRYABLE' }, +proto3.util.setEnumType(JobStatus, "exa.opensearch_clients_pb.JobStatus", [ + { no: 0, name: "JOB_STATUS_UNSPECIFIED" }, + { no: 1, name: "JOB_STATUS_QUEUED" }, + { no: 2, name: "JOB_STATUS_RUNNING" }, + { no: 3, name: "JOB_STATUS_COMPLETED" }, + { no: 4, name: "JOB_STATUS_CANCELLED" }, + { no: 5, name: "JOB_STATUS_CANCELLING" }, + { no: 6, name: "JOB_STATUS_ERRORED" }, + { no: 7, name: "JOB_STATUS_RETRYABLE" } ]); var TimeRange = class _TimeRange extends Message { /** @@ -36253,10 +32175,10 @@ var TimeRange = class _TimeRange extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.opensearch_clients_pb.TimeRange'; + static typeName = "exa.opensearch_clients_pb.TimeRange"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'start', kind: 'message', T: Timestamp }, - { no: 2, name: 'end', kind: 'message', T: Timestamp }, + { no: 1, name: "start", kind: "message", T: Timestamp }, + { no: 2, name: "end", kind: "message", T: Timestamp } ]); static fromBinary(bytes, options) { return new _TimeRange().fromBinary(bytes, options); @@ -36275,32 +32197,32 @@ var GithubUser = class _GithubUser extends Message { /** * @generated from field: string auth_uid = 1; */ - authUid = ''; + authUid = ""; /** * @generated from field: string username = 2; */ - username = ''; + username = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.opensearch_clients_pb.GithubUser'; + static typeName = "exa.opensearch_clients_pb.GithubUser"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'auth_uid', - kind: 'scalar', - T: 9, + name: "auth_uid", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'username', - kind: 'scalar', - T: 9, + name: "username", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _GithubUser().fromBinary(bytes, options); @@ -36327,9 +32249,9 @@ var AddGithubUsersRequest = class _AddGithubUsersRequest extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.opensearch_clients_pb.AddGithubUsersRequest'; + static typeName = "exa.opensearch_clients_pb.AddGithubUsersRequest"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'users', kind: 'message', T: GithubUser, repeated: true }, + { no: 1, name: "users", kind: "message", T: GithubUser, repeated: true } ]); static fromBinary(bytes, options) { return new _AddGithubUsersRequest().fromBinary(bytes, options); @@ -36350,7 +32272,7 @@ var AddGithubUsersResponse = class _AddGithubUsersResponse extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.opensearch_clients_pb.AddGithubUsersResponse'; + static typeName = "exa.opensearch_clients_pb.AddGithubUsersResponse"; static fields = proto3.util.newFieldList(() => []); static fromBinary(bytes, options) { return new _AddGithubUsersResponse().fromBinary(bytes, options); @@ -36369,54 +32291,54 @@ var UserInfo = class _UserInfo extends Message { /** * @generated from field: string auth_uid = 1; */ - authUid = ''; + authUid = ""; /** * @generated from field: string email = 2; */ - email = ''; + email = ""; /** * @generated from field: string name = 3; */ - name = ''; + name = ""; /** * @generated from field: string photo_url = 4; */ - photoUrl = ''; + photoUrl = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.opensearch_clients_pb.UserInfo'; + static typeName = "exa.opensearch_clients_pb.UserInfo"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'auth_uid', - kind: 'scalar', - T: 9, + name: "auth_uid", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'email', - kind: 'scalar', - T: 9, + name: "email", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 3, - name: 'name', - kind: 'scalar', - T: 9, + name: "name", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 4, - name: 'photo_url', - kind: 'scalar', - T: 9, + name: "photo_url", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _UserInfo().fromBinary(bytes, options); @@ -36441,9 +32363,9 @@ var AddUsersRequest = class _AddUsersRequest extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.opensearch_clients_pb.AddUsersRequest'; + static typeName = "exa.opensearch_clients_pb.AddUsersRequest"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'users', kind: 'message', T: UserInfo, repeated: true }, + { no: 1, name: "users", kind: "message", T: UserInfo, repeated: true } ]); static fromBinary(bytes, options) { return new _AddUsersRequest().fromBinary(bytes, options); @@ -36464,7 +32386,7 @@ var AddUsersResponse = class _AddUsersResponse extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.opensearch_clients_pb.AddUsersResponse'; + static typeName = "exa.opensearch_clients_pb.AddUsersResponse"; static fields = proto3.util.newFieldList(() => []); static fromBinary(bytes, options) { return new _AddUsersResponse().fromBinary(bytes, options); @@ -36542,75 +32464,52 @@ var KnowledgeBaseSearchRequest = class _KnowledgeBaseSearchRequest extends Messa * @generated from field: string query = 1 [deprecated = true]; * @deprecated */ - query = ''; + query = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.opensearch_clients_pb.KnowledgeBaseSearchRequest'; + static typeName = "exa.opensearch_clients_pb.KnowledgeBaseSearchRequest"; static fields = proto3.util.newFieldList(() => [ { no: 2, - name: 'max_results', - kind: 'scalar', - T: 3, + name: "max_results", + kind: "scalar", + T: 3 /* ScalarType.INT64 */ }, - { no: 3, name: 'queries', kind: 'scalar', T: 9, repeated: true }, - { no: 4, name: 'metadata', kind: 'message', T: Metadata }, - { no: 12, name: 'urls', kind: 'scalar', T: 9, repeated: true }, - { no: 13, name: 'document_ids', kind: 'scalar', T: 9, repeated: true }, - { no: 5, name: 'aggregate_ids', kind: 'scalar', T: 9, repeated: true }, - { - no: 6, - name: 'chat_message_prompts', - kind: 'message', - T: ChatMessagePrompt, - repeated: true, - }, - { no: 7, name: 'time_range', kind: 'message', T: TimeRange }, - { - no: 14, - name: 'document_types', - kind: 'enum', - T: proto3.getEnumType(DocumentType), - repeated: true, - }, - { - no: 9, - name: 'search_mode', - kind: 'enum', - T: proto3.getEnumType(SearchMode), - }, + { no: 3, name: "queries", kind: "scalar", T: 9, repeated: true }, + { no: 4, name: "metadata", kind: "message", T: Metadata }, + { no: 12, name: "urls", kind: "scalar", T: 9, repeated: true }, + { no: 13, name: "document_ids", kind: "scalar", T: 9, repeated: true }, + { no: 5, name: "aggregate_ids", kind: "scalar", T: 9, repeated: true }, + { no: 6, name: "chat_message_prompts", kind: "message", T: ChatMessagePrompt, repeated: true }, + { no: 7, name: "time_range", kind: "message", T: TimeRange }, + { no: 14, name: "document_types", kind: "enum", T: proto3.getEnumType(DocumentType), repeated: true }, + { no: 9, name: "search_mode", kind: "enum", T: proto3.getEnumType(SearchMode) }, { no: 10, - name: 'disable_reranking', - kind: 'scalar', - T: 8, + name: "disable_reranking", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 11, - name: 'disable_contextual_lookup', - kind: 'scalar', - T: 8, + name: "disable_contextual_lookup", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, - { - no: 8, - name: 'index_choices', - kind: 'enum', - T: proto3.getEnumType(IndexChoice), - repeated: true, - }, + { no: 8, name: "index_choices", kind: "enum", T: proto3.getEnumType(IndexChoice), repeated: true }, { no: 1, - name: 'query', - kind: 'scalar', - T: 9, + name: "query", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _KnowledgeBaseSearchRequest().fromBinary(bytes, options); @@ -36619,10 +32518,7 @@ var KnowledgeBaseSearchRequest = class _KnowledgeBaseSearchRequest extends Messa return new _KnowledgeBaseSearchRequest().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _KnowledgeBaseSearchRequest().fromJsonString( - jsonString, - options, - ); + return new _KnowledgeBaseSearchRequest().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_KnowledgeBaseSearchRequest, a, b); @@ -36638,15 +32534,9 @@ var KnowledgeBaseSearchResponse = class _KnowledgeBaseSearchResponse extends Mes proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.opensearch_clients_pb.KnowledgeBaseSearchResponse'; + static typeName = "exa.opensearch_clients_pb.KnowledgeBaseSearchResponse"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'knowledge_base_groups', - kind: 'message', - T: KnowledgeBaseGroup, - repeated: true, - }, + { no: 1, name: "knowledge_base_groups", kind: "message", T: KnowledgeBaseGroup, repeated: true } ]); static fromBinary(bytes, options) { return new _KnowledgeBaseSearchResponse().fromBinary(bytes, options); @@ -36655,10 +32545,7 @@ var KnowledgeBaseSearchResponse = class _KnowledgeBaseSearchResponse extends Mes return new _KnowledgeBaseSearchResponse().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _KnowledgeBaseSearchResponse().fromJsonString( - jsonString, - options, - ); + return new _KnowledgeBaseSearchResponse().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_KnowledgeBaseSearchResponse, a, b); @@ -36668,7 +32555,7 @@ var GetKnowledgeBaseScopeItemsRequest = class _GetKnowledgeBaseScopeItemsRequest /** * @generated from field: string query = 1; */ - query = ''; + query = ""; /** * @generated from field: exa.codeium_common_pb.Metadata metadata = 3; */ @@ -36698,47 +32585,28 @@ var GetKnowledgeBaseScopeItemsRequest = class _GetKnowledgeBaseScopeItemsRequest proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = - 'exa.opensearch_clients_pb.GetKnowledgeBaseScopeItemsRequest'; + static typeName = "exa.opensearch_clients_pb.GetKnowledgeBaseScopeItemsRequest"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'query', - kind: 'scalar', - T: 9, + name: "query", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 3, name: 'metadata', kind: 'message', T: Metadata }, - { - no: 5, - name: 'document_types', - kind: 'enum', - T: proto3.getEnumType(DocumentType), - repeated: true, - }, - { - no: 4, - name: 'index_choices', - kind: 'enum', - T: proto3.getEnumType(IndexChoice), - repeated: true, - }, - { no: 2, name: 'index_names', kind: 'scalar', T: 9, repeated: true }, + { no: 3, name: "metadata", kind: "message", T: Metadata }, + { no: 5, name: "document_types", kind: "enum", T: proto3.getEnumType(DocumentType), repeated: true }, + { no: 4, name: "index_choices", kind: "enum", T: proto3.getEnumType(IndexChoice), repeated: true }, + { no: 2, name: "index_names", kind: "scalar", T: 9, repeated: true } ]); static fromBinary(bytes, options) { return new _GetKnowledgeBaseScopeItemsRequest().fromBinary(bytes, options); } static fromJson(jsonValue, options) { - return new _GetKnowledgeBaseScopeItemsRequest().fromJson( - jsonValue, - options, - ); + return new _GetKnowledgeBaseScopeItemsRequest().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _GetKnowledgeBaseScopeItemsRequest().fromJsonString( - jsonString, - options, - ); + return new _GetKnowledgeBaseScopeItemsRequest().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_GetKnowledgeBaseScopeItemsRequest, a, b); @@ -36754,31 +32622,18 @@ var GetKnowledgeBaseScopeItemsResponse = class _GetKnowledgeBaseScopeItemsRespon proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = - 'exa.opensearch_clients_pb.GetKnowledgeBaseScopeItemsResponse'; + static typeName = "exa.opensearch_clients_pb.GetKnowledgeBaseScopeItemsResponse"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'scope_items', - kind: 'message', - T: KnowledgeBaseScopeItem, - repeated: true, - }, + { no: 1, name: "scope_items", kind: "message", T: KnowledgeBaseScopeItem, repeated: true } ]); static fromBinary(bytes, options) { return new _GetKnowledgeBaseScopeItemsResponse().fromBinary(bytes, options); } static fromJson(jsonValue, options) { - return new _GetKnowledgeBaseScopeItemsResponse().fromJson( - jsonValue, - options, - ); + return new _GetKnowledgeBaseScopeItemsResponse().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _GetKnowledgeBaseScopeItemsResponse().fromJsonString( - jsonString, - options, - ); + return new _GetKnowledgeBaseScopeItemsResponse().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_GetKnowledgeBaseScopeItemsResponse, a, b); @@ -36798,42 +32653,22 @@ var GetKnowledgeBaseItemsFromScopeItemsRequest = class _GetKnowledgeBaseItemsFro proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = - 'exa.opensearch_clients_pb.GetKnowledgeBaseItemsFromScopeItemsRequest'; + static typeName = "exa.opensearch_clients_pb.GetKnowledgeBaseItemsFromScopeItemsRequest"; static fields = proto3.util.newFieldList(() => [ - { no: 2, name: 'metadata', kind: 'message', T: Metadata }, - { - no: 3, - name: 'scope_items', - kind: 'message', - T: KnowledgeBaseScopeItem, - repeated: true, - }, + { no: 2, name: "metadata", kind: "message", T: Metadata }, + { no: 3, name: "scope_items", kind: "message", T: KnowledgeBaseScopeItem, repeated: true } ]); static fromBinary(bytes, options) { - return new _GetKnowledgeBaseItemsFromScopeItemsRequest().fromBinary( - bytes, - options, - ); + return new _GetKnowledgeBaseItemsFromScopeItemsRequest().fromBinary(bytes, options); } static fromJson(jsonValue, options) { - return new _GetKnowledgeBaseItemsFromScopeItemsRequest().fromJson( - jsonValue, - options, - ); + return new _GetKnowledgeBaseItemsFromScopeItemsRequest().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _GetKnowledgeBaseItemsFromScopeItemsRequest().fromJsonString( - jsonString, - options, - ); + return new _GetKnowledgeBaseItemsFromScopeItemsRequest().fromJsonString(jsonString, options); } static equals(a, b) { - return proto3.util.equals( - _GetKnowledgeBaseItemsFromScopeItemsRequest, - a, - b, - ); + return proto3.util.equals(_GetKnowledgeBaseItemsFromScopeItemsRequest, a, b); } }; var GetKnowledgeBaseItemsFromScopeItemsResponse = class _GetKnowledgeBaseItemsFromScopeItemsResponse extends Message { @@ -36846,41 +32681,21 @@ var GetKnowledgeBaseItemsFromScopeItemsResponse = class _GetKnowledgeBaseItemsFr proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = - 'exa.opensearch_clients_pb.GetKnowledgeBaseItemsFromScopeItemsResponse'; + static typeName = "exa.opensearch_clients_pb.GetKnowledgeBaseItemsFromScopeItemsResponse"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'knowledge_base_items_with_metadata', - kind: 'message', - T: KnowledgeBaseItemWithMetadata, - repeated: true, - }, + { no: 1, name: "knowledge_base_items_with_metadata", kind: "message", T: KnowledgeBaseItemWithMetadata, repeated: true } ]); static fromBinary(bytes, options) { - return new _GetKnowledgeBaseItemsFromScopeItemsResponse().fromBinary( - bytes, - options, - ); + return new _GetKnowledgeBaseItemsFromScopeItemsResponse().fromBinary(bytes, options); } static fromJson(jsonValue, options) { - return new _GetKnowledgeBaseItemsFromScopeItemsResponse().fromJson( - jsonValue, - options, - ); + return new _GetKnowledgeBaseItemsFromScopeItemsResponse().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _GetKnowledgeBaseItemsFromScopeItemsResponse().fromJsonString( - jsonString, - options, - ); + return new _GetKnowledgeBaseItemsFromScopeItemsResponse().fromJsonString(jsonString, options); } static equals(a, b) { - return proto3.util.equals( - _GetKnowledgeBaseItemsFromScopeItemsResponse, - a, - b, - ); + return proto3.util.equals(_GetKnowledgeBaseItemsFromScopeItemsResponse, a, b); } }; var IngestSlackDataRequest = class _IngestSlackDataRequest extends Message { @@ -36897,10 +32712,10 @@ var IngestSlackDataRequest = class _IngestSlackDataRequest extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.opensearch_clients_pb.IngestSlackDataRequest'; + static typeName = "exa.opensearch_clients_pb.IngestSlackDataRequest"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'metadata', kind: 'message', T: ManagementMetadata }, - { no: 2, name: 'channel_ids', kind: 'scalar', T: 9, repeated: true }, + { no: 1, name: "metadata", kind: "message", T: ManagementMetadata }, + { no: 2, name: "channel_ids", kind: "scalar", T: 9, repeated: true } ]); static fromBinary(bytes, options) { return new _IngestSlackDataRequest().fromBinary(bytes, options); @@ -36921,7 +32736,7 @@ var IngestSlackDataResponse = class _IngestSlackDataResponse extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.opensearch_clients_pb.IngestSlackDataResponse'; + static typeName = "exa.opensearch_clients_pb.IngestSlackDataResponse"; static fields = proto3.util.newFieldList(() => []); static fromBinary(bytes, options) { return new _IngestSlackDataResponse().fromBinary(bytes, options); @@ -36944,33 +32759,33 @@ var IngestGithubDataRequest = class _IngestGithubDataRequest extends Message { /** * @generated from field: string organization = 1; */ - organization = ''; + organization = ""; /** * @generated from field: string repository = 2; */ - repository = ''; + repository = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.opensearch_clients_pb.IngestGithubDataRequest'; + static typeName = "exa.opensearch_clients_pb.IngestGithubDataRequest"; static fields = proto3.util.newFieldList(() => [ - { no: 3, name: 'metadata', kind: 'message', T: ManagementMetadata }, + { no: 3, name: "metadata", kind: "message", T: ManagementMetadata }, { no: 1, - name: 'organization', - kind: 'scalar', - T: 9, + name: "organization", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'repository', - kind: 'scalar', - T: 9, + name: "repository", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _IngestGithubDataRequest().fromBinary(bytes, options); @@ -36991,7 +32806,7 @@ var IngestGithubDataResponse = class _IngestGithubDataResponse extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.opensearch_clients_pb.IngestGithubDataResponse'; + static typeName = "exa.opensearch_clients_pb.IngestGithubDataResponse"; static fields = proto3.util.newFieldList(() => []); static fromBinary(bytes, options) { return new _IngestGithubDataResponse().fromBinary(bytes, options); @@ -37020,10 +32835,10 @@ var IngestGoogleDriveDataRequest = class _IngestGoogleDriveDataRequest extends M proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.opensearch_clients_pb.IngestGoogleDriveDataRequest'; + static typeName = "exa.opensearch_clients_pb.IngestGoogleDriveDataRequest"; static fields = proto3.util.newFieldList(() => [ - { no: 2, name: 'metadata', kind: 'message', T: ManagementMetadata }, - { no: 3, name: 'folder_ids', kind: 'scalar', T: 9, repeated: true }, + { no: 2, name: "metadata", kind: "message", T: ManagementMetadata }, + { no: 3, name: "folder_ids", kind: "scalar", T: 9, repeated: true } ]); static fromBinary(bytes, options) { return new _IngestGoogleDriveDataRequest().fromBinary(bytes, options); @@ -37032,10 +32847,7 @@ var IngestGoogleDriveDataRequest = class _IngestGoogleDriveDataRequest extends M return new _IngestGoogleDriveDataRequest().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _IngestGoogleDriveDataRequest().fromJsonString( - jsonString, - options, - ); + return new _IngestGoogleDriveDataRequest().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_IngestGoogleDriveDataRequest, a, b); @@ -37047,7 +32859,7 @@ var IngestGoogleDriveDataResponse = class _IngestGoogleDriveDataResponse extends proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.opensearch_clients_pb.IngestGoogleDriveDataResponse'; + static typeName = "exa.opensearch_clients_pb.IngestGoogleDriveDataResponse"; static fields = proto3.util.newFieldList(() => []); static fromBinary(bytes, options) { return new _IngestGoogleDriveDataResponse().fromBinary(bytes, options); @@ -37056,10 +32868,7 @@ var IngestGoogleDriveDataResponse = class _IngestGoogleDriveDataResponse extends return new _IngestGoogleDriveDataResponse().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _IngestGoogleDriveDataResponse().fromJsonString( - jsonString, - options, - ); + return new _IngestGoogleDriveDataResponse().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_IngestGoogleDriveDataResponse, a, b); @@ -37075,9 +32884,9 @@ var IngestJiraDataRequest = class _IngestJiraDataRequest extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.opensearch_clients_pb.IngestJiraDataRequest'; + static typeName = "exa.opensearch_clients_pb.IngestJiraDataRequest"; static fields = proto3.util.newFieldList(() => [ - { no: 4, name: 'metadata', kind: 'message', T: ManagementMetadata }, + { no: 4, name: "metadata", kind: "message", T: ManagementMetadata } ]); static fromBinary(bytes, options) { return new _IngestJiraDataRequest().fromBinary(bytes, options); @@ -37098,7 +32907,7 @@ var IngestJiraDataResponse = class _IngestJiraDataResponse extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.opensearch_clients_pb.IngestJiraDataResponse'; + static typeName = "exa.opensearch_clients_pb.IngestJiraDataResponse"; static fields = proto3.util.newFieldList(() => []); static fromBinary(bytes, options) { return new _IngestJiraDataResponse().fromBinary(bytes, options); @@ -37117,21 +32926,21 @@ var IngestJiraPayloadRequest = class _IngestJiraPayloadRequest extends Message { /** * @generated from field: string body = 3; */ - body = ''; + body = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.opensearch_clients_pb.IngestJiraPayloadRequest'; + static typeName = "exa.opensearch_clients_pb.IngestJiraPayloadRequest"; static fields = proto3.util.newFieldList(() => [ { no: 3, - name: 'body', - kind: 'scalar', - T: 9, + name: "body", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _IngestJiraPayloadRequest().fromBinary(bytes, options); @@ -37152,7 +32961,7 @@ var IngestJiraPayloadResponse = class _IngestJiraPayloadResponse extends Message proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.opensearch_clients_pb.IngestJiraPayloadResponse'; + static typeName = "exa.opensearch_clients_pb.IngestJiraPayloadResponse"; static fields = proto3.util.newFieldList(() => []); static fromBinary(bytes, options) { return new _IngestJiraPayloadResponse().fromBinary(bytes, options); @@ -37186,15 +32995,10 @@ var ForwardResult = class _ForwardResult extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.opensearch_clients_pb.ForwardResult'; + static typeName = "exa.opensearch_clients_pb.ForwardResult"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'status', - kind: 'enum', - T: proto3.getEnumType(ForwardStatus), - }, - { no: 2, name: 'error', kind: 'scalar', T: 9, opt: true }, + { no: 1, name: "status", kind: "enum", T: proto3.getEnumType(ForwardStatus) }, + { no: 2, name: "error", kind: "scalar", T: 9, opt: true } ]); static fromBinary(bytes, options) { return new _ForwardResult().fromBinary(bytes, options); @@ -37219,9 +33023,9 @@ var ForwardSlackPayloadRequest = class _ForwardSlackPayloadRequest extends Messa proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.opensearch_clients_pb.ForwardSlackPayloadRequest'; + static typeName = "exa.opensearch_clients_pb.ForwardSlackPayloadRequest"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'bodies', kind: 'scalar', T: 9, repeated: true }, + { no: 1, name: "bodies", kind: "scalar", T: 9, repeated: true } ]); static fromBinary(bytes, options) { return new _ForwardSlackPayloadRequest().fromBinary(bytes, options); @@ -37230,10 +33034,7 @@ var ForwardSlackPayloadRequest = class _ForwardSlackPayloadRequest extends Messa return new _ForwardSlackPayloadRequest().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _ForwardSlackPayloadRequest().fromJsonString( - jsonString, - options, - ); + return new _ForwardSlackPayloadRequest().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_ForwardSlackPayloadRequest, a, b); @@ -37251,15 +33052,9 @@ var ForwardSlackPayloadResponse = class _ForwardSlackPayloadResponse extends Mes proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.opensearch_clients_pb.ForwardSlackPayloadResponse'; + static typeName = "exa.opensearch_clients_pb.ForwardSlackPayloadResponse"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'results', - kind: 'message', - T: ForwardResult, - repeated: true, - }, + { no: 1, name: "results", kind: "message", T: ForwardResult, repeated: true } ]); static fromBinary(bytes, options) { return new _ForwardSlackPayloadResponse().fromBinary(bytes, options); @@ -37268,10 +33063,7 @@ var ForwardSlackPayloadResponse = class _ForwardSlackPayloadResponse extends Mes return new _ForwardSlackPayloadResponse().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _ForwardSlackPayloadResponse().fromJsonString( - jsonString, - options, - ); + return new _ForwardSlackPayloadResponse().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_ForwardSlackPayloadResponse, a, b); @@ -37287,15 +33079,9 @@ var IngestSlackPayloadRequest = class _IngestSlackPayloadRequest extends Message proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.opensearch_clients_pb.IngestSlackPayloadRequest'; + static typeName = "exa.opensearch_clients_pb.IngestSlackPayloadRequest"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'payload', - kind: 'message', - T: SlackPayload, - repeated: true, - }, + { no: 1, name: "payload", kind: "message", T: SlackPayload, repeated: true } ]); static fromBinary(bytes, options) { return new _IngestSlackPayloadRequest().fromBinary(bytes, options); @@ -37316,7 +33102,7 @@ var IngestSlackPayloadResponse = class _IngestSlackPayloadResponse extends Messa proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.opensearch_clients_pb.IngestSlackPayloadResponse'; + static typeName = "exa.opensearch_clients_pb.IngestSlackPayloadResponse"; static fields = proto3.util.newFieldList(() => []); static fromBinary(bytes, options) { return new _IngestSlackPayloadResponse().fromBinary(bytes, options); @@ -37325,10 +33111,7 @@ var IngestSlackPayloadResponse = class _IngestSlackPayloadResponse extends Messa return new _IngestSlackPayloadResponse().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _IngestSlackPayloadResponse().fromJsonString( - jsonString, - options, - ); + return new _IngestSlackPayloadResponse().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_IngestSlackPayloadResponse, a, b); @@ -37338,32 +33121,32 @@ var CommonDocument = class _CommonDocument extends Message { /** * @generated from field: string document_id = 1; */ - documentId = ''; + documentId = ""; /** * @generated from field: string text = 2; */ - text = ''; + text = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.opensearch_clients_pb.CommonDocument'; + static typeName = "exa.opensearch_clients_pb.CommonDocument"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'document_id', - kind: 'scalar', - T: 9, + name: "document_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'text', - kind: 'scalar', - T: 9, + name: "text", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _CommonDocument().fromBinary(bytes, options); @@ -37392,16 +33175,16 @@ var CommonDocumentWithScore = class _CommonDocumentWithScore extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.opensearch_clients_pb.CommonDocumentWithScore'; + static typeName = "exa.opensearch_clients_pb.CommonDocumentWithScore"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'document', kind: 'message', T: CommonDocument }, + { no: 1, name: "document", kind: "message", T: CommonDocument }, { no: 2, - name: 'score', - kind: 'scalar', - T: 2, + name: "score", + kind: "scalar", + T: 2 /* ScalarType.FLOAT */ - }, + } ]); static fromBinary(bytes, options) { return new _CommonDocumentWithScore().fromBinary(bytes, options); @@ -37420,32 +33203,32 @@ var SearchResult = class _SearchResult extends Message { /** * @generated from field: string text = 1; */ - text = ''; + text = ""; /** * @generated from field: string url = 2; */ - url = ''; + url = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.opensearch_clients_pb.SearchResult'; + static typeName = "exa.opensearch_clients_pb.SearchResult"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'text', - kind: 'scalar', - T: 9, + name: "text", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'url', - kind: 'scalar', - T: 9, + name: "url", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _SearchResult().fromBinary(bytes, options); @@ -37470,15 +33253,9 @@ var QuerySearchResponse = class _QuerySearchResponse extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.opensearch_clients_pb.QuerySearchResponse'; + static typeName = "exa.opensearch_clients_pb.QuerySearchResponse"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'document_with_scores', - kind: 'message', - T: CommonDocumentWithScore, - repeated: true, - }, + { no: 1, name: "document_with_scores", kind: "message", T: CommonDocumentWithScore, repeated: true } ]); static fromBinary(bytes, options) { return new _QuerySearchResponse().fromBinary(bytes, options); @@ -37511,11 +33288,11 @@ var OpenSearchAddRepositoryRequest = class _OpenSearchAddRepositoryRequest exten proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.opensearch_clients_pb.OpenSearchAddRepositoryRequest'; + static typeName = "exa.opensearch_clients_pb.OpenSearchAddRepositoryRequest"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'metadata', kind: 'message', T: ManagementMetadata }, - { no: 2, name: 'config', kind: 'message', T: RepositoryConfig }, - { no: 3, name: 'initial_index', kind: 'message', T: RequestIndexVersion }, + { no: 1, name: "metadata", kind: "message", T: ManagementMetadata }, + { no: 2, name: "config", kind: "message", T: RepositoryConfig }, + { no: 3, name: "initial_index", kind: "message", T: RequestIndexVersion } ]); static fromBinary(bytes, options) { return new _OpenSearchAddRepositoryRequest().fromBinary(bytes, options); @@ -37524,10 +33301,7 @@ var OpenSearchAddRepositoryRequest = class _OpenSearchAddRepositoryRequest exten return new _OpenSearchAddRepositoryRequest().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _OpenSearchAddRepositoryRequest().fromJsonString( - jsonString, - options, - ); + return new _OpenSearchAddRepositoryRequest().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_OpenSearchAddRepositoryRequest, a, b); @@ -37537,32 +33311,32 @@ var OpenSearchAddRepositoryResponse = class _OpenSearchAddRepositoryResponse ext /** * @generated from field: string repo_name = 1; */ - repoName = ''; + repoName = ""; /** * @generated from field: string index_id = 2; */ - indexId = ''; + indexId = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.opensearch_clients_pb.OpenSearchAddRepositoryResponse'; + static typeName = "exa.opensearch_clients_pb.OpenSearchAddRepositoryResponse"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'repo_name', - kind: 'scalar', - T: 9, + name: "repo_name", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'index_id', - kind: 'scalar', - T: 9, + name: "index_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _OpenSearchAddRepositoryResponse().fromBinary(bytes, options); @@ -37571,10 +33345,7 @@ var OpenSearchAddRepositoryResponse = class _OpenSearchAddRepositoryResponse ext return new _OpenSearchAddRepositoryResponse().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _OpenSearchAddRepositoryResponse().fromJsonString( - jsonString, - options, - ); + return new _OpenSearchAddRepositoryResponse().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_OpenSearchAddRepositoryResponse, a, b); @@ -37584,21 +33355,21 @@ var OpenSearchGetIndexRequest = class _OpenSearchGetIndexRequest extends Message /** * @generated from field: string index_id = 1; */ - indexId = ''; + indexId = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.opensearch_clients_pb.OpenSearchGetIndexRequest'; + static typeName = "exa.opensearch_clients_pb.OpenSearchGetIndexRequest"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'index_id', - kind: 'scalar', - T: 9, + name: "index_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _OpenSearchGetIndexRequest().fromBinary(bytes, options); @@ -37623,14 +33394,9 @@ var OpenSearchGetIndexResponse = class _OpenSearchGetIndexResponse extends Messa proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.opensearch_clients_pb.OpenSearchGetIndexResponse'; + static typeName = "exa.opensearch_clients_pb.OpenSearchGetIndexResponse"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'status', - kind: 'enum', - T: proto3.getEnumType(IndexingStatus), - }, + { no: 1, name: "status", kind: "enum", T: proto3.getEnumType(IndexingStatus) } ]); static fromBinary(bytes, options) { return new _OpenSearchGetIndexResponse().fromBinary(bytes, options); @@ -37639,10 +33405,7 @@ var OpenSearchGetIndexResponse = class _OpenSearchGetIndexResponse extends Messa return new _OpenSearchGetIndexResponse().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _OpenSearchGetIndexResponse().fromJsonString( - jsonString, - options, - ); + return new _OpenSearchGetIndexResponse().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_OpenSearchGetIndexResponse, a, b); @@ -37652,7 +33415,7 @@ var HybridSearchRequest = class _HybridSearchRequest extends Message { /** * @generated from field: string query = 1; */ - query = ''; + query = ""; /** * @generated from field: exa.codeium_common_pb.Embedding embedding = 2; */ @@ -37666,23 +33429,23 @@ var HybridSearchRequest = class _HybridSearchRequest extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.opensearch_clients_pb.HybridSearchRequest'; + static typeName = "exa.opensearch_clients_pb.HybridSearchRequest"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'query', - kind: 'scalar', - T: 9, + name: "query", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 2, name: 'embedding', kind: 'message', T: Embedding }, + { no: 2, name: "embedding", kind: "message", T: Embedding }, { no: 3, - name: 'max_results', - kind: 'scalar', - T: 3, + name: "max_results", + kind: "scalar", + T: 3 /* ScalarType.INT64 */ - }, + } ]); static fromBinary(bytes, options) { return new _HybridSearchRequest().fromBinary(bytes, options); @@ -37707,15 +33470,9 @@ var HybridSearchResponse = class _HybridSearchResponse extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.opensearch_clients_pb.HybridSearchResponse'; + static typeName = "exa.opensearch_clients_pb.HybridSearchResponse"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'document_with_scores', - kind: 'message', - T: CommonDocumentWithScore, - repeated: true, - }, + { no: 1, name: "document_with_scores", kind: "message", T: CommonDocumentWithScore, repeated: true } ]); static fromBinary(bytes, options) { return new _HybridSearchResponse().fromBinary(bytes, options); @@ -37734,7 +33491,7 @@ var GraphSearchRequest = class _GraphSearchRequest extends Message { /** * @generated from field: string query = 1; */ - query = ''; + query = ""; /** * @generated from field: exa.codeium_common_pb.Embedding embedding = 2; */ @@ -37748,23 +33505,23 @@ var GraphSearchRequest = class _GraphSearchRequest extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.opensearch_clients_pb.GraphSearchRequest'; + static typeName = "exa.opensearch_clients_pb.GraphSearchRequest"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'query', - kind: 'scalar', - T: 9, + name: "query", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 2, name: 'embedding', kind: 'message', T: Embedding }, + { no: 2, name: "embedding", kind: "message", T: Embedding }, { no: 3, - name: 'max_results', - kind: 'scalar', - T: 3, + name: "max_results", + kind: "scalar", + T: 3 /* ScalarType.INT64 */ - }, + } ]); static fromBinary(bytes, options) { return new _GraphSearchRequest().fromBinary(bytes, options); @@ -37789,15 +33546,9 @@ var GraphSearchResponse = class _GraphSearchResponse extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.opensearch_clients_pb.GraphSearchResponse'; + static typeName = "exa.opensearch_clients_pb.GraphSearchResponse"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'document_with_scores', - kind: 'message', - T: CommonDocumentWithScore, - repeated: true, - }, + { no: 1, name: "document_with_scores", kind: "message", T: CommonDocumentWithScore, repeated: true } ]); static fromBinary(bytes, options) { return new _GraphSearchResponse().fromBinary(bytes, options); @@ -37822,36 +33573,12 @@ var ConnectorConfig = class _ConnectorConfig extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.opensearch_clients_pb.ConnectorConfig'; + static typeName = "exa.opensearch_clients_pb.ConnectorConfig"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'slack', - kind: 'message', - T: ConnectorConfigSlack, - oneof: 'config', - }, - { - no: 2, - name: 'github', - kind: 'message', - T: ConnectorConfigGithub, - oneof: 'config', - }, - { - no: 3, - name: 'google_drive', - kind: 'message', - T: ConnectorConfigGoogleDrive, - oneof: 'config', - }, - { - no: 4, - name: 'jira', - kind: 'message', - T: ConnectorConfigJira, - oneof: 'config', - }, + { no: 1, name: "slack", kind: "message", T: ConnectorConfigSlack, oneof: "config" }, + { no: 2, name: "github", kind: "message", T: ConnectorConfigGithub, oneof: "config" }, + { no: 3, name: "google_drive", kind: "message", T: ConnectorConfigGoogleDrive, oneof: "config" }, + { no: 4, name: "jira", kind: "message", T: ConnectorConfigJira, oneof: "config" } ]); static fromBinary(bytes, options) { return new _ConnectorConfig().fromBinary(bytes, options); @@ -37880,22 +33607,10 @@ var ConnectorConfigSlack = class _ConnectorConfigSlack extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.opensearch_clients_pb.ConnectorConfigSlack'; + static typeName = "exa.opensearch_clients_pb.ConnectorConfigSlack"; static fields = proto3.util.newFieldList(() => [ - { - no: 3, - name: 'include_channel_ids', - kind: 'scalar', - T: 9, - repeated: true, - }, - { - no: 4, - name: 'exclude_channel_ids', - kind: 'scalar', - T: 9, - repeated: true, - }, + { no: 3, name: "include_channel_ids", kind: "scalar", T: 9, repeated: true }, + { no: 4, name: "exclude_channel_ids", kind: "scalar", T: 9, repeated: true } ]); static fromBinary(bytes, options) { return new _ConnectorConfigSlack().fromBinary(bytes, options); @@ -37916,7 +33631,7 @@ var ConnectorConfigGithub = class _ConnectorConfigGithub extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.opensearch_clients_pb.ConnectorConfigGithub'; + static typeName = "exa.opensearch_clients_pb.ConnectorConfigGithub"; static fields = proto3.util.newFieldList(() => []); static fromBinary(bytes, options) { return new _ConnectorConfigGithub().fromBinary(bytes, options); @@ -37945,10 +33660,10 @@ var ConnectorConfigGoogleDrive = class _ConnectorConfigGoogleDrive extends Messa proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.opensearch_clients_pb.ConnectorConfigGoogleDrive'; + static typeName = "exa.opensearch_clients_pb.ConnectorConfigGoogleDrive"; static fields = proto3.util.newFieldList(() => [ - { no: 2, name: 'include_drive_ids', kind: 'scalar', T: 9, repeated: true }, - { no: 3, name: 'exclude_drive_ids', kind: 'scalar', T: 9, repeated: true }, + { no: 2, name: "include_drive_ids", kind: "scalar", T: 9, repeated: true }, + { no: 3, name: "exclude_drive_ids", kind: "scalar", T: 9, repeated: true } ]); static fromBinary(bytes, options) { return new _ConnectorConfigGoogleDrive().fromBinary(bytes, options); @@ -37957,10 +33672,7 @@ var ConnectorConfigGoogleDrive = class _ConnectorConfigGoogleDrive extends Messa return new _ConnectorConfigGoogleDrive().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _ConnectorConfigGoogleDrive().fromJsonString( - jsonString, - options, - ); + return new _ConnectorConfigGoogleDrive().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_ConnectorConfigGoogleDrive, a, b); @@ -37972,7 +33684,7 @@ var ConnectorConfigJira = class _ConnectorConfigJira extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.opensearch_clients_pb.ConnectorConfigJira'; + static typeName = "exa.opensearch_clients_pb.ConnectorConfigJira"; static fields = proto3.util.newFieldList(() => []); static fromBinary(bytes, options) { return new _ConnectorConfigJira().fromBinary(bytes, options); @@ -37997,36 +33709,12 @@ var ConnectorInternalConfig = class _ConnectorInternalConfig extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.opensearch_clients_pb.ConnectorInternalConfig'; + static typeName = "exa.opensearch_clients_pb.ConnectorInternalConfig"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'slack', - kind: 'message', - T: ConnectorInternalConfigSlack, - oneof: 'config', - }, - { - no: 2, - name: 'github', - kind: 'message', - T: ConnectorInternalConfigGithub, - oneof: 'config', - }, - { - no: 3, - name: 'google_drive', - kind: 'message', - T: ConnectorInternalConfigGoogleDrive, - oneof: 'config', - }, - { - no: 4, - name: 'jira', - kind: 'message', - T: ConnectorInternalConfigJira, - oneof: 'config', - }, + { no: 1, name: "slack", kind: "message", T: ConnectorInternalConfigSlack, oneof: "config" }, + { no: 2, name: "github", kind: "message", T: ConnectorInternalConfigGithub, oneof: "config" }, + { no: 3, name: "google_drive", kind: "message", T: ConnectorInternalConfigGoogleDrive, oneof: "config" }, + { no: 4, name: "jira", kind: "message", T: ConnectorInternalConfigJira, oneof: "config" } ]); static fromBinary(bytes, options) { return new _ConnectorInternalConfig().fromBinary(bytes, options); @@ -38045,43 +33733,43 @@ var ConnectorInternalConfigSlack = class _ConnectorInternalConfigSlack extends M /** * @generated from field: string client_id = 2; */ - clientId = ''; + clientId = ""; /** * @generated from field: string client_secret = 3; */ - clientSecret = ''; + clientSecret = ""; /** * @generated from field: string signing_secret = 1; */ - signingSecret = ''; + signingSecret = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.opensearch_clients_pb.ConnectorInternalConfigSlack'; + static typeName = "exa.opensearch_clients_pb.ConnectorInternalConfigSlack"; static fields = proto3.util.newFieldList(() => [ { no: 2, - name: 'client_id', - kind: 'scalar', - T: 9, + name: "client_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 3, - name: 'client_secret', - kind: 'scalar', - T: 9, + name: "client_secret", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 1, - name: 'signing_secret', - kind: 'scalar', - T: 9, + name: "signing_secret", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _ConnectorInternalConfigSlack().fromBinary(bytes, options); @@ -38090,10 +33778,7 @@ var ConnectorInternalConfigSlack = class _ConnectorInternalConfigSlack extends M return new _ConnectorInternalConfigSlack().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _ConnectorInternalConfigSlack().fromJsonString( - jsonString, - options, - ); + return new _ConnectorInternalConfigSlack().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_ConnectorInternalConfigSlack, a, b); @@ -38103,32 +33788,32 @@ var GithubRepoConfig = class _GithubRepoConfig extends Message { /** * @generated from field: string organization = 1; */ - organization = ''; + organization = ""; /** * @generated from field: string repository = 2; */ - repository = ''; + repository = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.opensearch_clients_pb.GithubRepoConfig'; + static typeName = "exa.opensearch_clients_pb.GithubRepoConfig"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'organization', - kind: 'scalar', - T: 9, + name: "organization", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'repository', - kind: 'scalar', - T: 9, + name: "repository", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _GithubRepoConfig().fromBinary(bytes, options); @@ -38157,22 +33842,16 @@ var ConnectorInternalConfigGithub = class _ConnectorInternalConfigGithub extends proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.opensearch_clients_pb.ConnectorInternalConfigGithub'; + static typeName = "exa.opensearch_clients_pb.ConnectorInternalConfigGithub"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'installation_id', - kind: 'scalar', - T: 3, + name: "installation_id", + kind: "scalar", + T: 3 /* ScalarType.INT64 */ }, - { - no: 2, - name: 'repo_configs', - kind: 'message', - T: GithubRepoConfig, - repeated: true, - }, + { no: 2, name: "repo_configs", kind: "message", T: GithubRepoConfig, repeated: true } ]); static fromBinary(bytes, options) { return new _ConnectorInternalConfigGithub().fromBinary(bytes, options); @@ -38181,10 +33860,7 @@ var ConnectorInternalConfigGithub = class _ConnectorInternalConfigGithub extends return new _ConnectorInternalConfigGithub().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _ConnectorInternalConfigGithub().fromJsonString( - jsonString, - options, - ); + return new _ConnectorInternalConfigGithub().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_ConnectorInternalConfigGithub, a, b); @@ -38196,23 +33872,16 @@ var ConnectorInternalConfigGoogleDrive = class _ConnectorInternalConfigGoogleDri proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = - 'exa.opensearch_clients_pb.ConnectorInternalConfigGoogleDrive'; + static typeName = "exa.opensearch_clients_pb.ConnectorInternalConfigGoogleDrive"; static fields = proto3.util.newFieldList(() => []); static fromBinary(bytes, options) { return new _ConnectorInternalConfigGoogleDrive().fromBinary(bytes, options); } static fromJson(jsonValue, options) { - return new _ConnectorInternalConfigGoogleDrive().fromJson( - jsonValue, - options, - ); + return new _ConnectorInternalConfigGoogleDrive().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _ConnectorInternalConfigGoogleDrive().fromJsonString( - jsonString, - options, - ); + return new _ConnectorInternalConfigGoogleDrive().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_ConnectorInternalConfigGoogleDrive, a, b); @@ -38228,15 +33897,15 @@ var ConnectorInternalConfigJira = class _ConnectorInternalConfigJira extends Mes proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.opensearch_clients_pb.ConnectorInternalConfigJira'; + static typeName = "exa.opensearch_clients_pb.ConnectorInternalConfigJira"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'webhook_id', - kind: 'scalar', - T: 3, + name: "webhook_id", + kind: "scalar", + T: 3 /* ScalarType.INT64 */ - }, + } ]); static fromBinary(bytes, options) { return new _ConnectorInternalConfigJira().fromBinary(bytes, options); @@ -38245,10 +33914,7 @@ var ConnectorInternalConfigJira = class _ConnectorInternalConfigJira extends Mes return new _ConnectorInternalConfigJira().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _ConnectorInternalConfigJira().fromJsonString( - jsonString, - options, - ); + return new _ConnectorInternalConfigJira().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_ConnectorInternalConfigJira, a, b); @@ -38266,7 +33932,7 @@ var ConnectKnowledgeBaseAccountRequest = class _ConnectKnowledgeBaseAccountReque /** * @generated from field: string access_token = 3; */ - accessToken = ''; + accessToken = ""; /** * @generated from field: google.protobuf.Timestamp access_token_expires_at = 4; */ @@ -38274,7 +33940,7 @@ var ConnectKnowledgeBaseAccountRequest = class _ConnectKnowledgeBaseAccountReque /** * @generated from field: string refresh_token = 5; */ - refreshToken = ''; + refreshToken = ""; /** * @generated from field: google.protobuf.Timestamp refresh_token_expires_at = 6; */ @@ -38288,53 +33954,36 @@ var ConnectKnowledgeBaseAccountRequest = class _ConnectKnowledgeBaseAccountReque proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = - 'exa.opensearch_clients_pb.ConnectKnowledgeBaseAccountRequest'; + static typeName = "exa.opensearch_clients_pb.ConnectKnowledgeBaseAccountRequest"; static fields = proto3.util.newFieldList(() => [ - { no: 7, name: 'metadata', kind: 'message', T: ManagementMetadata }, - { - no: 2, - name: 'connector', - kind: 'enum', - T: proto3.getEnumType(ConnectorType), - }, + { no: 7, name: "metadata", kind: "message", T: ManagementMetadata }, + { no: 2, name: "connector", kind: "enum", T: proto3.getEnumType(ConnectorType) }, { no: 3, - name: 'access_token', - kind: 'scalar', - T: 9, + name: "access_token", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 4, name: 'access_token_expires_at', kind: 'message', T: Timestamp }, + { no: 4, name: "access_token_expires_at", kind: "message", T: Timestamp }, { no: 5, - name: 'refresh_token', - kind: 'scalar', - T: 9, + name: "refresh_token", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 6, name: 'refresh_token_expires_at', kind: 'message', T: Timestamp }, - { - no: 8, - name: 'additional_params', - kind: 'message', - T: ConnectorAdditionalParams, - }, + { no: 6, name: "refresh_token_expires_at", kind: "message", T: Timestamp }, + { no: 8, name: "additional_params", kind: "message", T: ConnectorAdditionalParams } ]); static fromBinary(bytes, options) { return new _ConnectKnowledgeBaseAccountRequest().fromBinary(bytes, options); } static fromJson(jsonValue, options) { - return new _ConnectKnowledgeBaseAccountRequest().fromJson( - jsonValue, - options, - ); + return new _ConnectKnowledgeBaseAccountRequest().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _ConnectKnowledgeBaseAccountRequest().fromJsonString( - jsonString, - options, - ); + return new _ConnectKnowledgeBaseAccountRequest().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_ConnectKnowledgeBaseAccountRequest, a, b); @@ -38354,34 +34003,19 @@ var DeleteKnowledgeBaseConnectionRequest = class _DeleteKnowledgeBaseConnectionR proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = - 'exa.opensearch_clients_pb.DeleteKnowledgeBaseConnectionRequest'; + static typeName = "exa.opensearch_clients_pb.DeleteKnowledgeBaseConnectionRequest"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'metadata', kind: 'message', T: ManagementMetadata }, - { - no: 2, - name: 'connector', - kind: 'enum', - T: proto3.getEnumType(ConnectorType), - }, + { no: 1, name: "metadata", kind: "message", T: ManagementMetadata }, + { no: 2, name: "connector", kind: "enum", T: proto3.getEnumType(ConnectorType) } ]); static fromBinary(bytes, options) { - return new _DeleteKnowledgeBaseConnectionRequest().fromBinary( - bytes, - options, - ); + return new _DeleteKnowledgeBaseConnectionRequest().fromBinary(bytes, options); } static fromJson(jsonValue, options) { - return new _DeleteKnowledgeBaseConnectionRequest().fromJson( - jsonValue, - options, - ); + return new _DeleteKnowledgeBaseConnectionRequest().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _DeleteKnowledgeBaseConnectionRequest().fromJsonString( - jsonString, - options, - ); + return new _DeleteKnowledgeBaseConnectionRequest().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_DeleteKnowledgeBaseConnectionRequest, a, b); @@ -38393,26 +34027,16 @@ var DeleteKnowledgeBaseConnectionResponse = class _DeleteKnowledgeBaseConnection proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = - 'exa.opensearch_clients_pb.DeleteKnowledgeBaseConnectionResponse'; + static typeName = "exa.opensearch_clients_pb.DeleteKnowledgeBaseConnectionResponse"; static fields = proto3.util.newFieldList(() => []); static fromBinary(bytes, options) { - return new _DeleteKnowledgeBaseConnectionResponse().fromBinary( - bytes, - options, - ); + return new _DeleteKnowledgeBaseConnectionResponse().fromBinary(bytes, options); } static fromJson(jsonValue, options) { - return new _DeleteKnowledgeBaseConnectionResponse().fromJson( - jsonValue, - options, - ); + return new _DeleteKnowledgeBaseConnectionResponse().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _DeleteKnowledgeBaseConnectionResponse().fromJsonString( - jsonString, - options, - ); + return new _DeleteKnowledgeBaseConnectionResponse().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_DeleteKnowledgeBaseConnectionResponse, a, b); @@ -38436,16 +34060,11 @@ var UpdateConnectorConfigRequest = class _UpdateConnectorConfigRequest extends M proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.opensearch_clients_pb.UpdateConnectorConfigRequest'; + static typeName = "exa.opensearch_clients_pb.UpdateConnectorConfigRequest"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'metadata', kind: 'message', T: ManagementMetadata }, - { - no: 2, - name: 'connector', - kind: 'enum', - T: proto3.getEnumType(ConnectorType), - }, - { no: 3, name: 'config', kind: 'message', T: ConnectorConfig }, + { no: 1, name: "metadata", kind: "message", T: ManagementMetadata }, + { no: 2, name: "connector", kind: "enum", T: proto3.getEnumType(ConnectorType) }, + { no: 3, name: "config", kind: "message", T: ConnectorConfig } ]); static fromBinary(bytes, options) { return new _UpdateConnectorConfigRequest().fromBinary(bytes, options); @@ -38454,10 +34073,7 @@ var UpdateConnectorConfigRequest = class _UpdateConnectorConfigRequest extends M return new _UpdateConnectorConfigRequest().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _UpdateConnectorConfigRequest().fromJsonString( - jsonString, - options, - ); + return new _UpdateConnectorConfigRequest().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_UpdateConnectorConfigRequest, a, b); @@ -38469,7 +34085,7 @@ var UpdateConnectorConfigResponse = class _UpdateConnectorConfigResponse extends proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.opensearch_clients_pb.UpdateConnectorConfigResponse'; + static typeName = "exa.opensearch_clients_pb.UpdateConnectorConfigResponse"; static fields = proto3.util.newFieldList(() => []); static fromBinary(bytes, options) { return new _UpdateConnectorConfigResponse().fromBinary(bytes, options); @@ -38478,10 +34094,7 @@ var UpdateConnectorConfigResponse = class _UpdateConnectorConfigResponse extends return new _UpdateConnectorConfigResponse().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _UpdateConnectorConfigResponse().fromJsonString( - jsonString, - options, - ); + return new _UpdateConnectorConfigResponse().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_UpdateConnectorConfigResponse, a, b); @@ -38497,22 +34110,10 @@ var ConnectorAdditionalParams = class _ConnectorAdditionalParams extends Message proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.opensearch_clients_pb.ConnectorAdditionalParams'; + static typeName = "exa.opensearch_clients_pb.ConnectorAdditionalParams"; static fields = proto3.util.newFieldList(() => [ - { - no: 2, - name: 'slack', - kind: 'message', - T: ConnectorAdditionalParamsSlack, - oneof: 'config', - }, - { - no: 1, - name: 'github', - kind: 'message', - T: ConnectorAdditionalParamsGithub, - oneof: 'config', - }, + { no: 2, name: "slack", kind: "message", T: ConnectorAdditionalParamsSlack, oneof: "config" }, + { no: 1, name: "github", kind: "message", T: ConnectorAdditionalParamsGithub, oneof: "config" } ]); static fromBinary(bytes, options) { return new _ConnectorAdditionalParams().fromBinary(bytes, options); @@ -38531,43 +34132,43 @@ var ConnectorAdditionalParamsSlack = class _ConnectorAdditionalParamsSlack exten /** * @generated from field: string client_id = 1; */ - clientId = ''; + clientId = ""; /** * @generated from field: string client_secret = 2; */ - clientSecret = ''; + clientSecret = ""; /** * @generated from field: string signing_secret = 3; */ - signingSecret = ''; + signingSecret = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.opensearch_clients_pb.ConnectorAdditionalParamsSlack'; + static typeName = "exa.opensearch_clients_pb.ConnectorAdditionalParamsSlack"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'client_id', - kind: 'scalar', - T: 9, + name: "client_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'client_secret', - kind: 'scalar', - T: 9, + name: "client_secret", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 3, - name: 'signing_secret', - kind: 'scalar', - T: 9, + name: "signing_secret", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _ConnectorAdditionalParamsSlack().fromBinary(bytes, options); @@ -38576,10 +34177,7 @@ var ConnectorAdditionalParamsSlack = class _ConnectorAdditionalParamsSlack exten return new _ConnectorAdditionalParamsSlack().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _ConnectorAdditionalParamsSlack().fromJsonString( - jsonString, - options, - ); + return new _ConnectorAdditionalParamsSlack().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_ConnectorAdditionalParamsSlack, a, b); @@ -38595,15 +34193,15 @@ var ConnectorAdditionalParamsGithub = class _ConnectorAdditionalParamsGithub ext proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.opensearch_clients_pb.ConnectorAdditionalParamsGithub'; + static typeName = "exa.opensearch_clients_pb.ConnectorAdditionalParamsGithub"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'installation_id', - kind: 'scalar', - T: 3, + name: "installation_id", + kind: "scalar", + T: 3 /* ScalarType.INT64 */ - }, + } ]); static fromBinary(bytes, options) { return new _ConnectorAdditionalParamsGithub().fromBinary(bytes, options); @@ -38612,10 +34210,7 @@ var ConnectorAdditionalParamsGithub = class _ConnectorAdditionalParamsGithub ext return new _ConnectorAdditionalParamsGithub().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _ConnectorAdditionalParamsGithub().fromJsonString( - jsonString, - options, - ); + return new _ConnectorAdditionalParamsGithub().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_ConnectorAdditionalParamsGithub, a, b); @@ -38627,26 +34222,16 @@ var ConnectKnowledgeBaseAccountResponse = class _ConnectKnowledgeBaseAccountResp proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = - 'exa.opensearch_clients_pb.ConnectKnowledgeBaseAccountResponse'; + static typeName = "exa.opensearch_clients_pb.ConnectKnowledgeBaseAccountResponse"; static fields = proto3.util.newFieldList(() => []); static fromBinary(bytes, options) { - return new _ConnectKnowledgeBaseAccountResponse().fromBinary( - bytes, - options, - ); + return new _ConnectKnowledgeBaseAccountResponse().fromBinary(bytes, options); } static fromJson(jsonValue, options) { - return new _ConnectKnowledgeBaseAccountResponse().fromJson( - jsonValue, - options, - ); + return new _ConnectKnowledgeBaseAccountResponse().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _ConnectKnowledgeBaseAccountResponse().fromJsonString( - jsonString, - options, - ); + return new _ConnectKnowledgeBaseAccountResponse().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_ConnectKnowledgeBaseAccountResponse, a, b); @@ -38666,10 +34251,10 @@ var CancelKnowledgeBaseJobsRequest = class _CancelKnowledgeBaseJobsRequest exten proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.opensearch_clients_pb.CancelKnowledgeBaseJobsRequest'; + static typeName = "exa.opensearch_clients_pb.CancelKnowledgeBaseJobsRequest"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'metadata', kind: 'message', T: ManagementMetadata }, - { no: 2, name: 'job_ids', kind: 'scalar', T: 3, repeated: true }, + { no: 1, name: "metadata", kind: "message", T: ManagementMetadata }, + { no: 2, name: "job_ids", kind: "scalar", T: 3, repeated: true } ]); static fromBinary(bytes, options) { return new _CancelKnowledgeBaseJobsRequest().fromBinary(bytes, options); @@ -38678,10 +34263,7 @@ var CancelKnowledgeBaseJobsRequest = class _CancelKnowledgeBaseJobsRequest exten return new _CancelKnowledgeBaseJobsRequest().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _CancelKnowledgeBaseJobsRequest().fromJsonString( - jsonString, - options, - ); + return new _CancelKnowledgeBaseJobsRequest().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_CancelKnowledgeBaseJobsRequest, a, b); @@ -38693,7 +34275,7 @@ var CancelKnowledgeBaseJobsResponse = class _CancelKnowledgeBaseJobsResponse ext proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.opensearch_clients_pb.CancelKnowledgeBaseJobsResponse'; + static typeName = "exa.opensearch_clients_pb.CancelKnowledgeBaseJobsResponse"; static fields = proto3.util.newFieldList(() => []); static fromBinary(bytes, options) { return new _CancelKnowledgeBaseJobsResponse().fromBinary(bytes, options); @@ -38702,10 +34284,7 @@ var CancelKnowledgeBaseJobsResponse = class _CancelKnowledgeBaseJobsResponse ext return new _CancelKnowledgeBaseJobsResponse().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _CancelKnowledgeBaseJobsResponse().fromJsonString( - jsonString, - options, - ); + return new _CancelKnowledgeBaseJobsResponse().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_CancelKnowledgeBaseJobsResponse, a, b); @@ -38725,21 +34304,16 @@ var DocumentTypeCount = class _DocumentTypeCount extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.opensearch_clients_pb.DocumentTypeCount'; + static typeName = "exa.opensearch_clients_pb.DocumentTypeCount"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'document_type', - kind: 'enum', - T: proto3.getEnumType(DocumentType), - }, + { no: 1, name: "document_type", kind: "enum", T: proto3.getEnumType(DocumentType) }, { no: 2, - name: 'count', - kind: 'scalar', - T: 3, + name: "count", + kind: "scalar", + T: 3 /* ScalarType.INT64 */ - }, + } ]); static fromBinary(bytes, options) { return new _DocumentTypeCount().fromBinary(bytes, options); @@ -38788,32 +34362,21 @@ var ConnectorState = class _ConnectorState extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.opensearch_clients_pb.ConnectorState'; + static typeName = "exa.opensearch_clients_pb.ConnectorState"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'connector', - kind: 'enum', - T: proto3.getEnumType(ConnectorType), - }, + { no: 1, name: "connector", kind: "enum", T: proto3.getEnumType(ConnectorType) }, { no: 2, - name: 'initialized', - kind: 'scalar', - T: 8, + name: "initialized", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, - { no: 3, name: 'config', kind: 'message', T: ConnectorConfig }, - { - no: 4, - name: 'document_type_counts', - kind: 'message', - T: DocumentTypeCount, - repeated: true, - }, - { no: 5, name: 'last_indexed_at', kind: 'message', T: Timestamp }, - { no: 6, name: 'unhealthy_since', kind: 'message', T: Timestamp }, - { no: 7, name: 'last_configured_at', kind: 'message', T: Timestamp }, + { no: 3, name: "config", kind: "message", T: ConnectorConfig }, + { no: 4, name: "document_type_counts", kind: "message", T: DocumentTypeCount, repeated: true }, + { no: 5, name: "last_indexed_at", kind: "message", T: Timestamp }, + { no: 6, name: "unhealthy_since", kind: "message", T: Timestamp }, + { no: 7, name: "last_configured_at", kind: "message", T: Timestamp } ]); static fromBinary(bytes, options) { return new _ConnectorState().fromBinary(bytes, options); @@ -38838,28 +34401,18 @@ var GetKnowledgeBaseConnectorStateRequest = class _GetKnowledgeBaseConnectorStat proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = - 'exa.opensearch_clients_pb.GetKnowledgeBaseConnectorStateRequest'; + static typeName = "exa.opensearch_clients_pb.GetKnowledgeBaseConnectorStateRequest"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'metadata', kind: 'message', T: ManagementMetadata }, + { no: 1, name: "metadata", kind: "message", T: ManagementMetadata } ]); static fromBinary(bytes, options) { - return new _GetKnowledgeBaseConnectorStateRequest().fromBinary( - bytes, - options, - ); + return new _GetKnowledgeBaseConnectorStateRequest().fromBinary(bytes, options); } static fromJson(jsonValue, options) { - return new _GetKnowledgeBaseConnectorStateRequest().fromJson( - jsonValue, - options, - ); + return new _GetKnowledgeBaseConnectorStateRequest().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _GetKnowledgeBaseConnectorStateRequest().fromJsonString( - jsonString, - options, - ); + return new _GetKnowledgeBaseConnectorStateRequest().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_GetKnowledgeBaseConnectorStateRequest, a, b); @@ -38875,34 +34428,18 @@ var GetKnowledgeBaseConnectorStateResponse = class _GetKnowledgeBaseConnectorSta proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = - 'exa.opensearch_clients_pb.GetKnowledgeBaseConnectorStateResponse'; + static typeName = "exa.opensearch_clients_pb.GetKnowledgeBaseConnectorStateResponse"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'connector_states', - kind: 'message', - T: ConnectorState, - repeated: true, - }, + { no: 1, name: "connector_states", kind: "message", T: ConnectorState, repeated: true } ]); static fromBinary(bytes, options) { - return new _GetKnowledgeBaseConnectorStateResponse().fromBinary( - bytes, - options, - ); + return new _GetKnowledgeBaseConnectorStateResponse().fromBinary(bytes, options); } static fromJson(jsonValue, options) { - return new _GetKnowledgeBaseConnectorStateResponse().fromJson( - jsonValue, - options, - ); + return new _GetKnowledgeBaseConnectorStateResponse().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _GetKnowledgeBaseConnectorStateResponse().fromJsonString( - jsonString, - options, - ); + return new _GetKnowledgeBaseConnectorStateResponse().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_GetKnowledgeBaseConnectorStateResponse, a, b); @@ -38926,22 +34463,17 @@ var JobState = class _JobState extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.opensearch_clients_pb.JobState'; + static typeName = "exa.opensearch_clients_pb.JobState"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'connector', - kind: 'enum', - T: proto3.getEnumType(ConnectorType), - }, + { no: 1, name: "connector", kind: "enum", T: proto3.getEnumType(ConnectorType) }, { no: 2, - name: 'id', - kind: 'scalar', - T: 3, + name: "id", + kind: "scalar", + T: 3 /* ScalarType.INT64 */ }, - { no: 3, name: 'status', kind: 'enum', T: proto3.getEnumType(JobStatus) }, + { no: 3, name: "status", kind: "enum", T: proto3.getEnumType(JobStatus) } ]); static fromBinary(bytes, options) { return new _JobState().fromBinary(bytes, options); @@ -38970,17 +34502,10 @@ var GetKnowledgeBaseJobStatesRequest = class _GetKnowledgeBaseJobStatesRequest e proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = - 'exa.opensearch_clients_pb.GetKnowledgeBaseJobStatesRequest'; + static typeName = "exa.opensearch_clients_pb.GetKnowledgeBaseJobStatesRequest"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'metadata', kind: 'message', T: ManagementMetadata }, - { - no: 2, - name: 'connector_types', - kind: 'enum', - T: proto3.getEnumType(ConnectorType), - repeated: true, - }, + { no: 1, name: "metadata", kind: "message", T: ManagementMetadata }, + { no: 2, name: "connector_types", kind: "enum", T: proto3.getEnumType(ConnectorType), repeated: true } ]); static fromBinary(bytes, options) { return new _GetKnowledgeBaseJobStatesRequest().fromBinary(bytes, options); @@ -38989,10 +34514,7 @@ var GetKnowledgeBaseJobStatesRequest = class _GetKnowledgeBaseJobStatesRequest e return new _GetKnowledgeBaseJobStatesRequest().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _GetKnowledgeBaseJobStatesRequest().fromJsonString( - jsonString, - options, - ); + return new _GetKnowledgeBaseJobStatesRequest().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_GetKnowledgeBaseJobStatesRequest, a, b); @@ -39008,25 +34530,18 @@ var GetKnowledgeBaseJobStatesResponse = class _GetKnowledgeBaseJobStatesResponse proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = - 'exa.opensearch_clients_pb.GetKnowledgeBaseJobStatesResponse'; + static typeName = "exa.opensearch_clients_pb.GetKnowledgeBaseJobStatesResponse"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'job_states', kind: 'message', T: JobState, repeated: true }, + { no: 1, name: "job_states", kind: "message", T: JobState, repeated: true } ]); static fromBinary(bytes, options) { return new _GetKnowledgeBaseJobStatesResponse().fromBinary(bytes, options); } static fromJson(jsonValue, options) { - return new _GetKnowledgeBaseJobStatesResponse().fromJson( - jsonValue, - options, - ); + return new _GetKnowledgeBaseJobStatesResponse().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _GetKnowledgeBaseJobStatesResponse().fromJsonString( - jsonString, - options, - ); + return new _GetKnowledgeBaseJobStatesResponse().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_GetKnowledgeBaseJobStatesResponse, a, b); @@ -39041,7 +34556,7 @@ var SlackMessagePayload = class _SlackMessagePayload extends Message { * * @generated from field: string dataset_id = 1; */ - datasetId = ''; + datasetId = ""; /** * Slack:[VERSION]:[CONVERSATION_ID]:[POSITION_IN_CONVERSATION]:[POSITION_IN_THREAD] * @@ -39049,7 +34564,7 @@ var SlackMessagePayload = class _SlackMessagePayload extends Message { * * @generated from field: string previous_message_dataset_id = 2; */ - previousMessageDatasetId = ''; + previousMessageDatasetId = ""; /** * Slack data * We intentionally do not use strong types for these fields. @@ -39060,39 +34575,39 @@ var SlackMessagePayload = class _SlackMessagePayload extends Message { * * @generated from field: string type = 3; */ - type = ''; + type = ""; /** * @generated from field: string channel_id = 4; */ - channelId = ''; + channelId = ""; /** * @generated from field: string user = 5; */ - user = ''; + user = ""; /** * @generated from field: string text = 6; */ - text = ''; + text = ""; /** * @generated from field: string timestamp = 7; */ - timestamp = ''; + timestamp = ""; /** * @generated from field: string thread_timestamp = 8; */ - threadTimestamp = ''; + threadTimestamp = ""; /** * @generated from field: string channel_name = 9; */ - channelName = ''; + channelName = ""; /** * @generated from field: string team_name = 10; */ - teamName = ''; + teamName = ""; /** * @generated from field: string team_id = 11; */ - teamId = ''; + teamId = ""; /** * @generated from field: bool is_private_channel = 12; */ @@ -39100,116 +34615,116 @@ var SlackMessagePayload = class _SlackMessagePayload extends Message { /** * @generated from field: string team_domain = 13; */ - teamDomain = ''; + teamDomain = ""; /** * @generated from field: string original_timestamp = 14; */ - originalTimestamp = ''; + originalTimestamp = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.opensearch_clients_pb.SlackMessagePayload'; + static typeName = "exa.opensearch_clients_pb.SlackMessagePayload"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'dataset_id', - kind: 'scalar', - T: 9, + name: "dataset_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'previous_message_dataset_id', - kind: 'scalar', - T: 9, + name: "previous_message_dataset_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 3, - name: 'type', - kind: 'scalar', - T: 9, + name: "type", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 4, - name: 'channel_id', - kind: 'scalar', - T: 9, + name: "channel_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 5, - name: 'user', - kind: 'scalar', - T: 9, + name: "user", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 6, - name: 'text', - kind: 'scalar', - T: 9, + name: "text", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 7, - name: 'timestamp', - kind: 'scalar', - T: 9, + name: "timestamp", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 8, - name: 'thread_timestamp', - kind: 'scalar', - T: 9, + name: "thread_timestamp", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 9, - name: 'channel_name', - kind: 'scalar', - T: 9, + name: "channel_name", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 10, - name: 'team_name', - kind: 'scalar', - T: 9, + name: "team_name", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 11, - name: 'team_id', - kind: 'scalar', - T: 9, + name: "team_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 12, - name: 'is_private_channel', - kind: 'scalar', - T: 8, + name: "is_private_channel", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 13, - name: 'team_domain', - kind: 'scalar', - T: 9, + name: "team_domain", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 14, - name: 'original_timestamp', - kind: 'scalar', - T: 9, + name: "original_timestamp", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _SlackMessagePayload().fromBinary(bytes, options); @@ -39228,23 +34743,23 @@ var SlackChannelPayload = class _SlackChannelPayload extends Message { /** * @generated from field: string type = 1; */ - type = ''; + type = ""; /** * @generated from field: string channel_id = 2; */ - channelId = ''; + channelId = ""; /** * @generated from field: string channel_name = 4; */ - channelName = ''; + channelName = ""; /** * @generated from field: string description = 7; */ - description = ''; + description = ""; /** * @generated from field: string team_id = 8; */ - teamId = ''; + teamId = ""; /** * @generated from field: bool is_private_channel = 9; */ @@ -39254,50 +34769,50 @@ var SlackChannelPayload = class _SlackChannelPayload extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.opensearch_clients_pb.SlackChannelPayload'; + static typeName = "exa.opensearch_clients_pb.SlackChannelPayload"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'type', - kind: 'scalar', - T: 9, + name: "type", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'channel_id', - kind: 'scalar', - T: 9, + name: "channel_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 4, - name: 'channel_name', - kind: 'scalar', - T: 9, + name: "channel_name", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 7, - name: 'description', - kind: 'scalar', - T: 9, + name: "description", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 8, - name: 'team_id', - kind: 'scalar', - T: 9, + name: "team_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 9, - name: 'is_private_channel', - kind: 'scalar', - T: 8, + name: "is_private_channel", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ - }, + } ]); static fromBinary(bytes, options) { return new _SlackChannelPayload().fromBinary(bytes, options); @@ -39322,22 +34837,10 @@ var SlackPayload = class _SlackPayload extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.opensearch_clients_pb.SlackPayload'; + static typeName = "exa.opensearch_clients_pb.SlackPayload"; static fields = proto3.util.newFieldList(() => [ - { - no: 13, - name: 'message', - kind: 'message', - T: SlackMessagePayload, - oneof: 'payload', - }, - { - no: 14, - name: 'channel', - kind: 'message', - T: SlackChannelPayload, - oneof: 'payload', - }, + { no: 13, name: "message", kind: "message", T: SlackMessagePayload, oneof: "payload" }, + { no: 14, name: "channel", kind: "message", T: SlackChannelPayload, oneof: "payload" } ]); static fromBinary(bytes, options) { return new _SlackPayload().fromBinary(bytes, options); @@ -39362,25 +34865,18 @@ var GetKnowledgeBaseWebhookUrlRequest = class _GetKnowledgeBaseWebhookUrlRequest proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = - 'exa.opensearch_clients_pb.GetKnowledgeBaseWebhookUrlRequest'; + static typeName = "exa.opensearch_clients_pb.GetKnowledgeBaseWebhookUrlRequest"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'metadata', kind: 'message', T: ManagementMetadata }, + { no: 1, name: "metadata", kind: "message", T: ManagementMetadata } ]); static fromBinary(bytes, options) { return new _GetKnowledgeBaseWebhookUrlRequest().fromBinary(bytes, options); } static fromJson(jsonValue, options) { - return new _GetKnowledgeBaseWebhookUrlRequest().fromJson( - jsonValue, - options, - ); + return new _GetKnowledgeBaseWebhookUrlRequest().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _GetKnowledgeBaseWebhookUrlRequest().fromJsonString( - jsonString, - options, - ); + return new _GetKnowledgeBaseWebhookUrlRequest().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_GetKnowledgeBaseWebhookUrlRequest, a, b); @@ -39390,37 +34886,30 @@ var GetKnowledgeBaseWebhookUrlResponse = class _GetKnowledgeBaseWebhookUrlRespon /** * @generated from field: string webhook_url = 1; */ - webhookUrl = ''; + webhookUrl = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = - 'exa.opensearch_clients_pb.GetKnowledgeBaseWebhookUrlResponse'; + static typeName = "exa.opensearch_clients_pb.GetKnowledgeBaseWebhookUrlResponse"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'webhook_url', - kind: 'scalar', - T: 9, + name: "webhook_url", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _GetKnowledgeBaseWebhookUrlResponse().fromBinary(bytes, options); } static fromJson(jsonValue, options) { - return new _GetKnowledgeBaseWebhookUrlResponse().fromJson( - jsonValue, - options, - ); + return new _GetKnowledgeBaseWebhookUrlResponse().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _GetKnowledgeBaseWebhookUrlResponse().fromJsonString( - jsonString, - options, - ); + return new _GetKnowledgeBaseWebhookUrlResponse().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_GetKnowledgeBaseWebhookUrlResponse, a, b); @@ -39436,30 +34925,18 @@ var GetConnectorInternalConfigRequest = class _GetConnectorInternalConfigRequest proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = - 'exa.opensearch_clients_pb.GetConnectorInternalConfigRequest'; + static typeName = "exa.opensearch_clients_pb.GetConnectorInternalConfigRequest"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'connector', - kind: 'enum', - T: proto3.getEnumType(ConnectorType), - }, + { no: 1, name: "connector", kind: "enum", T: proto3.getEnumType(ConnectorType) } ]); static fromBinary(bytes, options) { return new _GetConnectorInternalConfigRequest().fromBinary(bytes, options); } static fromJson(jsonValue, options) { - return new _GetConnectorInternalConfigRequest().fromJson( - jsonValue, - options, - ); + return new _GetConnectorInternalConfigRequest().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _GetConnectorInternalConfigRequest().fromJsonString( - jsonString, - options, - ); + return new _GetConnectorInternalConfigRequest().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_GetConnectorInternalConfigRequest, a, b); @@ -39475,30 +34952,18 @@ var GetConnectorInternalConfigResponse = class _GetConnectorInternalConfigRespon proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = - 'exa.opensearch_clients_pb.GetConnectorInternalConfigResponse'; + static typeName = "exa.opensearch_clients_pb.GetConnectorInternalConfigResponse"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'internal_config', - kind: 'message', - T: ConnectorInternalConfig, - }, + { no: 1, name: "internal_config", kind: "message", T: ConnectorInternalConfig } ]); static fromBinary(bytes, options) { return new _GetConnectorInternalConfigResponse().fromBinary(bytes, options); } static fromJson(jsonValue, options) { - return new _GetConnectorInternalConfigResponse().fromJson( - jsonValue, - options, - ); + return new _GetConnectorInternalConfigResponse().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _GetConnectorInternalConfigResponse().fromJsonString( - jsonString, - options, - ); + return new _GetConnectorInternalConfigResponse().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_GetConnectorInternalConfigResponse, a, b); @@ -39507,49 +34972,49 @@ var GetConnectorInternalConfigResponse = class _GetConnectorInternalConfigRespon // exa/proto_ts/dist/exa/browser_pb/browser_pb.js var ClickType; -(function (ClickType2) { - ClickType2[(ClickType2['UNSPECIFIED'] = 0)] = 'UNSPECIFIED'; - ClickType2[(ClickType2['LEFT'] = 1)] = 'LEFT'; - ClickType2[(ClickType2['RIGHT'] = 2)] = 'RIGHT'; - ClickType2[(ClickType2['DOUBLE'] = 3)] = 'DOUBLE'; - ClickType2[(ClickType2['NONE'] = 4)] = 'NONE'; +(function(ClickType2) { + ClickType2[ClickType2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + ClickType2[ClickType2["LEFT"] = 1] = "LEFT"; + ClickType2[ClickType2["RIGHT"] = 2] = "RIGHT"; + ClickType2[ClickType2["DOUBLE"] = 3] = "DOUBLE"; + ClickType2[ClickType2["NONE"] = 4] = "NONE"; })(ClickType || (ClickType = {})); -proto3.util.setEnumType(ClickType, 'exa.browser_pb.ClickType', [ - { no: 0, name: 'CLICK_TYPE_UNSPECIFIED' }, - { no: 1, name: 'CLICK_TYPE_LEFT' }, - { no: 2, name: 'CLICK_TYPE_RIGHT' }, - { no: 3, name: 'CLICK_TYPE_DOUBLE' }, - { no: 4, name: 'CLICK_TYPE_NONE' }, +proto3.util.setEnumType(ClickType, "exa.browser_pb.ClickType", [ + { no: 0, name: "CLICK_TYPE_UNSPECIFIED" }, + { no: 1, name: "CLICK_TYPE_LEFT" }, + { no: 2, name: "CLICK_TYPE_RIGHT" }, + { no: 3, name: "CLICK_TYPE_DOUBLE" }, + { no: 4, name: "CLICK_TYPE_NONE" } ]); var ScrollDirection; -(function (ScrollDirection2) { - ScrollDirection2[(ScrollDirection2['UNSPECIFIED'] = 0)] = 'UNSPECIFIED'; - ScrollDirection2[(ScrollDirection2['UP'] = 1)] = 'UP'; - ScrollDirection2[(ScrollDirection2['DOWN'] = 2)] = 'DOWN'; - ScrollDirection2[(ScrollDirection2['LEFT'] = 3)] = 'LEFT'; - ScrollDirection2[(ScrollDirection2['RIGHT'] = 4)] = 'RIGHT'; +(function(ScrollDirection2) { + ScrollDirection2[ScrollDirection2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + ScrollDirection2[ScrollDirection2["UP"] = 1] = "UP"; + ScrollDirection2[ScrollDirection2["DOWN"] = 2] = "DOWN"; + ScrollDirection2[ScrollDirection2["LEFT"] = 3] = "LEFT"; + ScrollDirection2[ScrollDirection2["RIGHT"] = 4] = "RIGHT"; })(ScrollDirection || (ScrollDirection = {})); -proto3.util.setEnumType(ScrollDirection, 'exa.browser_pb.ScrollDirection', [ - { no: 0, name: 'SCROLL_DIRECTION_UNSPECIFIED' }, - { no: 1, name: 'SCROLL_DIRECTION_UP' }, - { no: 2, name: 'SCROLL_DIRECTION_DOWN' }, - { no: 3, name: 'SCROLL_DIRECTION_LEFT' }, - { no: 4, name: 'SCROLL_DIRECTION_RIGHT' }, +proto3.util.setEnumType(ScrollDirection, "exa.browser_pb.ScrollDirection", [ + { no: 0, name: "SCROLL_DIRECTION_UNSPECIFIED" }, + { no: 1, name: "SCROLL_DIRECTION_UP" }, + { no: 2, name: "SCROLL_DIRECTION_DOWN" }, + { no: 3, name: "SCROLL_DIRECTION_LEFT" }, + { no: 4, name: "SCROLL_DIRECTION_RIGHT" } ]); var WindowState; -(function (WindowState2) { - WindowState2[(WindowState2['UNSPECIFIED'] = 0)] = 'UNSPECIFIED'; - WindowState2[(WindowState2['NORMAL'] = 1)] = 'NORMAL'; - WindowState2[(WindowState2['MINIMIZED'] = 2)] = 'MINIMIZED'; - WindowState2[(WindowState2['MAXIMIZED'] = 3)] = 'MAXIMIZED'; - WindowState2[(WindowState2['FULLSCREEN'] = 4)] = 'FULLSCREEN'; +(function(WindowState2) { + WindowState2[WindowState2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + WindowState2[WindowState2["NORMAL"] = 1] = "NORMAL"; + WindowState2[WindowState2["MINIMIZED"] = 2] = "MINIMIZED"; + WindowState2[WindowState2["MAXIMIZED"] = 3] = "MAXIMIZED"; + WindowState2[WindowState2["FULLSCREEN"] = 4] = "FULLSCREEN"; })(WindowState || (WindowState = {})); -proto3.util.setEnumType(WindowState, 'exa.browser_pb.WindowState', [ - { no: 0, name: 'WINDOW_STATE_UNSPECIFIED' }, - { no: 1, name: 'WINDOW_STATE_NORMAL' }, - { no: 2, name: 'WINDOW_STATE_MINIMIZED' }, - { no: 3, name: 'WINDOW_STATE_MAXIMIZED' }, - { no: 4, name: 'WINDOW_STATE_FULLSCREEN' }, +proto3.util.setEnumType(WindowState, "exa.browser_pb.WindowState", [ + { no: 0, name: "WINDOW_STATE_UNSPECIFIED" }, + { no: 1, name: "WINDOW_STATE_NORMAL" }, + { no: 2, name: "WINDOW_STATE_MINIMIZED" }, + { no: 3, name: "WINDOW_STATE_MAXIMIZED" }, + { no: 4, name: "WINDOW_STATE_FULLSCREEN" } ]); var SerializablePageState = class _SerializablePageState extends Message { /** @@ -39557,7 +35022,7 @@ var SerializablePageState = class _SerializablePageState extends Message { * * @generated from field: string page_id = 1; */ - pageId = ''; + pageId = ""; /** * @generated from field: exa.codeium_common_pb.BrowserPageMetadata metadata = 2; */ @@ -39586,7 +35051,7 @@ var SerializablePageState = class _SerializablePageState extends Message { /** * @generated from field: string serialized_dom_tree = 8; */ - serializedDomTree = ''; + serializedDomTree = ""; /** * @generated from field: exa.codeium_common_pb.Media media_screenshot = 9; */ @@ -39596,34 +35061,29 @@ var SerializablePageState = class _SerializablePageState extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.browser_pb.SerializablePageState'; + static typeName = "exa.browser_pb.SerializablePageState"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'page_id', - kind: 'scalar', - T: 9, + name: "page_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 2, name: 'metadata', kind: 'message', T: BrowserPageMetadata }, - { no: 3, name: 'dom_tree', kind: 'message', T: DOMTree }, - { no: 4, name: 'screenshot', kind: 'message', T: ImageData }, - { - no: 5, - name: 'agent_mouse_position', - kind: 'message', - T: AgentMousePosition, - }, - { no: 6, name: 'console_logs', kind: 'message', T: ConsoleLogScopeItem }, - { no: 7, name: 'added_time', kind: 'message', T: Timestamp }, + { no: 2, name: "metadata", kind: "message", T: BrowserPageMetadata }, + { no: 3, name: "dom_tree", kind: "message", T: DOMTree }, + { no: 4, name: "screenshot", kind: "message", T: ImageData }, + { no: 5, name: "agent_mouse_position", kind: "message", T: AgentMousePosition }, + { no: 6, name: "console_logs", kind: "message", T: ConsoleLogScopeItem }, + { no: 7, name: "added_time", kind: "message", T: Timestamp }, { no: 8, - name: 'serialized_dom_tree', - kind: 'scalar', - T: 9, + name: "serialized_dom_tree", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 9, name: 'media_screenshot', kind: 'message', T: Media }, + { no: 9, name: "media_screenshot", kind: "message", T: Media } ]); static fromBinary(bytes, options) { return new _SerializablePageState().fromBinary(bytes, options); @@ -39652,22 +35112,22 @@ var AgentMousePosition = class _AgentMousePosition extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.browser_pb.AgentMousePosition'; + static typeName = "exa.browser_pb.AgentMousePosition"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'x', - kind: 'scalar', - T: 5, + name: "x", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, { no: 2, - name: 'y', - kind: 'scalar', - T: 5, + name: "y", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ - }, + } ]); static fromBinary(bytes, options) { return new _AgentMousePosition().fromBinary(bytes, options); @@ -39685,1441 +35145,1059 @@ var AgentMousePosition = class _AgentMousePosition extends Message { // exa/proto_ts/dist/exa/cortex_pb/cortex_pb.js var InteractiveCascadeEditImportance; -(function (InteractiveCascadeEditImportance2) { - InteractiveCascadeEditImportance2[ - (InteractiveCascadeEditImportance2['UNSPECIFIED'] = 0) - ] = 'UNSPECIFIED'; - InteractiveCascadeEditImportance2[ - (InteractiveCascadeEditImportance2['LOW'] = 1) - ] = 'LOW'; - InteractiveCascadeEditImportance2[ - (InteractiveCascadeEditImportance2['MEDIUM'] = 2) - ] = 'MEDIUM'; - InteractiveCascadeEditImportance2[ - (InteractiveCascadeEditImportance2['HIGH'] = 3) - ] = 'HIGH'; +(function(InteractiveCascadeEditImportance2) { + InteractiveCascadeEditImportance2[InteractiveCascadeEditImportance2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + InteractiveCascadeEditImportance2[InteractiveCascadeEditImportance2["LOW"] = 1] = "LOW"; + InteractiveCascadeEditImportance2[InteractiveCascadeEditImportance2["MEDIUM"] = 2] = "MEDIUM"; + InteractiveCascadeEditImportance2[InteractiveCascadeEditImportance2["HIGH"] = 3] = "HIGH"; })(InteractiveCascadeEditImportance || (InteractiveCascadeEditImportance = {})); -proto3.util.setEnumType( - InteractiveCascadeEditImportance, - 'exa.cortex_pb.InteractiveCascadeEditImportance', - [ - { no: 0, name: 'INTERACTIVE_CASCADE_EDIT_IMPORTANCE_UNSPECIFIED' }, - { no: 1, name: 'INTERACTIVE_CASCADE_EDIT_IMPORTANCE_LOW' }, - { no: 2, name: 'INTERACTIVE_CASCADE_EDIT_IMPORTANCE_MEDIUM' }, - { no: 3, name: 'INTERACTIVE_CASCADE_EDIT_IMPORTANCE_HIGH' }, - ], -); +proto3.util.setEnumType(InteractiveCascadeEditImportance, "exa.cortex_pb.InteractiveCascadeEditImportance", [ + { no: 0, name: "INTERACTIVE_CASCADE_EDIT_IMPORTANCE_UNSPECIFIED" }, + { no: 1, name: "INTERACTIVE_CASCADE_EDIT_IMPORTANCE_LOW" }, + { no: 2, name: "INTERACTIVE_CASCADE_EDIT_IMPORTANCE_MEDIUM" }, + { no: 3, name: "INTERACTIVE_CASCADE_EDIT_IMPORTANCE_HIGH" } +]); var ActionStatus; -(function (ActionStatus2) { - ActionStatus2[(ActionStatus2['UNSPECIFIED'] = 0)] = 'UNSPECIFIED'; - ActionStatus2[(ActionStatus2['ERROR'] = 1)] = 'ERROR'; - ActionStatus2[(ActionStatus2['INITIALIZED'] = 2)] = 'INITIALIZED'; - ActionStatus2[(ActionStatus2['PREPARING'] = 3)] = 'PREPARING'; - ActionStatus2[(ActionStatus2['PREPARED'] = 4)] = 'PREPARED'; - ActionStatus2[(ActionStatus2['APPLYING'] = 5)] = 'APPLYING'; - ActionStatus2[(ActionStatus2['APPLIED'] = 6)] = 'APPLIED'; - ActionStatus2[(ActionStatus2['REJECTED'] = 7)] = 'REJECTED'; +(function(ActionStatus2) { + ActionStatus2[ActionStatus2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + ActionStatus2[ActionStatus2["ERROR"] = 1] = "ERROR"; + ActionStatus2[ActionStatus2["INITIALIZED"] = 2] = "INITIALIZED"; + ActionStatus2[ActionStatus2["PREPARING"] = 3] = "PREPARING"; + ActionStatus2[ActionStatus2["PREPARED"] = 4] = "PREPARED"; + ActionStatus2[ActionStatus2["APPLYING"] = 5] = "APPLYING"; + ActionStatus2[ActionStatus2["APPLIED"] = 6] = "APPLIED"; + ActionStatus2[ActionStatus2["REJECTED"] = 7] = "REJECTED"; })(ActionStatus || (ActionStatus = {})); -proto3.util.setEnumType(ActionStatus, 'exa.cortex_pb.ActionStatus', [ - { no: 0, name: 'ACTION_STATUS_UNSPECIFIED' }, - { no: 1, name: 'ACTION_STATUS_ERROR' }, - { no: 2, name: 'ACTION_STATUS_INITIALIZED' }, - { no: 3, name: 'ACTION_STATUS_PREPARING' }, - { no: 4, name: 'ACTION_STATUS_PREPARED' }, - { no: 5, name: 'ACTION_STATUS_APPLYING' }, - { no: 6, name: 'ACTION_STATUS_APPLIED' }, - { no: 7, name: 'ACTION_STATUS_REJECTED' }, +proto3.util.setEnumType(ActionStatus, "exa.cortex_pb.ActionStatus", [ + { no: 0, name: "ACTION_STATUS_UNSPECIFIED" }, + { no: 1, name: "ACTION_STATUS_ERROR" }, + { no: 2, name: "ACTION_STATUS_INITIALIZED" }, + { no: 3, name: "ACTION_STATUS_PREPARING" }, + { no: 4, name: "ACTION_STATUS_PREPARED" }, + { no: 5, name: "ACTION_STATUS_APPLYING" }, + { no: 6, name: "ACTION_STATUS_APPLIED" }, + { no: 7, name: "ACTION_STATUS_REJECTED" } ]); var PlanStatus2; -(function (PlanStatus3) { - PlanStatus3[(PlanStatus3['UNSPECIFIED'] = 0)] = 'UNSPECIFIED'; - PlanStatus3[(PlanStatus3['INITIALIZED'] = 1)] = 'INITIALIZED'; - PlanStatus3[(PlanStatus3['PLANNING'] = 2)] = 'PLANNING'; - PlanStatus3[(PlanStatus3['PLANNED'] = 3)] = 'PLANNED'; - PlanStatus3[(PlanStatus3['ERROR'] = 4)] = 'ERROR'; +(function(PlanStatus3) { + PlanStatus3[PlanStatus3["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + PlanStatus3[PlanStatus3["INITIALIZED"] = 1] = "INITIALIZED"; + PlanStatus3[PlanStatus3["PLANNING"] = 2] = "PLANNING"; + PlanStatus3[PlanStatus3["PLANNED"] = 3] = "PLANNED"; + PlanStatus3[PlanStatus3["ERROR"] = 4] = "ERROR"; })(PlanStatus2 || (PlanStatus2 = {})); -proto3.util.setEnumType(PlanStatus2, 'exa.cortex_pb.PlanStatus', [ - { no: 0, name: 'PLAN_STATUS_UNSPECIFIED' }, - { no: 1, name: 'PLAN_STATUS_INITIALIZED' }, - { no: 2, name: 'PLAN_STATUS_PLANNING' }, - { no: 3, name: 'PLAN_STATUS_PLANNED' }, - { no: 4, name: 'PLAN_STATUS_ERROR' }, +proto3.util.setEnumType(PlanStatus2, "exa.cortex_pb.PlanStatus", [ + { no: 0, name: "PLAN_STATUS_UNSPECIFIED" }, + { no: 1, name: "PLAN_STATUS_INITIALIZED" }, + { no: 2, name: "PLAN_STATUS_PLANNING" }, + { no: 3, name: "PLAN_STATUS_PLANNED" }, + { no: 4, name: "PLAN_STATUS_ERROR" } ]); var CortexRequestSource; -(function (CortexRequestSource2) { - CortexRequestSource2[(CortexRequestSource2['UNSPECIFIED'] = 0)] = - 'UNSPECIFIED'; - CortexRequestSource2[(CortexRequestSource2['CASCADE'] = 1)] = 'CASCADE'; - CortexRequestSource2[(CortexRequestSource2['USER_IMPLICIT'] = 2)] = - 'USER_IMPLICIT'; +(function(CortexRequestSource2) { + CortexRequestSource2[CortexRequestSource2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + CortexRequestSource2[CortexRequestSource2["CASCADE"] = 1] = "CASCADE"; + CortexRequestSource2[CortexRequestSource2["USER_IMPLICIT"] = 2] = "USER_IMPLICIT"; })(CortexRequestSource || (CortexRequestSource = {})); -proto3.util.setEnumType( - CortexRequestSource, - 'exa.cortex_pb.CortexRequestSource', - [ - { no: 0, name: 'CORTEX_REQUEST_SOURCE_UNSPECIFIED' }, - { no: 1, name: 'CORTEX_REQUEST_SOURCE_CASCADE' }, - { no: 2, name: 'CORTEX_REQUEST_SOURCE_USER_IMPLICIT' }, - ], -); +proto3.util.setEnumType(CortexRequestSource, "exa.cortex_pb.CortexRequestSource", [ + { no: 0, name: "CORTEX_REQUEST_SOURCE_UNSPECIFIED" }, + { no: 1, name: "CORTEX_REQUEST_SOURCE_CASCADE" }, + { no: 2, name: "CORTEX_REQUEST_SOURCE_USER_IMPLICIT" } +]); var WorkspaceType; -(function (WorkspaceType2) { - WorkspaceType2[(WorkspaceType2['UNSPECIFIED'] = 0)] = 'UNSPECIFIED'; - WorkspaceType2[(WorkspaceType2['GIT'] = 1)] = 'GIT'; - WorkspaceType2[(WorkspaceType2['PIPER'] = 2)] = 'PIPER'; - WorkspaceType2[(WorkspaceType2['FIG'] = 3)] = 'FIG'; - WorkspaceType2[(WorkspaceType2['JJ_PIPER'] = 4)] = 'JJ_PIPER'; - WorkspaceType2[(WorkspaceType2['JJ_GIT'] = 5)] = 'JJ_GIT'; +(function(WorkspaceType2) { + WorkspaceType2[WorkspaceType2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + WorkspaceType2[WorkspaceType2["GIT"] = 1] = "GIT"; + WorkspaceType2[WorkspaceType2["PIPER"] = 2] = "PIPER"; + WorkspaceType2[WorkspaceType2["FIG"] = 3] = "FIG"; + WorkspaceType2[WorkspaceType2["JJ_PIPER"] = 4] = "JJ_PIPER"; + WorkspaceType2[WorkspaceType2["JJ_GIT"] = 5] = "JJ_GIT"; })(WorkspaceType || (WorkspaceType = {})); -proto3.util.setEnumType(WorkspaceType, 'exa.cortex_pb.WorkspaceType', [ - { no: 0, name: 'WORKSPACE_TYPE_UNSPECIFIED' }, - { no: 1, name: 'WORKSPACE_TYPE_GIT' }, - { no: 2, name: 'WORKSPACE_TYPE_PIPER' }, - { no: 3, name: 'WORKSPACE_TYPE_FIG' }, - { no: 4, name: 'WORKSPACE_TYPE_JJ_PIPER' }, - { no: 5, name: 'WORKSPACE_TYPE_JJ_GIT' }, +proto3.util.setEnumType(WorkspaceType, "exa.cortex_pb.WorkspaceType", [ + { no: 0, name: "WORKSPACE_TYPE_UNSPECIFIED" }, + { no: 1, name: "WORKSPACE_TYPE_GIT" }, + { no: 2, name: "WORKSPACE_TYPE_PIPER" }, + { no: 3, name: "WORKSPACE_TYPE_FIG" }, + { no: 4, name: "WORKSPACE_TYPE_JJ_PIPER" }, + { no: 5, name: "WORKSPACE_TYPE_JJ_GIT" } ]); var CortexTrajectorySource; -(function (CortexTrajectorySource2) { - CortexTrajectorySource2[(CortexTrajectorySource2['UNSPECIFIED'] = 0)] = - 'UNSPECIFIED'; - CortexTrajectorySource2[(CortexTrajectorySource2['CASCADE_CLIENT'] = 1)] = - 'CASCADE_CLIENT'; - CortexTrajectorySource2[(CortexTrajectorySource2['EXPLAIN_PROBLEM'] = 2)] = - 'EXPLAIN_PROBLEM'; - CortexTrajectorySource2[(CortexTrajectorySource2['REFACTOR_FUNCTION'] = 3)] = - 'REFACTOR_FUNCTION'; - CortexTrajectorySource2[(CortexTrajectorySource2['EVAL'] = 4)] = 'EVAL'; - CortexTrajectorySource2[(CortexTrajectorySource2['EVAL_TASK'] = 5)] = - 'EVAL_TASK'; - CortexTrajectorySource2[(CortexTrajectorySource2['ASYNC_PRR'] = 6)] = - 'ASYNC_PRR'; - CortexTrajectorySource2[(CortexTrajectorySource2['ASYNC_CF'] = 7)] = - 'ASYNC_CF'; - CortexTrajectorySource2[(CortexTrajectorySource2['ASYNC_SL'] = 8)] = - 'ASYNC_SL'; - CortexTrajectorySource2[(CortexTrajectorySource2['ASYNC_PRD'] = 9)] = - 'ASYNC_PRD'; - CortexTrajectorySource2[(CortexTrajectorySource2['ASYNC_CM'] = 10)] = - 'ASYNC_CM'; - CortexTrajectorySource2[ - (CortexTrajectorySource2['INTERACTIVE_CASCADE'] = 12) - ] = 'INTERACTIVE_CASCADE'; - CortexTrajectorySource2[(CortexTrajectorySource2['REPLAY'] = 13)] = 'REPLAY'; - CortexTrajectorySource2[(CortexTrajectorySource2['SDK'] = 15)] = 'SDK'; +(function(CortexTrajectorySource2) { + CortexTrajectorySource2[CortexTrajectorySource2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + CortexTrajectorySource2[CortexTrajectorySource2["CASCADE_CLIENT"] = 1] = "CASCADE_CLIENT"; + CortexTrajectorySource2[CortexTrajectorySource2["EXPLAIN_PROBLEM"] = 2] = "EXPLAIN_PROBLEM"; + CortexTrajectorySource2[CortexTrajectorySource2["REFACTOR_FUNCTION"] = 3] = "REFACTOR_FUNCTION"; + CortexTrajectorySource2[CortexTrajectorySource2["EVAL"] = 4] = "EVAL"; + CortexTrajectorySource2[CortexTrajectorySource2["EVAL_TASK"] = 5] = "EVAL_TASK"; + CortexTrajectorySource2[CortexTrajectorySource2["ASYNC_PRR"] = 6] = "ASYNC_PRR"; + CortexTrajectorySource2[CortexTrajectorySource2["ASYNC_CF"] = 7] = "ASYNC_CF"; + CortexTrajectorySource2[CortexTrajectorySource2["ASYNC_SL"] = 8] = "ASYNC_SL"; + CortexTrajectorySource2[CortexTrajectorySource2["ASYNC_PRD"] = 9] = "ASYNC_PRD"; + CortexTrajectorySource2[CortexTrajectorySource2["ASYNC_CM"] = 10] = "ASYNC_CM"; + CortexTrajectorySource2[CortexTrajectorySource2["INTERACTIVE_CASCADE"] = 12] = "INTERACTIVE_CASCADE"; + CortexTrajectorySource2[CortexTrajectorySource2["REPLAY"] = 13] = "REPLAY"; + CortexTrajectorySource2[CortexTrajectorySource2["SDK"] = 15] = "SDK"; })(CortexTrajectorySource || (CortexTrajectorySource = {})); -proto3.util.setEnumType( - CortexTrajectorySource, - 'exa.cortex_pb.CortexTrajectorySource', - [ - { no: 0, name: 'CORTEX_TRAJECTORY_SOURCE_UNSPECIFIED' }, - { no: 1, name: 'CORTEX_TRAJECTORY_SOURCE_CASCADE_CLIENT' }, - { no: 2, name: 'CORTEX_TRAJECTORY_SOURCE_EXPLAIN_PROBLEM' }, - { no: 3, name: 'CORTEX_TRAJECTORY_SOURCE_REFACTOR_FUNCTION' }, - { no: 4, name: 'CORTEX_TRAJECTORY_SOURCE_EVAL' }, - { no: 5, name: 'CORTEX_TRAJECTORY_SOURCE_EVAL_TASK' }, - { no: 6, name: 'CORTEX_TRAJECTORY_SOURCE_ASYNC_PRR' }, - { no: 7, name: 'CORTEX_TRAJECTORY_SOURCE_ASYNC_CF' }, - { no: 8, name: 'CORTEX_TRAJECTORY_SOURCE_ASYNC_SL' }, - { no: 9, name: 'CORTEX_TRAJECTORY_SOURCE_ASYNC_PRD' }, - { no: 10, name: 'CORTEX_TRAJECTORY_SOURCE_ASYNC_CM' }, - { no: 12, name: 'CORTEX_TRAJECTORY_SOURCE_INTERACTIVE_CASCADE' }, - { no: 13, name: 'CORTEX_TRAJECTORY_SOURCE_REPLAY' }, - { no: 15, name: 'CORTEX_TRAJECTORY_SOURCE_SDK' }, - ], -); +proto3.util.setEnumType(CortexTrajectorySource, "exa.cortex_pb.CortexTrajectorySource", [ + { no: 0, name: "CORTEX_TRAJECTORY_SOURCE_UNSPECIFIED" }, + { no: 1, name: "CORTEX_TRAJECTORY_SOURCE_CASCADE_CLIENT" }, + { no: 2, name: "CORTEX_TRAJECTORY_SOURCE_EXPLAIN_PROBLEM" }, + { no: 3, name: "CORTEX_TRAJECTORY_SOURCE_REFACTOR_FUNCTION" }, + { no: 4, name: "CORTEX_TRAJECTORY_SOURCE_EVAL" }, + { no: 5, name: "CORTEX_TRAJECTORY_SOURCE_EVAL_TASK" }, + { no: 6, name: "CORTEX_TRAJECTORY_SOURCE_ASYNC_PRR" }, + { no: 7, name: "CORTEX_TRAJECTORY_SOURCE_ASYNC_CF" }, + { no: 8, name: "CORTEX_TRAJECTORY_SOURCE_ASYNC_SL" }, + { no: 9, name: "CORTEX_TRAJECTORY_SOURCE_ASYNC_PRD" }, + { no: 10, name: "CORTEX_TRAJECTORY_SOURCE_ASYNC_CM" }, + { no: 12, name: "CORTEX_TRAJECTORY_SOURCE_INTERACTIVE_CASCADE" }, + { no: 13, name: "CORTEX_TRAJECTORY_SOURCE_REPLAY" }, + { no: 15, name: "CORTEX_TRAJECTORY_SOURCE_SDK" } +]); var CortexTrajectoryType; -(function (CortexTrajectoryType2) { - CortexTrajectoryType2[(CortexTrajectoryType2['UNSPECIFIED'] = 0)] = - 'UNSPECIFIED'; - CortexTrajectoryType2[(CortexTrajectoryType2['USER_MAINLINE'] = 1)] = - 'USER_MAINLINE'; - CortexTrajectoryType2[(CortexTrajectoryType2['USER_GRANULAR'] = 2)] = - 'USER_GRANULAR'; - CortexTrajectoryType2[(CortexTrajectoryType2['SUPERCOMPLETE'] = 3)] = - 'SUPERCOMPLETE'; - CortexTrajectoryType2[(CortexTrajectoryType2['CASCADE'] = 4)] = 'CASCADE'; - CortexTrajectoryType2[(CortexTrajectoryType2['CHECKPOINT'] = 6)] = - 'CHECKPOINT'; - CortexTrajectoryType2[(CortexTrajectoryType2['APPLIER'] = 11)] = 'APPLIER'; - CortexTrajectoryType2[(CortexTrajectoryType2['TOOL_CALL_PROPOSAL'] = 12)] = - 'TOOL_CALL_PROPOSAL'; - CortexTrajectoryType2[(CortexTrajectoryType2['TRAJECTORY_CHOICE'] = 13)] = - 'TRAJECTORY_CHOICE'; - CortexTrajectoryType2[(CortexTrajectoryType2['LLM_JUDGE'] = 14)] = - 'LLM_JUDGE'; - CortexTrajectoryType2[(CortexTrajectoryType2['INTERACTIVE_CASCADE'] = 17)] = - 'INTERACTIVE_CASCADE'; - CortexTrajectoryType2[(CortexTrajectoryType2['BRAIN_UPDATE'] = 16)] = - 'BRAIN_UPDATE'; - CortexTrajectoryType2[(CortexTrajectoryType2['BROWSER'] = 20)] = 'BROWSER'; - CortexTrajectoryType2[(CortexTrajectoryType2['KNOWLEDGE_GENERATION'] = 21)] = - 'KNOWLEDGE_GENERATION'; +(function(CortexTrajectoryType2) { + CortexTrajectoryType2[CortexTrajectoryType2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + CortexTrajectoryType2[CortexTrajectoryType2["USER_MAINLINE"] = 1] = "USER_MAINLINE"; + CortexTrajectoryType2[CortexTrajectoryType2["USER_GRANULAR"] = 2] = "USER_GRANULAR"; + CortexTrajectoryType2[CortexTrajectoryType2["SUPERCOMPLETE"] = 3] = "SUPERCOMPLETE"; + CortexTrajectoryType2[CortexTrajectoryType2["CASCADE"] = 4] = "CASCADE"; + CortexTrajectoryType2[CortexTrajectoryType2["CHECKPOINT"] = 6] = "CHECKPOINT"; + CortexTrajectoryType2[CortexTrajectoryType2["APPLIER"] = 11] = "APPLIER"; + CortexTrajectoryType2[CortexTrajectoryType2["TOOL_CALL_PROPOSAL"] = 12] = "TOOL_CALL_PROPOSAL"; + CortexTrajectoryType2[CortexTrajectoryType2["TRAJECTORY_CHOICE"] = 13] = "TRAJECTORY_CHOICE"; + CortexTrajectoryType2[CortexTrajectoryType2["LLM_JUDGE"] = 14] = "LLM_JUDGE"; + CortexTrajectoryType2[CortexTrajectoryType2["INTERACTIVE_CASCADE"] = 17] = "INTERACTIVE_CASCADE"; + CortexTrajectoryType2[CortexTrajectoryType2["BRAIN_UPDATE"] = 16] = "BRAIN_UPDATE"; + CortexTrajectoryType2[CortexTrajectoryType2["BROWSER"] = 20] = "BROWSER"; + CortexTrajectoryType2[CortexTrajectoryType2["KNOWLEDGE_GENERATION"] = 21] = "KNOWLEDGE_GENERATION"; })(CortexTrajectoryType || (CortexTrajectoryType = {})); -proto3.util.setEnumType( - CortexTrajectoryType, - 'exa.cortex_pb.CortexTrajectoryType', - [ - { no: 0, name: 'CORTEX_TRAJECTORY_TYPE_UNSPECIFIED' }, - { no: 1, name: 'CORTEX_TRAJECTORY_TYPE_USER_MAINLINE' }, - { no: 2, name: 'CORTEX_TRAJECTORY_TYPE_USER_GRANULAR' }, - { no: 3, name: 'CORTEX_TRAJECTORY_TYPE_SUPERCOMPLETE' }, - { no: 4, name: 'CORTEX_TRAJECTORY_TYPE_CASCADE' }, - { no: 6, name: 'CORTEX_TRAJECTORY_TYPE_CHECKPOINT' }, - { no: 11, name: 'CORTEX_TRAJECTORY_TYPE_APPLIER' }, - { no: 12, name: 'CORTEX_TRAJECTORY_TYPE_TOOL_CALL_PROPOSAL' }, - { no: 13, name: 'CORTEX_TRAJECTORY_TYPE_TRAJECTORY_CHOICE' }, - { no: 14, name: 'CORTEX_TRAJECTORY_TYPE_LLM_JUDGE' }, - { no: 17, name: 'CORTEX_TRAJECTORY_TYPE_INTERACTIVE_CASCADE' }, - { no: 16, name: 'CORTEX_TRAJECTORY_TYPE_BRAIN_UPDATE' }, - { no: 20, name: 'CORTEX_TRAJECTORY_TYPE_BROWSER' }, - { no: 21, name: 'CORTEX_TRAJECTORY_TYPE_KNOWLEDGE_GENERATION' }, - ], -); +proto3.util.setEnumType(CortexTrajectoryType, "exa.cortex_pb.CortexTrajectoryType", [ + { no: 0, name: "CORTEX_TRAJECTORY_TYPE_UNSPECIFIED" }, + { no: 1, name: "CORTEX_TRAJECTORY_TYPE_USER_MAINLINE" }, + { no: 2, name: "CORTEX_TRAJECTORY_TYPE_USER_GRANULAR" }, + { no: 3, name: "CORTEX_TRAJECTORY_TYPE_SUPERCOMPLETE" }, + { no: 4, name: "CORTEX_TRAJECTORY_TYPE_CASCADE" }, + { no: 6, name: "CORTEX_TRAJECTORY_TYPE_CHECKPOINT" }, + { no: 11, name: "CORTEX_TRAJECTORY_TYPE_APPLIER" }, + { no: 12, name: "CORTEX_TRAJECTORY_TYPE_TOOL_CALL_PROPOSAL" }, + { no: 13, name: "CORTEX_TRAJECTORY_TYPE_TRAJECTORY_CHOICE" }, + { no: 14, name: "CORTEX_TRAJECTORY_TYPE_LLM_JUDGE" }, + { no: 17, name: "CORTEX_TRAJECTORY_TYPE_INTERACTIVE_CASCADE" }, + { no: 16, name: "CORTEX_TRAJECTORY_TYPE_BRAIN_UPDATE" }, + { no: 20, name: "CORTEX_TRAJECTORY_TYPE_BROWSER" }, + { no: 21, name: "CORTEX_TRAJECTORY_TYPE_KNOWLEDGE_GENERATION" } +]); var CortexTrajectoryReferenceType; -(function (CortexTrajectoryReferenceType2) { - CortexTrajectoryReferenceType2[ - (CortexTrajectoryReferenceType2['UNSPECIFIED'] = 0) - ] = 'UNSPECIFIED'; - CortexTrajectoryReferenceType2[ - (CortexTrajectoryReferenceType2['PRUNE'] = 1) - ] = 'PRUNE'; - CortexTrajectoryReferenceType2[(CortexTrajectoryReferenceType2['FORK'] = 2)] = - 'FORK'; +(function(CortexTrajectoryReferenceType2) { + CortexTrajectoryReferenceType2[CortexTrajectoryReferenceType2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + CortexTrajectoryReferenceType2[CortexTrajectoryReferenceType2["PRUNE"] = 1] = "PRUNE"; + CortexTrajectoryReferenceType2[CortexTrajectoryReferenceType2["FORK"] = 2] = "FORK"; })(CortexTrajectoryReferenceType || (CortexTrajectoryReferenceType = {})); -proto3.util.setEnumType( - CortexTrajectoryReferenceType, - 'exa.cortex_pb.CortexTrajectoryReferenceType', - [ - { no: 0, name: 'CORTEX_TRAJECTORY_REFERENCE_TYPE_UNSPECIFIED' }, - { no: 1, name: 'CORTEX_TRAJECTORY_REFERENCE_TYPE_PRUNE' }, - { no: 2, name: 'CORTEX_TRAJECTORY_REFERENCE_TYPE_FORK' }, - ], -); +proto3.util.setEnumType(CortexTrajectoryReferenceType, "exa.cortex_pb.CortexTrajectoryReferenceType", [ + { no: 0, name: "CORTEX_TRAJECTORY_REFERENCE_TYPE_UNSPECIFIED" }, + { no: 1, name: "CORTEX_TRAJECTORY_REFERENCE_TYPE_PRUNE" }, + { no: 2, name: "CORTEX_TRAJECTORY_REFERENCE_TYPE_FORK" } +]); var RetryReason; -(function (RetryReason2) { - RetryReason2[(RetryReason2['UNSPECIFIED'] = 0)] = 'UNSPECIFIED'; - RetryReason2[(RetryReason2['API_RETRYABLE'] = 1)] = 'API_RETRYABLE'; - RetryReason2[(RetryReason2['MODEL_CORRECTABLE'] = 2)] = 'MODEL_CORRECTABLE'; - RetryReason2[(RetryReason2['NON_RECOVERABLE'] = 3)] = 'NON_RECOVERABLE'; +(function(RetryReason2) { + RetryReason2[RetryReason2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + RetryReason2[RetryReason2["API_RETRYABLE"] = 1] = "API_RETRYABLE"; + RetryReason2[RetryReason2["MODEL_CORRECTABLE"] = 2] = "MODEL_CORRECTABLE"; + RetryReason2[RetryReason2["NON_RECOVERABLE"] = 3] = "NON_RECOVERABLE"; })(RetryReason || (RetryReason = {})); -proto3.util.setEnumType(RetryReason, 'exa.cortex_pb.RetryReason', [ - { no: 0, name: 'RETRY_REASON_UNSPECIFIED' }, - { no: 1, name: 'RETRY_REASON_API_RETRYABLE' }, - { no: 2, name: 'RETRY_REASON_MODEL_CORRECTABLE' }, - { no: 3, name: 'RETRY_REASON_NON_RECOVERABLE' }, +proto3.util.setEnumType(RetryReason, "exa.cortex_pb.RetryReason", [ + { no: 0, name: "RETRY_REASON_UNSPECIFIED" }, + { no: 1, name: "RETRY_REASON_API_RETRYABLE" }, + { no: 2, name: "RETRY_REASON_MODEL_CORRECTABLE" }, + { no: 3, name: "RETRY_REASON_NON_RECOVERABLE" } ]); var TruncationReason; -(function (TruncationReason2) { - TruncationReason2[(TruncationReason2['UNSPECIFIED'] = 0)] = 'UNSPECIFIED'; - TruncationReason2[(TruncationReason2['PROMPT_CACHE_TTL_EXPIRED'] = 1)] = - 'PROMPT_CACHE_TTL_EXPIRED'; - TruncationReason2[(TruncationReason2['MAX_TOKEN_LIMIT'] = 2)] = - 'MAX_TOKEN_LIMIT'; +(function(TruncationReason2) { + TruncationReason2[TruncationReason2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + TruncationReason2[TruncationReason2["PROMPT_CACHE_TTL_EXPIRED"] = 1] = "PROMPT_CACHE_TTL_EXPIRED"; + TruncationReason2[TruncationReason2["MAX_TOKEN_LIMIT"] = 2] = "MAX_TOKEN_LIMIT"; })(TruncationReason || (TruncationReason = {})); -proto3.util.setEnumType(TruncationReason, 'exa.cortex_pb.TruncationReason', [ - { no: 0, name: 'TRUNCATION_REASON_UNSPECIFIED' }, - { no: 1, name: 'TRUNCATION_REASON_PROMPT_CACHE_TTL_EXPIRED' }, - { no: 2, name: 'TRUNCATION_REASON_MAX_TOKEN_LIMIT' }, +proto3.util.setEnumType(TruncationReason, "exa.cortex_pb.TruncationReason", [ + { no: 0, name: "TRUNCATION_REASON_UNSPECIFIED" }, + { no: 1, name: "TRUNCATION_REASON_PROMPT_CACHE_TTL_EXPIRED" }, + { no: 2, name: "TRUNCATION_REASON_MAX_TOKEN_LIMIT" } ]); var CortexStepSource; -(function (CortexStepSource2) { - CortexStepSource2[(CortexStepSource2['UNSPECIFIED'] = 0)] = 'UNSPECIFIED'; - CortexStepSource2[(CortexStepSource2['MODEL'] = 2)] = 'MODEL'; - CortexStepSource2[(CortexStepSource2['USER_IMPLICIT'] = 3)] = 'USER_IMPLICIT'; - CortexStepSource2[(CortexStepSource2['USER_EXPLICIT'] = 4)] = 'USER_EXPLICIT'; - CortexStepSource2[(CortexStepSource2['SYSTEM'] = 5)] = 'SYSTEM'; - CortexStepSource2[(CortexStepSource2['SYSTEM_SDK'] = 6)] = 'SYSTEM_SDK'; +(function(CortexStepSource2) { + CortexStepSource2[CortexStepSource2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + CortexStepSource2[CortexStepSource2["MODEL"] = 2] = "MODEL"; + CortexStepSource2[CortexStepSource2["USER_IMPLICIT"] = 3] = "USER_IMPLICIT"; + CortexStepSource2[CortexStepSource2["USER_EXPLICIT"] = 4] = "USER_EXPLICIT"; + CortexStepSource2[CortexStepSource2["SYSTEM"] = 5] = "SYSTEM"; + CortexStepSource2[CortexStepSource2["SYSTEM_SDK"] = 6] = "SYSTEM_SDK"; })(CortexStepSource || (CortexStepSource = {})); -proto3.util.setEnumType(CortexStepSource, 'exa.cortex_pb.CortexStepSource', [ - { no: 0, name: 'CORTEX_STEP_SOURCE_UNSPECIFIED' }, - { no: 2, name: 'CORTEX_STEP_SOURCE_MODEL' }, - { no: 3, name: 'CORTEX_STEP_SOURCE_USER_IMPLICIT' }, - { no: 4, name: 'CORTEX_STEP_SOURCE_USER_EXPLICIT' }, - { no: 5, name: 'CORTEX_STEP_SOURCE_SYSTEM' }, - { no: 6, name: 'CORTEX_STEP_SOURCE_SYSTEM_SDK' }, +proto3.util.setEnumType(CortexStepSource, "exa.cortex_pb.CortexStepSource", [ + { no: 0, name: "CORTEX_STEP_SOURCE_UNSPECIFIED" }, + { no: 2, name: "CORTEX_STEP_SOURCE_MODEL" }, + { no: 3, name: "CORTEX_STEP_SOURCE_USER_IMPLICIT" }, + { no: 4, name: "CORTEX_STEP_SOURCE_USER_EXPLICIT" }, + { no: 5, name: "CORTEX_STEP_SOURCE_SYSTEM" }, + { no: 6, name: "CORTEX_STEP_SOURCE_SYSTEM_SDK" } ]); var CortexStepCreditReason; -(function (CortexStepCreditReason2) { - CortexStepCreditReason2[(CortexStepCreditReason2['UNSPECIFIED'] = 0)] = - 'UNSPECIFIED'; - CortexStepCreditReason2[ - (CortexStepCreditReason2['LINT_FIXING_DISCOUNT'] = 1) - ] = 'LINT_FIXING_DISCOUNT'; +(function(CortexStepCreditReason2) { + CortexStepCreditReason2[CortexStepCreditReason2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + CortexStepCreditReason2[CortexStepCreditReason2["LINT_FIXING_DISCOUNT"] = 1] = "LINT_FIXING_DISCOUNT"; })(CortexStepCreditReason || (CortexStepCreditReason = {})); -proto3.util.setEnumType( - CortexStepCreditReason, - 'exa.cortex_pb.CortexStepCreditReason', - [ - { no: 0, name: 'CORTEX_STEP_CREDIT_REASON_UNSPECIFIED' }, - { no: 1, name: 'CORTEX_STEP_CREDIT_REASON_LINT_FIXING_DISCOUNT' }, - ], -); +proto3.util.setEnumType(CortexStepCreditReason, "exa.cortex_pb.CortexStepCreditReason", [ + { no: 0, name: "CORTEX_STEP_CREDIT_REASON_UNSPECIFIED" }, + { no: 1, name: "CORTEX_STEP_CREDIT_REASON_LINT_FIXING_DISCOUNT" } +]); var ExecutionAsyncLevel; -(function (ExecutionAsyncLevel2) { - ExecutionAsyncLevel2[(ExecutionAsyncLevel2['UNSPECIFIED'] = 0)] = - 'UNSPECIFIED'; - ExecutionAsyncLevel2[(ExecutionAsyncLevel2['INVOCATION_BLOCKING'] = 1)] = - 'INVOCATION_BLOCKING'; - ExecutionAsyncLevel2[(ExecutionAsyncLevel2['EXECUTOR_BLOCKING'] = 2)] = - 'EXECUTOR_BLOCKING'; - ExecutionAsyncLevel2[(ExecutionAsyncLevel2['FULL_ASYNC'] = 3)] = 'FULL_ASYNC'; +(function(ExecutionAsyncLevel2) { + ExecutionAsyncLevel2[ExecutionAsyncLevel2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + ExecutionAsyncLevel2[ExecutionAsyncLevel2["INVOCATION_BLOCKING"] = 1] = "INVOCATION_BLOCKING"; + ExecutionAsyncLevel2[ExecutionAsyncLevel2["EXECUTOR_BLOCKING"] = 2] = "EXECUTOR_BLOCKING"; + ExecutionAsyncLevel2[ExecutionAsyncLevel2["FULL_ASYNC"] = 3] = "FULL_ASYNC"; })(ExecutionAsyncLevel || (ExecutionAsyncLevel = {})); -proto3.util.setEnumType( - ExecutionAsyncLevel, - 'exa.cortex_pb.ExecutionAsyncLevel', - [ - { no: 0, name: 'EXECUTION_ASYNC_LEVEL_UNSPECIFIED' }, - { no: 1, name: 'EXECUTION_ASYNC_LEVEL_INVOCATION_BLOCKING' }, - { no: 2, name: 'EXECUTION_ASYNC_LEVEL_EXECUTOR_BLOCKING' }, - { no: 3, name: 'EXECUTION_ASYNC_LEVEL_FULL_ASYNC' }, - ], -); +proto3.util.setEnumType(ExecutionAsyncLevel, "exa.cortex_pb.ExecutionAsyncLevel", [ + { no: 0, name: "EXECUTION_ASYNC_LEVEL_UNSPECIFIED" }, + { no: 1, name: "EXECUTION_ASYNC_LEVEL_INVOCATION_BLOCKING" }, + { no: 2, name: "EXECUTION_ASYNC_LEVEL_EXECUTOR_BLOCKING" }, + { no: 3, name: "EXECUTION_ASYNC_LEVEL_FULL_ASYNC" } +]); var CortexStepStatus; -(function (CortexStepStatus2) { - CortexStepStatus2[(CortexStepStatus2['UNSPECIFIED'] = 0)] = 'UNSPECIFIED'; - CortexStepStatus2[(CortexStepStatus2['GENERATING'] = 8)] = 'GENERATING'; - CortexStepStatus2[(CortexStepStatus2['QUEUED'] = 11)] = 'QUEUED'; - CortexStepStatus2[(CortexStepStatus2['PENDING'] = 1)] = 'PENDING'; - CortexStepStatus2[(CortexStepStatus2['RUNNING'] = 2)] = 'RUNNING'; - CortexStepStatus2[(CortexStepStatus2['WAITING'] = 9)] = 'WAITING'; - CortexStepStatus2[(CortexStepStatus2['DONE'] = 3)] = 'DONE'; - CortexStepStatus2[(CortexStepStatus2['INVALID'] = 4)] = 'INVALID'; - CortexStepStatus2[(CortexStepStatus2['CLEARED'] = 5)] = 'CLEARED'; - CortexStepStatus2[(CortexStepStatus2['CANCELED'] = 6)] = 'CANCELED'; - CortexStepStatus2[(CortexStepStatus2['ERROR'] = 7)] = 'ERROR'; - CortexStepStatus2[(CortexStepStatus2['INTERRUPTED'] = 12)] = 'INTERRUPTED'; +(function(CortexStepStatus2) { + CortexStepStatus2[CortexStepStatus2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + CortexStepStatus2[CortexStepStatus2["GENERATING"] = 8] = "GENERATING"; + CortexStepStatus2[CortexStepStatus2["QUEUED"] = 11] = "QUEUED"; + CortexStepStatus2[CortexStepStatus2["PENDING"] = 1] = "PENDING"; + CortexStepStatus2[CortexStepStatus2["RUNNING"] = 2] = "RUNNING"; + CortexStepStatus2[CortexStepStatus2["WAITING"] = 9] = "WAITING"; + CortexStepStatus2[CortexStepStatus2["DONE"] = 3] = "DONE"; + CortexStepStatus2[CortexStepStatus2["INVALID"] = 4] = "INVALID"; + CortexStepStatus2[CortexStepStatus2["CLEARED"] = 5] = "CLEARED"; + CortexStepStatus2[CortexStepStatus2["CANCELED"] = 6] = "CANCELED"; + CortexStepStatus2[CortexStepStatus2["ERROR"] = 7] = "ERROR"; + CortexStepStatus2[CortexStepStatus2["INTERRUPTED"] = 12] = "INTERRUPTED"; })(CortexStepStatus || (CortexStepStatus = {})); -proto3.util.setEnumType(CortexStepStatus, 'exa.cortex_pb.CortexStepStatus', [ - { no: 0, name: 'CORTEX_STEP_STATUS_UNSPECIFIED' }, - { no: 8, name: 'CORTEX_STEP_STATUS_GENERATING' }, - { no: 11, name: 'CORTEX_STEP_STATUS_QUEUED' }, - { no: 1, name: 'CORTEX_STEP_STATUS_PENDING' }, - { no: 2, name: 'CORTEX_STEP_STATUS_RUNNING' }, - { no: 9, name: 'CORTEX_STEP_STATUS_WAITING' }, - { no: 3, name: 'CORTEX_STEP_STATUS_DONE' }, - { no: 4, name: 'CORTEX_STEP_STATUS_INVALID' }, - { no: 5, name: 'CORTEX_STEP_STATUS_CLEARED' }, - { no: 6, name: 'CORTEX_STEP_STATUS_CANCELED' }, - { no: 7, name: 'CORTEX_STEP_STATUS_ERROR' }, - { no: 12, name: 'CORTEX_STEP_STATUS_INTERRUPTED' }, +proto3.util.setEnumType(CortexStepStatus, "exa.cortex_pb.CortexStepStatus", [ + { no: 0, name: "CORTEX_STEP_STATUS_UNSPECIFIED" }, + { no: 8, name: "CORTEX_STEP_STATUS_GENERATING" }, + { no: 11, name: "CORTEX_STEP_STATUS_QUEUED" }, + { no: 1, name: "CORTEX_STEP_STATUS_PENDING" }, + { no: 2, name: "CORTEX_STEP_STATUS_RUNNING" }, + { no: 9, name: "CORTEX_STEP_STATUS_WAITING" }, + { no: 3, name: "CORTEX_STEP_STATUS_DONE" }, + { no: 4, name: "CORTEX_STEP_STATUS_INVALID" }, + { no: 5, name: "CORTEX_STEP_STATUS_CLEARED" }, + { no: 6, name: "CORTEX_STEP_STATUS_CANCELED" }, + { no: 7, name: "CORTEX_STEP_STATUS_ERROR" }, + { no: 12, name: "CORTEX_STEP_STATUS_INTERRUPTED" } ]); var CascadeRunStatus; -(function (CascadeRunStatus2) { - CascadeRunStatus2[(CascadeRunStatus2['UNSPECIFIED'] = 0)] = 'UNSPECIFIED'; - CascadeRunStatus2[(CascadeRunStatus2['IDLE'] = 1)] = 'IDLE'; - CascadeRunStatus2[(CascadeRunStatus2['RUNNING'] = 2)] = 'RUNNING'; - CascadeRunStatus2[(CascadeRunStatus2['CANCELING'] = 3)] = 'CANCELING'; - CascadeRunStatus2[(CascadeRunStatus2['BUSY'] = 4)] = 'BUSY'; +(function(CascadeRunStatus2) { + CascadeRunStatus2[CascadeRunStatus2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + CascadeRunStatus2[CascadeRunStatus2["IDLE"] = 1] = "IDLE"; + CascadeRunStatus2[CascadeRunStatus2["RUNNING"] = 2] = "RUNNING"; + CascadeRunStatus2[CascadeRunStatus2["CANCELING"] = 3] = "CANCELING"; + CascadeRunStatus2[CascadeRunStatus2["BUSY"] = 4] = "BUSY"; })(CascadeRunStatus || (CascadeRunStatus = {})); -proto3.util.setEnumType(CascadeRunStatus, 'exa.cortex_pb.CascadeRunStatus', [ - { no: 0, name: 'CASCADE_RUN_STATUS_UNSPECIFIED' }, - { no: 1, name: 'CASCADE_RUN_STATUS_IDLE' }, - { no: 2, name: 'CASCADE_RUN_STATUS_RUNNING' }, - { no: 3, name: 'CASCADE_RUN_STATUS_CANCELING' }, - { no: 4, name: 'CASCADE_RUN_STATUS_BUSY' }, +proto3.util.setEnumType(CascadeRunStatus, "exa.cortex_pb.CascadeRunStatus", [ + { no: 0, name: "CASCADE_RUN_STATUS_UNSPECIFIED" }, + { no: 1, name: "CASCADE_RUN_STATUS_IDLE" }, + { no: 2, name: "CASCADE_RUN_STATUS_RUNNING" }, + { no: 3, name: "CASCADE_RUN_STATUS_CANCELING" }, + { no: 4, name: "CASCADE_RUN_STATUS_BUSY" } ]); var BrainFilterStrategy; -(function (BrainFilterStrategy2) { - BrainFilterStrategy2[(BrainFilterStrategy2['UNSPECIFIED'] = 0)] = - 'UNSPECIFIED'; - BrainFilterStrategy2[(BrainFilterStrategy2['NO_SYSTEM_INJECTED_STEPS'] = 1)] = - 'NO_SYSTEM_INJECTED_STEPS'; - BrainFilterStrategy2[(BrainFilterStrategy2['NO_MEMORIES'] = 2)] = - 'NO_MEMORIES'; +(function(BrainFilterStrategy2) { + BrainFilterStrategy2[BrainFilterStrategy2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + BrainFilterStrategy2[BrainFilterStrategy2["NO_SYSTEM_INJECTED_STEPS"] = 1] = "NO_SYSTEM_INJECTED_STEPS"; + BrainFilterStrategy2[BrainFilterStrategy2["NO_MEMORIES"] = 2] = "NO_MEMORIES"; })(BrainFilterStrategy || (BrainFilterStrategy = {})); -proto3.util.setEnumType( - BrainFilterStrategy, - 'exa.cortex_pb.BrainFilterStrategy', - [ - { no: 0, name: 'BRAIN_FILTER_STRATEGY_UNSPECIFIED' }, - { no: 1, name: 'BRAIN_FILTER_STRATEGY_NO_SYSTEM_INJECTED_STEPS' }, - { no: 2, name: 'BRAIN_FILTER_STRATEGY_NO_MEMORIES' }, - ], -); +proto3.util.setEnumType(BrainFilterStrategy, "exa.cortex_pb.BrainFilterStrategy", [ + { no: 0, name: "BRAIN_FILTER_STRATEGY_UNSPECIFIED" }, + { no: 1, name: "BRAIN_FILTER_STRATEGY_NO_SYSTEM_INJECTED_STEPS" }, + { no: 2, name: "BRAIN_FILTER_STRATEGY_NO_MEMORIES" } +]); var SectionOverrideMode; -(function (SectionOverrideMode2) { - SectionOverrideMode2[(SectionOverrideMode2['UNSPECIFIED'] = 0)] = - 'UNSPECIFIED'; - SectionOverrideMode2[(SectionOverrideMode2['OVERRIDE'] = 1)] = 'OVERRIDE'; - SectionOverrideMode2[(SectionOverrideMode2['APPEND'] = 2)] = 'APPEND'; - SectionOverrideMode2[(SectionOverrideMode2['PREPEND'] = 3)] = 'PREPEND'; +(function(SectionOverrideMode2) { + SectionOverrideMode2[SectionOverrideMode2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + SectionOverrideMode2[SectionOverrideMode2["OVERRIDE"] = 1] = "OVERRIDE"; + SectionOverrideMode2[SectionOverrideMode2["APPEND"] = 2] = "APPEND"; + SectionOverrideMode2[SectionOverrideMode2["PREPEND"] = 3] = "PREPEND"; })(SectionOverrideMode || (SectionOverrideMode = {})); -proto3.util.setEnumType( - SectionOverrideMode, - 'exa.cortex_pb.SectionOverrideMode', - [ - { no: 0, name: 'SECTION_OVERRIDE_MODE_UNSPECIFIED' }, - { no: 1, name: 'SECTION_OVERRIDE_MODE_OVERRIDE' }, - { no: 2, name: 'SECTION_OVERRIDE_MODE_APPEND' }, - { no: 3, name: 'SECTION_OVERRIDE_MODE_PREPEND' }, - ], -); +proto3.util.setEnumType(SectionOverrideMode, "exa.cortex_pb.SectionOverrideMode", [ + { no: 0, name: "SECTION_OVERRIDE_MODE_UNSPECIFIED" }, + { no: 1, name: "SECTION_OVERRIDE_MODE_OVERRIDE" }, + { no: 2, name: "SECTION_OVERRIDE_MODE_APPEND" }, + { no: 3, name: "SECTION_OVERRIDE_MODE_PREPEND" } +]); var AgentMode; -(function (AgentMode2) { - AgentMode2[(AgentMode2['UNSPECIFIED'] = 0)] = 'UNSPECIFIED'; - AgentMode2[(AgentMode2['PLANNING'] = 1)] = 'PLANNING'; - AgentMode2[(AgentMode2['EXECUTION'] = 2)] = 'EXECUTION'; - AgentMode2[(AgentMode2['VERIFICATION'] = 3)] = 'VERIFICATION'; +(function(AgentMode2) { + AgentMode2[AgentMode2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + AgentMode2[AgentMode2["PLANNING"] = 1] = "PLANNING"; + AgentMode2[AgentMode2["EXECUTION"] = 2] = "EXECUTION"; + AgentMode2[AgentMode2["VERIFICATION"] = 3] = "VERIFICATION"; })(AgentMode || (AgentMode = {})); -proto3.util.setEnumType(AgentMode, 'exa.cortex_pb.AgentMode', [ - { no: 0, name: 'AGENT_MODE_UNSPECIFIED' }, - { no: 1, name: 'AGENT_MODE_PLANNING' }, - { no: 2, name: 'AGENT_MODE_EXECUTION' }, - { no: 3, name: 'AGENT_MODE_VERIFICATION' }, +proto3.util.setEnumType(AgentMode, "exa.cortex_pb.AgentMode", [ + { no: 0, name: "AGENT_MODE_UNSPECIFIED" }, + { no: 1, name: "AGENT_MODE_PLANNING" }, + { no: 2, name: "AGENT_MODE_EXECUTION" }, + { no: 3, name: "AGENT_MODE_VERIFICATION" } ]); var ReplaceToolVariant; -(function (ReplaceToolVariant2) { - ReplaceToolVariant2[(ReplaceToolVariant2['UNSPECIFIED'] = 0)] = 'UNSPECIFIED'; - ReplaceToolVariant2[(ReplaceToolVariant2['REPLACEMENT_CHUNK'] = 1)] = - 'REPLACEMENT_CHUNK'; - ReplaceToolVariant2[(ReplaceToolVariant2['SEARCH_REPLACE'] = 2)] = - 'SEARCH_REPLACE'; - ReplaceToolVariant2[(ReplaceToolVariant2['APPLY_PATCH'] = 3)] = 'APPLY_PATCH'; - ReplaceToolVariant2[(ReplaceToolVariant2['SINGLE_MULTI'] = 4)] = - 'SINGLE_MULTI'; +(function(ReplaceToolVariant2) { + ReplaceToolVariant2[ReplaceToolVariant2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + ReplaceToolVariant2[ReplaceToolVariant2["REPLACEMENT_CHUNK"] = 1] = "REPLACEMENT_CHUNK"; + ReplaceToolVariant2[ReplaceToolVariant2["SEARCH_REPLACE"] = 2] = "SEARCH_REPLACE"; + ReplaceToolVariant2[ReplaceToolVariant2["APPLY_PATCH"] = 3] = "APPLY_PATCH"; + ReplaceToolVariant2[ReplaceToolVariant2["SINGLE_MULTI"] = 4] = "SINGLE_MULTI"; })(ReplaceToolVariant || (ReplaceToolVariant = {})); -proto3.util.setEnumType( - ReplaceToolVariant, - 'exa.cortex_pb.ReplaceToolVariant', - [ - { no: 0, name: 'REPLACE_TOOL_VARIANT_UNSPECIFIED' }, - { no: 1, name: 'REPLACE_TOOL_VARIANT_REPLACEMENT_CHUNK' }, - { no: 2, name: 'REPLACE_TOOL_VARIANT_SEARCH_REPLACE' }, - { no: 3, name: 'REPLACE_TOOL_VARIANT_APPLY_PATCH' }, - { no: 4, name: 'REPLACE_TOOL_VARIANT_SINGLE_MULTI' }, - ], -); +proto3.util.setEnumType(ReplaceToolVariant, "exa.cortex_pb.ReplaceToolVariant", [ + { no: 0, name: "REPLACE_TOOL_VARIANT_UNSPECIFIED" }, + { no: 1, name: "REPLACE_TOOL_VARIANT_REPLACEMENT_CHUNK" }, + { no: 2, name: "REPLACE_TOOL_VARIANT_SEARCH_REPLACE" }, + { no: 3, name: "REPLACE_TOOL_VARIANT_APPLY_PATCH" }, + { no: 4, name: "REPLACE_TOOL_VARIANT_SINGLE_MULTI" } +]); var BrowserSubagentMode; -(function (BrowserSubagentMode2) { - BrowserSubagentMode2[(BrowserSubagentMode2['UNSPECIFIED'] = 0)] = - 'UNSPECIFIED'; - BrowserSubagentMode2[(BrowserSubagentMode2['MAIN_AGENT_ONLY'] = 1)] = - 'MAIN_AGENT_ONLY'; - BrowserSubagentMode2[(BrowserSubagentMode2['SUBAGENT_PRIMARILY'] = 2)] = - 'SUBAGENT_PRIMARILY'; - BrowserSubagentMode2[(BrowserSubagentMode2['BOTH_AGENTS'] = 3)] = - 'BOTH_AGENTS'; - BrowserSubagentMode2[(BrowserSubagentMode2['SUBAGENT_ONLY'] = 4)] = - 'SUBAGENT_ONLY'; +(function(BrowserSubagentMode2) { + BrowserSubagentMode2[BrowserSubagentMode2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + BrowserSubagentMode2[BrowserSubagentMode2["MAIN_AGENT_ONLY"] = 1] = "MAIN_AGENT_ONLY"; + BrowserSubagentMode2[BrowserSubagentMode2["SUBAGENT_PRIMARILY"] = 2] = "SUBAGENT_PRIMARILY"; + BrowserSubagentMode2[BrowserSubagentMode2["BOTH_AGENTS"] = 3] = "BOTH_AGENTS"; + BrowserSubagentMode2[BrowserSubagentMode2["SUBAGENT_ONLY"] = 4] = "SUBAGENT_ONLY"; })(BrowserSubagentMode || (BrowserSubagentMode = {})); -proto3.util.setEnumType( - BrowserSubagentMode, - 'exa.cortex_pb.BrowserSubagentMode', - [ - { no: 0, name: 'BROWSER_SUBAGENT_MODE_UNSPECIFIED' }, - { no: 1, name: 'BROWSER_SUBAGENT_MODE_MAIN_AGENT_ONLY' }, - { no: 2, name: 'BROWSER_SUBAGENT_MODE_SUBAGENT_PRIMARILY' }, - { no: 3, name: 'BROWSER_SUBAGENT_MODE_BOTH_AGENTS' }, - { no: 4, name: 'BROWSER_SUBAGENT_MODE_SUBAGENT_ONLY' }, - ], -); +proto3.util.setEnumType(BrowserSubagentMode, "exa.cortex_pb.BrowserSubagentMode", [ + { no: 0, name: "BROWSER_SUBAGENT_MODE_UNSPECIFIED" }, + { no: 1, name: "BROWSER_SUBAGENT_MODE_MAIN_AGENT_ONLY" }, + { no: 2, name: "BROWSER_SUBAGENT_MODE_SUBAGENT_PRIMARILY" }, + { no: 3, name: "BROWSER_SUBAGENT_MODE_BOTH_AGENTS" }, + { no: 4, name: "BROWSER_SUBAGENT_MODE_SUBAGENT_ONLY" } +]); var BrowserToolSetMode; -(function (BrowserToolSetMode2) { - BrowserToolSetMode2[(BrowserToolSetMode2['UNSPECIFIED'] = 0)] = 'UNSPECIFIED'; - BrowserToolSetMode2[(BrowserToolSetMode2['ALL_TOOLS'] = 1)] = 'ALL_TOOLS'; - BrowserToolSetMode2[(BrowserToolSetMode2['PIXEL_ONLY'] = 2)] = 'PIXEL_ONLY'; - BrowserToolSetMode2[(BrowserToolSetMode2['ALL_INPUT_PIXEL_OUTPUT'] = 3)] = - 'ALL_INPUT_PIXEL_OUTPUT'; +(function(BrowserToolSetMode2) { + BrowserToolSetMode2[BrowserToolSetMode2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + BrowserToolSetMode2[BrowserToolSetMode2["ALL_TOOLS"] = 1] = "ALL_TOOLS"; + BrowserToolSetMode2[BrowserToolSetMode2["PIXEL_ONLY"] = 2] = "PIXEL_ONLY"; + BrowserToolSetMode2[BrowserToolSetMode2["ALL_INPUT_PIXEL_OUTPUT"] = 3] = "ALL_INPUT_PIXEL_OUTPUT"; })(BrowserToolSetMode || (BrowserToolSetMode = {})); -proto3.util.setEnumType( - BrowserToolSetMode, - 'exa.cortex_pb.BrowserToolSetMode', - [ - { no: 0, name: 'BROWSER_TOOL_SET_MODE_UNSPECIFIED' }, - { no: 1, name: 'BROWSER_TOOL_SET_MODE_ALL_TOOLS' }, - { no: 2, name: 'BROWSER_TOOL_SET_MODE_PIXEL_ONLY' }, - { no: 3, name: 'BROWSER_TOOL_SET_MODE_ALL_INPUT_PIXEL_OUTPUT' }, - ], -); +proto3.util.setEnumType(BrowserToolSetMode, "exa.cortex_pb.BrowserToolSetMode", [ + { no: 0, name: "BROWSER_TOOL_SET_MODE_UNSPECIFIED" }, + { no: 1, name: "BROWSER_TOOL_SET_MODE_ALL_TOOLS" }, + { no: 2, name: "BROWSER_TOOL_SET_MODE_PIXEL_ONLY" }, + { no: 3, name: "BROWSER_TOOL_SET_MODE_ALL_INPUT_PIXEL_OUTPUT" } +]); var BrowserActionWaitingReason; -(function (BrowserActionWaitingReason2) { - BrowserActionWaitingReason2[ - (BrowserActionWaitingReason2['UNSPECIFIED'] = 0) - ] = 'UNSPECIFIED'; - BrowserActionWaitingReason2[ - (BrowserActionWaitingReason2['PAGE_ACCESS'] = 1) - ] = 'PAGE_ACCESS'; - BrowserActionWaitingReason2[ - (BrowserActionWaitingReason2['ACTION_PERMISSION'] = 2) - ] = 'ACTION_PERMISSION'; - BrowserActionWaitingReason2[ - (BrowserActionWaitingReason2['PAGE_ACCESS_AND_ACTION_PERMISSION'] = 3) - ] = 'PAGE_ACCESS_AND_ACTION_PERMISSION'; +(function(BrowserActionWaitingReason2) { + BrowserActionWaitingReason2[BrowserActionWaitingReason2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + BrowserActionWaitingReason2[BrowserActionWaitingReason2["PAGE_ACCESS"] = 1] = "PAGE_ACCESS"; + BrowserActionWaitingReason2[BrowserActionWaitingReason2["ACTION_PERMISSION"] = 2] = "ACTION_PERMISSION"; + BrowserActionWaitingReason2[BrowserActionWaitingReason2["PAGE_ACCESS_AND_ACTION_PERMISSION"] = 3] = "PAGE_ACCESS_AND_ACTION_PERMISSION"; })(BrowserActionWaitingReason || (BrowserActionWaitingReason = {})); -proto3.util.setEnumType( - BrowserActionWaitingReason, - 'exa.cortex_pb.BrowserActionWaitingReason', - [ - { no: 0, name: 'BROWSER_ACTION_WAITING_REASON_UNSPECIFIED' }, - { no: 1, name: 'BROWSER_ACTION_WAITING_REASON_PAGE_ACCESS' }, - { no: 2, name: 'BROWSER_ACTION_WAITING_REASON_ACTION_PERMISSION' }, - { - no: 3, - name: 'BROWSER_ACTION_WAITING_REASON_PAGE_ACCESS_AND_ACTION_PERMISSION', - }, - ], -); +proto3.util.setEnumType(BrowserActionWaitingReason, "exa.cortex_pb.BrowserActionWaitingReason", [ + { no: 0, name: "BROWSER_ACTION_WAITING_REASON_UNSPECIFIED" }, + { no: 1, name: "BROWSER_ACTION_WAITING_REASON_PAGE_ACCESS" }, + { no: 2, name: "BROWSER_ACTION_WAITING_REASON_ACTION_PERMISSION" }, + { no: 3, name: "BROWSER_ACTION_WAITING_REASON_PAGE_ACCESS_AND_ACTION_PERMISSION" } +]); var PermissionScope; -(function (PermissionScope2) { - PermissionScope2[(PermissionScope2['UNSPECIFIED'] = 0)] = 'UNSPECIFIED'; - PermissionScope2[(PermissionScope2['ONCE'] = 1)] = 'ONCE'; - PermissionScope2[(PermissionScope2['CONVERSATION'] = 2)] = 'CONVERSATION'; +(function(PermissionScope2) { + PermissionScope2[PermissionScope2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + PermissionScope2[PermissionScope2["ONCE"] = 1] = "ONCE"; + PermissionScope2[PermissionScope2["CONVERSATION"] = 2] = "CONVERSATION"; })(PermissionScope || (PermissionScope = {})); -proto3.util.setEnumType(PermissionScope, 'exa.cortex_pb.PermissionScope', [ - { no: 0, name: 'PERMISSION_SCOPE_UNSPECIFIED' }, - { no: 1, name: 'PERMISSION_SCOPE_ONCE' }, - { no: 2, name: 'PERMISSION_SCOPE_CONVERSATION' }, +proto3.util.setEnumType(PermissionScope, "exa.cortex_pb.PermissionScope", [ + { no: 0, name: "PERMISSION_SCOPE_UNSPECIFIED" }, + { no: 1, name: "PERMISSION_SCOPE_ONCE" }, + { no: 2, name: "PERMISSION_SCOPE_CONVERSATION" } ]); var CortexStepType; -(function (CortexStepType2) { - CortexStepType2[(CortexStepType2['UNSPECIFIED'] = 0)] = 'UNSPECIFIED'; - CortexStepType2[(CortexStepType2['DUMMY'] = 1)] = 'DUMMY'; - CortexStepType2[(CortexStepType2['FINISH'] = 2)] = 'FINISH'; - CortexStepType2[(CortexStepType2['MQUERY'] = 4)] = 'MQUERY'; - CortexStepType2[(CortexStepType2['CODE_ACTION'] = 5)] = 'CODE_ACTION'; - CortexStepType2[(CortexStepType2['GIT_COMMIT'] = 6)] = 'GIT_COMMIT'; - CortexStepType2[(CortexStepType2['GREP_SEARCH'] = 7)] = 'GREP_SEARCH'; - CortexStepType2[(CortexStepType2['COMPILE'] = 10)] = 'COMPILE'; - CortexStepType2[(CortexStepType2['VIEW_CODE_ITEM'] = 13)] = 'VIEW_CODE_ITEM'; - CortexStepType2[(CortexStepType2['ERROR_MESSAGE'] = 17)] = 'ERROR_MESSAGE'; - CortexStepType2[(CortexStepType2['RUN_COMMAND'] = 21)] = 'RUN_COMMAND'; - CortexStepType2[(CortexStepType2['FIND'] = 25)] = 'FIND'; - CortexStepType2[(CortexStepType2['SUGGESTED_RESPONSES'] = 27)] = - 'SUGGESTED_RESPONSES'; - CortexStepType2[(CortexStepType2['COMMAND_STATUS'] = 28)] = 'COMMAND_STATUS'; - CortexStepType2[(CortexStepType2['READ_URL_CONTENT'] = 31)] = - 'READ_URL_CONTENT'; - CortexStepType2[(CortexStepType2['VIEW_CONTENT_CHUNK'] = 32)] = - 'VIEW_CONTENT_CHUNK'; - CortexStepType2[(CortexStepType2['SEARCH_WEB'] = 33)] = 'SEARCH_WEB'; - CortexStepType2[(CortexStepType2['MCP_TOOL'] = 38)] = 'MCP_TOOL'; - CortexStepType2[(CortexStepType2['CLIPBOARD'] = 45)] = 'CLIPBOARD'; - CortexStepType2[(CortexStepType2['VIEW_FILE_OUTLINE'] = 47)] = - 'VIEW_FILE_OUTLINE'; - CortexStepType2[(CortexStepType2['LIST_RESOURCES'] = 51)] = 'LIST_RESOURCES'; - CortexStepType2[(CortexStepType2['READ_RESOURCE'] = 52)] = 'READ_RESOURCE'; - CortexStepType2[(CortexStepType2['LINT_DIFF'] = 53)] = 'LINT_DIFF'; - CortexStepType2[(CortexStepType2['OPEN_BROWSER_URL'] = 56)] = - 'OPEN_BROWSER_URL'; - CortexStepType2[(CortexStepType2['RUN_EXTENSION_CODE'] = 57)] = - 'RUN_EXTENSION_CODE'; - CortexStepType2[(CortexStepType2['TRAJECTORY_SEARCH'] = 60)] = - 'TRAJECTORY_SEARCH'; - CortexStepType2[(CortexStepType2['EXECUTE_BROWSER_JAVASCRIPT'] = 61)] = - 'EXECUTE_BROWSER_JAVASCRIPT'; - CortexStepType2[(CortexStepType2['LIST_BROWSER_PAGES'] = 62)] = - 'LIST_BROWSER_PAGES'; - CortexStepType2[(CortexStepType2['CAPTURE_BROWSER_SCREENSHOT'] = 63)] = - 'CAPTURE_BROWSER_SCREENSHOT'; - CortexStepType2[(CortexStepType2['CLICK_BROWSER_PIXEL'] = 64)] = - 'CLICK_BROWSER_PIXEL'; - CortexStepType2[(CortexStepType2['READ_TERMINAL'] = 65)] = 'READ_TERMINAL'; - CortexStepType2[(CortexStepType2['CAPTURE_BROWSER_CONSOLE_LOGS'] = 66)] = - 'CAPTURE_BROWSER_CONSOLE_LOGS'; - CortexStepType2[(CortexStepType2['READ_BROWSER_PAGE'] = 67)] = - 'READ_BROWSER_PAGE'; - CortexStepType2[(CortexStepType2['BROWSER_GET_DOM'] = 68)] = - 'BROWSER_GET_DOM'; - CortexStepType2[(CortexStepType2['CODE_SEARCH'] = 73)] = 'CODE_SEARCH'; - CortexStepType2[(CortexStepType2['BROWSER_INPUT'] = 74)] = 'BROWSER_INPUT'; - CortexStepType2[(CortexStepType2['BROWSER_MOVE_MOUSE'] = 75)] = - 'BROWSER_MOVE_MOUSE'; - CortexStepType2[(CortexStepType2['BROWSER_SELECT_OPTION'] = 76)] = - 'BROWSER_SELECT_OPTION'; - CortexStepType2[(CortexStepType2['BROWSER_SCROLL_UP'] = 77)] = - 'BROWSER_SCROLL_UP'; - CortexStepType2[(CortexStepType2['BROWSER_SCROLL_DOWN'] = 78)] = - 'BROWSER_SCROLL_DOWN'; - CortexStepType2[(CortexStepType2['BROWSER_CLICK_ELEMENT'] = 79)] = - 'BROWSER_CLICK_ELEMENT'; - CortexStepType2[(CortexStepType2['BROWSER_LIST_NETWORK_REQUESTS'] = 123)] = - 'BROWSER_LIST_NETWORK_REQUESTS'; - CortexStepType2[(CortexStepType2['BROWSER_GET_NETWORK_REQUEST'] = 124)] = - 'BROWSER_GET_NETWORK_REQUEST'; - CortexStepType2[(CortexStepType2['BROWSER_PRESS_KEY'] = 80)] = - 'BROWSER_PRESS_KEY'; - CortexStepType2[(CortexStepType2['TASK_BOUNDARY'] = 81)] = 'TASK_BOUNDARY'; - CortexStepType2[(CortexStepType2['NOTIFY_USER'] = 82)] = 'NOTIFY_USER'; - CortexStepType2[(CortexStepType2['CODE_ACKNOWLEDGEMENT'] = 83)] = - 'CODE_ACKNOWLEDGEMENT'; - CortexStepType2[(CortexStepType2['INTERNAL_SEARCH'] = 84)] = - 'INTERNAL_SEARCH'; - CortexStepType2[(CortexStepType2['BROWSER_SUBAGENT'] = 85)] = - 'BROWSER_SUBAGENT'; - CortexStepType2[(CortexStepType2['BROWSER_SCROLL'] = 88)] = 'BROWSER_SCROLL'; - CortexStepType2[(CortexStepType2['KNOWLEDGE_GENERATION'] = 89)] = - 'KNOWLEDGE_GENERATION'; - CortexStepType2[(CortexStepType2['GENERATE_IMAGE'] = 91)] = 'GENERATE_IMAGE'; - CortexStepType2[(CortexStepType2['BROWSER_RESIZE_WINDOW'] = 96)] = - 'BROWSER_RESIZE_WINDOW'; - CortexStepType2[(CortexStepType2['BROWSER_DRAG_PIXEL_TO_PIXEL'] = 97)] = - 'BROWSER_DRAG_PIXEL_TO_PIXEL'; - CortexStepType2[(CortexStepType2['BROWSER_MOUSE_WHEEL'] = 113)] = - 'BROWSER_MOUSE_WHEEL'; - CortexStepType2[(CortexStepType2['BROWSER_MOUSE_UP'] = 120)] = - 'BROWSER_MOUSE_UP'; - CortexStepType2[(CortexStepType2['BROWSER_MOUSE_DOWN'] = 121)] = - 'BROWSER_MOUSE_DOWN'; - CortexStepType2[(CortexStepType2['BROWSER_REFRESH_PAGE'] = 125)] = - 'BROWSER_REFRESH_PAGE'; - CortexStepType2[(CortexStepType2['CONVERSATION_HISTORY'] = 98)] = - 'CONVERSATION_HISTORY'; - CortexStepType2[(CortexStepType2['KNOWLEDGE_ARTIFACTS'] = 99)] = - 'KNOWLEDGE_ARTIFACTS'; - CortexStepType2[(CortexStepType2['SEND_COMMAND_INPUT'] = 100)] = - 'SEND_COMMAND_INPUT'; - CortexStepType2[(CortexStepType2['SYSTEM_MESSAGE'] = 101)] = 'SYSTEM_MESSAGE'; - CortexStepType2[(CortexStepType2['WAIT'] = 102)] = 'WAIT'; - CortexStepType2[(CortexStepType2['KI_INSERTION'] = 116)] = 'KI_INSERTION'; - CortexStepType2[(CortexStepType2['WORKSPACE_API'] = 122)] = 'WORKSPACE_API'; - CortexStepType2[(CortexStepType2['INVOKE_SUBAGENT'] = 127)] = - 'INVOKE_SUBAGENT'; - CortexStepType2[(CortexStepType2['USER_INPUT'] = 14)] = 'USER_INPUT'; - CortexStepType2[(CortexStepType2['PLANNER_RESPONSE'] = 15)] = - 'PLANNER_RESPONSE'; - CortexStepType2[(CortexStepType2['VIEW_FILE'] = 8)] = 'VIEW_FILE'; - CortexStepType2[(CortexStepType2['LIST_DIRECTORY'] = 9)] = 'LIST_DIRECTORY'; - CortexStepType2[(CortexStepType2['CHECKPOINT'] = 23)] = 'CHECKPOINT'; - CortexStepType2[(CortexStepType2['FILE_CHANGE'] = 86)] = 'FILE_CHANGE'; - CortexStepType2[(CortexStepType2['DELETE_DIRECTORY'] = 92)] = - 'DELETE_DIRECTORY'; - CortexStepType2[(CortexStepType2['MOVE'] = 87)] = 'MOVE'; - CortexStepType2[(CortexStepType2['EPHEMERAL_MESSAGE'] = 90)] = - 'EPHEMERAL_MESSAGE'; - CortexStepType2[(CortexStepType2['COMPILE_APPLET'] = 93)] = 'COMPILE_APPLET'; - CortexStepType2[(CortexStepType2['INSTALL_APPLET_DEPENDENCIES'] = 94)] = - 'INSTALL_APPLET_DEPENDENCIES'; - CortexStepType2[(CortexStepType2['INSTALL_APPLET_PACKAGE'] = 95)] = - 'INSTALL_APPLET_PACKAGE'; - CortexStepType2[(CortexStepType2['SET_UP_FIREBASE'] = 108)] = - 'SET_UP_FIREBASE'; - CortexStepType2[(CortexStepType2['RESTART_DEV_SERVER'] = 110)] = - 'RESTART_DEV_SERVER'; - CortexStepType2[(CortexStepType2['DEPLOY_FIREBASE'] = 111)] = - 'DEPLOY_FIREBASE'; - CortexStepType2[(CortexStepType2['SHELL_EXEC'] = 112)] = 'SHELL_EXEC'; - CortexStepType2[(CortexStepType2['LINT_APPLET'] = 114)] = 'LINT_APPLET'; - CortexStepType2[(CortexStepType2['DEFINE_NEW_ENV_VARIABLE'] = 115)] = - 'DEFINE_NEW_ENV_VARIABLE'; - CortexStepType2[(CortexStepType2['WRITE_BLOB'] = 128)] = 'WRITE_BLOB'; - CortexStepType2[(CortexStepType2['AGENCY_TOOL_CALL'] = 103)] = - 'AGENCY_TOOL_CALL'; - CortexStepType2[(CortexStepType2['PLAN_INPUT'] = 3)] = 'PLAN_INPUT'; - CortexStepType2[(CortexStepType2['PROPOSE_CODE'] = 24)] = 'PROPOSE_CODE'; - CortexStepType2[(CortexStepType2['MANAGER_FEEDBACK'] = 39)] = - 'MANAGER_FEEDBACK'; - CortexStepType2[(CortexStepType2['TOOL_CALL_PROPOSAL'] = 40)] = - 'TOOL_CALL_PROPOSAL'; - CortexStepType2[(CortexStepType2['TOOL_CALL_CHOICE'] = 41)] = - 'TOOL_CALL_CHOICE'; - CortexStepType2[(CortexStepType2['TRAJECTORY_CHOICE'] = 42)] = - 'TRAJECTORY_CHOICE'; - CortexStepType2[(CortexStepType2['POST_PR_REVIEW'] = 49)] = 'POST_PR_REVIEW'; - CortexStepType2[(CortexStepType2['FIND_ALL_REFERENCES'] = 54)] = - 'FIND_ALL_REFERENCES'; - CortexStepType2[(CortexStepType2['BRAIN_UPDATE'] = 55)] = 'BRAIN_UPDATE'; - CortexStepType2[(CortexStepType2['ADD_ANNOTATION'] = 58)] = 'ADD_ANNOTATION'; - CortexStepType2[(CortexStepType2['PROPOSAL_FEEDBACK'] = 59)] = - 'PROPOSAL_FEEDBACK'; - CortexStepType2[(CortexStepType2['RETRIEVE_MEMORY'] = 34)] = - 'RETRIEVE_MEMORY'; - CortexStepType2[(CortexStepType2['MEMORY'] = 29)] = 'MEMORY'; +(function(CortexStepType2) { + CortexStepType2[CortexStepType2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + CortexStepType2[CortexStepType2["DUMMY"] = 1] = "DUMMY"; + CortexStepType2[CortexStepType2["FINISH"] = 2] = "FINISH"; + CortexStepType2[CortexStepType2["MQUERY"] = 4] = "MQUERY"; + CortexStepType2[CortexStepType2["CODE_ACTION"] = 5] = "CODE_ACTION"; + CortexStepType2[CortexStepType2["GIT_COMMIT"] = 6] = "GIT_COMMIT"; + CortexStepType2[CortexStepType2["GREP_SEARCH"] = 7] = "GREP_SEARCH"; + CortexStepType2[CortexStepType2["COMPILE"] = 10] = "COMPILE"; + CortexStepType2[CortexStepType2["VIEW_CODE_ITEM"] = 13] = "VIEW_CODE_ITEM"; + CortexStepType2[CortexStepType2["ERROR_MESSAGE"] = 17] = "ERROR_MESSAGE"; + CortexStepType2[CortexStepType2["RUN_COMMAND"] = 21] = "RUN_COMMAND"; + CortexStepType2[CortexStepType2["FIND"] = 25] = "FIND"; + CortexStepType2[CortexStepType2["SUGGESTED_RESPONSES"] = 27] = "SUGGESTED_RESPONSES"; + CortexStepType2[CortexStepType2["COMMAND_STATUS"] = 28] = "COMMAND_STATUS"; + CortexStepType2[CortexStepType2["READ_URL_CONTENT"] = 31] = "READ_URL_CONTENT"; + CortexStepType2[CortexStepType2["VIEW_CONTENT_CHUNK"] = 32] = "VIEW_CONTENT_CHUNK"; + CortexStepType2[CortexStepType2["SEARCH_WEB"] = 33] = "SEARCH_WEB"; + CortexStepType2[CortexStepType2["MCP_TOOL"] = 38] = "MCP_TOOL"; + CortexStepType2[CortexStepType2["CLIPBOARD"] = 45] = "CLIPBOARD"; + CortexStepType2[CortexStepType2["VIEW_FILE_OUTLINE"] = 47] = "VIEW_FILE_OUTLINE"; + CortexStepType2[CortexStepType2["LIST_RESOURCES"] = 51] = "LIST_RESOURCES"; + CortexStepType2[CortexStepType2["READ_RESOURCE"] = 52] = "READ_RESOURCE"; + CortexStepType2[CortexStepType2["LINT_DIFF"] = 53] = "LINT_DIFF"; + CortexStepType2[CortexStepType2["OPEN_BROWSER_URL"] = 56] = "OPEN_BROWSER_URL"; + CortexStepType2[CortexStepType2["RUN_EXTENSION_CODE"] = 57] = "RUN_EXTENSION_CODE"; + CortexStepType2[CortexStepType2["TRAJECTORY_SEARCH"] = 60] = "TRAJECTORY_SEARCH"; + CortexStepType2[CortexStepType2["EXECUTE_BROWSER_JAVASCRIPT"] = 61] = "EXECUTE_BROWSER_JAVASCRIPT"; + CortexStepType2[CortexStepType2["LIST_BROWSER_PAGES"] = 62] = "LIST_BROWSER_PAGES"; + CortexStepType2[CortexStepType2["CAPTURE_BROWSER_SCREENSHOT"] = 63] = "CAPTURE_BROWSER_SCREENSHOT"; + CortexStepType2[CortexStepType2["CLICK_BROWSER_PIXEL"] = 64] = "CLICK_BROWSER_PIXEL"; + CortexStepType2[CortexStepType2["READ_TERMINAL"] = 65] = "READ_TERMINAL"; + CortexStepType2[CortexStepType2["CAPTURE_BROWSER_CONSOLE_LOGS"] = 66] = "CAPTURE_BROWSER_CONSOLE_LOGS"; + CortexStepType2[CortexStepType2["READ_BROWSER_PAGE"] = 67] = "READ_BROWSER_PAGE"; + CortexStepType2[CortexStepType2["BROWSER_GET_DOM"] = 68] = "BROWSER_GET_DOM"; + CortexStepType2[CortexStepType2["CODE_SEARCH"] = 73] = "CODE_SEARCH"; + CortexStepType2[CortexStepType2["BROWSER_INPUT"] = 74] = "BROWSER_INPUT"; + CortexStepType2[CortexStepType2["BROWSER_MOVE_MOUSE"] = 75] = "BROWSER_MOVE_MOUSE"; + CortexStepType2[CortexStepType2["BROWSER_SELECT_OPTION"] = 76] = "BROWSER_SELECT_OPTION"; + CortexStepType2[CortexStepType2["BROWSER_SCROLL_UP"] = 77] = "BROWSER_SCROLL_UP"; + CortexStepType2[CortexStepType2["BROWSER_SCROLL_DOWN"] = 78] = "BROWSER_SCROLL_DOWN"; + CortexStepType2[CortexStepType2["BROWSER_CLICK_ELEMENT"] = 79] = "BROWSER_CLICK_ELEMENT"; + CortexStepType2[CortexStepType2["BROWSER_LIST_NETWORK_REQUESTS"] = 123] = "BROWSER_LIST_NETWORK_REQUESTS"; + CortexStepType2[CortexStepType2["BROWSER_GET_NETWORK_REQUEST"] = 124] = "BROWSER_GET_NETWORK_REQUEST"; + CortexStepType2[CortexStepType2["BROWSER_PRESS_KEY"] = 80] = "BROWSER_PRESS_KEY"; + CortexStepType2[CortexStepType2["TASK_BOUNDARY"] = 81] = "TASK_BOUNDARY"; + CortexStepType2[CortexStepType2["NOTIFY_USER"] = 82] = "NOTIFY_USER"; + CortexStepType2[CortexStepType2["CODE_ACKNOWLEDGEMENT"] = 83] = "CODE_ACKNOWLEDGEMENT"; + CortexStepType2[CortexStepType2["INTERNAL_SEARCH"] = 84] = "INTERNAL_SEARCH"; + CortexStepType2[CortexStepType2["BROWSER_SUBAGENT"] = 85] = "BROWSER_SUBAGENT"; + CortexStepType2[CortexStepType2["BROWSER_SCROLL"] = 88] = "BROWSER_SCROLL"; + CortexStepType2[CortexStepType2["KNOWLEDGE_GENERATION"] = 89] = "KNOWLEDGE_GENERATION"; + CortexStepType2[CortexStepType2["GENERATE_IMAGE"] = 91] = "GENERATE_IMAGE"; + CortexStepType2[CortexStepType2["BROWSER_RESIZE_WINDOW"] = 96] = "BROWSER_RESIZE_WINDOW"; + CortexStepType2[CortexStepType2["BROWSER_DRAG_PIXEL_TO_PIXEL"] = 97] = "BROWSER_DRAG_PIXEL_TO_PIXEL"; + CortexStepType2[CortexStepType2["BROWSER_MOUSE_WHEEL"] = 113] = "BROWSER_MOUSE_WHEEL"; + CortexStepType2[CortexStepType2["BROWSER_MOUSE_UP"] = 120] = "BROWSER_MOUSE_UP"; + CortexStepType2[CortexStepType2["BROWSER_MOUSE_DOWN"] = 121] = "BROWSER_MOUSE_DOWN"; + CortexStepType2[CortexStepType2["BROWSER_REFRESH_PAGE"] = 125] = "BROWSER_REFRESH_PAGE"; + CortexStepType2[CortexStepType2["CONVERSATION_HISTORY"] = 98] = "CONVERSATION_HISTORY"; + CortexStepType2[CortexStepType2["KNOWLEDGE_ARTIFACTS"] = 99] = "KNOWLEDGE_ARTIFACTS"; + CortexStepType2[CortexStepType2["SEND_COMMAND_INPUT"] = 100] = "SEND_COMMAND_INPUT"; + CortexStepType2[CortexStepType2["SYSTEM_MESSAGE"] = 101] = "SYSTEM_MESSAGE"; + CortexStepType2[CortexStepType2["WAIT"] = 102] = "WAIT"; + CortexStepType2[CortexStepType2["KI_INSERTION"] = 116] = "KI_INSERTION"; + CortexStepType2[CortexStepType2["WORKSPACE_API"] = 122] = "WORKSPACE_API"; + CortexStepType2[CortexStepType2["INVOKE_SUBAGENT"] = 127] = "INVOKE_SUBAGENT"; + CortexStepType2[CortexStepType2["USER_INPUT"] = 14] = "USER_INPUT"; + CortexStepType2[CortexStepType2["PLANNER_RESPONSE"] = 15] = "PLANNER_RESPONSE"; + CortexStepType2[CortexStepType2["VIEW_FILE"] = 8] = "VIEW_FILE"; + CortexStepType2[CortexStepType2["LIST_DIRECTORY"] = 9] = "LIST_DIRECTORY"; + CortexStepType2[CortexStepType2["CHECKPOINT"] = 23] = "CHECKPOINT"; + CortexStepType2[CortexStepType2["FILE_CHANGE"] = 86] = "FILE_CHANGE"; + CortexStepType2[CortexStepType2["DELETE_DIRECTORY"] = 92] = "DELETE_DIRECTORY"; + CortexStepType2[CortexStepType2["MOVE"] = 87] = "MOVE"; + CortexStepType2[CortexStepType2["EPHEMERAL_MESSAGE"] = 90] = "EPHEMERAL_MESSAGE"; + CortexStepType2[CortexStepType2["COMPILE_APPLET"] = 93] = "COMPILE_APPLET"; + CortexStepType2[CortexStepType2["INSTALL_APPLET_DEPENDENCIES"] = 94] = "INSTALL_APPLET_DEPENDENCIES"; + CortexStepType2[CortexStepType2["INSTALL_APPLET_PACKAGE"] = 95] = "INSTALL_APPLET_PACKAGE"; + CortexStepType2[CortexStepType2["SET_UP_FIREBASE"] = 108] = "SET_UP_FIREBASE"; + CortexStepType2[CortexStepType2["RESTART_DEV_SERVER"] = 110] = "RESTART_DEV_SERVER"; + CortexStepType2[CortexStepType2["DEPLOY_FIREBASE"] = 111] = "DEPLOY_FIREBASE"; + CortexStepType2[CortexStepType2["SHELL_EXEC"] = 112] = "SHELL_EXEC"; + CortexStepType2[CortexStepType2["LINT_APPLET"] = 114] = "LINT_APPLET"; + CortexStepType2[CortexStepType2["DEFINE_NEW_ENV_VARIABLE"] = 115] = "DEFINE_NEW_ENV_VARIABLE"; + CortexStepType2[CortexStepType2["WRITE_BLOB"] = 128] = "WRITE_BLOB"; + CortexStepType2[CortexStepType2["AGENCY_TOOL_CALL"] = 103] = "AGENCY_TOOL_CALL"; + CortexStepType2[CortexStepType2["PLAN_INPUT"] = 3] = "PLAN_INPUT"; + CortexStepType2[CortexStepType2["PROPOSE_CODE"] = 24] = "PROPOSE_CODE"; + CortexStepType2[CortexStepType2["MANAGER_FEEDBACK"] = 39] = "MANAGER_FEEDBACK"; + CortexStepType2[CortexStepType2["TOOL_CALL_PROPOSAL"] = 40] = "TOOL_CALL_PROPOSAL"; + CortexStepType2[CortexStepType2["TOOL_CALL_CHOICE"] = 41] = "TOOL_CALL_CHOICE"; + CortexStepType2[CortexStepType2["TRAJECTORY_CHOICE"] = 42] = "TRAJECTORY_CHOICE"; + CortexStepType2[CortexStepType2["POST_PR_REVIEW"] = 49] = "POST_PR_REVIEW"; + CortexStepType2[CortexStepType2["FIND_ALL_REFERENCES"] = 54] = "FIND_ALL_REFERENCES"; + CortexStepType2[CortexStepType2["BRAIN_UPDATE"] = 55] = "BRAIN_UPDATE"; + CortexStepType2[CortexStepType2["ADD_ANNOTATION"] = 58] = "ADD_ANNOTATION"; + CortexStepType2[CortexStepType2["PROPOSAL_FEEDBACK"] = 59] = "PROPOSAL_FEEDBACK"; + CortexStepType2[CortexStepType2["RETRIEVE_MEMORY"] = 34] = "RETRIEVE_MEMORY"; + CortexStepType2[CortexStepType2["MEMORY"] = 29] = "MEMORY"; })(CortexStepType || (CortexStepType = {})); -proto3.util.setEnumType(CortexStepType, 'exa.cortex_pb.CortexStepType', [ - { no: 0, name: 'CORTEX_STEP_TYPE_UNSPECIFIED' }, - { no: 1, name: 'CORTEX_STEP_TYPE_DUMMY' }, - { no: 2, name: 'CORTEX_STEP_TYPE_FINISH' }, - { no: 4, name: 'CORTEX_STEP_TYPE_MQUERY' }, - { no: 5, name: 'CORTEX_STEP_TYPE_CODE_ACTION' }, - { no: 6, name: 'CORTEX_STEP_TYPE_GIT_COMMIT' }, - { no: 7, name: 'CORTEX_STEP_TYPE_GREP_SEARCH' }, - { no: 10, name: 'CORTEX_STEP_TYPE_COMPILE' }, - { no: 13, name: 'CORTEX_STEP_TYPE_VIEW_CODE_ITEM' }, - { no: 17, name: 'CORTEX_STEP_TYPE_ERROR_MESSAGE' }, - { no: 21, name: 'CORTEX_STEP_TYPE_RUN_COMMAND' }, - { no: 25, name: 'CORTEX_STEP_TYPE_FIND' }, - { no: 27, name: 'CORTEX_STEP_TYPE_SUGGESTED_RESPONSES' }, - { no: 28, name: 'CORTEX_STEP_TYPE_COMMAND_STATUS' }, - { no: 31, name: 'CORTEX_STEP_TYPE_READ_URL_CONTENT' }, - { no: 32, name: 'CORTEX_STEP_TYPE_VIEW_CONTENT_CHUNK' }, - { no: 33, name: 'CORTEX_STEP_TYPE_SEARCH_WEB' }, - { no: 38, name: 'CORTEX_STEP_TYPE_MCP_TOOL' }, - { no: 45, name: 'CORTEX_STEP_TYPE_CLIPBOARD' }, - { no: 47, name: 'CORTEX_STEP_TYPE_VIEW_FILE_OUTLINE' }, - { no: 51, name: 'CORTEX_STEP_TYPE_LIST_RESOURCES' }, - { no: 52, name: 'CORTEX_STEP_TYPE_READ_RESOURCE' }, - { no: 53, name: 'CORTEX_STEP_TYPE_LINT_DIFF' }, - { no: 56, name: 'CORTEX_STEP_TYPE_OPEN_BROWSER_URL' }, - { no: 57, name: 'CORTEX_STEP_TYPE_RUN_EXTENSION_CODE' }, - { no: 60, name: 'CORTEX_STEP_TYPE_TRAJECTORY_SEARCH' }, - { no: 61, name: 'CORTEX_STEP_TYPE_EXECUTE_BROWSER_JAVASCRIPT' }, - { no: 62, name: 'CORTEX_STEP_TYPE_LIST_BROWSER_PAGES' }, - { no: 63, name: 'CORTEX_STEP_TYPE_CAPTURE_BROWSER_SCREENSHOT' }, - { no: 64, name: 'CORTEX_STEP_TYPE_CLICK_BROWSER_PIXEL' }, - { no: 65, name: 'CORTEX_STEP_TYPE_READ_TERMINAL' }, - { no: 66, name: 'CORTEX_STEP_TYPE_CAPTURE_BROWSER_CONSOLE_LOGS' }, - { no: 67, name: 'CORTEX_STEP_TYPE_READ_BROWSER_PAGE' }, - { no: 68, name: 'CORTEX_STEP_TYPE_BROWSER_GET_DOM' }, - { no: 73, name: 'CORTEX_STEP_TYPE_CODE_SEARCH' }, - { no: 74, name: 'CORTEX_STEP_TYPE_BROWSER_INPUT' }, - { no: 75, name: 'CORTEX_STEP_TYPE_BROWSER_MOVE_MOUSE' }, - { no: 76, name: 'CORTEX_STEP_TYPE_BROWSER_SELECT_OPTION' }, - { no: 77, name: 'CORTEX_STEP_TYPE_BROWSER_SCROLL_UP' }, - { no: 78, name: 'CORTEX_STEP_TYPE_BROWSER_SCROLL_DOWN' }, - { no: 79, name: 'CORTEX_STEP_TYPE_BROWSER_CLICK_ELEMENT' }, - { no: 123, name: 'CORTEX_STEP_TYPE_BROWSER_LIST_NETWORK_REQUESTS' }, - { no: 124, name: 'CORTEX_STEP_TYPE_BROWSER_GET_NETWORK_REQUEST' }, - { no: 80, name: 'CORTEX_STEP_TYPE_BROWSER_PRESS_KEY' }, - { no: 81, name: 'CORTEX_STEP_TYPE_TASK_BOUNDARY' }, - { no: 82, name: 'CORTEX_STEP_TYPE_NOTIFY_USER' }, - { no: 83, name: 'CORTEX_STEP_TYPE_CODE_ACKNOWLEDGEMENT' }, - { no: 84, name: 'CORTEX_STEP_TYPE_INTERNAL_SEARCH' }, - { no: 85, name: 'CORTEX_STEP_TYPE_BROWSER_SUBAGENT' }, - { no: 88, name: 'CORTEX_STEP_TYPE_BROWSER_SCROLL' }, - { no: 89, name: 'CORTEX_STEP_TYPE_KNOWLEDGE_GENERATION' }, - { no: 91, name: 'CORTEX_STEP_TYPE_GENERATE_IMAGE' }, - { no: 96, name: 'CORTEX_STEP_TYPE_BROWSER_RESIZE_WINDOW' }, - { no: 97, name: 'CORTEX_STEP_TYPE_BROWSER_DRAG_PIXEL_TO_PIXEL' }, - { no: 113, name: 'CORTEX_STEP_TYPE_BROWSER_MOUSE_WHEEL' }, - { no: 120, name: 'CORTEX_STEP_TYPE_BROWSER_MOUSE_UP' }, - { no: 121, name: 'CORTEX_STEP_TYPE_BROWSER_MOUSE_DOWN' }, - { no: 125, name: 'CORTEX_STEP_TYPE_BROWSER_REFRESH_PAGE' }, - { no: 98, name: 'CORTEX_STEP_TYPE_CONVERSATION_HISTORY' }, - { no: 99, name: 'CORTEX_STEP_TYPE_KNOWLEDGE_ARTIFACTS' }, - { no: 100, name: 'CORTEX_STEP_TYPE_SEND_COMMAND_INPUT' }, - { no: 101, name: 'CORTEX_STEP_TYPE_SYSTEM_MESSAGE' }, - { no: 102, name: 'CORTEX_STEP_TYPE_WAIT' }, - { no: 116, name: 'CORTEX_STEP_TYPE_KI_INSERTION' }, - { no: 122, name: 'CORTEX_STEP_TYPE_WORKSPACE_API' }, - { no: 127, name: 'CORTEX_STEP_TYPE_INVOKE_SUBAGENT' }, - { no: 14, name: 'CORTEX_STEP_TYPE_USER_INPUT' }, - { no: 15, name: 'CORTEX_STEP_TYPE_PLANNER_RESPONSE' }, - { no: 8, name: 'CORTEX_STEP_TYPE_VIEW_FILE' }, - { no: 9, name: 'CORTEX_STEP_TYPE_LIST_DIRECTORY' }, - { no: 23, name: 'CORTEX_STEP_TYPE_CHECKPOINT' }, - { no: 86, name: 'CORTEX_STEP_TYPE_FILE_CHANGE' }, - { no: 92, name: 'CORTEX_STEP_TYPE_DELETE_DIRECTORY' }, - { no: 87, name: 'CORTEX_STEP_TYPE_MOVE' }, - { no: 90, name: 'CORTEX_STEP_TYPE_EPHEMERAL_MESSAGE' }, - { no: 93, name: 'CORTEX_STEP_TYPE_COMPILE_APPLET' }, - { no: 94, name: 'CORTEX_STEP_TYPE_INSTALL_APPLET_DEPENDENCIES' }, - { no: 95, name: 'CORTEX_STEP_TYPE_INSTALL_APPLET_PACKAGE' }, - { no: 108, name: 'CORTEX_STEP_TYPE_SET_UP_FIREBASE' }, - { no: 110, name: 'CORTEX_STEP_TYPE_RESTART_DEV_SERVER' }, - { no: 111, name: 'CORTEX_STEP_TYPE_DEPLOY_FIREBASE' }, - { no: 112, name: 'CORTEX_STEP_TYPE_SHELL_EXEC' }, - { no: 114, name: 'CORTEX_STEP_TYPE_LINT_APPLET' }, - { no: 115, name: 'CORTEX_STEP_TYPE_DEFINE_NEW_ENV_VARIABLE' }, - { no: 128, name: 'CORTEX_STEP_TYPE_WRITE_BLOB' }, - { no: 103, name: 'CORTEX_STEP_TYPE_AGENCY_TOOL_CALL' }, - { no: 3, name: 'CORTEX_STEP_TYPE_PLAN_INPUT' }, - { no: 24, name: 'CORTEX_STEP_TYPE_PROPOSE_CODE' }, - { no: 39, name: 'CORTEX_STEP_TYPE_MANAGER_FEEDBACK' }, - { no: 40, name: 'CORTEX_STEP_TYPE_TOOL_CALL_PROPOSAL' }, - { no: 41, name: 'CORTEX_STEP_TYPE_TOOL_CALL_CHOICE' }, - { no: 42, name: 'CORTEX_STEP_TYPE_TRAJECTORY_CHOICE' }, - { no: 49, name: 'CORTEX_STEP_TYPE_POST_PR_REVIEW' }, - { no: 54, name: 'CORTEX_STEP_TYPE_FIND_ALL_REFERENCES' }, - { no: 55, name: 'CORTEX_STEP_TYPE_BRAIN_UPDATE' }, - { no: 58, name: 'CORTEX_STEP_TYPE_ADD_ANNOTATION' }, - { no: 59, name: 'CORTEX_STEP_TYPE_PROPOSAL_FEEDBACK' }, - { no: 34, name: 'CORTEX_STEP_TYPE_RETRIEVE_MEMORY' }, - { no: 29, name: 'CORTEX_STEP_TYPE_MEMORY' }, +proto3.util.setEnumType(CortexStepType, "exa.cortex_pb.CortexStepType", [ + { no: 0, name: "CORTEX_STEP_TYPE_UNSPECIFIED" }, + { no: 1, name: "CORTEX_STEP_TYPE_DUMMY" }, + { no: 2, name: "CORTEX_STEP_TYPE_FINISH" }, + { no: 4, name: "CORTEX_STEP_TYPE_MQUERY" }, + { no: 5, name: "CORTEX_STEP_TYPE_CODE_ACTION" }, + { no: 6, name: "CORTEX_STEP_TYPE_GIT_COMMIT" }, + { no: 7, name: "CORTEX_STEP_TYPE_GREP_SEARCH" }, + { no: 10, name: "CORTEX_STEP_TYPE_COMPILE" }, + { no: 13, name: "CORTEX_STEP_TYPE_VIEW_CODE_ITEM" }, + { no: 17, name: "CORTEX_STEP_TYPE_ERROR_MESSAGE" }, + { no: 21, name: "CORTEX_STEP_TYPE_RUN_COMMAND" }, + { no: 25, name: "CORTEX_STEP_TYPE_FIND" }, + { no: 27, name: "CORTEX_STEP_TYPE_SUGGESTED_RESPONSES" }, + { no: 28, name: "CORTEX_STEP_TYPE_COMMAND_STATUS" }, + { no: 31, name: "CORTEX_STEP_TYPE_READ_URL_CONTENT" }, + { no: 32, name: "CORTEX_STEP_TYPE_VIEW_CONTENT_CHUNK" }, + { no: 33, name: "CORTEX_STEP_TYPE_SEARCH_WEB" }, + { no: 38, name: "CORTEX_STEP_TYPE_MCP_TOOL" }, + { no: 45, name: "CORTEX_STEP_TYPE_CLIPBOARD" }, + { no: 47, name: "CORTEX_STEP_TYPE_VIEW_FILE_OUTLINE" }, + { no: 51, name: "CORTEX_STEP_TYPE_LIST_RESOURCES" }, + { no: 52, name: "CORTEX_STEP_TYPE_READ_RESOURCE" }, + { no: 53, name: "CORTEX_STEP_TYPE_LINT_DIFF" }, + { no: 56, name: "CORTEX_STEP_TYPE_OPEN_BROWSER_URL" }, + { no: 57, name: "CORTEX_STEP_TYPE_RUN_EXTENSION_CODE" }, + { no: 60, name: "CORTEX_STEP_TYPE_TRAJECTORY_SEARCH" }, + { no: 61, name: "CORTEX_STEP_TYPE_EXECUTE_BROWSER_JAVASCRIPT" }, + { no: 62, name: "CORTEX_STEP_TYPE_LIST_BROWSER_PAGES" }, + { no: 63, name: "CORTEX_STEP_TYPE_CAPTURE_BROWSER_SCREENSHOT" }, + { no: 64, name: "CORTEX_STEP_TYPE_CLICK_BROWSER_PIXEL" }, + { no: 65, name: "CORTEX_STEP_TYPE_READ_TERMINAL" }, + { no: 66, name: "CORTEX_STEP_TYPE_CAPTURE_BROWSER_CONSOLE_LOGS" }, + { no: 67, name: "CORTEX_STEP_TYPE_READ_BROWSER_PAGE" }, + { no: 68, name: "CORTEX_STEP_TYPE_BROWSER_GET_DOM" }, + { no: 73, name: "CORTEX_STEP_TYPE_CODE_SEARCH" }, + { no: 74, name: "CORTEX_STEP_TYPE_BROWSER_INPUT" }, + { no: 75, name: "CORTEX_STEP_TYPE_BROWSER_MOVE_MOUSE" }, + { no: 76, name: "CORTEX_STEP_TYPE_BROWSER_SELECT_OPTION" }, + { no: 77, name: "CORTEX_STEP_TYPE_BROWSER_SCROLL_UP" }, + { no: 78, name: "CORTEX_STEP_TYPE_BROWSER_SCROLL_DOWN" }, + { no: 79, name: "CORTEX_STEP_TYPE_BROWSER_CLICK_ELEMENT" }, + { no: 123, name: "CORTEX_STEP_TYPE_BROWSER_LIST_NETWORK_REQUESTS" }, + { no: 124, name: "CORTEX_STEP_TYPE_BROWSER_GET_NETWORK_REQUEST" }, + { no: 80, name: "CORTEX_STEP_TYPE_BROWSER_PRESS_KEY" }, + { no: 81, name: "CORTEX_STEP_TYPE_TASK_BOUNDARY" }, + { no: 82, name: "CORTEX_STEP_TYPE_NOTIFY_USER" }, + { no: 83, name: "CORTEX_STEP_TYPE_CODE_ACKNOWLEDGEMENT" }, + { no: 84, name: "CORTEX_STEP_TYPE_INTERNAL_SEARCH" }, + { no: 85, name: "CORTEX_STEP_TYPE_BROWSER_SUBAGENT" }, + { no: 88, name: "CORTEX_STEP_TYPE_BROWSER_SCROLL" }, + { no: 89, name: "CORTEX_STEP_TYPE_KNOWLEDGE_GENERATION" }, + { no: 91, name: "CORTEX_STEP_TYPE_GENERATE_IMAGE" }, + { no: 96, name: "CORTEX_STEP_TYPE_BROWSER_RESIZE_WINDOW" }, + { no: 97, name: "CORTEX_STEP_TYPE_BROWSER_DRAG_PIXEL_TO_PIXEL" }, + { no: 113, name: "CORTEX_STEP_TYPE_BROWSER_MOUSE_WHEEL" }, + { no: 120, name: "CORTEX_STEP_TYPE_BROWSER_MOUSE_UP" }, + { no: 121, name: "CORTEX_STEP_TYPE_BROWSER_MOUSE_DOWN" }, + { no: 125, name: "CORTEX_STEP_TYPE_BROWSER_REFRESH_PAGE" }, + { no: 98, name: "CORTEX_STEP_TYPE_CONVERSATION_HISTORY" }, + { no: 99, name: "CORTEX_STEP_TYPE_KNOWLEDGE_ARTIFACTS" }, + { no: 100, name: "CORTEX_STEP_TYPE_SEND_COMMAND_INPUT" }, + { no: 101, name: "CORTEX_STEP_TYPE_SYSTEM_MESSAGE" }, + { no: 102, name: "CORTEX_STEP_TYPE_WAIT" }, + { no: 116, name: "CORTEX_STEP_TYPE_KI_INSERTION" }, + { no: 122, name: "CORTEX_STEP_TYPE_WORKSPACE_API" }, + { no: 127, name: "CORTEX_STEP_TYPE_INVOKE_SUBAGENT" }, + { no: 14, name: "CORTEX_STEP_TYPE_USER_INPUT" }, + { no: 15, name: "CORTEX_STEP_TYPE_PLANNER_RESPONSE" }, + { no: 8, name: "CORTEX_STEP_TYPE_VIEW_FILE" }, + { no: 9, name: "CORTEX_STEP_TYPE_LIST_DIRECTORY" }, + { no: 23, name: "CORTEX_STEP_TYPE_CHECKPOINT" }, + { no: 86, name: "CORTEX_STEP_TYPE_FILE_CHANGE" }, + { no: 92, name: "CORTEX_STEP_TYPE_DELETE_DIRECTORY" }, + { no: 87, name: "CORTEX_STEP_TYPE_MOVE" }, + { no: 90, name: "CORTEX_STEP_TYPE_EPHEMERAL_MESSAGE" }, + { no: 93, name: "CORTEX_STEP_TYPE_COMPILE_APPLET" }, + { no: 94, name: "CORTEX_STEP_TYPE_INSTALL_APPLET_DEPENDENCIES" }, + { no: 95, name: "CORTEX_STEP_TYPE_INSTALL_APPLET_PACKAGE" }, + { no: 108, name: "CORTEX_STEP_TYPE_SET_UP_FIREBASE" }, + { no: 110, name: "CORTEX_STEP_TYPE_RESTART_DEV_SERVER" }, + { no: 111, name: "CORTEX_STEP_TYPE_DEPLOY_FIREBASE" }, + { no: 112, name: "CORTEX_STEP_TYPE_SHELL_EXEC" }, + { no: 114, name: "CORTEX_STEP_TYPE_LINT_APPLET" }, + { no: 115, name: "CORTEX_STEP_TYPE_DEFINE_NEW_ENV_VARIABLE" }, + { no: 128, name: "CORTEX_STEP_TYPE_WRITE_BLOB" }, + { no: 103, name: "CORTEX_STEP_TYPE_AGENCY_TOOL_CALL" }, + { no: 3, name: "CORTEX_STEP_TYPE_PLAN_INPUT" }, + { no: 24, name: "CORTEX_STEP_TYPE_PROPOSE_CODE" }, + { no: 39, name: "CORTEX_STEP_TYPE_MANAGER_FEEDBACK" }, + { no: 40, name: "CORTEX_STEP_TYPE_TOOL_CALL_PROPOSAL" }, + { no: 41, name: "CORTEX_STEP_TYPE_TOOL_CALL_CHOICE" }, + { no: 42, name: "CORTEX_STEP_TYPE_TRAJECTORY_CHOICE" }, + { no: 49, name: "CORTEX_STEP_TYPE_POST_PR_REVIEW" }, + { no: 54, name: "CORTEX_STEP_TYPE_FIND_ALL_REFERENCES" }, + { no: 55, name: "CORTEX_STEP_TYPE_BRAIN_UPDATE" }, + { no: 58, name: "CORTEX_STEP_TYPE_ADD_ANNOTATION" }, + { no: 59, name: "CORTEX_STEP_TYPE_PROPOSAL_FEEDBACK" }, + { no: 34, name: "CORTEX_STEP_TYPE_RETRIEVE_MEMORY" }, + { no: 29, name: "CORTEX_STEP_TYPE_MEMORY" } ]); var CheckpointType; -(function (CheckpointType2) { - CheckpointType2[(CheckpointType2['UNSPECIFIED'] = 0)] = 'UNSPECIFIED'; +(function(CheckpointType2) { + CheckpointType2[CheckpointType2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; })(CheckpointType || (CheckpointType = {})); -proto3.util.setEnumType(CheckpointType, 'exa.cortex_pb.CheckpointType', [ - { no: 0, name: 'CHECKPOINT_TYPE_UNSPECIFIED' }, +proto3.util.setEnumType(CheckpointType, "exa.cortex_pb.CheckpointType", [ + { no: 0, name: "CHECKPOINT_TYPE_UNSPECIFIED" } ]); var SemanticCodebaseSearchType; -(function (SemanticCodebaseSearchType2) { - SemanticCodebaseSearchType2[ - (SemanticCodebaseSearchType2['UNSPECIFIED'] = 0) - ] = 'UNSPECIFIED'; - SemanticCodebaseSearchType2[(SemanticCodebaseSearchType2['MQUERY'] = 1)] = - 'MQUERY'; - SemanticCodebaseSearchType2[ - (SemanticCodebaseSearchType2['VECTOR_INDEX'] = 2) - ] = 'VECTOR_INDEX'; +(function(SemanticCodebaseSearchType2) { + SemanticCodebaseSearchType2[SemanticCodebaseSearchType2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + SemanticCodebaseSearchType2[SemanticCodebaseSearchType2["MQUERY"] = 1] = "MQUERY"; + SemanticCodebaseSearchType2[SemanticCodebaseSearchType2["VECTOR_INDEX"] = 2] = "VECTOR_INDEX"; })(SemanticCodebaseSearchType || (SemanticCodebaseSearchType = {})); -proto3.util.setEnumType( - SemanticCodebaseSearchType, - 'exa.cortex_pb.SemanticCodebaseSearchType', - [ - { no: 0, name: 'SEMANTIC_CODEBASE_SEARCH_TYPE_UNSPECIFIED' }, - { no: 1, name: 'SEMANTIC_CODEBASE_SEARCH_TYPE_MQUERY' }, - { no: 2, name: 'SEMANTIC_CODEBASE_SEARCH_TYPE_VECTOR_INDEX' }, - ], -); +proto3.util.setEnumType(SemanticCodebaseSearchType, "exa.cortex_pb.SemanticCodebaseSearchType", [ + { no: 0, name: "SEMANTIC_CODEBASE_SEARCH_TYPE_UNSPECIFIED" }, + { no: 1, name: "SEMANTIC_CODEBASE_SEARCH_TYPE_MQUERY" }, + { no: 2, name: "SEMANTIC_CODEBASE_SEARCH_TYPE_VECTOR_INDEX" } +]); var AcknowledgementType; -(function (AcknowledgementType2) { - AcknowledgementType2[(AcknowledgementType2['UNSPECIFIED'] = 0)] = - 'UNSPECIFIED'; - AcknowledgementType2[(AcknowledgementType2['ACCEPT'] = 1)] = 'ACCEPT'; - AcknowledgementType2[(AcknowledgementType2['REJECT'] = 2)] = 'REJECT'; - AcknowledgementType2[(AcknowledgementType2['STALE'] = 3)] = 'STALE'; - AcknowledgementType2[(AcknowledgementType2['CLEARED'] = 4)] = 'CLEARED'; +(function(AcknowledgementType2) { + AcknowledgementType2[AcknowledgementType2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + AcknowledgementType2[AcknowledgementType2["ACCEPT"] = 1] = "ACCEPT"; + AcknowledgementType2[AcknowledgementType2["REJECT"] = 2] = "REJECT"; + AcknowledgementType2[AcknowledgementType2["STALE"] = 3] = "STALE"; + AcknowledgementType2[AcknowledgementType2["CLEARED"] = 4] = "CLEARED"; })(AcknowledgementType || (AcknowledgementType = {})); -proto3.util.setEnumType( - AcknowledgementType, - 'exa.cortex_pb.AcknowledgementType', - [ - { no: 0, name: 'ACKNOWLEDGEMENT_TYPE_UNSPECIFIED' }, - { no: 1, name: 'ACKNOWLEDGEMENT_TYPE_ACCEPT' }, - { no: 2, name: 'ACKNOWLEDGEMENT_TYPE_REJECT' }, - { no: 3, name: 'ACKNOWLEDGEMENT_TYPE_STALE' }, - { no: 4, name: 'ACKNOWLEDGEMENT_TYPE_CLEARED' }, - ], -); +proto3.util.setEnumType(AcknowledgementType, "exa.cortex_pb.AcknowledgementType", [ + { no: 0, name: "ACKNOWLEDGEMENT_TYPE_UNSPECIFIED" }, + { no: 1, name: "ACKNOWLEDGEMENT_TYPE_ACCEPT" }, + { no: 2, name: "ACKNOWLEDGEMENT_TYPE_REJECT" }, + { no: 3, name: "ACKNOWLEDGEMENT_TYPE_STALE" }, + { no: 4, name: "ACKNOWLEDGEMENT_TYPE_CLEARED" } +]); var CodeHeuristicFailure; -(function (CodeHeuristicFailure2) { - CodeHeuristicFailure2[(CodeHeuristicFailure2['UNSPECIFIED'] = 0)] = - 'UNSPECIFIED'; - CodeHeuristicFailure2[(CodeHeuristicFailure2['LAZY_COMMENT'] = 1)] = - 'LAZY_COMMENT'; - CodeHeuristicFailure2[(CodeHeuristicFailure2['DELETED_LINES'] = 2)] = - 'DELETED_LINES'; +(function(CodeHeuristicFailure2) { + CodeHeuristicFailure2[CodeHeuristicFailure2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + CodeHeuristicFailure2[CodeHeuristicFailure2["LAZY_COMMENT"] = 1] = "LAZY_COMMENT"; + CodeHeuristicFailure2[CodeHeuristicFailure2["DELETED_LINES"] = 2] = "DELETED_LINES"; })(CodeHeuristicFailure || (CodeHeuristicFailure = {})); -proto3.util.setEnumType( - CodeHeuristicFailure, - 'exa.cortex_pb.CodeHeuristicFailure', - [ - { no: 0, name: 'CODE_HEURISTIC_FAILURE_UNSPECIFIED' }, - { no: 1, name: 'CODE_HEURISTIC_FAILURE_LAZY_COMMENT' }, - { no: 2, name: 'CODE_HEURISTIC_FAILURE_DELETED_LINES' }, - ], -); +proto3.util.setEnumType(CodeHeuristicFailure, "exa.cortex_pb.CodeHeuristicFailure", [ + { no: 0, name: "CODE_HEURISTIC_FAILURE_UNSPECIFIED" }, + { no: 1, name: "CODE_HEURISTIC_FAILURE_LAZY_COMMENT" }, + { no: 2, name: "CODE_HEURISTIC_FAILURE_DELETED_LINES" } +]); var FileChangeType; -(function (FileChangeType2) { - FileChangeType2[(FileChangeType2['UNSPECIFIED'] = 0)] = 'UNSPECIFIED'; - FileChangeType2[(FileChangeType2['CREATE'] = 1)] = 'CREATE'; - FileChangeType2[(FileChangeType2['EDIT'] = 2)] = 'EDIT'; - FileChangeType2[(FileChangeType2['DELETE'] = 3)] = 'DELETE'; +(function(FileChangeType2) { + FileChangeType2[FileChangeType2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + FileChangeType2[FileChangeType2["CREATE"] = 1] = "CREATE"; + FileChangeType2[FileChangeType2["EDIT"] = 2] = "EDIT"; + FileChangeType2[FileChangeType2["DELETE"] = 3] = "DELETE"; })(FileChangeType || (FileChangeType = {})); -proto3.util.setEnumType(FileChangeType, 'exa.cortex_pb.FileChangeType', [ - { no: 0, name: 'FILE_CHANGE_TYPE_UNSPECIFIED' }, - { no: 1, name: 'FILE_CHANGE_TYPE_CREATE' }, - { no: 2, name: 'FILE_CHANGE_TYPE_EDIT' }, - { no: 3, name: 'FILE_CHANGE_TYPE_DELETE' }, +proto3.util.setEnumType(FileChangeType, "exa.cortex_pb.FileChangeType", [ + { no: 0, name: "FILE_CHANGE_TYPE_UNSPECIFIED" }, + { no: 1, name: "FILE_CHANGE_TYPE_CREATE" }, + { no: 2, name: "FILE_CHANGE_TYPE_EDIT" }, + { no: 3, name: "FILE_CHANGE_TYPE_DELETE" } ]); var FindResultType; -(function (FindResultType2) { - FindResultType2[(FindResultType2['UNSPECIFIED'] = 0)] = 'UNSPECIFIED'; - FindResultType2[(FindResultType2['FILE'] = 1)] = 'FILE'; - FindResultType2[(FindResultType2['DIRECTORY'] = 2)] = 'DIRECTORY'; - FindResultType2[(FindResultType2['ANY'] = 3)] = 'ANY'; +(function(FindResultType2) { + FindResultType2[FindResultType2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + FindResultType2[FindResultType2["FILE"] = 1] = "FILE"; + FindResultType2[FindResultType2["DIRECTORY"] = 2] = "DIRECTORY"; + FindResultType2[FindResultType2["ANY"] = 3] = "ANY"; })(FindResultType || (FindResultType = {})); -proto3.util.setEnumType(FindResultType, 'exa.cortex_pb.FindResultType', [ - { no: 0, name: 'FIND_RESULT_TYPE_UNSPECIFIED' }, - { no: 1, name: 'FIND_RESULT_TYPE_FILE' }, - { no: 2, name: 'FIND_RESULT_TYPE_DIRECTORY' }, - { no: 3, name: 'FIND_RESULT_TYPE_ANY' }, +proto3.util.setEnumType(FindResultType, "exa.cortex_pb.FindResultType", [ + { no: 0, name: "FIND_RESULT_TYPE_UNSPECIFIED" }, + { no: 1, name: "FIND_RESULT_TYPE_FILE" }, + { no: 2, name: "FIND_RESULT_TYPE_DIRECTORY" }, + { no: 3, name: "FIND_RESULT_TYPE_ANY" } ]); var CortexStepCompileTool; -(function (CortexStepCompileTool2) { - CortexStepCompileTool2[(CortexStepCompileTool2['UNSPECIFIED'] = 0)] = - 'UNSPECIFIED'; - CortexStepCompileTool2[(CortexStepCompileTool2['PYLINT'] = 1)] = 'PYLINT'; +(function(CortexStepCompileTool2) { + CortexStepCompileTool2[CortexStepCompileTool2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + CortexStepCompileTool2[CortexStepCompileTool2["PYLINT"] = 1] = "PYLINT"; })(CortexStepCompileTool || (CortexStepCompileTool = {})); -proto3.util.setEnumType( - CortexStepCompileTool, - 'exa.cortex_pb.CortexStepCompileTool', - [ - { no: 0, name: 'CORTEX_STEP_COMPILE_TOOL_UNSPECIFIED' }, - { no: 1, name: 'CORTEX_STEP_COMPILE_TOOL_PYLINT' }, - ], -); +proto3.util.setEnumType(CortexStepCompileTool, "exa.cortex_pb.CortexStepCompileTool", [ + { no: 0, name: "CORTEX_STEP_COMPILE_TOOL_UNSPECIFIED" }, + { no: 1, name: "CORTEX_STEP_COMPILE_TOOL_PYLINT" } +]); var SetUpFirebaseErrorCode; -(function (SetUpFirebaseErrorCode2) { - SetUpFirebaseErrorCode2[(SetUpFirebaseErrorCode2['ERROR_CODE_OK'] = 0)] = - 'ERROR_CODE_OK'; - SetUpFirebaseErrorCode2[ - (SetUpFirebaseErrorCode2['ERROR_CODE_CANCELLED'] = 1) - ] = 'ERROR_CODE_CANCELLED'; - SetUpFirebaseErrorCode2[(SetUpFirebaseErrorCode2['ERROR_CODE_UNKNOWN'] = 2)] = - 'ERROR_CODE_UNKNOWN'; - SetUpFirebaseErrorCode2[ - (SetUpFirebaseErrorCode2['ERROR_CODE_INVALID_ARGUMENT'] = 3) - ] = 'ERROR_CODE_INVALID_ARGUMENT'; - SetUpFirebaseErrorCode2[ - (SetUpFirebaseErrorCode2['ERROR_CODE_DEADLINE_EXCEEDED'] = 4) - ] = 'ERROR_CODE_DEADLINE_EXCEEDED'; - SetUpFirebaseErrorCode2[ - (SetUpFirebaseErrorCode2['ERROR_CODE_NOT_FOUND'] = 5) - ] = 'ERROR_CODE_NOT_FOUND'; - SetUpFirebaseErrorCode2[ - (SetUpFirebaseErrorCode2['ERROR_CODE_ALREADY_EXISTS'] = 6) - ] = 'ERROR_CODE_ALREADY_EXISTS'; - SetUpFirebaseErrorCode2[ - (SetUpFirebaseErrorCode2['ERROR_CODE_PERMISSION_DENIED'] = 7) - ] = 'ERROR_CODE_PERMISSION_DENIED'; - SetUpFirebaseErrorCode2[ - (SetUpFirebaseErrorCode2['ERROR_CODE_UNAUTHENTICATED'] = 16) - ] = 'ERROR_CODE_UNAUTHENTICATED'; - SetUpFirebaseErrorCode2[ - (SetUpFirebaseErrorCode2['ERROR_CODE_RESOURCE_EXHAUSTED'] = 8) - ] = 'ERROR_CODE_RESOURCE_EXHAUSTED'; - SetUpFirebaseErrorCode2[ - (SetUpFirebaseErrorCode2['ERROR_CODE_FAILED_PRECONDITION'] = 9) - ] = 'ERROR_CODE_FAILED_PRECONDITION'; - SetUpFirebaseErrorCode2[ - (SetUpFirebaseErrorCode2['ERROR_CODE_ABORTED'] = 10) - ] = 'ERROR_CODE_ABORTED'; - SetUpFirebaseErrorCode2[ - (SetUpFirebaseErrorCode2['ERROR_CODE_OUT_OF_RANGE'] = 11) - ] = 'ERROR_CODE_OUT_OF_RANGE'; - SetUpFirebaseErrorCode2[ - (SetUpFirebaseErrorCode2['ERROR_CODE_UNIMPLEMENTED'] = 12) - ] = 'ERROR_CODE_UNIMPLEMENTED'; - SetUpFirebaseErrorCode2[ - (SetUpFirebaseErrorCode2['ERROR_CODE_INTERNAL'] = 13) - ] = 'ERROR_CODE_INTERNAL'; - SetUpFirebaseErrorCode2[ - (SetUpFirebaseErrorCode2['ERROR_CODE_UNAVAILABLE'] = 14) - ] = 'ERROR_CODE_UNAVAILABLE'; - SetUpFirebaseErrorCode2[ - (SetUpFirebaseErrorCode2['ERROR_CODE_DATA_LOSS'] = 15) - ] = 'ERROR_CODE_DATA_LOSS'; +(function(SetUpFirebaseErrorCode2) { + SetUpFirebaseErrorCode2[SetUpFirebaseErrorCode2["ERROR_CODE_OK"] = 0] = "ERROR_CODE_OK"; + SetUpFirebaseErrorCode2[SetUpFirebaseErrorCode2["ERROR_CODE_CANCELLED"] = 1] = "ERROR_CODE_CANCELLED"; + SetUpFirebaseErrorCode2[SetUpFirebaseErrorCode2["ERROR_CODE_UNKNOWN"] = 2] = "ERROR_CODE_UNKNOWN"; + SetUpFirebaseErrorCode2[SetUpFirebaseErrorCode2["ERROR_CODE_INVALID_ARGUMENT"] = 3] = "ERROR_CODE_INVALID_ARGUMENT"; + SetUpFirebaseErrorCode2[SetUpFirebaseErrorCode2["ERROR_CODE_DEADLINE_EXCEEDED"] = 4] = "ERROR_CODE_DEADLINE_EXCEEDED"; + SetUpFirebaseErrorCode2[SetUpFirebaseErrorCode2["ERROR_CODE_NOT_FOUND"] = 5] = "ERROR_CODE_NOT_FOUND"; + SetUpFirebaseErrorCode2[SetUpFirebaseErrorCode2["ERROR_CODE_ALREADY_EXISTS"] = 6] = "ERROR_CODE_ALREADY_EXISTS"; + SetUpFirebaseErrorCode2[SetUpFirebaseErrorCode2["ERROR_CODE_PERMISSION_DENIED"] = 7] = "ERROR_CODE_PERMISSION_DENIED"; + SetUpFirebaseErrorCode2[SetUpFirebaseErrorCode2["ERROR_CODE_UNAUTHENTICATED"] = 16] = "ERROR_CODE_UNAUTHENTICATED"; + SetUpFirebaseErrorCode2[SetUpFirebaseErrorCode2["ERROR_CODE_RESOURCE_EXHAUSTED"] = 8] = "ERROR_CODE_RESOURCE_EXHAUSTED"; + SetUpFirebaseErrorCode2[SetUpFirebaseErrorCode2["ERROR_CODE_FAILED_PRECONDITION"] = 9] = "ERROR_CODE_FAILED_PRECONDITION"; + SetUpFirebaseErrorCode2[SetUpFirebaseErrorCode2["ERROR_CODE_ABORTED"] = 10] = "ERROR_CODE_ABORTED"; + SetUpFirebaseErrorCode2[SetUpFirebaseErrorCode2["ERROR_CODE_OUT_OF_RANGE"] = 11] = "ERROR_CODE_OUT_OF_RANGE"; + SetUpFirebaseErrorCode2[SetUpFirebaseErrorCode2["ERROR_CODE_UNIMPLEMENTED"] = 12] = "ERROR_CODE_UNIMPLEMENTED"; + SetUpFirebaseErrorCode2[SetUpFirebaseErrorCode2["ERROR_CODE_INTERNAL"] = 13] = "ERROR_CODE_INTERNAL"; + SetUpFirebaseErrorCode2[SetUpFirebaseErrorCode2["ERROR_CODE_UNAVAILABLE"] = 14] = "ERROR_CODE_UNAVAILABLE"; + SetUpFirebaseErrorCode2[SetUpFirebaseErrorCode2["ERROR_CODE_DATA_LOSS"] = 15] = "ERROR_CODE_DATA_LOSS"; })(SetUpFirebaseErrorCode || (SetUpFirebaseErrorCode = {})); -proto3.util.setEnumType( - SetUpFirebaseErrorCode, - 'exa.cortex_pb.SetUpFirebaseErrorCode', - [ - { no: 0, name: 'ERROR_CODE_OK' }, - { no: 1, name: 'ERROR_CODE_CANCELLED' }, - { no: 2, name: 'ERROR_CODE_UNKNOWN' }, - { no: 3, name: 'ERROR_CODE_INVALID_ARGUMENT' }, - { no: 4, name: 'ERROR_CODE_DEADLINE_EXCEEDED' }, - { no: 5, name: 'ERROR_CODE_NOT_FOUND' }, - { no: 6, name: 'ERROR_CODE_ALREADY_EXISTS' }, - { no: 7, name: 'ERROR_CODE_PERMISSION_DENIED' }, - { no: 16, name: 'ERROR_CODE_UNAUTHENTICATED' }, - { no: 8, name: 'ERROR_CODE_RESOURCE_EXHAUSTED' }, - { no: 9, name: 'ERROR_CODE_FAILED_PRECONDITION' }, - { no: 10, name: 'ERROR_CODE_ABORTED' }, - { no: 11, name: 'ERROR_CODE_OUT_OF_RANGE' }, - { no: 12, name: 'ERROR_CODE_UNIMPLEMENTED' }, - { no: 13, name: 'ERROR_CODE_INTERNAL' }, - { no: 14, name: 'ERROR_CODE_UNAVAILABLE' }, - { no: 15, name: 'ERROR_CODE_DATA_LOSS' }, - ], -); +proto3.util.setEnumType(SetUpFirebaseErrorCode, "exa.cortex_pb.SetUpFirebaseErrorCode", [ + { no: 0, name: "ERROR_CODE_OK" }, + { no: 1, name: "ERROR_CODE_CANCELLED" }, + { no: 2, name: "ERROR_CODE_UNKNOWN" }, + { no: 3, name: "ERROR_CODE_INVALID_ARGUMENT" }, + { no: 4, name: "ERROR_CODE_DEADLINE_EXCEEDED" }, + { no: 5, name: "ERROR_CODE_NOT_FOUND" }, + { no: 6, name: "ERROR_CODE_ALREADY_EXISTS" }, + { no: 7, name: "ERROR_CODE_PERMISSION_DENIED" }, + { no: 16, name: "ERROR_CODE_UNAUTHENTICATED" }, + { no: 8, name: "ERROR_CODE_RESOURCE_EXHAUSTED" }, + { no: 9, name: "ERROR_CODE_FAILED_PRECONDITION" }, + { no: 10, name: "ERROR_CODE_ABORTED" }, + { no: 11, name: "ERROR_CODE_OUT_OF_RANGE" }, + { no: 12, name: "ERROR_CODE_UNIMPLEMENTED" }, + { no: 13, name: "ERROR_CODE_INTERNAL" }, + { no: 14, name: "ERROR_CODE_UNAVAILABLE" }, + { no: 15, name: "ERROR_CODE_DATA_LOSS" } +]); var SetUpFirebaseRequest; -(function (SetUpFirebaseRequest2) { - SetUpFirebaseRequest2[(SetUpFirebaseRequest2['UNSPECIFIED'] = 0)] = - 'UNSPECIFIED'; - SetUpFirebaseRequest2[(SetUpFirebaseRequest2['FORCE_SHOW_SET_UP_UI'] = 1)] = - 'FORCE_SHOW_SET_UP_UI'; - SetUpFirebaseRequest2[(SetUpFirebaseRequest2['PROVISION'] = 2)] = 'PROVISION'; +(function(SetUpFirebaseRequest2) { + SetUpFirebaseRequest2[SetUpFirebaseRequest2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + SetUpFirebaseRequest2[SetUpFirebaseRequest2["FORCE_SHOW_SET_UP_UI"] = 1] = "FORCE_SHOW_SET_UP_UI"; + SetUpFirebaseRequest2[SetUpFirebaseRequest2["PROVISION"] = 2] = "PROVISION"; })(SetUpFirebaseRequest || (SetUpFirebaseRequest = {})); -proto3.util.setEnumType( - SetUpFirebaseRequest, - 'exa.cortex_pb.SetUpFirebaseRequest', - [ - { no: 0, name: 'SET_UP_FIREBASE_REQUEST_UNSPECIFIED' }, - { no: 1, name: 'SET_UP_FIREBASE_REQUEST_FORCE_SHOW_SET_UP_UI' }, - { no: 2, name: 'SET_UP_FIREBASE_REQUEST_PROVISION' }, - ], -); +proto3.util.setEnumType(SetUpFirebaseRequest, "exa.cortex_pb.SetUpFirebaseRequest", [ + { no: 0, name: "SET_UP_FIREBASE_REQUEST_UNSPECIFIED" }, + { no: 1, name: "SET_UP_FIREBASE_REQUEST_FORCE_SHOW_SET_UP_UI" }, + { no: 2, name: "SET_UP_FIREBASE_REQUEST_PROVISION" } +]); var SetUpFirebaseResult; -(function (SetUpFirebaseResult2) { - SetUpFirebaseResult2[(SetUpFirebaseResult2['UNSPECIFIED'] = 0)] = - 'UNSPECIFIED'; - SetUpFirebaseResult2[(SetUpFirebaseResult2['SHOW_SET_UP_UI'] = 1)] = - 'SHOW_SET_UP_UI'; - SetUpFirebaseResult2[(SetUpFirebaseResult2['IMPLEMENT_FIREBASE'] = 2)] = - 'IMPLEMENT_FIREBASE'; - SetUpFirebaseResult2[(SetUpFirebaseResult2['TOS_ERROR'] = 3)] = 'TOS_ERROR'; - SetUpFirebaseResult2[(SetUpFirebaseResult2['PROVISIONING_ERROR'] = 4)] = - 'PROVISIONING_ERROR'; +(function(SetUpFirebaseResult2) { + SetUpFirebaseResult2[SetUpFirebaseResult2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + SetUpFirebaseResult2[SetUpFirebaseResult2["SHOW_SET_UP_UI"] = 1] = "SHOW_SET_UP_UI"; + SetUpFirebaseResult2[SetUpFirebaseResult2["IMPLEMENT_FIREBASE"] = 2] = "IMPLEMENT_FIREBASE"; + SetUpFirebaseResult2[SetUpFirebaseResult2["TOS_ERROR"] = 3] = "TOS_ERROR"; + SetUpFirebaseResult2[SetUpFirebaseResult2["PROVISIONING_ERROR"] = 4] = "PROVISIONING_ERROR"; })(SetUpFirebaseResult || (SetUpFirebaseResult = {})); -proto3.util.setEnumType( - SetUpFirebaseResult, - 'exa.cortex_pb.SetUpFirebaseResult', - [ - { no: 0, name: 'SET_UP_FIREBASE_RESULT_UNSPECIFIED' }, - { no: 1, name: 'SET_UP_FIREBASE_RESULT_SHOW_SET_UP_UI' }, - { no: 2, name: 'SET_UP_FIREBASE_RESULT_IMPLEMENT_FIREBASE' }, - { no: 3, name: 'SET_UP_FIREBASE_RESULT_TOS_ERROR' }, - { no: 4, name: 'SET_UP_FIREBASE_RESULT_PROVISIONING_ERROR' }, - ], -); +proto3.util.setEnumType(SetUpFirebaseResult, "exa.cortex_pb.SetUpFirebaseResult", [ + { no: 0, name: "SET_UP_FIREBASE_RESULT_UNSPECIFIED" }, + { no: 1, name: "SET_UP_FIREBASE_RESULT_SHOW_SET_UP_UI" }, + { no: 2, name: "SET_UP_FIREBASE_RESULT_IMPLEMENT_FIREBASE" }, + { no: 3, name: "SET_UP_FIREBASE_RESULT_TOS_ERROR" }, + { no: 4, name: "SET_UP_FIREBASE_RESULT_PROVISIONING_ERROR" } +]); var AutoRunDecision; -(function (AutoRunDecision2) { - AutoRunDecision2[(AutoRunDecision2['UNSPECIFIED'] = 0)] = 'UNSPECIFIED'; - AutoRunDecision2[(AutoRunDecision2['USER_ALLOW'] = 1)] = 'USER_ALLOW'; - AutoRunDecision2[(AutoRunDecision2['USER_DENY'] = 2)] = 'USER_DENY'; - AutoRunDecision2[(AutoRunDecision2['SYSTEM_ALLOW'] = 3)] = 'SYSTEM_ALLOW'; - AutoRunDecision2[(AutoRunDecision2['SYSTEM_DENY'] = 4)] = 'SYSTEM_DENY'; - AutoRunDecision2[(AutoRunDecision2['MODEL_ALLOW'] = 5)] = 'MODEL_ALLOW'; - AutoRunDecision2[(AutoRunDecision2['MODEL_DENY'] = 6)] = 'MODEL_DENY'; - AutoRunDecision2[(AutoRunDecision2['DEFAULT_ALLOW'] = 7)] = 'DEFAULT_ALLOW'; - AutoRunDecision2[(AutoRunDecision2['DEFAULT_DENY'] = 8)] = 'DEFAULT_DENY'; +(function(AutoRunDecision2) { + AutoRunDecision2[AutoRunDecision2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + AutoRunDecision2[AutoRunDecision2["USER_ALLOW"] = 1] = "USER_ALLOW"; + AutoRunDecision2[AutoRunDecision2["USER_DENY"] = 2] = "USER_DENY"; + AutoRunDecision2[AutoRunDecision2["SYSTEM_ALLOW"] = 3] = "SYSTEM_ALLOW"; + AutoRunDecision2[AutoRunDecision2["SYSTEM_DENY"] = 4] = "SYSTEM_DENY"; + AutoRunDecision2[AutoRunDecision2["MODEL_ALLOW"] = 5] = "MODEL_ALLOW"; + AutoRunDecision2[AutoRunDecision2["MODEL_DENY"] = 6] = "MODEL_DENY"; + AutoRunDecision2[AutoRunDecision2["DEFAULT_ALLOW"] = 7] = "DEFAULT_ALLOW"; + AutoRunDecision2[AutoRunDecision2["DEFAULT_DENY"] = 8] = "DEFAULT_DENY"; })(AutoRunDecision || (AutoRunDecision = {})); -proto3.util.setEnumType(AutoRunDecision, 'exa.cortex_pb.AutoRunDecision', [ - { no: 0, name: 'AUTO_RUN_DECISION_UNSPECIFIED' }, - { no: 1, name: 'AUTO_RUN_DECISION_USER_ALLOW' }, - { no: 2, name: 'AUTO_RUN_DECISION_USER_DENY' }, - { no: 3, name: 'AUTO_RUN_DECISION_SYSTEM_ALLOW' }, - { no: 4, name: 'AUTO_RUN_DECISION_SYSTEM_DENY' }, - { no: 5, name: 'AUTO_RUN_DECISION_MODEL_ALLOW' }, - { no: 6, name: 'AUTO_RUN_DECISION_MODEL_DENY' }, - { no: 7, name: 'AUTO_RUN_DECISION_DEFAULT_ALLOW' }, - { no: 8, name: 'AUTO_RUN_DECISION_DEFAULT_DENY' }, +proto3.util.setEnumType(AutoRunDecision, "exa.cortex_pb.AutoRunDecision", [ + { no: 0, name: "AUTO_RUN_DECISION_UNSPECIFIED" }, + { no: 1, name: "AUTO_RUN_DECISION_USER_ALLOW" }, + { no: 2, name: "AUTO_RUN_DECISION_USER_DENY" }, + { no: 3, name: "AUTO_RUN_DECISION_SYSTEM_ALLOW" }, + { no: 4, name: "AUTO_RUN_DECISION_SYSTEM_DENY" }, + { no: 5, name: "AUTO_RUN_DECISION_MODEL_ALLOW" }, + { no: 6, name: "AUTO_RUN_DECISION_MODEL_DENY" }, + { no: 7, name: "AUTO_RUN_DECISION_DEFAULT_ALLOW" }, + { no: 8, name: "AUTO_RUN_DECISION_DEFAULT_DENY" } ]); var SearchWebType; -(function (SearchWebType2) { - SearchWebType2[(SearchWebType2['UNSPECIFIED'] = 0)] = 'UNSPECIFIED'; - SearchWebType2[(SearchWebType2['WEB'] = 1)] = 'WEB'; - SearchWebType2[(SearchWebType2['IMAGE'] = 2)] = 'IMAGE'; +(function(SearchWebType2) { + SearchWebType2[SearchWebType2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + SearchWebType2[SearchWebType2["WEB"] = 1] = "WEB"; + SearchWebType2[SearchWebType2["IMAGE"] = 2] = "IMAGE"; })(SearchWebType || (SearchWebType = {})); -proto3.util.setEnumType(SearchWebType, 'exa.cortex_pb.SearchWebType', [ - { no: 0, name: 'SEARCH_WEB_TYPE_UNSPECIFIED' }, - { no: 1, name: 'SEARCH_WEB_TYPE_WEB' }, - { no: 2, name: 'SEARCH_WEB_TYPE_IMAGE' }, +proto3.util.setEnumType(SearchWebType, "exa.cortex_pb.SearchWebType", [ + { no: 0, name: "SEARCH_WEB_TYPE_UNSPECIFIED" }, + { no: 1, name: "SEARCH_WEB_TYPE_WEB" }, + { no: 2, name: "SEARCH_WEB_TYPE_IMAGE" } ]); var DeployWebAppFileUploadStatus; -(function (DeployWebAppFileUploadStatus2) { - DeployWebAppFileUploadStatus2[ - (DeployWebAppFileUploadStatus2['UNSPECIFIED'] = 0) - ] = 'UNSPECIFIED'; - DeployWebAppFileUploadStatus2[ - (DeployWebAppFileUploadStatus2['PENDING'] = 1) - ] = 'PENDING'; - DeployWebAppFileUploadStatus2[ - (DeployWebAppFileUploadStatus2['IN_PROGRESS'] = 2) - ] = 'IN_PROGRESS'; - DeployWebAppFileUploadStatus2[ - (DeployWebAppFileUploadStatus2['SUCCESS'] = 3) - ] = 'SUCCESS'; - DeployWebAppFileUploadStatus2[ - (DeployWebAppFileUploadStatus2['FAILURE'] = 4) - ] = 'FAILURE'; +(function(DeployWebAppFileUploadStatus2) { + DeployWebAppFileUploadStatus2[DeployWebAppFileUploadStatus2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + DeployWebAppFileUploadStatus2[DeployWebAppFileUploadStatus2["PENDING"] = 1] = "PENDING"; + DeployWebAppFileUploadStatus2[DeployWebAppFileUploadStatus2["IN_PROGRESS"] = 2] = "IN_PROGRESS"; + DeployWebAppFileUploadStatus2[DeployWebAppFileUploadStatus2["SUCCESS"] = 3] = "SUCCESS"; + DeployWebAppFileUploadStatus2[DeployWebAppFileUploadStatus2["FAILURE"] = 4] = "FAILURE"; })(DeployWebAppFileUploadStatus || (DeployWebAppFileUploadStatus = {})); -proto3.util.setEnumType( - DeployWebAppFileUploadStatus, - 'exa.cortex_pb.DeployWebAppFileUploadStatus', - [ - { no: 0, name: 'DEPLOY_WEB_APP_FILE_UPLOAD_STATUS_UNSPECIFIED' }, - { no: 1, name: 'DEPLOY_WEB_APP_FILE_UPLOAD_STATUS_PENDING' }, - { no: 2, name: 'DEPLOY_WEB_APP_FILE_UPLOAD_STATUS_IN_PROGRESS' }, - { no: 3, name: 'DEPLOY_WEB_APP_FILE_UPLOAD_STATUS_SUCCESS' }, - { no: 4, name: 'DEPLOY_WEB_APP_FILE_UPLOAD_STATUS_FAILURE' }, - ], -); +proto3.util.setEnumType(DeployWebAppFileUploadStatus, "exa.cortex_pb.DeployWebAppFileUploadStatus", [ + { no: 0, name: "DEPLOY_WEB_APP_FILE_UPLOAD_STATUS_UNSPECIFIED" }, + { no: 1, name: "DEPLOY_WEB_APP_FILE_UPLOAD_STATUS_PENDING" }, + { no: 2, name: "DEPLOY_WEB_APP_FILE_UPLOAD_STATUS_IN_PROGRESS" }, + { no: 3, name: "DEPLOY_WEB_APP_FILE_UPLOAD_STATUS_SUCCESS" }, + { no: 4, name: "DEPLOY_WEB_APP_FILE_UPLOAD_STATUS_FAILURE" } +]); var ExecutorTerminationReason; -(function (ExecutorTerminationReason2) { - ExecutorTerminationReason2[(ExecutorTerminationReason2['UNSPECIFIED'] = 0)] = - 'UNSPECIFIED'; - ExecutorTerminationReason2[(ExecutorTerminationReason2['ERROR'] = 1)] = - 'ERROR'; - ExecutorTerminationReason2[ - (ExecutorTerminationReason2['USER_CANCELED'] = 2) - ] = 'USER_CANCELED'; - ExecutorTerminationReason2[ - (ExecutorTerminationReason2['MAX_INVOCATIONS'] = 3) - ] = 'MAX_INVOCATIONS'; - ExecutorTerminationReason2[(ExecutorTerminationReason2['NO_TOOL_CALL'] = 4)] = - 'NO_TOOL_CALL'; - ExecutorTerminationReason2[ - (ExecutorTerminationReason2['MAX_FORCED_INVOCATIONS'] = 6) - ] = 'MAX_FORCED_INVOCATIONS'; - ExecutorTerminationReason2[ - (ExecutorTerminationReason2['EARLY_CONTINUE'] = 7) - ] = 'EARLY_CONTINUE'; - ExecutorTerminationReason2[ - (ExecutorTerminationReason2['TERMINAL_STEP_TYPE'] = 8) - ] = 'TERMINAL_STEP_TYPE'; - ExecutorTerminationReason2[ - (ExecutorTerminationReason2['TERMINAL_CUSTOM_HOOK'] = 9) - ] = 'TERMINAL_CUSTOM_HOOK'; - ExecutorTerminationReason2[ - (ExecutorTerminationReason2['INJECTED_RESPONSE'] = 10) - ] = 'INJECTED_RESPONSE'; +(function(ExecutorTerminationReason2) { + ExecutorTerminationReason2[ExecutorTerminationReason2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + ExecutorTerminationReason2[ExecutorTerminationReason2["ERROR"] = 1] = "ERROR"; + ExecutorTerminationReason2[ExecutorTerminationReason2["USER_CANCELED"] = 2] = "USER_CANCELED"; + ExecutorTerminationReason2[ExecutorTerminationReason2["MAX_INVOCATIONS"] = 3] = "MAX_INVOCATIONS"; + ExecutorTerminationReason2[ExecutorTerminationReason2["NO_TOOL_CALL"] = 4] = "NO_TOOL_CALL"; + ExecutorTerminationReason2[ExecutorTerminationReason2["MAX_FORCED_INVOCATIONS"] = 6] = "MAX_FORCED_INVOCATIONS"; + ExecutorTerminationReason2[ExecutorTerminationReason2["EARLY_CONTINUE"] = 7] = "EARLY_CONTINUE"; + ExecutorTerminationReason2[ExecutorTerminationReason2["TERMINAL_STEP_TYPE"] = 8] = "TERMINAL_STEP_TYPE"; + ExecutorTerminationReason2[ExecutorTerminationReason2["TERMINAL_CUSTOM_HOOK"] = 9] = "TERMINAL_CUSTOM_HOOK"; + ExecutorTerminationReason2[ExecutorTerminationReason2["INJECTED_RESPONSE"] = 10] = "INJECTED_RESPONSE"; })(ExecutorTerminationReason || (ExecutorTerminationReason = {})); -proto3.util.setEnumType( - ExecutorTerminationReason, - 'exa.cortex_pb.ExecutorTerminationReason', - [ - { no: 0, name: 'EXECUTOR_TERMINATION_REASON_UNSPECIFIED' }, - { no: 1, name: 'EXECUTOR_TERMINATION_REASON_ERROR' }, - { no: 2, name: 'EXECUTOR_TERMINATION_REASON_USER_CANCELED' }, - { no: 3, name: 'EXECUTOR_TERMINATION_REASON_MAX_INVOCATIONS' }, - { no: 4, name: 'EXECUTOR_TERMINATION_REASON_NO_TOOL_CALL' }, - { no: 6, name: 'EXECUTOR_TERMINATION_REASON_MAX_FORCED_INVOCATIONS' }, - { no: 7, name: 'EXECUTOR_TERMINATION_REASON_EARLY_CONTINUE' }, - { no: 8, name: 'EXECUTOR_TERMINATION_REASON_TERMINAL_STEP_TYPE' }, - { no: 9, name: 'EXECUTOR_TERMINATION_REASON_TERMINAL_CUSTOM_HOOK' }, - { no: 10, name: 'EXECUTOR_TERMINATION_REASON_INJECTED_RESPONSE' }, - ], -); +proto3.util.setEnumType(ExecutorTerminationReason, "exa.cortex_pb.ExecutorTerminationReason", [ + { no: 0, name: "EXECUTOR_TERMINATION_REASON_UNSPECIFIED" }, + { no: 1, name: "EXECUTOR_TERMINATION_REASON_ERROR" }, + { no: 2, name: "EXECUTOR_TERMINATION_REASON_USER_CANCELED" }, + { no: 3, name: "EXECUTOR_TERMINATION_REASON_MAX_INVOCATIONS" }, + { no: 4, name: "EXECUTOR_TERMINATION_REASON_NO_TOOL_CALL" }, + { no: 6, name: "EXECUTOR_TERMINATION_REASON_MAX_FORCED_INVOCATIONS" }, + { no: 7, name: "EXECUTOR_TERMINATION_REASON_EARLY_CONTINUE" }, + { no: 8, name: "EXECUTOR_TERMINATION_REASON_TERMINAL_STEP_TYPE" }, + { no: 9, name: "EXECUTOR_TERMINATION_REASON_TERMINAL_CUSTOM_HOOK" }, + { no: 10, name: "EXECUTOR_TERMINATION_REASON_INJECTED_RESPONSE" } +]); var LintDiffType; -(function (LintDiffType2) { - LintDiffType2[(LintDiffType2['UNSPECIFIED'] = 0)] = 'UNSPECIFIED'; - LintDiffType2[(LintDiffType2['DELETE'] = 1)] = 'DELETE'; - LintDiffType2[(LintDiffType2['INSERT'] = 2)] = 'INSERT'; - LintDiffType2[(LintDiffType2['UNCHANGED'] = 3)] = 'UNCHANGED'; +(function(LintDiffType2) { + LintDiffType2[LintDiffType2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + LintDiffType2[LintDiffType2["DELETE"] = 1] = "DELETE"; + LintDiffType2[LintDiffType2["INSERT"] = 2] = "INSERT"; + LintDiffType2[LintDiffType2["UNCHANGED"] = 3] = "UNCHANGED"; })(LintDiffType || (LintDiffType = {})); -proto3.util.setEnumType(LintDiffType, 'exa.cortex_pb.LintDiffType', [ - { no: 0, name: 'LINT_DIFF_TYPE_UNSPECIFIED' }, - { no: 1, name: 'LINT_DIFF_TYPE_DELETE' }, - { no: 2, name: 'LINT_DIFF_TYPE_INSERT' }, - { no: 3, name: 'LINT_DIFF_TYPE_UNCHANGED' }, +proto3.util.setEnumType(LintDiffType, "exa.cortex_pb.LintDiffType", [ + { no: 0, name: "LINT_DIFF_TYPE_UNSPECIFIED" }, + { no: 1, name: "LINT_DIFF_TYPE_DELETE" }, + { no: 2, name: "LINT_DIFF_TYPE_INSERT" }, + { no: 3, name: "LINT_DIFF_TYPE_UNCHANGED" } ]); var BrainEntryType; -(function (BrainEntryType2) { - BrainEntryType2[(BrainEntryType2['UNSPECIFIED'] = 0)] = 'UNSPECIFIED'; - BrainEntryType2[(BrainEntryType2['PLAN'] = 1)] = 'PLAN'; - BrainEntryType2[(BrainEntryType2['TASK'] = 2)] = 'TASK'; +(function(BrainEntryType2) { + BrainEntryType2[BrainEntryType2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + BrainEntryType2[BrainEntryType2["PLAN"] = 1] = "PLAN"; + BrainEntryType2[BrainEntryType2["TASK"] = 2] = "TASK"; })(BrainEntryType || (BrainEntryType = {})); -proto3.util.setEnumType(BrainEntryType, 'exa.cortex_pb.BrainEntryType', [ - { no: 0, name: 'BRAIN_ENTRY_TYPE_UNSPECIFIED' }, - { no: 1, name: 'BRAIN_ENTRY_TYPE_PLAN' }, - { no: 2, name: 'BRAIN_ENTRY_TYPE_TASK' }, +proto3.util.setEnumType(BrainEntryType, "exa.cortex_pb.BrainEntryType", [ + { no: 0, name: "BRAIN_ENTRY_TYPE_UNSPECIFIED" }, + { no: 1, name: "BRAIN_ENTRY_TYPE_PLAN" }, + { no: 2, name: "BRAIN_ENTRY_TYPE_TASK" } ]); var TaskStatus; -(function (TaskStatus2) { - TaskStatus2[(TaskStatus2['UNSPECIFIED'] = 0)] = 'UNSPECIFIED'; - TaskStatus2[(TaskStatus2['TODO'] = 1)] = 'TODO'; - TaskStatus2[(TaskStatus2['IN_PROGRESS'] = 2)] = 'IN_PROGRESS'; - TaskStatus2[(TaskStatus2['DONE'] = 3)] = 'DONE'; +(function(TaskStatus2) { + TaskStatus2[TaskStatus2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + TaskStatus2[TaskStatus2["TODO"] = 1] = "TODO"; + TaskStatus2[TaskStatus2["IN_PROGRESS"] = 2] = "IN_PROGRESS"; + TaskStatus2[TaskStatus2["DONE"] = 3] = "DONE"; })(TaskStatus || (TaskStatus = {})); -proto3.util.setEnumType(TaskStatus, 'exa.cortex_pb.TaskStatus', [ - { no: 0, name: 'TASK_STATUS_UNSPECIFIED' }, - { no: 1, name: 'TASK_STATUS_TODO' }, - { no: 2, name: 'TASK_STATUS_IN_PROGRESS' }, - { no: 3, name: 'TASK_STATUS_DONE' }, +proto3.util.setEnumType(TaskStatus, "exa.cortex_pb.TaskStatus", [ + { no: 0, name: "TASK_STATUS_UNSPECIFIED" }, + { no: 1, name: "TASK_STATUS_TODO" }, + { no: 2, name: "TASK_STATUS_IN_PROGRESS" }, + { no: 3, name: "TASK_STATUS_DONE" } ]); var TaskDeltaType; -(function (TaskDeltaType2) { - TaskDeltaType2[(TaskDeltaType2['UNSPECIFIED'] = 0)] = 'UNSPECIFIED'; - TaskDeltaType2[(TaskDeltaType2['ADD'] = 1)] = 'ADD'; - TaskDeltaType2[(TaskDeltaType2['PRUNE'] = 2)] = 'PRUNE'; - TaskDeltaType2[(TaskDeltaType2['DELETE'] = 3)] = 'DELETE'; - TaskDeltaType2[(TaskDeltaType2['UPDATE'] = 4)] = 'UPDATE'; - TaskDeltaType2[(TaskDeltaType2['MOVE'] = 5)] = 'MOVE'; +(function(TaskDeltaType2) { + TaskDeltaType2[TaskDeltaType2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + TaskDeltaType2[TaskDeltaType2["ADD"] = 1] = "ADD"; + TaskDeltaType2[TaskDeltaType2["PRUNE"] = 2] = "PRUNE"; + TaskDeltaType2[TaskDeltaType2["DELETE"] = 3] = "DELETE"; + TaskDeltaType2[TaskDeltaType2["UPDATE"] = 4] = "UPDATE"; + TaskDeltaType2[TaskDeltaType2["MOVE"] = 5] = "MOVE"; })(TaskDeltaType || (TaskDeltaType = {})); -proto3.util.setEnumType(TaskDeltaType, 'exa.cortex_pb.TaskDeltaType', [ - { no: 0, name: 'TASK_DELTA_TYPE_UNSPECIFIED' }, - { no: 1, name: 'TASK_DELTA_TYPE_ADD' }, - { no: 2, name: 'TASK_DELTA_TYPE_PRUNE' }, - { no: 3, name: 'TASK_DELTA_TYPE_DELETE' }, - { no: 4, name: 'TASK_DELTA_TYPE_UPDATE' }, - { no: 5, name: 'TASK_DELTA_TYPE_MOVE' }, +proto3.util.setEnumType(TaskDeltaType, "exa.cortex_pb.TaskDeltaType", [ + { no: 0, name: "TASK_DELTA_TYPE_UNSPECIFIED" }, + { no: 1, name: "TASK_DELTA_TYPE_ADD" }, + { no: 2, name: "TASK_DELTA_TYPE_PRUNE" }, + { no: 3, name: "TASK_DELTA_TYPE_DELETE" }, + { no: 4, name: "TASK_DELTA_TYPE_UPDATE" }, + { no: 5, name: "TASK_DELTA_TYPE_MOVE" } ]); var BrainUpdateTrigger; -(function (BrainUpdateTrigger2) { - BrainUpdateTrigger2[(BrainUpdateTrigger2['UNSPECIFIED'] = 0)] = 'UNSPECIFIED'; - BrainUpdateTrigger2[(BrainUpdateTrigger2['SYSTEM_FORCED'] = 1)] = - 'SYSTEM_FORCED'; - BrainUpdateTrigger2[(BrainUpdateTrigger2['USER_REQUESTED'] = 2)] = - 'USER_REQUESTED'; - BrainUpdateTrigger2[(BrainUpdateTrigger2['USER_NEW_INFO'] = 3)] = - 'USER_NEW_INFO'; - BrainUpdateTrigger2[(BrainUpdateTrigger2['RESEARCH_NEW_INFO'] = 4)] = - 'RESEARCH_NEW_INFO'; +(function(BrainUpdateTrigger2) { + BrainUpdateTrigger2[BrainUpdateTrigger2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + BrainUpdateTrigger2[BrainUpdateTrigger2["SYSTEM_FORCED"] = 1] = "SYSTEM_FORCED"; + BrainUpdateTrigger2[BrainUpdateTrigger2["USER_REQUESTED"] = 2] = "USER_REQUESTED"; + BrainUpdateTrigger2[BrainUpdateTrigger2["USER_NEW_INFO"] = 3] = "USER_NEW_INFO"; + BrainUpdateTrigger2[BrainUpdateTrigger2["RESEARCH_NEW_INFO"] = 4] = "RESEARCH_NEW_INFO"; })(BrainUpdateTrigger || (BrainUpdateTrigger = {})); -proto3.util.setEnumType( - BrainUpdateTrigger, - 'exa.cortex_pb.BrainUpdateTrigger', - [ - { no: 0, name: 'BRAIN_UPDATE_TRIGGER_UNSPECIFIED' }, - { no: 1, name: 'BRAIN_UPDATE_TRIGGER_SYSTEM_FORCED' }, - { no: 2, name: 'BRAIN_UPDATE_TRIGGER_USER_REQUESTED' }, - { no: 3, name: 'BRAIN_UPDATE_TRIGGER_USER_NEW_INFO' }, - { no: 4, name: 'BRAIN_UPDATE_TRIGGER_RESEARCH_NEW_INFO' }, - ], -); +proto3.util.setEnumType(BrainUpdateTrigger, "exa.cortex_pb.BrainUpdateTrigger", [ + { no: 0, name: "BRAIN_UPDATE_TRIGGER_UNSPECIFIED" }, + { no: 1, name: "BRAIN_UPDATE_TRIGGER_SYSTEM_FORCED" }, + { no: 2, name: "BRAIN_UPDATE_TRIGGER_USER_REQUESTED" }, + { no: 3, name: "BRAIN_UPDATE_TRIGGER_USER_NEW_INFO" }, + { no: 4, name: "BRAIN_UPDATE_TRIGGER_RESEARCH_NEW_INFO" } +]); var RecordingGenerationStatus; -(function (RecordingGenerationStatus2) { - RecordingGenerationStatus2[(RecordingGenerationStatus2['UNSPECIFIED'] = 0)] = - 'UNSPECIFIED'; - RecordingGenerationStatus2[(RecordingGenerationStatus2['GENERATING'] = 1)] = - 'GENERATING'; - RecordingGenerationStatus2[(RecordingGenerationStatus2['ERROR'] = 2)] = - 'ERROR'; - RecordingGenerationStatus2[(RecordingGenerationStatus2['COMPLETED'] = 3)] = - 'COMPLETED'; +(function(RecordingGenerationStatus2) { + RecordingGenerationStatus2[RecordingGenerationStatus2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + RecordingGenerationStatus2[RecordingGenerationStatus2["GENERATING"] = 1] = "GENERATING"; + RecordingGenerationStatus2[RecordingGenerationStatus2["ERROR"] = 2] = "ERROR"; + RecordingGenerationStatus2[RecordingGenerationStatus2["COMPLETED"] = 3] = "COMPLETED"; })(RecordingGenerationStatus || (RecordingGenerationStatus = {})); -proto3.util.setEnumType( - RecordingGenerationStatus, - 'exa.cortex_pb.RecordingGenerationStatus', - [ - { no: 0, name: 'RECORDING_GENERATION_STATUS_UNSPECIFIED' }, - { no: 1, name: 'RECORDING_GENERATION_STATUS_GENERATING' }, - { no: 2, name: 'RECORDING_GENERATION_STATUS_ERROR' }, - { no: 3, name: 'RECORDING_GENERATION_STATUS_COMPLETED' }, - ], -); +proto3.util.setEnumType(RecordingGenerationStatus, "exa.cortex_pb.RecordingGenerationStatus", [ + { no: 0, name: "RECORDING_GENERATION_STATUS_UNSPECIFIED" }, + { no: 1, name: "RECORDING_GENERATION_STATUS_GENERATING" }, + { no: 2, name: "RECORDING_GENERATION_STATUS_ERROR" }, + { no: 3, name: "RECORDING_GENERATION_STATUS_COMPLETED" } +]); var CommandOutputPriority; -(function (CommandOutputPriority2) { - CommandOutputPriority2[(CommandOutputPriority2['UNSPECIFIED'] = 0)] = - 'UNSPECIFIED'; - CommandOutputPriority2[(CommandOutputPriority2['TOP'] = 1)] = 'TOP'; - CommandOutputPriority2[(CommandOutputPriority2['BOTTOM'] = 2)] = 'BOTTOM'; - CommandOutputPriority2[(CommandOutputPriority2['SPLIT'] = 3)] = 'SPLIT'; +(function(CommandOutputPriority2) { + CommandOutputPriority2[CommandOutputPriority2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + CommandOutputPriority2[CommandOutputPriority2["TOP"] = 1] = "TOP"; + CommandOutputPriority2[CommandOutputPriority2["BOTTOM"] = 2] = "BOTTOM"; + CommandOutputPriority2[CommandOutputPriority2["SPLIT"] = 3] = "SPLIT"; })(CommandOutputPriority || (CommandOutputPriority = {})); -proto3.util.setEnumType( - CommandOutputPriority, - 'exa.cortex_pb.CommandOutputPriority', - [ - { no: 0, name: 'COMMAND_OUTPUT_PRIORITY_UNSPECIFIED' }, - { no: 1, name: 'COMMAND_OUTPUT_PRIORITY_TOP' }, - { no: 2, name: 'COMMAND_OUTPUT_PRIORITY_BOTTOM' }, - { no: 3, name: 'COMMAND_OUTPUT_PRIORITY_SPLIT' }, - ], -); +proto3.util.setEnumType(CommandOutputPriority, "exa.cortex_pb.CommandOutputPriority", [ + { no: 0, name: "COMMAND_OUTPUT_PRIORITY_UNSPECIFIED" }, + { no: 1, name: "COMMAND_OUTPUT_PRIORITY_TOP" }, + { no: 2, name: "COMMAND_OUTPUT_PRIORITY_BOTTOM" }, + { no: 3, name: "COMMAND_OUTPUT_PRIORITY_SPLIT" } +]); var CortexMemorySource; -(function (CortexMemorySource2) { - CortexMemorySource2[(CortexMemorySource2['UNSPECIFIED'] = 0)] = 'UNSPECIFIED'; - CortexMemorySource2[(CortexMemorySource2['USER'] = 1)] = 'USER'; - CortexMemorySource2[(CortexMemorySource2['CASCADE'] = 2)] = 'CASCADE'; +(function(CortexMemorySource2) { + CortexMemorySource2[CortexMemorySource2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + CortexMemorySource2[CortexMemorySource2["USER"] = 1] = "USER"; + CortexMemorySource2[CortexMemorySource2["CASCADE"] = 2] = "CASCADE"; })(CortexMemorySource || (CortexMemorySource = {})); -proto3.util.setEnumType( - CortexMemorySource, - 'exa.cortex_pb.CortexMemorySource', - [ - { no: 0, name: 'CORTEX_MEMORY_SOURCE_UNSPECIFIED' }, - { no: 1, name: 'CORTEX_MEMORY_SOURCE_USER' }, - { no: 2, name: 'CORTEX_MEMORY_SOURCE_CASCADE' }, - ], -); +proto3.util.setEnumType(CortexMemorySource, "exa.cortex_pb.CortexMemorySource", [ + { no: 0, name: "CORTEX_MEMORY_SOURCE_UNSPECIFIED" }, + { no: 1, name: "CORTEX_MEMORY_SOURCE_USER" }, + { no: 2, name: "CORTEX_MEMORY_SOURCE_CASCADE" } +]); var CortexMemoryTrigger; -(function (CortexMemoryTrigger2) { - CortexMemoryTrigger2[(CortexMemoryTrigger2['UNSPECIFIED'] = 0)] = - 'UNSPECIFIED'; - CortexMemoryTrigger2[(CortexMemoryTrigger2['ALWAYS_ON'] = 1)] = 'ALWAYS_ON'; - CortexMemoryTrigger2[(CortexMemoryTrigger2['MODEL_DECISION'] = 2)] = - 'MODEL_DECISION'; - CortexMemoryTrigger2[(CortexMemoryTrigger2['MANUAL'] = 3)] = 'MANUAL'; - CortexMemoryTrigger2[(CortexMemoryTrigger2['GLOB'] = 4)] = 'GLOB'; +(function(CortexMemoryTrigger2) { + CortexMemoryTrigger2[CortexMemoryTrigger2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + CortexMemoryTrigger2[CortexMemoryTrigger2["ALWAYS_ON"] = 1] = "ALWAYS_ON"; + CortexMemoryTrigger2[CortexMemoryTrigger2["MODEL_DECISION"] = 2] = "MODEL_DECISION"; + CortexMemoryTrigger2[CortexMemoryTrigger2["MANUAL"] = 3] = "MANUAL"; + CortexMemoryTrigger2[CortexMemoryTrigger2["GLOB"] = 4] = "GLOB"; })(CortexMemoryTrigger || (CortexMemoryTrigger = {})); -proto3.util.setEnumType( - CortexMemoryTrigger, - 'exa.cortex_pb.CortexMemoryTrigger', - [ - { no: 0, name: 'CORTEX_MEMORY_TRIGGER_UNSPECIFIED' }, - { no: 1, name: 'CORTEX_MEMORY_TRIGGER_ALWAYS_ON' }, - { no: 2, name: 'CORTEX_MEMORY_TRIGGER_MODEL_DECISION' }, - { no: 3, name: 'CORTEX_MEMORY_TRIGGER_MANUAL' }, - { no: 4, name: 'CORTEX_MEMORY_TRIGGER_GLOB' }, - ], -); +proto3.util.setEnumType(CortexMemoryTrigger, "exa.cortex_pb.CortexMemoryTrigger", [ + { no: 0, name: "CORTEX_MEMORY_TRIGGER_UNSPECIFIED" }, + { no: 1, name: "CORTEX_MEMORY_TRIGGER_ALWAYS_ON" }, + { no: 2, name: "CORTEX_MEMORY_TRIGGER_MODEL_DECISION" }, + { no: 3, name: "CORTEX_MEMORY_TRIGGER_MANUAL" }, + { no: 4, name: "CORTEX_MEMORY_TRIGGER_GLOB" } +]); var MemoryActionType; -(function (MemoryActionType2) { - MemoryActionType2[(MemoryActionType2['UNSPECIFIED'] = 0)] = 'UNSPECIFIED'; - MemoryActionType2[(MemoryActionType2['CREATE'] = 1)] = 'CREATE'; - MemoryActionType2[(MemoryActionType2['UPDATE'] = 2)] = 'UPDATE'; - MemoryActionType2[(MemoryActionType2['DELETE'] = 3)] = 'DELETE'; +(function(MemoryActionType2) { + MemoryActionType2[MemoryActionType2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + MemoryActionType2[MemoryActionType2["CREATE"] = 1] = "CREATE"; + MemoryActionType2[MemoryActionType2["UPDATE"] = 2] = "UPDATE"; + MemoryActionType2[MemoryActionType2["DELETE"] = 3] = "DELETE"; })(MemoryActionType || (MemoryActionType = {})); -proto3.util.setEnumType(MemoryActionType, 'exa.cortex_pb.MemoryActionType', [ - { no: 0, name: 'MEMORY_ACTION_TYPE_UNSPECIFIED' }, - { no: 1, name: 'MEMORY_ACTION_TYPE_CREATE' }, - { no: 2, name: 'MEMORY_ACTION_TYPE_UPDATE' }, - { no: 3, name: 'MEMORY_ACTION_TYPE_DELETE' }, +proto3.util.setEnumType(MemoryActionType, "exa.cortex_pb.MemoryActionType", [ + { no: 0, name: "MEMORY_ACTION_TYPE_UNSPECIFIED" }, + { no: 1, name: "MEMORY_ACTION_TYPE_CREATE" }, + { no: 2, name: "MEMORY_ACTION_TYPE_UPDATE" }, + { no: 3, name: "MEMORY_ACTION_TYPE_DELETE" } ]); var CortexStepManagerFeedbackStatus; -(function (CortexStepManagerFeedbackStatus2) { - CortexStepManagerFeedbackStatus2[ - (CortexStepManagerFeedbackStatus2['UNSPECIFIED'] = 0) - ] = 'UNSPECIFIED'; - CortexStepManagerFeedbackStatus2[ - (CortexStepManagerFeedbackStatus2['APPROVED'] = 1) - ] = 'APPROVED'; - CortexStepManagerFeedbackStatus2[ - (CortexStepManagerFeedbackStatus2['DENIED'] = 2) - ] = 'DENIED'; - CortexStepManagerFeedbackStatus2[ - (CortexStepManagerFeedbackStatus2['ERROR'] = 3) - ] = 'ERROR'; +(function(CortexStepManagerFeedbackStatus2) { + CortexStepManagerFeedbackStatus2[CortexStepManagerFeedbackStatus2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + CortexStepManagerFeedbackStatus2[CortexStepManagerFeedbackStatus2["APPROVED"] = 1] = "APPROVED"; + CortexStepManagerFeedbackStatus2[CortexStepManagerFeedbackStatus2["DENIED"] = 2] = "DENIED"; + CortexStepManagerFeedbackStatus2[CortexStepManagerFeedbackStatus2["ERROR"] = 3] = "ERROR"; })(CortexStepManagerFeedbackStatus || (CortexStepManagerFeedbackStatus = {})); -proto3.util.setEnumType( - CortexStepManagerFeedbackStatus, - 'exa.cortex_pb.CortexStepManagerFeedbackStatus', - [ - { no: 0, name: 'CORTEX_STEP_MANAGER_FEEDBACK_STATUS_UNSPECIFIED' }, - { no: 1, name: 'CORTEX_STEP_MANAGER_FEEDBACK_STATUS_APPROVED' }, - { no: 2, name: 'CORTEX_STEP_MANAGER_FEEDBACK_STATUS_DENIED' }, - { no: 3, name: 'CORTEX_STEP_MANAGER_FEEDBACK_STATUS_ERROR' }, - ], -); +proto3.util.setEnumType(CortexStepManagerFeedbackStatus, "exa.cortex_pb.CortexStepManagerFeedbackStatus", [ + { no: 0, name: "CORTEX_STEP_MANAGER_FEEDBACK_STATUS_UNSPECIFIED" }, + { no: 1, name: "CORTEX_STEP_MANAGER_FEEDBACK_STATUS_APPROVED" }, + { no: 2, name: "CORTEX_STEP_MANAGER_FEEDBACK_STATUS_DENIED" }, + { no: 3, name: "CORTEX_STEP_MANAGER_FEEDBACK_STATUS_ERROR" } +]); var McpServerStatus; -(function (McpServerStatus2) { - McpServerStatus2[(McpServerStatus2['UNSPECIFIED'] = 0)] = 'UNSPECIFIED'; - McpServerStatus2[(McpServerStatus2['PENDING'] = 1)] = 'PENDING'; - McpServerStatus2[(McpServerStatus2['READY'] = 2)] = 'READY'; - McpServerStatus2[(McpServerStatus2['ERROR'] = 3)] = 'ERROR'; +(function(McpServerStatus2) { + McpServerStatus2[McpServerStatus2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + McpServerStatus2[McpServerStatus2["PENDING"] = 1] = "PENDING"; + McpServerStatus2[McpServerStatus2["READY"] = 2] = "READY"; + McpServerStatus2[McpServerStatus2["ERROR"] = 3] = "ERROR"; })(McpServerStatus || (McpServerStatus = {})); -proto3.util.setEnumType(McpServerStatus, 'exa.cortex_pb.McpServerStatus', [ - { no: 0, name: 'MCP_SERVER_STATUS_UNSPECIFIED' }, - { no: 1, name: 'MCP_SERVER_STATUS_PENDING' }, - { no: 2, name: 'MCP_SERVER_STATUS_READY' }, - { no: 3, name: 'MCP_SERVER_STATUS_ERROR' }, +proto3.util.setEnumType(McpServerStatus, "exa.cortex_pb.McpServerStatus", [ + { no: 0, name: "MCP_SERVER_STATUS_UNSPECIFIED" }, + { no: 1, name: "MCP_SERVER_STATUS_PENDING" }, + { no: 2, name: "MCP_SERVER_STATUS_READY" }, + { no: 3, name: "MCP_SERVER_STATUS_ERROR" } ]); var EphemeralMessagePersistenceLevel; -(function (EphemeralMessagePersistenceLevel2) { - EphemeralMessagePersistenceLevel2[ - (EphemeralMessagePersistenceLevel2['UNSPECIFIED'] = 0) - ] = 'UNSPECIFIED'; - EphemeralMessagePersistenceLevel2[ - (EphemeralMessagePersistenceLevel2['ALL'] = 1) - ] = 'ALL'; - EphemeralMessagePersistenceLevel2[ - (EphemeralMessagePersistenceLevel2['LATEST_ONLY'] = 2) - ] = 'LATEST_ONLY'; +(function(EphemeralMessagePersistenceLevel2) { + EphemeralMessagePersistenceLevel2[EphemeralMessagePersistenceLevel2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + EphemeralMessagePersistenceLevel2[EphemeralMessagePersistenceLevel2["ALL"] = 1] = "ALL"; + EphemeralMessagePersistenceLevel2[EphemeralMessagePersistenceLevel2["LATEST_ONLY"] = 2] = "LATEST_ONLY"; })(EphemeralMessagePersistenceLevel || (EphemeralMessagePersistenceLevel = {})); -proto3.util.setEnumType( - EphemeralMessagePersistenceLevel, - 'exa.cortex_pb.EphemeralMessagePersistenceLevel', - [ - { no: 0, name: 'EPHEMERAL_MESSAGE_PERSISTENCE_LEVEL_UNSPECIFIED' }, - { no: 1, name: 'EPHEMERAL_MESSAGE_PERSISTENCE_LEVEL_ALL' }, - { no: 2, name: 'EPHEMERAL_MESSAGE_PERSISTENCE_LEVEL_LATEST_ONLY' }, - ], -); +proto3.util.setEnumType(EphemeralMessagePersistenceLevel, "exa.cortex_pb.EphemeralMessagePersistenceLevel", [ + { no: 0, name: "EPHEMERAL_MESSAGE_PERSISTENCE_LEVEL_UNSPECIFIED" }, + { no: 1, name: "EPHEMERAL_MESSAGE_PERSISTENCE_LEVEL_ALL" }, + { no: 2, name: "EPHEMERAL_MESSAGE_PERSISTENCE_LEVEL_LATEST_ONLY" } +]); var BrowserEphemeralOption; -(function (BrowserEphemeralOption2) { - BrowserEphemeralOption2[(BrowserEphemeralOption2['UNSPECIFIED'] = 0)] = - 'UNSPECIFIED'; - BrowserEphemeralOption2[(BrowserEphemeralOption2['SCREENSHOT'] = 1)] = - 'SCREENSHOT'; - BrowserEphemeralOption2[(BrowserEphemeralOption2['DOM'] = 2)] = 'DOM'; +(function(BrowserEphemeralOption2) { + BrowserEphemeralOption2[BrowserEphemeralOption2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + BrowserEphemeralOption2[BrowserEphemeralOption2["SCREENSHOT"] = 1] = "SCREENSHOT"; + BrowserEphemeralOption2[BrowserEphemeralOption2["DOM"] = 2] = "DOM"; })(BrowserEphemeralOption || (BrowserEphemeralOption = {})); -proto3.util.setEnumType( - BrowserEphemeralOption, - 'exa.cortex_pb.BrowserEphemeralOption', - [ - { no: 0, name: 'BROWSER_EPHEMERAL_OPTION_UNSPECIFIED' }, - { no: 1, name: 'BROWSER_EPHEMERAL_OPTION_SCREENSHOT' }, - { no: 2, name: 'BROWSER_EPHEMERAL_OPTION_DOM' }, - ], -); +proto3.util.setEnumType(BrowserEphemeralOption, "exa.cortex_pb.BrowserEphemeralOption", [ + { no: 0, name: "BROWSER_EPHEMERAL_OPTION_UNSPECIFIED" }, + { no: 1, name: "BROWSER_EPHEMERAL_OPTION_SCREENSHOT" }, + { no: 2, name: "BROWSER_EPHEMERAL_OPTION_DOM" } +]); var TrajectoryShareStatus; -(function (TrajectoryShareStatus2) { - TrajectoryShareStatus2[(TrajectoryShareStatus2['UNSPECIFIED'] = 0)] = - 'UNSPECIFIED'; - TrajectoryShareStatus2[(TrajectoryShareStatus2['TEAM'] = 1)] = 'TEAM'; +(function(TrajectoryShareStatus2) { + TrajectoryShareStatus2[TrajectoryShareStatus2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + TrajectoryShareStatus2[TrajectoryShareStatus2["TEAM"] = 1] = "TEAM"; })(TrajectoryShareStatus || (TrajectoryShareStatus = {})); -proto3.util.setEnumType( - TrajectoryShareStatus, - 'exa.cortex_pb.TrajectoryShareStatus', - [ - { no: 0, name: 'TRAJECTORY_SHARE_STATUS_UNSPECIFIED' }, - { no: 1, name: 'TRAJECTORY_SHARE_STATUS_TEAM' }, - ], -); +proto3.util.setEnumType(TrajectoryShareStatus, "exa.cortex_pb.TrajectoryShareStatus", [ + { no: 0, name: "TRAJECTORY_SHARE_STATUS_UNSPECIFIED" }, + { no: 1, name: "TRAJECTORY_SHARE_STATUS_TEAM" } +]); var RunExtensionCodeAutoRunDecision; -(function (RunExtensionCodeAutoRunDecision2) { - RunExtensionCodeAutoRunDecision2[ - (RunExtensionCodeAutoRunDecision2['UNSPECIFIED'] = 0) - ] = 'UNSPECIFIED'; - RunExtensionCodeAutoRunDecision2[ - (RunExtensionCodeAutoRunDecision2['ALLOWED'] = 1) - ] = 'ALLOWED'; - RunExtensionCodeAutoRunDecision2[ - (RunExtensionCodeAutoRunDecision2['DENIED'] = 2) - ] = 'DENIED'; - RunExtensionCodeAutoRunDecision2[ - (RunExtensionCodeAutoRunDecision2['MODEL_ALLOWED'] = 3) - ] = 'MODEL_ALLOWED'; - RunExtensionCodeAutoRunDecision2[ - (RunExtensionCodeAutoRunDecision2['MODEL_DENIED'] = 4) - ] = 'MODEL_DENIED'; +(function(RunExtensionCodeAutoRunDecision2) { + RunExtensionCodeAutoRunDecision2[RunExtensionCodeAutoRunDecision2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + RunExtensionCodeAutoRunDecision2[RunExtensionCodeAutoRunDecision2["ALLOWED"] = 1] = "ALLOWED"; + RunExtensionCodeAutoRunDecision2[RunExtensionCodeAutoRunDecision2["DENIED"] = 2] = "DENIED"; + RunExtensionCodeAutoRunDecision2[RunExtensionCodeAutoRunDecision2["MODEL_ALLOWED"] = 3] = "MODEL_ALLOWED"; + RunExtensionCodeAutoRunDecision2[RunExtensionCodeAutoRunDecision2["MODEL_DENIED"] = 4] = "MODEL_DENIED"; })(RunExtensionCodeAutoRunDecision || (RunExtensionCodeAutoRunDecision = {})); -proto3.util.setEnumType( - RunExtensionCodeAutoRunDecision, - 'exa.cortex_pb.RunExtensionCodeAutoRunDecision', - [ - { no: 0, name: 'RUN_EXTENSION_CODE_AUTO_RUN_DECISION_UNSPECIFIED' }, - { no: 1, name: 'RUN_EXTENSION_CODE_AUTO_RUN_DECISION_ALLOWED' }, - { no: 2, name: 'RUN_EXTENSION_CODE_AUTO_RUN_DECISION_DENIED' }, - { no: 3, name: 'RUN_EXTENSION_CODE_AUTO_RUN_DECISION_MODEL_ALLOWED' }, - { no: 4, name: 'RUN_EXTENSION_CODE_AUTO_RUN_DECISION_MODEL_DENIED' }, - ], -); +proto3.util.setEnumType(RunExtensionCodeAutoRunDecision, "exa.cortex_pb.RunExtensionCodeAutoRunDecision", [ + { no: 0, name: "RUN_EXTENSION_CODE_AUTO_RUN_DECISION_UNSPECIFIED" }, + { no: 1, name: "RUN_EXTENSION_CODE_AUTO_RUN_DECISION_ALLOWED" }, + { no: 2, name: "RUN_EXTENSION_CODE_AUTO_RUN_DECISION_DENIED" }, + { no: 3, name: "RUN_EXTENSION_CODE_AUTO_RUN_DECISION_MODEL_ALLOWED" }, + { no: 4, name: "RUN_EXTENSION_CODE_AUTO_RUN_DECISION_MODEL_DENIED" } +]); var TrajectorySearchIdType; -(function (TrajectorySearchIdType2) { - TrajectorySearchIdType2[(TrajectorySearchIdType2['UNSPECIFIED'] = 0)] = - 'UNSPECIFIED'; - TrajectorySearchIdType2[(TrajectorySearchIdType2['CASCADE_ID'] = 1)] = - 'CASCADE_ID'; - TrajectorySearchIdType2[(TrajectorySearchIdType2['MAINLINE'] = 2)] = - 'MAINLINE'; +(function(TrajectorySearchIdType2) { + TrajectorySearchIdType2[TrajectorySearchIdType2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + TrajectorySearchIdType2[TrajectorySearchIdType2["CASCADE_ID"] = 1] = "CASCADE_ID"; + TrajectorySearchIdType2[TrajectorySearchIdType2["MAINLINE"] = 2] = "MAINLINE"; })(TrajectorySearchIdType || (TrajectorySearchIdType = {})); -proto3.util.setEnumType( - TrajectorySearchIdType, - 'exa.cortex_pb.TrajectorySearchIdType', - [ - { no: 0, name: 'TRAJECTORY_SEARCH_ID_TYPE_UNSPECIFIED' }, - { no: 1, name: 'TRAJECTORY_SEARCH_ID_TYPE_CASCADE_ID' }, - { no: 2, name: 'TRAJECTORY_SEARCH_ID_TYPE_MAINLINE' }, - ], -); +proto3.util.setEnumType(TrajectorySearchIdType, "exa.cortex_pb.TrajectorySearchIdType", [ + { no: 0, name: "TRAJECTORY_SEARCH_ID_TYPE_UNSPECIFIED" }, + { no: 1, name: "TRAJECTORY_SEARCH_ID_TYPE_CASCADE_ID" }, + { no: 2, name: "TRAJECTORY_SEARCH_ID_TYPE_MAINLINE" } +]); var CodeAcknowledgementScope; -(function (CodeAcknowledgementScope2) { - CodeAcknowledgementScope2[(CodeAcknowledgementScope2['UNSPECIFIED'] = 0)] = - 'UNSPECIFIED'; - CodeAcknowledgementScope2[(CodeAcknowledgementScope2['FILE'] = 1)] = 'FILE'; - CodeAcknowledgementScope2[(CodeAcknowledgementScope2['ALL'] = 2)] = 'ALL'; - CodeAcknowledgementScope2[(CodeAcknowledgementScope2['HUNK'] = 3)] = 'HUNK'; +(function(CodeAcknowledgementScope2) { + CodeAcknowledgementScope2[CodeAcknowledgementScope2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + CodeAcknowledgementScope2[CodeAcknowledgementScope2["FILE"] = 1] = "FILE"; + CodeAcknowledgementScope2[CodeAcknowledgementScope2["ALL"] = 2] = "ALL"; + CodeAcknowledgementScope2[CodeAcknowledgementScope2["HUNK"] = 3] = "HUNK"; })(CodeAcknowledgementScope || (CodeAcknowledgementScope = {})); -proto3.util.setEnumType( - CodeAcknowledgementScope, - 'exa.cortex_pb.CodeAcknowledgementScope', - [ - { no: 0, name: 'CODE_ACKNOWLEDGEMENT_SCOPE_UNSPECIFIED' }, - { no: 1, name: 'CODE_ACKNOWLEDGEMENT_SCOPE_FILE' }, - { no: 2, name: 'CODE_ACKNOWLEDGEMENT_SCOPE_ALL' }, - { no: 3, name: 'CODE_ACKNOWLEDGEMENT_SCOPE_HUNK' }, - ], -); +proto3.util.setEnumType(CodeAcknowledgementScope, "exa.cortex_pb.CodeAcknowledgementScope", [ + { no: 0, name: "CODE_ACKNOWLEDGEMENT_SCOPE_UNSPECIFIED" }, + { no: 1, name: "CODE_ACKNOWLEDGEMENT_SCOPE_FILE" }, + { no: 2, name: "CODE_ACKNOWLEDGEMENT_SCOPE_ALL" }, + { no: 3, name: "CODE_ACKNOWLEDGEMENT_SCOPE_HUNK" } +]); var ArtifactReviewStatus; -(function (ArtifactReviewStatus2) { - ArtifactReviewStatus2[(ArtifactReviewStatus2['UNSPECIFIED'] = 0)] = - 'UNSPECIFIED'; - ArtifactReviewStatus2[(ArtifactReviewStatus2['PENDING_REVIEW'] = 1)] = - 'PENDING_REVIEW'; - ArtifactReviewStatus2[(ArtifactReviewStatus2['REVIEWED'] = 2)] = 'REVIEWED'; - ArtifactReviewStatus2[(ArtifactReviewStatus2['MODIFIED'] = 3)] = 'MODIFIED'; +(function(ArtifactReviewStatus2) { + ArtifactReviewStatus2[ArtifactReviewStatus2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + ArtifactReviewStatus2[ArtifactReviewStatus2["PENDING_REVIEW"] = 1] = "PENDING_REVIEW"; + ArtifactReviewStatus2[ArtifactReviewStatus2["REVIEWED"] = 2] = "REVIEWED"; + ArtifactReviewStatus2[ArtifactReviewStatus2["MODIFIED"] = 3] = "MODIFIED"; })(ArtifactReviewStatus || (ArtifactReviewStatus = {})); -proto3.util.setEnumType( - ArtifactReviewStatus, - 'exa.cortex_pb.ArtifactReviewStatus', - [ - { no: 0, name: 'ARTIFACT_REVIEW_STATUS_UNSPECIFIED' }, - { no: 1, name: 'ARTIFACT_REVIEW_STATUS_PENDING_REVIEW' }, - { no: 2, name: 'ARTIFACT_REVIEW_STATUS_REVIEWED' }, - { no: 3, name: 'ARTIFACT_REVIEW_STATUS_MODIFIED' }, - ], -); +proto3.util.setEnumType(ArtifactReviewStatus, "exa.cortex_pb.ArtifactReviewStatus", [ + { no: 0, name: "ARTIFACT_REVIEW_STATUS_UNSPECIFIED" }, + { no: 1, name: "ARTIFACT_REVIEW_STATUS_PENDING_REVIEW" }, + { no: 2, name: "ARTIFACT_REVIEW_STATUS_REVIEWED" }, + { no: 3, name: "ARTIFACT_REVIEW_STATUS_MODIFIED" } +]); var WorkflowSpec = class _WorkflowSpec extends Message { /** * Path to the workflow file. * * @generated from field: string path = 1; */ - path = ''; + path = ""; /** * Name of the workflow. * * @generated from field: string name = 2; */ - name = ''; + name = ""; /** * Human-readable description (also used by model) * * @generated from field: string description = 3; */ - description = ''; + description = ""; /** * Full content of the workflow. * * @generated from field: string content = 4; */ - content = ''; + content = ""; /** * Whether to auto-run commands in this workflow. * @@ -41143,64 +36221,64 @@ var WorkflowSpec = class _WorkflowSpec extends Message { * * @generated from field: string base_dir = 8; */ - baseDir = ''; + baseDir = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.WorkflowSpec'; + static typeName = "exa.cortex_pb.WorkflowSpec"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'path', - kind: 'scalar', - T: 9, + name: "path", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'name', - kind: 'scalar', - T: 9, + name: "name", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 3, - name: 'description', - kind: 'scalar', - T: 9, + name: "description", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 4, - name: 'content', - kind: 'scalar', - T: 9, + name: "content", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 5, - name: 'turbo', - kind: 'scalar', - T: 8, + name: "turbo", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 6, - name: 'is_builtin', - kind: 'scalar', - T: 8, + name: "is_builtin", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, - { no: 7, name: 'scope', kind: 'message', T: CortexMemoryScope }, + { no: 7, name: "scope", kind: "message", T: CortexMemoryScope }, { no: 8, - name: 'base_dir', - kind: 'scalar', - T: 9, + name: "base_dir", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _WorkflowSpec().fromBinary(bytes, options); @@ -41225,16 +36303,10 @@ var CortexPlanSummaryComponent = class _CortexPlanSummaryComponent extends Messa proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexPlanSummaryComponent'; + static typeName = "exa.cortex_pb.CortexPlanSummaryComponent"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'text', kind: 'scalar', T: 9, oneof: 'component' }, - { - no: 2, - name: 'citation', - kind: 'message', - T: ContextScopeItem, - oneof: 'component', - }, + { no: 1, name: "text", kind: "scalar", T: 9, oneof: "component" }, + { no: 2, name: "citation", kind: "message", T: ContextScopeItem, oneof: "component" } ]); static fromBinary(bytes, options) { return new _CortexPlanSummaryComponent().fromBinary(bytes, options); @@ -41243,10 +36315,7 @@ var CortexPlanSummaryComponent = class _CortexPlanSummaryComponent extends Messa return new _CortexPlanSummaryComponent().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _CortexPlanSummaryComponent().fromJsonString( - jsonString, - options, - ); + return new _CortexPlanSummaryComponent().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_CortexPlanSummaryComponent, a, b); @@ -41256,11 +36325,11 @@ var CodingStepState = class _CodingStepState extends Message { /** * @generated from field: string plan_id = 1; */ - planId = ''; + planId = ""; /** * @generated from field: string goal = 2; */ - goal = ''; + goal = ""; /** * @generated from field: repeated exa.cortex_pb.ActionState action_states = 3; */ @@ -41276,7 +36345,7 @@ var CodingStepState = class _CodingStepState extends Message { /** * @generated from field: string post_summary_text = 9; */ - postSummaryText = ''; + postSummaryText = ""; /** * Whether all steps of the coding plan are generated. * @@ -41310,86 +36379,62 @@ var CodingStepState = class _CodingStepState extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CodingStepState'; + static typeName = "exa.cortex_pb.CodingStepState"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'plan_id', - kind: 'scalar', - T: 9, + name: "plan_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'goal', - kind: 'scalar', - T: 9, + name: "goal", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { - no: 3, - name: 'action_states', - kind: 'message', - T: ActionState, - repeated: true, - }, - { - no: 7, - name: 'outlines', - kind: 'message', - T: CortexStepOutline, - repeated: true, - }, - { - no: 8, - name: 'summary_components', - kind: 'message', - T: CortexPlanSummaryComponent, - repeated: true, - }, + { no: 3, name: "action_states", kind: "message", T: ActionState, repeated: true }, + { no: 7, name: "outlines", kind: "message", T: CortexStepOutline, repeated: true }, + { no: 8, name: "summary_components", kind: "message", T: CortexPlanSummaryComponent, repeated: true }, { no: 9, - name: 'post_summary_text', - kind: 'scalar', - T: 9, + name: "post_summary_text", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 4, - name: 'plan_fully_generated', - kind: 'scalar', - T: 8, + name: "plan_fully_generated", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 5, - name: 'plan_finished', - kind: 'scalar', - T: 8, + name: "plan_finished", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, - { no: 6, name: 'debug_info', kind: 'message', T: PlanDebugInfo }, + { no: 6, name: "debug_info", kind: "message", T: PlanDebugInfo }, { no: 10, - name: 'plan_summary_confirmed', - kind: 'scalar', - T: 8, + name: "plan_summary_confirmed", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 11, - name: 'plan_summary_fully_generated', - kind: 'scalar', - T: 8, + name: "plan_summary_fully_generated", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, - { - no: 12, - name: 'cci_list', - kind: 'message', - T: CciWithSubrangeWithRetrievalMetadata, - repeated: true, - }, + { no: 12, name: "cci_list", kind: "message", T: CciWithSubrangeWithRetrievalMetadata, repeated: true } ]); static fromBinary(bytes, options) { return new _CodingStepState().fromBinary(bytes, options); @@ -41428,30 +36473,18 @@ var CortexPlanState = class _CortexPlanState extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexPlanState'; + static typeName = "exa.cortex_pb.CortexPlanState"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'steps', - kind: 'message', - T: CortexStepState, - repeated: true, - }, - { - no: 2, - name: 'outlines', - kind: 'message', - T: CortexStepOutline, - repeated: true, - }, + { no: 1, name: "steps", kind: "message", T: CortexStepState, repeated: true }, + { no: 2, name: "outlines", kind: "message", T: CortexStepOutline, repeated: true }, { no: 3, - name: 'current_step_index', - kind: 'scalar', - T: 13, + name: "current_step_index", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, - { no: 4, name: 'debug_info', kind: 'message', T: PlanDebugInfo }, + { no: 4, name: "debug_info", kind: "message", T: PlanDebugInfo } ]); static fromBinary(bytes, options) { return new _CortexPlanState().fromBinary(bytes, options); @@ -41476,11 +36509,11 @@ var CortexStepOutline = class _CortexStepOutline extends Message { /** * @generated from field: string action_name = 2; */ - actionName = ''; + actionName = ""; /** * @generated from field: string json_args = 3; */ - jsonArgs = ''; + jsonArgs = ""; /** * @generated from field: repeated uint32 parent_step_numbers = 4; */ @@ -41490,36 +36523,30 @@ var CortexStepOutline = class _CortexStepOutline extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexStepOutline'; + static typeName = "exa.cortex_pb.CortexStepOutline"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'step_number', - kind: 'scalar', - T: 13, + name: "step_number", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, { no: 2, - name: 'action_name', - kind: 'scalar', - T: 9, + name: "action_name", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 3, - name: 'json_args', - kind: 'scalar', - T: 9, + name: "json_args", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { - no: 4, - name: 'parent_step_numbers', - kind: 'scalar', - T: 13, - repeated: true, - }, + { no: 4, name: "parent_step_numbers", kind: "scalar", T: 13, repeated: true } ]); static fromBinary(bytes, options) { return new _CortexStepOutline().fromBinary(bytes, options); @@ -41544,15 +36571,9 @@ var CortexStepState = class _CortexStepState extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexStepState'; + static typeName = "exa.cortex_pb.CortexStepState"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'coding', - kind: 'message', - T: CodingStepState, - oneof: 'step', - }, + { no: 1, name: "coding", kind: "message", T: CodingStepState, oneof: "step" } ]); static fromBinary(bytes, options) { return new _CortexStepState().fromBinary(bytes, options); @@ -41595,30 +36616,18 @@ var CortexResearchState = class _CortexResearchState extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexResearchState'; + static typeName = "exa.cortex_pb.CortexResearchState"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'total_retrieved_count', - kind: 'scalar', - T: 13, + name: "total_retrieved_count", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, - { - no: 2, - name: 'top_retrieved_items', - kind: 'message', - T: CciWithSubrange, - repeated: true, - }, - { no: 3, name: 'debug_info', kind: 'message', T: ResearchDebugInfo }, - { - no: 4, - name: 'full_cci_list', - kind: 'message', - T: CciWithSubrange, - repeated: true, - }, + { no: 2, name: "top_retrieved_items", kind: "message", T: CciWithSubrange, repeated: true }, + { no: 3, name: "debug_info", kind: "message", T: ResearchDebugInfo }, + { no: 4, name: "full_cci_list", kind: "message", T: CciWithSubrange, repeated: true } ]); static fromBinary(bytes, options) { return new _CortexResearchState().fromBinary(bytes, options); @@ -41637,7 +36646,7 @@ var ResearchDebugInfo = class _ResearchDebugInfo extends Message { /** * @generated from field: string query = 1; */ - query = ''; + query = ""; /** * List of relative paths of files considered by the query. * @@ -41649,16 +36658,16 @@ var ResearchDebugInfo = class _ResearchDebugInfo extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.ResearchDebugInfo'; + static typeName = "exa.cortex_pb.ResearchDebugInfo"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'query', - kind: 'scalar', - T: 9, + name: "query", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 2, name: 'files_scanned', kind: 'scalar', T: 9, repeated: true }, + { no: 2, name: "files_scanned", kind: "scalar", T: 9, repeated: true } ]); static fromBinary(bytes, options) { return new _ResearchDebugInfo().fromBinary(bytes, options); @@ -41685,7 +36694,7 @@ var CortexWorkflowState = class _CortexWorkflowState extends Message { * * @generated from field: string goal = 1; */ - goal = ''; + goal = ""; /** * @generated from field: exa.cortex_pb.PlanInput plan_input = 2; */ @@ -41708,37 +36717,32 @@ var CortexWorkflowState = class _CortexWorkflowState extends Message { * * @generated from field: string error = 5; */ - error = ''; + error = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexWorkflowState'; + static typeName = "exa.cortex_pb.CortexWorkflowState"; static fields = proto3.util.newFieldList(() => [ - { - no: 6, - name: 'request_source', - kind: 'enum', - T: proto3.getEnumType(CortexRequestSource), - }, + { no: 6, name: "request_source", kind: "enum", T: proto3.getEnumType(CortexRequestSource) }, { no: 1, - name: 'goal', - kind: 'scalar', - T: 9, + name: "goal", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 2, name: 'plan_input', kind: 'message', T: PlanInput }, - { no: 3, name: 'research_state', kind: 'message', T: CortexResearchState }, - { no: 4, name: 'plan_state', kind: 'message', T: CortexPlanState }, + { no: 2, name: "plan_input", kind: "message", T: PlanInput }, + { no: 3, name: "research_state", kind: "message", T: CortexResearchState }, + { no: 4, name: "plan_state", kind: "message", T: CortexPlanState }, { no: 5, - name: 'error', - kind: 'scalar', - T: 9, + name: "error", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _CortexWorkflowState().fromBinary(bytes, options); @@ -41778,17 +36782,17 @@ var CortexRunState = class _CortexRunState extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexRunState'; + static typeName = "exa.cortex_pb.CortexRunState"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'workflow_state', kind: 'message', T: CortexWorkflowState }, - { no: 2, name: 'execution_state', kind: 'message', T: GraphExecutionState }, + { no: 1, name: "workflow_state", kind: "message", T: CortexWorkflowState }, + { no: 2, name: "execution_state", kind: "message", T: GraphExecutionState }, { no: 3, - name: 'done', - kind: 'scalar', - T: 8, + name: "done", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ - }, + } ]); static fromBinary(bytes, options) { return new _CortexRunState().fromBinary(bytes, options); @@ -41807,7 +36811,7 @@ var PlanInput = class _PlanInput extends Message { /** * @generated from field: string goal = 1; */ - goal = ''; + goal = ""; /** * @generated from field: repeated string next_steps = 5; */ @@ -41833,25 +36837,19 @@ var PlanInput = class _PlanInput extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.PlanInput'; + static typeName = "exa.cortex_pb.PlanInput"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'goal', - kind: 'scalar', - T: 9, + name: "goal", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 5, name: 'next_steps', kind: 'scalar', T: 9, repeated: true }, - { no: 2, name: 'target_directories', kind: 'scalar', T: 9, repeated: true }, - { no: 3, name: 'target_files', kind: 'scalar', T: 9, repeated: true }, - { - no: 4, - name: 'scope_items', - kind: 'message', - T: ContextScopeItem, - repeated: true, - }, + { no: 5, name: "next_steps", kind: "scalar", T: 9, repeated: true }, + { no: 2, name: "target_directories", kind: "scalar", T: 9, repeated: true }, + { no: 3, name: "target_files", kind: "scalar", T: 9, repeated: true }, + { no: 4, name: "scope_items", kind: "message", T: ContextScopeItem, repeated: true } ]); static fromBinary(bytes, options) { return new _PlanInput().fromBinary(bytes, options); @@ -41880,36 +36878,12 @@ var ActionSpec = class _ActionSpec extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.ActionSpec'; + static typeName = "exa.cortex_pb.ActionSpec"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'command', - kind: 'message', - T: ActionSpecCommand, - oneof: 'spec', - }, - { - no: 2, - name: 'create_file', - kind: 'message', - T: ActionSpecCreateFile, - oneof: 'spec', - }, - { - no: 4, - name: 'delete_file', - kind: 'message', - T: ActionSpecDeleteFile, - oneof: 'spec', - }, - { - no: 3, - name: 'parent_step_indices', - kind: 'scalar', - T: 13, - repeated: true, - }, + { no: 1, name: "command", kind: "message", T: ActionSpecCommand, oneof: "spec" }, + { no: 2, name: "create_file", kind: "message", T: ActionSpecCreateFile, oneof: "spec" }, + { no: 4, name: "delete_file", kind: "message", T: ActionSpecDeleteFile, oneof: "spec" }, + { no: 3, name: "parent_step_indices", kind: "scalar", T: 13, repeated: true } ]); static fromBinary(bytes, options) { return new _ActionSpec().fromBinary(bytes, options); @@ -41928,7 +36902,7 @@ var ActionSpecCreateFile = class _ActionSpecCreateFile extends Message { /** * @generated from field: string instruction = 1; */ - instruction = ''; + instruction = ""; /** * @generated from field: exa.codeium_common_pb.PathScopeItem path = 2; */ @@ -41946,30 +36920,24 @@ var ActionSpecCreateFile = class _ActionSpecCreateFile extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.ActionSpecCreateFile'; + static typeName = "exa.cortex_pb.ActionSpecCreateFile"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'instruction', - kind: 'scalar', - T: 9, + name: "instruction", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 2, name: 'path', kind: 'message', T: PathScopeItem }, - { - no: 3, - name: 'reference_ccis', - kind: 'message', - T: CodeContextItem, - repeated: true, - }, + { no: 2, name: "path", kind: "message", T: PathScopeItem }, + { no: 3, name: "reference_ccis", kind: "message", T: CodeContextItem, repeated: true }, { no: 4, - name: 'overwrite', - kind: 'scalar', - T: 8, + name: "overwrite", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ - }, + } ]); static fromBinary(bytes, options) { return new _ActionSpecCreateFile().fromBinary(bytes, options); @@ -41994,9 +36962,9 @@ var ActionSpecDeleteFile = class _ActionSpecDeleteFile extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.ActionSpecDeleteFile'; + static typeName = "exa.cortex_pb.ActionSpecDeleteFile"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'path', kind: 'message', T: PathScopeItem }, + { no: 1, name: "path", kind: "message", T: PathScopeItem } ]); static fromBinary(bytes, options) { return new _ActionSpecDeleteFile().fromBinary(bytes, options); @@ -42015,7 +36983,7 @@ var LineRangeTarget = class _LineRangeTarget extends Message { /** * @generated from field: string absolute_uri = 1; */ - absoluteUri = ''; + absoluteUri = ""; /** * @generated from field: uint32 start_line = 2; */ @@ -42031,29 +36999,29 @@ var LineRangeTarget = class _LineRangeTarget extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.LineRangeTarget'; + static typeName = "exa.cortex_pb.LineRangeTarget"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'absolute_uri', - kind: 'scalar', - T: 9, + name: "absolute_uri", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'start_line', - kind: 'scalar', - T: 13, + name: "start_line", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, { no: 3, - name: 'end_line', - kind: 'scalar', - T: 13, + name: "end_line", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ - }, + } ]); static fromBinary(bytes, options) { return new _LineRangeTarget().fromBinary(bytes, options); @@ -42072,32 +37040,32 @@ var CommandContentTarget = class _CommandContentTarget extends Message { /** * @generated from field: string content = 1; */ - content = ''; + content = ""; /** * @generated from field: string absolute_uri = 2; */ - absoluteUri = ''; + absoluteUri = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CommandContentTarget'; + static typeName = "exa.cortex_pb.CommandContentTarget"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'content', - kind: 'scalar', - T: 9, + name: "content", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'absolute_uri', - kind: 'scalar', - T: 9, + name: "absolute_uri", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _CommandContentTarget().fromBinary(bytes, options); @@ -42116,11 +37084,11 @@ var ReplacementChunk = class _ReplacementChunk extends Message { /** * @generated from field: string target_content = 1; */ - targetContent = ''; + targetContent = ""; /** * @generated from field: string replacement_content = 2; */ - replacementContent = ''; + replacementContent = ""; /** * @generated from field: bool allow_multiple = 3; */ @@ -42160,57 +37128,52 @@ var ReplacementChunk = class _ReplacementChunk extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.ReplacementChunk'; + static typeName = "exa.cortex_pb.ReplacementChunk"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'target_content', - kind: 'scalar', - T: 9, + name: "target_content", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'replacement_content', - kind: 'scalar', - T: 9, + name: "replacement_content", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 3, - name: 'allow_multiple', - kind: 'scalar', - T: 8, + name: "allow_multiple", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 4, - name: 'target_has_carriage_return', - kind: 'scalar', - T: 8, + name: "target_has_carriage_return", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, - { no: 5, name: 'context_lines', kind: 'scalar', T: 9, repeated: true }, + { no: 5, name: "context_lines", kind: "scalar", T: 9, repeated: true }, { no: 6, - name: 'start_line', - kind: 'scalar', - T: 5, + name: "start_line", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, { no: 7, - name: 'end_line', - kind: 'scalar', - T: 5, + name: "end_line", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, - { - no: 11, - name: 'acknowledgement_type', - kind: 'enum', - T: proto3.getEnumType(AcknowledgementType), - }, + { no: 11, name: "acknowledgement_type", kind: "enum", T: proto3.getEnumType(AcknowledgementType) } ]); static fromBinary(bytes, options) { return new _ReplacementChunk().fromBinary(bytes, options); @@ -42229,7 +37192,7 @@ var ActionSpecCommand = class _ActionSpecCommand extends Message { /** * @generated from field: string instruction = 1; */ - instruction = ''; + instruction = ""; /** * @generated from field: repeated exa.cortex_pb.ReplacementChunk replacement_chunks = 9; */ @@ -42256,7 +37219,7 @@ var ActionSpecCommand = class _ActionSpecCommand extends Message { * * @generated from field: string classification = 11; */ - classification = ''; + classification = ""; /** * Importance of the edit proposed by interactive cascade (e.g. high, medium, * low) @@ -42269,85 +37232,44 @@ var ActionSpecCommand = class _ActionSpecCommand extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.ActionSpecCommand'; + static typeName = "exa.cortex_pb.ActionSpecCommand"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'instruction', - kind: 'scalar', - T: 9, + name: "instruction", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { - no: 9, - name: 'replacement_chunks', - kind: 'message', - T: ReplacementChunk, - repeated: true, - }, + { no: 9, name: "replacement_chunks", kind: "message", T: ReplacementChunk, repeated: true }, { no: 2, - name: 'is_edit', - kind: 'scalar', - T: 8, + name: "is_edit", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 8, - name: 'use_fast_apply', - kind: 'scalar', - T: 8, + name: "use_fast_apply", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, - { - no: 3, - name: 'code_context', - kind: 'message', - T: CodeContextItem, - oneof: 'target', - }, - { no: 4, name: 'file', kind: 'message', T: PathScopeItem, oneof: 'target' }, - { - no: 6, - name: 'cci_with_subrange', - kind: 'message', - T: CciWithSubrange, - oneof: 'target', - }, - { - no: 7, - name: 'line_range', - kind: 'message', - T: LineRangeTarget, - oneof: 'target', - }, - { - no: 10, - name: 'content_target', - kind: 'message', - T: CommandContentTarget, - oneof: 'target', - }, - { - no: 5, - name: 'reference_ccis', - kind: 'message', - T: CodeContextItem, - repeated: true, - }, + { no: 3, name: "code_context", kind: "message", T: CodeContextItem, oneof: "target" }, + { no: 4, name: "file", kind: "message", T: PathScopeItem, oneof: "target" }, + { no: 6, name: "cci_with_subrange", kind: "message", T: CciWithSubrange, oneof: "target" }, + { no: 7, name: "line_range", kind: "message", T: LineRangeTarget, oneof: "target" }, + { no: 10, name: "content_target", kind: "message", T: CommandContentTarget, oneof: "target" }, + { no: 5, name: "reference_ccis", kind: "message", T: CodeContextItem, repeated: true }, { no: 11, - name: 'classification', - kind: 'scalar', - T: 9, + name: "classification", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { - no: 12, - name: 'importance', - kind: 'enum', - T: proto3.getEnumType(InteractiveCascadeEditImportance), - }, + { no: 12, name: "importance", kind: "enum", T: proto3.getEnumType(InteractiveCascadeEditImportance) } ]); static fromBinary(bytes, options) { return new _ActionSpecCommand().fromBinary(bytes, options); @@ -42366,7 +37288,7 @@ var ActionState = class _ActionState extends Message { /** * @generated from field: string step_id = 5; */ - stepId = ''; + stepId = ""; /** * @generated from field: exa.cortex_pb.ActionStatus status = 1; */ @@ -42384,7 +37306,7 @@ var ActionState = class _ActionState extends Message { /** * @generated from field: string error = 4; */ - error = ''; + error = ""; /** * Incremented when action is edited by the user in any way. * @@ -42402,44 +37324,39 @@ var ActionState = class _ActionState extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.ActionState'; + static typeName = "exa.cortex_pb.ActionState"; static fields = proto3.util.newFieldList(() => [ { no: 5, - name: 'step_id', - kind: 'scalar', - T: 9, + name: "step_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { - no: 1, - name: 'status', - kind: 'enum', - T: proto3.getEnumType(ActionStatus), - }, - { no: 2, name: 'spec', kind: 'message', T: ActionSpec }, - { no: 3, name: 'result', kind: 'message', T: ActionResult }, + { no: 1, name: "status", kind: "enum", T: proto3.getEnumType(ActionStatus) }, + { no: 2, name: "spec", kind: "message", T: ActionSpec }, + { no: 3, name: "result", kind: "message", T: ActionResult }, { no: 4, - name: 'error', - kind: 'scalar', - T: 9, + name: "error", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 6, - name: 'step_version', - kind: 'scalar', - T: 13, + name: "step_version", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, { no: 7, - name: 'plan_version', - kind: 'scalar', - T: 13, + name: "plan_version", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ - }, + } ]); static fromBinary(bytes, options) { return new _ActionState().fromBinary(bytes, options); @@ -42471,22 +37388,16 @@ var ActionResult = class _ActionResult extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.ActionResult'; + static typeName = "exa.cortex_pb.ActionResult"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'edit', - kind: 'message', - T: ActionResultEdit, - oneof: 'result', - }, + { no: 1, name: "edit", kind: "message", T: ActionResultEdit, oneof: "result" }, { no: 2, - name: 'apply_existing_result', - kind: 'scalar', - T: 8, + name: "apply_existing_result", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ - }, + } ]); static fromBinary(bytes, options) { return new _ActionResult().fromBinary(bytes, options); @@ -42511,15 +37422,9 @@ var ActionDebugInfo = class _ActionDebugInfo extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.ActionDebugInfo'; + static typeName = "exa.cortex_pb.ActionDebugInfo"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'entries', - kind: 'message', - T: ActionDebugInfo_DebugInfoEntry, - repeated: true, - }, + { no: 1, name: "entries", kind: "message", T: ActionDebugInfo_DebugInfoEntry, repeated: true } ]); static fromBinary(bytes, options) { return new _ActionDebugInfo().fromBinary(bytes, options); @@ -42538,32 +37443,32 @@ var ActionDebugInfo_DebugInfoEntry = class _ActionDebugInfo_DebugInfoEntry exten /** * @generated from field: string key = 1; */ - key = ''; + key = ""; /** * @generated from field: string value = 2; */ - value = ''; + value = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.ActionDebugInfo.DebugInfoEntry'; + static typeName = "exa.cortex_pb.ActionDebugInfo.DebugInfoEntry"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'key', - kind: 'scalar', - T: 9, + name: "key", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'value', - kind: 'scalar', - T: 9, + name: "value", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _ActionDebugInfo_DebugInfoEntry().fromBinary(bytes, options); @@ -42572,10 +37477,7 @@ var ActionDebugInfo_DebugInfoEntry = class _ActionDebugInfo_DebugInfoEntry exten return new _ActionDebugInfo_DebugInfoEntry().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _ActionDebugInfo_DebugInfoEntry().fromJsonString( - jsonString, - options, - ); + return new _ActionDebugInfo_DebugInfoEntry().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_ActionDebugInfo_DebugInfoEntry, a, b); @@ -42586,7 +37488,7 @@ var ActionResultEdit = class _ActionResultEdit extends Message { * @generated from field: string absolute_path_migrate_me_to_uri = 1 [deprecated = true]; * @deprecated */ - absolutePathMigrateMeToUri = ''; + absolutePathMigrateMeToUri = ""; /** * @generated from field: exa.diff_action_pb.DiffBlock diff = 2; */ @@ -42594,11 +37496,11 @@ var ActionResultEdit = class _ActionResultEdit extends Message { /** * @generated from field: string context_prefix = 3; */ - contextPrefix = ''; + contextPrefix = ""; /** * @generated from field: string context_suffix = 4; */ - contextSuffix = ''; + contextSuffix = ""; /** * @generated from field: exa.cortex_pb.ActionDebugInfo debug_info = 5; */ @@ -42608,13 +37510,13 @@ var ActionResultEdit = class _ActionResultEdit extends Message { * * @generated from field: string prompt_id = 12; */ - promptId = ''; + promptId = ""; /** * this is the id of the completion generated from the model * * @generated from field: string completion_id = 6; */ - completionId = ''; + completionId = ""; /** * This is the sha256 hash of the file contents at the time the diff was * generated. This is used to check for staleness of the diff to see if it can @@ -42622,11 +37524,11 @@ var ActionResultEdit = class _ActionResultEdit extends Message { * * @generated from field: string file_content_hash = 7; */ - fileContentHash = ''; + fileContentHash = ""; /** * @generated from field: string absolute_uri = 8; */ - absoluteUri = ''; + absoluteUri = ""; /** * Result CCIs are currently not populated. * @@ -42638,7 +37540,7 @@ var ActionResultEdit = class _ActionResultEdit extends Message { * * @generated from field: string original_content = 10; */ - originalContent = ''; + originalContent = ""; /** * @generated from field: bool create_file = 11; */ @@ -42648,80 +37550,74 @@ var ActionResultEdit = class _ActionResultEdit extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.ActionResultEdit'; + static typeName = "exa.cortex_pb.ActionResultEdit"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'absolute_path_migrate_me_to_uri', - kind: 'scalar', - T: 9, + name: "absolute_path_migrate_me_to_uri", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 2, name: 'diff', kind: 'message', T: DiffBlock }, + { no: 2, name: "diff", kind: "message", T: DiffBlock }, { no: 3, - name: 'context_prefix', - kind: 'scalar', - T: 9, + name: "context_prefix", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 4, - name: 'context_suffix', - kind: 'scalar', - T: 9, + name: "context_suffix", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 5, name: 'debug_info', kind: 'message', T: ActionDebugInfo }, + { no: 5, name: "debug_info", kind: "message", T: ActionDebugInfo }, { no: 12, - name: 'prompt_id', - kind: 'scalar', - T: 9, + name: "prompt_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 6, - name: 'completion_id', - kind: 'scalar', - T: 9, + name: "completion_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 7, - name: 'file_content_hash', - kind: 'scalar', - T: 9, + name: "file_content_hash", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 8, - name: 'absolute_uri', - kind: 'scalar', - T: 9, + name: "absolute_uri", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { - no: 9, - name: 'result_ccis', - kind: 'message', - T: CodeContextItem, - repeated: true, - }, + { no: 9, name: "result_ccis", kind: "message", T: CodeContextItem, repeated: true }, { no: 10, - name: 'original_content', - kind: 'scalar', - T: 9, + name: "original_content", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 11, - name: 'create_file', - kind: 'scalar', - T: 8, + name: "create_file", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ - }, + } ]); static fromBinary(bytes, options) { return new _ActionResultEdit().fromBinary(bytes, options); @@ -42750,22 +37646,16 @@ var RetrievalStatus = class _RetrievalStatus extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.RetrievalStatus'; + static typeName = "exa.cortex_pb.RetrievalStatus"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'total_retrieved_count', - kind: 'scalar', - T: 13, + name: "total_retrieved_count", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, - { - no: 2, - name: 'top_retrieved_items', - kind: 'message', - T: CciWithSubrange, - repeated: true, - }, + { no: 2, name: "top_retrieved_items", kind: "message", T: CciWithSubrange, repeated: true } ]); static fromBinary(bytes, options) { return new _RetrievalStatus().fromBinary(bytes, options); @@ -42788,7 +37678,7 @@ var PlanState = class _PlanState extends Message { /** * @generated from field: string plan_id = 1; */ - planId = ''; + planId = ""; /** * @generated from field: exa.cortex_pb.PlanInput plan_input = 2; */ @@ -42804,7 +37694,7 @@ var PlanState = class _PlanState extends Message { /** * @generated from field: string error = 5; */ - error = ''; + error = ""; /** * @generated from field: exa.cortex_pb.PlanDebugInfo debug_info = 7; */ @@ -42814,27 +37704,27 @@ var PlanState = class _PlanState extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.PlanState'; + static typeName = "exa.cortex_pb.PlanState"; static fields = proto3.util.newFieldList(() => [ - { no: 4, name: 'status', kind: 'enum', T: proto3.getEnumType(PlanStatus2) }, + { no: 4, name: "status", kind: "enum", T: proto3.getEnumType(PlanStatus2) }, { no: 1, - name: 'plan_id', - kind: 'scalar', - T: 9, + name: "plan_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 2, name: 'plan_input', kind: 'message', T: PlanInput }, - { no: 3, name: 'actions', kind: 'message', T: ActionState, repeated: true }, - { no: 6, name: 'retrieval_status', kind: 'message', T: RetrievalStatus }, + { no: 2, name: "plan_input", kind: "message", T: PlanInput }, + { no: 3, name: "actions", kind: "message", T: ActionState, repeated: true }, + { no: 6, name: "retrieval_status", kind: "message", T: RetrievalStatus }, { no: 5, - name: 'error', - kind: 'scalar', - T: 9, + name: "error", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 7, name: 'debug_info', kind: 'message', T: PlanDebugInfo }, + { no: 7, name: "debug_info", kind: "message", T: PlanDebugInfo } ]); static fromBinary(bytes, options) { return new _PlanState().fromBinary(bytes, options); @@ -42853,7 +37743,7 @@ var PlanDebugInfo = class _PlanDebugInfo extends Message { /** * @generated from field: string raw_response = 1; */ - rawResponse = ''; + rawResponse = ""; /** * @generated from field: uint32 plan_tokens = 2; */ @@ -42865,7 +37755,7 @@ var PlanDebugInfo = class _PlanDebugInfo extends Message { /** * @generated from field: string system_prompt = 4; */ - systemPrompt = ''; + systemPrompt = ""; /** * @generated from field: repeated exa.chat_pb.ChatMessagePrompt message_prompts = 5; */ @@ -42875,43 +37765,37 @@ var PlanDebugInfo = class _PlanDebugInfo extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.PlanDebugInfo'; + static typeName = "exa.cortex_pb.PlanDebugInfo"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'raw_response', - kind: 'scalar', - T: 9, + name: "raw_response", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'plan_tokens', - kind: 'scalar', - T: 13, + name: "plan_tokens", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, { no: 3, - name: 'plan_cost', - kind: 'scalar', - T: 2, + name: "plan_cost", + kind: "scalar", + T: 2 /* ScalarType.FLOAT */ }, { no: 4, - name: 'system_prompt', - kind: 'scalar', - T: 9, + name: "system_prompt", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { - no: 5, - name: 'message_prompts', - kind: 'message', - T: ChatMessagePrompt, - repeated: true, - }, + { no: 5, name: "message_prompts", kind: "message", T: ChatMessagePrompt, repeated: true } ]); static fromBinary(bytes, options) { return new _PlanDebugInfo().fromBinary(bytes, options); @@ -42949,23 +37833,23 @@ var CortexPlanConfig = class _CortexPlanConfig extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexPlanConfig'; + static typeName = "exa.cortex_pb.CortexPlanConfig"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'model_config', kind: 'message', T: ChatNodeConfig }, + { no: 1, name: "model_config", kind: "message", T: ChatNodeConfig }, { no: 2, - name: 'max_nominal_continuations', - kind: 'scalar', - T: 13, + name: "max_nominal_continuations", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, { no: 3, - name: 'max_error_continuations', - kind: 'scalar', - T: 13, + name: "max_error_continuations", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ - }, + } ]); static fromBinary(bytes, options) { return new _CortexPlanConfig().fromBinary(bytes, options); @@ -43006,7 +37890,7 @@ var CortexConfig = class _CortexConfig extends Message { /** * @generated from field: string m_query_model_name = 12; */ - mQueryModelName = ''; + mQueryModelName = ""; /** * [Node: macro_planner] * @@ -43051,55 +37935,55 @@ var CortexConfig = class _CortexConfig extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexConfig'; + static typeName = "exa.cortex_pb.CortexConfig"; static fields = proto3.util.newFieldList(() => [ { no: 11, - name: 'record_telemetry', - kind: 'scalar', - T: 8, + name: "record_telemetry", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 6, - name: 'add_distill_node', - kind: 'scalar', - T: 8, + name: "add_distill_node", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, - { no: 10, name: 'distill_config', kind: 'message', T: ChatNodeConfig }, - { no: 8, name: 'm_query_config', kind: 'message', T: MQueryConfig }, + { no: 10, name: "distill_config", kind: "message", T: ChatNodeConfig }, + { no: 8, name: "m_query_config", kind: "message", T: MQueryConfig }, { no: 12, - name: 'm_query_model_name', - kind: 'scalar', - T: 9, + name: "m_query_model_name", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 1, - name: 'use_macro_planner', - kind: 'scalar', - T: 8, + name: "use_macro_planner", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, - { no: 4, name: 'macro_plan_config', kind: 'message', T: CortexPlanConfig }, - { no: 9, name: 'plan_config', kind: 'message', T: PlanConfig }, - { no: 5, name: 'code_plan_config', kind: 'message', T: CortexPlanConfig }, + { no: 4, name: "macro_plan_config", kind: "message", T: CortexPlanConfig }, + { no: 9, name: "plan_config", kind: "message", T: PlanConfig }, + { no: 5, name: "code_plan_config", kind: "message", T: CortexPlanConfig }, { no: 2, - name: 'auto_prepare_apply', - kind: 'scalar', - T: 8, + name: "auto_prepare_apply", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 3, - name: 'num_prepare_retries', - kind: 'scalar', - T: 13, + name: "num_prepare_retries", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ - }, + } ]); static fromBinary(bytes, options) { return new _CortexConfig().fromBinary(bytes, options); @@ -43118,7 +38002,7 @@ var PlanConfig = class _PlanConfig extends Message { /** * @generated from field: string plan_model_name = 1; */ - planModelName = ''; + planModelName = ""; /** * @generated from field: uint32 max_tokens_per_plan = 2; */ @@ -43152,52 +38036,52 @@ var PlanConfig = class _PlanConfig extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.PlanConfig'; + static typeName = "exa.cortex_pb.PlanConfig"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'plan_model_name', - kind: 'scalar', - T: 9, + name: "plan_model_name", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'max_tokens_per_plan', - kind: 'scalar', - T: 13, + name: "max_tokens_per_plan", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, { no: 3, - name: 'max_token_fraction', - kind: 'scalar', - T: 2, + name: "max_token_fraction", + kind: "scalar", + T: 2 /* ScalarType.FLOAT */ }, { no: 4, - name: 'chat_temperature', - kind: 'scalar', - T: 2, + name: "chat_temperature", + kind: "scalar", + T: 2 /* ScalarType.FLOAT */ }, { no: 5, - name: 'chat_completion_max_tokens', - kind: 'scalar', - T: 4, + name: "chat_completion_max_tokens", + kind: "scalar", + T: 4 /* ScalarType.UINT64 */ }, { no: 9, - name: 'augment_command', - kind: 'scalar', - T: 8, + name: "augment_command", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, - { no: 7, name: 'experiment_config', kind: 'message', T: ExperimentConfig }, - { no: 8, name: 'm_query_config', kind: 'message', T: MQueryConfig }, + { no: 7, name: "experiment_config", kind: "message", T: ExperimentConfig }, + { no: 8, name: "m_query_config", kind: "message", T: MQueryConfig } ]); static fromBinary(bytes, options) { return new _PlanConfig().fromBinary(bytes, options); @@ -43216,7 +38100,7 @@ var CortexPlanSummary = class _CortexPlanSummary extends Message { /** * @generated from field: string cortex_id = 1; */ - cortexId = ''; + cortexId = ""; /** * @generated from field: exa.cortex_pb.PlanInput plan_input = 2; */ @@ -43234,24 +38118,24 @@ var CortexPlanSummary = class _CortexPlanSummary extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexPlanSummary'; + static typeName = "exa.cortex_pb.CortexPlanSummary"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'cortex_id', - kind: 'scalar', - T: 9, + name: "cortex_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 2, name: 'plan_input', kind: 'message', T: PlanInput }, - { no: 3, name: 'created_at', kind: 'message', T: Timestamp }, + { no: 2, name: "plan_input", kind: "message", T: PlanInput }, + { no: 3, name: "created_at", kind: "message", T: Timestamp }, { no: 4, - name: 'done', - kind: 'scalar', - T: 8, + name: "done", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ - }, + } ]); static fromBinary(bytes, options) { return new _CortexPlanSummary().fromBinary(bytes, options); @@ -43280,28 +38164,11 @@ var WorkspaceInitializationData = class _WorkspaceInitializationData extends Mes proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.WorkspaceInitializationData'; + static typeName = "exa.cortex_pb.WorkspaceInitializationData"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'workspace_type', - kind: 'enum', - T: proto3.getEnumType(WorkspaceType), - }, - { - no: 2, - name: 'git', - kind: 'message', - T: WorkspaceInitializationDataGit, - oneof: 'data', - }, - { - no: 3, - name: 'piper', - kind: 'message', - T: WorkspaceInitializationDataPiper, - oneof: 'data', - }, + { no: 1, name: "workspace_type", kind: "enum", T: proto3.getEnumType(WorkspaceType) }, + { no: 2, name: "git", kind: "message", T: WorkspaceInitializationDataGit, oneof: "data" }, + { no: 3, name: "piper", kind: "message", T: WorkspaceInitializationDataPiper, oneof: "data" } ]); static fromBinary(bytes, options) { return new _WorkspaceInitializationData().fromBinary(bytes, options); @@ -43310,10 +38177,7 @@ var WorkspaceInitializationData = class _WorkspaceInitializationData extends Mes return new _WorkspaceInitializationData().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _WorkspaceInitializationData().fromJsonString( - jsonString, - options, - ); + return new _WorkspaceInitializationData().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_WorkspaceInitializationData, a, b); @@ -43329,7 +38193,7 @@ var WorkspaceInitializationDataGit = class _WorkspaceInitializationDataGit exten * * @generated from field: string merge_base_commit_hash = 2; */ - mergeBaseCommitHash = ''; + mergeBaseCommitHash = ""; /** * Patch between merge base and head commit. Will be nil if cleared or * errored. Will be empty string if the diff is zero. @@ -43360,38 +38224,26 @@ var WorkspaceInitializationDataGit = class _WorkspaceInitializationDataGit exten proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.WorkspaceInitializationDataGit'; + static typeName = "exa.cortex_pb.WorkspaceInitializationDataGit"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'metadata', kind: 'message', T: CortexWorkspaceMetadata }, + { no: 1, name: "metadata", kind: "message", T: CortexWorkspaceMetadata }, { no: 2, - name: 'merge_base_commit_hash', - kind: 'scalar', - T: 9, + name: "merge_base_commit_hash", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { - no: 3, - name: 'merge_base_head_patch_string', - kind: 'scalar', - T: 9, - opt: true, - }, - { - no: 4, - name: 'head_working_patch_string', - kind: 'scalar', - T: 9, - opt: true, - }, - { no: 5, name: 'workspace_stats', kind: 'message', T: WorkspaceStats }, + { no: 3, name: "merge_base_head_patch_string", kind: "scalar", T: 9, opt: true }, + { no: 4, name: "head_working_patch_string", kind: "scalar", T: 9, opt: true }, + { no: 5, name: "workspace_stats", kind: "message", T: WorkspaceStats }, { no: 6, - name: 'repo_is_public', - kind: 'scalar', - T: 8, + name: "repo_is_public", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ - }, + } ]); static fromBinary(bytes, options) { return new _WorkspaceInitializationDataGit().fromBinary(bytes, options); @@ -43400,10 +38252,7 @@ var WorkspaceInitializationDataGit = class _WorkspaceInitializationDataGit exten return new _WorkspaceInitializationDataGit().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _WorkspaceInitializationDataGit().fromJsonString( - jsonString, - options, - ); + return new _WorkspaceInitializationDataGit().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_WorkspaceInitializationDataGit, a, b); @@ -43413,7 +38262,7 @@ var WorkspaceInitializationDataPiper = class _WorkspaceInitializationDataPiper e /** * @generated from field: string workspace_folder_absolute_uri = 1; */ - workspaceFolderAbsoluteUri = ''; + workspaceFolderAbsoluteUri = ""; /** * @generated from field: int64 base_cl = 2 [deprecated = true]; * @deprecated @@ -43432,37 +38281,25 @@ var WorkspaceInitializationDataPiper = class _WorkspaceInitializationDataPiper e proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.WorkspaceInitializationDataPiper'; + static typeName = "exa.cortex_pb.WorkspaceInitializationDataPiper"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'workspace_folder_absolute_uri', - kind: 'scalar', - T: 9, + name: "workspace_folder_absolute_uri", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'base_cl', - kind: 'scalar', - T: 3, + name: "base_cl", + kind: "scalar", + T: 3 /* ScalarType.INT64 */ }, - { - no: 5, - name: 'base_changelist', - kind: 'scalar', - T: 3, - oneof: 'base_state', - }, - { - no: 4, - name: 'citc_snapshot_id', - kind: 'scalar', - T: 3, - oneof: 'base_state', - }, - { no: 3, name: 'file_diffs', kind: 'message', T: FileDiff, repeated: true }, + { no: 5, name: "base_changelist", kind: "scalar", T: 3, oneof: "base_state" }, + { no: 4, name: "citc_snapshot_id", kind: "scalar", T: 3, oneof: "base_state" }, + { no: 3, name: "file_diffs", kind: "message", T: FileDiff, repeated: true } ]); static fromBinary(bytes, options) { return new _WorkspaceInitializationDataPiper().fromBinary(bytes, options); @@ -43471,10 +38308,7 @@ var WorkspaceInitializationDataPiper = class _WorkspaceInitializationDataPiper e return new _WorkspaceInitializationDataPiper().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _WorkspaceInitializationDataPiper().fromJsonString( - jsonString, - options, - ); + return new _WorkspaceInitializationDataPiper().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_WorkspaceInitializationDataPiper, a, b); @@ -43487,7 +38321,7 @@ var FileDiff = class _FileDiff extends Message { * * @generated from field: string depot_path = 1; */ - depotPath = ''; + depotPath = ""; /** * @generated from oneof exa.cortex_pb.FileDiff.file_op */ @@ -43497,30 +38331,18 @@ var FileDiff = class _FileDiff extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.FileDiff'; + static typeName = "exa.cortex_pb.FileDiff"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'depot_path', - kind: 'scalar', - T: 9, + name: "depot_path", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 2, name: 'add', kind: 'message', T: FileDiffAdd, oneof: 'file_op' }, - { - no: 3, - name: 'remove', - kind: 'message', - T: FileDiffRemove, - oneof: 'file_op', - }, - { - no: 4, - name: 'modify', - kind: 'message', - T: FileDiffModify, - oneof: 'file_op', - }, + { no: 2, name: "add", kind: "message", T: FileDiffAdd, oneof: "file_op" }, + { no: 3, name: "remove", kind: "message", T: FileDiffRemove, oneof: "file_op" }, + { no: 4, name: "modify", kind: "message", T: FileDiffModify, oneof: "file_op" } ]); static fromBinary(bytes, options) { return new _FileDiff().fromBinary(bytes, options); @@ -43539,21 +38361,21 @@ var FileDiffAdd = class _FileDiffAdd extends Message { /** * @generated from field: string content = 1; */ - content = ''; + content = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.FileDiffAdd'; + static typeName = "exa.cortex_pb.FileDiffAdd"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'content', - kind: 'scalar', - T: 9, + name: "content", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _FileDiffAdd().fromBinary(bytes, options); @@ -43574,7 +38396,7 @@ var FileDiffRemove = class _FileDiffRemove extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.FileDiffRemove'; + static typeName = "exa.cortex_pb.FileDiffRemove"; static fields = proto3.util.newFieldList(() => []); static fromBinary(bytes, options) { return new _FileDiffRemove().fromBinary(bytes, options); @@ -43595,21 +38417,21 @@ var FileDiffModify = class _FileDiffModify extends Message { * * @generated from field: string diff = 1; */ - diff = ''; + diff = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.FileDiffModify'; + static typeName = "exa.cortex_pb.FileDiffModify"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'diff', - kind: 'scalar', - T: 9, + name: "diff", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _FileDiffModify().fromBinary(bytes, options); @@ -43637,7 +38459,7 @@ var StateInitializationData = class _StateInitializationData extends Message { * * @generated from field: string state_id = 2; */ - stateId = ''; + stateId = ""; /** * @generated from field: repeated exa.cortex_pb.WorkspaceInitializationData workspaces = 3; */ @@ -43651,29 +38473,18 @@ var StateInitializationData = class _StateInitializationData extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.StateInitializationData'; + static typeName = "exa.cortex_pb.StateInitializationData"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'timestamp', kind: 'message', T: Timestamp }, + { no: 1, name: "timestamp", kind: "message", T: Timestamp }, { no: 2, - name: 'state_id', - kind: 'scalar', - T: 9, + name: "state_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { - no: 3, - name: 'workspaces', - kind: 'message', - T: WorkspaceInitializationData, - repeated: true, - }, - { - no: 4, - name: 'artifacts', - kind: 'message', - T: AritfactInitializationData, - }, + { no: 3, name: "workspaces", kind: "message", T: WorkspaceInitializationData, repeated: true }, + { no: 4, name: "artifacts", kind: "message", T: AritfactInitializationData } ]); static fromBinary(bytes, options) { return new _StateInitializationData().fromBinary(bytes, options); @@ -43694,13 +38505,13 @@ var AritfactInitializationData = class _AritfactInitializationData extends Messa * * @generated from field: string artifact_dir_uri = 1; */ - artifactDirUri = ''; + artifactDirUri = ""; /** * Absolute URI to the base artifact directory for all trajectories. * * @generated from field: string artifact_base_dir_uri = 2; */ - artifactBaseDirUri = ''; + artifactBaseDirUri = ""; /** * Map from relative file path to LZ4 compressed file content. * @@ -43712,33 +38523,27 @@ var AritfactInitializationData = class _AritfactInitializationData extends Messa proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.AritfactInitializationData'; + static typeName = "exa.cortex_pb.AritfactInitializationData"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'artifact_dir_uri', - kind: 'scalar', - T: 9, + name: "artifact_dir_uri", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'artifact_base_dir_uri', - kind: 'scalar', - T: 9, + name: "artifact_base_dir_uri", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { - no: 3, - name: 'compressed_artifact_files', - kind: 'map', - K: 9, - V: { - kind: 'scalar', - T: 12, - /* ScalarType.BYTES */ - }, - }, + { no: 3, name: "compressed_artifact_files", kind: "map", K: 9, V: { + kind: "scalar", + T: 12 + /* ScalarType.BYTES */ + } } ]); static fromBinary(bytes, options) { return new _AritfactInitializationData().fromBinary(bytes, options); @@ -43747,10 +38552,7 @@ var AritfactInitializationData = class _AritfactInitializationData extends Messa return new _AritfactInitializationData().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _AritfactInitializationData().fromJsonString( - jsonString, - options, - ); + return new _AritfactInitializationData().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_AritfactInitializationData, a, b); @@ -43760,11 +38562,11 @@ var CortexWorkspaceMetadata = class _CortexWorkspaceMetadata extends Message { /** * @generated from field: string workspace_folder_absolute_uri = 1; */ - workspaceFolderAbsoluteUri = ''; + workspaceFolderAbsoluteUri = ""; /** * @generated from field: string git_root_absolute_uri = 2; */ - gitRootAbsoluteUri = ''; + gitRootAbsoluteUri = ""; /** * @generated from field: exa.codeium_common_pb.Repository repository = 3; */ @@ -43772,36 +38574,36 @@ var CortexWorkspaceMetadata = class _CortexWorkspaceMetadata extends Message { /** * @generated from field: string branch_name = 4; */ - branchName = ''; + branchName = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexWorkspaceMetadata'; + static typeName = "exa.cortex_pb.CortexWorkspaceMetadata"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'workspace_folder_absolute_uri', - kind: 'scalar', - T: 9, + name: "workspace_folder_absolute_uri", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'git_root_absolute_uri', - kind: 'scalar', - T: 9, + name: "git_root_absolute_uri", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 3, name: 'repository', kind: 'message', T: Repository }, + { no: 3, name: "repository", kind: "message", T: Repository }, { no: 4, - name: 'branch_name', - kind: 'scalar', - T: 9, + name: "branch_name", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _CortexWorkspaceMetadata().fromBinary(bytes, options); @@ -43830,29 +38632,23 @@ var CortexTrajectoryMetadata = class _CortexTrajectoryMetadata extends Message { * * @generated from field: string initialization_state_id = 3; */ - initializationStateId = ''; + initializationStateId = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexTrajectoryMetadata'; + static typeName = "exa.cortex_pb.CortexTrajectoryMetadata"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'workspaces', - kind: 'message', - T: CortexWorkspaceMetadata, - repeated: true, - }, - { no: 2, name: 'created_at', kind: 'message', T: Timestamp }, + { no: 1, name: "workspaces", kind: "message", T: CortexWorkspaceMetadata, repeated: true }, + { no: 2, name: "created_at", kind: "message", T: Timestamp }, { no: 3, - name: 'initialization_state_id', - kind: 'scalar', - T: 9, + name: "initialization_state_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _CortexTrajectoryMetadata().fromBinary(bytes, options); @@ -43873,7 +38669,7 @@ var CortexTrajectoryReference = class _CortexTrajectoryReference extends Message * * @generated from field: string trajectory_id = 1; */ - trajectoryId = ''; + trajectoryId = ""; /** * Type of the referenced trajectory. * @@ -43916,40 +38712,25 @@ var CortexTrajectoryReference = class _CortexTrajectoryReference extends Message proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexTrajectoryReference'; + static typeName = "exa.cortex_pb.CortexTrajectoryReference"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'trajectory_id', - kind: 'scalar', - T: 9, + name: "trajectory_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { - no: 3, - name: 'trajectory_type', - kind: 'enum', - T: proto3.getEnumType(CortexTrajectoryType), - }, + { no: 3, name: "trajectory_type", kind: "enum", T: proto3.getEnumType(CortexTrajectoryType) }, { no: 2, - name: 'step_index', - kind: 'scalar', - T: 5, + name: "step_index", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, - { - no: 4, - name: 'step_type', - kind: 'enum', - T: proto3.getEnumType(CortexStepType), - }, - { - no: 5, - name: 'reference_type', - kind: 'enum', - T: proto3.getEnumType(CortexTrajectoryReferenceType), - }, + { no: 4, name: "step_type", kind: "enum", T: proto3.getEnumType(CortexStepType) }, + { no: 5, name: "reference_type", kind: "enum", T: proto3.getEnumType(CortexTrajectoryReferenceType) } ]); static fromBinary(bytes, options) { return new _CortexTrajectoryReference().fromBinary(bytes, options); @@ -43968,7 +38749,7 @@ var ImplicitTrajectoryDescription = class _ImplicitTrajectoryDescription extends /** * @generated from field: string trajectory_id = 1; */ - trajectoryId = ''; + trajectoryId = ""; /** * @generated from field: exa.cortex_pb.TrajectoryScope trajectory_scope = 2; */ @@ -43982,23 +38763,23 @@ var ImplicitTrajectoryDescription = class _ImplicitTrajectoryDescription extends proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.ImplicitTrajectoryDescription'; + static typeName = "exa.cortex_pb.ImplicitTrajectoryDescription"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'trajectory_id', - kind: 'scalar', - T: 9, + name: "trajectory_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 2, name: 'trajectory_scope', kind: 'message', T: TrajectoryScope }, + { no: 2, name: "trajectory_scope", kind: "message", T: TrajectoryScope }, { no: 3, - name: 'current', - kind: 'scalar', - T: 8, + name: "current", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ - }, + } ]); static fromBinary(bytes, options) { return new _ImplicitTrajectoryDescription().fromBinary(bytes, options); @@ -44007,10 +38788,7 @@ var ImplicitTrajectoryDescription = class _ImplicitTrajectoryDescription extends return new _ImplicitTrajectoryDescription().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _ImplicitTrajectoryDescription().fromJsonString( - jsonString, - options, - ); + return new _ImplicitTrajectoryDescription().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_ImplicitTrajectoryDescription, a, b); @@ -44022,7 +38800,7 @@ var InjectedResponseMetadata = class _InjectedResponseMetadata extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.InjectedResponseMetadata'; + static typeName = "exa.cortex_pb.InjectedResponseMetadata"; static fields = proto3.util.newFieldList(() => []); static fromBinary(bytes, options) { return new _InjectedResponseMetadata().fromBinary(bytes, options); @@ -44055,50 +38833,38 @@ var CortexStepGeneratorMetadata = class _CortexStepGeneratorMetadata extends Mes * * @generated from field: string execution_id = 4; */ - executionId = ''; + executionId = ""; /** * If an error interrupted the generation, this is the error message. * * @generated from field: string error = 5; */ - error = ''; + error = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexStepGeneratorMetadata'; + static typeName = "exa.cortex_pb.CortexStepGeneratorMetadata"; static fields = proto3.util.newFieldList(() => [ - { no: 2, name: 'step_indices', kind: 'scalar', T: 13, repeated: true }, - { - no: 1, - name: 'chat_model', - kind: 'message', - T: ChatModelMetadata, - oneof: 'metadata', - }, - { - no: 7, - name: 'injected', - kind: 'message', - T: InjectedResponseMetadata, - oneof: 'metadata', - }, - { no: 3, name: 'planner_config', kind: 'message', T: CascadePlannerConfig }, + { no: 2, name: "step_indices", kind: "scalar", T: 13, repeated: true }, + { no: 1, name: "chat_model", kind: "message", T: ChatModelMetadata, oneof: "metadata" }, + { no: 7, name: "injected", kind: "message", T: InjectedResponseMetadata, oneof: "metadata" }, + { no: 3, name: "planner_config", kind: "message", T: CascadePlannerConfig }, { no: 4, - name: 'execution_id', - kind: 'scalar', - T: 9, + name: "execution_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 5, - name: 'error', - kind: 'scalar', - T: 9, + name: "error", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _CortexStepGeneratorMetadata().fromBinary(bytes, options); @@ -44107,10 +38873,7 @@ var CortexStepGeneratorMetadata = class _CortexStepGeneratorMetadata extends Mes return new _CortexStepGeneratorMetadata().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _CortexStepGeneratorMetadata().fromJsonString( - jsonString, - options, - ); + return new _CortexStepGeneratorMetadata().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_CortexStepGeneratorMetadata, a, b); @@ -44140,22 +38903,22 @@ var MessagePromptMetadata = class _MessagePromptMetadata extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.MessagePromptMetadata'; + static typeName = "exa.cortex_pb.MessagePromptMetadata"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'message_index', - kind: 'scalar', - T: 13, + name: "message_index", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, { no: 2, - name: 'segment_index', - kind: 'scalar', - T: 13, + name: "segment_index", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ - }, + } ]); static fromBinary(bytes, options) { return new _MessagePromptMetadata().fromBinary(bytes, options); @@ -44176,13 +38939,13 @@ var SectionJudgeCriteria = class _SectionJudgeCriteria extends Message { * * @generated from field: string name = 1; */ - name = ''; + name = ""; /** * Description of the criteria that the section should be evaluated against. * * @generated from field: string description = 2; */ - description = ''; + description = ""; /** * An optional weighting for the weighted average calculation. If not provided * then will use a simple average. @@ -44195,23 +38958,23 @@ var SectionJudgeCriteria = class _SectionJudgeCriteria extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.SectionJudgeCriteria'; + static typeName = "exa.cortex_pb.SectionJudgeCriteria"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'name', - kind: 'scalar', - T: 9, + name: "name", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'description', - kind: 'scalar', - T: 9, + name: "description", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 3, name: 'weight', kind: 'scalar', T: 13, opt: true }, + { no: 3, name: "weight", kind: "scalar", T: 13, opt: true } ]); static fromBinary(bytes, options) { return new _SectionJudgeCriteria().fromBinary(bytes, options); @@ -44239,7 +39002,7 @@ var PromptSectionMetadata = class _PromptSectionMetadata extends Message { * * @generated from field: string template_key = 2; */ - templateKey = ''; + templateKey = ""; /** * Whether the template came from an internal source. * Only set when source_type = TEMPLATE. @@ -44252,28 +39015,23 @@ var PromptSectionMetadata = class _PromptSectionMetadata extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.PromptSectionMetadata'; + static typeName = "exa.cortex_pb.PromptSectionMetadata"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'source_type', - kind: 'enum', - T: proto3.getEnumType(PromptSectionMetadata_PromptSectionSourceType), - }, + { no: 1, name: "source_type", kind: "enum", T: proto3.getEnumType(PromptSectionMetadata_PromptSectionSourceType) }, { no: 2, - name: 'template_key', - kind: 'scalar', - T: 9, + name: "template_key", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 3, - name: 'is_internal', - kind: 'scalar', - T: 8, + name: "is_internal", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ - }, + } ]); static fromBinary(bytes, options) { return new _PromptSectionMetadata().fromBinary(bytes, options); @@ -44289,38 +39047,25 @@ var PromptSectionMetadata = class _PromptSectionMetadata extends Message { } }; var PromptSectionMetadata_PromptSectionSourceType; -(function (PromptSectionMetadata_PromptSectionSourceType2) { - PromptSectionMetadata_PromptSectionSourceType2[ - (PromptSectionMetadata_PromptSectionSourceType2['UNSPECIFIED'] = 0) - ] = 'UNSPECIFIED'; - PromptSectionMetadata_PromptSectionSourceType2[ - (PromptSectionMetadata_PromptSectionSourceType2['RAW'] = 1) - ] = 'RAW'; - PromptSectionMetadata_PromptSectionSourceType2[ - (PromptSectionMetadata_PromptSectionSourceType2['TEMPLATE'] = 2) - ] = 'TEMPLATE'; -})( - PromptSectionMetadata_PromptSectionSourceType || - (PromptSectionMetadata_PromptSectionSourceType = {}), -); -proto3.util.setEnumType( - PromptSectionMetadata_PromptSectionSourceType, - 'exa.cortex_pb.PromptSectionMetadata.PromptSectionSourceType', - [ - { no: 0, name: 'PROMPT_SECTION_SOURCE_TYPE_UNSPECIFIED' }, - { no: 1, name: 'PROMPT_SECTION_SOURCE_TYPE_RAW' }, - { no: 2, name: 'PROMPT_SECTION_SOURCE_TYPE_TEMPLATE' }, - ], -); +(function(PromptSectionMetadata_PromptSectionSourceType2) { + PromptSectionMetadata_PromptSectionSourceType2[PromptSectionMetadata_PromptSectionSourceType2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + PromptSectionMetadata_PromptSectionSourceType2[PromptSectionMetadata_PromptSectionSourceType2["RAW"] = 1] = "RAW"; + PromptSectionMetadata_PromptSectionSourceType2[PromptSectionMetadata_PromptSectionSourceType2["TEMPLATE"] = 2] = "TEMPLATE"; +})(PromptSectionMetadata_PromptSectionSourceType || (PromptSectionMetadata_PromptSectionSourceType = {})); +proto3.util.setEnumType(PromptSectionMetadata_PromptSectionSourceType, "exa.cortex_pb.PromptSectionMetadata.PromptSectionSourceType", [ + { no: 0, name: "PROMPT_SECTION_SOURCE_TYPE_UNSPECIFIED" }, + { no: 1, name: "PROMPT_SECTION_SOURCE_TYPE_RAW" }, + { no: 2, name: "PROMPT_SECTION_SOURCE_TYPE_TEMPLATE" } +]); var PromptSection = class _PromptSection extends Message { /** * @generated from field: string title = 1; */ - title = ''; + title = ""; /** * @generated from field: string content = 2; */ - content = ''; + content = ""; /** * @generated from field: repeated exa.cortex_pb.SectionJudgeCriteria criteria = 3; */ @@ -44337,43 +39082,37 @@ var PromptSection = class _PromptSection extends Message { * * @generated from field: string dynamic_content = 5; */ - dynamicContent = ''; + dynamicContent = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.PromptSection'; + static typeName = "exa.cortex_pb.PromptSection"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'title', - kind: 'scalar', - T: 9, + name: "title", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'content', - kind: 'scalar', - T: 9, + name: "content", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { - no: 3, - name: 'criteria', - kind: 'message', - T: SectionJudgeCriteria, - repeated: true, - }, - { no: 4, name: 'metadata', kind: 'message', T: PromptSectionMetadata }, + { no: 3, name: "criteria", kind: "message", T: SectionJudgeCriteria, repeated: true }, + { no: 4, name: "metadata", kind: "message", T: PromptSectionMetadata }, { no: 5, - name: 'dynamic_content', - kind: 'scalar', - T: 9, + name: "dynamic_content", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _PromptSection().fromBinary(bytes, options); @@ -44394,7 +39133,7 @@ var RetryInfo = class _RetryInfo extends Message { * * @generated from field: string sherlog_link = 1; */ - sherlogLink = ''; + sherlogLink = ""; /** * Model usage stats for this retry attempt. * @@ -44406,13 +39145,13 @@ var RetryInfo = class _RetryInfo extends Message { * * @generated from field: string error = 3; */ - error = ''; + error = ""; /** * Trace ID for this retry attempt. * * @generated from field: string trace_id = 4; */ - traceId = ''; + traceId = ""; /** * Categorizes the reason for this retry. * @@ -44424,36 +39163,31 @@ var RetryInfo = class _RetryInfo extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.RetryInfo'; + static typeName = "exa.cortex_pb.RetryInfo"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'sherlog_link', - kind: 'scalar', - T: 9, + name: "sherlog_link", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 2, name: 'usage', kind: 'message', T: ModelUsageStats }, + { no: 2, name: "usage", kind: "message", T: ModelUsageStats }, { no: 3, - name: 'error', - kind: 'scalar', - T: 9, + name: "error", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 4, - name: 'trace_id', - kind: 'scalar', - T: 9, + name: "trace_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { - no: 5, - name: 'retry_reason', - kind: 'enum', - T: proto3.getEnumType(RetryReason), - }, + { no: 5, name: "retry_reason", kind: "enum", T: proto3.getEnumType(RetryReason) } ]); static fromBinary(bytes, options) { return new _RetryInfo().fromBinary(bytes, options); @@ -44472,7 +39206,7 @@ var ChatModelMetadata = class _ChatModelMetadata extends Message { /** * @generated from field: string system_prompt = 1; */ - systemPrompt = ''; + systemPrompt = ""; /** * @generated from field: repeated exa.chat_pb.ChatMessagePrompt message_prompts = 2; */ @@ -44558,95 +39292,55 @@ var ChatModelMetadata = class _ChatModelMetadata extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.ChatModelMetadata'; + static typeName = "exa.cortex_pb.ChatModelMetadata"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'system_prompt', - kind: 'scalar', - T: 9, + name: "system_prompt", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { - no: 2, - name: 'message_prompts', - kind: 'message', - T: ChatMessagePrompt, - repeated: true, - }, - { - no: 10, - name: 'message_metadata', - kind: 'message', - T: MessagePromptMetadata, - repeated: true, - }, - { no: 3, name: 'model', kind: 'enum', T: proto3.getEnumType(Model) }, - { no: 4, name: 'usage', kind: 'message', T: ModelUsageStats }, + { no: 2, name: "message_prompts", kind: "message", T: ChatMessagePrompt, repeated: true }, + { no: 10, name: "message_metadata", kind: "message", T: MessagePromptMetadata, repeated: true }, + { no: 3, name: "model", kind: "enum", T: proto3.getEnumType(Model) }, + { no: 4, name: "usage", kind: "message", T: ModelUsageStats }, { no: 5, - name: 'model_cost', - kind: 'scalar', - T: 2, + name: "model_cost", + kind: "scalar", + T: 2 /* ScalarType.FLOAT */ }, { no: 6, - name: 'last_cache_index', - kind: 'scalar', - T: 13, + name: "last_cache_index", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, - { no: 7, name: 'tool_choice', kind: 'message', T: ChatToolChoice }, - { - no: 8, - name: 'tools', - kind: 'message', - T: ChatToolDefinition, - repeated: true, - }, - { - no: 9, - name: 'chat_start_metadata', - kind: 'message', - T: ChatStartMetadata, - }, - { no: 11, name: 'time_to_first_token', kind: 'message', T: Duration }, - { no: 12, name: 'streaming_duration', kind: 'message', T: Duration }, + { no: 7, name: "tool_choice", kind: "message", T: ChatToolChoice }, + { no: 8, name: "tools", kind: "message", T: ChatToolDefinition, repeated: true }, + { no: 9, name: "chat_start_metadata", kind: "message", T: ChatStartMetadata }, + { no: 11, name: "time_to_first_token", kind: "message", T: Duration }, + { no: 12, name: "streaming_duration", kind: "message", T: Duration }, { no: 13, - name: 'credit_cost', - kind: 'scalar', - T: 5, + name: "credit_cost", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, { no: 14, - name: 'retries', - kind: 'scalar', - T: 13, + name: "retries", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, - { - no: 15, - name: 'completion_config', - kind: 'message', - T: CompletionConfiguration, - }, - { - no: 16, - name: 'prompt_sections', - kind: 'message', - T: PromptSection, - repeated: true, - }, - { - no: 17, - name: 'retry_infos', - kind: 'message', - T: RetryInfo, - repeated: true, - }, + { no: 15, name: "completion_config", kind: "message", T: CompletionConfiguration }, + { no: 16, name: "prompt_sections", kind: "message", T: PromptSection, repeated: true }, + { no: 17, name: "retry_infos", kind: "message", T: RetryInfo, repeated: true } ]); static fromBinary(bytes, options) { return new _ChatModelMetadata().fromBinary(bytes, options); @@ -44682,21 +39376,16 @@ var ContextWindowMetadata = class _ContextWindowMetadata extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.ContextWindowMetadata'; + static typeName = "exa.cortex_pb.ContextWindowMetadata"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'estimated_tokens_used', - kind: 'scalar', - T: 5, + name: "estimated_tokens_used", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, - { - no: 2, - name: 'truncation_reason', - kind: 'enum', - T: proto3.getEnumType(TruncationReason), - }, + { no: 2, name: "truncation_reason", kind: "enum", T: proto3.getEnumType(TruncationReason) } ]); static fromBinary(bytes, options) { return new _ContextWindowMetadata().fromBinary(bytes, options); @@ -44726,29 +39415,29 @@ var CacheBreakpointMetadata = class _CacheBreakpointMetadata extends Message { * * @generated from field: string content_checksum = 3; */ - contentChecksum = ''; + contentChecksum = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CacheBreakpointMetadata'; + static typeName = "exa.cortex_pb.CacheBreakpointMetadata"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'index', - kind: 'scalar', - T: 13, + name: "index", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, - { no: 2, name: 'options', kind: 'message', T: PromptCacheOptions }, + { no: 2, name: "options", kind: "message", T: PromptCacheOptions }, { no: 3, - name: 'content_checksum', - kind: 'scalar', - T: 9, + name: "content_checksum", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _CacheBreakpointMetadata().fromBinary(bytes, options); @@ -44836,58 +39525,36 @@ var ChatStartMetadata = class _ChatStartMetadata extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.ChatStartMetadata'; + static typeName = "exa.cortex_pb.ChatStartMetadata"; static fields = proto3.util.newFieldList(() => [ - { no: 4, name: 'created_at', kind: 'message', T: Timestamp }, + { no: 4, name: "created_at", kind: "message", T: Timestamp }, { no: 1, - name: 'start_step_index', - kind: 'scalar', - T: 13, + name: "start_step_index", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, { no: 2, - name: 'checkpoint_index', - kind: 'scalar', - T: 5, + name: "checkpoint_index", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, - { - no: 3, - name: 'steps_covered_by_checkpoint', - kind: 'scalar', - T: 13, - repeated: true, - }, + { no: 3, name: "steps_covered_by_checkpoint", kind: "scalar", T: 13, repeated: true }, { no: 5, - name: 'latest_stable_message_index', - kind: 'scalar', - T: 5, + name: "latest_stable_message_index", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, - { - no: 6, - name: 'cache_breakpoints', - kind: 'message', - T: CacheBreakpointMetadata, - repeated: true, - }, - { - no: 7, - name: 'system_prompt_cache', - kind: 'message', - T: CacheBreakpointMetadata, - }, - { no: 8, name: 'time_since_last_invocation', kind: 'message', T: Duration }, - { no: 9, name: 'cache_request', kind: 'message', T: CacheRequestOptions }, - { - no: 10, - name: 'context_window_metadata', - kind: 'message', - T: ContextWindowMetadata, - }, + { no: 6, name: "cache_breakpoints", kind: "message", T: CacheBreakpointMetadata, repeated: true }, + { no: 7, name: "system_prompt_cache", kind: "message", T: CacheBreakpointMetadata }, + { no: 8, name: "time_since_last_invocation", kind: "message", T: Duration }, + { no: 9, name: "cache_request", kind: "message", T: CacheRequestOptions }, + { no: 10, name: "context_window_metadata", kind: "message", T: ContextWindowMetadata } ]); static fromBinary(bytes, options) { return new _ChatStartMetadata().fromBinary(bytes, options); @@ -44924,22 +39591,16 @@ var CacheRequestOptions = class _CacheRequestOptions extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CacheRequestOptions'; + static typeName = "exa.cortex_pb.CacheRequestOptions"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'enabled', - kind: 'scalar', - T: 8, + name: "enabled", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, - { - no: 2, - name: 'cache_breakpoint_indices', - kind: 'scalar', - T: 13, - repeated: true, - }, + { no: 2, name: "cache_breakpoint_indices", kind: "scalar", T: 13, repeated: true } ]); static fromBinary(bytes, options) { return new _CacheRequestOptions().fromBinary(bytes, options); @@ -44960,11 +39621,11 @@ var SnapshotMetadata = class _SnapshotMetadata extends Message { * * @generated from field: string user = 1; */ - user = ''; + user = ""; /** * @generated from field: string workspace_id = 2; */ - workspaceId = ''; + workspaceId = ""; /** * @generated from field: uint32 snapshot_version = 3; */ @@ -44978,35 +39639,30 @@ var SnapshotMetadata = class _SnapshotMetadata extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.SnapshotMetadata'; + static typeName = "exa.cortex_pb.SnapshotMetadata"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'user', - kind: 'scalar', - T: 9, + name: "user", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'workspace_id', - kind: 'scalar', - T: 9, + name: "workspace_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 3, - name: 'snapshot_version', - kind: 'scalar', - T: 13, + name: "snapshot_version", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, - { - no: 4, - name: 'workspace_type', - kind: 'enum', - T: proto3.getEnumType(WorkspaceType), - }, + { no: 4, name: "workspace_type", kind: "enum", T: proto3.getEnumType(WorkspaceType) } ]); static fromBinary(bytes, options) { return new _SnapshotMetadata().fromBinary(bytes, options); @@ -45035,15 +39691,10 @@ var StatusTransition = class _StatusTransition extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.StatusTransition'; + static typeName = "exa.cortex_pb.StatusTransition"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'updated_status', - kind: 'enum', - T: proto3.getEnumType(CortexStepStatus), - }, - { no: 2, name: 'timestamp', kind: 'message', T: Timestamp }, + { no: 1, name: "updated_status", kind: "enum", T: proto3.getEnumType(CortexStepStatus) }, + { no: 2, name: "timestamp", kind: "message", T: Timestamp } ]); static fromBinary(bytes, options) { return new _StatusTransition().fromBinary(bytes, options); @@ -45068,15 +39719,9 @@ var CortexStepInternalMetadata = class _CortexStepInternalMetadata extends Messa proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexStepInternalMetadata'; + static typeName = "exa.cortex_pb.CortexStepInternalMetadata"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'status_transitions', - kind: 'message', - T: StatusTransition, - repeated: true, - }, + { no: 1, name: "status_transitions", kind: "message", T: StatusTransition, repeated: true } ]); static fromBinary(bytes, options) { return new _CortexStepInternalMetadata().fromBinary(bytes, options); @@ -45085,10 +39730,7 @@ var CortexStepInternalMetadata = class _CortexStepInternalMetadata extends Messa return new _CortexStepInternalMetadata().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _CortexStepInternalMetadata().fromJsonString( - jsonString, - options, - ); + return new _CortexStepInternalMetadata().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_CortexStepInternalMetadata, a, b); @@ -45201,7 +39843,7 @@ var CortexStepMetadata = class _CortexStepMetadata extends Message { * * @generated from field: string execution_id = 12; */ - executionId = ''; + executionId = ""; /** * The realized flow credit cost of the step, factoring step type and status * and more. The value is 100x of a user-interpreted credit, i.e a standard @@ -45237,7 +39879,7 @@ var CortexStepMetadata = class _CortexStepMetadata extends Message { /** * @generated from field: string tool_call_choice_reason = 17; */ - toolCallChoiceReason = ''; + toolCallChoiceReason = ""; /** * Request source that led to this step * @@ -45292,126 +39934,83 @@ var CortexStepMetadata = class _CortexStepMetadata extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexStepMetadata'; + static typeName = "exa.cortex_pb.CortexStepMetadata"; static fields = proto3.util.newFieldList(() => [ { no: 21, - name: 'step_generation_version', - kind: 'scalar', - T: 13, + name: "step_generation_version", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, - { no: 1, name: 'created_at', kind: 'message', T: Timestamp }, - { no: 6, name: 'viewable_at', kind: 'message', T: Timestamp }, - { no: 7, name: 'finished_generating_at', kind: 'message', T: Timestamp }, - { no: 22, name: 'last_completed_chunk_at', kind: 'message', T: Timestamp }, - { no: 8, name: 'completed_at', kind: 'message', T: Timestamp }, - { - no: 3, - name: 'source', - kind: 'enum', - T: proto3.getEnumType(CortexStepSource), - }, - { no: 4, name: 'tool_call', kind: 'message', T: ChatToolCall }, - { no: 5, name: 'arguments_order', kind: 'scalar', T: 9, repeated: true }, - { no: 9, name: 'model_usage', kind: 'message', T: ModelUsageStats }, - { - no: 28, - name: 'retry_infos', - kind: 'message', - T: RetryInfo, - repeated: true, - }, + { no: 1, name: "created_at", kind: "message", T: Timestamp }, + { no: 6, name: "viewable_at", kind: "message", T: Timestamp }, + { no: 7, name: "finished_generating_at", kind: "message", T: Timestamp }, + { no: 22, name: "last_completed_chunk_at", kind: "message", T: Timestamp }, + { no: 8, name: "completed_at", kind: "message", T: Timestamp }, + { no: 3, name: "source", kind: "enum", T: proto3.getEnumType(CortexStepSource) }, + { no: 4, name: "tool_call", kind: "message", T: ChatToolCall }, + { no: 5, name: "arguments_order", kind: "scalar", T: 9, repeated: true }, + { no: 9, name: "model_usage", kind: "message", T: ModelUsageStats }, + { no: 28, name: "retry_infos", kind: "message", T: RetryInfo, repeated: true }, { no: 10, - name: 'model_cost', - kind: 'scalar', - T: 2, + name: "model_cost", + kind: "scalar", + T: 2 /* ScalarType.FLOAT */ }, - { - no: 11, - name: 'generator_model', - kind: 'enum', - T: proto3.getEnumType(Model), - }, - { no: 13, name: 'requested_model', kind: 'message', T: ModelOrAlias }, - { no: 24, name: 'model_info', kind: 'message', T: ModelInfo }, + { no: 11, name: "generator_model", kind: "enum", T: proto3.getEnumType(Model) }, + { no: 13, name: "requested_model", kind: "message", T: ModelOrAlias }, + { no: 24, name: "model_info", kind: "message", T: ModelInfo }, { no: 12, - name: 'execution_id', - kind: 'scalar', - T: 9, + name: "execution_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 14, - name: 'flow_credits_used', - kind: 'scalar', - T: 5, + name: "flow_credits_used", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, { no: 15, - name: 'prompt_credits_used', - kind: 'scalar', - T: 5, + name: "prompt_credits_used", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, - { - no: 18, - name: 'non_standard_credit_reasons', - kind: 'enum', - T: proto3.getEnumType(CortexStepCreditReason), - repeated: true, - }, - { - no: 16, - name: 'tool_call_choices', - kind: 'message', - T: ChatToolCall, - repeated: true, - }, + { no: 18, name: "non_standard_credit_reasons", kind: "enum", T: proto3.getEnumType(CortexStepCreditReason), repeated: true }, + { no: 16, name: "tool_call_choices", kind: "message", T: ChatToolCall, repeated: true }, { no: 17, - name: 'tool_call_choice_reason', - kind: 'scalar', - T: 9, + name: "tool_call_choice_reason", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { - no: 19, - name: 'cortex_request_source', - kind: 'enum', - T: proto3.getEnumType(CortexRequestSource), - }, + { no: 19, name: "cortex_request_source", kind: "enum", T: proto3.getEnumType(CortexRequestSource) }, { no: 23, - name: 'tool_call_output_tokens', - kind: 'scalar', - T: 5, + name: "tool_call_output_tokens", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, - { - no: 20, - name: 'source_trajectory_step_info', - kind: 'message', - T: SourceTrajectoryStepInfo, - }, - { no: 25, name: 'snapshot_metadata', kind: 'message', T: SnapshotMetadata }, - { - no: 26, - name: 'internal_metadata', - kind: 'message', - T: CortexStepInternalMetadata, - }, + { no: 20, name: "source_trajectory_step_info", kind: "message", T: SourceTrajectoryStepInfo }, + { no: 25, name: "snapshot_metadata", kind: "message", T: SnapshotMetadata }, + { no: 26, name: "internal_metadata", kind: "message", T: CortexStepInternalMetadata }, { no: 27, - name: 'wait_for_previous_tools', - kind: 'scalar', - T: 8, + name: "wait_for_previous_tools", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ - }, + } ]); static fromBinary(bytes, options) { return new _CortexStepMetadata().fromBinary(bytes, options); @@ -45430,7 +40029,7 @@ var FileAccessPermission = class _FileAccessPermission extends Message { /** * @generated from field: string path = 1; */ - path = ''; + path = ""; /** * @generated from field: bool is_directory = 2; */ @@ -45454,42 +40053,37 @@ var FileAccessPermission = class _FileAccessPermission extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.FileAccessPermission'; + static typeName = "exa.cortex_pb.FileAccessPermission"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'path', - kind: 'scalar', - T: 9, + name: "path", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'is_directory', - kind: 'scalar', - T: 8, + name: "is_directory", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 3, - name: 'allow', - kind: 'scalar', - T: 8, + name: "allow", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, - { - no: 4, - name: 'scope', - kind: 'enum', - T: proto3.getEnumType(PermissionScope), - }, + { no: 4, name: "scope", kind: "enum", T: proto3.getEnumType(PermissionScope) }, { no: 5, - name: 'from_current_step', - kind: 'scalar', - T: 8, + name: "from_current_step", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ - }, + } ]); static fromBinary(bytes, options) { return new _FileAccessPermission().fromBinary(bytes, options); @@ -45518,15 +40112,9 @@ var TrajectoryPermissions = class _TrajectoryPermissions extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.TrajectoryPermissions'; + static typeName = "exa.cortex_pb.TrajectoryPermissions"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'file_access_permissions', - kind: 'message', - T: FileAccessPermission, - repeated: true, - }, + { no: 1, name: "file_access_permissions", kind: "message", T: FileAccessPermission, repeated: true } ]); static fromBinary(bytes, options) { return new _TrajectoryPermissions().fromBinary(bytes, options); @@ -45547,7 +40135,7 @@ var SourceTrajectoryStepInfo = class _SourceTrajectoryStepInfo extends Message { * * @generated from field: string trajectory_id = 1; */ - trajectoryId = ''; + trajectoryId = ""; /** * Step index in source trajectory * @@ -45565,42 +40153,42 @@ var SourceTrajectoryStepInfo = class _SourceTrajectoryStepInfo extends Message { * * @generated from field: string cascade_id = 4; */ - cascadeId = ''; + cascadeId = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.SourceTrajectoryStepInfo'; + static typeName = "exa.cortex_pb.SourceTrajectoryStepInfo"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'trajectory_id', - kind: 'scalar', - T: 9, + name: "trajectory_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'step_index', - kind: 'scalar', - T: 13, + name: "step_index", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, { no: 3, - name: 'metadata_index', - kind: 'scalar', - T: 13, + name: "metadata_index", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, { no: 4, - name: 'cascade_id', - kind: 'scalar', - T: 9, + name: "cascade_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _SourceTrajectoryStepInfo().fromBinary(bytes, options); @@ -45625,13 +40213,13 @@ var StructuredErrorPart = class _StructuredErrorPart extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.StructuredErrorPart'; + static typeName = "exa.cortex_pb.StructuredErrorPart"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'text', kind: 'scalar', T: 9, oneof: 'part' }, - { no: 2, name: 'file_uri', kind: 'scalar', T: 9, oneof: 'part' }, - { no: 3, name: 'directory_uri', kind: 'scalar', T: 9, oneof: 'part' }, - { no: 4, name: 'url', kind: 'scalar', T: 9, oneof: 'part' }, - { no: 5, name: 'code_text', kind: 'scalar', T: 9, oneof: 'part' }, + { no: 1, name: "text", kind: "scalar", T: 9, oneof: "part" }, + { no: 2, name: "file_uri", kind: "scalar", T: 9, oneof: "part" }, + { no: 3, name: "directory_uri", kind: "scalar", T: 9, oneof: "part" }, + { no: 4, name: "url", kind: "scalar", T: 9, oneof: "part" }, + { no: 5, name: "code_text", kind: "scalar", T: 9, oneof: "part" } ]); static fromBinary(bytes, options) { return new _StructuredErrorPart().fromBinary(bytes, options); @@ -45653,14 +40241,14 @@ var CortexErrorDetails = class _CortexErrorDetails extends Message { * * @generated from field: string user_error_message = 1; */ - userErrorMessage = ''; + userErrorMessage = ""; /** * Error message which will be shown to the model. If this is empty, then * the short_error will be shown to the model. * * @generated from field: string model_error_message = 9; */ - modelErrorMessage = ''; + modelErrorMessage = ""; /** * Structured error parts for user rendering. * @@ -45672,13 +40260,13 @@ var CortexErrorDetails = class _CortexErrorDetails extends Message { * * @generated from field: string short_error = 2; */ - shortError = ''; + shortError = ""; /** * Corresponds to the "%+v" format specifier on an error. * * @generated from field: string full_error = 3; */ - fullError = ''; + fullError = ""; /** * True if the error is benign and should not be presented as an "error" to * the user. @@ -45697,13 +40285,13 @@ var CortexErrorDetails = class _CortexErrorDetails extends Message { * * @generated from field: string details = 5; */ - details = ''; + details = ""; /** * Stores the Sentry event ID. * * @generated from field: string error_id = 6; */ - errorId = ''; + errorId = ""; /** * Structured error details from the API response (e.g., DebugInfo, * RetryInfo). Each string is the JSON-serialized form of a detail from @@ -45717,72 +40305,66 @@ var CortexErrorDetails = class _CortexErrorDetails extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexErrorDetails'; + static typeName = "exa.cortex_pb.CortexErrorDetails"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'user_error_message', - kind: 'scalar', - T: 9, + name: "user_error_message", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 9, - name: 'model_error_message', - kind: 'scalar', - T: 9, + name: "model_error_message", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { - no: 8, - name: 'structured_error_parts', - kind: 'message', - T: StructuredErrorPart, - repeated: true, - }, + { no: 8, name: "structured_error_parts", kind: "message", T: StructuredErrorPart, repeated: true }, { no: 2, - name: 'short_error', - kind: 'scalar', - T: 9, + name: "short_error", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 3, - name: 'full_error', - kind: 'scalar', - T: 9, + name: "full_error", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 4, - name: 'is_benign', - kind: 'scalar', - T: 8, + name: "is_benign", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 7, - name: 'error_code', - kind: 'scalar', - T: 13, + name: "error_code", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, { no: 5, - name: 'details', - kind: 'scalar', - T: 9, + name: "details", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 6, - name: 'error_id', - kind: 'scalar', - T: 9, + name: "error_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 10, name: 'rpc_error_details', kind: 'scalar', T: 9, repeated: true }, + { no: 10, name: "rpc_error_details", kind: "scalar", T: 9, repeated: true } ]); static fromBinary(bytes, options) { return new _CortexErrorDetails().fromBinary(bytes, options); @@ -45801,21 +40383,21 @@ var UserStepSnapshot = class _UserStepSnapshot extends Message { /** * @generated from field: string name = 1; */ - name = ''; + name = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.UserStepSnapshot'; + static typeName = "exa.cortex_pb.UserStepSnapshot"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'name', - kind: 'scalar', - T: 9, + name: "name", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _UserStepSnapshot().fromBinary(bytes, options); @@ -45840,9 +40422,9 @@ var UserStepAnnotations = class _UserStepAnnotations extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.UserStepAnnotations'; + static typeName = "exa.cortex_pb.UserStepAnnotations"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'snapshot', kind: 'message', T: UserStepSnapshot }, + { no: 1, name: "snapshot", kind: "message", T: UserStepSnapshot } ]); static fromBinary(bytes, options) { return new _UserStepAnnotations().fromBinary(bytes, options); @@ -45861,43 +40443,43 @@ var TrajectoryScope = class _TrajectoryScope extends Message { /** * @generated from field: string workspace_uri = 1; */ - workspaceUri = ''; + workspaceUri = ""; /** * @generated from field: string git_root_uri = 2; */ - gitRootUri = ''; + gitRootUri = ""; /** * @generated from field: string branch_name = 3; */ - branchName = ''; + branchName = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.TrajectoryScope'; + static typeName = "exa.cortex_pb.TrajectoryScope"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'workspace_uri', - kind: 'scalar', - T: 9, + name: "workspace_uri", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'git_root_uri', - kind: 'scalar', - T: 9, + name: "git_root_uri", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 3, - name: 'branch_name', - kind: 'scalar', - T: 9, + name: "branch_name", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _TrajectoryScope().fromBinary(bytes, options); @@ -45990,55 +40572,37 @@ var CascadeExecutorConfig = class _CascadeExecutorConfig extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CascadeExecutorConfig'; + static typeName = "exa.cortex_pb.CascadeExecutorConfig"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'disable_async', kind: 'scalar', T: 8, opt: true }, + { no: 1, name: "disable_async", kind: "scalar", T: 8, opt: true }, { no: 2, - name: 'max_generator_invocations', - kind: 'scalar', - T: 5, + name: "max_generator_invocations", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, - { - no: 3, - name: 'terminal_step_types', - kind: 'enum', - T: proto3.getEnumType(CortexStepType), - repeated: true, - }, - { - no: 5, - name: 'hold_for_valid_checkpoint', - kind: 'scalar', - T: 8, - opt: true, - }, + { no: 3, name: "terminal_step_types", kind: "enum", T: proto3.getEnumType(CortexStepType), repeated: true }, + { no: 5, name: "hold_for_valid_checkpoint", kind: "scalar", T: 8, opt: true }, { no: 6, - name: 'hold_for_valid_checkpoint_timeout', - kind: 'scalar', - T: 5, + name: "hold_for_valid_checkpoint_timeout", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, { no: 7, - name: 'research_only', - kind: 'scalar', - T: 8, + name: "research_only", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, - { - no: 8, - name: 'use_aggressive_snapshotting', - kind: 'scalar', - T: 8, - opt: true, - }, - { no: 9, name: 'require_finish_tool', kind: 'scalar', T: 8, opt: true }, - { no: 10, name: 'max_forced_invocations', kind: 'scalar', T: 5, opt: true }, - { no: 11, name: 'queue_all_steps', kind: 'scalar', T: 8, opt: true }, - { no: 12, name: 'store_gen_svc_request', kind: 'scalar', T: 8, opt: true }, + { no: 8, name: "use_aggressive_snapshotting", kind: "scalar", T: 8, opt: true }, + { no: 9, name: "require_finish_tool", kind: "scalar", T: 8, opt: true }, + { no: 10, name: "max_forced_invocations", kind: "scalar", T: 5, opt: true }, + { no: 11, name: "queue_all_steps", kind: "scalar", T: 8, opt: true }, + { no: 12, name: "store_gen_svc_request", kind: "scalar", T: 8, opt: true } ]); static fromBinary(bytes, options) { return new _CascadeExecutorConfig().fromBinary(bytes, options); @@ -46066,9 +40630,9 @@ var ForcedBrainUpdateConfig = class _ForcedBrainUpdateConfig extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.ForcedBrainUpdateConfig'; + static typeName = "exa.cortex_pb.ForcedBrainUpdateConfig"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'update_sample_rate', kind: 'scalar', T: 2, opt: true }, + { no: 1, name: "update_sample_rate", kind: "scalar", T: 2, opt: true } ]); static fromBinary(bytes, options) { return new _ForcedBrainUpdateConfig().fromBinary(bytes, options); @@ -46096,15 +40660,15 @@ var DynamicBrainUpdateConfig = class _DynamicBrainUpdateConfig extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.DynamicBrainUpdateConfig'; + static typeName = "exa.cortex_pb.DynamicBrainUpdateConfig"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'use_aggressive_prompt', - kind: 'scalar', - T: 8, + name: "use_aggressive_prompt", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ - }, + } ]); static fromBinary(bytes, options) { return new _DynamicBrainUpdateConfig().fromBinary(bytes, options); @@ -46129,36 +40693,12 @@ var BrainUpdateStrategy = class _BrainUpdateStrategy extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.BrainUpdateStrategy'; + static typeName = "exa.cortex_pb.BrainUpdateStrategy"; static fields = proto3.util.newFieldList(() => [ - { - no: 2, - name: 'executor_forced', - kind: 'message', - T: Empty, - oneof: 'strategy', - }, - { - no: 3, - name: 'invocation_forced', - kind: 'message', - T: ForcedBrainUpdateConfig, - oneof: 'strategy', - }, - { - no: 6, - name: 'dynamic_update', - kind: 'message', - T: DynamicBrainUpdateConfig, - oneof: 'strategy', - }, - { - no: 5, - name: 'executor_forced_and_with_discretion', - kind: 'message', - T: Empty, - oneof: 'strategy', - }, + { no: 2, name: "executor_forced", kind: "message", T: Empty, oneof: "strategy" }, + { no: 3, name: "invocation_forced", kind: "message", T: ForcedBrainUpdateConfig, oneof: "strategy" }, + { no: 6, name: "dynamic_update", kind: "message", T: DynamicBrainUpdateConfig, oneof: "strategy" }, + { no: 5, name: "executor_forced_and_with_discretion", kind: "message", T: Empty, oneof: "strategy" } ]); static fromBinary(bytes, options) { return new _BrainUpdateStrategy().fromBinary(bytes, options); @@ -46209,31 +40749,25 @@ var LogArtifactsConfig = class _LogArtifactsConfig extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.LogArtifactsConfig'; + static typeName = "exa.cortex_pb.LogArtifactsConfig"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'enabled', kind: 'scalar', T: 8, opt: true }, - { no: 2, name: 'hide_nominal_tool_steps', kind: 'scalar', T: 8, opt: true }, - { - no: 3, - name: 'hide_planner_response_text', - kind: 'scalar', - T: 8, - opt: true, - }, + { no: 1, name: "enabled", kind: "scalar", T: 8, opt: true }, + { no: 2, name: "hide_nominal_tool_steps", kind: "scalar", T: 8, opt: true }, + { no: 3, name: "hide_planner_response_text", kind: "scalar", T: 8, opt: true }, { no: 4, - name: 'max_bytes_per_step', - kind: 'scalar', - T: 5, + name: "max_bytes_per_step", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, { no: 5, - name: 'max_bytes_per_tool_arg', - kind: 'scalar', - T: 5, + name: "max_bytes_per_tool_arg", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ - }, + } ]); static fromBinary(bytes, options) { return new _LogArtifactsConfig().fromBinary(bytes, options); @@ -46287,42 +40821,15 @@ var CascadeConfig = class _CascadeConfig extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CascadeConfig'; + static typeName = "exa.cortex_pb.CascadeConfig"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'planner_config', kind: 'message', T: CascadePlannerConfig }, - { no: 2, name: 'checkpoint_config', kind: 'message', T: CheckpointConfig }, - { - no: 3, - name: 'executor_config', - kind: 'message', - T: CascadeExecutorConfig, - }, - { - no: 4, - name: 'trajectory_conversion_config', - kind: 'message', - T: TrajectoryConversionConfig, - }, - { - no: 6, - name: 'apply_model_default_override', - kind: 'scalar', - T: 8, - opt: true, - }, - { - no: 7, - name: 'conversation_history_config', - kind: 'message', - T: ConversationHistoryConfig, - }, - { - no: 8, - name: 'split_dynamic_prompt_sections', - kind: 'scalar', - T: 8, - opt: true, - }, + { no: 1, name: "planner_config", kind: "message", T: CascadePlannerConfig }, + { no: 2, name: "checkpoint_config", kind: "message", T: CheckpointConfig }, + { no: 3, name: "executor_config", kind: "message", T: CascadeExecutorConfig }, + { no: 4, name: "trajectory_conversion_config", kind: "message", T: TrajectoryConversionConfig }, + { no: 6, name: "apply_model_default_override", kind: "scalar", T: 8, opt: true }, + { no: 7, name: "conversation_history_config", kind: "message", T: ConversationHistoryConfig }, + { no: 8, name: "split_dynamic_prompt_sections", kind: "scalar", T: 8, opt: true } ]); static fromBinary(bytes, options) { return new _CascadeConfig().fromBinary(bytes, options); @@ -46386,31 +40893,14 @@ var TrajectoryConversionConfig = class _TrajectoryConversionConfig extends Messa proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.TrajectoryConversionConfig'; + static typeName = "exa.cortex_pb.TrajectoryConversionConfig"; static fields = proto3.util.newFieldList(() => [ - { - no: 3, - name: 'group_tools_with_planner_response', - kind: 'scalar', - T: 8, - opt: true, - }, - { no: 5, name: 'wrap_tool_responses', kind: 'scalar', T: 8, opt: true }, - { - no: 6, - name: 'log_artifacts_config', - kind: 'message', - T: LogArtifactsConfig, - }, - { - no: 7, - name: 'append_ephemeral_to_previous_tool_result', - kind: 'scalar', - T: 8, - opt: true, - }, - { no: 8, name: 'disable_step_id', kind: 'scalar', T: 8, opt: true }, - { no: 9, name: 'use_raw_user_message', kind: 'scalar', T: 8, opt: true }, + { no: 3, name: "group_tools_with_planner_response", kind: "scalar", T: 8, opt: true }, + { no: 5, name: "wrap_tool_responses", kind: "scalar", T: 8, opt: true }, + { no: 6, name: "log_artifacts_config", kind: "message", T: LogArtifactsConfig }, + { no: 7, name: "append_ephemeral_to_previous_tool_result", kind: "scalar", T: 8, opt: true }, + { no: 8, name: "disable_step_id", kind: "scalar", T: 8, opt: true }, + { no: 9, name: "use_raw_user_message", kind: "scalar", T: 8, opt: true } ]); static fromBinary(bytes, options) { return new _TrajectoryConversionConfig().fromBinary(bytes, options); @@ -46419,10 +40909,7 @@ var TrajectoryConversionConfig = class _TrajectoryConversionConfig extends Messa return new _TrajectoryConversionConfig().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _TrajectoryConversionConfig().fromJsonString( - jsonString, - options, - ); + return new _TrajectoryConversionConfig().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_TrajectoryConversionConfig, a, b); @@ -46469,51 +40956,23 @@ var CascadeConversationalPlannerConfig = class _CascadeConversationalPlannerConf proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CascadeConversationalPlannerConfig'; + static typeName = "exa.cortex_pb.CascadeConversationalPlannerConfig"; static fields = proto3.util.newFieldList(() => [ - { - no: 4, - name: 'planner_mode', - kind: 'enum', - T: proto3.getEnumType(ConversationalPlannerMode), - }, - { no: 5, name: 'eval_mode', kind: 'scalar', T: 8, opt: true }, - { no: 14, name: 'agentic_mode', kind: 'scalar', T: 8, opt: true }, - { - no: 15, - name: 'prompt_combination_name', - kind: 'scalar', - T: 9, - opt: true, - }, - { - no: 16, - name: 'conversation_history_config', - kind: 'message', - T: ConversationHistoryConfig, - }, - { - no: 17, - name: 'override_workspace_dir_experimental_use_only', - kind: 'scalar', - T: 9, - opt: true, - }, + { no: 4, name: "planner_mode", kind: "enum", T: proto3.getEnumType(ConversationalPlannerMode) }, + { no: 5, name: "eval_mode", kind: "scalar", T: 8, opt: true }, + { no: 14, name: "agentic_mode", kind: "scalar", T: 8, opt: true }, + { no: 15, name: "prompt_combination_name", kind: "scalar", T: 9, opt: true }, + { no: 16, name: "conversation_history_config", kind: "message", T: ConversationHistoryConfig }, + { no: 17, name: "override_workspace_dir_experimental_use_only", kind: "scalar", T: 9, opt: true } ]); static fromBinary(bytes, options) { return new _CascadeConversationalPlannerConfig().fromBinary(bytes, options); } static fromJson(jsonValue, options) { - return new _CascadeConversationalPlannerConfig().fromJson( - jsonValue, - options, - ); + return new _CascadeConversationalPlannerConfig().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _CascadeConversationalPlannerConfig().fromJsonString( - jsonString, - options, - ); + return new _CascadeConversationalPlannerConfig().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_CascadeConversationalPlannerConfig, a, b); @@ -46533,16 +40992,10 @@ var SectionOverrideConfig = class _SectionOverrideConfig extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.SectionOverrideConfig'; + static typeName = "exa.cortex_pb.SectionOverrideConfig"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'mode', - kind: 'enum', - T: proto3.getEnumType(SectionOverrideMode), - opt: true, - }, - { no: 2, name: 'content', kind: 'scalar', T: 9, opt: true }, + { no: 1, name: "mode", kind: "enum", T: proto3.getEnumType(SectionOverrideMode), opt: true }, + { no: 2, name: "content", kind: "scalar", T: 9, opt: true } ]); static fromBinary(bytes, options) { return new _SectionOverrideConfig().fromBinary(bytes, options); @@ -46610,52 +41063,30 @@ var MqueryToolConfig = class _MqueryToolConfig extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.MqueryToolConfig'; + static typeName = "exa.cortex_pb.MqueryToolConfig"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'm_query_config', kind: 'message', T: MQueryConfig }, - { - no: 2, - name: 'm_query_model', - kind: 'enum', - T: proto3.getEnumType(Model), - }, + { no: 1, name: "m_query_config", kind: "message", T: MQueryConfig }, + { no: 2, name: "m_query_model", kind: "enum", T: proto3.getEnumType(Model) }, { no: 3, - name: 'max_tokens_per_m_query', - kind: 'scalar', - T: 13, + name: "max_tokens_per_m_query", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, - { no: 4, name: 'num_items_full_source', kind: 'scalar', T: 5, opt: true }, + { no: 4, name: "num_items_full_source", kind: "scalar", T: 5, opt: true }, { no: 5, - name: 'max_lines_per_snippet', - kind: 'scalar', - T: 5, + name: "max_lines_per_snippet", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, - { - no: 6, - name: 'enable_search_in_file_tool', - kind: 'scalar', - T: 8, - opt: true, - }, - { no: 7, name: 'allow_access_gitignore', kind: 'scalar', T: 8, opt: true }, - { - no: 8, - name: 'disable_semantic_codebase_search', - kind: 'scalar', - T: 8, - opt: true, - }, - { no: 9, name: 'force_disable', kind: 'scalar', T: 8, opt: true }, - { - no: 10, - name: 'enterprise_config', - kind: 'message', - T: EnterpriseToolConfig, - }, + { no: 6, name: "enable_search_in_file_tool", kind: "scalar", T: 8, opt: true }, + { no: 7, name: "allow_access_gitignore", kind: "scalar", T: 8, opt: true }, + { no: 8, name: "disable_semantic_codebase_search", kind: "scalar", T: 8, opt: true }, + { no: 9, name: "force_disable", kind: "scalar", T: 8, opt: true }, + { no: 10, name: "enterprise_config", kind: "message", T: EnterpriseToolConfig } ]); static fromBinary(bytes, options) { return new _MqueryToolConfig().fromBinary(bytes, options); @@ -46683,14 +41114,9 @@ var NotifyUserConfig = class _NotifyUserConfig extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.NotifyUserConfig'; + static typeName = "exa.cortex_pb.NotifyUserConfig"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'artifact_review_mode', - kind: 'enum', - T: proto3.getEnumType(ArtifactReviewMode), - }, + { no: 1, name: "artifact_review_mode", kind: "enum", T: proto3.getEnumType(ArtifactReviewMode) } ]); static fromBinary(bytes, options) { return new _NotifyUserConfig().fromBinary(bytes, options); @@ -46766,45 +41192,34 @@ var GrepToolConfig = class _GrepToolConfig extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.GrepToolConfig'; + static typeName = "exa.cortex_pb.GrepToolConfig"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'max_grep_results', - kind: 'scalar', - T: 13, + name: "max_grep_results", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, - { no: 2, name: 'include_cci_in_result', kind: 'scalar', T: 8, opt: true }, + { no: 2, name: "include_cci_in_result", kind: "scalar", T: 8, opt: true }, { no: 3, - name: 'num_full_source_ccis', - kind: 'scalar', - T: 13, + name: "num_full_source_ccis", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, { no: 4, - name: 'max_bytes_per_cci', - kind: 'scalar', - T: 13, + name: "max_bytes_per_cci", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, - { - no: 5, - name: 'enterprise_config', - kind: 'message', - T: EnterpriseToolConfig, - }, - { no: 6, name: 'allow_access_gitignore', kind: 'scalar', T: 8, opt: true }, - { no: 7, name: 'use_code_search', kind: 'scalar', T: 8, opt: true }, - { - no: 8, - name: 'disable_fallback_to_local_execution', - kind: 'scalar', - T: 8, - opt: true, - }, + { no: 5, name: "enterprise_config", kind: "message", T: EnterpriseToolConfig }, + { no: 6, name: "allow_access_gitignore", kind: "scalar", T: 8, opt: true }, + { no: 7, name: "use_code_search", kind: "scalar", T: 8, opt: true }, + { no: 8, name: "disable_fallback_to_local_execution", kind: "scalar", T: 8, opt: true } ]); static fromBinary(bytes, options) { return new _GrepToolConfig().fromBinary(bytes, options); @@ -46827,7 +41242,7 @@ var FindToolConfig = class _FindToolConfig extends Message { /** * @generated from field: string fd_path = 2; */ - fdPath = ''; + fdPath = ""; /** * whether to use the code_search tool * @@ -46847,30 +41262,24 @@ var FindToolConfig = class _FindToolConfig extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.FindToolConfig'; + static typeName = "exa.cortex_pb.FindToolConfig"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'max_find_results', - kind: 'scalar', - T: 13, + name: "max_find_results", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, { no: 2, - name: 'fd_path', - kind: 'scalar', - T: 9, + name: "fd_path", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 3, name: 'use_code_search', kind: 'scalar', T: 8, opt: true }, - { - no: 4, - name: 'disable_fallback_to_local_execution', - kind: 'scalar', - T: 8, - opt: true, - }, + { no: 3, name: "use_code_search", kind: "scalar", T: 8, opt: true }, + { no: 4, name: "disable_fallback_to_local_execution", kind: "scalar", T: 8, opt: true } ]); static fromBinary(bytes, options) { return new _FindToolConfig().fromBinary(bytes, options); @@ -46889,7 +41298,7 @@ var CodeSearchToolConfig = class _CodeSearchToolConfig extends Message { /** * @generated from field: string cs_path = 1; */ - csPath = ''; + csPath = ""; /** * @generated from field: optional bool use_eval_tag = 2; */ @@ -46899,16 +41308,16 @@ var CodeSearchToolConfig = class _CodeSearchToolConfig extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CodeSearchToolConfig'; + static typeName = "exa.cortex_pb.CodeSearchToolConfig"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'cs_path', - kind: 'scalar', - T: 9, + name: "cs_path", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 2, name: 'use_eval_tag', kind: 'scalar', T: 8, opt: true }, + { no: 2, name: "use_eval_tag", kind: "scalar", T: 8, opt: true } ]); static fromBinary(bytes, options) { return new _CodeSearchToolConfig().fromBinary(bytes, options); @@ -46937,22 +41346,22 @@ var InternalSearchToolConfig = class _InternalSearchToolConfig extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.InternalSearchToolConfig'; + static typeName = "exa.cortex_pb.InternalSearchToolConfig"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'max_results', - kind: 'scalar', - T: 5, + name: "max_results", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, { no: 2, - name: 'max_content_length', - kind: 'scalar', - T: 5, + name: "max_content_length", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ - }, + } ]); static fromBinary(bytes, options) { return new _InternalSearchToolConfig().fromBinary(bytes, options); @@ -46977,15 +41386,15 @@ var ClusterQueryToolConfig = class _ClusterQueryToolConfig extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.ClusterQueryToolConfig'; + static typeName = "exa.cortex_pb.ClusterQueryToolConfig"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'max_cluster_query_results', - kind: 'scalar', - T: 13, + name: "max_cluster_query_results", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ - }, + } ]); static fromBinary(bytes, options) { return new _ClusterQueryToolConfig().fromBinary(bytes, options); @@ -47010,15 +41419,15 @@ var InspectClusterToolConfig = class _InspectClusterToolConfig extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.InspectClusterToolConfig'; + static typeName = "exa.cortex_pb.InspectClusterToolConfig"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'max_tokens_per_inspect_cluster', - kind: 'scalar', - T: 13, + name: "max_tokens_per_inspect_cluster", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ - }, + } ]); static fromBinary(bytes, options) { return new _InspectClusterToolConfig().fromBinary(bytes, options); @@ -47099,20 +41508,15 @@ var AutoCommandConfig = class _AutoCommandConfig extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.AutoCommandConfig'; + static typeName = "exa.cortex_pb.AutoCommandConfig"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'enable_model_auto_run', kind: 'scalar', T: 8, opt: true }, - { no: 2, name: 'user_allowlist', kind: 'scalar', T: 9, repeated: true }, - { no: 3, name: 'user_denylist', kind: 'scalar', T: 9, repeated: true }, - { no: 4, name: 'system_allowlist', kind: 'scalar', T: 9, repeated: true }, - { no: 5, name: 'system_denylist', kind: 'scalar', T: 9, repeated: true }, - { no: 7, name: 'system_nooplist', kind: 'scalar', T: 9, repeated: true }, - { - no: 6, - name: 'auto_execution_policy', - kind: 'enum', - T: proto3.getEnumType(CascadeCommandsAutoExecution), - }, + { no: 1, name: "enable_model_auto_run", kind: "scalar", T: 8, opt: true }, + { no: 2, name: "user_allowlist", kind: "scalar", T: 9, repeated: true }, + { no: 3, name: "user_denylist", kind: "scalar", T: 9, repeated: true }, + { no: 4, name: "system_allowlist", kind: "scalar", T: 9, repeated: true }, + { no: 5, name: "system_denylist", kind: "scalar", T: 9, repeated: true }, + { no: 7, name: "system_nooplist", kind: "scalar", T: 9, repeated: true }, + { no: 6, name: "auto_execution_policy", kind: "enum", T: proto3.getEnumType(CascadeCommandsAutoExecution) } ]); static fromBinary(bytes, options) { return new _AutoCommandConfig().fromBinary(bytes, options); @@ -47139,14 +41543,9 @@ var ListDirToolConfig = class _ListDirToolConfig extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.ListDirToolConfig'; + static typeName = "exa.cortex_pb.ListDirToolConfig"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'enterprise_config', - kind: 'message', - T: EnterpriseToolConfig, - }, + { no: 1, name: "enterprise_config", kind: "message", T: EnterpriseToolConfig } ]); static fromBinary(bytes, options) { return new _ListDirToolConfig().fromBinary(bytes, options); @@ -47186,14 +41585,14 @@ var RunCommandToolConfig = class _RunCommandToolConfig extends Message { * * @generated from field: string shell_name = 5; */ - shellName = ''; + shellName = ""; /** * Path to the shell (e.g. /bin/bash, /usr/bin/env bash, /usr/bin/zsh, * /bin/fish, etc.). Only relevant if enable_ide_terminal_execution is true. * * @generated from field: string shell_path = 6; */ - shellPath = ''; + shellPath = ""; /** * Maximum time in milliseconds to wait for a command to complete. * No timeout enforced if set to 0. @@ -47215,7 +41614,7 @@ var RunCommandToolConfig = class _RunCommandToolConfig extends Message { * * @generated from field: string shell_setup_script = 10; */ - shellSetupScript = ''; + shellSetupScript = ""; /** * If true, forbids usage of grep and find (in favor of search tools). * @@ -47235,71 +41634,49 @@ var RunCommandToolConfig = class _RunCommandToolConfig extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.RunCommandToolConfig'; + static typeName = "exa.cortex_pb.RunCommandToolConfig"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'max_chars_command_stdout', - kind: 'scalar', - T: 13, + name: "max_chars_command_stdout", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, - { no: 2, name: 'force_disable', kind: 'scalar', T: 8, opt: true }, - { - no: 3, - name: 'auto_command_config', - kind: 'message', - T: AutoCommandConfig, - }, - { - no: 4, - name: 'enable_ide_terminal_execution', - kind: 'scalar', - T: 8, - opt: true, - }, + { no: 2, name: "force_disable", kind: "scalar", T: 8, opt: true }, + { no: 3, name: "auto_command_config", kind: "message", T: AutoCommandConfig }, + { no: 4, name: "enable_ide_terminal_execution", kind: "scalar", T: 8, opt: true }, { no: 5, - name: 'shell_name', - kind: 'scalar', - T: 9, + name: "shell_name", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 6, - name: 'shell_path', - kind: 'scalar', - T: 9, + name: "shell_path", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 7, - name: 'max_timeout_ms', - kind: 'scalar', - T: 13, + name: "max_timeout_ms", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, - { - no: 9, - name: 'enterprise_config', - kind: 'message', - T: EnterpriseToolConfig, - }, + { no: 9, name: "enterprise_config", kind: "message", T: EnterpriseToolConfig }, { no: 10, - name: 'shell_setup_script', - kind: 'scalar', - T: 9, + name: "shell_setup_script", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 11, name: 'forbid_search_commands', kind: 'scalar', T: 8, opt: true }, - { - no: 8, - name: 'enable_midterm_output_processor', - kind: 'scalar', - T: 8, - opt: true, - }, + { no: 11, name: "forbid_search_commands", kind: "scalar", T: 8, opt: true }, + { no: 8, name: "enable_midterm_output_processor", kind: "scalar", T: 8, opt: true } ]); static fromBinary(bytes, options) { return new _RunCommandToolConfig().fromBinary(bytes, options); @@ -47328,16 +41705,16 @@ var KnowledgeBaseSearchToolConfig = class _KnowledgeBaseSearchToolConfig extends proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.KnowledgeBaseSearchToolConfig'; + static typeName = "exa.cortex_pb.KnowledgeBaseSearchToolConfig"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'max_tokens_per_knowledge_base_search', - kind: 'scalar', - T: 13, + name: "max_tokens_per_knowledge_base_search", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, - { no: 2, name: 'prompt_fraction', kind: 'scalar', T: 1, opt: true }, + { no: 2, name: "prompt_fraction", kind: "scalar", T: 1, opt: true } ]); static fromBinary(bytes, options) { return new _KnowledgeBaseSearchToolConfig().fromBinary(bytes, options); @@ -47346,10 +41723,7 @@ var KnowledgeBaseSearchToolConfig = class _KnowledgeBaseSearchToolConfig extends return new _KnowledgeBaseSearchToolConfig().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _KnowledgeBaseSearchToolConfig().fromJsonString( - jsonString, - options, - ); + return new _KnowledgeBaseSearchToolConfig().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_KnowledgeBaseSearchToolConfig, a, b); @@ -47397,36 +41771,31 @@ var FastApplyFallbackConfig = class _FastApplyFallbackConfig extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.FastApplyFallbackConfig'; + static typeName = "exa.cortex_pb.FastApplyFallbackConfig"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'enabled', kind: 'scalar', T: 8, opt: true }, + { no: 1, name: "enabled", kind: "scalar", T: 8, opt: true }, { no: 2, - name: 'prompt_unchanged_threshold', - kind: 'scalar', - T: 13, + name: "prompt_unchanged_threshold", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, { no: 3, - name: 'content_view_radius_lines', - kind: 'scalar', - T: 13, + name: "content_view_radius_lines", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, { no: 4, - name: 'content_edit_radius_lines', - kind: 'scalar', - T: 13, + name: "content_edit_radius_lines", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, - { - no: 5, - name: 'fast_apply_model', - kind: 'enum', - T: proto3.getEnumType(Model), - }, + { no: 5, name: "fast_apply_model", kind: "enum", T: proto3.getEnumType(Model) } ]); static fromBinary(bytes, options) { return new _FastApplyFallbackConfig().fromBinary(bytes, options); @@ -47507,51 +41876,41 @@ var ReplaceContentToolConfig = class _ReplaceContentToolConfig extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.ReplaceContentToolConfig'; + static typeName = "exa.cortex_pb.ReplaceContentToolConfig"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'max_fuzzy_edit_distance_fraction', - kind: 'scalar', - T: 2, + name: "max_fuzzy_edit_distance_fraction", + kind: "scalar", + T: 2 /* ScalarType.FLOAT */ }, { no: 2, - name: 'allow_partial_replacement_success', - kind: 'scalar', - T: 8, + name: "allow_partial_replacement_success", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 3, - name: 'view_file_recency_max_distance', - kind: 'scalar', - T: 13, + name: "view_file_recency_max_distance", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, { no: 4, - name: 'enable_fuzzy_sandwich_match', - kind: 'scalar', - T: 8, + name: "enable_fuzzy_sandwich_match", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, - { - no: 5, - name: 'fast_apply_fallback_config', - kind: 'message', - T: FastApplyFallbackConfig, - }, - { - no: 6, - name: 'tool_variant', - kind: 'enum', - T: proto3.getEnumType(ReplaceToolVariant), - }, - { no: 8, name: 'show_triggered_memories', kind: 'scalar', T: 8, opt: true }, - { no: 9, name: 'disable_allow_multiple', kind: 'scalar', T: 8, opt: true }, - { no: 10, name: 'use_line_range', kind: 'scalar', T: 8, opt: true }, + { no: 5, name: "fast_apply_fallback_config", kind: "message", T: FastApplyFallbackConfig }, + { no: 6, name: "tool_variant", kind: "enum", T: proto3.getEnumType(ReplaceToolVariant) }, + { no: 8, name: "show_triggered_memories", kind: "scalar", T: 8, opt: true }, + { no: 9, name: "disable_allow_multiple", kind: "scalar", T: 8, opt: true }, + { no: 10, name: "use_line_range", kind: "scalar", T: 8, opt: true } ]); static fromBinary(bytes, options) { return new _ReplaceContentToolConfig().fromBinary(bytes, options); @@ -47666,76 +42025,25 @@ var CodeToolConfig = class _CodeToolConfig extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CodeToolConfig'; + static typeName = "exa.cortex_pb.CodeToolConfig"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'disable_extensions', kind: 'scalar', T: 9, repeated: true }, - { no: 2, name: 'apply_edits', kind: 'scalar', T: 8, opt: true }, - { - no: 3, - name: 'use_replace_content_edit_tool', - kind: 'scalar', - T: 8, - opt: true, - }, - { - no: 4, - name: 'replace_content_tool_config', - kind: 'message', - T: ReplaceContentToolConfig, - }, - { - no: 5, - name: 'auto_fix_lints_config', - kind: 'message', - T: AutoFixLintsConfig, - }, - { no: 6, name: 'allow_edit_gitignore', kind: 'scalar', T: 8, opt: true }, - { - no: 7, - name: 'enterprise_config', - kind: 'message', - T: EnterpriseToolConfig, - }, - { - no: 8, - name: 'override_allow_action_on_unsaved_file', - kind: 'scalar', - T: 8, - opt: true, - }, - { - no: 9, - name: 'skip_replace_content_validation', - kind: 'scalar', - T: 8, - opt: true, - }, - { - no: 10, - name: 'use_replace_content_propose_code', - kind: 'scalar', - T: 8, - opt: true, - }, - { - no: 11, - name: 'only_show_incremental_diff_zone', - kind: 'scalar', - T: 8, - opt: true, - }, - { no: 12, name: 'file_allowlist', kind: 'scalar', T: 9, repeated: true }, - { no: 17, name: 'dir_allowlist', kind: 'scalar', T: 9, repeated: true }, - { no: 13, name: 'classify_edit', kind: 'scalar', T: 8, opt: true }, - { - no: 14, - name: 'run_proposal_extension_verifier', - kind: 'scalar', - T: 8, - opt: true, - }, - { no: 15, name: 'skip_await_lint_errors', kind: 'scalar', T: 8, opt: true }, - { no: 16, name: 'provide_importance', kind: 'scalar', T: 8, opt: true }, + { no: 1, name: "disable_extensions", kind: "scalar", T: 9, repeated: true }, + { no: 2, name: "apply_edits", kind: "scalar", T: 8, opt: true }, + { no: 3, name: "use_replace_content_edit_tool", kind: "scalar", T: 8, opt: true }, + { no: 4, name: "replace_content_tool_config", kind: "message", T: ReplaceContentToolConfig }, + { no: 5, name: "auto_fix_lints_config", kind: "message", T: AutoFixLintsConfig }, + { no: 6, name: "allow_edit_gitignore", kind: "scalar", T: 8, opt: true }, + { no: 7, name: "enterprise_config", kind: "message", T: EnterpriseToolConfig }, + { no: 8, name: "override_allow_action_on_unsaved_file", kind: "scalar", T: 8, opt: true }, + { no: 9, name: "skip_replace_content_validation", kind: "scalar", T: 8, opt: true }, + { no: 10, name: "use_replace_content_propose_code", kind: "scalar", T: 8, opt: true }, + { no: 11, name: "only_show_incremental_diff_zone", kind: "scalar", T: 8, opt: true }, + { no: 12, name: "file_allowlist", kind: "scalar", T: 9, repeated: true }, + { no: 17, name: "dir_allowlist", kind: "scalar", T: 9, repeated: true }, + { no: 13, name: "classify_edit", kind: "scalar", T: 8, opt: true }, + { no: 14, name: "run_proposal_extension_verifier", kind: "scalar", T: 8, opt: true }, + { no: 15, name: "skip_await_lint_errors", kind: "scalar", T: 8, opt: true }, + { no: 16, name: "provide_importance", kind: "scalar", T: 8, opt: true } ]); static fromBinary(bytes, options) { return new _CodeToolConfig().fromBinary(bytes, options); @@ -47764,16 +42072,16 @@ var IntentToolConfig = class _IntentToolConfig extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.IntentToolConfig'; + static typeName = "exa.cortex_pb.IntentToolConfig"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'intent_model', kind: 'enum', T: proto3.getEnumType(Model) }, + { no: 1, name: "intent_model", kind: "enum", T: proto3.getEnumType(Model) }, { no: 2, - name: 'max_context_tokens', - kind: 'scalar', - T: 13, + name: "max_context_tokens", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ - }, + } ]); static fromBinary(bytes, options) { return new _IntentToolConfig().fromBinary(bytes, options); @@ -47857,41 +42165,30 @@ var ViewFileToolConfig = class _ViewFileToolConfig extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.ViewFileToolConfig'; + static typeName = "exa.cortex_pb.ViewFileToolConfig"; static fields = proto3.util.newFieldList(() => [ - { no: 7, name: 'allow_view_gitignore', kind: 'scalar', T: 8, opt: true }, - { no: 8, name: 'split_outline_tool', kind: 'scalar', T: 8, opt: true }, - { - no: 13, - name: 'show_triggered_memories', - kind: 'scalar', - T: 8, - opt: true, - }, - { - no: 12, - name: 'enterprise_config', - kind: 'message', - T: EnterpriseToolConfig, - }, - { no: 14, name: 'max_lines_per_view', kind: 'scalar', T: 13, opt: true }, - { no: 15, name: 'include_line_numbers', kind: 'scalar', T: 8, opt: true }, - { no: 16, name: 'dir_allowlist', kind: 'scalar', T: 9, repeated: true }, + { no: 7, name: "allow_view_gitignore", kind: "scalar", T: 8, opt: true }, + { no: 8, name: "split_outline_tool", kind: "scalar", T: 8, opt: true }, + { no: 13, name: "show_triggered_memories", kind: "scalar", T: 8, opt: true }, + { no: 12, name: "enterprise_config", kind: "message", T: EnterpriseToolConfig }, + { no: 14, name: "max_lines_per_view", kind: "scalar", T: 13, opt: true }, + { no: 15, name: "include_line_numbers", kind: "scalar", T: 8, opt: true }, + { no: 16, name: "dir_allowlist", kind: "scalar", T: 9, repeated: true }, { no: 9, - name: 'max_total_outline_bytes', - kind: 'scalar', - T: 13, + name: "max_total_outline_bytes", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, { no: 11, - name: 'max_bytes_per_outline_item', - kind: 'scalar', - T: 13, + name: "max_bytes_per_outline_item", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, - { no: 10, name: 'show_full_file_bytes', kind: 'scalar', T: 13, opt: true }, + { no: 10, name: "show_full_file_bytes", kind: "scalar", T: 13, opt: true } ]); static fromBinary(bytes, options) { return new _ViewFileToolConfig().fromBinary(bytes, options); @@ -47916,9 +42213,9 @@ var SuggestedResponseConfig = class _SuggestedResponseConfig extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.SuggestedResponseConfig'; + static typeName = "exa.cortex_pb.SuggestedResponseConfig"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'force_disable', kind: 'scalar', T: 8, opt: true }, + { no: 1, name: "force_disable", kind: "scalar", T: 8, opt: true } ]); static fromBinary(bytes, options) { return new _SuggestedResponseConfig().fromBinary(bytes, options); @@ -47947,16 +42244,10 @@ var SearchWebToolConfig = class _SearchWebToolConfig extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.SearchWebToolConfig'; + static typeName = "exa.cortex_pb.SearchWebToolConfig"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'force_disable', kind: 'scalar', T: 8, opt: true }, - { - no: 2, - name: 'third_party_config', - kind: 'message', - T: ThirdPartyWebSearchConfig, - opt: true, - }, + { no: 1, name: "force_disable", kind: "scalar", T: 8, opt: true }, + { no: 2, name: "third_party_config", kind: "message", T: ThirdPartyWebSearchConfig, opt: true } ]); static fromBinary(bytes, options) { return new _SearchWebToolConfig().fromBinary(bytes, options); @@ -47990,16 +42281,10 @@ var MemoryToolConfig = class _MemoryToolConfig extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.MemoryToolConfig'; + static typeName = "exa.cortex_pb.MemoryToolConfig"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'force_disable', kind: 'scalar', T: 8, opt: true }, - { - no: 2, - name: 'disable_auto_generate_memories', - kind: 'scalar', - T: 8, - opt: true, - }, + { no: 1, name: "force_disable", kind: "scalar", T: 8, opt: true }, + { no: 2, name: "disable_auto_generate_memories", kind: "scalar", T: 8, opt: true } ]); static fromBinary(bytes, options) { return new _MemoryToolConfig().fromBinary(bytes, options); @@ -48028,16 +42313,16 @@ var McpToolConfig = class _McpToolConfig extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.McpToolConfig'; + static typeName = "exa.cortex_pb.McpToolConfig"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'force_disable', kind: 'scalar', T: 8, opt: true }, + { no: 1, name: "force_disable", kind: "scalar", T: 8, opt: true }, { no: 2, - name: 'max_output_bytes', - kind: 'scalar', - T: 13, + name: "max_output_bytes", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ - }, + } ]); static fromBinary(bytes, options) { return new _McpToolConfig().fromBinary(bytes, options); @@ -48064,9 +42349,9 @@ var InvokeSubagentToolConfig = class _InvokeSubagentToolConfig extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.InvokeSubagentToolConfig'; + static typeName = "exa.cortex_pb.InvokeSubagentToolConfig"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'enabled', kind: 'scalar', T: 8, opt: true }, + { no: 1, name: "enabled", kind: "scalar", T: 8, opt: true } ]); static fromBinary(bytes, options) { return new _InvokeSubagentToolConfig().fromBinary(bytes, options); @@ -48100,10 +42385,10 @@ var AutoFixLintsConfig = class _AutoFixLintsConfig extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.AutoFixLintsConfig'; + static typeName = "exa.cortex_pb.AutoFixLintsConfig"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'enabled', kind: 'scalar', T: 8, opt: true }, - { no: 2, name: 'notifying_prompt', kind: 'scalar', T: 9, opt: true }, + { no: 1, name: "enabled", kind: "scalar", T: 8, opt: true }, + { no: 2, name: "notifying_prompt", kind: "scalar", T: 9, opt: true } ]); static fromBinary(bytes, options) { return new _AutoFixLintsConfig().fromBinary(bytes, options); @@ -48130,24 +42415,18 @@ var CaptureBrowserScreenshotToolConfig = class _CaptureBrowserScreenshotToolConf proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CaptureBrowserScreenshotToolConfig'; + static typeName = "exa.cortex_pb.CaptureBrowserScreenshotToolConfig"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'enable_saving', kind: 'scalar', T: 8, opt: true }, + { no: 1, name: "enable_saving", kind: "scalar", T: 8, opt: true } ]); static fromBinary(bytes, options) { return new _CaptureBrowserScreenshotToolConfig().fromBinary(bytes, options); } static fromJson(jsonValue, options) { - return new _CaptureBrowserScreenshotToolConfig().fromJson( - jsonValue, - options, - ); + return new _CaptureBrowserScreenshotToolConfig().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _CaptureBrowserScreenshotToolConfig().fromJsonString( - jsonString, - options, - ); + return new _CaptureBrowserScreenshotToolConfig().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_CaptureBrowserScreenshotToolConfig, a, b); @@ -48166,9 +42445,9 @@ var DOMExtractionConfig = class _DOMExtractionConfig extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.DOMExtractionConfig'; + static typeName = "exa.cortex_pb.DOMExtractionConfig"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'include_coordinates', kind: 'scalar', T: 8, opt: true }, + { no: 1, name: "include_coordinates", kind: "scalar", T: 8, opt: true } ]); static fromBinary(bytes, options) { return new _DOMExtractionConfig().fromBinary(bytes, options); @@ -48203,16 +42482,10 @@ var BrowserSubagentContextConfig = class _BrowserSubagentContextConfig extends M proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.BrowserSubagentContextConfig'; + static typeName = "exa.cortex_pb.BrowserSubagentContextConfig"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'type', - kind: 'enum', - T: proto3.getEnumType(BrowserSubagentContextConfig_ContextType), - opt: true, - }, - { no: 2, name: 'max_chars', kind: 'scalar', T: 5, opt: true }, + { no: 1, name: "type", kind: "enum", T: proto3.getEnumType(BrowserSubagentContextConfig_ContextType), opt: true }, + { no: 2, name: "max_chars", kind: "scalar", T: 5, opt: true } ]); static fromBinary(bytes, options) { return new _BrowserSubagentContextConfig().fromBinary(bytes, options); @@ -48221,41 +42494,23 @@ var BrowserSubagentContextConfig = class _BrowserSubagentContextConfig extends M return new _BrowserSubagentContextConfig().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _BrowserSubagentContextConfig().fromJsonString( - jsonString, - options, - ); + return new _BrowserSubagentContextConfig().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_BrowserSubagentContextConfig, a, b); } }; var BrowserSubagentContextConfig_ContextType; -(function (BrowserSubagentContextConfig_ContextType2) { - BrowserSubagentContextConfig_ContextType2[ - (BrowserSubagentContextConfig_ContextType2['UNSPECIFIED'] = 0) - ] = 'UNSPECIFIED'; - BrowserSubagentContextConfig_ContextType2[ - (BrowserSubagentContextConfig_ContextType2[ - 'WITH_MARKDOWN_TRAJECTORY_SUMMARY' - ] = 1) - ] = 'WITH_MARKDOWN_TRAJECTORY_SUMMARY'; - BrowserSubagentContextConfig_ContextType2[ - (BrowserSubagentContextConfig_ContextType2['TASK_ONLY'] = 2) - ] = 'TASK_ONLY'; -})( - BrowserSubagentContextConfig_ContextType || - (BrowserSubagentContextConfig_ContextType = {}), -); -proto3.util.setEnumType( - BrowserSubagentContextConfig_ContextType, - 'exa.cortex_pb.BrowserSubagentContextConfig.ContextType', - [ - { no: 0, name: 'CONTEXT_TYPE_UNSPECIFIED' }, - { no: 1, name: 'CONTEXT_TYPE_WITH_MARKDOWN_TRAJECTORY_SUMMARY' }, - { no: 2, name: 'CONTEXT_TYPE_TASK_ONLY' }, - ], -); +(function(BrowserSubagentContextConfig_ContextType2) { + BrowserSubagentContextConfig_ContextType2[BrowserSubagentContextConfig_ContextType2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + BrowserSubagentContextConfig_ContextType2[BrowserSubagentContextConfig_ContextType2["WITH_MARKDOWN_TRAJECTORY_SUMMARY"] = 1] = "WITH_MARKDOWN_TRAJECTORY_SUMMARY"; + BrowserSubagentContextConfig_ContextType2[BrowserSubagentContextConfig_ContextType2["TASK_ONLY"] = 2] = "TASK_ONLY"; +})(BrowserSubagentContextConfig_ContextType || (BrowserSubagentContextConfig_ContextType = {})); +proto3.util.setEnumType(BrowserSubagentContextConfig_ContextType, "exa.cortex_pb.BrowserSubagentContextConfig.ContextType", [ + { no: 0, name: "CONTEXT_TYPE_UNSPECIFIED" }, + { no: 1, name: "CONTEXT_TYPE_WITH_MARKDOWN_TRAJECTORY_SUMMARY" }, + { no: 2, name: "CONTEXT_TYPE_TASK_ONLY" } +]); var BrowserSubagentToolConfig = class _BrowserSubagentToolConfig extends Message { /** * Mode for browser tool distribution between main agent and subagent. @@ -48341,59 +42596,25 @@ var BrowserSubagentToolConfig = class _BrowserSubagentToolConfig extends Message proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.BrowserSubagentToolConfig'; + static typeName = "exa.cortex_pb.BrowserSubagentToolConfig"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'mode', - kind: 'enum', - T: proto3.getEnumType(BrowserSubagentMode), - opt: true, - }, - { - no: 2, - name: 'browser_subagent_model', - kind: 'enum', - T: proto3.getEnumType(Model), - }, - { no: 3, name: 'use_detailed_converter', kind: 'scalar', T: 8, opt: true }, + { no: 1, name: "mode", kind: "enum", T: proto3.getEnumType(BrowserSubagentMode), opt: true }, + { no: 2, name: "browser_subagent_model", kind: "enum", T: proto3.getEnumType(Model) }, + { no: 3, name: "use_detailed_converter", kind: "scalar", T: 8, opt: true }, { no: 4, - name: 'suggested_max_tool_calls', - kind: 'scalar', - T: 5, + name: "suggested_max_tool_calls", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, - { no: 5, name: 'disable_onboarding', kind: 'scalar', T: 8, opt: true }, - { - no: 6, - name: 'subagent_reminder_mode', - kind: 'message', - T: SubagentReminderMode, - }, - { no: 7, name: 'max_context_tokens', kind: 'scalar', T: 5, opt: true }, - { - no: 8, - name: 'context_config', - kind: 'message', - T: BrowserSubagentContextConfig, - opt: true, - }, - { - no: 9, - name: 'dom_extraction_config', - kind: 'message', - T: DOMExtractionConfig, - opt: true, - }, - { no: 10, name: 'disable_screenshot', kind: 'scalar', T: 8, opt: true }, - { - no: 11, - name: 'low_level_tools_config', - kind: 'message', - T: LowLevelToolsConfig, - opt: true, - }, + { no: 5, name: "disable_onboarding", kind: "scalar", T: 8, opt: true }, + { no: 6, name: "subagent_reminder_mode", kind: "message", T: SubagentReminderMode }, + { no: 7, name: "max_context_tokens", kind: "scalar", T: 5, opt: true }, + { no: 8, name: "context_config", kind: "message", T: BrowserSubagentContextConfig, opt: true }, + { no: 9, name: "dom_extraction_config", kind: "message", T: DOMExtractionConfig, opt: true }, + { no: 10, name: "disable_screenshot", kind: "scalar", T: 8, opt: true }, + { no: 11, name: "low_level_tools_config", kind: "message", T: LowLevelToolsConfig, opt: true } ]); static fromBinary(bytes, options) { return new _BrowserSubagentToolConfig().fromBinary(bytes, options); @@ -48418,29 +42639,11 @@ var SubagentReminderMode = class _SubagentReminderMode extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.SubagentReminderMode'; + static typeName = "exa.cortex_pb.SubagentReminderMode"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'verify_screenshots', - kind: 'message', - T: BrowserVerifyScreenshotsMode, - oneof: 'mode', - }, - { - no: 2, - name: 'verify_completeness', - kind: 'message', - T: BrowserVerifyCompletenessMode, - oneof: 'mode', - }, - { - no: 3, - name: 'custom', - kind: 'message', - T: BrowserCustomReminderMode, - oneof: 'mode', - }, + { no: 1, name: "verify_screenshots", kind: "message", T: BrowserVerifyScreenshotsMode, oneof: "mode" }, + { no: 2, name: "verify_completeness", kind: "message", T: BrowserVerifyCompletenessMode, oneof: "mode" }, + { no: 3, name: "custom", kind: "message", T: BrowserCustomReminderMode, oneof: "mode" } ]); static fromBinary(bytes, options) { return new _SubagentReminderMode().fromBinary(bytes, options); @@ -48461,7 +42664,7 @@ var BrowserVerifyScreenshotsMode = class _BrowserVerifyScreenshotsMode extends M proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.BrowserVerifyScreenshotsMode'; + static typeName = "exa.cortex_pb.BrowserVerifyScreenshotsMode"; static fields = proto3.util.newFieldList(() => []); static fromBinary(bytes, options) { return new _BrowserVerifyScreenshotsMode().fromBinary(bytes, options); @@ -48470,10 +42673,7 @@ var BrowserVerifyScreenshotsMode = class _BrowserVerifyScreenshotsMode extends M return new _BrowserVerifyScreenshotsMode().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _BrowserVerifyScreenshotsMode().fromJsonString( - jsonString, - options, - ); + return new _BrowserVerifyScreenshotsMode().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_BrowserVerifyScreenshotsMode, a, b); @@ -48485,7 +42685,7 @@ var BrowserVerifyCompletenessMode = class _BrowserVerifyCompletenessMode extends proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.BrowserVerifyCompletenessMode'; + static typeName = "exa.cortex_pb.BrowserVerifyCompletenessMode"; static fields = proto3.util.newFieldList(() => []); static fromBinary(bytes, options) { return new _BrowserVerifyCompletenessMode().fromBinary(bytes, options); @@ -48494,10 +42694,7 @@ var BrowserVerifyCompletenessMode = class _BrowserVerifyCompletenessMode extends return new _BrowserVerifyCompletenessMode().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _BrowserVerifyCompletenessMode().fromJsonString( - jsonString, - options, - ); + return new _BrowserVerifyCompletenessMode().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_BrowserVerifyCompletenessMode, a, b); @@ -48509,21 +42706,21 @@ var BrowserCustomReminderMode = class _BrowserCustomReminderMode extends Message * * @generated from field: string reminder = 1; */ - reminder = ''; + reminder = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.BrowserCustomReminderMode'; + static typeName = "exa.cortex_pb.BrowserCustomReminderMode"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'reminder', - kind: 'scalar', - T: 9, + name: "reminder", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _BrowserCustomReminderMode().fromBinary(bytes, options); @@ -48569,7 +42766,7 @@ var ClickFeedbackConfig = class _ClickFeedbackConfig extends Message { * * @generated from field: string display_color = 5; */ - displayColor = ''; + displayColor = ""; /** * Click dot radius * @@ -48585,28 +42782,22 @@ var ClickFeedbackConfig = class _ClickFeedbackConfig extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.ClickFeedbackConfig'; + static typeName = "exa.cortex_pb.ClickFeedbackConfig"; static fields = proto3.util.newFieldList(() => [ - { no: 12, name: 'enabled', kind: 'scalar', T: 8, opt: true }, - { no: 7, name: 'red', kind: 'scalar', T: 5, opt: true }, - { no: 8, name: 'green', kind: 'scalar', T: 5, opt: true }, - { no: 9, name: 'blue', kind: 'scalar', T: 5, opt: true }, - { no: 10, name: 'alpha', kind: 'scalar', T: 5, opt: true }, + { no: 12, name: "enabled", kind: "scalar", T: 8, opt: true }, + { no: 7, name: "red", kind: "scalar", T: 5, opt: true }, + { no: 8, name: "green", kind: "scalar", T: 5, opt: true }, + { no: 9, name: "blue", kind: "scalar", T: 5, opt: true }, + { no: 10, name: "alpha", kind: "scalar", T: 5, opt: true }, { no: 5, - name: 'display_color', - kind: 'scalar', - T: 9, + name: "display_color", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 11, name: 'radius', kind: 'scalar', T: 5, opt: true }, - { - no: 13, - name: 'feedback_type', - kind: 'enum', - T: proto3.getEnumType(ClickFeedbackConfig_FeedbackType), - opt: true, - }, + { no: 11, name: "radius", kind: "scalar", T: 5, opt: true }, + { no: 13, name: "feedback_type", kind: "enum", T: proto3.getEnumType(ClickFeedbackConfig_FeedbackType), opt: true } ]); static fromBinary(bytes, options) { return new _ClickFeedbackConfig().fromBinary(bytes, options); @@ -48622,26 +42813,16 @@ var ClickFeedbackConfig = class _ClickFeedbackConfig extends Message { } }; var ClickFeedbackConfig_FeedbackType; -(function (ClickFeedbackConfig_FeedbackType2) { - ClickFeedbackConfig_FeedbackType2[ - (ClickFeedbackConfig_FeedbackType2['UNSPECIFIED'] = 0) - ] = 'UNSPECIFIED'; - ClickFeedbackConfig_FeedbackType2[ - (ClickFeedbackConfig_FeedbackType2['DOT'] = 1) - ] = 'DOT'; - ClickFeedbackConfig_FeedbackType2[ - (ClickFeedbackConfig_FeedbackType2['MOUSE_POINTER'] = 2) - ] = 'MOUSE_POINTER'; +(function(ClickFeedbackConfig_FeedbackType2) { + ClickFeedbackConfig_FeedbackType2[ClickFeedbackConfig_FeedbackType2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + ClickFeedbackConfig_FeedbackType2[ClickFeedbackConfig_FeedbackType2["DOT"] = 1] = "DOT"; + ClickFeedbackConfig_FeedbackType2[ClickFeedbackConfig_FeedbackType2["MOUSE_POINTER"] = 2] = "MOUSE_POINTER"; })(ClickFeedbackConfig_FeedbackType || (ClickFeedbackConfig_FeedbackType = {})); -proto3.util.setEnumType( - ClickFeedbackConfig_FeedbackType, - 'exa.cortex_pb.ClickFeedbackConfig.FeedbackType', - [ - { no: 0, name: 'FEEDBACK_TYPE_UNSPECIFIED' }, - { no: 1, name: 'FEEDBACK_TYPE_DOT' }, - { no: 2, name: 'FEEDBACK_TYPE_MOUSE_POINTER' }, - ], -); +proto3.util.setEnumType(ClickFeedbackConfig_FeedbackType, "exa.cortex_pb.ClickFeedbackConfig.FeedbackType", [ + { no: 0, name: "FEEDBACK_TYPE_UNSPECIFIED" }, + { no: 1, name: "FEEDBACK_TYPE_DOT" }, + { no: 2, name: "FEEDBACK_TYPE_MOUSE_POINTER" } +]); var ClickBrowserPixelToolConfig = class _ClickBrowserPixelToolConfig extends Message { /** * If set, the tool output will include a screenshot of the current screen, @@ -48655,9 +42836,9 @@ var ClickBrowserPixelToolConfig = class _ClickBrowserPixelToolConfig extends Mes proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.ClickBrowserPixelToolConfig'; + static typeName = "exa.cortex_pb.ClickBrowserPixelToolConfig"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'click_feedback', kind: 'message', T: ClickFeedbackConfig }, + { no: 1, name: "click_feedback", kind: "message", T: ClickFeedbackConfig } ]); static fromBinary(bytes, options) { return new _ClickBrowserPixelToolConfig().fromBinary(bytes, options); @@ -48666,10 +42847,7 @@ var ClickBrowserPixelToolConfig = class _ClickBrowserPixelToolConfig extends Mes return new _ClickBrowserPixelToolConfig().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _ClickBrowserPixelToolConfig().fromJsonString( - jsonString, - options, - ); + return new _ClickBrowserPixelToolConfig().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_ClickBrowserPixelToolConfig, a, b); @@ -48695,22 +42873,10 @@ var BrowserStateDiffingConfig = class _BrowserStateDiffingConfig extends Message proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.BrowserStateDiffingConfig'; + static typeName = "exa.cortex_pb.BrowserStateDiffingConfig"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'capture_agent_action_diffs', - kind: 'scalar', - T: 8, - opt: true, - }, - { - no: 2, - name: 'include_dom_tree_in_diffs', - kind: 'scalar', - T: 8, - opt: true, - }, + { no: 1, name: "capture_agent_action_diffs", kind: "scalar", T: 8, opt: true }, + { no: 2, name: "include_dom_tree_in_diffs", kind: "scalar", T: 8, opt: true } ]); static fromBinary(bytes, options) { return new _BrowserStateDiffingConfig().fromBinary(bytes, options); @@ -48735,24 +42901,18 @@ var BrowserGetNetworkRequestToolConfig = class _BrowserGetNetworkRequestToolConf proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.BrowserGetNetworkRequestToolConfig'; + static typeName = "exa.cortex_pb.BrowserGetNetworkRequestToolConfig"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'enabled', kind: 'scalar', T: 8, opt: true }, + { no: 1, name: "enabled", kind: "scalar", T: 8, opt: true } ]); static fromBinary(bytes, options) { return new _BrowserGetNetworkRequestToolConfig().fromBinary(bytes, options); } static fromJson(jsonValue, options) { - return new _BrowserGetNetworkRequestToolConfig().fromJson( - jsonValue, - options, - ); + return new _BrowserGetNetworkRequestToolConfig().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _BrowserGetNetworkRequestToolConfig().fromJsonString( - jsonString, - options, - ); + return new _BrowserGetNetworkRequestToolConfig().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_BrowserGetNetworkRequestToolConfig, a, b); @@ -48778,16 +42938,10 @@ var LowLevelToolsConfig = class _LowLevelToolsConfig extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.LowLevelToolsConfig'; + static typeName = "exa.cortex_pb.LowLevelToolsConfig"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'enable_low_level_tools_instructions', - kind: 'scalar', - T: 8, - opt: true, - }, - { no: 2, name: 'enable_mouse_tools', kind: 'scalar', T: 8, opt: true }, + { no: 1, name: "enable_low_level_tools_instructions", kind: "scalar", T: 8, opt: true }, + { no: 2, name: "enable_mouse_tools", kind: "scalar", T: 8, opt: true } ]); static fromBinary(bytes, options) { return new _LowLevelToolsConfig().fromBinary(bytes, options); @@ -48820,22 +42974,22 @@ var BrowserWindowSize = class _BrowserWindowSize extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.BrowserWindowSize'; + static typeName = "exa.cortex_pb.BrowserWindowSize"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'width_px', - kind: 'scalar', - T: 5, + name: "width_px", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, { no: 2, - name: 'height_px', - kind: 'scalar', - T: 5, + name: "height_px", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ - }, + } ]); static fromBinary(bytes, options) { return new _BrowserWindowSize().fromBinary(bytes, options); @@ -48860,27 +43014,18 @@ var BrowserListNetworkRequestsToolConfig = class _BrowserListNetworkRequestsTool proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.BrowserListNetworkRequestsToolConfig'; + static typeName = "exa.cortex_pb.BrowserListNetworkRequestsToolConfig"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'enabled', kind: 'scalar', T: 8, opt: true }, + { no: 1, name: "enabled", kind: "scalar", T: 8, opt: true } ]); static fromBinary(bytes, options) { - return new _BrowserListNetworkRequestsToolConfig().fromBinary( - bytes, - options, - ); + return new _BrowserListNetworkRequestsToolConfig().fromBinary(bytes, options); } static fromJson(jsonValue, options) { - return new _BrowserListNetworkRequestsToolConfig().fromJson( - jsonValue, - options, - ); + return new _BrowserListNetworkRequestsToolConfig().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _BrowserListNetworkRequestsToolConfig().fromJsonString( - jsonString, - options, - ); + return new _BrowserListNetworkRequestsToolConfig().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_BrowserListNetworkRequestsToolConfig, a, b); @@ -49045,126 +43190,33 @@ var AntigravityBrowserToolConfig = class _AntigravityBrowserToolConfig extends M proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.AntigravityBrowserToolConfig'; + static typeName = "exa.cortex_pb.AntigravityBrowserToolConfig"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'enabled', kind: 'scalar', T: 8, opt: true }, - { - no: 2, - name: 'auto_run_decision', - kind: 'enum', - T: proto3.getEnumType(AutoRunDecision), - }, - { - no: 3, - name: 'capture_browser_screenshot', - kind: 'message', - T: CaptureBrowserScreenshotToolConfig, - }, - { - no: 4, - name: 'browser_subagent', - kind: 'message', - T: BrowserSubagentToolConfig, - }, - { - no: 5, - name: 'click_browser_pixel', - kind: 'message', - T: ClickBrowserPixelToolConfig, - }, - { - no: 10, - name: 'browser_state_diffing_config', - kind: 'message', - T: BrowserStateDiffingConfig, - }, - { - no: 18, - name: 'browser_list_network_requests_tool_config', - kind: 'message', - T: BrowserListNetworkRequestsToolConfig, - }, - { - no: 19, - name: 'browser_get_network_request_tool_config', - kind: 'message', - T: BrowserGetNetworkRequestToolConfig, - }, - { - no: 6, - name: 'tool_set_mode', - kind: 'enum', - T: proto3.getEnumType(BrowserToolSetMode), - opt: true, - }, - { no: 7, name: 'disable_open_url', kind: 'scalar', T: 8, opt: true }, - { no: 9, name: 'is_eval_mode', kind: 'scalar', T: 8, opt: true }, - { - no: 11, - name: 'browser_js_execution_policy', - kind: 'enum', - T: proto3.getEnumType(BrowserJsExecutionPolicy), - }, - { - no: 12, - name: 'disable_actuation_overlay', - kind: 'scalar', - T: 8, - opt: true, - }, - { no: 13, name: 'variable_wait_tool', kind: 'scalar', T: 8, opt: true }, - { - no: 8, - name: 'browser_js_auto_run_policy', - kind: 'enum', - T: proto3.getEnumType(BrowserJsAutoRunPolicy), - }, - { - no: 14, - name: 'initial_browser_window_size', - kind: 'message', - T: BrowserWindowSize, - opt: true, - }, - { - no: 15, - name: 'dom_extraction_config', - kind: 'message', - T: DOMExtractionConfig, - opt: true, - }, - { no: 16, name: 'disable_workspace_api', kind: 'scalar', T: 8, opt: true }, - { - no: 17, - name: 'open_page_in_background', - kind: 'scalar', - T: 8, - opt: true, - }, - { - no: 20, - name: 'use_antigravity_as_browser_prompting', - kind: 'scalar', - T: 8, - opt: true, - }, - { no: 21, name: 'enable_refresh_tool', kind: 'scalar', T: 8, opt: true }, - { - no: 22, - name: 'disable_read_browser_page', - kind: 'scalar', - T: 8, - opt: true, - }, - { no: 23, name: 'use_extended_timeout', kind: 'scalar', T: 8, opt: true }, - { - no: 24, - name: 'log_timeout_errors_instead_of_sentry', - kind: 'scalar', - T: 8, - opt: true, - }, - { no: 25, name: 'skip_permission_checks', kind: 'scalar', T: 8, opt: true }, + { no: 1, name: "enabled", kind: "scalar", T: 8, opt: true }, + { no: 2, name: "auto_run_decision", kind: "enum", T: proto3.getEnumType(AutoRunDecision) }, + { no: 3, name: "capture_browser_screenshot", kind: "message", T: CaptureBrowserScreenshotToolConfig }, + { no: 4, name: "browser_subagent", kind: "message", T: BrowserSubagentToolConfig }, + { no: 5, name: "click_browser_pixel", kind: "message", T: ClickBrowserPixelToolConfig }, + { no: 10, name: "browser_state_diffing_config", kind: "message", T: BrowserStateDiffingConfig }, + { no: 18, name: "browser_list_network_requests_tool_config", kind: "message", T: BrowserListNetworkRequestsToolConfig }, + { no: 19, name: "browser_get_network_request_tool_config", kind: "message", T: BrowserGetNetworkRequestToolConfig }, + { no: 6, name: "tool_set_mode", kind: "enum", T: proto3.getEnumType(BrowserToolSetMode), opt: true }, + { no: 7, name: "disable_open_url", kind: "scalar", T: 8, opt: true }, + { no: 9, name: "is_eval_mode", kind: "scalar", T: 8, opt: true }, + { no: 11, name: "browser_js_execution_policy", kind: "enum", T: proto3.getEnumType(BrowserJsExecutionPolicy) }, + { no: 12, name: "disable_actuation_overlay", kind: "scalar", T: 8, opt: true }, + { no: 13, name: "variable_wait_tool", kind: "scalar", T: 8, opt: true }, + { no: 8, name: "browser_js_auto_run_policy", kind: "enum", T: proto3.getEnumType(BrowserJsAutoRunPolicy) }, + { no: 14, name: "initial_browser_window_size", kind: "message", T: BrowserWindowSize, opt: true }, + { no: 15, name: "dom_extraction_config", kind: "message", T: DOMExtractionConfig, opt: true }, + { no: 16, name: "disable_workspace_api", kind: "scalar", T: 8, opt: true }, + { no: 17, name: "open_page_in_background", kind: "scalar", T: 8, opt: true }, + { no: 20, name: "use_antigravity_as_browser_prompting", kind: "scalar", T: 8, opt: true }, + { no: 21, name: "enable_refresh_tool", kind: "scalar", T: 8, opt: true }, + { no: 22, name: "disable_read_browser_page", kind: "scalar", T: 8, opt: true }, + { no: 23, name: "use_extended_timeout", kind: "scalar", T: 8, opt: true }, + { no: 24, name: "log_timeout_errors_instead_of_sentry", kind: "scalar", T: 8, opt: true }, + { no: 25, name: "skip_permission_checks", kind: "scalar", T: 8, opt: true } ]); static fromBinary(bytes, options) { return new _AntigravityBrowserToolConfig().fromBinary(bytes, options); @@ -49173,10 +43225,7 @@ var AntigravityBrowserToolConfig = class _AntigravityBrowserToolConfig extends M return new _AntigravityBrowserToolConfig().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _AntigravityBrowserToolConfig().fromJsonString( - jsonString, - options, - ); + return new _AntigravityBrowserToolConfig().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_AntigravityBrowserToolConfig, a, b); @@ -49204,18 +43253,18 @@ var TrajectorySearchToolConfig = class _TrajectorySearchToolConfig extends Messa proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.TrajectorySearchToolConfig'; + static typeName = "exa.cortex_pb.TrajectorySearchToolConfig"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'force_disable', kind: 'scalar', T: 8, opt: true }, - { no: 2, name: 'conversations_enabled', kind: 'scalar', T: 8, opt: true }, - { no: 3, name: 'user_activities_enabled', kind: 'scalar', T: 8, opt: true }, + { no: 1, name: "force_disable", kind: "scalar", T: 8, opt: true }, + { no: 2, name: "conversations_enabled", kind: "scalar", T: 8, opt: true }, + { no: 3, name: "user_activities_enabled", kind: "scalar", T: 8, opt: true }, { no: 4, - name: 'max_scored_chunks', - kind: 'scalar', - T: 13, + name: "max_scored_chunks", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ - }, + } ]); static fromBinary(bytes, options) { return new _TrajectorySearchToolConfig().fromBinary(bytes, options); @@ -49224,10 +43273,7 @@ var TrajectorySearchToolConfig = class _TrajectorySearchToolConfig extends Messa return new _TrajectorySearchToolConfig().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _TrajectorySearchToolConfig().fromJsonString( - jsonString, - options, - ); + return new _TrajectorySearchToolConfig().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_TrajectorySearchToolConfig, a, b); @@ -49251,16 +43297,10 @@ var EnterpriseToolConfig = class _EnterpriseToolConfig extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.EnterpriseToolConfig'; + static typeName = "exa.cortex_pb.EnterpriseToolConfig"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'enforce_workspace_validation', - kind: 'scalar', - T: 8, - opt: true, - }, - { no: 2, name: 'custom_workspace', kind: 'scalar', T: 9, repeated: true }, + { no: 1, name: "enforce_workspace_validation", kind: "scalar", T: 8, opt: true }, + { no: 2, name: "custom_workspace", kind: "scalar", T: 9, repeated: true } ]); static fromBinary(bytes, options) { return new _EnterpriseToolConfig().fromBinary(bytes, options); @@ -49305,17 +43345,12 @@ var ViewCodeItemToolConfig = class _ViewCodeItemToolConfig extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.ViewCodeItemToolConfig'; + static typeName = "exa.cortex_pb.ViewCodeItemToolConfig"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'max_num_items', kind: 'scalar', T: 13, opt: true }, - { no: 2, name: 'max_bytes_per_item', kind: 'scalar', T: 13, opt: true }, - { no: 3, name: 'allow_access_gitignore', kind: 'scalar', T: 8, opt: true }, - { - no: 4, - name: 'enterprise_config', - kind: 'message', - T: EnterpriseToolConfig, - }, + { no: 1, name: "max_num_items", kind: "scalar", T: 13, opt: true }, + { no: 2, name: "max_bytes_per_item", kind: "scalar", T: 13, opt: true }, + { no: 3, name: "allow_access_gitignore", kind: "scalar", T: 8, opt: true }, + { no: 4, name: "enterprise_config", kind: "message", T: EnterpriseToolConfig } ]); static fromBinary(bytes, options) { return new _ViewCodeItemToolConfig().fromBinary(bytes, options); @@ -49366,25 +43401,13 @@ var CommandStatusToolConfig = class _CommandStatusToolConfig extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CommandStatusToolConfig'; + static typeName = "exa.cortex_pb.CommandStatusToolConfig"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'use_delta', kind: 'scalar', T: 8, opt: true }, - { no: 2, name: 'max_output_characters', kind: 'scalar', T: 5, opt: true }, - { no: 3, name: 'min_output_characters', kind: 'scalar', T: 5, opt: true }, - { - no: 4, - name: 'max_wait_duration_seconds', - kind: 'scalar', - T: 5, - opt: true, - }, - { - no: 5, - name: 'output_stabilization_duration_seconds', - kind: 'scalar', - T: 5, - opt: true, - }, + { no: 1, name: "use_delta", kind: "scalar", T: 8, opt: true }, + { no: 2, name: "max_output_characters", kind: "scalar", T: 5, opt: true }, + { no: 3, name: "min_output_characters", kind: "scalar", T: 5, opt: true }, + { no: 4, name: "max_wait_duration_seconds", kind: "scalar", T: 5, opt: true }, + { no: 5, name: "output_stabilization_duration_seconds", kind: "scalar", T: 5, opt: true } ]); static fromBinary(bytes, options) { return new _CommandStatusToolConfig().fromBinary(bytes, options); @@ -49413,16 +43436,10 @@ var ReadKnowledgeBaseItemToolConfig = class _ReadKnowledgeBaseItemToolConfig ext proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.ReadKnowledgeBaseItemToolConfig'; + static typeName = "exa.cortex_pb.ReadKnowledgeBaseItemToolConfig"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'enabled', kind: 'scalar', T: 8, opt: true }, - { - no: 2, - name: 'knowledge_base_items', - kind: 'message', - T: KnowledgeBaseItem, - repeated: true, - }, + { no: 1, name: "enabled", kind: "scalar", T: 8, opt: true }, + { no: 2, name: "knowledge_base_items", kind: "message", T: KnowledgeBaseItem, repeated: true } ]); static fromBinary(bytes, options) { return new _ReadKnowledgeBaseItemToolConfig().fromBinary(bytes, options); @@ -49431,10 +43448,7 @@ var ReadKnowledgeBaseItemToolConfig = class _ReadKnowledgeBaseItemToolConfig ext return new _ReadKnowledgeBaseItemToolConfig().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _ReadKnowledgeBaseItemToolConfig().fromJsonString( - jsonString, - options, - ); + return new _ReadKnowledgeBaseItemToolConfig().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_ReadKnowledgeBaseItemToolConfig, a, b); @@ -49474,37 +43488,20 @@ var ToolOverrideConfig = class _ToolOverrideConfig extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.ToolOverrideConfig'; + static typeName = "exa.cortex_pb.ToolOverrideConfig"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'name_override', kind: 'scalar', T: 9, opt: true }, - { - no: 2, - name: 'argument_name_overrides', - kind: 'map', - K: 9, - V: { - kind: 'scalar', - T: 9, - /* ScalarType.STRING */ - }, - }, - { - no: 3, - name: 'description_override', - kind: 'message', - T: SectionOverrideConfig, - }, - { - no: 4, - name: 'argument_description_overrides', - kind: 'map', - K: 9, - V: { - kind: 'scalar', - T: 9, - /* ScalarType.STRING */ - }, - }, + { no: 1, name: "name_override", kind: "scalar", T: 9, opt: true }, + { no: 2, name: "argument_name_overrides", kind: "map", K: 9, V: { + kind: "scalar", + T: 9 + /* ScalarType.STRING */ + } }, + { no: 3, name: "description_override", kind: "message", T: SectionOverrideConfig }, + { no: 4, name: "argument_description_overrides", kind: "map", K: 9, V: { + kind: "scalar", + T: 9 + /* ScalarType.STRING */ + } } ]); static fromBinary(bytes, options) { return new _ToolOverrideConfig().fromBinary(bytes, options); @@ -49540,22 +43537,10 @@ var ToolDescriptionOverrideMap = class _ToolDescriptionOverrideMap extends Messa proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.ToolDescriptionOverrideMap'; + static typeName = "exa.cortex_pb.ToolDescriptionOverrideMap"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'descriptions', - kind: 'map', - K: 9, - V: { kind: 'message', T: SectionOverrideConfig }, - }, - { - no: 2, - name: 'tool_overrides', - kind: 'map', - K: 9, - V: { kind: 'message', T: ToolOverrideConfig }, - }, + { no: 1, name: "descriptions", kind: "map", K: 9, V: { kind: "message", T: SectionOverrideConfig } }, + { no: 2, name: "tool_overrides", kind: "map", K: 9, V: { kind: "message", T: ToolOverrideConfig } } ]); static fromBinary(bytes, options) { return new _ToolDescriptionOverrideMap().fromBinary(bytes, options); @@ -49564,10 +43549,7 @@ var ToolDescriptionOverrideMap = class _ToolDescriptionOverrideMap extends Messa return new _ToolDescriptionOverrideMap().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _ToolDescriptionOverrideMap().fromJsonString( - jsonString, - options, - ); + return new _ToolDescriptionOverrideMap().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_ToolDescriptionOverrideMap, a, b); @@ -49607,36 +43589,36 @@ var TaskBoundaryToolConfig = class _TaskBoundaryToolConfig extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.TaskBoundaryToolConfig'; + static typeName = "exa.cortex_pb.TaskBoundaryToolConfig"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'minimum_predicted_task_size', - kind: 'scalar', - T: 5, + name: "minimum_predicted_task_size", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, { no: 2, - name: 'target_status_update_frequency', - kind: 'scalar', - T: 5, + name: "target_status_update_frequency", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, { no: 3, - name: 'no_active_task_soft_reminder_tool_threshold', - kind: 'scalar', - T: 5, + name: "no_active_task_soft_reminder_tool_threshold", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, { no: 4, - name: 'no_active_task_strict_reminder_tool_threshold', - kind: 'scalar', - T: 5, + name: "no_active_task_strict_reminder_tool_threshold", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ - }, + } ]); static fromBinary(bytes, options) { return new _TaskBoundaryToolConfig().fromBinary(bytes, options); @@ -49660,21 +43642,21 @@ var FinishToolConfig = class _FinishToolConfig extends Message { * * @generated from field: string result_json_schema_string = 1; */ - resultJsonSchemaString = ''; + resultJsonSchemaString = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.FinishToolConfig'; + static typeName = "exa.cortex_pb.FinishToolConfig"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'result_json_schema_string', - kind: 'scalar', - T: 9, + name: "result_json_schema_string", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _FinishToolConfig().fromBinary(bytes, options); @@ -49702,9 +43684,9 @@ var WorkspaceAPIToolConfig = class _WorkspaceAPIToolConfig extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.WorkspaceAPIToolConfig'; + static typeName = "exa.cortex_pb.WorkspaceAPIToolConfig"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'read_only', kind: 'scalar', T: 8, opt: true }, + { no: 1, name: "read_only", kind: "scalar", T: 8, opt: true } ]); static fromBinary(bytes, options) { return new _WorkspaceAPIToolConfig().fromBinary(bytes, options); @@ -49729,9 +43711,9 @@ var NotebookEditToolConfig = class _NotebookEditToolConfig extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.NotebookEditToolConfig'; + static typeName = "exa.cortex_pb.NotebookEditToolConfig"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'enabled', kind: 'scalar', T: 8, opt: true }, + { no: 1, name: "enabled", kind: "scalar", T: 8, opt: true } ]); static fromBinary(bytes, options) { return new _NotebookEditToolConfig().fromBinary(bytes, options); @@ -49876,113 +43858,37 @@ var CascadeToolConfig = class _CascadeToolConfig extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CascadeToolConfig'; + static typeName = "exa.cortex_pb.CascadeToolConfig"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'mquery', kind: 'message', T: MqueryToolConfig }, - { no: 2, name: 'code', kind: 'message', T: CodeToolConfig }, - { no: 3, name: 'intent', kind: 'message', T: IntentToolConfig }, - { no: 4, name: 'grep', kind: 'message', T: GrepToolConfig }, - { no: 5, name: 'find', kind: 'message', T: FindToolConfig }, - { no: 8, name: 'run_command', kind: 'message', T: RunCommandToolConfig }, - { - no: 9, - name: 'knowledge_base_search', - kind: 'message', - T: KnowledgeBaseSearchToolConfig, - }, - { no: 10, name: 'view_file', kind: 'message', T: ViewFileToolConfig }, - { - no: 11, - name: 'suggested_response', - kind: 'message', - T: SuggestedResponseConfig, - }, - { no: 13, name: 'search_web', kind: 'message', T: SearchWebToolConfig }, - { no: 14, name: 'memory', kind: 'message', T: MemoryToolConfig }, - { no: 16, name: 'mcp', kind: 'message', T: McpToolConfig }, - { no: 19, name: 'list_dir', kind: 'message', T: ListDirToolConfig }, - { - no: 20, - name: 'view_code_item', - kind: 'message', - T: ViewCodeItemToolConfig, - }, - { - no: 21, - name: 'read_knowledge_base_item', - kind: 'message', - T: ReadKnowledgeBaseItemToolConfig, - }, - { - no: 23, - name: 'command_status', - kind: 'message', - T: CommandStatusToolConfig, - }, - { - no: 25, - name: 'antigravity_browser', - kind: 'message', - T: AntigravityBrowserToolConfig, - }, - { - no: 28, - name: 'trajectory_search', - kind: 'message', - T: TrajectorySearchToolConfig, - }, - { no: 31, name: 'code_search', kind: 'message', T: CodeSearchToolConfig }, - { - no: 32, - name: 'internal_search', - kind: 'message', - T: InternalSearchToolConfig, - }, - { no: 33, name: 'notify_user', kind: 'message', T: NotifyUserConfig }, - { - no: 34, - name: 'browser_subagent', - kind: 'message', - T: BrowserSubagentToolConfig, - }, - { - no: 35, - name: 'task_boundary', - kind: 'message', - T: TaskBoundaryToolConfig, - }, - { no: 36, name: 'finish', kind: 'message', T: FinishToolConfig }, - { - no: 37, - name: 'workspace_api', - kind: 'message', - T: WorkspaceAPIToolConfig, - }, - { - no: 38, - name: 'notebook_edit', - kind: 'message', - T: NotebookEditToolConfig, - }, - { - no: 39, - name: 'invoke_subagent', - kind: 'message', - T: InvokeSubagentToolConfig, - }, - { - no: 22, - name: 'description_override_map', - kind: 'message', - T: ToolDescriptionOverrideMap, - }, - { - no: 29, - name: 'disable_simple_research_tools', - kind: 'scalar', - T: 8, - opt: true, - }, + { no: 1, name: "mquery", kind: "message", T: MqueryToolConfig }, + { no: 2, name: "code", kind: "message", T: CodeToolConfig }, + { no: 3, name: "intent", kind: "message", T: IntentToolConfig }, + { no: 4, name: "grep", kind: "message", T: GrepToolConfig }, + { no: 5, name: "find", kind: "message", T: FindToolConfig }, + { no: 8, name: "run_command", kind: "message", T: RunCommandToolConfig }, + { no: 9, name: "knowledge_base_search", kind: "message", T: KnowledgeBaseSearchToolConfig }, + { no: 10, name: "view_file", kind: "message", T: ViewFileToolConfig }, + { no: 11, name: "suggested_response", kind: "message", T: SuggestedResponseConfig }, + { no: 13, name: "search_web", kind: "message", T: SearchWebToolConfig }, + { no: 14, name: "memory", kind: "message", T: MemoryToolConfig }, + { no: 16, name: "mcp", kind: "message", T: McpToolConfig }, + { no: 19, name: "list_dir", kind: "message", T: ListDirToolConfig }, + { no: 20, name: "view_code_item", kind: "message", T: ViewCodeItemToolConfig }, + { no: 21, name: "read_knowledge_base_item", kind: "message", T: ReadKnowledgeBaseItemToolConfig }, + { no: 23, name: "command_status", kind: "message", T: CommandStatusToolConfig }, + { no: 25, name: "antigravity_browser", kind: "message", T: AntigravityBrowserToolConfig }, + { no: 28, name: "trajectory_search", kind: "message", T: TrajectorySearchToolConfig }, + { no: 31, name: "code_search", kind: "message", T: CodeSearchToolConfig }, + { no: 32, name: "internal_search", kind: "message", T: InternalSearchToolConfig }, + { no: 33, name: "notify_user", kind: "message", T: NotifyUserConfig }, + { no: 34, name: "browser_subagent", kind: "message", T: BrowserSubagentToolConfig }, + { no: 35, name: "task_boundary", kind: "message", T: TaskBoundaryToolConfig }, + { no: 36, name: "finish", kind: "message", T: FinishToolConfig }, + { no: 37, name: "workspace_api", kind: "message", T: WorkspaceAPIToolConfig }, + { no: 38, name: "notebook_edit", kind: "message", T: NotebookEditToolConfig }, + { no: 39, name: "invoke_subagent", kind: "message", T: InvokeSubagentToolConfig }, + { no: 22, name: "description_override_map", kind: "message", T: ToolDescriptionOverrideMap }, + { no: 29, name: "disable_simple_research_tools", kind: "scalar", T: 8, opt: true } ]); static fromBinary(bytes, options) { return new _CascadeToolConfig().fromBinary(bytes, options); @@ -50014,29 +43920,17 @@ var ModelOutputRetryConfig = class _ModelOutputRetryConfig extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.ModelOutputRetryConfig'; + static typeName = "exa.cortex_pb.ModelOutputRetryConfig"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'max_retries', - kind: 'scalar', - T: 13, + name: "max_retries", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, - { - no: 3, - name: 'forbid_tool_use', - kind: 'scalar', - T: 8, - oneof: 'last_retry_option', - }, - { - no: 4, - name: 'force_tool_name', - kind: 'scalar', - T: 9, - oneof: 'last_retry_option', - }, + { no: 3, name: "forbid_tool_use", kind: "scalar", T: 8, oneof: "last_retry_option" }, + { no: 4, name: "force_tool_name", kind: "scalar", T: 9, oneof: "last_retry_option" } ]); static fromBinary(bytes, options) { return new _ModelOutputRetryConfig().fromBinary(bytes, options); @@ -50077,30 +43971,30 @@ var ModelAPIRetryConfig = class _ModelAPIRetryConfig extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.ModelAPIRetryConfig'; + static typeName = "exa.cortex_pb.ModelAPIRetryConfig"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'max_retries', - kind: 'scalar', - T: 13, + name: "max_retries", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, { no: 2, - name: 'initial_sleep_duration_ms', - kind: 'scalar', - T: 13, + name: "initial_sleep_duration_ms", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, { no: 3, - name: 'exponential_multiplier', - kind: 'scalar', - T: 1, + name: "exponential_multiplier", + kind: "scalar", + T: 1 /* ScalarType.DOUBLE */ }, - { no: 4, name: 'include_error_feedback', kind: 'scalar', T: 8, opt: true }, + { no: 4, name: "include_error_feedback", kind: "scalar", T: 8, opt: true } ]); static fromBinary(bytes, options) { return new _ModelAPIRetryConfig().fromBinary(bytes, options); @@ -50129,15 +44023,10 @@ var PlannerRetryConfig = class _PlannerRetryConfig extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.PlannerRetryConfig'; + static typeName = "exa.cortex_pb.PlannerRetryConfig"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'model_output_retry', - kind: 'message', - T: ModelOutputRetryConfig, - }, - { no: 2, name: 'api_retry', kind: 'message', T: ModelAPIRetryConfig }, + { no: 1, name: "model_output_retry", kind: "message", T: ModelOutputRetryConfig }, + { no: 2, name: "api_retry", kind: "message", T: ModelAPIRetryConfig } ]); static fromBinary(bytes, options) { return new _PlannerRetryConfig().fromBinary(bytes, options); @@ -50166,37 +44055,31 @@ var CodeAcknowledgementConverterConfig = class _CodeAcknowledgementConverterConf proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CodeAcknowledgementConverterConfig'; + static typeName = "exa.cortex_pb.CodeAcknowledgementConverterConfig"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'show_to_model_on_written_feedback', - kind: 'scalar', - T: 8, + name: "show_to_model_on_written_feedback", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 2, - name: 'show_to_model_on_rejection', - kind: 'scalar', - T: 8, + name: "show_to_model_on_rejection", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ - }, + } ]); static fromBinary(bytes, options) { return new _CodeAcknowledgementConverterConfig().fromBinary(bytes, options); } static fromJson(jsonValue, options) { - return new _CodeAcknowledgementConverterConfig().fromJson( - jsonValue, - options, - ); + return new _CodeAcknowledgementConverterConfig().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _CodeAcknowledgementConverterConfig().fromJsonString( - jsonString, - options, - ); + return new _CodeAcknowledgementConverterConfig().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_CodeAcknowledgementConverterConfig, a, b); @@ -50212,14 +44095,9 @@ var StepStringConverterConfig = class _StepStringConverterConfig extends Message proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.StepStringConverterConfig'; + static typeName = "exa.cortex_pb.StepStringConverterConfig"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'code_acknowledgement', - kind: 'message', - T: CodeAcknowledgementConverterConfig, - }, + { no: 1, name: "code_acknowledgement", kind: "message", T: CodeAcknowledgementConverterConfig } ]); static fromBinary(bytes, options) { return new _StepStringConverterConfig().fromBinary(bytes, options); @@ -50255,26 +44133,14 @@ var AgenticModeConfig = class _AgenticModeConfig extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.AgenticModeConfig'; + static typeName = "exa.cortex_pb.AgenticModeConfig"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'inject_artifact_reminder_threshold_map', - kind: 'map', - K: 9, - V: { - kind: 'scalar', - T: 5, - /* ScalarType.INT32 */ - }, - }, - { - no: 2, - name: 'disable_artifact_reminders', - kind: 'scalar', - T: 8, - opt: true, - }, + { no: 1, name: "inject_artifact_reminder_threshold_map", kind: "map", K: 9, V: { + kind: "scalar", + T: 5 + /* ScalarType.INT32 */ + } }, + { no: 2, name: "disable_artifact_reminders", kind: "scalar", T: 8, opt: true } ]); static fromBinary(bytes, options) { return new _AgenticModeConfig().fromBinary(bytes, options); @@ -50311,29 +44177,29 @@ var CustomAgentSystemPromptConfig = class _CustomAgentSystemPromptConfig extends proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CustomAgentSystemPromptConfig'; + static typeName = "exa.cortex_pb.CustomAgentSystemPromptConfig"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'include_workspace_prompt', - kind: 'scalar', - T: 8, + name: "include_workspace_prompt", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 2, - name: 'include_mcp_server_prompt', - kind: 'scalar', - T: 8, + name: "include_mcp_server_prompt", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 3, - name: 'include_artifact_instructions', - kind: 'scalar', - T: 8, + name: "include_artifact_instructions", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ - }, + } ]); static fromBinary(bytes, options) { return new _CustomAgentSystemPromptConfig().fromBinary(bytes, options); @@ -50342,10 +44208,7 @@ var CustomAgentSystemPromptConfig = class _CustomAgentSystemPromptConfig extends return new _CustomAgentSystemPromptConfig().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _CustomAgentSystemPromptConfig().fromJsonString( - jsonString, - options, - ); + return new _CustomAgentSystemPromptConfig().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_CustomAgentSystemPromptConfig, a, b); @@ -50369,22 +44232,11 @@ var CustomAgentConfig = class _CustomAgentConfig extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CustomAgentConfig'; + static typeName = "exa.cortex_pb.CustomAgentConfig"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'system_prompt_sections', - kind: 'message', - T: PromptSection, - repeated: true, - }, - { no: 2, name: 'tool_names', kind: 'scalar', T: 9, repeated: true }, - { - no: 6, - name: 'system_prompt_config', - kind: 'message', - T: CustomAgentSystemPromptConfig, - }, + { no: 1, name: "system_prompt_sections", kind: "message", T: PromptSection, repeated: true }, + { no: 2, name: "tool_names", kind: "scalar", T: 9, repeated: true }, + { no: 6, name: "system_prompt_config", kind: "message", T: CustomAgentSystemPromptConfig } ]); static fromBinary(bytes, options) { return new _CustomAgentConfig().fromBinary(bytes, options); @@ -50413,22 +44265,22 @@ var CodingAgentConfig = class _CodingAgentConfig extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CodingAgentConfig'; + static typeName = "exa.cortex_pb.CodingAgentConfig"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'google_mode', - kind: 'scalar', - T: 8, + name: "google_mode", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 2, - name: 'agentic_mode', - kind: 'scalar', - T: 8, + name: "agentic_mode", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ - }, + } ]); static fromBinary(bytes, options) { return new _CodingAgentConfig().fromBinary(bytes, options); @@ -50461,35 +44313,12 @@ var CustomAgentSpec = class _CustomAgentSpec extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CustomAgentSpec'; + static typeName = "exa.cortex_pb.CustomAgentSpec"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'custom_agent', - kind: 'message', - T: CustomAgentConfig, - oneof: 'config', - }, - { - no: 2, - name: 'coding_agent', - kind: 'message', - T: CodingAgentConfig, - oneof: 'config', - }, - { - no: 4, - name: 'mcp_servers', - kind: 'message', - T: McpServerSpec, - repeated: true, - }, - { - no: 9, - name: 'prompt_section_customization', - kind: 'message', - T: PromptSectionCustomizationConfig, - }, + { no: 1, name: "custom_agent", kind: "message", T: CustomAgentConfig, oneof: "config" }, + { no: 2, name: "coding_agent", kind: "message", T: CodingAgentConfig, oneof: "config" }, + { no: 4, name: "mcp_servers", kind: "message", T: McpServerSpec, repeated: true }, + { no: 9, name: "prompt_section_customization", kind: "message", T: PromptSectionCustomizationConfig } ]); static fromBinary(bytes, options) { return new _CustomAgentSpec().fromBinary(bytes, options); @@ -50518,23 +44347,11 @@ var CustomPromptSection = class _CustomPromptSection extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CustomPromptSection'; + static typeName = "exa.cortex_pb.CustomPromptSection"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'prompt_section', kind: 'message', T: PromptSection }, - { - no: 2, - name: 'insert_after_section', - kind: 'scalar', - T: 9, - oneof: 'placement', - }, - { - no: 3, - name: 'insert_before_section', - kind: 'scalar', - T: 9, - oneof: 'placement', - }, + { no: 1, name: "prompt_section", kind: "message", T: PromptSection }, + { no: 2, name: "insert_after_section", kind: "scalar", T: 9, oneof: "placement" }, + { no: 3, name: "insert_before_section", kind: "scalar", T: 9, oneof: "placement" } ]); static fromBinary(bytes, options) { return new _CustomPromptSection().fromBinary(bytes, options); @@ -50576,36 +44393,12 @@ var PromptSectionCustomizationConfig = class _PromptSectionCustomizationConfig e proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.PromptSectionCustomizationConfig'; + static typeName = "exa.cortex_pb.PromptSectionCustomizationConfig"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'remove_prompt_sections', - kind: 'scalar', - T: 9, - repeated: true, - }, - { - no: 2, - name: 'add_prompt_sections', - kind: 'message', - T: CustomPromptSection, - repeated: true, - }, - { - no: 3, - name: 'append_prompt_sections', - kind: 'message', - T: PromptSection, - repeated: true, - }, - { - no: 4, - name: 'replace_prompt_sections', - kind: 'message', - T: PromptSection, - repeated: true, - }, + { no: 1, name: "remove_prompt_sections", kind: "scalar", T: 9, repeated: true }, + { no: 2, name: "add_prompt_sections", kind: "message", T: CustomPromptSection, repeated: true }, + { no: 3, name: "append_prompt_sections", kind: "message", T: PromptSection, repeated: true }, + { no: 4, name: "replace_prompt_sections", kind: "message", T: PromptSection, repeated: true } ]); static fromBinary(bytes, options) { return new _PromptSectionCustomizationConfig().fromBinary(bytes, options); @@ -50614,10 +44407,7 @@ var PromptSectionCustomizationConfig = class _PromptSectionCustomizationConfig e return new _PromptSectionCustomizationConfig().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _PromptSectionCustomizationConfig().fromJsonString( - jsonString, - options, - ); + return new _PromptSectionCustomizationConfig().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_PromptSectionCustomizationConfig, a, b); @@ -50633,9 +44423,9 @@ var WorkspacePaths = class _WorkspacePaths extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.WorkspacePaths'; + static typeName = "exa.cortex_pb.WorkspacePaths"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'absolute_paths', kind: 'scalar', T: 9, repeated: true }, + { no: 1, name: "absolute_paths", kind: "scalar", T: 9, repeated: true } ]); static fromBinary(bytes, options) { return new _WorkspacePaths().fromBinary(bytes, options); @@ -50657,7 +44447,7 @@ var CustomizationConfig = class _CustomizationConfig extends Message { * * @generated from field: string customization_server_url = 1; */ - customizationServerUrl = ''; + customizationServerUrl = ""; /** * Tool names to pass as agent tools from the customization server. * @@ -50692,7 +44482,7 @@ var CustomizationConfig = class _CustomizationConfig extends Message { * * @generated from field: string trajectory_to_chat_message_override = 6; */ - trajectoryToChatMessageOverride = ''; + trajectoryToChatMessageOverride = ""; /** * Names of tools in the customization server that correspond to * pre-tool hooks. @@ -50731,86 +44521,44 @@ var CustomizationConfig = class _CustomizationConfig extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CustomizationConfig'; + static typeName = "exa.cortex_pb.CustomizationConfig"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'customization_server_url', - kind: 'scalar', - T: 9, + name: "customization_server_url", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 2, name: 'tool_names', kind: 'scalar', T: 9, repeated: true }, - { - no: 3, - name: 'pre_invocation_hook_names', - kind: 'scalar', - T: 9, - repeated: true, - }, - { - no: 4, - name: 'post_invocation_hook_names', - kind: 'scalar', - T: 9, - repeated: true, - }, - { - no: 5, - name: 'mcp_servers', - kind: 'message', - T: McpServerSpec, - repeated: true, - }, + { no: 2, name: "tool_names", kind: "scalar", T: 9, repeated: true }, + { no: 3, name: "pre_invocation_hook_names", kind: "scalar", T: 9, repeated: true }, + { no: 4, name: "post_invocation_hook_names", kind: "scalar", T: 9, repeated: true }, + { no: 5, name: "mcp_servers", kind: "message", T: McpServerSpec, repeated: true }, { no: 6, - name: 'trajectory_to_chat_message_override', - kind: 'scalar', - T: 9, + name: "trajectory_to_chat_message_override", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { - no: 8, - name: 'pre_tool_hook_names', - kind: 'scalar', - T: 9, - repeated: true, - }, - { - no: 9, - name: 'post_tool_hook_names', - kind: 'scalar', - T: 9, - repeated: true, - }, - { - no: 10, - name: 'user_active_workspaces', - kind: 'scalar', - T: 8, - oneof: 'workspace', - }, - { - no: 11, - name: 'workspace_paths', - kind: 'message', - T: WorkspacePaths, - oneof: 'workspace', - }, + { no: 8, name: "pre_tool_hook_names", kind: "scalar", T: 9, repeated: true }, + { no: 9, name: "post_tool_hook_names", kind: "scalar", T: 9, repeated: true }, + { no: 10, name: "user_active_workspaces", kind: "scalar", T: 8, oneof: "workspace" }, + { no: 11, name: "workspace_paths", kind: "message", T: WorkspacePaths, oneof: "workspace" }, { no: 12, - name: 'skip_tool_name_prefix', - kind: 'scalar', - T: 8, + name: "skip_tool_name_prefix", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 13, - name: 'skip_tool_description_prefix', - kind: 'scalar', - T: 8, + name: "skip_tool_description_prefix", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ - }, + } ]); static fromBinary(bytes, options) { return new _CustomizationConfig().fromBinary(bytes, options); @@ -50869,7 +44617,7 @@ var CascadePlannerConfig = class _CascadePlannerConfig extends Message { /** * @generated from field: string model_name = 28; */ - modelName = ''; + modelName = ""; /** * Custom overrides for model info. Can have non-empty value if the model * is marked with the supports_model_info_override feature. @@ -50943,121 +44691,55 @@ var CascadePlannerConfig = class _CascadePlannerConfig extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CascadePlannerConfig'; + static typeName = "exa.cortex_pb.CascadePlannerConfig"; static fields = proto3.util.newFieldList(() => [ - { - no: 2, - name: 'conversational', - kind: 'message', - T: CascadeConversationalPlannerConfig, - oneof: 'planner_type_config', - }, - { - no: 26, - name: 'google', - kind: 'message', - T: CascadeConversationalPlannerConfig, - oneof: 'planner_type_config', - }, - { - no: 36, - name: 'cider', - kind: 'message', - T: CascadeConversationalPlannerConfig, - oneof: 'planner_type_config', - }, - { - no: 39, - name: 'custom_agent', - kind: 'message', - T: CustomAgentConfig, - oneof: 'planner_type_config', - }, - { - no: 40, - name: 'custom_agent_config_absolute_uri', - kind: 'scalar', - T: 9, - oneof: 'planner_type_config', - }, - { - no: 42, - name: 'customization_config', - kind: 'message', - T: CustomizationConfig, - }, - { - no: 41, - name: 'prompt_section_customization_config', - kind: 'message', - T: PromptSectionCustomizationConfig, - }, - { no: 13, name: 'tool_config', kind: 'message', T: CascadeToolConfig }, - { - no: 31, - name: 'step_string_converter_config', - kind: 'message', - T: StepStringConverterConfig, - }, - { no: 1, name: 'plan_model', kind: 'enum', T: proto3.getEnumType(Model) }, - { no: 15, name: 'requested_model', kind: 'message', T: ModelOrAlias }, + { no: 2, name: "conversational", kind: "message", T: CascadeConversationalPlannerConfig, oneof: "planner_type_config" }, + { no: 26, name: "google", kind: "message", T: CascadeConversationalPlannerConfig, oneof: "planner_type_config" }, + { no: 36, name: "cider", kind: "message", T: CascadeConversationalPlannerConfig, oneof: "planner_type_config" }, + { no: 39, name: "custom_agent", kind: "message", T: CustomAgentConfig, oneof: "planner_type_config" }, + { no: 40, name: "custom_agent_config_absolute_uri", kind: "scalar", T: 9, oneof: "planner_type_config" }, + { no: 42, name: "customization_config", kind: "message", T: CustomizationConfig }, + { no: 41, name: "prompt_section_customization_config", kind: "message", T: PromptSectionCustomizationConfig }, + { no: 13, name: "tool_config", kind: "message", T: CascadeToolConfig }, + { no: 31, name: "step_string_converter_config", kind: "message", T: StepStringConverterConfig }, + { no: 1, name: "plan_model", kind: "enum", T: proto3.getEnumType(Model) }, + { no: 15, name: "requested_model", kind: "message", T: ModelOrAlias }, { no: 28, - name: 'model_name', - kind: 'scalar', - T: 9, + name: "model_name", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { - no: 27, - name: 'custom_model_info_override', - kind: 'message', - T: ModelInfo, - }, + { no: 27, name: "custom_model_info_override", kind: "message", T: ModelInfo }, { no: 6, - name: 'max_output_tokens', - kind: 'scalar', - T: 13, + name: "max_output_tokens", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, - { no: 7, name: 'no_tool_explanation', kind: 'scalar', T: 8, opt: true }, - { no: 33, name: 'no_tool_summary', kind: 'scalar', T: 8, opt: true }, + { no: 7, name: "no_tool_explanation", kind: "scalar", T: 8, opt: true }, + { no: 33, name: "no_tool_summary", kind: "scalar", T: 8, opt: true }, { no: 14, - name: 'truncation_threshold_tokens', - kind: 'scalar', - T: 5, + name: "truncation_threshold_tokens", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, - { - no: 21, - name: 'ephemeral_messages_config', - kind: 'message', - T: EphemeralMessagesConfig, - }, + { no: 21, name: "ephemeral_messages_config", kind: "message", T: EphemeralMessagesConfig }, { no: 25, - name: 'show_all_errors', - kind: 'scalar', - T: 8, + name: "show_all_errors", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, - { no: 30, name: 'retry_config', kind: 'message', T: PlannerRetryConfig }, - { no: 32, name: 'knowledge_config', kind: 'message', T: KnowledgeConfig }, - { - no: 35, - name: 'agentic_mode_config', - kind: 'message', - T: AgenticModeConfig, - }, - { - no: 37, - name: 'no_wait_for_previous_tools', - kind: 'scalar', - T: 8, - opt: true, - }, + { no: 30, name: "retry_config", kind: "message", T: PlannerRetryConfig }, + { no: 32, name: "knowledge_config", kind: "message", T: KnowledgeConfig }, + { no: 35, name: "agentic_mode_config", kind: "message", T: AgenticModeConfig }, + { no: 37, name: "no_wait_for_previous_tools", kind: "scalar", T: 8, opt: true } ]); static fromBinary(bytes, options) { return new _CascadePlannerConfig().fromBinary(bytes, options); @@ -51076,21 +44758,21 @@ var DeploymentInteractionPayload = class _DeploymentInteractionPayload extends M /** * @generated from field: string subdomain = 1; */ - subdomain = ''; + subdomain = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.DeploymentInteractionPayload'; + static typeName = "exa.cortex_pb.DeploymentInteractionPayload"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'subdomain', - kind: 'scalar', - T: 9, + name: "subdomain", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _DeploymentInteractionPayload().fromBinary(bytes, options); @@ -51099,10 +44781,7 @@ var DeploymentInteractionPayload = class _DeploymentInteractionPayload extends M return new _DeploymentInteractionPayload().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _DeploymentInteractionPayload().fromJsonString( - jsonString, - options, - ); + return new _DeploymentInteractionPayload().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_DeploymentInteractionPayload, a, b); @@ -51120,29 +44799,29 @@ var CascadeDeployInteraction = class _CascadeDeployInteraction extends Message { /** * @generated from field: string subdomain = 3; */ - subdomain = ''; + subdomain = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CascadeDeployInteraction'; + static typeName = "exa.cortex_pb.CascadeDeployInteraction"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'cancel', - kind: 'scalar', - T: 8, + name: "cancel", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, - { no: 2, name: 'deploy_target', kind: 'message', T: DeployTarget }, + { no: 2, name: "deploy_target", kind: "message", T: DeployTarget }, { no: 3, - name: 'subdomain', - kind: 'scalar', - T: 9, + name: "subdomain", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _CascadeDeployInteraction().fromBinary(bytes, options); @@ -51167,14 +44846,14 @@ var CascadeRunCommandInteraction = class _CascadeRunCommandInteraction extends M * * @generated from field: string proposed_command_line = 2; */ - proposedCommandLine = ''; + proposedCommandLine = ""; /** * Command that is to be run. This will be the same as the proposed command * line if the user did not edit it. * * @generated from field: string submitted_command_line = 3; */ - submittedCommandLine = ''; + submittedCommandLine = ""; /** * @generated from field: bool sandbox_override = 4; */ @@ -51184,36 +44863,36 @@ var CascadeRunCommandInteraction = class _CascadeRunCommandInteraction extends M proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CascadeRunCommandInteraction'; + static typeName = "exa.cortex_pb.CascadeRunCommandInteraction"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'confirm', - kind: 'scalar', - T: 8, + name: "confirm", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 2, - name: 'proposed_command_line', - kind: 'scalar', - T: 9, + name: "proposed_command_line", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 3, - name: 'submitted_command_line', - kind: 'scalar', - T: 9, + name: "submitted_command_line", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 4, - name: 'sandbox_override', - kind: 'scalar', - T: 8, + name: "sandbox_override", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ - }, + } ]); static fromBinary(bytes, options) { return new _CascadeRunCommandInteraction().fromBinary(bytes, options); @@ -51222,10 +44901,7 @@ var CascadeRunCommandInteraction = class _CascadeRunCommandInteraction extends M return new _CascadeRunCommandInteraction().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _CascadeRunCommandInteraction().fromJsonString( - jsonString, - options, - ); + return new _CascadeRunCommandInteraction().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_CascadeRunCommandInteraction, a, b); @@ -51241,15 +44917,15 @@ var CascadeOpenBrowserUrlInteraction = class _CascadeOpenBrowserUrlInteraction e proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CascadeOpenBrowserUrlInteraction'; + static typeName = "exa.cortex_pb.CascadeOpenBrowserUrlInteraction"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'confirm', - kind: 'scalar', - T: 8, + name: "confirm", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ - }, + } ]); static fromBinary(bytes, options) { return new _CascadeOpenBrowserUrlInteraction().fromBinary(bytes, options); @@ -51258,10 +44934,7 @@ var CascadeOpenBrowserUrlInteraction = class _CascadeOpenBrowserUrlInteraction e return new _CascadeOpenBrowserUrlInteraction().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _CascadeOpenBrowserUrlInteraction().fromJsonString( - jsonString, - options, - ); + return new _CascadeOpenBrowserUrlInteraction().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_CascadeOpenBrowserUrlInteraction, a, b); @@ -51277,30 +44950,24 @@ var CascadeRunExtensionCodeInteraction = class _CascadeRunExtensionCodeInteracti proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CascadeRunExtensionCodeInteraction'; + static typeName = "exa.cortex_pb.CascadeRunExtensionCodeInteraction"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'confirm', - kind: 'scalar', - T: 8, + name: "confirm", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ - }, + } ]); static fromBinary(bytes, options) { return new _CascadeRunExtensionCodeInteraction().fromBinary(bytes, options); } static fromJson(jsonValue, options) { - return new _CascadeRunExtensionCodeInteraction().fromJson( - jsonValue, - options, - ); + return new _CascadeRunExtensionCodeInteraction().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _CascadeRunExtensionCodeInteraction().fromJsonString( - jsonString, - options, - ); + return new _CascadeRunExtensionCodeInteraction().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_CascadeRunExtensionCodeInteraction, a, b); @@ -51316,40 +44983,27 @@ var CascadeExecuteBrowserJavaScriptInteraction = class _CascadeExecuteBrowserJav proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CascadeExecuteBrowserJavaScriptInteraction'; + static typeName = "exa.cortex_pb.CascadeExecuteBrowserJavaScriptInteraction"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'confirm', - kind: 'scalar', - T: 8, + name: "confirm", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ - }, + } ]); static fromBinary(bytes, options) { - return new _CascadeExecuteBrowserJavaScriptInteraction().fromBinary( - bytes, - options, - ); + return new _CascadeExecuteBrowserJavaScriptInteraction().fromBinary(bytes, options); } static fromJson(jsonValue, options) { - return new _CascadeExecuteBrowserJavaScriptInteraction().fromJson( - jsonValue, - options, - ); + return new _CascadeExecuteBrowserJavaScriptInteraction().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _CascadeExecuteBrowserJavaScriptInteraction().fromJsonString( - jsonString, - options, - ); + return new _CascadeExecuteBrowserJavaScriptInteraction().fromJsonString(jsonString, options); } static equals(a, b) { - return proto3.util.equals( - _CascadeExecuteBrowserJavaScriptInteraction, - a, - b, - ); + return proto3.util.equals(_CascadeExecuteBrowserJavaScriptInteraction, a, b); } }; var CascadeCaptureBrowserScreenshotInteraction = class _CascadeCaptureBrowserScreenshotInteraction extends Message { @@ -51362,40 +45016,27 @@ var CascadeCaptureBrowserScreenshotInteraction = class _CascadeCaptureBrowserScr proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CascadeCaptureBrowserScreenshotInteraction'; + static typeName = "exa.cortex_pb.CascadeCaptureBrowserScreenshotInteraction"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'confirm', - kind: 'scalar', - T: 8, + name: "confirm", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ - }, + } ]); static fromBinary(bytes, options) { - return new _CascadeCaptureBrowserScreenshotInteraction().fromBinary( - bytes, - options, - ); + return new _CascadeCaptureBrowserScreenshotInteraction().fromBinary(bytes, options); } static fromJson(jsonValue, options) { - return new _CascadeCaptureBrowserScreenshotInteraction().fromJson( - jsonValue, - options, - ); + return new _CascadeCaptureBrowserScreenshotInteraction().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _CascadeCaptureBrowserScreenshotInteraction().fromJsonString( - jsonString, - options, - ); + return new _CascadeCaptureBrowserScreenshotInteraction().fromJsonString(jsonString, options); } static equals(a, b) { - return proto3.util.equals( - _CascadeCaptureBrowserScreenshotInteraction, - a, - b, - ); + return proto3.util.equals(_CascadeCaptureBrowserScreenshotInteraction, a, b); } }; var CascadeClickBrowserPixelInteraction = class _CascadeClickBrowserPixelInteraction extends Message { @@ -51408,33 +45049,24 @@ var CascadeClickBrowserPixelInteraction = class _CascadeClickBrowserPixelInterac proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CascadeClickBrowserPixelInteraction'; + static typeName = "exa.cortex_pb.CascadeClickBrowserPixelInteraction"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'confirm', - kind: 'scalar', - T: 8, + name: "confirm", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ - }, + } ]); static fromBinary(bytes, options) { - return new _CascadeClickBrowserPixelInteraction().fromBinary( - bytes, - options, - ); + return new _CascadeClickBrowserPixelInteraction().fromBinary(bytes, options); } static fromJson(jsonValue, options) { - return new _CascadeClickBrowserPixelInteraction().fromJson( - jsonValue, - options, - ); + return new _CascadeClickBrowserPixelInteraction().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _CascadeClickBrowserPixelInteraction().fromJsonString( - jsonString, - options, - ); + return new _CascadeClickBrowserPixelInteraction().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_CascadeClickBrowserPixelInteraction, a, b); @@ -51454,16 +45086,16 @@ var CascadeTaskResolutionInteraction = class _CascadeTaskResolutionInteraction e proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CascadeTaskResolutionInteraction'; + static typeName = "exa.cortex_pb.CascadeTaskResolutionInteraction"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'confirm', - kind: 'scalar', - T: 8, + name: "confirm", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, - { no: 2, name: 'resolution', kind: 'message', T: TaskResolution }, + { no: 2, name: "resolution", kind: "message", T: TaskResolution } ]); static fromBinary(bytes, options) { return new _CascadeTaskResolutionInteraction().fromBinary(bytes, options); @@ -51472,10 +45104,7 @@ var CascadeTaskResolutionInteraction = class _CascadeTaskResolutionInteraction e return new _CascadeTaskResolutionInteraction().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _CascadeTaskResolutionInteraction().fromJsonString( - jsonString, - options, - ); + return new _CascadeTaskResolutionInteraction().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_CascadeTaskResolutionInteraction, a, b); @@ -51491,15 +45120,15 @@ var CascadeBrowserActionInteraction = class _CascadeBrowserActionInteraction ext proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CascadeBrowserActionInteraction'; + static typeName = "exa.cortex_pb.CascadeBrowserActionInteraction"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'confirm', - kind: 'scalar', - T: 8, + name: "confirm", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ - }, + } ]); static fromBinary(bytes, options) { return new _CascadeBrowserActionInteraction().fromBinary(bytes, options); @@ -51508,10 +45137,7 @@ var CascadeBrowserActionInteraction = class _CascadeBrowserActionInteraction ext return new _CascadeBrowserActionInteraction().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _CascadeBrowserActionInteraction().fromJsonString( - jsonString, - options, - ); + return new _CascadeBrowserActionInteraction().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_CascadeBrowserActionInteraction, a, b); @@ -51527,30 +45153,24 @@ var CascadeOpenBrowserSetupInteraction = class _CascadeOpenBrowserSetupInteracti proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CascadeOpenBrowserSetupInteraction'; + static typeName = "exa.cortex_pb.CascadeOpenBrowserSetupInteraction"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'confirm', - kind: 'scalar', - T: 8, + name: "confirm", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ - }, + } ]); static fromBinary(bytes, options) { return new _CascadeOpenBrowserSetupInteraction().fromBinary(bytes, options); } static fromJson(jsonValue, options) { - return new _CascadeOpenBrowserSetupInteraction().fromJson( - jsonValue, - options, - ); + return new _CascadeOpenBrowserSetupInteraction().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _CascadeOpenBrowserSetupInteraction().fromJsonString( - jsonString, - options, - ); + return new _CascadeOpenBrowserSetupInteraction().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_CascadeOpenBrowserSetupInteraction, a, b); @@ -51566,33 +45186,24 @@ var CascadeConfirmBrowserSetupInteraction = class _CascadeConfirmBrowserSetupInt proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CascadeConfirmBrowserSetupInteraction'; + static typeName = "exa.cortex_pb.CascadeConfirmBrowserSetupInteraction"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'confirm', - kind: 'scalar', - T: 8, + name: "confirm", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ - }, + } ]); static fromBinary(bytes, options) { - return new _CascadeConfirmBrowserSetupInteraction().fromBinary( - bytes, - options, - ); + return new _CascadeConfirmBrowserSetupInteraction().fromBinary(bytes, options); } static fromJson(jsonValue, options) { - return new _CascadeConfirmBrowserSetupInteraction().fromJson( - jsonValue, - options, - ); + return new _CascadeConfirmBrowserSetupInteraction().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _CascadeConfirmBrowserSetupInteraction().fromJsonString( - jsonString, - options, - ); + return new _CascadeConfirmBrowserSetupInteraction().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_CascadeConfirmBrowserSetupInteraction, a, b); @@ -51608,30 +45219,24 @@ var CascadeSendCommandInputInteraction = class _CascadeSendCommandInputInteracti proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CascadeSendCommandInputInteraction'; + static typeName = "exa.cortex_pb.CascadeSendCommandInputInteraction"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'confirm', - kind: 'scalar', - T: 8, + name: "confirm", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ - }, + } ]); static fromBinary(bytes, options) { return new _CascadeSendCommandInputInteraction().fromBinary(bytes, options); } static fromJson(jsonValue, options) { - return new _CascadeSendCommandInputInteraction().fromJson( - jsonValue, - options, - ); + return new _CascadeSendCommandInputInteraction().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _CascadeSendCommandInputInteraction().fromJsonString( - jsonString, - options, - ); + return new _CascadeSendCommandInputInteraction().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_CascadeSendCommandInputInteraction, a, b); @@ -51647,15 +45252,15 @@ var CascadeReadUrlContentInteraction = class _CascadeReadUrlContentInteraction e proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CascadeReadUrlContentInteraction'; + static typeName = "exa.cortex_pb.CascadeReadUrlContentInteraction"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'confirm', - kind: 'scalar', - T: 8, + name: "confirm", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ - }, + } ]); static fromBinary(bytes, options) { return new _CascadeReadUrlContentInteraction().fromBinary(bytes, options); @@ -51664,10 +45269,7 @@ var CascadeReadUrlContentInteraction = class _CascadeReadUrlContentInteraction e return new _CascadeReadUrlContentInteraction().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _CascadeReadUrlContentInteraction().fromJsonString( - jsonString, - options, - ); + return new _CascadeReadUrlContentInteraction().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_CascadeReadUrlContentInteraction, a, b); @@ -51683,15 +45285,15 @@ var CascadeMcpInteraction = class _CascadeMcpInteraction extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CascadeMcpInteraction'; + static typeName = "exa.cortex_pb.CascadeMcpInteraction"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'confirm', - kind: 'scalar', - T: 8, + name: "confirm", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ - }, + } ]); static fromBinary(bytes, options) { return new _CascadeMcpInteraction().fromBinary(bytes, options); @@ -51720,34 +45322,29 @@ var FilePermissionInteraction = class _FilePermissionInteraction extends Message /** * @generated from field: string absolute_path_uri = 3; */ - absolutePathUri = ''; + absolutePathUri = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.FilePermissionInteraction'; + static typeName = "exa.cortex_pb.FilePermissionInteraction"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'allow', - kind: 'scalar', - T: 8, + name: "allow", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, - { - no: 2, - name: 'scope', - kind: 'enum', - T: proto3.getEnumType(PermissionScope), - }, + { no: 2, name: "scope", kind: "enum", T: proto3.getEnumType(PermissionScope) }, { no: 3, - name: 'absolute_path_uri', - kind: 'scalar', - T: 9, + name: "absolute_path_uri", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _FilePermissionInteraction().fromBinary(bytes, options); @@ -51772,15 +45369,9 @@ var CascadeDeployInteractionSpec = class _CascadeDeployInteractionSpec extends M proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CascadeDeployInteractionSpec'; + static typeName = "exa.cortex_pb.CascadeDeployInteractionSpec"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'deploy_target_options', - kind: 'message', - T: DeployTarget, - repeated: true, - }, + { no: 1, name: "deploy_target_options", kind: "message", T: DeployTarget, repeated: true } ]); static fromBinary(bytes, options) { return new _CascadeDeployInteractionSpec().fromBinary(bytes, options); @@ -51789,10 +45380,7 @@ var CascadeDeployInteractionSpec = class _CascadeDeployInteractionSpec extends M return new _CascadeDeployInteractionSpec().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _CascadeDeployInteractionSpec().fromJsonString( - jsonString, - options, - ); + return new _CascadeDeployInteractionSpec().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_CascadeDeployInteractionSpec, a, b); @@ -51804,7 +45392,7 @@ var CascadeRunCommandInteractionSpec = class _CascadeRunCommandInteractionSpec e proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CascadeRunCommandInteractionSpec'; + static typeName = "exa.cortex_pb.CascadeRunCommandInteractionSpec"; static fields = proto3.util.newFieldList(() => []); static fromBinary(bytes, options) { return new _CascadeRunCommandInteractionSpec().fromBinary(bytes, options); @@ -51813,10 +45401,7 @@ var CascadeRunCommandInteractionSpec = class _CascadeRunCommandInteractionSpec e return new _CascadeRunCommandInteractionSpec().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _CascadeRunCommandInteractionSpec().fromJsonString( - jsonString, - options, - ); + return new _CascadeRunCommandInteractionSpec().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_CascadeRunCommandInteractionSpec, a, b); @@ -51828,25 +45413,16 @@ var CascadeOpenBrowserUrlInteractionSpec = class _CascadeOpenBrowserUrlInteracti proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CascadeOpenBrowserUrlInteractionSpec'; + static typeName = "exa.cortex_pb.CascadeOpenBrowserUrlInteractionSpec"; static fields = proto3.util.newFieldList(() => []); static fromBinary(bytes, options) { - return new _CascadeOpenBrowserUrlInteractionSpec().fromBinary( - bytes, - options, - ); + return new _CascadeOpenBrowserUrlInteractionSpec().fromBinary(bytes, options); } static fromJson(jsonValue, options) { - return new _CascadeOpenBrowserUrlInteractionSpec().fromJson( - jsonValue, - options, - ); + return new _CascadeOpenBrowserUrlInteractionSpec().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _CascadeOpenBrowserUrlInteractionSpec().fromJsonString( - jsonString, - options, - ); + return new _CascadeOpenBrowserUrlInteractionSpec().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_CascadeOpenBrowserUrlInteractionSpec, a, b); @@ -51858,25 +45434,16 @@ var CascadeRunExtensionCodeInteractionSpec = class _CascadeRunExtensionCodeInter proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CascadeRunExtensionCodeInteractionSpec'; + static typeName = "exa.cortex_pb.CascadeRunExtensionCodeInteractionSpec"; static fields = proto3.util.newFieldList(() => []); static fromBinary(bytes, options) { - return new _CascadeRunExtensionCodeInteractionSpec().fromBinary( - bytes, - options, - ); + return new _CascadeRunExtensionCodeInteractionSpec().fromBinary(bytes, options); } static fromJson(jsonValue, options) { - return new _CascadeRunExtensionCodeInteractionSpec().fromJson( - jsonValue, - options, - ); + return new _CascadeRunExtensionCodeInteractionSpec().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _CascadeRunExtensionCodeInteractionSpec().fromJsonString( - jsonString, - options, - ); + return new _CascadeRunExtensionCodeInteractionSpec().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_CascadeRunExtensionCodeInteractionSpec, a, b); @@ -51888,33 +45455,19 @@ var CascadeExecuteBrowserJavaScriptInteractionSpec = class _CascadeExecuteBrowse proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = - 'exa.cortex_pb.CascadeExecuteBrowserJavaScriptInteractionSpec'; + static typeName = "exa.cortex_pb.CascadeExecuteBrowserJavaScriptInteractionSpec"; static fields = proto3.util.newFieldList(() => []); static fromBinary(bytes, options) { - return new _CascadeExecuteBrowserJavaScriptInteractionSpec().fromBinary( - bytes, - options, - ); + return new _CascadeExecuteBrowserJavaScriptInteractionSpec().fromBinary(bytes, options); } static fromJson(jsonValue, options) { - return new _CascadeExecuteBrowserJavaScriptInteractionSpec().fromJson( - jsonValue, - options, - ); + return new _CascadeExecuteBrowserJavaScriptInteractionSpec().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _CascadeExecuteBrowserJavaScriptInteractionSpec().fromJsonString( - jsonString, - options, - ); + return new _CascadeExecuteBrowserJavaScriptInteractionSpec().fromJsonString(jsonString, options); } static equals(a, b) { - return proto3.util.equals( - _CascadeExecuteBrowserJavaScriptInteractionSpec, - a, - b, - ); + return proto3.util.equals(_CascadeExecuteBrowserJavaScriptInteractionSpec, a, b); } }; var CascadeCaptureBrowserScreenshotInteractionSpec = class _CascadeCaptureBrowserScreenshotInteractionSpec extends Message { @@ -51923,33 +45476,19 @@ var CascadeCaptureBrowserScreenshotInteractionSpec = class _CascadeCaptureBrowse proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = - 'exa.cortex_pb.CascadeCaptureBrowserScreenshotInteractionSpec'; + static typeName = "exa.cortex_pb.CascadeCaptureBrowserScreenshotInteractionSpec"; static fields = proto3.util.newFieldList(() => []); static fromBinary(bytes, options) { - return new _CascadeCaptureBrowserScreenshotInteractionSpec().fromBinary( - bytes, - options, - ); + return new _CascadeCaptureBrowserScreenshotInteractionSpec().fromBinary(bytes, options); } static fromJson(jsonValue, options) { - return new _CascadeCaptureBrowserScreenshotInteractionSpec().fromJson( - jsonValue, - options, - ); + return new _CascadeCaptureBrowserScreenshotInteractionSpec().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _CascadeCaptureBrowserScreenshotInteractionSpec().fromJsonString( - jsonString, - options, - ); + return new _CascadeCaptureBrowserScreenshotInteractionSpec().fromJsonString(jsonString, options); } static equals(a, b) { - return proto3.util.equals( - _CascadeCaptureBrowserScreenshotInteractionSpec, - a, - b, - ); + return proto3.util.equals(_CascadeCaptureBrowserScreenshotInteractionSpec, a, b); } }; var CascadeClickBrowserPixelInteractionSpec = class _CascadeClickBrowserPixelInteractionSpec extends Message { @@ -51958,25 +45497,16 @@ var CascadeClickBrowserPixelInteractionSpec = class _CascadeClickBrowserPixelInt proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CascadeClickBrowserPixelInteractionSpec'; + static typeName = "exa.cortex_pb.CascadeClickBrowserPixelInteractionSpec"; static fields = proto3.util.newFieldList(() => []); static fromBinary(bytes, options) { - return new _CascadeClickBrowserPixelInteractionSpec().fromBinary( - bytes, - options, - ); + return new _CascadeClickBrowserPixelInteractionSpec().fromBinary(bytes, options); } static fromJson(jsonValue, options) { - return new _CascadeClickBrowserPixelInteractionSpec().fromJson( - jsonValue, - options, - ); + return new _CascadeClickBrowserPixelInteractionSpec().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _CascadeClickBrowserPixelInteractionSpec().fromJsonString( - jsonString, - options, - ); + return new _CascadeClickBrowserPixelInteractionSpec().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_CascadeClickBrowserPixelInteractionSpec, a, b); @@ -51986,50 +45516,41 @@ var CascadeTaskResolutionInteractionSpec = class _CascadeTaskResolutionInteracti /** * @generated from field: string title = 1; */ - title = ''; + title = ""; /** * @generated from field: string description = 2; */ - description = ''; + description = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CascadeTaskResolutionInteractionSpec'; + static typeName = "exa.cortex_pb.CascadeTaskResolutionInteractionSpec"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'title', - kind: 'scalar', - T: 9, + name: "title", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'description', - kind: 'scalar', - T: 9, + name: "description", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { - return new _CascadeTaskResolutionInteractionSpec().fromBinary( - bytes, - options, - ); + return new _CascadeTaskResolutionInteractionSpec().fromBinary(bytes, options); } static fromJson(jsonValue, options) { - return new _CascadeTaskResolutionInteractionSpec().fromJson( - jsonValue, - options, - ); + return new _CascadeTaskResolutionInteractionSpec().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _CascadeTaskResolutionInteractionSpec().fromJsonString( - jsonString, - options, - ); + return new _CascadeTaskResolutionInteractionSpec().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_CascadeTaskResolutionInteractionSpec, a, b); @@ -52041,25 +45562,16 @@ var CascadeSendCommandInputInteractionSpec = class _CascadeSendCommandInputInter proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CascadeSendCommandInputInteractionSpec'; + static typeName = "exa.cortex_pb.CascadeSendCommandInputInteractionSpec"; static fields = proto3.util.newFieldList(() => []); static fromBinary(bytes, options) { - return new _CascadeSendCommandInputInteractionSpec().fromBinary( - bytes, - options, - ); + return new _CascadeSendCommandInputInteractionSpec().fromBinary(bytes, options); } static fromJson(jsonValue, options) { - return new _CascadeSendCommandInputInteractionSpec().fromJson( - jsonValue, - options, - ); + return new _CascadeSendCommandInputInteractionSpec().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _CascadeSendCommandInputInteractionSpec().fromJsonString( - jsonString, - options, - ); + return new _CascadeSendCommandInputInteractionSpec().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_CascadeSendCommandInputInteractionSpec, a, b); @@ -52071,25 +45583,16 @@ var CascadeReadUrlContentInteractionSpec = class _CascadeReadUrlContentInteracti proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CascadeReadUrlContentInteractionSpec'; + static typeName = "exa.cortex_pb.CascadeReadUrlContentInteractionSpec"; static fields = proto3.util.newFieldList(() => []); static fromBinary(bytes, options) { - return new _CascadeReadUrlContentInteractionSpec().fromBinary( - bytes, - options, - ); + return new _CascadeReadUrlContentInteractionSpec().fromBinary(bytes, options); } static fromJson(jsonValue, options) { - return new _CascadeReadUrlContentInteractionSpec().fromJson( - jsonValue, - options, - ); + return new _CascadeReadUrlContentInteractionSpec().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _CascadeReadUrlContentInteractionSpec().fromJsonString( - jsonString, - options, - ); + return new _CascadeReadUrlContentInteractionSpec().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_CascadeReadUrlContentInteractionSpec, a, b); @@ -52101,7 +45604,7 @@ var CascadeMcpInteractionSpec = class _CascadeMcpInteractionSpec extends Message proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CascadeMcpInteractionSpec'; + static typeName = "exa.cortex_pb.CascadeMcpInteractionSpec"; static fields = proto3.util.newFieldList(() => []); static fromBinary(bytes, options) { return new _CascadeMcpInteractionSpec().fromBinary(bytes, options); @@ -52120,7 +45623,7 @@ var FilePermissionInteractionSpec = class _FilePermissionInteractionSpec extends /** * @generated from field: string absolute_path_uri = 1; */ - absolutePathUri = ''; + absolutePathUri = ""; /** * @generated from field: bool is_directory = 2; */ @@ -52134,28 +45637,23 @@ var FilePermissionInteractionSpec = class _FilePermissionInteractionSpec extends proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.FilePermissionInteractionSpec'; + static typeName = "exa.cortex_pb.FilePermissionInteractionSpec"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'absolute_path_uri', - kind: 'scalar', - T: 9, + name: "absolute_path_uri", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'is_directory', - kind: 'scalar', - T: 8, + name: "is_directory", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, - { - no: 3, - name: 'block_reason', - kind: 'enum', - T: proto3.getEnumType(FilePermissionInteractionSpec_BlockReason), - }, + { no: 3, name: "block_reason", kind: "enum", T: proto3.getEnumType(FilePermissionInteractionSpec_BlockReason) } ]); static fromBinary(bytes, options) { return new _FilePermissionInteractionSpec().fromBinary(bytes, options); @@ -52164,39 +45662,23 @@ var FilePermissionInteractionSpec = class _FilePermissionInteractionSpec extends return new _FilePermissionInteractionSpec().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _FilePermissionInteractionSpec().fromJsonString( - jsonString, - options, - ); + return new _FilePermissionInteractionSpec().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_FilePermissionInteractionSpec, a, b); } }; var FilePermissionInteractionSpec_BlockReason; -(function (FilePermissionInteractionSpec_BlockReason2) { - FilePermissionInteractionSpec_BlockReason2[ - (FilePermissionInteractionSpec_BlockReason2['UNSPECIFIED'] = 0) - ] = 'UNSPECIFIED'; - FilePermissionInteractionSpec_BlockReason2[ - (FilePermissionInteractionSpec_BlockReason2['OUTSIDE_WORKSPACE'] = 1) - ] = 'OUTSIDE_WORKSPACE'; - FilePermissionInteractionSpec_BlockReason2[ - (FilePermissionInteractionSpec_BlockReason2['GITIGNORED'] = 2) - ] = 'GITIGNORED'; -})( - FilePermissionInteractionSpec_BlockReason || - (FilePermissionInteractionSpec_BlockReason = {}), -); -proto3.util.setEnumType( - FilePermissionInteractionSpec_BlockReason, - 'exa.cortex_pb.FilePermissionInteractionSpec.BlockReason', - [ - { no: 0, name: 'BLOCK_REASON_UNSPECIFIED' }, - { no: 1, name: 'BLOCK_REASON_OUTSIDE_WORKSPACE' }, - { no: 2, name: 'BLOCK_REASON_GITIGNORED' }, - ], -); +(function(FilePermissionInteractionSpec_BlockReason2) { + FilePermissionInteractionSpec_BlockReason2[FilePermissionInteractionSpec_BlockReason2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + FilePermissionInteractionSpec_BlockReason2[FilePermissionInteractionSpec_BlockReason2["OUTSIDE_WORKSPACE"] = 1] = "OUTSIDE_WORKSPACE"; + FilePermissionInteractionSpec_BlockReason2[FilePermissionInteractionSpec_BlockReason2["GITIGNORED"] = 2] = "GITIGNORED"; +})(FilePermissionInteractionSpec_BlockReason || (FilePermissionInteractionSpec_BlockReason = {})); +proto3.util.setEnumType(FilePermissionInteractionSpec_BlockReason, "exa.cortex_pb.FilePermissionInteractionSpec.BlockReason", [ + { no: 0, name: "BLOCK_REASON_UNSPECIFIED" }, + { no: 1, name: "BLOCK_REASON_OUTSIDE_WORKSPACE" }, + { no: 2, name: "BLOCK_REASON_GITIGNORED" } +]); var RequestedInteraction = class _RequestedInteraction extends Message { /** * @generated from oneof exa.cortex_pb.RequestedInteraction.interaction @@ -52207,106 +45689,22 @@ var RequestedInteraction = class _RequestedInteraction extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.RequestedInteraction'; + static typeName = "exa.cortex_pb.RequestedInteraction"; static fields = proto3.util.newFieldList(() => [ - { - no: 2, - name: 'deploy', - kind: 'message', - T: CascadeDeployInteractionSpec, - oneof: 'interaction', - }, - { - no: 3, - name: 'run_command', - kind: 'message', - T: CascadeRunCommandInteractionSpec, - oneof: 'interaction', - }, - { - no: 4, - name: 'open_browser_url', - kind: 'message', - T: CascadeOpenBrowserUrlInteractionSpec, - oneof: 'interaction', - }, - { - no: 5, - name: 'run_extension_code', - kind: 'message', - T: CascadeRunExtensionCodeInteractionSpec, - oneof: 'interaction', - }, - { - no: 7, - name: 'execute_browser_javascript', - kind: 'message', - T: CascadeExecuteBrowserJavaScriptInteractionSpec, - oneof: 'interaction', - }, - { - no: 8, - name: 'capture_browser_screenshot', - kind: 'message', - T: CascadeCaptureBrowserScreenshotInteractionSpec, - oneof: 'interaction', - }, - { - no: 9, - name: 'click_browser_pixel', - kind: 'message', - T: CascadeClickBrowserPixelInteractionSpec, - oneof: 'interaction', - }, - { - no: 13, - name: 'browser_action', - kind: 'message', - T: CascadeBrowserActionInteraction, - oneof: 'interaction', - }, - { - no: 14, - name: 'open_browser_setup', - kind: 'message', - T: CascadeOpenBrowserSetupInteraction, - oneof: 'interaction', - }, - { - no: 15, - name: 'confirm_browser_setup', - kind: 'message', - T: CascadeConfirmBrowserSetupInteraction, - oneof: 'interaction', - }, - { - no: 16, - name: 'send_command_input', - kind: 'message', - T: CascadeSendCommandInputInteractionSpec, - oneof: 'interaction', - }, - { - no: 17, - name: 'read_url_content', - kind: 'message', - T: CascadeReadUrlContentInteractionSpec, - oneof: 'interaction', - }, - { - no: 18, - name: 'mcp', - kind: 'message', - T: CascadeMcpInteractionSpec, - oneof: 'interaction', - }, - { - no: 19, - name: 'file_permission', - kind: 'message', - T: FilePermissionInteractionSpec, - oneof: 'interaction', - }, + { no: 2, name: "deploy", kind: "message", T: CascadeDeployInteractionSpec, oneof: "interaction" }, + { no: 3, name: "run_command", kind: "message", T: CascadeRunCommandInteractionSpec, oneof: "interaction" }, + { no: 4, name: "open_browser_url", kind: "message", T: CascadeOpenBrowserUrlInteractionSpec, oneof: "interaction" }, + { no: 5, name: "run_extension_code", kind: "message", T: CascadeRunExtensionCodeInteractionSpec, oneof: "interaction" }, + { no: 7, name: "execute_browser_javascript", kind: "message", T: CascadeExecuteBrowserJavaScriptInteractionSpec, oneof: "interaction" }, + { no: 8, name: "capture_browser_screenshot", kind: "message", T: CascadeCaptureBrowserScreenshotInteractionSpec, oneof: "interaction" }, + { no: 9, name: "click_browser_pixel", kind: "message", T: CascadeClickBrowserPixelInteractionSpec, oneof: "interaction" }, + { no: 13, name: "browser_action", kind: "message", T: CascadeBrowserActionInteraction, oneof: "interaction" }, + { no: 14, name: "open_browser_setup", kind: "message", T: CascadeOpenBrowserSetupInteraction, oneof: "interaction" }, + { no: 15, name: "confirm_browser_setup", kind: "message", T: CascadeConfirmBrowserSetupInteraction, oneof: "interaction" }, + { no: 16, name: "send_command_input", kind: "message", T: CascadeSendCommandInputInteractionSpec, oneof: "interaction" }, + { no: 17, name: "read_url_content", kind: "message", T: CascadeReadUrlContentInteractionSpec, oneof: "interaction" }, + { no: 18, name: "mcp", kind: "message", T: CascadeMcpInteractionSpec, oneof: "interaction" }, + { no: 19, name: "file_permission", kind: "message", T: FilePermissionInteractionSpec, oneof: "interaction" } ]); static fromBinary(bytes, options) { return new _RequestedInteraction().fromBinary(bytes, options); @@ -52325,7 +45723,7 @@ var CascadeUserInteraction = class _CascadeUserInteraction extends Message { /** * @generated from field: string trajectory_id = 1; */ - trajectoryId = ''; + trajectoryId = ""; /** * @generated from field: uint32 step_index = 2; */ @@ -52339,120 +45737,36 @@ var CascadeUserInteraction = class _CascadeUserInteraction extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CascadeUserInteraction'; + static typeName = "exa.cortex_pb.CascadeUserInteraction"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'trajectory_id', - kind: 'scalar', - T: 9, + name: "trajectory_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'step_index', - kind: 'scalar', - T: 13, + name: "step_index", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, - { - no: 4, - name: 'deploy', - kind: 'message', - T: CascadeDeployInteraction, - oneof: 'interaction', - }, - { - no: 5, - name: 'run_command', - kind: 'message', - T: CascadeRunCommandInteraction, - oneof: 'interaction', - }, - { - no: 6, - name: 'open_browser_url', - kind: 'message', - T: CascadeOpenBrowserUrlInteraction, - oneof: 'interaction', - }, - { - no: 7, - name: 'run_extension_code', - kind: 'message', - T: CascadeRunExtensionCodeInteraction, - oneof: 'interaction', - }, - { - no: 8, - name: 'execute_browser_javascript', - kind: 'message', - T: CascadeExecuteBrowserJavaScriptInteraction, - oneof: 'interaction', - }, - { - no: 9, - name: 'capture_browser_screenshot', - kind: 'message', - T: CascadeCaptureBrowserScreenshotInteraction, - oneof: 'interaction', - }, - { - no: 10, - name: 'click_browser_pixel', - kind: 'message', - T: CascadeClickBrowserPixelInteraction, - oneof: 'interaction', - }, - { - no: 13, - name: 'browser_action', - kind: 'message', - T: CascadeBrowserActionInteraction, - oneof: 'interaction', - }, - { - no: 14, - name: 'open_browser_setup', - kind: 'message', - T: CascadeOpenBrowserSetupInteraction, - oneof: 'interaction', - }, - { - no: 15, - name: 'confirm_browser_setup', - kind: 'message', - T: CascadeConfirmBrowserSetupInteraction, - oneof: 'interaction', - }, - { - no: 16, - name: 'send_command_input', - kind: 'message', - T: CascadeSendCommandInputInteraction, - oneof: 'interaction', - }, - { - no: 17, - name: 'read_url_content', - kind: 'message', - T: CascadeReadUrlContentInteraction, - oneof: 'interaction', - }, - { - no: 18, - name: 'mcp', - kind: 'message', - T: CascadeMcpInteraction, - oneof: 'interaction', - }, - { - no: 19, - name: 'file_permission', - kind: 'message', - T: FilePermissionInteraction, - oneof: 'interaction', - }, + { no: 4, name: "deploy", kind: "message", T: CascadeDeployInteraction, oneof: "interaction" }, + { no: 5, name: "run_command", kind: "message", T: CascadeRunCommandInteraction, oneof: "interaction" }, + { no: 6, name: "open_browser_url", kind: "message", T: CascadeOpenBrowserUrlInteraction, oneof: "interaction" }, + { no: 7, name: "run_extension_code", kind: "message", T: CascadeRunExtensionCodeInteraction, oneof: "interaction" }, + { no: 8, name: "execute_browser_javascript", kind: "message", T: CascadeExecuteBrowserJavaScriptInteraction, oneof: "interaction" }, + { no: 9, name: "capture_browser_screenshot", kind: "message", T: CascadeCaptureBrowserScreenshotInteraction, oneof: "interaction" }, + { no: 10, name: "click_browser_pixel", kind: "message", T: CascadeClickBrowserPixelInteraction, oneof: "interaction" }, + { no: 13, name: "browser_action", kind: "message", T: CascadeBrowserActionInteraction, oneof: "interaction" }, + { no: 14, name: "open_browser_setup", kind: "message", T: CascadeOpenBrowserSetupInteraction, oneof: "interaction" }, + { no: 15, name: "confirm_browser_setup", kind: "message", T: CascadeConfirmBrowserSetupInteraction, oneof: "interaction" }, + { no: 16, name: "send_command_input", kind: "message", T: CascadeSendCommandInputInteraction, oneof: "interaction" }, + { no: 17, name: "read_url_content", kind: "message", T: CascadeReadUrlContentInteraction, oneof: "interaction" }, + { no: 18, name: "mcp", kind: "message", T: CascadeMcpInteraction, oneof: "interaction" }, + { no: 19, name: "file_permission", kind: "message", T: FilePermissionInteraction, oneof: "interaction" } ]); static fromBinary(bytes, options) { return new _CascadeUserInteraction().fromBinary(bytes, options); @@ -52477,17 +45791,11 @@ var KnowledgeReference = class _KnowledgeReference extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.KnowledgeReference'; + static typeName = "exa.cortex_pb.KnowledgeReference"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'file_path', kind: 'scalar', T: 9, oneof: 'reference' }, - { - no: 2, - name: 'conversation_id', - kind: 'scalar', - T: 9, - oneof: 'reference', - }, - { no: 3, name: 'url', kind: 'scalar', T: 9, oneof: 'reference' }, + { no: 1, name: "file_path", kind: "scalar", T: 9, oneof: "reference" }, + { no: 2, name: "conversation_id", kind: "scalar", T: 9, oneof: "reference" }, + { no: 3, name: "url", kind: "scalar", T: 9, oneof: "reference" } ]); static fromBinary(bytes, options) { return new _KnowledgeReference().fromBinary(bytes, options); @@ -52512,15 +45820,9 @@ var KnowledgeReferences = class _KnowledgeReferences extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.KnowledgeReferences'; + static typeName = "exa.cortex_pb.KnowledgeReferences"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'references', - kind: 'message', - T: KnowledgeReference, - repeated: true, - }, + { no: 1, name: "references", kind: "message", T: KnowledgeReference, repeated: true } ]); static fromBinary(bytes, options) { return new _KnowledgeReferences().fromBinary(bytes, options); @@ -52547,15 +45849,9 @@ var CortexStepKIInsertion = class _CortexStepKIInsertion extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexStepKIInsertion'; + static typeName = "exa.cortex_pb.CortexStepKIInsertion"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'ki_references', - kind: 'map', - K: 9, - V: { kind: 'message', T: KnowledgeReferences }, - }, + { no: 1, name: "ki_references", kind: "map", K: 9, V: { kind: "message", T: KnowledgeReferences } } ]); static fromBinary(bytes, options) { return new _CortexStepKIInsertion().fromBinary(bytes, options); @@ -52584,22 +45880,22 @@ var CortexStepDummy = class _CortexStepDummy extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexStepDummy'; + static typeName = "exa.cortex_pb.CortexStepDummy"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'input', - kind: 'scalar', - T: 13, + name: "input", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, { no: 2, - name: 'output', - kind: 'scalar', - T: 13, + name: "output", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ - }, + } ]); static fromBinary(bytes, options) { return new _CortexStepDummy().fromBinary(bytes, options); @@ -52622,32 +45918,26 @@ var CortexStepFinish = class _CortexStepFinish extends Message { /** * @generated from field: string output_string = 2; */ - outputString = ''; + outputString = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexStepFinish'; + static typeName = "exa.cortex_pb.CortexStepFinish"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'output', - kind: 'map', - K: 9, - V: { - kind: 'scalar', - T: 9, - /* ScalarType.STRING */ - }, - }, + { no: 1, name: "output", kind: "map", K: 9, V: { + kind: "scalar", + T: 9 + /* ScalarType.STRING */ + } }, { no: 2, - name: 'output_string', - kind: 'scalar', - T: 9, + name: "output_string", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _CortexStepFinish().fromBinary(bytes, options); @@ -52676,16 +45966,16 @@ var CortexStepPlanInput = class _CortexStepPlanInput extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexStepPlanInput'; + static typeName = "exa.cortex_pb.CortexStepPlanInput"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'plan_input', kind: 'message', T: PlanInput }, + { no: 1, name: "plan_input", kind: "message", T: PlanInput }, { no: 2, - name: 'user_provided', - kind: 'scalar', - T: 8, + name: "user_provided", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ - }, + } ]); static fromBinary(bytes, options) { return new _CortexStepPlanInput().fromBinary(bytes, options); @@ -52704,18 +45994,18 @@ var ArtifactSnapshot = class _ArtifactSnapshot extends Message { /** * @generated from field: string artifact_name = 1; */ - artifactName = ''; + artifactName = ""; /** * Content is only populated if the artifact is a text file. Might not be * populated at all, depending on the method used to generate the snapshot. * * @generated from field: string content = 2; */ - content = ''; + content = ""; /** * @generated from field: string artifact_absolute_uri = 3; */ - artifactAbsoluteUri = ''; + artifactAbsoluteUri = ""; /** * @generated from field: google.protobuf.Timestamp last_edited = 4; */ @@ -52729,31 +46019,31 @@ var ArtifactSnapshot = class _ArtifactSnapshot extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.ArtifactSnapshot'; + static typeName = "exa.cortex_pb.ArtifactSnapshot"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'artifact_name', - kind: 'scalar', - T: 9, + name: "artifact_name", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'content', - kind: 'scalar', - T: 9, + name: "content", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 3, - name: 'artifact_absolute_uri', - kind: 'scalar', - T: 9, + name: "artifact_absolute_uri", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 4, name: 'last_edited', kind: 'message', T: Timestamp }, - { no: 5, name: 'review_state', kind: 'message', T: ArtifactReviewState }, + { no: 4, name: "last_edited", kind: "message", T: Timestamp }, + { no: 5, name: "review_state", kind: "message", T: ArtifactReviewState } ]); static fromBinary(bytes, options) { return new _ArtifactSnapshot().fromBinary(bytes, options); @@ -52802,25 +46092,25 @@ var CortexStepCheckpoint = class _CortexStepCheckpoint extends Message { * * @generated from field: string conversation_title = 10; */ - conversationTitle = ''; + conversationTitle = ""; /** * Summary of user's objective and goals * * @generated from field: string user_intent = 4; */ - userIntent = ''; + userIntent = ""; /** * Summary of the key context and findings in the included steps * * @generated from field: string session_summary = 5; */ - sessionSummary = ''; + sessionSummary = ""; /** * Summary of code edited and viewed during the included steps * * @generated from field: string code_change_summary = 6; */ - codeChangeSummary = ''; + codeChangeSummary = ""; /** * Indicates that all model-based summarization attempts failed. * @@ -52863,119 +46153,95 @@ var CortexStepCheckpoint = class _CortexStepCheckpoint extends Message { * @generated from field: string memory_summary = 8 [deprecated = true]; * @deprecated */ - memorySummary = ''; + memorySummary = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexStepCheckpoint'; + static typeName = "exa.cortex_pb.CortexStepCheckpoint"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'checkpoint_index', - kind: 'scalar', - T: 13, + name: "checkpoint_index", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, { no: 9, - name: 'intent_only', - kind: 'scalar', - T: 8, + name: "intent_only", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 11, - name: 'included_step_index_start', - kind: 'scalar', - T: 13, + name: "included_step_index_start", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, { no: 12, - name: 'included_step_index_end', - kind: 'scalar', - T: 13, + name: "included_step_index_end", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, { no: 10, - name: 'conversation_title', - kind: 'scalar', - T: 9, + name: "conversation_title", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 4, - name: 'user_intent', - kind: 'scalar', - T: 9, + name: "user_intent", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 5, - name: 'session_summary', - kind: 'scalar', - T: 9, + name: "session_summary", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 6, - name: 'code_change_summary', - kind: 'scalar', - T: 9, + name: "code_change_summary", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 16, - name: 'model_summarization_failed', - kind: 'scalar', - T: 8, + name: "model_summarization_failed", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 17, - name: 'used_fallback_summary', - kind: 'scalar', - T: 8, + name: "used_fallback_summary", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, - { - no: 14, - name: 'artifact_snapshots', - kind: 'message', - T: ArtifactSnapshot, - repeated: true, - }, - { - no: 15, - name: 'conversation_log_uris', - kind: 'scalar', - T: 9, - repeated: true, - }, - { - no: 7, - name: 'edited_file_map', - kind: 'map', - K: 9, - V: { kind: 'message', T: DiffList }, - }, - { - no: 3, - name: 'included_step_indices', - kind: 'scalar', - T: 13, - repeated: true, - }, + { no: 14, name: "artifact_snapshots", kind: "message", T: ArtifactSnapshot, repeated: true }, + { no: 15, name: "conversation_log_uris", kind: "scalar", T: 9, repeated: true }, + { no: 7, name: "edited_file_map", kind: "map", K: 9, V: { kind: "message", T: DiffList } }, + { no: 3, name: "included_step_indices", kind: "scalar", T: 13, repeated: true }, { no: 8, - name: 'memory_summary', - kind: 'scalar', - T: 9, + name: "memory_summary", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _CortexStepCheckpoint().fromBinary(bytes, options); @@ -53063,53 +46329,48 @@ var CheckpointConfig = class _CheckpointConfig extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CheckpointConfig'; + static typeName = "exa.cortex_pb.CheckpointConfig"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'token_threshold', - kind: 'scalar', - T: 13, + name: "token_threshold", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, { no: 3, - name: 'max_overhead_ratio', - kind: 'scalar', - T: 2, + name: "max_overhead_ratio", + kind: "scalar", + T: 2 /* ScalarType.FLOAT */ }, { no: 4, - name: 'moving_window_size', - kind: 'scalar', - T: 13, + name: "moving_window_size", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, { no: 5, - name: 'max_token_limit', - kind: 'scalar', - T: 13, + name: "max_token_limit", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, { no: 11, - name: 'max_output_tokens', - kind: 'scalar', - T: 13, + name: "max_output_tokens", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, - { - no: 7, - name: 'checkpoint_model', - kind: 'enum', - T: proto3.getEnumType(Model), - }, - { no: 6, name: 'enabled', kind: 'scalar', T: 8, opt: true }, - { no: 13, name: 'full_async', kind: 'scalar', T: 8, opt: true }, - { no: 14, name: 'retry_config', kind: 'message', T: ModelAPIRetryConfig }, - { no: 15, name: 'enable_fallback', kind: 'scalar', T: 8, opt: true }, + { no: 7, name: "checkpoint_model", kind: "enum", T: proto3.getEnumType(Model) }, + { no: 6, name: "enabled", kind: "scalar", T: 8, opt: true }, + { no: 13, name: "full_async", kind: "scalar", T: 8, opt: true }, + { no: 14, name: "retry_config", kind: "message", T: ModelAPIRetryConfig }, + { no: 15, name: "enable_fallback", kind: "scalar", T: 8, opt: true } ]); static fromBinary(bytes, options) { return new _CheckpointConfig().fromBinary(bytes, options); @@ -53155,36 +46416,25 @@ var CortexStepMquery = class _CortexStepMquery extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexStepMquery'; + static typeName = "exa.cortex_pb.CortexStepMquery"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'input', kind: 'message', T: PlanInput }, - { - no: 2, - name: 'ccis', - kind: 'message', - T: CciWithSubrangeWithRetrievalMetadata, - repeated: true, - }, + { no: 1, name: "input", kind: "message", T: PlanInput }, + { no: 2, name: "ccis", kind: "message", T: CciWithSubrangeWithRetrievalMetadata, repeated: true }, { no: 3, - name: 'num_tokens_processed', - kind: 'scalar', - T: 13, + name: "num_tokens_processed", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, { no: 4, - name: 'num_items_scored', - kind: 'scalar', - T: 13, + name: "num_items_scored", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, - { - no: 5, - name: 'search_type', - kind: 'enum', - T: proto3.getEnumType(SemanticCodebaseSearchType), - }, + { no: 5, name: "search_type", kind: "enum", T: proto3.getEnumType(SemanticCodebaseSearchType) } ]); static fromBinary(bytes, options) { return new _CortexStepMquery().fromBinary(bytes, options); @@ -53209,7 +46459,7 @@ var ReplacementChunkInfo = class _ReplacementChunkInfo extends Message { * * @generated from field: string fuzzy_match = 2; */ - fuzzyMatch = ''; + fuzzyMatch = ""; /** * @generated from field: int32 edit_distance = 3; */ @@ -53245,7 +46495,7 @@ var ReplacementChunkInfo = class _ReplacementChunkInfo extends Message { * * @generated from field: string error_str = 9; */ - errorStr = ''; + errorStr = ""; /** * If we will attempt to fix this error with fast apply. * @@ -53263,79 +46513,79 @@ var ReplacementChunkInfo = class _ReplacementChunkInfo extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.ReplacementChunkInfo'; + static typeName = "exa.cortex_pb.ReplacementChunkInfo"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'original_chunk', kind: 'message', T: ReplacementChunk }, + { no: 1, name: "original_chunk", kind: "message", T: ReplacementChunk }, { no: 2, - name: 'fuzzy_match', - kind: 'scalar', - T: 9, + name: "fuzzy_match", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 3, - name: 'edit_distance', - kind: 'scalar', - T: 5, + name: "edit_distance", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, { no: 4, - name: 'rel_edit_distance', - kind: 'scalar', - T: 2, + name: "rel_edit_distance", + kind: "scalar", + T: 2 /* ScalarType.FLOAT */ }, { no: 5, - name: 'num_matches', - kind: 'scalar', - T: 13, + name: "num_matches", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, { no: 7, - name: 'is_non_exact', - kind: 'scalar', - T: 8, + name: "is_non_exact", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 8, - name: 'boundary_lines_match', - kind: 'scalar', - T: 8, + name: "boundary_lines_match", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 6, - name: 'error', - kind: 'scalar', - T: 8, + name: "error", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 9, - name: 'error_str', - kind: 'scalar', - T: 9, + name: "error_str", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 10, - name: 'fast_apply_fixable', - kind: 'scalar', - T: 8, + name: "fast_apply_fixable", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 11, - name: 'use_global_match', - kind: 'scalar', - T: 8, + name: "use_global_match", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ - }, + } ]); static fromBinary(bytes, options) { return new _ReplacementChunkInfo().fromBinary(bytes, options); @@ -53358,7 +46608,7 @@ var FastApplyFallbackInfo = class _FastApplyFallbackInfo extends Message { /** * @generated from field: string fallback_error = 2; */ - fallbackError = ''; + fallbackError = ""; /** * @generated from field: exa.cortex_pb.ActionResult fast_apply_result = 3; */ @@ -53370,7 +46620,7 @@ var FastApplyFallbackInfo = class _FastApplyFallbackInfo extends Message { /** * @generated from field: string fast_apply_prompt = 5; */ - fastApplyPrompt = ''; + fastApplyPrompt = ""; /** * Number of lines of change that fast apply made outside of the allowed edit * radius that were masked out. @@ -53390,50 +46640,45 @@ var FastApplyFallbackInfo = class _FastApplyFallbackInfo extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.FastApplyFallbackInfo'; + static typeName = "exa.cortex_pb.FastApplyFallbackInfo"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'fallback_attempted', - kind: 'scalar', - T: 8, + name: "fallback_attempted", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 2, - name: 'fallback_error', - kind: 'scalar', - T: 9, + name: "fallback_error", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 3, name: 'fast_apply_result', kind: 'message', T: ActionResult }, - { - no: 4, - name: 'heuristic_failure', - kind: 'enum', - T: proto3.getEnumType(CodeHeuristicFailure), - }, + { no: 3, name: "fast_apply_result", kind: "message", T: ActionResult }, + { no: 4, name: "heuristic_failure", kind: "enum", T: proto3.getEnumType(CodeHeuristicFailure) }, { no: 5, - name: 'fast_apply_prompt', - kind: 'scalar', - T: 9, + name: "fast_apply_prompt", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 6, - name: 'num_fast_apply_edits_masked', - kind: 'scalar', - T: 13, + name: "num_fast_apply_edits_masked", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, { no: 7, - name: 'fallback_match_had_no_diff', - kind: 'scalar', - T: 8, + name: "fallback_match_had_no_diff", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ - }, + } ]); static fromBinary(bytes, options) { return new _FastApplyFallbackInfo().fromBinary(bytes, options); @@ -53477,11 +46722,11 @@ var CortexStepCodeAction = class _CortexStepCodeAction extends Message { /** * @generated from field: string code_instruction = 8; */ - codeInstruction = ''; + codeInstruction = ""; /** * @generated from field: string markdown_language = 9; */ - markdownLanguage = ''; + markdownLanguage = ""; /** * New lint errors that were generated while applying the action. * @@ -53541,7 +46786,7 @@ var CortexStepCodeAction = class _CortexStepCodeAction extends Message { * * @generated from field: string triggered_memories = 19; */ - triggeredMemories = ''; + triggeredMemories = ""; /** * True if the code action is on an artifact file. * @@ -53578,133 +46823,83 @@ var CortexStepCodeAction = class _CortexStepCodeAction extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexStepCodeAction'; + static typeName = "exa.cortex_pb.CortexStepCodeAction"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'action_spec', kind: 'message', T: ActionSpec }, - { no: 2, name: 'action_result', kind: 'message', T: ActionResult }, + { no: 1, name: "action_spec", kind: "message", T: ActionSpec }, + { no: 2, name: "action_result", kind: "message", T: ActionResult }, { no: 4, - name: 'use_fast_apply', - kind: 'scalar', - T: 8, + name: "use_fast_apply", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, - { - no: 5, - name: 'acknowledgement_type', - kind: 'enum', - T: proto3.getEnumType(AcknowledgementType), - }, - { - no: 7, - name: 'heuristic_failure', - kind: 'enum', - T: proto3.getEnumType(CodeHeuristicFailure), - }, + { no: 5, name: "acknowledgement_type", kind: "enum", T: proto3.getEnumType(AcknowledgementType) }, + { no: 7, name: "heuristic_failure", kind: "enum", T: proto3.getEnumType(CodeHeuristicFailure) }, { no: 8, - name: 'code_instruction', - kind: 'scalar', - T: 9, + name: "code_instruction", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 9, - name: 'markdown_language', - kind: 'scalar', - T: 9, + name: "markdown_language", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { - no: 11, - name: 'lint_errors', - kind: 'message', - T: CodeDiagnostic, - repeated: true, - }, - { - no: 12, - name: 'persistent_lint_errors', - kind: 'message', - T: CodeDiagnostic, - repeated: true, - }, - { - no: 13, - name: 'replacement_infos', - kind: 'message', - T: ReplacementChunkInfo, - repeated: true, - }, - { - no: 14, - name: 'lint_error_ids_aiming_to_fix', - kind: 'scalar', - T: 9, - repeated: true, - }, - { - no: 15, - name: 'fast_apply_fallback_info', - kind: 'message', - T: FastApplyFallbackInfo, - }, + { no: 11, name: "lint_errors", kind: "message", T: CodeDiagnostic, repeated: true }, + { no: 12, name: "persistent_lint_errors", kind: "message", T: CodeDiagnostic, repeated: true }, + { no: 13, name: "replacement_infos", kind: "message", T: ReplacementChunkInfo, repeated: true }, + { no: 14, name: "lint_error_ids_aiming_to_fix", kind: "scalar", T: 9, repeated: true }, + { no: 15, name: "fast_apply_fallback_info", kind: "message", T: FastApplyFallbackInfo }, { no: 16, - name: 'target_file_has_carriage_returns', - kind: 'scalar', - T: 8, + name: "target_file_has_carriage_returns", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 17, - name: 'target_file_has_all_carriage_returns', - kind: 'scalar', - T: 8, + name: "target_file_has_all_carriage_returns", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, - { - no: 18, - name: 'introduced_errors', - kind: 'message', - T: CortexStepCompileDiagnostic, - repeated: true, - }, + { no: 18, name: "introduced_errors", kind: "message", T: CortexStepCompileDiagnostic, repeated: true }, { no: 19, - name: 'triggered_memories', - kind: 'scalar', - T: 9, + name: "triggered_memories", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 21, - name: 'is_artifact_file', - kind: 'scalar', - T: 8, + name: "is_artifact_file", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 22, - name: 'artifact_version', - kind: 'scalar', - T: 5, + name: "artifact_version", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, - { no: 23, name: 'artifact_metadata', kind: 'message', T: ArtifactMetadata }, + { no: 23, name: "artifact_metadata", kind: "message", T: ArtifactMetadata }, { no: 24, - name: 'is_knowledge_file', - kind: 'scalar', - T: 8, + name: "is_knowledge_file", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, - { - no: 25, - name: 'file_permission_request', - kind: 'message', - T: FilePermissionInteractionSpec, - }, + { no: 25, name: "file_permission_request", kind: "message", T: FilePermissionInteractionSpec } ]); static fromBinary(bytes, options) { return new _CortexStepCodeAction().fromBinary(bytes, options); @@ -53725,7 +46920,7 @@ var CortexStepFileChange = class _CortexStepFileChange extends Message { * * @generated from field: string absolute_path_uri = 1; */ - absolutePathUri = ''; + absolutePathUri = ""; /** * The type of file change. * @@ -53746,7 +46941,7 @@ var CortexStepFileChange = class _CortexStepFileChange extends Message { * * @generated from field: string instruction = 5; */ - instruction = ''; + instruction = ""; /** * The diff applied to the file. * @@ -53776,56 +46971,34 @@ var CortexStepFileChange = class _CortexStepFileChange extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexStepFileChange'; + static typeName = "exa.cortex_pb.CortexStepFileChange"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'absolute_path_uri', - kind: 'scalar', - T: 9, + name: "absolute_path_uri", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { - no: 2, - name: 'file_change_type', - kind: 'enum', - T: proto3.getEnumType(FileChangeType), - }, - { - no: 3, - name: 'replacement_chunks', - kind: 'message', - T: ReplacementChunk, - repeated: true, - }, + { no: 2, name: "file_change_type", kind: "enum", T: proto3.getEnumType(FileChangeType) }, + { no: 3, name: "replacement_chunks", kind: "message", T: ReplacementChunk, repeated: true }, { no: 5, - name: 'instruction', - kind: 'scalar', - T: 9, + name: "instruction", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 4, name: 'diff', kind: 'message', T: DiffBlock }, - { - no: 6, - name: 'replacement_infos', - kind: 'message', - T: ReplacementChunkInfo, - repeated: true, - }, - { - no: 7, - name: 'fast_apply_fallback_info', - kind: 'message', - T: FastApplyFallbackInfo, - }, + { no: 4, name: "diff", kind: "message", T: DiffBlock }, + { no: 6, name: "replacement_infos", kind: "message", T: ReplacementChunkInfo, repeated: true }, + { no: 7, name: "fast_apply_fallback_info", kind: "message", T: FastApplyFallbackInfo }, { no: 8, - name: 'overwrite', - kind: 'scalar', - T: 8, + name: "overwrite", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ - }, + } ]); static fromBinary(bytes, options) { return new _CortexStepFileChange().fromBinary(bytes, options); @@ -53846,34 +47019,34 @@ var CortexStepMove = class _CortexStepMove extends Message { * * @generated from field: string src_absolute_path_uri = 1; */ - srcAbsolutePathUri = ''; + srcAbsolutePathUri = ""; /** * The absolute path to the destination location. * * @generated from field: string dst_absolute_path_uri = 2; */ - dstAbsolutePathUri = ''; + dstAbsolutePathUri = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexStepMove'; + static typeName = "exa.cortex_pb.CortexStepMove"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'src_absolute_path_uri', - kind: 'scalar', - T: 9, + name: "src_absolute_path_uri", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'dst_absolute_path_uri', - kind: 'scalar', - T: 9, + name: "dst_absolute_path_uri", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _CortexStepMove().fromBinary(bytes, options); @@ -53894,7 +47067,7 @@ var CortexStepEphemeralMessage = class _CortexStepEphemeralMessage extends Messa * * @generated from field: string content = 1; */ - content = ''; + content = ""; /** * Optional media (ex. images) included with the message. * @@ -53920,37 +47093,31 @@ var CortexStepEphemeralMessage = class _CortexStepEphemeralMessage extends Messa * * @generated from field: string dom_tree_uri = 5; */ - domTreeUri = ''; + domTreeUri = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexStepEphemeralMessage'; + static typeName = "exa.cortex_pb.CortexStepEphemeralMessage"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'content', - kind: 'scalar', - T: 9, + name: "content", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 2, name: 'media', kind: 'message', T: Media, repeated: true }, - { - no: 3, - name: 'triggered_heuristics', - kind: 'scalar', - T: 9, - repeated: true, - }, - { no: 4, name: 'attachments', kind: 'message', T: Media, repeated: true }, + { no: 2, name: "media", kind: "message", T: Media, repeated: true }, + { no: 3, name: "triggered_heuristics", kind: "scalar", T: 9, repeated: true }, + { no: 4, name: "attachments", kind: "message", T: Media, repeated: true }, { no: 5, - name: 'dom_tree_uri', - kind: 'scalar', - T: 9, + name: "dom_tree_uri", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _CortexStepEphemeralMessage().fromBinary(bytes, options); @@ -53959,10 +47126,7 @@ var CortexStepEphemeralMessage = class _CortexStepEphemeralMessage extends Messa return new _CortexStepEphemeralMessage().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _CortexStepEphemeralMessage().fromJsonString( - jsonString, - options, - ); + return new _CortexStepEphemeralMessage().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_CortexStepEphemeralMessage, a, b); @@ -53974,21 +47138,21 @@ var CortexStepConversationHistory = class _CortexStepConversationHistory extends * * @generated from field: string content = 1; */ - content = ''; + content = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexStepConversationHistory'; + static typeName = "exa.cortex_pb.CortexStepConversationHistory"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'content', - kind: 'scalar', - T: 9, + name: "content", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _CortexStepConversationHistory().fromBinary(bytes, options); @@ -53997,10 +47161,7 @@ var CortexStepConversationHistory = class _CortexStepConversationHistory extends return new _CortexStepConversationHistory().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _CortexStepConversationHistory().fromJsonString( - jsonString, - options, - ); + return new _CortexStepConversationHistory().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_CortexStepConversationHistory, a, b); @@ -54012,21 +47173,21 @@ var CortexStepKnowledgeArtifacts = class _CortexStepKnowledgeArtifacts extends M * * @generated from field: string content = 1; */ - content = ''; + content = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexStepKnowledgeArtifacts'; + static typeName = "exa.cortex_pb.CortexStepKnowledgeArtifacts"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'content', - kind: 'scalar', - T: 9, + name: "content", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _CortexStepKnowledgeArtifacts().fromBinary(bytes, options); @@ -54035,10 +47196,7 @@ var CortexStepKnowledgeArtifacts = class _CortexStepKnowledgeArtifacts extends M return new _CortexStepKnowledgeArtifacts().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _CortexStepKnowledgeArtifacts().fromJsonString( - jsonString, - options, - ); + return new _CortexStepKnowledgeArtifacts().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_CortexStepKnowledgeArtifacts, a, b); @@ -54058,34 +47216,34 @@ var CortexStepProposeCode = class _CortexStepProposeCode extends Message { * * @generated from field: string code_instruction = 3; */ - codeInstruction = ''; + codeInstruction = ""; /** * @generated from field: string markdown_language = 4; */ - markdownLanguage = ''; + markdownLanguage = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexStepProposeCode'; + static typeName = "exa.cortex_pb.CortexStepProposeCode"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'action_spec', kind: 'message', T: ActionSpec }, - { no: 2, name: 'action_result', kind: 'message', T: ActionResult }, + { no: 1, name: "action_spec", kind: "message", T: ActionSpec }, + { no: 2, name: "action_result", kind: "message", T: ActionResult }, { no: 3, - name: 'code_instruction', - kind: 'scalar', - T: 9, + name: "code_instruction", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 4, - name: 'markdown_language', - kind: 'scalar', - T: 9, + name: "markdown_language", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _CortexStepProposeCode().fromBinary(bytes, options); @@ -54110,33 +47268,33 @@ var CortexStepGitCommit = class _CortexStepGitCommit extends Message { /** * @generated from field: string commit_message = 2; */ - commitMessage = ''; + commitMessage = ""; /** * @generated from field: string commit_hash = 3; */ - commitHash = ''; + commitHash = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexStepGitCommit'; + static typeName = "exa.cortex_pb.CortexStepGitCommit"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'input', kind: 'message', T: PlanInput }, + { no: 1, name: "input", kind: "message", T: PlanInput }, { no: 2, - name: 'commit_message', - kind: 'scalar', - T: 9, + name: "commit_message", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 3, - name: 'commit_hash', - kind: 'scalar', - T: 9, + name: "commit_hash", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _CortexStepGitCommit().fromBinary(bytes, options); @@ -54155,7 +47313,7 @@ var GrepSearchResult = class _GrepSearchResult extends Message { /** * @generated from field: string relative_path = 1; */ - relativePath = ''; + relativePath = ""; /** * 0-indexed * @@ -54165,11 +47323,11 @@ var GrepSearchResult = class _GrepSearchResult extends Message { /** * @generated from field: string content = 3; */ - content = ''; + content = ""; /** * @generated from field: string absolute_path = 4; */ - absolutePath = ''; + absolutePath = ""; /** * @generated from field: exa.codeium_common_pb.CodeContextItem cci = 5; */ @@ -54179,37 +47337,37 @@ var GrepSearchResult = class _GrepSearchResult extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.GrepSearchResult'; + static typeName = "exa.cortex_pb.GrepSearchResult"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'relative_path', - kind: 'scalar', - T: 9, + name: "relative_path", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'line_number', - kind: 'scalar', - T: 13, + name: "line_number", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, { no: 3, - name: 'content', - kind: 'scalar', - T: 9, + name: "content", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 4, - name: 'absolute_path', - kind: 'scalar', - T: 9, + name: "absolute_path", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 5, name: 'cci', kind: 'message', T: CodeContextItem }, + { no: 5, name: "cci", kind: "message", T: CodeContextItem } ]); static fromBinary(bytes, options) { return new _GrepSearchResult().fromBinary(bytes, options); @@ -54234,15 +47392,15 @@ var DiffBasedCommandEvalConfig = class _DiffBasedCommandEvalConfig extends Messa proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.DiffBasedCommandEvalConfig'; + static typeName = "exa.cortex_pb.DiffBasedCommandEvalConfig"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'num_samples_per_commit', - kind: 'scalar', - T: 13, + name: "num_samples_per_commit", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ - }, + } ]); static fromBinary(bytes, options) { return new _DiffBasedCommandEvalConfig().fromBinary(bytes, options); @@ -54251,10 +47409,7 @@ var DiffBasedCommandEvalConfig = class _DiffBasedCommandEvalConfig extends Messa return new _DiffBasedCommandEvalConfig().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _DiffBasedCommandEvalConfig().fromJsonString( - jsonString, - options, - ); + return new _DiffBasedCommandEvalConfig().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_DiffBasedCommandEvalConfig, a, b); @@ -54268,11 +47423,11 @@ var CortexStepGrepSearch = class _CortexStepGrepSearch extends Message { * * @generated from field: string search_path_uri = 11; */ - searchPathUri = ''; + searchPathUri = ""; /** * @generated from field: string query = 1; */ - query = ''; + query = ""; /** * @generated from field: bool match_per_line = 8; */ @@ -54316,13 +47471,13 @@ var CortexStepGrepSearch = class _CortexStepGrepSearch extends Message { * * @generated from field: string raw_output = 3; */ - rawOutput = ''; + rawOutput = ""; /** * The command that was run. * * @generated from field: string command_run = 10; */ - commandRun = ''; + commandRun = ""; /** * Indicates no files were searched * @@ -54345,112 +47500,101 @@ var CortexStepGrepSearch = class _CortexStepGrepSearch extends Message { * @generated from field: string grep_error = 5 [deprecated = true]; * @deprecated */ - grepError = ''; + grepError = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexStepGrepSearch'; + static typeName = "exa.cortex_pb.CortexStepGrepSearch"; static fields = proto3.util.newFieldList(() => [ { no: 11, - name: 'search_path_uri', - kind: 'scalar', - T: 9, + name: "search_path_uri", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 1, - name: 'query', - kind: 'scalar', - T: 9, + name: "query", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 8, - name: 'match_per_line', - kind: 'scalar', - T: 8, + name: "match_per_line", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, - { no: 2, name: 'includes', kind: 'scalar', T: 9, repeated: true }, + { no: 2, name: "includes", kind: "scalar", T: 9, repeated: true }, { no: 9, - name: 'case_insensitive', - kind: 'scalar', - T: 8, + name: "case_insensitive", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 13, - name: 'allow_access_gitignore', - kind: 'scalar', - T: 8, + name: "allow_access_gitignore", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 14, - name: 'is_regex', - kind: 'scalar', - T: 8, + name: "is_regex", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, - { - no: 4, - name: 'results', - kind: 'message', - T: GrepSearchResult, - repeated: true, - }, + { no: 4, name: "results", kind: "message", T: GrepSearchResult, repeated: true }, { no: 7, - name: 'total_results', - kind: 'scalar', - T: 13, + name: "total_results", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, { no: 3, - name: 'raw_output', - kind: 'scalar', - T: 9, + name: "raw_output", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 10, - name: 'command_run', - kind: 'scalar', - T: 9, + name: "command_run", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 12, - name: 'no_files_searched', - kind: 'scalar', - T: 8, + name: "no_files_searched", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 15, - name: 'timed_out', - kind: 'scalar', - T: 8, + name: "timed_out", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, - { - no: 16, - name: 'file_permission_request', - kind: 'message', - T: FilePermissionInteractionSpec, - }, + { no: 16, name: "file_permission_request", kind: "message", T: FilePermissionInteractionSpec }, { no: 5, - name: 'grep_error', - kind: 'scalar', - T: 9, + name: "grep_error", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _CortexStepGrepSearch().fromBinary(bytes, options); @@ -54473,13 +47617,13 @@ var CortexStepFind = class _CortexStepFind extends Message { * * @generated from field: string search_directory = 10; */ - searchDirectory = ''; + searchDirectory = ""; /** * the search pattern (supports regex) * * @generated from field: string pattern = 1; */ - pattern = ''; + pattern = ""; /** * glob patterns to exclude * @@ -54517,7 +47661,7 @@ var CortexStepFind = class _CortexStepFind extends Message { * * @generated from field: string truncated_output = 14; */ - truncatedOutput = ''; + truncatedOutput = ""; /** * Number of truncated results. * @@ -54535,13 +47679,13 @@ var CortexStepFind = class _CortexStepFind extends Message { * * @generated from field: string raw_output = 11; */ - rawOutput = ''; + rawOutput = ""; /** * The command that was run. * * @generated from field: string command_run = 9; */ - commandRun = ''; + commandRun = ""; /** * Deprecated fields. * @@ -54555,93 +47699,88 @@ var CortexStepFind = class _CortexStepFind extends Message { * @generated from field: string find_error = 8 [deprecated = true]; * @deprecated */ - findError = ''; + findError = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexStepFind'; + static typeName = "exa.cortex_pb.CortexStepFind"; static fields = proto3.util.newFieldList(() => [ { no: 10, - name: 'search_directory', - kind: 'scalar', - T: 9, + name: "search_directory", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 1, - name: 'pattern', - kind: 'scalar', - T: 9, + name: "pattern", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 3, name: 'excludes', kind: 'scalar', T: 9, repeated: true }, - { - no: 4, - name: 'type', - kind: 'enum', - T: proto3.getEnumType(FindResultType), - }, + { no: 3, name: "excludes", kind: "scalar", T: 9, repeated: true }, + { no: 4, name: "type", kind: "enum", T: proto3.getEnumType(FindResultType) }, { no: 5, - name: 'max_depth', - kind: 'scalar', - T: 5, + name: "max_depth", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, - { no: 12, name: 'extensions', kind: 'scalar', T: 9, repeated: true }, + { no: 12, name: "extensions", kind: "scalar", T: 9, repeated: true }, { no: 13, - name: 'full_path', - kind: 'scalar', - T: 8, + name: "full_path", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 14, - name: 'truncated_output', - kind: 'scalar', - T: 9, + name: "truncated_output", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 15, - name: 'truncated_total_results', - kind: 'scalar', - T: 13, + name: "truncated_total_results", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, { no: 7, - name: 'total_results', - kind: 'scalar', - T: 13, + name: "total_results", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, { no: 11, - name: 'raw_output', - kind: 'scalar', - T: 9, + name: "raw_output", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 9, - name: 'command_run', - kind: 'scalar', - T: 9, + name: "command_run", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 2, name: 'includes', kind: 'scalar', T: 9, repeated: true }, + { no: 2, name: "includes", kind: "scalar", T: 9, repeated: true }, { no: 8, - name: 'find_error', - kind: 'scalar', - T: 9, + name: "find_error", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _CortexStepFind().fromBinary(bytes, options); @@ -54660,7 +47799,7 @@ var CortexStepViewFile = class _CortexStepViewFile extends Message { /** * @generated from field: string absolute_path_uri = 1; */ - absolutePathUri = ''; + absolutePathUri = ""; /** * 0-indexed, inclusive * @@ -54676,13 +47815,13 @@ var CortexStepViewFile = class _CortexStepViewFile extends Message { /** * @generated from field: string content = 4; */ - content = ''; + content = ""; /** * Full raw content of the file. * * @generated from field: string raw_content = 9; */ - rawContent = ''; + rawContent = ""; /** * Deprecated use media_data * @@ -54702,7 +47841,7 @@ var CortexStepViewFile = class _CortexStepViewFile extends Message { * * @generated from field: string triggered_memories = 10; */ - triggeredMemories = ''; + triggeredMemories = ""; /** * The total number of lines in the file. * @@ -54730,79 +47869,74 @@ var CortexStepViewFile = class _CortexStepViewFile extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexStepViewFile'; + static typeName = "exa.cortex_pb.CortexStepViewFile"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'absolute_path_uri', - kind: 'scalar', - T: 9, + name: "absolute_path_uri", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'start_line', - kind: 'scalar', - T: 13, + name: "start_line", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, { no: 3, - name: 'end_line', - kind: 'scalar', - T: 13, + name: "end_line", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, { no: 4, - name: 'content', - kind: 'scalar', - T: 9, + name: "content", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 9, - name: 'raw_content', - kind: 'scalar', - T: 9, + name: "raw_content", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 14, name: 'binary_data', kind: 'message', T: ImageData }, - { no: 15, name: 'media_data', kind: 'message', T: Media }, + { no: 14, name: "binary_data", kind: "message", T: ImageData }, + { no: 15, name: "media_data", kind: "message", T: Media }, { no: 10, - name: 'triggered_memories', - kind: 'scalar', - T: 9, + name: "triggered_memories", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 11, - name: 'num_lines', - kind: 'scalar', - T: 13, + name: "num_lines", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, { no: 12, - name: 'num_bytes', - kind: 'scalar', - T: 13, + name: "num_bytes", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, { no: 13, - name: 'is_injected_reminder', - kind: 'scalar', - T: 8, + name: "is_injected_reminder", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, - { - no: 16, - name: 'file_permission_request', - kind: 'message', - T: FilePermissionInteractionSpec, - }, + { no: 16, name: "file_permission_request", kind: "message", T: FilePermissionInteractionSpec } ]); static fromBinary(bytes, options) { return new _CortexStepViewFile().fromBinary(bytes, options); @@ -54821,7 +47955,7 @@ var ListDirectoryResult = class _ListDirectoryResult extends Message { /** * @generated from field: string name = 1; */ - name = ''; + name = ""; /** * @generated from field: bool is_dir = 2; */ @@ -54844,30 +47978,30 @@ var ListDirectoryResult = class _ListDirectoryResult extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.ListDirectoryResult'; + static typeName = "exa.cortex_pb.ListDirectoryResult"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'name', - kind: 'scalar', - T: 9, + name: "name", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'is_dir', - kind: 'scalar', - T: 8, + name: "is_dir", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, - { no: 3, name: 'num_children', kind: 'scalar', T: 13, opt: true }, + { no: 3, name: "num_children", kind: "scalar", T: 13, opt: true }, { no: 4, - name: 'size_bytes', - kind: 'scalar', - T: 4, + name: "size_bytes", + kind: "scalar", + T: 4 /* ScalarType.UINT64 */ - }, + } ]); static fromBinary(bytes, options) { return new _ListDirectoryResult().fromBinary(bytes, options); @@ -54886,7 +48020,7 @@ var CortexStepListDirectory = class _CortexStepListDirectory extends Message { /** * @generated from field: string directory_path_uri = 1; */ - directoryPathUri = ''; + directoryPathUri = ""; /** * Children are relative to the directory. * @@ -54912,36 +48046,25 @@ var CortexStepListDirectory = class _CortexStepListDirectory extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexStepListDirectory'; + static typeName = "exa.cortex_pb.CortexStepListDirectory"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'directory_path_uri', - kind: 'scalar', - T: 9, + name: "directory_path_uri", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 2, name: 'children', kind: 'scalar', T: 9, repeated: true }, - { - no: 3, - name: 'results', - kind: 'message', - T: ListDirectoryResult, - repeated: true, - }, + { no: 2, name: "children", kind: "scalar", T: 9, repeated: true }, + { no: 3, name: "results", kind: "message", T: ListDirectoryResult, repeated: true }, { no: 4, - name: 'dir_not_found', - kind: 'scalar', - T: 8, + name: "dir_not_found", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, - { - no: 5, - name: 'file_permission_request', - kind: 'message', - T: FilePermissionInteractionSpec, - }, + { no: 5, name: "file_permission_request", kind: "message", T: FilePermissionInteractionSpec } ]); static fromBinary(bytes, options) { return new _CortexStepListDirectory().fromBinary(bytes, options); @@ -54960,7 +48083,7 @@ var CortexStepDeleteDirectory = class _CortexStepDeleteDirectory extends Message /** * @generated from field: string directory_path_uri = 1; */ - directoryPathUri = ''; + directoryPathUri = ""; /** * If true, recursively delete all files and subdirectories * If false, only delete empty directories, @@ -54974,22 +48097,22 @@ var CortexStepDeleteDirectory = class _CortexStepDeleteDirectory extends Message proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexStepDeleteDirectory'; + static typeName = "exa.cortex_pb.CortexStepDeleteDirectory"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'directory_path_uri', - kind: 'scalar', - T: 9, + name: "directory_path_uri", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'force', - kind: 'scalar', - T: 8, + name: "force", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ - }, + } ]); static fromBinary(bytes, options) { return new _CortexStepDeleteDirectory().fromBinary(bytes, options); @@ -55008,11 +48131,11 @@ var CortexStepCompileDiagnostic = class _CortexStepCompileDiagnostic extends Mes /** * @generated from field: string message = 1; */ - message = ''; + message = ""; /** * @generated from field: string path = 2; */ - path = ''; + path = ""; /** * @generated from field: uint32 line = 3; */ @@ -55027,49 +48150,49 @@ var CortexStepCompileDiagnostic = class _CortexStepCompileDiagnostic extends Mes * * @generated from field: string symbol = 5; */ - symbol = ''; + symbol = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexStepCompileDiagnostic'; + static typeName = "exa.cortex_pb.CortexStepCompileDiagnostic"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'message', - kind: 'scalar', - T: 9, + name: "message", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'path', - kind: 'scalar', - T: 9, + name: "path", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 3, - name: 'line', - kind: 'scalar', - T: 13, + name: "line", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, { no: 4, - name: 'column', - kind: 'scalar', - T: 13, + name: "column", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, { no: 5, - name: 'symbol', - kind: 'scalar', - T: 9, + name: "symbol", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _CortexStepCompileDiagnostic().fromBinary(bytes, options); @@ -55078,10 +48201,7 @@ var CortexStepCompileDiagnostic = class _CortexStepCompileDiagnostic extends Mes return new _CortexStepCompileDiagnostic().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _CortexStepCompileDiagnostic().fromJsonString( - jsonString, - options, - ); + return new _CortexStepCompileDiagnostic().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_CortexStepCompileDiagnostic, a, b); @@ -55099,7 +48219,7 @@ var CortexStepCompile = class _CortexStepCompile extends Message { * * @generated from field: string input_spec = 2; */ - inputSpec = ''; + inputSpec = ""; /** * The compilation tools can take various options to customize their behavior. * However, running compile without options should work on most codebases. @@ -55112,13 +48232,13 @@ var CortexStepCompile = class _CortexStepCompile extends Message { * * @generated from field: string target = 4; */ - target = ''; + target = ""; /** * The path to the actual build artifact, if any. * * @generated from field: string artifact_path = 5; */ - artifactPath = ''; + artifactPath = ""; /** * Whether the build target is an executable. * @@ -55138,67 +48258,44 @@ var CortexStepCompile = class _CortexStepCompile extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexStepCompile'; + static typeName = "exa.cortex_pb.CortexStepCompile"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'tool', - kind: 'enum', - T: proto3.getEnumType(CortexStepCompileTool), - }, + { no: 1, name: "tool", kind: "enum", T: proto3.getEnumType(CortexStepCompileTool) }, { no: 2, - name: 'input_spec', - kind: 'scalar', - T: 9, + name: "input_spec", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { - no: 3, - name: 'options', - kind: 'map', - K: 9, - V: { - kind: 'scalar', - T: 9, - /* ScalarType.STRING */ - }, - }, + { no: 3, name: "options", kind: "map", K: 9, V: { + kind: "scalar", + T: 9 + /* ScalarType.STRING */ + } }, { no: 4, - name: 'target', - kind: 'scalar', - T: 9, + name: "target", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 5, - name: 'artifact_path', - kind: 'scalar', - T: 9, + name: "artifact_path", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 6, - name: 'artifact_is_executable', - kind: 'scalar', - T: 8, + name: "artifact_is_executable", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, - { - no: 7, - name: 'errors', - kind: 'message', - T: CortexStepCompileDiagnostic, - repeated: true, - }, - { - no: 8, - name: 'warnings', - kind: 'message', - T: CortexStepCompileDiagnostic, - repeated: true, - }, + { no: 7, name: "errors", kind: "message", T: CortexStepCompileDiagnostic, repeated: true }, + { no: 8, name: "warnings", kind: "message", T: CortexStepCompileDiagnostic, repeated: true } ]); static fromBinary(bytes, options) { return new _CortexStepCompile().fromBinary(bytes, options); @@ -55219,34 +48316,34 @@ var CortexStepCompileApplet = class _CortexStepCompileApplet extends Message { * * @generated from field: string error_message = 1; */ - errorMessage = ''; + errorMessage = ""; /** * Build logs, populated when build fails. * * @generated from field: string logs = 3; */ - logs = ''; + logs = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexStepCompileApplet'; + static typeName = "exa.cortex_pb.CortexStepCompileApplet"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'error_message', - kind: 'scalar', - T: 9, + name: "error_message", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 3, - name: 'logs', - kind: 'scalar', - T: 9, + name: "logs", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _CortexStepCompileApplet().fromBinary(bytes, options); @@ -55267,52 +48364,43 @@ var CortexStepInstallAppletDependencies = class _CortexStepInstallAppletDependen * * @generated from field: string error_message = 1; */ - errorMessage = ''; + errorMessage = ""; /** * Logs from the install. * * @generated from field: string logs = 2; */ - logs = ''; + logs = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexStepInstallAppletDependencies'; + static typeName = "exa.cortex_pb.CortexStepInstallAppletDependencies"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'error_message', - kind: 'scalar', - T: 9, + name: "error_message", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'logs', - kind: 'scalar', - T: 9, + name: "logs", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { - return new _CortexStepInstallAppletDependencies().fromBinary( - bytes, - options, - ); + return new _CortexStepInstallAppletDependencies().fromBinary(bytes, options); } static fromJson(jsonValue, options) { - return new _CortexStepInstallAppletDependencies().fromJson( - jsonValue, - options, - ); + return new _CortexStepInstallAppletDependencies().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _CortexStepInstallAppletDependencies().fromJsonString( - jsonString, - options, - ); + return new _CortexStepInstallAppletDependencies().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_CortexStepInstallAppletDependencies, a, b); @@ -55325,19 +48413,19 @@ var CortexStepInstallAppletPackage = class _CortexStepInstallAppletPackage exten * @generated from field: string package_name = 1 [deprecated = true]; * @deprecated */ - packageName = ''; + packageName = ""; /** * Error message from the install, if any. * * @generated from field: string error_message = 2; */ - errorMessage = ''; + errorMessage = ""; /** * Logs from the install. * * @generated from field: string logs = 3; */ - logs = ''; + logs = ""; /** * Whether the packages are dev dependencies. * @@ -55355,37 +48443,37 @@ var CortexStepInstallAppletPackage = class _CortexStepInstallAppletPackage exten proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexStepInstallAppletPackage'; + static typeName = "exa.cortex_pb.CortexStepInstallAppletPackage"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'package_name', - kind: 'scalar', - T: 9, + name: "package_name", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'error_message', - kind: 'scalar', - T: 9, + name: "error_message", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 3, - name: 'logs', - kind: 'scalar', - T: 9, + name: "logs", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 4, - name: 'is_dev_dependency', - kind: 'scalar', - T: 8, + name: "is_dev_dependency", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, - { no: 5, name: 'package_names', kind: 'scalar', T: 9, repeated: true }, + { no: 5, name: "package_names", kind: "scalar", T: 9, repeated: true } ]); static fromBinary(bytes, options) { return new _CortexStepInstallAppletPackage().fromBinary(bytes, options); @@ -55394,10 +48482,7 @@ var CortexStepInstallAppletPackage = class _CortexStepInstallAppletPackage exten return new _CortexStepInstallAppletPackage().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _CortexStepInstallAppletPackage().fromJsonString( - jsonString, - options, - ); + return new _CortexStepInstallAppletPackage().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_CortexStepInstallAppletPackage, a, b); @@ -55409,7 +48494,7 @@ var CortexStepSetUpFirebase = class _CortexStepSetUpFirebase extends Message { * * @generated from field: string error_message = 1; */ - errorMessage = ''; + errorMessage = ""; /** * Error code from the setup, if any. These codes are canonical error codes * (see: go/canonical-codes) that map to google3/google/rpc/code.proto @@ -55447,35 +48532,20 @@ var CortexStepSetUpFirebase = class _CortexStepSetUpFirebase extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexStepSetUpFirebase'; + static typeName = "exa.cortex_pb.CortexStepSetUpFirebase"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'error_message', - kind: 'scalar', - T: 9, + name: "error_message", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { - no: 6, - name: 'rpc_error_code', - kind: 'enum', - T: proto3.getEnumType(SetUpFirebaseErrorCode), - }, - { no: 7, name: 'firebase_project_id', kind: 'scalar', T: 9, opt: true }, - { - no: 2, - name: 'request', - kind: 'enum', - T: proto3.getEnumType(SetUpFirebaseRequest), - }, - { - no: 3, - name: 'result', - kind: 'enum', - T: proto3.getEnumType(SetUpFirebaseResult), - }, - { no: 4, name: 'app_config', kind: 'message', T: SetUpFirebaseAppConfig }, + { no: 6, name: "rpc_error_code", kind: "enum", T: proto3.getEnumType(SetUpFirebaseErrorCode) }, + { no: 7, name: "firebase_project_id", kind: "scalar", T: 9, opt: true }, + { no: 2, name: "request", kind: "enum", T: proto3.getEnumType(SetUpFirebaseRequest) }, + { no: 3, name: "result", kind: "enum", T: proto3.getEnumType(SetUpFirebaseResult) }, + { no: 4, name: "app_config", kind: "message", T: SetUpFirebaseAppConfig } ]); static fromBinary(bytes, options) { return new _CortexStepSetUpFirebase().fromBinary(bytes, options); @@ -55496,21 +48566,21 @@ var SetUpFirebaseAppConfig = class _SetUpFirebaseAppConfig extends Message { * * @generated from field: string firebase_project_id = 1; */ - firebaseProjectId = ''; + firebaseProjectId = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.SetUpFirebaseAppConfig'; + static typeName = "exa.cortex_pb.SetUpFirebaseAppConfig"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'firebase_project_id', - kind: 'scalar', - T: 9, + name: "firebase_project_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _SetUpFirebaseAppConfig().fromBinary(bytes, options); @@ -55531,21 +48601,21 @@ var CortexStepRestartDevServer = class _CortexStepRestartDevServer extends Messa * * @generated from field: string error_message = 1; */ - errorMessage = ''; + errorMessage = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexStepRestartDevServer'; + static typeName = "exa.cortex_pb.CortexStepRestartDevServer"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'error_message', - kind: 'scalar', - T: 9, + name: "error_message", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _CortexStepRestartDevServer().fromBinary(bytes, options); @@ -55554,10 +48624,7 @@ var CortexStepRestartDevServer = class _CortexStepRestartDevServer extends Messa return new _CortexStepRestartDevServer().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _CortexStepRestartDevServer().fromJsonString( - jsonString, - options, - ); + return new _CortexStepRestartDevServer().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_CortexStepRestartDevServer, a, b); @@ -55569,21 +48636,21 @@ var CortexStepDeployFirebase = class _CortexStepDeployFirebase extends Message { * * @generated from field: string error_message = 1; */ - errorMessage = ''; + errorMessage = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexStepDeployFirebase'; + static typeName = "exa.cortex_pb.CortexStepDeployFirebase"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'error_message', - kind: 'scalar', - T: 9, + name: "error_message", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _CortexStepDeployFirebase().fromBinary(bytes, options); @@ -55604,7 +48671,7 @@ var CortexStepShellExec = class _CortexStepShellExec extends Message { * * @generated from field: string command = 1; */ - command = ''; + command = ""; /** * The exit code of the command. * @@ -55616,48 +48683,48 @@ var CortexStepShellExec = class _CortexStepShellExec extends Message { * * @generated from field: string output = 3; */ - output = ''; + output = ""; /** * Error message from the execution, if any. * * @generated from field: string error_message = 4; */ - errorMessage = ''; + errorMessage = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexStepShellExec'; + static typeName = "exa.cortex_pb.CortexStepShellExec"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'command', - kind: 'scalar', - T: 9, + name: "command", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'exit_code', - kind: 'scalar', - T: 5, + name: "exit_code", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, { no: 3, - name: 'output', - kind: 'scalar', - T: 9, + name: "output", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 4, - name: 'error_message', - kind: 'scalar', - T: 9, + name: "error_message", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _CortexStepShellExec().fromBinary(bytes, options); @@ -55684,41 +48751,41 @@ var CortexStepLintApplet = class _CortexStepLintApplet extends Message { * * @generated from field: string output = 2; */ - output = ''; + output = ""; /** * Error message from the linter, if any. * * @generated from field: string error_message = 3; */ - errorMessage = ''; + errorMessage = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexStepLintApplet'; + static typeName = "exa.cortex_pb.CortexStepLintApplet"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'exit_code', - kind: 'scalar', - T: 5, + name: "exit_code", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, { no: 2, - name: 'output', - kind: 'scalar', - T: 9, + name: "output", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 3, - name: 'error_message', - kind: 'scalar', - T: 9, + name: "error_message", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _CortexStepLintApplet().fromBinary(bytes, options); @@ -55739,21 +48806,21 @@ var CortexStepDefineNewEnvVariable = class _CortexStepDefineNewEnvVariable exten * * @generated from field: string variable_name = 1; */ - variableName = ''; + variableName = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexStepDefineNewEnvVariable'; + static typeName = "exa.cortex_pb.CortexStepDefineNewEnvVariable"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'variable_name', - kind: 'scalar', - T: 9, + name: "variable_name", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _CortexStepDefineNewEnvVariable().fromBinary(bytes, options); @@ -55762,10 +48829,7 @@ var CortexStepDefineNewEnvVariable = class _CortexStepDefineNewEnvVariable exten return new _CortexStepDefineNewEnvVariable().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _CortexStepDefineNewEnvVariable().fromJsonString( - jsonString, - options, - ); + return new _CortexStepDefineNewEnvVariable().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_CortexStepDefineNewEnvVariable, a, b); @@ -55777,19 +48841,19 @@ var CortexStepWriteBlob = class _CortexStepWriteBlob extends Message { * * @generated from field: string blob_id = 1; */ - blobId = ''; + blobId = ""; /** * Input: The target path in the applet filesystem. * * @generated from field: string target_path = 2; */ - targetPath = ''; + targetPath = ""; /** * Output: Error message if the operation failed. * * @generated from field: string error_message = 3; */ - errorMessage = ''; + errorMessage = ""; /** * Output: The number of bytes written. * @@ -55801,36 +48865,36 @@ var CortexStepWriteBlob = class _CortexStepWriteBlob extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexStepWriteBlob'; + static typeName = "exa.cortex_pb.CortexStepWriteBlob"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'blob_id', - kind: 'scalar', - T: 9, + name: "blob_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'target_path', - kind: 'scalar', - T: 9, + name: "target_path", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 3, - name: 'error_message', - kind: 'scalar', - T: 9, + name: "error_message", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 4, - name: 'bytes_written', - kind: 'scalar', - T: 3, + name: "bytes_written", + kind: "scalar", + T: 3 /* ScalarType.INT64 */ - }, + } ]); static fromBinary(bytes, options) { return new _CortexStepWriteBlob().fromBinary(bytes, options); @@ -55857,15 +48921,15 @@ var CortexTrajectoryToPromptConfig = class _CortexTrajectoryToPromptConfig exten proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexTrajectoryToPromptConfig'; + static typeName = "exa.cortex_pb.CortexTrajectoryToPromptConfig"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'prompt_fraction', - kind: 'scalar', - T: 2, + name: "prompt_fraction", + kind: "scalar", + T: 2 /* ScalarType.FLOAT */ - }, + } ]); static fromBinary(bytes, options) { return new _CortexTrajectoryToPromptConfig().fromBinary(bytes, options); @@ -55874,10 +48938,7 @@ var CortexTrajectoryToPromptConfig = class _CortexTrajectoryToPromptConfig exten return new _CortexTrajectoryToPromptConfig().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _CortexTrajectoryToPromptConfig().fromJsonString( - jsonString, - options, - ); + return new _CortexTrajectoryToPromptConfig().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_CortexTrajectoryToPromptConfig, a, b); @@ -55893,7 +48954,7 @@ var CortexStepUserInput = class _CortexStepUserInput extends Message { * * @generated from field: string user_response = 2; */ - userResponse = ''; + userResponse = ""; /** * Only contains active doc, local node state, and open docs. Content of the * docs will be cleared to save memory. @@ -55952,7 +49013,7 @@ var CortexStepUserInput = class _CortexStepUserInput extends Message { * @generated from field: string query = 1 [deprecated = true]; * @deprecated */ - query = ''; + query = ""; /** * Deprecated: Use media instead * @@ -55972,73 +49033,39 @@ var CortexStepUserInput = class _CortexStepUserInput extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexStepUserInput'; + static typeName = "exa.cortex_pb.CortexStepUserInput"; static fields = proto3.util.newFieldList(() => [ - { - no: 3, - name: 'items', - kind: 'message', - T: TextOrScopeItem, - repeated: true, - }, + { no: 3, name: "items", kind: "message", T: TextOrScopeItem, repeated: true }, { no: 2, - name: 'user_response', - kind: 'scalar', - T: 9, + name: "user_response", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { - no: 4, - name: 'active_user_state', - kind: 'message', - T: ContextModuleResult, - }, - { - no: 7, - name: 'artifact_comments', - kind: 'message', - T: ArtifactComment, - repeated: true, - }, - { - no: 10, - name: 'file_diff_comments', - kind: 'message', - T: FileDiffComment, - repeated: true, - }, - { - no: 11, - name: 'file_comments', - kind: 'message', - T: FileComment, - repeated: true, - }, + { no: 4, name: "active_user_state", kind: "message", T: ContextModuleResult }, + { no: 7, name: "artifact_comments", kind: "message", T: ArtifactComment, repeated: true }, + { no: 10, name: "file_diff_comments", kind: "message", T: FileDiffComment, repeated: true }, + { no: 11, name: "file_comments", kind: "message", T: FileComment, repeated: true }, { no: 6, - name: 'is_queued_message', - kind: 'scalar', - T: 8, + name: "is_queued_message", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, - { - no: 8, - name: 'client_type', - kind: 'enum', - T: proto3.getEnumType(ChatClientRequestStreamClientType), - }, - { no: 12, name: 'user_config', kind: 'message', T: CascadeConfig }, - { no: 13, name: 'last_user_config', kind: 'message', T: CascadeConfig }, + { no: 8, name: "client_type", kind: "enum", T: proto3.getEnumType(ChatClientRequestStreamClientType) }, + { no: 12, name: "user_config", kind: "message", T: CascadeConfig }, + { no: 13, name: "last_user_config", kind: "message", T: CascadeConfig }, { no: 1, - name: 'query', - kind: 'scalar', - T: 9, + name: "query", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 5, name: 'images', kind: 'message', T: ImageData, repeated: true }, - { no: 9, name: 'media', kind: 'message', T: Media, repeated: true }, + { no: 5, name: "images", kind: "message", T: ImageData, repeated: true }, + { no: 9, name: "media", kind: "message", T: Media, repeated: true } ]); static fromBinary(bytes, options) { return new _CortexStepUserInput().fromBinary(bytes, options); @@ -56071,17 +49098,11 @@ var ActiveUserState = class _ActiveUserState extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.ActiveUserState'; + static typeName = "exa.cortex_pb.ActiveUserState"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'active_document', kind: 'message', T: Document }, - { - no: 2, - name: 'open_documents', - kind: 'message', - T: Document, - repeated: true, - }, - { no: 3, name: 'active_node', kind: 'message', T: CodeContextItem }, + { no: 1, name: "active_document", kind: "message", T: Document }, + { no: 2, name: "open_documents", kind: "message", T: Document, repeated: true }, + { no: 3, name: "active_node", kind: "message", T: CodeContextItem } ]); static fromBinary(bytes, options) { return new _ActiveUserState().fromBinary(bytes, options); @@ -56104,25 +49125,25 @@ var CortexStepPlannerResponse = class _CortexStepPlannerResponse extends Message * * @generated from field: string response = 1; */ - response = ''; + response = ""; /** * We may modify the response to include additional information, such as * citations. This is what should be handled by the client. * * @generated from field: string modified_response = 8; */ - modifiedResponse = ''; + modifiedResponse = ""; /** * @generated from field: string thinking = 3; */ - thinking = ''; + thinking = ""; /** * Deprecated. Use thinking_signature instead. * * @generated from field: string signature = 4 [deprecated = true]; * @deprecated */ - signature = ''; + signature = ""; /** * @generated from field: bytes thinking_signature = 14; */ @@ -56134,7 +49155,7 @@ var CortexStepPlannerResponse = class _CortexStepPlannerResponse extends Message /** * @generated from field: string message_id = 6; */ - messageId = ''; + messageId = ""; /** * All tool calls generated by the planner in this response. * @@ -56164,84 +49185,62 @@ var CortexStepPlannerResponse = class _CortexStepPlannerResponse extends Message proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexStepPlannerResponse'; + static typeName = "exa.cortex_pb.CortexStepPlannerResponse"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'response', - kind: 'scalar', - T: 9, + name: "response", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 8, - name: 'modified_response', - kind: 'scalar', - T: 9, + name: "modified_response", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 3, - name: 'thinking', - kind: 'scalar', - T: 9, + name: "thinking", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 4, - name: 'signature', - kind: 'scalar', - T: 9, + name: "signature", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 14, - name: 'thinking_signature', - kind: 'scalar', - T: 12, + name: "thinking_signature", + kind: "scalar", + T: 12 /* ScalarType.BYTES */ }, { no: 5, - name: 'thinking_redacted', - kind: 'scalar', - T: 8, + name: "thinking_redacted", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 6, - name: 'message_id', - kind: 'scalar', - T: 9, + name: "message_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { - no: 7, - name: 'tool_calls', - kind: 'message', - T: ChatToolCall, - repeated: true, - }, - { - no: 2, - name: 'knowledge_base_items', - kind: 'message', - T: KnowledgeBaseItemWithMetadata, - repeated: true, - }, - { no: 11, name: 'thinking_duration', kind: 'message', T: Duration }, - { - no: 12, - name: 'stop_reason', - kind: 'enum', - T: proto3.getEnumType(StopReason), - }, - { - no: 13, - name: 'recitation_metadata', - kind: 'message', - T: RecitationMetadata, - }, + { no: 7, name: "tool_calls", kind: "message", T: ChatToolCall, repeated: true }, + { no: 2, name: "knowledge_base_items", kind: "message", T: KnowledgeBaseItemWithMetadata, repeated: true }, + { no: 11, name: "thinking_duration", kind: "message", T: Duration }, + { no: 12, name: "stop_reason", kind: "enum", T: proto3.getEnumType(StopReason) }, + { no: 13, name: "recitation_metadata", kind: "message", T: RecitationMetadata } ]); static fromBinary(bytes, options) { return new _CortexStepPlannerResponse().fromBinary(bytes, options); @@ -56262,7 +49261,7 @@ var CortexStepFileBreakdown = class _CortexStepFileBreakdown extends Message { * * @generated from field: string absolute_path = 1; */ - absolutePath = ''; + absolutePath = ""; /** * Only one of the following should be populated. * @@ -56274,16 +49273,16 @@ var CortexStepFileBreakdown = class _CortexStepFileBreakdown extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexStepFileBreakdown'; + static typeName = "exa.cortex_pb.CortexStepFileBreakdown"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'absolute_path', - kind: 'scalar', - T: 9, + name: "absolute_path", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 2, name: 'document_outline', kind: 'message', T: DocumentOutline }, + { no: 2, name: "document_outline", kind: "message", T: DocumentOutline } ]); static fromBinary(bytes, options) { return new _CortexStepFileBreakdown().fromBinary(bytes, options); @@ -56304,7 +49303,7 @@ var CortexStepViewCodeItem = class _CortexStepViewCodeItem extends Message { * * @generated from field: string absolute_uri = 1; */ - absoluteUri = ''; + absoluteUri = ""; /** * @generated from field: repeated string node_paths = 4; */ @@ -56324,29 +49323,18 @@ var CortexStepViewCodeItem = class _CortexStepViewCodeItem extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexStepViewCodeItem'; + static typeName = "exa.cortex_pb.CortexStepViewCodeItem"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'absolute_uri', - kind: 'scalar', - T: 9, + name: "absolute_uri", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 4, name: 'node_paths', kind: 'scalar', T: 9, repeated: true }, - { - no: 5, - name: 'ccis', - kind: 'message', - T: CodeContextItem, - repeated: true, - }, - { - no: 6, - name: 'file_permission_request', - kind: 'message', - T: FilePermissionInteractionSpec, - }, + { no: 4, name: "node_paths", kind: "scalar", T: 9, repeated: true }, + { no: 5, name: "ccis", kind: "message", T: CodeContextItem, repeated: true }, + { no: 6, name: "file_permission_request", kind: "message", T: FilePermissionInteractionSpec } ]); static fromBinary(bytes, options) { return new _CortexStepViewCodeItem().fromBinary(bytes, options); @@ -56367,7 +49355,7 @@ var CortexStepWriteToFile = class _CortexStepWriteToFile extends Message { * * @generated from field: string target_file_uri = 1; */ - targetFileUri = ''; + targetFileUri = ""; /** * code content is represented as an array of strings * to avoid requiring the model to generate \n for line returns. @@ -56399,30 +49387,25 @@ var CortexStepWriteToFile = class _CortexStepWriteToFile extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexStepWriteToFile'; + static typeName = "exa.cortex_pb.CortexStepWriteToFile"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'target_file_uri', - kind: 'scalar', - T: 9, + name: "target_file_uri", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 2, name: 'code_content', kind: 'scalar', T: 9, repeated: true }, - { no: 3, name: 'diff', kind: 'message', T: DiffBlock }, + { no: 2, name: "code_content", kind: "scalar", T: 9, repeated: true }, + { no: 3, name: "diff", kind: "message", T: DiffBlock }, { no: 4, - name: 'file_created', - kind: 'scalar', - T: 8, + name: "file_created", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, - { - no: 5, - name: 'acknowledgement_type', - kind: 'enum', - T: proto3.getEnumType(AcknowledgementType), - }, + { no: 5, name: "acknowledgement_type", kind: "enum", T: proto3.getEnumType(AcknowledgementType) } ]); static fromBinary(bytes, options) { return new _CortexStepWriteToFile().fromBinary(bytes, options); @@ -56467,25 +49450,13 @@ var CortexStepSearchKnowledgeBase = class _CortexStepSearchKnowledgeBase extends proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexStepSearchKnowledgeBase'; + static typeName = "exa.cortex_pb.CortexStepSearchKnowledgeBase"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'queries', kind: 'scalar', T: 9, repeated: true }, - { no: 3, name: 'time_range', kind: 'message', T: TimeRange }, - { - no: 4, - name: 'connector_types', - kind: 'enum', - T: proto3.getEnumType(ConnectorType), - repeated: true, - }, - { no: 7, name: 'aggregate_ids', kind: 'scalar', T: 9, repeated: true }, - { - no: 2, - name: 'knowledge_base_groups', - kind: 'message', - T: KnowledgeBaseGroup, - repeated: true, - }, + { no: 1, name: "queries", kind: "scalar", T: 9, repeated: true }, + { no: 3, name: "time_range", kind: "message", T: TimeRange }, + { no: 4, name: "connector_types", kind: "enum", T: proto3.getEnumType(ConnectorType), repeated: true }, + { no: 7, name: "aggregate_ids", kind: "scalar", T: 9, repeated: true }, + { no: 2, name: "knowledge_base_groups", kind: "message", T: KnowledgeBaseGroup, repeated: true } ]); static fromBinary(bytes, options) { return new _CortexStepSearchKnowledgeBase().fromBinary(bytes, options); @@ -56494,10 +49465,7 @@ var CortexStepSearchKnowledgeBase = class _CortexStepSearchKnowledgeBase extends return new _CortexStepSearchKnowledgeBase().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _CortexStepSearchKnowledgeBase().fromJsonString( - jsonString, - options, - ); + return new _CortexStepSearchKnowledgeBase().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_CortexStepSearchKnowledgeBase, a, b); @@ -56525,17 +49493,11 @@ var CortexStepLookupKnowledgeBase = class _CortexStepLookupKnowledgeBase extends proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexStepLookupKnowledgeBase'; + static typeName = "exa.cortex_pb.CortexStepLookupKnowledgeBase"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'urls', kind: 'scalar', T: 9, repeated: true }, - { no: 2, name: 'document_ids', kind: 'scalar', T: 9, repeated: true }, - { - no: 3, - name: 'knowledge_base_items', - kind: 'message', - T: KnowledgeBaseItemWithMetadata, - repeated: true, - }, + { no: 1, name: "urls", kind: "scalar", T: 9, repeated: true }, + { no: 2, name: "document_ids", kind: "scalar", T: 9, repeated: true }, + { no: 3, name: "knowledge_base_items", kind: "message", T: KnowledgeBaseItemWithMetadata, repeated: true } ]); static fromBinary(bytes, options) { return new _CortexStepLookupKnowledgeBase().fromBinary(bytes, options); @@ -56544,10 +49506,7 @@ var CortexStepLookupKnowledgeBase = class _CortexStepLookupKnowledgeBase extends return new _CortexStepLookupKnowledgeBase().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _CortexStepLookupKnowledgeBase().fromJsonString( - jsonString, - options, - ); + return new _CortexStepLookupKnowledgeBase().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_CortexStepLookupKnowledgeBase, a, b); @@ -56565,9 +49524,9 @@ var CortexStepSuggestedResponses = class _CortexStepSuggestedResponses extends M proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexStepSuggestedResponses'; + static typeName = "exa.cortex_pb.CortexStepSuggestedResponses"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'suggestions', kind: 'scalar', T: 9, repeated: true }, + { no: 1, name: "suggestions", kind: "scalar", T: 9, repeated: true } ]); static fromBinary(bytes, options) { return new _CortexStepSuggestedResponses().fromBinary(bytes, options); @@ -56576,10 +49535,7 @@ var CortexStepSuggestedResponses = class _CortexStepSuggestedResponses extends M return new _CortexStepSuggestedResponses().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _CortexStepSuggestedResponses().fromJsonString( - jsonString, - options, - ); + return new _CortexStepSuggestedResponses().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_CortexStepSuggestedResponses, a, b); @@ -56603,23 +49559,23 @@ var CortexStepErrorMessage = class _CortexStepErrorMessage extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexStepErrorMessage'; + static typeName = "exa.cortex_pb.CortexStepErrorMessage"; static fields = proto3.util.newFieldList(() => [ - { no: 3, name: 'error', kind: 'message', T: CortexErrorDetails }, + { no: 3, name: "error", kind: "message", T: CortexErrorDetails }, { no: 5, - name: 'should_show_user', - kind: 'scalar', - T: 8, + name: "should_show_user", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 4, - name: 'should_show_model', - kind: 'scalar', - T: 8, + name: "should_show_model", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ - }, + } ]); static fromBinary(bytes, options) { return new _CortexStepErrorMessage().fromBinary(bytes, options); @@ -56641,14 +49597,14 @@ var RunCommandOutput = class _RunCommandOutput extends Message { * * @generated from field: string full = 1; */ - full = ''; + full = ""; /** * Deprecated fields. * * @generated from field: string truncated = 2 [deprecated = true]; * @deprecated */ - truncated = ''; + truncated = ""; /** * @generated from field: uint32 num_lines_above = 3 [deprecated = true]; * @deprecated @@ -56659,29 +49615,29 @@ var RunCommandOutput = class _RunCommandOutput extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.RunCommandOutput'; + static typeName = "exa.cortex_pb.RunCommandOutput"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'full', - kind: 'scalar', - T: 9, + name: "full", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'truncated', - kind: 'scalar', - T: 9, + name: "truncated", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 3, - name: 'num_lines_above', - kind: 'scalar', - T: 13, + name: "num_lines_above", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ - }, + } ]); static fromBinary(bytes, options) { return new _RunCommandOutput().fromBinary(bytes, options); @@ -56703,17 +49659,17 @@ var CortexStepRunCommand = class _CortexStepRunCommand extends Message { * * @generated from field: string command_line = 23; */ - commandLine = ''; + commandLine = ""; /** * Command that was initially proposed by the model. * * @generated from field: string proposed_command_line = 25; */ - proposedCommandLine = ''; + proposedCommandLine = ""; /** * @generated from field: string cwd = 2; */ - cwd = ''; + cwd = ""; /** * @generated from field: uint64 wait_ms_before_async = 12; */ @@ -56732,7 +49688,7 @@ var CortexStepRunCommand = class _CortexStepRunCommand extends Message { * * @generated from field: string requested_terminal_id = 17; */ - requestedTerminalId = ''; + requestedTerminalId = ""; /** * Whether to run the command with sandbox override enabled. * @@ -56752,7 +49708,7 @@ var CortexStepRunCommand = class _CortexStepRunCommand extends Message { * * @generated from field: string command_id = 13; */ - commandId = ''; + commandId = ""; /** * Will be unset if the exit code cannot be determined. * @@ -56772,7 +49728,7 @@ var CortexStepRunCommand = class _CortexStepRunCommand extends Message { * * @generated from field: string terminal_id = 18; */ - terminalId = ''; + terminalId = ""; /** * @generated from field: exa.cortex_pb.RunCommandOutput combined_output = 21; */ @@ -56794,14 +49750,14 @@ var CortexStepRunCommand = class _CortexStepRunCommand extends Message { * * @generated from field: string raw_debug_output = 24; */ - rawDebugOutput = ''; + rawDebugOutput = ""; /** * Deprecated fields. * * @generated from field: string command = 1 [deprecated = true]; * @deprecated */ - command = ''; + command = ""; /** * @generated from field: repeated string args = 3 [deprecated = true]; * @deprecated @@ -56811,22 +49767,22 @@ var CortexStepRunCommand = class _CortexStepRunCommand extends Message { * @generated from field: string stdout = 4 [deprecated = true]; * @deprecated */ - stdout = ''; + stdout = ""; /** * @generated from field: string stderr = 5 [deprecated = true]; * @deprecated */ - stderr = ''; + stderr = ""; /** * @generated from field: string stdout_buffer = 7 [deprecated = true]; * @deprecated */ - stdoutBuffer = ''; + stdoutBuffer = ""; /** * @generated from field: string stderr_buffer = 8 [deprecated = true]; * @deprecated */ - stderrBuffer = ''; + stderrBuffer = ""; /** * @generated from field: uint32 stdout_lines_above = 9 [deprecated = true]; * @deprecated @@ -56852,165 +49808,155 @@ var CortexStepRunCommand = class _CortexStepRunCommand extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexStepRunCommand'; + static typeName = "exa.cortex_pb.CortexStepRunCommand"; static fields = proto3.util.newFieldList(() => [ { no: 23, - name: 'command_line', - kind: 'scalar', - T: 9, + name: "command_line", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 25, - name: 'proposed_command_line', - kind: 'scalar', - T: 9, + name: "proposed_command_line", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'cwd', - kind: 'scalar', - T: 9, + name: "cwd", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 12, - name: 'wait_ms_before_async', - kind: 'scalar', - T: 4, + name: "wait_ms_before_async", + kind: "scalar", + T: 4 /* ScalarType.UINT64 */ }, { no: 15, - name: 'should_auto_run', - kind: 'scalar', - T: 8, + name: "should_auto_run", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 17, - name: 'requested_terminal_id', - kind: 'scalar', - T: 9, + name: "requested_terminal_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 27, - name: 'sandbox_override', - kind: 'scalar', - T: 8, + name: "sandbox_override", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 11, - name: 'blocking', - kind: 'scalar', - T: 8, + name: "blocking", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 13, - name: 'command_id', - kind: 'scalar', - T: 9, + name: "command_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 6, name: 'exit_code', kind: 'scalar', T: 5, opt: true }, + { no: 6, name: "exit_code", kind: "scalar", T: 5, opt: true }, { no: 14, - name: 'user_rejected', - kind: 'scalar', - T: 8, + name: "user_rejected", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, - { - no: 16, - name: 'auto_run_decision', - kind: 'enum', - T: proto3.getEnumType(AutoRunDecision), - }, + { no: 16, name: "auto_run_decision", kind: "enum", T: proto3.getEnumType(AutoRunDecision) }, { no: 18, - name: 'terminal_id', - kind: 'scalar', - T: 9, + name: "terminal_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 21, name: 'combined_output', kind: 'message', T: RunCommandOutput }, - { - no: 26, - name: 'combined_output_snapshot', - kind: 'message', - T: RunCommandOutput, - }, + { no: 21, name: "combined_output", kind: "message", T: RunCommandOutput }, + { no: 26, name: "combined_output_snapshot", kind: "message", T: RunCommandOutput }, { no: 22, - name: 'used_ide_terminal', - kind: 'scalar', - T: 8, + name: "used_ide_terminal", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 24, - name: 'raw_debug_output', - kind: 'scalar', - T: 9, + name: "raw_debug_output", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 1, - name: 'command', - kind: 'scalar', - T: 9, + name: "command", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 3, name: 'args', kind: 'scalar', T: 9, repeated: true }, + { no: 3, name: "args", kind: "scalar", T: 9, repeated: true }, { no: 4, - name: 'stdout', - kind: 'scalar', - T: 9, + name: "stdout", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 5, - name: 'stderr', - kind: 'scalar', - T: 9, + name: "stderr", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 7, - name: 'stdout_buffer', - kind: 'scalar', - T: 9, + name: "stdout_buffer", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 8, - name: 'stderr_buffer', - kind: 'scalar', - T: 9, + name: "stderr_buffer", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 9, - name: 'stdout_lines_above', - kind: 'scalar', - T: 13, + name: "stdout_lines_above", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, { no: 10, - name: 'stderr_lines_above', - kind: 'scalar', - T: 13, + name: "stderr_lines_above", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, - { no: 19, name: 'stdout_output', kind: 'message', T: RunCommandOutput }, - { no: 20, name: 'stderr_output', kind: 'message', T: RunCommandOutput }, + { no: 19, name: "stdout_output", kind: "message", T: RunCommandOutput }, + { no: 20, name: "stderr_output", kind: "message", T: RunCommandOutput } ]); static fromBinary(bytes, options) { return new _CortexStepRunCommand().fromBinary(bytes, options); @@ -57031,7 +49977,7 @@ var CortexStepReadUrlContent = class _CortexStepReadUrlContent extends Message { * * @generated from field: string url = 1; */ - url = ''; + url = ""; /** * OUTPUTS * @@ -57047,7 +49993,7 @@ var CortexStepReadUrlContent = class _CortexStepReadUrlContent extends Message { * * @generated from field: string resolved_url = 3; */ - resolvedUrl = ''; + resolvedUrl = ""; /** * Latency of the web document retrieval in milliseconds. * @@ -57063,37 +50009,37 @@ var CortexStepReadUrlContent = class _CortexStepReadUrlContent extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexStepReadUrlContent'; + static typeName = "exa.cortex_pb.CortexStepReadUrlContent"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'url', - kind: 'scalar', - T: 9, + name: "url", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 2, name: 'web_document', kind: 'message', T: KnowledgeBaseItem }, + { no: 2, name: "web_document", kind: "message", T: KnowledgeBaseItem }, { no: 3, - name: 'resolved_url', - kind: 'scalar', - T: 9, + name: "resolved_url", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 4, - name: 'latency_ms', - kind: 'scalar', - T: 13, + name: "latency_ms", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, { no: 5, - name: 'user_rejected', - kind: 'scalar', - T: 8, + name: "user_rejected", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ - }, + } ]); static fromBinary(bytes, options) { return new _CortexStepReadUrlContent().fromBinary(bytes, options); @@ -57114,7 +50060,7 @@ var CortexStepReadKnowledgeBaseItem = class _CortexStepReadKnowledgeBaseItem ext * * @generated from field: string identifier = 1; */ - identifier = ''; + identifier = ""; /** * OUTPUTS * @@ -57130,27 +50076,17 @@ var CortexStepReadKnowledgeBaseItem = class _CortexStepReadKnowledgeBaseItem ext proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexStepReadKnowledgeBaseItem'; + static typeName = "exa.cortex_pb.CortexStepReadKnowledgeBaseItem"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'identifier', - kind: 'scalar', - T: 9, + name: "identifier", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { - no: 2, - name: 'knowledge_base_item', - kind: 'message', - T: KnowledgeBaseItem, - }, - { - no: 3, - name: 'connector_type', - kind: 'enum', - T: proto3.getEnumType(ConnectorType), - }, + { no: 2, name: "knowledge_base_item", kind: "message", T: KnowledgeBaseItem }, + { no: 3, name: "connector_type", kind: "enum", T: proto3.getEnumType(ConnectorType) } ]); static fromBinary(bytes, options) { return new _CortexStepReadKnowledgeBaseItem().fromBinary(bytes, options); @@ -57159,10 +50095,7 @@ var CortexStepReadKnowledgeBaseItem = class _CortexStepReadKnowledgeBaseItem ext return new _CortexStepReadKnowledgeBaseItem().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _CortexStepReadKnowledgeBaseItem().fromJsonString( - jsonString, - options, - ); + return new _CortexStepReadKnowledgeBaseItem().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_CortexStepReadKnowledgeBaseItem, a, b); @@ -57175,13 +50108,13 @@ var CortexStepSendCommandInput = class _CortexStepSendCommandInput extends Messa * * @generated from field: string command_id = 1; */ - commandId = ''; + commandId = ""; /** * The input to send * * @generated from field: string input = 2; */ - input = ''; + input = ""; /** * Whether the command should be run without user approval, as decided by the * model. Will not take effect unless the user has opted in to automated @@ -57235,65 +50168,60 @@ var CortexStepSendCommandInput = class _CortexStepSendCommandInput extends Messa proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexStepSendCommandInput'; + static typeName = "exa.cortex_pb.CortexStepSendCommandInput"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'command_id', - kind: 'scalar', - T: 9, + name: "command_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'input', - kind: 'scalar', - T: 9, + name: "input", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 3, - name: 'should_auto_run', - kind: 'scalar', - T: 8, + name: "should_auto_run", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 6, - name: 'terminate', - kind: 'scalar', - T: 8, + name: "terminate", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 7, - name: 'wait_ms', - kind: 'scalar', - T: 3, + name: "wait_ms", + kind: "scalar", + T: 3 /* ScalarType.INT64 */ }, { no: 4, - name: 'user_rejected', - kind: 'scalar', - T: 8, + name: "user_rejected", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, - { - no: 5, - name: 'auto_run_decision', - kind: 'enum', - T: proto3.getEnumType(AutoRunDecision), - }, - { no: 8, name: 'output', kind: 'message', T: RunCommandOutput }, + { no: 5, name: "auto_run_decision", kind: "enum", T: proto3.getEnumType(AutoRunDecision) }, + { no: 8, name: "output", kind: "message", T: RunCommandOutput }, { no: 9, - name: 'running', - kind: 'scalar', - T: 8, + name: "running", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, - { no: 10, name: 'exit_code', kind: 'scalar', T: 5, opt: true }, + { no: 10, name: "exit_code", kind: "scalar", T: 5, opt: true } ]); static fromBinary(bytes, options) { return new _CortexStepSendCommandInput().fromBinary(bytes, options); @@ -57302,10 +50230,7 @@ var CortexStepSendCommandInput = class _CortexStepSendCommandInput extends Messa return new _CortexStepSendCommandInput().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _CortexStepSendCommandInput().fromJsonString( - jsonString, - options, - ); + return new _CortexStepSendCommandInput().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_CortexStepSendCommandInput, a, b); @@ -57318,7 +50243,7 @@ var CortexStepViewContentChunk = class _CortexStepViewContentChunk extends Messa * * @generated from field: string document_id = 5; */ - documentId = ''; + documentId = ""; /** * The position of the chunk. * @@ -57338,23 +50263,23 @@ var CortexStepViewContentChunk = class _CortexStepViewContentChunk extends Messa proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexStepViewContentChunk'; + static typeName = "exa.cortex_pb.CortexStepViewContentChunk"; static fields = proto3.util.newFieldList(() => [ { no: 5, - name: 'document_id', - kind: 'scalar', - T: 9, + name: "document_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'position', - kind: 'scalar', - T: 5, + name: "position", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, - { no: 4, name: 'cropped_item', kind: 'message', T: KnowledgeBaseItem }, + { no: 4, name: "cropped_item", kind: "message", T: KnowledgeBaseItem } ]); static fromBinary(bytes, options) { return new _CortexStepViewContentChunk().fromBinary(bytes, options); @@ -57363,10 +50288,7 @@ var CortexStepViewContentChunk = class _CortexStepViewContentChunk extends Messa return new _CortexStepViewContentChunk().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _CortexStepViewContentChunk().fromJsonString( - jsonString, - options, - ); + return new _CortexStepViewContentChunk().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_CortexStepViewContentChunk, a, b); @@ -57379,13 +50301,13 @@ var CortexStepSearchWeb = class _CortexStepSearchWeb extends Message { * * @generated from field: string query = 1; */ - query = ''; + query = ""; /** * Optional domain for the search to prioritize. * * @generated from field: string domain = 3; */ - domain = ''; + domain = ""; /** * OUTPUTS * A list of web documents that match the web search query. @@ -57398,14 +50320,14 @@ var CortexStepSearchWeb = class _CortexStepSearchWeb extends Message { * * @generated from field: string web_search_url = 4; */ - webSearchUrl = ''; + webSearchUrl = ""; /** * This variable is only for an experimental feature where we use a third * party API to perform web search. * * @generated from field: string summary = 5; */ - summary = ''; + summary = ""; /** * @generated from field: exa.codeium_common_pb.ThirdPartyWebSearchConfig third_party_config = 6; */ @@ -57421,55 +50343,39 @@ var CortexStepSearchWeb = class _CortexStepSearchWeb extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexStepSearchWeb'; + static typeName = "exa.cortex_pb.CortexStepSearchWeb"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'query', - kind: 'scalar', - T: 9, + name: "query", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 3, - name: 'domain', - kind: 'scalar', - T: 9, + name: "domain", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { - no: 2, - name: 'web_documents', - kind: 'message', - T: KnowledgeBaseItem, - repeated: true, - }, + { no: 2, name: "web_documents", kind: "message", T: KnowledgeBaseItem, repeated: true }, { no: 4, - name: 'web_search_url', - kind: 'scalar', - T: 9, + name: "web_search_url", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 5, - name: 'summary', - kind: 'scalar', - T: 9, + name: "summary", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { - no: 6, - name: 'third_party_config', - kind: 'message', - T: ThirdPartyWebSearchConfig, - }, - { - no: 7, - name: 'search_type', - kind: 'enum', - T: proto3.getEnumType(SearchWebType), - }, + { no: 6, name: "third_party_config", kind: "message", T: ThirdPartyWebSearchConfig }, + { no: 7, name: "search_type", kind: "enum", T: proto3.getEnumType(SearchWebType) } ]); static fromBinary(bytes, options) { return new _CortexStepSearchWeb().fromBinary(bytes, options); @@ -57491,14 +50397,14 @@ var CortexStepReadDeploymentConfig = class _CortexStepReadDeploymentConfig exten * * @generated from field: string project_path = 1; */ - projectPath = ''; + projectPath = ""; /** * OUTPUTS * The deployment configuration file. * * @generated from field: string deployment_config_uri = 2; */ - deploymentConfigUri = ''; + deploymentConfigUri = ""; /** * The config that was read from the existing deployment config file. If no * config file existed, this will be empty. @@ -57551,52 +50457,47 @@ var CortexStepReadDeploymentConfig = class _CortexStepReadDeploymentConfig exten proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexStepReadDeploymentConfig'; + static typeName = "exa.cortex_pb.CortexStepReadDeploymentConfig"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'project_path', - kind: 'scalar', - T: 9, + name: "project_path", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'deployment_config_uri', - kind: 'scalar', - T: 9, + name: "deployment_config_uri", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { - no: 3, - name: 'deployment_config', - kind: 'message', - T: WebAppDeploymentConfig, - }, - { no: 4, name: 'missing_file_uris', kind: 'scalar', T: 9, repeated: true }, + { no: 3, name: "deployment_config", kind: "message", T: WebAppDeploymentConfig }, + { no: 4, name: "missing_file_uris", kind: "scalar", T: 9, repeated: true }, { no: 5, - name: 'will_upload_node_modules', - kind: 'scalar', - T: 8, + name: "will_upload_node_modules", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 6, - name: 'will_upload_dist', - kind: 'scalar', - T: 8, + name: "will_upload_dist", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, - { no: 7, name: 'ignore_file_uris', kind: 'scalar', T: 9, repeated: true }, + { no: 7, name: "ignore_file_uris", kind: "scalar", T: 9, repeated: true }, { no: 8, - name: 'num_files_to_upload', - kind: 'scalar', - T: 13, + name: "num_files_to_upload", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, - { no: 9, name: 'env_file_uris', kind: 'scalar', T: 9, repeated: true }, + { no: 9, name: "env_file_uris", kind: "scalar", T: 9, repeated: true } ]); static fromBinary(bytes, options) { return new _CortexStepReadDeploymentConfig().fromBinary(bytes, options); @@ -57605,10 +50506,7 @@ var CortexStepReadDeploymentConfig = class _CortexStepReadDeploymentConfig exten return new _CortexStepReadDeploymentConfig().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _CortexStepReadDeploymentConfig().fromJsonString( - jsonString, - options, - ); + return new _CortexStepReadDeploymentConfig().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_CortexStepReadDeploymentConfig, a, b); @@ -57621,7 +50519,7 @@ var CortexStepDeployWebApp = class _CortexStepDeployWebApp extends Message { * * @generated from field: string project_path = 1; */ - projectPath = ''; + projectPath = ""; /** * The subdomain of the app as determined by Cascade. This will only be used * for new deployments and will be the value used in the URL (ie. @@ -57629,21 +50527,21 @@ var CortexStepDeployWebApp = class _CortexStepDeployWebApp extends Message { * * @generated from field: string subdomain = 2; */ - subdomain = ''; + subdomain = ""; /** * The project ID used for deploying to an existing project. If this value is * populated, we will consider this to be a deploy to an existing project. * * @generated from field: string project_id = 11; */ - projectId = ''; + projectId = ""; /** * JS framework used for the app (ie. nextjs, sveltekit, etc.). This varies * based on the provider. * * @generated from field: string framework = 3; */ - framework = ''; + framework = ""; /** * Whether the user confirmed to run the deployment. * @@ -57668,7 +50566,7 @@ var CortexStepDeployWebApp = class _CortexStepDeployWebApp extends Message { * * @generated from field: string deployment_config_uri = 7; */ - deploymentConfigUri = ''; + deploymentConfigUri = ""; /** * The config that was written to the deployment config file. If the config * was not written for some reason, this will be empty. @@ -57682,13 +50580,13 @@ var CortexStepDeployWebApp = class _CortexStepDeployWebApp extends Message { * * @generated from field: string subdomain_for_project_id = 12; */ - subdomainForProjectId = ''; + subdomainForProjectId = ""; /** * The subdomain that the user specified in the step input. * * @generated from field: string subdomain_user_specified = 13; */ - subdomainUserSpecified = ''; + subdomainUserSpecified = ""; /** * The subdomain that was ultimately used for the deployment. For updating an * existing deployment, this will be the subdomain used by the existing @@ -57696,7 +50594,7 @@ var CortexStepDeployWebApp = class _CortexStepDeployWebApp extends Message { * * @generated from field: string subdomain_used = 9; */ - subdomainUsed = ''; + subdomainUsed = ""; /** * The deploy target that was retrieved from the provider if the input * specified a project ID. @@ -57725,124 +50623,103 @@ var CortexStepDeployWebApp = class _CortexStepDeployWebApp extends Message { * * @generated from field: string project_id_used = 14; */ - projectIdUsed = ''; + projectIdUsed = ""; /** * Claim URL for the deployment (if unclaimed). * * @generated from field: string claim_url = 10; */ - claimUrl = ''; + claimUrl = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexStepDeployWebApp'; + static typeName = "exa.cortex_pb.CortexStepDeployWebApp"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'project_path', - kind: 'scalar', - T: 9, + name: "project_path", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'subdomain', - kind: 'scalar', - T: 9, + name: "subdomain", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 11, - name: 'project_id', - kind: 'scalar', - T: 9, + name: "project_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 3, - name: 'framework', - kind: 'scalar', - T: 9, + name: "framework", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 4, - name: 'user_confirmed', - kind: 'scalar', - T: 8, + name: "user_confirmed", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, - { - no: 5, - name: 'file_upload_status', - kind: 'map', - K: 9, - V: { kind: 'enum', T: proto3.getEnumType(DeployWebAppFileUploadStatus) }, - }, - { no: 6, name: 'deployment', kind: 'message', T: AntigravityDeployment }, + { no: 5, name: "file_upload_status", kind: "map", K: 9, V: { kind: "enum", T: proto3.getEnumType(DeployWebAppFileUploadStatus) } }, + { no: 6, name: "deployment", kind: "message", T: AntigravityDeployment }, { no: 7, - name: 'deployment_config_uri', - kind: 'scalar', - T: 9, + name: "deployment_config_uri", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { - no: 8, - name: 'deployment_config_output', - kind: 'message', - T: WebAppDeploymentConfig, - }, + { no: 8, name: "deployment_config_output", kind: "message", T: WebAppDeploymentConfig }, { no: 12, - name: 'subdomain_for_project_id', - kind: 'scalar', - T: 9, + name: "subdomain_for_project_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 13, - name: 'subdomain_user_specified', - kind: 'scalar', - T: 9, + name: "subdomain_user_specified", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 9, - name: 'subdomain_used', - kind: 'scalar', - T: 9, + name: "subdomain_used", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { - no: 15, - name: 'deploy_target_for_project_id', - kind: 'message', - T: DeployTarget, - }, - { - no: 16, - name: 'deploy_target_user_specified', - kind: 'message', - T: DeployTarget, - }, - { no: 17, name: 'deploy_target_used', kind: 'message', T: DeployTarget }, + { no: 15, name: "deploy_target_for_project_id", kind: "message", T: DeployTarget }, + { no: 16, name: "deploy_target_user_specified", kind: "message", T: DeployTarget }, + { no: 17, name: "deploy_target_used", kind: "message", T: DeployTarget }, { no: 14, - name: 'project_id_used', - kind: 'scalar', - T: 9, + name: "project_id_used", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 10, - name: 'claim_url', - kind: 'scalar', - T: 9, + name: "claim_url", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _CortexStepDeployWebApp().fromBinary(bytes, options); @@ -57865,7 +50742,7 @@ var CortexStepCheckDeployStatus = class _CortexStepCheckDeployStatus extends Mes * * @generated from field: string antigravity_deployment_id = 1; */ - antigravityDeploymentId = ''; + antigravityDeploymentId = ""; /** * The Antigravity deployment record. * @@ -57883,14 +50760,14 @@ var CortexStepCheckDeployStatus = class _CortexStepCheckDeployStatus extends Mes * * @generated from field: string build_error = 4; */ - buildError = ''; + buildError = ""; /** * The logs for the build. Depending on the provider, this may not be * populated. * * @generated from field: string build_logs = 5; */ - buildLogs = ''; + buildLogs = ""; /** * Whether the app has been claimed. * @@ -57902,56 +50779,51 @@ var CortexStepCheckDeployStatus = class _CortexStepCheckDeployStatus extends Mes * * @generated from field: string claim_url = 7; */ - claimUrl = ''; + claimUrl = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexStepCheckDeployStatus'; + static typeName = "exa.cortex_pb.CortexStepCheckDeployStatus"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'antigravity_deployment_id', - kind: 'scalar', - T: 9, + name: "antigravity_deployment_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 2, name: 'deployment', kind: 'message', T: AntigravityDeployment }, - { - no: 3, - name: 'build_status', - kind: 'enum', - T: proto3.getEnumType(DeploymentBuildStatus), - }, + { no: 2, name: "deployment", kind: "message", T: AntigravityDeployment }, + { no: 3, name: "build_status", kind: "enum", T: proto3.getEnumType(DeploymentBuildStatus) }, { no: 4, - name: 'build_error', - kind: 'scalar', - T: 9, + name: "build_error", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 5, - name: 'build_logs', - kind: 'scalar', - T: 9, + name: "build_logs", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 6, - name: 'is_claimed', - kind: 'scalar', - T: 8, + name: "is_claimed", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 7, - name: 'claim_url', - kind: 'scalar', - T: 9, + name: "claim_url", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _CortexStepCheckDeployStatus().fromBinary(bytes, options); @@ -57960,10 +50832,7 @@ var CortexStepCheckDeployStatus = class _CortexStepCheckDeployStatus extends Mes return new _CortexStepCheckDeployStatus().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _CortexStepCheckDeployStatus().fromJsonString( - jsonString, - options, - ); + return new _CortexStepCheckDeployStatus().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_CortexStepCheckDeployStatus, a, b); @@ -57973,21 +50842,21 @@ var CortexStepClipboard = class _CortexStepClipboard extends Message { /** * @generated from field: string content = 1; */ - content = ''; + content = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexStepClipboard'; + static typeName = "exa.cortex_pb.CortexStepClipboard"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'content', - kind: 'scalar', - T: 9, + name: "content", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _CortexStepClipboard().fromBinary(bytes, options); @@ -58048,69 +50917,52 @@ var ExecutorMetadata = class _ExecutorMetadata extends Message { * * @generated from field: string execution_id = 9; */ - executionId = ''; + executionId = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.ExecutorMetadata'; + static typeName = "exa.cortex_pb.ExecutorMetadata"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'termination_reason', - kind: 'enum', - T: proto3.getEnumType(ExecutorTerminationReason), - }, + { no: 1, name: "termination_reason", kind: "enum", T: proto3.getEnumType(ExecutorTerminationReason) }, { no: 2, - name: 'num_generator_invocations', - kind: 'scalar', - T: 5, + name: "num_generator_invocations", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, { no: 3, - name: 'last_step_idx', - kind: 'scalar', - T: 5, + name: "last_step_idx", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, { no: 4, - name: 'proceeded_with_auto_continue', - kind: 'scalar', - T: 8, + name: "proceeded_with_auto_continue", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 5, - name: 'num_forced_invocations', - kind: 'scalar', - T: 5, + name: "num_forced_invocations", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, - { - no: 6, - name: 'segment_records', - kind: 'message', - T: MetricsRecord, - repeated: true, - }, - { - no: 7, - name: 'trajectory_records', - kind: 'message', - T: MetricsRecord, - repeated: true, - }, + { no: 6, name: "segment_records", kind: "message", T: MetricsRecord, repeated: true }, + { no: 7, name: "trajectory_records", kind: "message", T: MetricsRecord, repeated: true }, { no: 9, - name: 'execution_id', - kind: 'scalar', - T: 9, + name: "execution_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _ExecutorMetadata().fromBinary(bytes, options); @@ -58139,10 +50991,10 @@ var CortexStepLintDiff = class _CortexStepLintDiff extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexStepLintDiff'; + static typeName = "exa.cortex_pb.CortexStepLintDiff"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'type', kind: 'enum', T: proto3.getEnumType(LintDiffType) }, - { no: 2, name: 'lint', kind: 'message', T: CodeDiagnostic }, + { no: 1, name: "type", kind: "enum", T: proto3.getEnumType(LintDiffType) }, + { no: 2, name: "lint", kind: "message", T: CodeDiagnostic } ]); static fromBinary(bytes, options) { return new _CortexStepLintDiff().fromBinary(bytes, options); @@ -58161,7 +51013,7 @@ var BrainEntry = class _BrainEntry extends Message { /** * @generated from field: string id = 1; */ - id = ''; + id = ""; /** * @generated from field: exa.cortex_pb.BrainEntryType type = 2; */ @@ -58171,34 +51023,29 @@ var BrainEntry = class _BrainEntry extends Message { * * @generated from field: string content = 3; */ - content = ''; + content = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.BrainEntry'; + static typeName = "exa.cortex_pb.BrainEntry"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'id', - kind: 'scalar', - T: 9, + name: "id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { - no: 2, - name: 'type', - kind: 'enum', - T: proto3.getEnumType(BrainEntryType), - }, + { no: 2, name: "type", kind: "enum", T: proto3.getEnumType(BrainEntryType) }, { no: 3, - name: 'content', - kind: 'scalar', - T: 9, + name: "content", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _BrainEntry().fromBinary(bytes, options); @@ -58227,10 +51074,10 @@ var PlanEntryDeltaSummary = class _PlanEntryDeltaSummary extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.PlanEntryDeltaSummary'; + static typeName = "exa.cortex_pb.PlanEntryDeltaSummary"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'items_added', kind: 'scalar', T: 9, repeated: true }, - { no: 2, name: 'items_completed', kind: 'scalar', T: 9, repeated: true }, + { no: 1, name: "items_added", kind: "scalar", T: 9, repeated: true }, + { no: 2, name: "items_completed", kind: "scalar", T: 9, repeated: true } ]); static fromBinary(bytes, options) { return new _PlanEntryDeltaSummary().fromBinary(bytes, options); @@ -58255,22 +51102,10 @@ var BrainEntryDeltaSummary = class _BrainEntryDeltaSummary extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.BrainEntryDeltaSummary'; + static typeName = "exa.cortex_pb.BrainEntryDeltaSummary"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'plan', - kind: 'message', - T: PlanEntryDeltaSummary, - oneof: 'summary', - }, - { - no: 2, - name: 'task', - kind: 'message', - T: TaskEntryDeltaSummary, - oneof: 'summary', - }, + { no: 1, name: "plan", kind: "message", T: PlanEntryDeltaSummary, oneof: "summary" }, + { no: 2, name: "task", kind: "message", T: TaskEntryDeltaSummary, oneof: "summary" } ]); static fromBinary(bytes, options) { return new _BrainEntryDeltaSummary().fromBinary(bytes, options); @@ -58297,7 +51132,7 @@ var BrainEntryDelta = class _BrainEntryDelta extends Message { /** * @generated from field: string absolute_path_uri = 3; */ - absolutePathUri = ''; + absolutePathUri = ""; /** * Optional summary of the delta, specific to the type of entry. * @@ -58309,18 +51144,18 @@ var BrainEntryDelta = class _BrainEntryDelta extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.BrainEntryDelta'; + static typeName = "exa.cortex_pb.BrainEntryDelta"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'before', kind: 'message', T: BrainEntry }, - { no: 2, name: 'after', kind: 'message', T: BrainEntry }, + { no: 1, name: "before", kind: "message", T: BrainEntry }, + { no: 2, name: "after", kind: "message", T: BrainEntry }, { no: 3, - name: 'absolute_path_uri', - kind: 'scalar', - T: 9, + name: "absolute_path_uri", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 4, name: 'summary', kind: 'message', T: BrainEntryDeltaSummary }, + { no: 4, name: "summary", kind: "message", T: BrainEntryDeltaSummary } ]); static fromBinary(bytes, options) { return new _BrainEntryDelta().fromBinary(bytes, options); @@ -58339,11 +51174,11 @@ var TaskItem = class _TaskItem extends Message { /** * @generated from field: string id = 1; */ - id = ''; + id = ""; /** * @generated from field: string content = 2; */ - content = ''; + content = ""; /** * @generated from field: exa.cortex_pb.TaskStatus status = 3; */ @@ -58353,49 +51188,49 @@ var TaskItem = class _TaskItem extends Message { * * @generated from field: string parent_id = 4; */ - parentId = ''; + parentId = ""; /** * ID of previous sibling (empty for first child) * * @generated from field: string prev_sibling_id = 5; */ - prevSiblingId = ''; + prevSiblingId = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.TaskItem'; + static typeName = "exa.cortex_pb.TaskItem"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'id', - kind: 'scalar', - T: 9, + name: "id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'content', - kind: 'scalar', - T: 9, + name: "content", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 3, name: 'status', kind: 'enum', T: proto3.getEnumType(TaskStatus) }, + { no: 3, name: "status", kind: "enum", T: proto3.getEnumType(TaskStatus) }, { no: 4, - name: 'parent_id', - kind: 'scalar', - T: 9, + name: "parent_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 5, - name: 'prev_sibling_id', - kind: 'scalar', - T: 9, + name: "prev_sibling_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _TaskItem().fromBinary(bytes, options); @@ -58418,7 +51253,7 @@ var TaskDelta = class _TaskDelta extends Message { /** * @generated from field: string id = 2; */ - id = ''; + id = ""; /** * Task data - always populated for relevant operations * @@ -58426,7 +51261,7 @@ var TaskDelta = class _TaskDelta extends Message { * * @generated from field: string content = 3; */ - content = ''; + content = ""; /** * Current/new status * @@ -58440,13 +51275,13 @@ var TaskDelta = class _TaskDelta extends Message { * * @generated from field: string parent_id = 5; */ - parentId = ''; + parentId = ""; /** * Insert after this sibling (empty for first position) * * @generated from field: string prev_sibling_id = 6; */ - prevSiblingId = ''; + prevSiblingId = ""; /** * For move operations - original position (optional, for context) * @@ -58454,64 +51289,64 @@ var TaskDelta = class _TaskDelta extends Message { * * @generated from field: string from_parent = 7; */ - fromParent = ''; + fromParent = ""; /** * Original previous sibling id (empty for first position) * * @generated from field: string from_prev_sibling = 8; */ - fromPrevSibling = ''; + fromPrevSibling = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.TaskDelta'; + static typeName = "exa.cortex_pb.TaskDelta"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'type', kind: 'enum', T: proto3.getEnumType(TaskDeltaType) }, + { no: 1, name: "type", kind: "enum", T: proto3.getEnumType(TaskDeltaType) }, { no: 2, - name: 'id', - kind: 'scalar', - T: 9, + name: "id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 3, - name: 'content', - kind: 'scalar', - T: 9, + name: "content", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 4, name: 'status', kind: 'enum', T: proto3.getEnumType(TaskStatus) }, + { no: 4, name: "status", kind: "enum", T: proto3.getEnumType(TaskStatus) }, { no: 5, - name: 'parent_id', - kind: 'scalar', - T: 9, + name: "parent_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 6, - name: 'prev_sibling_id', - kind: 'scalar', - T: 9, + name: "prev_sibling_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 7, - name: 'from_parent', - kind: 'scalar', - T: 9, + name: "from_parent", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 8, - name: 'from_prev_sibling', - kind: 'scalar', - T: 9, + name: "from_prev_sibling", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _TaskDelta().fromBinary(bytes, options); @@ -58566,44 +51401,44 @@ var TaskEntryDeltaSummary = class _TaskEntryDeltaSummary extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.TaskEntryDeltaSummary'; + static typeName = "exa.cortex_pb.TaskEntryDeltaSummary"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'deltas', kind: 'message', T: TaskDelta, repeated: true }, + { no: 1, name: "deltas", kind: "message", T: TaskDelta, repeated: true }, { no: 2, - name: 'items_added', - kind: 'scalar', - T: 5, + name: "items_added", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, { no: 3, - name: 'items_pruned', - kind: 'scalar', - T: 5, + name: "items_pruned", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, { no: 4, - name: 'items_deleted', - kind: 'scalar', - T: 5, + name: "items_deleted", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, { no: 5, - name: 'items_updated', - kind: 'scalar', - T: 5, + name: "items_updated", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, { no: 6, - name: 'items_moved', - kind: 'scalar', - T: 5, + name: "items_moved", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ - }, + } ]); static fromBinary(bytes, options) { return new _TaskEntryDeltaSummary().fromBinary(bytes, options); @@ -58642,28 +51477,11 @@ var CortexStepBrainUpdate = class _CortexStepBrainUpdate extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexStepBrainUpdate'; + static typeName = "exa.cortex_pb.CortexStepBrainUpdate"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'entry_type', - kind: 'enum', - T: proto3.getEnumType(BrainEntryType), - oneof: 'target', - }, - { - no: 3, - name: 'trigger', - kind: 'enum', - T: proto3.getEnumType(BrainUpdateTrigger), - }, - { - no: 2, - name: 'deltas', - kind: 'message', - T: BrainEntryDelta, - repeated: true, - }, + { no: 1, name: "entry_type", kind: "enum", T: proto3.getEnumType(BrainEntryType), oneof: "target" }, + { no: 3, name: "trigger", kind: "enum", T: proto3.getEnumType(BrainUpdateTrigger) }, + { no: 2, name: "deltas", kind: "message", T: BrainEntryDelta, repeated: true } ]); static fromBinary(bytes, options) { return new _CortexStepBrainUpdate().fromBinary(bytes, options); @@ -58684,37 +51502,37 @@ var CortexStepBrowserSubagent = class _CortexStepBrowserSubagent extends Message * * @generated from field: string task = 1; */ - task = ''; + task = ""; /** * ID of the subagent to use. If empty, a new subagent will be created. * * @generated from field: string reused_subagent_id = 9; */ - reusedSubagentId = ''; + reusedSubagentId = ""; /** * Name of the recording file (without extension) when saving as artifact. * * @generated from field: string recording_name = 7; */ - recordingName = ''; + recordingName = ""; /** * Outputs * * @generated from field: string result = 2; */ - result = ''; + result = ""; /** * Title of the task * * @generated from field: string task_name = 3; */ - taskName = ''; + taskName = ""; /** * Path to the recording of the subagent's work * * @generated from field: string recording_path = 4; */ - recordingPath = ''; + recordingPath = ""; /** * Status of the recording video generation * @@ -58727,69 +51545,64 @@ var CortexStepBrowserSubagent = class _CortexStepBrowserSubagent extends Message * * @generated from field: string subagent_id = 8; */ - subagentId = ''; + subagentId = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexStepBrowserSubagent'; + static typeName = "exa.cortex_pb.CortexStepBrowserSubagent"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'task', - kind: 'scalar', - T: 9, + name: "task", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 9, - name: 'reused_subagent_id', - kind: 'scalar', - T: 9, + name: "reused_subagent_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 7, - name: 'recording_name', - kind: 'scalar', - T: 9, + name: "recording_name", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'result', - kind: 'scalar', - T: 9, + name: "result", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 3, - name: 'task_name', - kind: 'scalar', - T: 9, + name: "task_name", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 4, - name: 'recording_path', - kind: 'scalar', - T: 9, + name: "recording_path", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { - no: 6, - name: 'recording_generation_status', - kind: 'enum', - T: proto3.getEnumType(RecordingGenerationStatus), - }, + { no: 6, name: "recording_generation_status", kind: "enum", T: proto3.getEnumType(RecordingGenerationStatus) }, { no: 8, - name: 'subagent_id', - kind: 'scalar', - T: 9, + name: "subagent_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _CortexStepBrowserSubagent().fromBinary(bytes, options); @@ -58850,60 +51663,60 @@ var KnowledgeConfig = class _KnowledgeConfig extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.KnowledgeConfig'; + static typeName = "exa.cortex_pb.KnowledgeConfig"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'enabled', kind: 'scalar', T: 8, opt: true }, - { no: 2, name: 'model', kind: 'enum', T: proto3.getEnumType(Model) }, + { no: 1, name: "enabled", kind: "scalar", T: 8, opt: true }, + { no: 2, name: "model", kind: "enum", T: proto3.getEnumType(Model) }, { no: 3, - name: 'max_context_tokens', - kind: 'scalar', - T: 13, + name: "max_context_tokens", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, { no: 4, - name: 'max_invocations', - kind: 'scalar', - T: 13, + name: "max_invocations", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, { no: 5, - name: 'min_turns_between_knowledge_generation', - kind: 'scalar', - T: 13, + name: "min_turns_between_knowledge_generation", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, { no: 6, - name: 'max_knowledge_items', - kind: 'scalar', - T: 13, + name: "max_knowledge_items", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, { no: 7, - name: 'max_artifacts_per_ki', - kind: 'scalar', - T: 13, + name: "max_artifacts_per_ki", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, { no: 8, - name: 'max_title_length', - kind: 'scalar', - T: 13, + name: "max_title_length", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, { no: 9, - name: 'max_summary_length', - kind: 'scalar', - T: 13, + name: "max_summary_length", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, - { no: 10, name: 'enable_ki_insertion', kind: 'scalar', T: 8, opt: true }, + { no: 10, name: "enable_ki_insertion", kind: "scalar", T: 8, opt: true } ]); static fromBinary(bytes, options) { return new _KnowledgeConfig().fromBinary(bytes, options); @@ -58924,7 +51737,7 @@ var CortexStepKnowledgeGeneration = class _CortexStepKnowledgeGeneration extends proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexStepKnowledgeGeneration'; + static typeName = "exa.cortex_pb.CortexStepKnowledgeGeneration"; static fields = proto3.util.newFieldList(() => []); static fromBinary(bytes, options) { return new _CortexStepKnowledgeGeneration().fromBinary(bytes, options); @@ -58933,10 +51746,7 @@ var CortexStepKnowledgeGeneration = class _CortexStepKnowledgeGeneration extends return new _CortexStepKnowledgeGeneration().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _CortexStepKnowledgeGeneration().fromJsonString( - jsonString, - options, - ); + return new _CortexStepKnowledgeGeneration().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_CortexStepKnowledgeGeneration, a, b); @@ -58948,13 +51758,13 @@ var CortexStepOpenBrowserUrl = class _CortexStepOpenBrowserUrl extends Message { * * @generated from field: string url = 1; */ - url = ''; + url = ""; /** * Page ID (optional) to replace with the new URL. * * @generated from field: string page_id_to_replace = 8; */ - pageIdToReplace = ''; + pageIdToReplace = ""; /** * The decision for whether to auto open the URL in the Browser. * @@ -58973,7 +51783,7 @@ var CortexStepOpenBrowserUrl = class _CortexStepOpenBrowserUrl extends Message { * * @generated from field: string page_id = 4; */ - pageId = ''; + pageId = ""; /** * The web document captured from the opened page. * @@ -59004,59 +51814,54 @@ var CortexStepOpenBrowserUrl = class _CortexStepOpenBrowserUrl extends Message { * * @generated from field: string browser_state_diff = 9; */ - browserStateDiff = ''; + browserStateDiff = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexStepOpenBrowserUrl'; + static typeName = "exa.cortex_pb.CortexStepOpenBrowserUrl"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'url', - kind: 'scalar', - T: 9, + name: "url", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 8, - name: 'page_id_to_replace', - kind: 'scalar', - T: 9, + name: "page_id_to_replace", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { - no: 2, - name: 'auto_run_decision', - kind: 'enum', - T: proto3.getEnumType(AutoRunDecision), - }, + { no: 2, name: "auto_run_decision", kind: "enum", T: proto3.getEnumType(AutoRunDecision) }, { no: 3, - name: 'user_rejected', - kind: 'scalar', - T: 8, + name: "user_rejected", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 4, - name: 'page_id', - kind: 'scalar', - T: 9, + name: "page_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 5, name: 'web_document', kind: 'message', T: KnowledgeBaseItem }, - { no: 6, name: 'page_metadata', kind: 'message', T: BrowserPageMetadata }, - { no: 7, name: 'screenshot', kind: 'message', T: ImageData }, - { no: 10, name: 'media_screenshot', kind: 'message', T: Media }, + { no: 5, name: "web_document", kind: "message", T: KnowledgeBaseItem }, + { no: 6, name: "page_metadata", kind: "message", T: BrowserPageMetadata }, + { no: 7, name: "screenshot", kind: "message", T: ImageData }, + { no: 10, name: "media_screenshot", kind: "message", T: Media }, { no: 9, - name: 'browser_state_diff', - kind: 'scalar', - T: 9, + name: "browser_state_diff", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _CortexStepOpenBrowserUrl().fromBinary(bytes, options); @@ -59078,25 +51883,25 @@ var CortexStepExecuteBrowserJavaScript = class _CortexStepExecuteBrowserJavaScri * * @generated from field: string title = 9; */ - title = ''; + title = ""; /** * page_id of the Browser page to execute the JavaScript on. * * @generated from field: string page_id = 1; */ - pageId = ''; + pageId = ""; /** * JavaScript to execute on the page. * * @generated from field: string javascript_source = 2; */ - javascriptSource = ''; + javascriptSource = ""; /** * Human-readable description of the JavaScript to execute. * * @generated from field: string javascript_description = 3; */ - javascriptDescription = ''; + javascriptDescription = ""; /** * Whether the command should be run without user approval, as decided by the * model. Will not take effect unless the user has opted in to automated @@ -59147,107 +51952,96 @@ var CortexStepExecuteBrowserJavaScript = class _CortexStepExecuteBrowserJavaScri * * @generated from field: string javascript_result = 8; */ - javascriptResult = ''; + javascriptResult = ""; /** * String representation of the browser state diff for this action. * * @generated from field: string browser_state_diff = 11; */ - browserStateDiff = ''; + browserStateDiff = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexStepExecuteBrowserJavaScript'; + static typeName = "exa.cortex_pb.CortexStepExecuteBrowserJavaScript"; static fields = proto3.util.newFieldList(() => [ { no: 9, - name: 'title', - kind: 'scalar', - T: 9, + name: "title", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 1, - name: 'page_id', - kind: 'scalar', - T: 9, + name: "page_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'javascript_source', - kind: 'scalar', - T: 9, + name: "javascript_source", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 3, - name: 'javascript_description', - kind: 'scalar', - T: 9, + name: "javascript_description", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 10, - name: 'should_auto_run', - kind: 'scalar', - T: 8, + name: "should_auto_run", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, - { - no: 13, - name: 'waiting_reason', - kind: 'enum', - T: proto3.getEnumType(BrowserActionWaitingReason), - }, + { no: 13, name: "waiting_reason", kind: "enum", T: proto3.getEnumType(BrowserActionWaitingReason) }, { no: 4, - name: 'user_rejected', - kind: 'scalar', - T: 8, + name: "user_rejected", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, - { no: 5, name: 'screenshot_end', kind: 'message', T: ImageData }, - { no: 12, name: 'media_screenshot_end', kind: 'message', T: Media }, - { no: 6, name: 'page_metadata', kind: 'message', T: BrowserPageMetadata }, + { no: 5, name: "screenshot_end", kind: "message", T: ImageData }, + { no: 12, name: "media_screenshot_end", kind: "message", T: Media }, + { no: 6, name: "page_metadata", kind: "message", T: BrowserPageMetadata }, { no: 7, - name: 'execution_duration_ms', - kind: 'scalar', - T: 4, + name: "execution_duration_ms", + kind: "scalar", + T: 4 /* ScalarType.UINT64 */ }, { no: 8, - name: 'javascript_result', - kind: 'scalar', - T: 9, + name: "javascript_result", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 11, - name: 'browser_state_diff', - kind: 'scalar', - T: 9, + name: "browser_state_diff", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _CortexStepExecuteBrowserJavaScript().fromBinary(bytes, options); } static fromJson(jsonValue, options) { - return new _CortexStepExecuteBrowserJavaScript().fromJson( - jsonValue, - options, - ); + return new _CortexStepExecuteBrowserJavaScript().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _CortexStepExecuteBrowserJavaScript().fromJsonString( - jsonString, - options, - ); + return new _CortexStepExecuteBrowserJavaScript().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_CortexStepExecuteBrowserJavaScript, a, b); @@ -59259,7 +52053,7 @@ var CortexStepReadBrowserPage = class _CortexStepReadBrowserPage extends Message * * @generated from field: string page_id = 1; */ - pageId = ''; + pageId = ""; /** * The web document captured from the opened page. * @@ -59277,17 +52071,17 @@ var CortexStepReadBrowserPage = class _CortexStepReadBrowserPage extends Message proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexStepReadBrowserPage'; + static typeName = "exa.cortex_pb.CortexStepReadBrowserPage"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'page_id', - kind: 'scalar', - T: 9, + name: "page_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 2, name: 'web_document', kind: 'message', T: KnowledgeBaseItem }, - { no: 3, name: 'page_metadata', kind: 'message', T: BrowserPageMetadata }, + { no: 2, name: "web_document", kind: "message", T: KnowledgeBaseItem }, + { no: 3, name: "page_metadata", kind: "message", T: BrowserPageMetadata } ]); static fromBinary(bytes, options) { return new _CortexStepReadBrowserPage().fromBinary(bytes, options); @@ -59308,7 +52102,7 @@ var CortexStepBrowserGetDom = class _CortexStepBrowserGetDom extends Message { * * @generated from field: string page_id = 1; */ - pageId = ''; + pageId = ""; /** * The DOM tree of the page. * @@ -59322,13 +52116,13 @@ var CortexStepBrowserGetDom = class _CortexStepBrowserGetDom extends Message { * @generated from field: string serialized_dom_tree = 3 [deprecated = true]; * @deprecated */ - serializedDomTree = ''; + serializedDomTree = ""; /** * The URI of a txt file storing the serialized DOM tree of the page. * * @generated from field: string serialized_dom_tree_uri = 5; */ - serializedDomTreeUri = ''; + serializedDomTreeUri = ""; /** * Auto-populated metadata associated with the Browser page. * @@ -59340,31 +52134,31 @@ var CortexStepBrowserGetDom = class _CortexStepBrowserGetDom extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexStepBrowserGetDom'; + static typeName = "exa.cortex_pb.CortexStepBrowserGetDom"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'page_id', - kind: 'scalar', - T: 9, + name: "page_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 2, name: 'dom_tree', kind: 'message', T: DOMTree }, + { no: 2, name: "dom_tree", kind: "message", T: DOMTree }, { no: 3, - name: 'serialized_dom_tree', - kind: 'scalar', - T: 9, + name: "serialized_dom_tree", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 5, - name: 'serialized_dom_tree_uri', - kind: 'scalar', - T: 9, + name: "serialized_dom_tree_uri", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 4, name: 'page_metadata', kind: 'message', T: BrowserPageMetadata }, + { no: 4, name: "page_metadata", kind: "message", T: BrowserPageMetadata } ]); static fromBinary(bytes, options) { return new _CortexStepBrowserGetDom().fromBinary(bytes, options); @@ -59391,15 +52185,9 @@ var CortexStepListBrowserPages = class _CortexStepListBrowserPages extends Messa proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexStepListBrowserPages'; + static typeName = "exa.cortex_pb.CortexStepListBrowserPages"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'pages', - kind: 'message', - T: BrowserPageMetadata, - repeated: true, - }, + { no: 1, name: "pages", kind: "message", T: BrowserPageMetadata, repeated: true } ]); static fromBinary(bytes, options) { return new _CortexStepListBrowserPages().fromBinary(bytes, options); @@ -59408,10 +52196,7 @@ var CortexStepListBrowserPages = class _CortexStepListBrowserPages extends Messa return new _CortexStepListBrowserPages().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _CortexStepListBrowserPages().fromJsonString( - jsonString, - options, - ); + return new _CortexStepListBrowserPages().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_CortexStepListBrowserPages, a, b); @@ -59423,7 +52208,7 @@ var CortexStepCaptureBrowserScreenshot = class _CortexStepCaptureBrowserScreensh * * @generated from field: string page_id = 1; */ - pageId = ''; + pageId = ""; /** * Whether to save the screenshot as an artifact. * @@ -59435,7 +52220,7 @@ var CortexStepCaptureBrowserScreenshot = class _CortexStepCaptureBrowserScreensh * * @generated from field: string screenshot_name = 10; */ - screenshotName = ''; + screenshotName = ""; /** * Whether to capture a screenshot of a specific element by index. * @@ -59499,82 +52284,71 @@ var CortexStepCaptureBrowserScreenshot = class _CortexStepCaptureBrowserScreensh proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexStepCaptureBrowserScreenshot'; + static typeName = "exa.cortex_pb.CortexStepCaptureBrowserScreenshot"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'page_id', - kind: 'scalar', - T: 9, + name: "page_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 7, - name: 'save_screenshot', - kind: 'scalar', - T: 8, + name: "save_screenshot", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 10, - name: 'screenshot_name', - kind: 'scalar', - T: 9, + name: "screenshot_name", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 8, - name: 'capture_by_element_index', - kind: 'scalar', - T: 8, + name: "capture_by_element_index", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 9, - name: 'element_index', - kind: 'scalar', - T: 5, + name: "element_index", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, { no: 12, - name: 'capture_beyond_viewport', - kind: 'scalar', - T: 8, + name: "capture_beyond_viewport", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 2, - name: 'user_rejected', - kind: 'scalar', - T: 8, + name: "user_rejected", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, - { no: 3, name: 'screenshot', kind: 'message', T: ImageData }, - { no: 11, name: 'media_screenshot', kind: 'message', T: Media }, - { no: 13, name: 'screenshot_viewport', kind: 'message', T: Viewport }, - { no: 4, name: 'page_metadata', kind: 'message', T: BrowserPageMetadata }, - { - no: 5, - name: 'auto_run_decision', - kind: 'enum', - T: proto3.getEnumType(AutoRunDecision), - }, + { no: 3, name: "screenshot", kind: "message", T: ImageData }, + { no: 11, name: "media_screenshot", kind: "message", T: Media }, + { no: 13, name: "screenshot_viewport", kind: "message", T: Viewport }, + { no: 4, name: "page_metadata", kind: "message", T: BrowserPageMetadata }, + { no: 5, name: "auto_run_decision", kind: "enum", T: proto3.getEnumType(AutoRunDecision) } ]); static fromBinary(bytes, options) { return new _CortexStepCaptureBrowserScreenshot().fromBinary(bytes, options); } static fromJson(jsonValue, options) { - return new _CortexStepCaptureBrowserScreenshot().fromJson( - jsonValue, - options, - ); + return new _CortexStepCaptureBrowserScreenshot().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _CortexStepCaptureBrowserScreenshot().fromJsonString( - jsonString, - options, - ); + return new _CortexStepCaptureBrowserScreenshot().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_CortexStepCaptureBrowserScreenshot, a, b); @@ -59586,7 +52360,7 @@ var CortexStepClickBrowserPixel = class _CortexStepClickBrowserPixel extends Mes * * @generated from field: string page_id = 1; */ - pageId = ''; + pageId = ""; /** * Coordinates within the viewport. * @@ -59633,63 +52407,52 @@ var CortexStepClickBrowserPixel = class _CortexStepClickBrowserPixel extends Mes * * @generated from field: string browser_state_diff = 8; */ - browserStateDiff = ''; + browserStateDiff = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexStepClickBrowserPixel'; + static typeName = "exa.cortex_pb.CortexStepClickBrowserPixel"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'page_id', - kind: 'scalar', - T: 9, + name: "page_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'x', - kind: 'scalar', - T: 5, + name: "x", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, { no: 3, - name: 'y', - kind: 'scalar', - T: 5, + name: "y", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, - { - no: 7, - name: 'click_type', - kind: 'enum', - T: proto3.getEnumType(ClickType), - }, + { no: 7, name: "click_type", kind: "enum", T: proto3.getEnumType(ClickType) }, { no: 4, - name: 'user_rejected', - kind: 'scalar', - T: 8, + name: "user_rejected", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, - { no: 5, name: 'page_metadata', kind: 'message', T: BrowserPageMetadata }, - { - no: 6, - name: 'screenshot_with_click_feedback', - kind: 'message', - T: Media, - opt: true, - }, + { no: 5, name: "page_metadata", kind: "message", T: BrowserPageMetadata }, + { no: 6, name: "screenshot_with_click_feedback", kind: "message", T: Media, opt: true }, { no: 8, - name: 'browser_state_diff', - kind: 'scalar', - T: 9, + name: "browser_state_diff", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _CortexStepClickBrowserPixel().fromBinary(bytes, options); @@ -59698,10 +52461,7 @@ var CortexStepClickBrowserPixel = class _CortexStepClickBrowserPixel extends Mes return new _CortexStepClickBrowserPixel().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _CortexStepClickBrowserPixel().fromJsonString( - jsonString, - options, - ); + return new _CortexStepClickBrowserPixel().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_CortexStepClickBrowserPixel, a, b); @@ -59719,9 +52479,9 @@ var CortexStepAddAnnotation = class _CortexStepAddAnnotation extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexStepAddAnnotation'; + static typeName = "exa.cortex_pb.CortexStepAddAnnotation"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'annotation', kind: 'message', T: CodeAnnotation }, + { no: 1, name: "annotation", kind: "message", T: CodeAnnotation } ]); static fromBinary(bytes, options) { return new _CortexStepAddAnnotation().fromBinary(bytes, options); @@ -59742,7 +52502,7 @@ var CortexStepCaptureBrowserConsoleLogs = class _CortexStepCaptureBrowserConsole * * @generated from field: string page_id = 1; */ - pageId = ''; + pageId = ""; /** * Metadata associated with the Browser page. * @@ -59760,35 +52520,26 @@ var CortexStepCaptureBrowserConsoleLogs = class _CortexStepCaptureBrowserConsole proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexStepCaptureBrowserConsoleLogs'; + static typeName = "exa.cortex_pb.CortexStepCaptureBrowserConsoleLogs"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'page_id', - kind: 'scalar', - T: 9, + name: "page_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 2, name: 'page_metadata', kind: 'message', T: BrowserPageMetadata }, - { no: 3, name: 'console_logs', kind: 'message', T: ConsoleLogScopeItem }, + { no: 2, name: "page_metadata", kind: "message", T: BrowserPageMetadata }, + { no: 3, name: "console_logs", kind: "message", T: ConsoleLogScopeItem } ]); static fromBinary(bytes, options) { - return new _CortexStepCaptureBrowserConsoleLogs().fromBinary( - bytes, - options, - ); + return new _CortexStepCaptureBrowserConsoleLogs().fromBinary(bytes, options); } static fromJson(jsonValue, options) { - return new _CortexStepCaptureBrowserConsoleLogs().fromJson( - jsonValue, - options, - ); + return new _CortexStepCaptureBrowserConsoleLogs().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _CortexStepCaptureBrowserConsoleLogs().fromJsonString( - jsonString, - options, - ); + return new _CortexStepCaptureBrowserConsoleLogs().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_CortexStepCaptureBrowserConsoleLogs, a, b); @@ -59808,10 +52559,10 @@ var CascadePanelState = class _CascadePanelState extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CascadePanelState'; + static typeName = "exa.cortex_pb.CascadePanelState"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'plan_status', kind: 'message', T: PlanStatus }, - { no: 2, name: 'user_settings', kind: 'message', T: UserSettings }, + { no: 1, name: "plan_status", kind: "message", T: PlanStatus }, + { no: 2, name: "user_settings", kind: "message", T: UserSettings } ]); static fromBinary(bytes, options) { return new _CascadePanelState().fromBinary(bytes, options); @@ -59832,7 +52583,7 @@ var CortexStepCommandStatus = class _CortexStepCommandStatus extends Message { * * @generated from field: string command_id = 1; */ - commandId = ''; + commandId = ""; /** * @generated from field: uint32 output_character_count = 8; */ @@ -59855,7 +52606,7 @@ var CortexStepCommandStatus = class _CortexStepCommandStatus extends Message { * * @generated from field: string combined = 9; */ - combined = ''; + combined = ""; /** * Delta output since previous CommandStatus. Note that for very large * outputs, this may be truncated. Will be unset if no previous command status @@ -59886,12 +52637,12 @@ var CortexStepCommandStatus = class _CortexStepCommandStatus extends Message { * @generated from field: string stdout = 3 [deprecated = true]; * @deprecated */ - stdout = ''; + stdout = ""; /** * @generated from field: string stderr = 4 [deprecated = true]; * @deprecated */ - stderr = ''; + stderr = ""; /** * @generated from field: exa.cortex_pb.CommandOutputPriority output_priority = 7 [deprecated = true]; * @deprecated @@ -59902,72 +52653,62 @@ var CortexStepCommandStatus = class _CortexStepCommandStatus extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexStepCommandStatus'; + static typeName = "exa.cortex_pb.CortexStepCommandStatus"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'command_id', - kind: 'scalar', - T: 9, + name: "command_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 8, - name: 'output_character_count', - kind: 'scalar', - T: 13, + name: "output_character_count", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, { no: 10, - name: 'wait_duration_seconds', - kind: 'scalar', - T: 13, + name: "wait_duration_seconds", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, - { - no: 2, - name: 'status', - kind: 'enum', - T: proto3.getEnumType(CortexStepStatus), - }, + { no: 2, name: "status", kind: "enum", T: proto3.getEnumType(CortexStepStatus) }, { no: 9, - name: 'combined', - kind: 'scalar', - T: 9, + name: "combined", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 12, name: 'delta', kind: 'scalar', T: 9, opt: true }, - { no: 5, name: 'exit_code', kind: 'scalar', T: 5, opt: true }, - { no: 6, name: 'error', kind: 'message', T: CortexErrorDetails }, + { no: 12, name: "delta", kind: "scalar", T: 9, opt: true }, + { no: 5, name: "exit_code", kind: "scalar", T: 5, opt: true }, + { no: 6, name: "error", kind: "message", T: CortexErrorDetails }, { no: 11, - name: 'waited_duration_seconds', - kind: 'scalar', - T: 13, + name: "waited_duration_seconds", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, { no: 3, - name: 'stdout', - kind: 'scalar', - T: 9, + name: "stdout", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 4, - name: 'stderr', - kind: 'scalar', - T: 9, + name: "stderr", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { - no: 7, - name: 'output_priority', - kind: 'enum', - T: proto3.getEnumType(CommandOutputPriority), - }, + { no: 7, name: "output_priority", kind: "enum", T: proto3.getEnumType(CommandOutputPriority) } ]); static fromBinary(bytes, options) { return new _CortexStepCommandStatus().fromBinary(bytes, options); @@ -59986,13 +52727,13 @@ var CortexMemory = class _CortexMemory extends Message { /** * @generated from field: string memory_id = 1; */ - memoryId = ''; + memoryId = ""; /** * A short title for the memory, only used when Cascade generates memories * * @generated from field: string title = 6; */ - title = ''; + title = ""; /** * @generated from field: exa.cortex_pb.CortexMemoryMetadata metadata = 2; */ @@ -60018,37 +52759,26 @@ var CortexMemory = class _CortexMemory extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexMemory'; + static typeName = "exa.cortex_pb.CortexMemory"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'memory_id', - kind: 'scalar', - T: 9, + name: "memory_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 6, - name: 'title', - kind: 'scalar', - T: 9, + name: "title", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 2, name: 'metadata', kind: 'message', T: CortexMemoryMetadata }, - { - no: 3, - name: 'source', - kind: 'enum', - T: proto3.getEnumType(CortexMemorySource), - }, - { no: 4, name: 'scope', kind: 'message', T: CortexMemoryScope }, - { - no: 5, - name: 'text_memory', - kind: 'message', - T: CortexMemoryText, - oneof: 'memory', - }, + { no: 2, name: "metadata", kind: "message", T: CortexMemoryMetadata }, + { no: 3, name: "source", kind: "enum", T: proto3.getEnumType(CortexMemorySource) }, + { no: 4, name: "scope", kind: "message", T: CortexMemoryScope }, + { no: 5, name: "text_memory", kind: "message", T: CortexMemoryText, oneof: "memory" } ]); static fromBinary(bytes, options) { return new _CortexMemory().fromBinary(bytes, options); @@ -60096,19 +52826,19 @@ var CortexMemoryMetadata = class _CortexMemoryMetadata extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexMemoryMetadata'; + static typeName = "exa.cortex_pb.CortexMemoryMetadata"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'created_at', kind: 'message', T: Timestamp }, - { no: 2, name: 'last_modified', kind: 'message', T: Timestamp }, - { no: 3, name: 'last_accessed', kind: 'message', T: Timestamp }, - { no: 4, name: 'tags', kind: 'scalar', T: 9, repeated: true }, + { no: 1, name: "created_at", kind: "message", T: Timestamp }, + { no: 2, name: "last_modified", kind: "message", T: Timestamp }, + { no: 3, name: "last_accessed", kind: "message", T: Timestamp }, + { no: 4, name: "tags", kind: "scalar", T: 9, repeated: true }, { no: 5, - name: 'user_triggered', - kind: 'scalar', - T: 8, + name: "user_triggered", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ - }, + } ]); static fromBinary(bytes, options) { return new _CortexMemoryMetadata().fromBinary(bytes, options); @@ -60127,21 +52857,21 @@ var CortexMemoryText = class _CortexMemoryText extends Message { /** * @generated from field: string content = 1; */ - content = ''; + content = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexMemoryText'; + static typeName = "exa.cortex_pb.CortexMemoryText"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'content', - kind: 'scalar', - T: 9, + name: "content", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _CortexMemoryText().fromBinary(bytes, options); @@ -60166,36 +52896,12 @@ var CortexMemoryScope = class _CortexMemoryScope extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexMemoryScope'; + static typeName = "exa.cortex_pb.CortexMemoryScope"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'global_scope', - kind: 'message', - T: CortexMemoryGlobalScope, - oneof: 'scope', - }, - { - no: 2, - name: 'local_scope', - kind: 'message', - T: CortexMemoryLocalScope, - oneof: 'scope', - }, - { - no: 3, - name: 'all_scope', - kind: 'message', - T: CortexMemoryAllScope, - oneof: 'scope', - }, - { - no: 4, - name: 'project_scope', - kind: 'message', - T: CortexMemoryProjectScope, - oneof: 'scope', - }, + { no: 1, name: "global_scope", kind: "message", T: CortexMemoryGlobalScope, oneof: "scope" }, + { no: 2, name: "local_scope", kind: "message", T: CortexMemoryLocalScope, oneof: "scope" }, + { no: 3, name: "all_scope", kind: "message", T: CortexMemoryAllScope, oneof: "scope" }, + { no: 4, name: "project_scope", kind: "message", T: CortexMemoryProjectScope, oneof: "scope" } ]); static fromBinary(bytes, options) { return new _CortexMemoryScope().fromBinary(bytes, options); @@ -60216,7 +52922,7 @@ var CortexMemoryGlobalScope = class _CortexMemoryGlobalScope extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexMemoryGlobalScope'; + static typeName = "exa.cortex_pb.CortexMemoryGlobalScope"; static fields = proto3.util.newFieldList(() => []); static fromBinary(bytes, options) { return new _CortexMemoryGlobalScope().fromBinary(bytes, options); @@ -60248,23 +52954,23 @@ var CortexMemoryLocalScope = class _CortexMemoryLocalScope extends Message { * @generated from field: string repo_base_dir_uri = 1 [deprecated = true]; * @deprecated */ - repoBaseDirUri = ''; + repoBaseDirUri = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexMemoryLocalScope'; + static typeName = "exa.cortex_pb.CortexMemoryLocalScope"; static fields = proto3.util.newFieldList(() => [ - { no: 2, name: 'corpus_names', kind: 'scalar', T: 9, repeated: true }, - { no: 3, name: 'base_dir_uris', kind: 'scalar', T: 9, repeated: true }, + { no: 2, name: "corpus_names", kind: "scalar", T: 9, repeated: true }, + { no: 3, name: "base_dir_uris", kind: "scalar", T: 9, repeated: true }, { no: 1, - name: 'repo_base_dir_uri', - kind: 'scalar', - T: 9, + name: "repo_base_dir_uri", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _CortexMemoryLocalScope().fromBinary(bytes, options); @@ -60285,7 +52991,7 @@ var CortexMemoryAllScope = class _CortexMemoryAllScope extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexMemoryAllScope'; + static typeName = "exa.cortex_pb.CortexMemoryAllScope"; static fields = proto3.util.newFieldList(() => []); static fromBinary(bytes, options) { return new _CortexMemoryAllScope().fromBinary(bytes, options); @@ -60304,11 +53010,11 @@ var CortexMemoryProjectScope = class _CortexMemoryProjectScope extends Message { /** * @generated from field: string file_path = 1; */ - filePath = ''; + filePath = ""; /** * @generated from field: string absolute_file_path = 7; */ - absoluteFilePath = ''; + absoluteFilePath = ""; /** * @generated from field: repeated string base_dir_uris = 2; */ @@ -60324,7 +53030,7 @@ var CortexMemoryProjectScope = class _CortexMemoryProjectScope extends Message { /** * @generated from field: string description = 5; */ - description = ''; + description = ""; /** * @generated from field: repeated string globs = 6; */ @@ -60340,45 +53046,40 @@ var CortexMemoryProjectScope = class _CortexMemoryProjectScope extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexMemoryProjectScope'; + static typeName = "exa.cortex_pb.CortexMemoryProjectScope"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'file_path', - kind: 'scalar', - T: 9, + name: "file_path", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 7, - name: 'absolute_file_path', - kind: 'scalar', - T: 9, + name: "absolute_file_path", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 2, name: 'base_dir_uris', kind: 'scalar', T: 9, repeated: true }, - { no: 3, name: 'corpus_names', kind: 'scalar', T: 9, repeated: true }, - { - no: 4, - name: 'trigger', - kind: 'enum', - T: proto3.getEnumType(CortexMemoryTrigger), - }, + { no: 2, name: "base_dir_uris", kind: "scalar", T: 9, repeated: true }, + { no: 3, name: "corpus_names", kind: "scalar", T: 9, repeated: true }, + { no: 4, name: "trigger", kind: "enum", T: proto3.getEnumType(CortexMemoryTrigger) }, { no: 5, - name: 'description', - kind: 'scalar', - T: 9, + name: "description", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 6, name: 'globs', kind: 'scalar', T: 9, repeated: true }, + { no: 6, name: "globs", kind: "scalar", T: 9, repeated: true }, { no: 8, - name: 'priority', - kind: 'scalar', - T: 5, + name: "priority", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ - }, + } ]); static fromBinary(bytes, options) { return new _CortexMemoryProjectScope().fromBinary(bytes, options); @@ -60400,7 +53101,7 @@ var CortexStepMemory = class _CortexStepMemory extends Message { * * @generated from field: string memory_id = 1; */ - memoryId = ''; + memoryId = ""; /** * Updated version of the memory, nil if deleted. * @@ -60425,23 +53126,18 @@ var CortexStepMemory = class _CortexStepMemory extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexStepMemory'; + static typeName = "exa.cortex_pb.CortexStepMemory"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'memory_id', - kind: 'scalar', - T: 9, + name: "memory_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 2, name: 'memory', kind: 'message', T: CortexMemory }, - { no: 4, name: 'prev_memory', kind: 'message', T: CortexMemory }, - { - no: 3, - name: 'action', - kind: 'enum', - T: proto3.getEnumType(MemoryActionType), - }, + { no: 2, name: "memory", kind: "message", T: CortexMemory }, + { no: 4, name: "prev_memory", kind: "message", T: CortexMemory }, + { no: 3, name: "action", kind: "enum", T: proto3.getEnumType(MemoryActionType) } ]); static fromBinary(bytes, options) { return new _CortexStepMemory().fromBinary(bytes, options); @@ -60476,19 +53172,19 @@ var CortexStepRetrieveMemory = class _CortexStepRetrieveMemory extends Message { * * @generated from field: string cascade_memory_summary = 2; */ - cascadeMemorySummary = ''; + cascadeMemorySummary = ""; /** * A summary of User memories to show Cascade * * @generated from field: string user_memory_summary = 3; */ - userMemorySummary = ''; + userMemorySummary = ""; /** * The reason why these memories were retrieved * * @generated from field: string reason = 4; */ - reason = ''; + reason = ""; /** * Add the reason into the chat conversation. * @@ -60513,64 +53209,58 @@ var CortexStepRetrieveMemory = class _CortexStepRetrieveMemory extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexStepRetrieveMemory'; + static typeName = "exa.cortex_pb.CortexStepRetrieveMemory"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'run_subagent', - kind: 'scalar', - T: 8, + name: "run_subagent", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 8, - name: 'add_user_memories', - kind: 'scalar', - T: 8, + name: "add_user_memories", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 2, - name: 'cascade_memory_summary', - kind: 'scalar', - T: 9, + name: "cascade_memory_summary", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 3, - name: 'user_memory_summary', - kind: 'scalar', - T: 9, + name: "user_memory_summary", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 4, - name: 'reason', - kind: 'scalar', - T: 9, + name: "reason", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 5, - name: 'show_reason', - kind: 'scalar', - T: 8, + name: "show_reason", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, - { - no: 6, - name: 'retrieved_memories', - kind: 'message', - T: CortexMemory, - repeated: true, - }, + { no: 6, name: "retrieved_memories", kind: "message", T: CortexMemory, repeated: true }, { no: 7, - name: 'blocking', - kind: 'scalar', - T: 8, + name: "blocking", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ - }, + } ]); static fromBinary(bytes, options) { return new _CortexStepRetrieveMemory().fromBinary(bytes, options); @@ -60641,45 +53331,33 @@ var MemoryConfig = class _MemoryConfig extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.MemoryConfig'; + static typeName = "exa.cortex_pb.MemoryConfig"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'memory_model', kind: 'enum', T: proto3.getEnumType(Model) }, + { no: 1, name: "memory_model", kind: "enum", T: proto3.getEnumType(Model) }, { no: 5, - name: 'num_checkpoints_for_context', - kind: 'scalar', - T: 13, + name: "num_checkpoints_for_context", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, { no: 3, - name: 'num_memories_to_consider', - kind: 'scalar', - T: 5, + name: "num_memories_to_consider", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, { no: 4, - name: 'max_global_cascade_memories', - kind: 'scalar', - T: 5, + name: "max_global_cascade_memories", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, - { - no: 6, - name: 'condense_input_trajectory', - kind: 'scalar', - T: 8, - opt: true, - }, - { - no: 7, - name: 'add_user_memories_to_system_prompt', - kind: 'scalar', - T: 8, - opt: true, - }, - { no: 2, name: 'enabled', kind: 'scalar', T: 8, opt: true }, + { no: 6, name: "condense_input_trajectory", kind: "scalar", T: 8, opt: true }, + { no: 7, name: "add_user_memories_to_system_prompt", kind: "scalar", T: 8, opt: true }, + { no: 2, name: "enabled", kind: "scalar", T: 8, opt: true } ]); static fromBinary(bytes, options) { return new _MemoryConfig().fromBinary(bytes, options); @@ -60715,29 +53393,23 @@ var ViewedFileTrackerConfig = class _ViewedFileTrackerConfig extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.ViewedFileTrackerConfig'; + static typeName = "exa.cortex_pb.ViewedFileTrackerConfig"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'max_steps_per_checkpoint', - kind: 'scalar', - T: 13, - opt: true, - }, + { no: 1, name: "max_steps_per_checkpoint", kind: "scalar", T: 13, opt: true }, { no: 2, - name: 'max_files_in_prompt', - kind: 'scalar', - T: 13, + name: "max_files_in_prompt", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, { no: 3, - name: 'max_lines_per_file_in_prompt', - kind: 'scalar', - T: 13, + name: "max_lines_per_file_in_prompt", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ - }, + } ]); static fromBinary(bytes, options) { return new _ViewedFileTrackerConfig().fromBinary(bytes, options); @@ -60774,36 +53446,30 @@ var CodeStepCreationOptions = class _CodeStepCreationOptions extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CodeStepCreationOptions'; + static typeName = "exa.cortex_pb.CodeStepCreationOptions"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'diff_block_separation_threshold', - kind: 'scalar', - T: 3, + name: "diff_block_separation_threshold", + kind: "scalar", + T: 3 /* ScalarType.INT64 */ }, { no: 2, - name: 'handle_deletions', - kind: 'scalar', - T: 8, + name: "handle_deletions", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 3, - name: 'handle_creations', - kind: 'scalar', - T: 8, + name: "handle_creations", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, - { - no: 4, - name: 'include_original_content', - kind: 'scalar', - T: 8, - opt: true, - }, + { no: 4, name: "include_original_content", kind: "scalar", T: 8, opt: true } ]); static fromBinary(bytes, options) { return new _CodeStepCreationOptions().fromBinary(bytes, options); @@ -60822,21 +53488,21 @@ var BrainUpdateStepCreationOptions = class _BrainUpdateStepCreationOptions exten /** * @generated from field: string entry_id_prefix = 1; */ - entryIdPrefix = ''; + entryIdPrefix = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.BrainUpdateStepCreationOptions'; + static typeName = "exa.cortex_pb.BrainUpdateStepCreationOptions"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'entry_id_prefix', - kind: 'scalar', - T: 9, + name: "entry_id_prefix", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _BrainUpdateStepCreationOptions().fromBinary(bytes, options); @@ -60845,10 +53511,7 @@ var BrainUpdateStepCreationOptions = class _BrainUpdateStepCreationOptions exten return new _BrainUpdateStepCreationOptions().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _BrainUpdateStepCreationOptions().fromJsonString( - jsonString, - options, - ); + return new _BrainUpdateStepCreationOptions().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_BrainUpdateStepCreationOptions, a, b); @@ -60868,16 +53531,16 @@ var ViewFileStepCreationOptions = class _ViewFileStepCreationOptions extends Mes proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.ViewFileStepCreationOptions'; + static typeName = "exa.cortex_pb.ViewFileStepCreationOptions"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'condition_on_edit_step', - kind: 'scalar', - T: 8, + name: "condition_on_edit_step", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, - { no: 2, name: 'include_raw_content', kind: 'scalar', T: 8, opt: true }, + { no: 2, name: "include_raw_content", kind: "scalar", T: 8, opt: true } ]); static fromBinary(bytes, options) { return new _ViewFileStepCreationOptions().fromBinary(bytes, options); @@ -60886,10 +53549,7 @@ var ViewFileStepCreationOptions = class _ViewFileStepCreationOptions extends Mes return new _ViewFileStepCreationOptions().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _ViewFileStepCreationOptions().fromJsonString( - jsonString, - options, - ); + return new _ViewFileStepCreationOptions().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_ViewFileStepCreationOptions, a, b); @@ -60905,15 +53565,15 @@ var UserGrepStepCreationOptions = class _UserGrepStepCreationOptions extends Mes proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.UserGrepStepCreationOptions'; + static typeName = "exa.cortex_pb.UserGrepStepCreationOptions"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'num_search_events', - kind: 'scalar', - T: 13, + name: "num_search_events", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ - }, + } ]); static fromBinary(bytes, options) { return new _UserGrepStepCreationOptions().fromBinary(bytes, options); @@ -60922,10 +53582,7 @@ var UserGrepStepCreationOptions = class _UserGrepStepCreationOptions extends Mes return new _UserGrepStepCreationOptions().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _UserGrepStepCreationOptions().fromJsonString( - jsonString, - options, - ); + return new _UserGrepStepCreationOptions().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_UserGrepStepCreationOptions, a, b); @@ -60967,31 +53624,31 @@ var RunCommandStepCreationOptions = class _RunCommandStepCreationOptions extends proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.RunCommandStepCreationOptions'; + static typeName = "exa.cortex_pb.RunCommandStepCreationOptions"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'max_commands', - kind: 'scalar', - T: 13, + name: "max_commands", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, - { no: 2, name: 'max_command_age', kind: 'message', T: Duration }, + { no: 2, name: "max_command_age", kind: "message", T: Duration }, { no: 3, - name: 'per_command_max_bytes_output', - kind: 'scalar', - T: 13, + name: "per_command_max_bytes_output", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, { no: 4, - name: 'total_max_bytes_output', - kind: 'scalar', - T: 13, + name: "total_max_bytes_output", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, - { no: 5, name: 'include_running', kind: 'scalar', T: 8, opt: true }, + { no: 5, name: "include_running", kind: "scalar", T: 8, opt: true } ]); static fromBinary(bytes, options) { return new _RunCommandStepCreationOptions().fromBinary(bytes, options); @@ -61000,10 +53657,7 @@ var RunCommandStepCreationOptions = class _RunCommandStepCreationOptions extends return new _RunCommandStepCreationOptions().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _RunCommandStepCreationOptions().fromJsonString( - jsonString, - options, - ); + return new _RunCommandStepCreationOptions().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_RunCommandStepCreationOptions, a, b); @@ -61027,22 +53681,22 @@ var LintDiffStepCreationOptions = class _LintDiffStepCreationOptions extends Mes proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.LintDiffStepCreationOptions'; + static typeName = "exa.cortex_pb.LintDiffStepCreationOptions"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'max_lint_inserts', - kind: 'scalar', - T: 13, + name: "max_lint_inserts", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, { no: 2, - name: 'min_required_lint_duration', - kind: 'scalar', - T: 13, + name: "min_required_lint_duration", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ - }, + } ]); static fromBinary(bytes, options) { return new _LintDiffStepCreationOptions().fromBinary(bytes, options); @@ -61051,10 +53705,7 @@ var LintDiffStepCreationOptions = class _LintDiffStepCreationOptions extends Mes return new _LintDiffStepCreationOptions().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _LintDiffStepCreationOptions().fromJsonString( - jsonString, - options, - ); + return new _LintDiffStepCreationOptions().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_LintDiffStepCreationOptions, a, b); @@ -61072,15 +53723,15 @@ var BrowserStepCreationOptions = class _BrowserStepCreationOptions extends Messa proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.BrowserStepCreationOptions'; + static typeName = "exa.cortex_pb.BrowserStepCreationOptions"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'max_browser_interactions', - kind: 'scalar', - T: 13, + name: "max_browser_interactions", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ - }, + } ]); static fromBinary(bytes, options) { return new _BrowserStepCreationOptions().fromBinary(bytes, options); @@ -61089,10 +53740,7 @@ var BrowserStepCreationOptions = class _BrowserStepCreationOptions extends Messa return new _BrowserStepCreationOptions().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _BrowserStepCreationOptions().fromJsonString( - jsonString, - options, - ); + return new _BrowserStepCreationOptions().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_BrowserStepCreationOptions, a, b); @@ -61139,57 +53787,16 @@ var SnapshotToStepsOptions = class _SnapshotToStepsOptions extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.SnapshotToStepsOptions'; + static typeName = "exa.cortex_pb.SnapshotToStepsOptions"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'code_step_creation_options', - kind: 'message', - T: CodeStepCreationOptions, - }, - { - no: 2, - name: 'view_file_step_creation_options', - kind: 'message', - T: ViewFileStepCreationOptions, - }, - { - no: 3, - name: 'viewed_file_tracker_config', - kind: 'message', - T: ViewedFileTrackerConfig, - }, - { - no: 4, - name: 'step_type_allow_list', - kind: 'enum', - T: proto3.getEnumType(CortexStepType), - repeated: true, - }, - { - no: 5, - name: 'user_grep_step_creation_options', - kind: 'message', - T: UserGrepStepCreationOptions, - }, - { - no: 6, - name: 'run_command_step_creation_options', - kind: 'message', - T: RunCommandStepCreationOptions, - }, - { - no: 7, - name: 'lint_diff_step_creation_options', - kind: 'message', - T: LintDiffStepCreationOptions, - }, - { - no: 9, - name: 'browser_step_creation_options', - kind: 'message', - T: BrowserStepCreationOptions, - }, + { no: 1, name: "code_step_creation_options", kind: "message", T: CodeStepCreationOptions }, + { no: 2, name: "view_file_step_creation_options", kind: "message", T: ViewFileStepCreationOptions }, + { no: 3, name: "viewed_file_tracker_config", kind: "message", T: ViewedFileTrackerConfig }, + { no: 4, name: "step_type_allow_list", kind: "enum", T: proto3.getEnumType(CortexStepType), repeated: true }, + { no: 5, name: "user_grep_step_creation_options", kind: "message", T: UserGrepStepCreationOptions }, + { no: 6, name: "run_command_step_creation_options", kind: "message", T: RunCommandStepCreationOptions }, + { no: 7, name: "lint_diff_step_creation_options", kind: "message", T: LintDiffStepCreationOptions }, + { no: 9, name: "browser_step_creation_options", kind: "message", T: BrowserStepCreationOptions } ]); static fromBinary(bytes, options) { return new _SnapshotToStepsOptions().fromBinary(bytes, options); @@ -61210,25 +53817,25 @@ var CortexStepPostPrReview = class _CortexStepPostPrReview extends Message { * * @generated from field: string body = 1; */ - body = ''; + body = ""; /** * The SHA of the commit needing a comment * * @generated from field: string commit_id = 2; */ - commitId = ''; + commitId = ""; /** * The relative path to the file that necessitates a comment * * @generated from field: string path = 3; */ - path = ''; + path = ""; /** * The side of the diff that the PR's changes appear on * * @generated from field: string side = 4; */ - side = ''; + side = ""; /** * The first line in the PR diff that a multi-line comment applies to. * @@ -61248,63 +53855,63 @@ var CortexStepPostPrReview = class _CortexStepPostPrReview extends Message { * * @generated from field: string category = 7; */ - category = ''; + category = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexStepPostPrReview'; + static typeName = "exa.cortex_pb.CortexStepPostPrReview"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'body', - kind: 'scalar', - T: 9, + name: "body", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'commit_id', - kind: 'scalar', - T: 9, + name: "commit_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 3, - name: 'path', - kind: 'scalar', - T: 9, + name: "path", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 4, - name: 'side', - kind: 'scalar', - T: 9, + name: "side", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 5, - name: 'start_line', - kind: 'scalar', - T: 5, + name: "start_line", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, { no: 6, - name: 'end_line', - kind: 'scalar', - T: 5, + name: "end_line", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, { no: 7, - name: 'category', - kind: 'scalar', - T: 9, + name: "category", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _CortexStepPostPrReview().fromBinary(bytes, options); @@ -61323,11 +53930,11 @@ var McpServerSpec = class _McpServerSpec extends Message { /** * @generated from field: string server_name = 1; */ - serverName = ''; + serverName = ""; /** * @generated from field: string command = 2; */ - command = ''; + command = ""; /** * @generated from field: repeated string args = 3; */ @@ -61341,7 +53948,7 @@ var McpServerSpec = class _McpServerSpec extends Message { * * @generated from field: string server_url = 6; */ - serverUrl = ''; + serverUrl = ""; /** * @generated from field: bool disabled = 7; */ @@ -61387,82 +53994,70 @@ var McpServerSpec = class _McpServerSpec extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.McpServerSpec'; + static typeName = "exa.cortex_pb.McpServerSpec"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'server_name', - kind: 'scalar', - T: 9, + name: "server_name", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'command', - kind: 'scalar', - T: 9, + name: "command", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 3, name: 'args', kind: 'scalar', T: 9, repeated: true }, - { - no: 4, - name: 'env', - kind: 'map', - K: 9, - V: { - kind: 'scalar', - T: 9, - /* ScalarType.STRING */ - }, - }, + { no: 3, name: "args", kind: "scalar", T: 9, repeated: true }, + { no: 4, name: "env", kind: "map", K: 9, V: { + kind: "scalar", + T: 9 + /* ScalarType.STRING */ + } }, { no: 6, - name: 'server_url', - kind: 'scalar', - T: 9, + name: "server_url", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 7, - name: 'disabled', - kind: 'scalar', - T: 8, + name: "disabled", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, - { no: 8, name: 'disabled_tools', kind: 'scalar', T: 9, repeated: true }, - { no: 10, name: 'enabled_tools', kind: 'scalar', T: 9, repeated: true }, - { - no: 9, - name: 'headers', - kind: 'map', - K: 9, - V: { - kind: 'scalar', - T: 9, - /* ScalarType.STRING */ - }, - }, + { no: 8, name: "disabled_tools", kind: "scalar", T: 9, repeated: true }, + { no: 10, name: "enabled_tools", kind: "scalar", T: 9, repeated: true }, + { no: 9, name: "headers", kind: "map", K: 9, V: { + kind: "scalar", + T: 9 + /* ScalarType.STRING */ + } }, { no: 5, - name: 'server_index', - kind: 'scalar', - T: 13, + name: "server_index", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, { no: 11, - name: 'skip_tool_name_prefix', - kind: 'scalar', - T: 8, + name: "skip_tool_name_prefix", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 12, - name: 'skip_tool_description_prefix', - kind: 'scalar', - T: 8, + name: "skip_tool_description_prefix", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ - }, + } ]); static fromBinary(bytes, options) { return new _McpServerSpec().fromBinary(bytes, options); @@ -61481,32 +54076,32 @@ var McpServerInfo = class _McpServerInfo extends Message { /** * @generated from field: string name = 1; */ - name = ''; + name = ""; /** * @generated from field: string version = 2; */ - version = ''; + version = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.McpServerInfo'; + static typeName = "exa.cortex_pb.McpServerInfo"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'name', - kind: 'scalar', - T: 9, + name: "name", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'version', - kind: 'scalar', - T: 9, + name: "version", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _McpServerInfo().fromBinary(bytes, options); @@ -61527,13 +54122,13 @@ var StepRenderInfo = class _StepRenderInfo extends Message { * * @generated from field: string title = 1; */ - title = ''; + title = ""; /** * markdown content to render. * * @generated from field: string markdown = 2; */ - markdown = ''; + markdown = ""; /** * Optional metadata for additional context. * @@ -61545,33 +54140,27 @@ var StepRenderInfo = class _StepRenderInfo extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.StepRenderInfo'; + static typeName = "exa.cortex_pb.StepRenderInfo"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'title', - kind: 'scalar', - T: 9, + name: "title", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'markdown', - kind: 'scalar', - T: 9, + name: "markdown", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { - no: 3, - name: 'metadata', - kind: 'map', - K: 9, - V: { - kind: 'scalar', - T: 9, - /* ScalarType.STRING */ - }, - }, + { no: 3, name: "metadata", kind: "map", K: 9, V: { + kind: "scalar", + T: 9 + /* ScalarType.STRING */ + } } ]); static fromBinary(bytes, options) { return new _StepRenderInfo().fromBinary(bytes, options); @@ -61592,7 +54181,7 @@ var CortexStepMcpTool = class _CortexStepMcpTool extends Message { * * @generated from field: string server_name = 1; */ - serverName = ''; + serverName = ""; /** * @generated from field: exa.codeium_common_pb.ChatToolCall tool_call = 2; */ @@ -61635,29 +54224,29 @@ var CortexStepMcpTool = class _CortexStepMcpTool extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexStepMcpTool'; + static typeName = "exa.cortex_pb.CortexStepMcpTool"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'server_name', - kind: 'scalar', - T: 9, + name: "server_name", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 2, name: 'tool_call', kind: 'message', T: ChatToolCall }, - { no: 4, name: 'server_info', kind: 'message', T: McpServerInfo }, - { no: 3, name: 'result_string', kind: 'scalar', T: 9, oneof: 'result' }, - { no: 8, name: 'result_uri', kind: 'scalar', T: 9, oneof: 'result' }, - { no: 5, name: 'images', kind: 'message', T: ImageData, repeated: true }, - { no: 6, name: 'media', kind: 'message', T: Media, repeated: true }, + { no: 2, name: "tool_call", kind: "message", T: ChatToolCall }, + { no: 4, name: "server_info", kind: "message", T: McpServerInfo }, + { no: 3, name: "result_string", kind: "scalar", T: 9, oneof: "result" }, + { no: 8, name: "result_uri", kind: "scalar", T: 9, oneof: "result" }, + { no: 5, name: "images", kind: "message", T: ImageData, repeated: true }, + { no: 6, name: "media", kind: "message", T: Media, repeated: true }, { no: 7, - name: 'user_rejected', - kind: 'scalar', - T: 8, + name: "user_rejected", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, - { no: 9, name: 'render_info', kind: 'message', T: StepRenderInfo }, + { no: 9, name: "render_info", kind: "message", T: StepRenderInfo } ]); static fromBinary(bytes, options) { return new _CortexStepMcpTool().fromBinary(bytes, options); @@ -61676,54 +54265,54 @@ var McpResource = class _McpResource extends Message { /** * @generated from field: string uri = 1; */ - uri = ''; + uri = ""; /** * @generated from field: string name = 2; */ - name = ''; + name = ""; /** * @generated from field: string description = 3; */ - description = ''; + description = ""; /** * @generated from field: string mime_type = 4; */ - mimeType = ''; + mimeType = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.McpResource'; + static typeName = "exa.cortex_pb.McpResource"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'uri', - kind: 'scalar', - T: 9, + name: "uri", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'name', - kind: 'scalar', - T: 9, + name: "name", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 3, - name: 'description', - kind: 'scalar', - T: 9, + name: "description", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 4, - name: 'mime_type', - kind: 'scalar', - T: 9, + name: "mime_type", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _McpResource().fromBinary(bytes, options); @@ -61742,7 +54331,7 @@ var McpResourceContent = class _McpResourceContent extends Message { /** * @generated from field: string uri = 1; */ - uri = ''; + uri = ""; /** * @generated from oneof exa.cortex_pb.McpResourceContent.data */ @@ -61752,18 +54341,18 @@ var McpResourceContent = class _McpResourceContent extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.McpResourceContent'; + static typeName = "exa.cortex_pb.McpResourceContent"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'uri', - kind: 'scalar', - T: 9, + name: "uri", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 2, name: 'text', kind: 'message', T: TextData, oneof: 'data' }, - { no: 3, name: 'image', kind: 'message', T: ImageData, oneof: 'data' }, - { no: 4, name: 'media_content', kind: 'message', T: Media, oneof: 'data' }, + { no: 2, name: "text", kind: "message", T: TextData, oneof: "data" }, + { no: 3, name: "image", kind: "message", T: ImageData, oneof: "data" }, + { no: 4, name: "media_content", kind: "message", T: Media, oneof: "data" } ]); static fromBinary(bytes, options) { return new _McpResourceContent().fromBinary(bytes, options); @@ -61784,7 +54373,7 @@ var CortexStepListResources = class _CortexStepListResources extends Message { * * @generated from field: string server_name = 1; */ - serverName = ''; + serverName = ""; /** * Used for pagination * @@ -61800,36 +54389,30 @@ var CortexStepListResources = class _CortexStepListResources extends Message { /** * @generated from field: string next_cursor = 4; */ - nextCursor = ''; + nextCursor = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexStepListResources'; + static typeName = "exa.cortex_pb.CortexStepListResources"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'server_name', - kind: 'scalar', - T: 9, + name: "server_name", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 2, name: 'cursor', kind: 'scalar', T: 9, opt: true }, - { - no: 3, - name: 'resources', - kind: 'message', - T: McpResource, - repeated: true, - }, + { no: 2, name: "cursor", kind: "scalar", T: 9, opt: true }, + { no: 3, name: "resources", kind: "message", T: McpResource, repeated: true }, { no: 4, - name: 'next_cursor', - kind: 'scalar', - T: 9, + name: "next_cursor", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _CortexStepListResources().fromBinary(bytes, options); @@ -61850,11 +54433,11 @@ var CortexStepReadResource = class _CortexStepReadResource extends Message { * * @generated from field: string server_name = 1; */ - serverName = ''; + serverName = ""; /** * @generated from field: string uri = 2; */ - uri = ''; + uri = ""; /** * Outputs * @@ -61870,36 +54453,30 @@ var CortexStepReadResource = class _CortexStepReadResource extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexStepReadResource'; + static typeName = "exa.cortex_pb.CortexStepReadResource"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'server_name', - kind: 'scalar', - T: 9, + name: "server_name", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'uri', - kind: 'scalar', - T: 9, + name: "uri", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { - no: 3, - name: 'contents', - kind: 'message', - T: McpResourceContent, - repeated: true, - }, + { no: 3, name: "contents", kind: "message", T: McpResourceContent, repeated: true }, { no: 4, - name: 'skipped_non_image_binary_content', - kind: 'scalar', - T: 8, + name: "skipped_non_image_binary_content", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ - }, + } ]); static fromBinary(bytes, options) { return new _CortexStepReadResource().fromBinary(bytes, options); @@ -61920,21 +54497,21 @@ var CortexStepArtifactSummary = class _CortexStepArtifactSummary extends Message * * @generated from field: string summary = 1; */ - summary = ''; + summary = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexStepArtifactSummary'; + static typeName = "exa.cortex_pb.CortexStepArtifactSummary"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'summary', - kind: 'scalar', - T: 9, + name: "summary", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _CortexStepArtifactSummary().fromBinary(bytes, options); @@ -61959,27 +54536,22 @@ var CortexStepManagerFeedback = class _CortexStepManagerFeedback extends Message /** * @generated from field: string feedback = 2; */ - feedback = ''; + feedback = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexStepManagerFeedback'; + static typeName = "exa.cortex_pb.CortexStepManagerFeedback"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'status', - kind: 'enum', - T: proto3.getEnumType(CortexStepManagerFeedbackStatus), - }, + { no: 1, name: "status", kind: "enum", T: proto3.getEnumType(CortexStepManagerFeedbackStatus) }, { no: 2, - name: 'feedback', - kind: 'scalar', - T: 9, + name: "feedback", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _CortexStepManagerFeedback().fromBinary(bytes, options); @@ -62006,9 +54578,9 @@ var CortexStepToolCallProposal = class _CortexStepToolCallProposal extends Messa proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexStepToolCallProposal'; + static typeName = "exa.cortex_pb.CortexStepToolCallProposal"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'tool_call', kind: 'message', T: ChatToolCall }, + { no: 1, name: "tool_call", kind: "message", T: ChatToolCall } ]); static fromBinary(bytes, options) { return new _CortexStepToolCallProposal().fromBinary(bytes, options); @@ -62017,10 +54589,7 @@ var CortexStepToolCallProposal = class _CortexStepToolCallProposal extends Messa return new _CortexStepToolCallProposal().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _CortexStepToolCallProposal().fromJsonString( - jsonString, - options, - ); + return new _CortexStepToolCallProposal().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_CortexStepToolCallProposal, a, b); @@ -62042,35 +54611,29 @@ var CortexStepToolCallChoice = class _CortexStepToolCallChoice extends Message { /** * @generated from field: string reason = 3; */ - reason = ''; + reason = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexStepToolCallChoice'; + static typeName = "exa.cortex_pb.CortexStepToolCallChoice"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'proposal_tool_calls', - kind: 'message', - T: ChatToolCall, - repeated: true, - }, + { no: 1, name: "proposal_tool_calls", kind: "message", T: ChatToolCall, repeated: true }, { no: 2, - name: 'choice', - kind: 'scalar', - T: 13, + name: "choice", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, { no: 3, - name: 'reason', - kind: 'scalar', - T: 9, + name: "reason", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _CortexStepToolCallChoice().fromBinary(bytes, options); @@ -62101,35 +54664,29 @@ var CortexStepTrajectoryChoice = class _CortexStepTrajectoryChoice extends Messa /** * @generated from field: string reason = 3; */ - reason = ''; + reason = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexStepTrajectoryChoice'; + static typeName = "exa.cortex_pb.CortexStepTrajectoryChoice"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'proposal_trajectory_ids', - kind: 'scalar', - T: 9, - repeated: true, - }, + { no: 1, name: "proposal_trajectory_ids", kind: "scalar", T: 9, repeated: true }, { no: 2, - name: 'choice', - kind: 'scalar', - T: 5, + name: "choice", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, { no: 3, - name: 'reason', - kind: 'scalar', - T: 9, + name: "reason", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _CortexStepTrajectoryChoice().fromBinary(bytes, options); @@ -62138,10 +54695,7 @@ var CortexStepTrajectoryChoice = class _CortexStepTrajectoryChoice extends Messa return new _CortexStepTrajectoryChoice().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _CortexStepTrajectoryChoice().fromJsonString( - jsonString, - options, - ); + return new _CortexStepTrajectoryChoice().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_CortexStepTrajectoryChoice, a, b); @@ -62159,7 +54713,7 @@ var McpServerState = class _McpServerState extends Message { /** * @generated from field: string error = 3; */ - error = ''; + error = ""; /** * @generated from field: repeated exa.chat_pb.ChatToolDefinition tools = 4; */ @@ -62180,44 +54734,33 @@ var McpServerState = class _McpServerState extends Message { /** * @generated from field: string instructions = 6; */ - instructions = ''; + instructions = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.McpServerState'; + static typeName = "exa.cortex_pb.McpServerState"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'spec', kind: 'message', T: McpServerSpec }, - { - no: 2, - name: 'status', - kind: 'enum', - T: proto3.getEnumType(McpServerStatus), - }, + { no: 1, name: "spec", kind: "message", T: McpServerSpec }, + { no: 2, name: "status", kind: "enum", T: proto3.getEnumType(McpServerStatus) }, { no: 3, - name: 'error', - kind: 'scalar', - T: 9, + name: "error", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { - no: 4, - name: 'tools', - kind: 'message', - T: ChatToolDefinition, - repeated: true, - }, - { no: 7, name: 'tool_errors', kind: 'scalar', T: 9, repeated: true }, - { no: 5, name: 'server_info', kind: 'message', T: McpServerInfo }, + { no: 4, name: "tools", kind: "message", T: ChatToolDefinition, repeated: true }, + { no: 7, name: "tool_errors", kind: "scalar", T: 9, repeated: true }, + { no: 5, name: "server_info", kind: "message", T: McpServerInfo }, { no: 6, - name: 'instructions', - kind: 'scalar', - T: 9, + name: "instructions", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _McpServerState().fromBinary(bytes, options); @@ -62245,15 +54788,15 @@ var TrajectoryJudgeConfig = class _TrajectoryJudgeConfig extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.TrajectoryJudgeConfig'; + static typeName = "exa.cortex_pb.TrajectoryJudgeConfig"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'max_steps_to_judge', - kind: 'scalar', - T: 5, + name: "max_steps_to_judge", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ - }, + } ]); static fromBinary(bytes, options) { return new _TrajectoryJudgeConfig().fromBinary(bytes, options); @@ -62274,7 +54817,7 @@ var CortexStepViewFileOutline = class _CortexStepViewFileOutline extends Message * * @generated from field: string absolute_path_uri = 1; */ - absolutePathUri = ''; + absolutePathUri = ""; /** * For pagination of results. * @@ -62317,7 +54860,7 @@ var CortexStepViewFileOutline = class _CortexStepViewFileOutline extends Message * * @generated from field: string contents = 7; */ - contents = ''; + contents = ""; /** * @generated from field: uint32 content_lines_truncated = 8; */ @@ -62327,13 +54870,13 @@ var CortexStepViewFileOutline = class _CortexStepViewFileOutline extends Message * * @generated from field: string triggered_memories = 11; */ - triggeredMemories = ''; + triggeredMemories = ""; /** * Full raw content of the file. Only stored for telemetry. * * @generated from field: string raw_content = 12; */ - rawContent = ''; + rawContent = ""; /** * @generated from field: exa.cortex_pb.FilePermissionInteractionSpec file_permission_request = 13; */ @@ -62343,92 +54886,81 @@ var CortexStepViewFileOutline = class _CortexStepViewFileOutline extends Message proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexStepViewFileOutline'; + static typeName = "exa.cortex_pb.CortexStepViewFileOutline"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'absolute_path_uri', - kind: 'scalar', - T: 9, + name: "absolute_path_uri", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'cci_offset', - kind: 'scalar', - T: 13, + name: "cci_offset", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, - { - no: 3, - name: 'ccis', - kind: 'message', - T: CodeContextItem, - repeated: true, - }, - { no: 9, name: 'outline_items', kind: 'scalar', T: 9, repeated: true }, + { no: 3, name: "ccis", kind: "message", T: CodeContextItem, repeated: true }, + { no: 9, name: "outline_items", kind: "scalar", T: 9, repeated: true }, { no: 10, - name: 'num_items_scanned', - kind: 'scalar', - T: 13, + name: "num_items_scanned", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, { no: 4, - name: 'total_cci_count', - kind: 'scalar', - T: 13, + name: "total_cci_count", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, { no: 5, - name: 'num_lines', - kind: 'scalar', - T: 13, + name: "num_lines", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, { no: 6, - name: 'num_bytes', - kind: 'scalar', - T: 13, + name: "num_bytes", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, { no: 7, - name: 'contents', - kind: 'scalar', - T: 9, + name: "contents", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 8, - name: 'content_lines_truncated', - kind: 'scalar', - T: 13, + name: "content_lines_truncated", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, { no: 11, - name: 'triggered_memories', - kind: 'scalar', - T: 9, + name: "triggered_memories", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 12, - name: 'raw_content', - kind: 'scalar', - T: 9, + name: "raw_content", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { - no: 13, - name: 'file_permission_request', - kind: 'message', - T: FilePermissionInteractionSpec, - }, + { no: 13, name: "file_permission_request", kind: "message", T: FilePermissionInteractionSpec } ]); static fromBinary(bytes, options) { return new _CortexStepViewFileOutline().fromBinary(bytes, options); @@ -62487,43 +55019,20 @@ var EphemeralMessagesConfig = class _EphemeralMessagesConfig extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.EphemeralMessagesConfig'; + static typeName = "exa.cortex_pb.EphemeralMessagesConfig"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'enabled', kind: 'scalar', T: 8, opt: true }, + { no: 1, name: "enabled", kind: "scalar", T: 8, opt: true }, { no: 2, - name: 'num_steps', - kind: 'scalar', - T: 13, + name: "num_steps", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, - { - no: 3, - name: 'heuristic_prompts', - kind: 'message', - T: HeuristicPrompt, - repeated: true, - }, - { - no: 4, - name: 'persistence_level', - kind: 'enum', - T: proto3.getEnumType(EphemeralMessagePersistenceLevel), - }, - { - no: 5, - name: 'browser_ephemeral_options', - kind: 'enum', - T: proto3.getEnumType(BrowserEphemeralOption), - repeated: true, - }, - { - no: 6, - name: 'exclude_unleash_browser_ephemeral_options', - kind: 'scalar', - T: 8, - opt: true, - }, + { no: 3, name: "heuristic_prompts", kind: "message", T: HeuristicPrompt, repeated: true }, + { no: 4, name: "persistence_level", kind: "enum", T: proto3.getEnumType(EphemeralMessagePersistenceLevel) }, + { no: 5, name: "browser_ephemeral_options", kind: "enum", T: proto3.getEnumType(BrowserEphemeralOption), repeated: true }, + { no: 6, name: "exclude_unleash_browser_ephemeral_options", kind: "scalar", T: 8, opt: true } ]); static fromBinary(bytes, options) { return new _EphemeralMessagesConfig().fromBinary(bytes, options); @@ -62544,34 +55053,34 @@ var HeuristicPrompt = class _HeuristicPrompt extends Message { * * @generated from field: string heuristic = 1; */ - heuristic = ''; + heuristic = ""; /** * injected prompt if heuristic is triggered * * @generated from field: string prompt = 2; */ - prompt = ''; + prompt = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.HeuristicPrompt'; + static typeName = "exa.cortex_pb.HeuristicPrompt"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'heuristic', - kind: 'scalar', - T: 9, + name: "heuristic", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'prompt', - kind: 'scalar', - T: 9, + name: "prompt", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _HeuristicPrompt().fromBinary(bytes, options); @@ -62598,9 +55107,9 @@ var RevertMetadata = class _RevertMetadata extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.RevertMetadata'; + static typeName = "exa.cortex_pb.RevertMetadata"; static fields = proto3.util.newFieldList(() => [ - { no: 4, name: 'reverted_uris', kind: 'scalar', T: 9, repeated: true }, + { no: 4, name: "reverted_uris", kind: "scalar", T: 9, repeated: true } ]); static fromBinary(bytes, options) { return new _RevertMetadata().fromBinary(bytes, options); @@ -62640,36 +55149,36 @@ var TrajectoryPrefixMetadata = class _TrajectoryPrefixMetadata extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.TrajectoryPrefixMetadata'; + static typeName = "exa.cortex_pb.TrajectoryPrefixMetadata"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'length', - kind: 'scalar', - T: 13, + name: "length", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, { no: 2, - name: 'tokens', - kind: 'scalar', - T: 13, + name: "tokens", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, { no: 3, - name: 'num_skipped', - kind: 'scalar', - T: 13, + name: "num_skipped", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, { no: 4, - name: 'num_truncated', - kind: 'scalar', - T: 13, + name: "num_truncated", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ - }, + } ]); static fromBinary(bytes, options) { return new _TrajectoryPrefixMetadata().fromBinary(bytes, options); @@ -62690,13 +55199,13 @@ var CortexStepFindAllReferences = class _CortexStepFindAllReferences extends Mes * * @generated from field: string absolute_uri = 1; */ - absoluteUri = ''; + absoluteUri = ""; /** * Symbol to search for * * @generated from field: string symbol = 2; */ - symbol = ''; + symbol = ""; /** * 0-indexed line number * @@ -62722,43 +55231,37 @@ var CortexStepFindAllReferences = class _CortexStepFindAllReferences extends Mes proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexStepFindAllReferences'; + static typeName = "exa.cortex_pb.CortexStepFindAllReferences"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'absolute_uri', - kind: 'scalar', - T: 9, + name: "absolute_uri", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'symbol', - kind: 'scalar', - T: 9, + name: "symbol", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 3, - name: 'line', - kind: 'scalar', - T: 13, + name: "line", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, { no: 4, - name: 'occurrence_index', - kind: 'scalar', - T: 13, + name: "occurrence_index", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, - { - no: 5, - name: 'references', - kind: 'message', - T: LspReference, - repeated: true, - }, + { no: 5, name: "references", kind: "message", T: LspReference, repeated: true } ]); static fromBinary(bytes, options) { return new _CortexStepFindAllReferences().fromBinary(bytes, options); @@ -62767,10 +55270,7 @@ var CortexStepFindAllReferences = class _CortexStepFindAllReferences extends Mes return new _CortexStepFindAllReferences().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _CortexStepFindAllReferences().fromJsonString( - jsonString, - options, - ); + return new _CortexStepFindAllReferences().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_CortexStepFindAllReferences, a, b); @@ -62782,11 +55282,11 @@ var CortexStepRunExtensionCode = class _CortexStepRunExtensionCode extends Messa * * @generated from field: string code = 1; */ - code = ''; + code = ""; /** * @generated from field: string language = 2; */ - language = ''; + language = ""; /** * Whether the model wants to auto-run this extension code. Only relevant if * the user's setting allows model to decide. @@ -62797,13 +55297,13 @@ var CortexStepRunExtensionCode = class _CortexStepRunExtensionCode extends Messa /** * @generated from field: string user_facing_explanation = 7; */ - userFacingExplanation = ''; + userFacingExplanation = ""; /** * outputs * * @generated from field: string output = 3; */ - output = ''; + output = ""; /** * @generated from field: bool user_rejected = 4; */ @@ -62817,56 +55317,51 @@ var CortexStepRunExtensionCode = class _CortexStepRunExtensionCode extends Messa proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexStepRunExtensionCode'; + static typeName = "exa.cortex_pb.CortexStepRunExtensionCode"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'code', - kind: 'scalar', - T: 9, + name: "code", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'language', - kind: 'scalar', - T: 9, + name: "language", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 6, - name: 'model_wants_auto_run', - kind: 'scalar', - T: 8, + name: "model_wants_auto_run", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 7, - name: 'user_facing_explanation', - kind: 'scalar', - T: 9, + name: "user_facing_explanation", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 3, - name: 'output', - kind: 'scalar', - T: 9, + name: "output", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 4, - name: 'user_rejected', - kind: 'scalar', - T: 8, + name: "user_rejected", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, - { - no: 5, - name: 'auto_run_decision', - kind: 'enum', - T: proto3.getEnumType(RunExtensionCodeAutoRunDecision), - }, + { no: 5, name: "auto_run_decision", kind: "enum", T: proto3.getEnumType(RunExtensionCodeAutoRunDecision) } ]); static fromBinary(bytes, options) { return new _CortexStepRunExtensionCode().fromBinary(bytes, options); @@ -62875,10 +55370,7 @@ var CortexStepRunExtensionCode = class _CortexStepRunExtensionCode extends Messa return new _CortexStepRunExtensionCode().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _CortexStepRunExtensionCode().fromJsonString( - jsonString, - options, - ); + return new _CortexStepRunExtensionCode().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_CortexStepRunExtensionCode, a, b); @@ -62902,28 +55394,17 @@ var CortexStepProposalFeedback = class _CortexStepProposalFeedback extends Messa proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexStepProposalFeedback'; + static typeName = "exa.cortex_pb.CortexStepProposalFeedback"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'acknowledgement_type', - kind: 'enum', - T: proto3.getEnumType(AcknowledgementType), - }, + { no: 1, name: "acknowledgement_type", kind: "enum", T: proto3.getEnumType(AcknowledgementType) }, { no: 2, - name: 'target_step_index', - kind: 'scalar', - T: 13, + name: "target_step_index", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ }, - { - no: 3, - name: 'replacement_chunk', - kind: 'message', - T: ReplacementChunk, - oneof: 'target', - }, + { no: 3, name: "replacement_chunk", kind: "message", T: ReplacementChunk, oneof: "target" } ]); static fromBinary(bytes, options) { return new _CortexStepProposalFeedback().fromBinary(bytes, options); @@ -62932,10 +55413,7 @@ var CortexStepProposalFeedback = class _CortexStepProposalFeedback extends Messa return new _CortexStepProposalFeedback().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _CortexStepProposalFeedback().fromJsonString( - jsonString, - options, - ); + return new _CortexStepProposalFeedback().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_CortexStepProposalFeedback, a, b); @@ -62951,22 +55429,10 @@ var TrajectoryDescription2 = class _TrajectoryDescription extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.TrajectoryDescription'; + static typeName = "exa.cortex_pb.TrajectoryDescription"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'cascade_conversation_title', - kind: 'scalar', - T: 9, - oneof: 'description', - }, - { - no: 2, - name: 'mainline_branch_name', - kind: 'scalar', - T: 9, - oneof: 'description', - }, + { no: 1, name: "cascade_conversation_title", kind: "scalar", T: 9, oneof: "description" }, + { no: 2, name: "mainline_branch_name", kind: "scalar", T: 9, oneof: "description" } ]); static fromBinary(bytes, options) { return new _TrajectoryDescription().fromBinary(bytes, options); @@ -62988,13 +55454,13 @@ var CortexStepTrajectorySearch = class _CortexStepTrajectorySearch extends Messa * * @generated from field: string id = 1; */ - id = ''; + id = ""; /** * The search query string. If empty, the entire trajectory is retrieved. * * @generated from field: string query = 2; */ - query = ''; + query = ""; /** * The type of the search * @@ -63026,48 +55492,32 @@ var CortexStepTrajectorySearch = class _CortexStepTrajectorySearch extends Messa proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexStepTrajectorySearch'; + static typeName = "exa.cortex_pb.CortexStepTrajectorySearch"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'id', - kind: 'scalar', - T: 9, + name: "id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'query', - kind: 'scalar', - T: 9, + name: "query", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { - no: 3, - name: 'id_type', - kind: 'enum', - T: proto3.getEnumType(TrajectorySearchIdType), - }, - { - no: 4, - name: 'chunks', - kind: 'message', - T: CciWithSubrangeWithRetrievalMetadata, - repeated: true, - }, - { - no: 5, - name: 'trajectory_description', - kind: 'message', - T: TrajectoryDescription2, - }, + { no: 3, name: "id_type", kind: "enum", T: proto3.getEnumType(TrajectorySearchIdType) }, + { no: 4, name: "chunks", kind: "message", T: CciWithSubrangeWithRetrievalMetadata, repeated: true }, + { no: 5, name: "trajectory_description", kind: "message", T: TrajectoryDescription2 }, { no: 6, - name: 'total_chunks', - kind: 'scalar', - T: 13, + name: "total_chunks", + kind: "scalar", + T: 13 /* ScalarType.UINT32 */ - }, + } ]); static fromBinary(bytes, options) { return new _CortexStepTrajectorySearch().fromBinary(bytes, options); @@ -63076,10 +55526,7 @@ var CortexStepTrajectorySearch = class _CortexStepTrajectorySearch extends Messa return new _CortexStepTrajectorySearch().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _CortexStepTrajectorySearch().fromJsonString( - jsonString, - options, - ); + return new _CortexStepTrajectorySearch().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_CortexStepTrajectorySearch, a, b); @@ -63092,46 +55539,46 @@ var CortexStepReadTerminal = class _CortexStepReadTerminal extends Message { * * @generated from field: string process_id = 1; */ - processId = ''; + processId = ""; /** * @generated from field: string name = 2; */ - name = ''; + name = ""; /** * OUTPUTS * The contents of the requested terminal (truncated to 4000 characters) * * @generated from field: string contents = 3; */ - contents = ''; + contents = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexStepReadTerminal'; + static typeName = "exa.cortex_pb.CortexStepReadTerminal"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'process_id', - kind: 'scalar', - T: 9, + name: "process_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'name', - kind: 'scalar', - T: 9, + name: "name", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 3, - name: 'contents', - kind: 'scalar', - T: 9, + name: "contents", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _CortexStepReadTerminal().fromBinary(bytes, options); @@ -63150,17 +55597,17 @@ var TaskResolutionOpenPr = class _TaskResolutionOpenPr extends Message { /** * @generated from field: string pr_title = 1; */ - prTitle = ''; + prTitle = ""; /** * @generated from field: string pr_body = 2; */ - prBody = ''; + prBody = ""; /** * Github URL * * @generated from field: string pr_url = 3; */ - prUrl = ''; + prUrl = ""; /** * Whether a PR for the branch existed prior to this task resolution; in this * case, the task resolution amounts to an update to that PR. @@ -63173,36 +55620,36 @@ var TaskResolutionOpenPr = class _TaskResolutionOpenPr extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.TaskResolutionOpenPr'; + static typeName = "exa.cortex_pb.TaskResolutionOpenPr"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'pr_title', - kind: 'scalar', - T: 9, + name: "pr_title", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'pr_body', - kind: 'scalar', - T: 9, + name: "pr_body", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 3, - name: 'pr_url', - kind: 'scalar', - T: 9, + name: "pr_url", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 4, - name: 'existed_previously', - kind: 'scalar', - T: 8, + name: "existed_previously", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ - }, + } ]); static fromBinary(bytes, options) { return new _TaskResolutionOpenPr().fromBinary(bytes, options); @@ -63227,15 +55674,9 @@ var TaskResolution = class _TaskResolution extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.TaskResolution'; + static typeName = "exa.cortex_pb.TaskResolution"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'open_pr', - kind: 'message', - T: TaskResolutionOpenPr, - oneof: 'resolution', - }, + { no: 1, name: "open_pr", kind: "message", T: TaskResolutionOpenPr, oneof: "resolution" } ]); static fromBinary(bytes, options) { return new _TaskResolution().fromBinary(bytes, options); @@ -63257,21 +55698,21 @@ var CortexStepResolveTask = class _CortexStepResolveTask extends Message { * * @generated from field: string absolute_uri = 1; */ - absoluteUri = ''; + absoluteUri = ""; /** * A proposed title for the task. Suitable for e.g. a PR title, or a commit * message. * * @generated from field: string title = 2; */ - title = ''; + title = ""; /** * A proposed description of the task. Suitable for e.g. a PR description, or * the extra message of a commit. * * @generated from field: string description = 3; */ - description = ''; + description = ""; /** * Whether the user rejected the task resolution. * @@ -63289,37 +55730,37 @@ var CortexStepResolveTask = class _CortexStepResolveTask extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexStepResolveTask'; + static typeName = "exa.cortex_pb.CortexStepResolveTask"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'absolute_uri', - kind: 'scalar', - T: 9, + name: "absolute_uri", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'title', - kind: 'scalar', - T: 9, + name: "title", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 3, - name: 'description', - kind: 'scalar', - T: 9, + name: "description", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 4, - name: 'user_rejected', - kind: 'scalar', - T: 8, + name: "user_rejected", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, - { no: 5, name: 'resolution', kind: 'message', T: TaskResolution }, + { no: 5, name: "resolution", kind: "message", T: TaskResolution } ]); static fromBinary(bytes, options) { return new _CortexStepResolveTask().fromBinary(bytes, options); @@ -63338,7 +55779,7 @@ var CodeSearchMatch = class _CodeSearchMatch extends Message { /** * @generated from field: string snippet = 1; */ - snippet = ''; + snippet = ""; /** * @generated from field: int32 line_number = 2; */ @@ -63348,22 +55789,22 @@ var CodeSearchMatch = class _CodeSearchMatch extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CodeSearchMatch'; + static typeName = "exa.cortex_pb.CodeSearchMatch"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'snippet', - kind: 'scalar', - T: 9, + name: "snippet", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'line_number', - kind: 'scalar', - T: 5, + name: "line_number", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ - }, + } ]); static fromBinary(bytes, options) { return new _CodeSearchMatch().fromBinary(bytes, options); @@ -63382,7 +55823,7 @@ var CodeSearchResults = class _CodeSearchResults extends Message { /** * @generated from field: string path = 1; */ - path = ''; + path = ""; /** * @generated from field: repeated exa.cortex_pb.CodeSearchMatch matches = 4; */ @@ -63390,35 +55831,29 @@ var CodeSearchResults = class _CodeSearchResults extends Message { /** * @generated from field: string changelist = 5; */ - changelist = ''; + changelist = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CodeSearchResults'; + static typeName = "exa.cortex_pb.CodeSearchResults"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'path', - kind: 'scalar', - T: 9, + name: "path", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { - no: 4, - name: 'matches', - kind: 'message', - T: CodeSearchMatch, - repeated: true, - }, + { no: 4, name: "matches", kind: "message", T: CodeSearchMatch, repeated: true }, { no: 5, - name: 'changelist', - kind: 'scalar', - T: 9, + name: "changelist", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _CodeSearchResults().fromBinary(bytes, options); @@ -63439,7 +55874,7 @@ var CortexStepCodeSearch = class _CortexStepCodeSearch extends Message { * * @generated from field: string query = 1; */ - query = ''; + query = ""; /** * @generated from field: bool only_paths = 6; */ @@ -63459,36 +55894,30 @@ var CortexStepCodeSearch = class _CortexStepCodeSearch extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexStepCodeSearch'; + static typeName = "exa.cortex_pb.CortexStepCodeSearch"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'query', - kind: 'scalar', - T: 9, + name: "query", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 6, - name: 'only_paths', - kind: 'scalar', - T: 8, + name: "only_paths", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 7, - name: 'allow_dirs', - kind: 'scalar', - T: 8, + name: "allow_dirs", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, - { - no: 5, - name: 'results', - kind: 'message', - T: CodeSearchResults, - repeated: true, - }, + { no: 5, name: "results", kind: "message", T: CodeSearchResults, repeated: true } ]); static fromBinary(bytes, options) { return new _CortexStepCodeSearch().fromBinary(bytes, options); @@ -63509,7 +55938,7 @@ var CortexStepBrowserInput = class _CortexStepBrowserInput extends Message { * * @generated from field: string page_id = 1; */ - pageId = ''; + pageId = ""; /** * @generated from field: int32 index = 2; */ @@ -63517,7 +55946,7 @@ var CortexStepBrowserInput = class _CortexStepBrowserInput extends Message { /** * @generated from field: string text = 3; */ - text = ''; + text = ""; /** * @generated from field: bool press_enter = 4; */ @@ -63538,57 +55967,57 @@ var CortexStepBrowserInput = class _CortexStepBrowserInput extends Message { * * @generated from field: string browser_state_diff = 7; */ - browserStateDiff = ''; + browserStateDiff = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexStepBrowserInput'; + static typeName = "exa.cortex_pb.CortexStepBrowserInput"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'page_id', - kind: 'scalar', - T: 9, + name: "page_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'index', - kind: 'scalar', - T: 5, + name: "index", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, { no: 3, - name: 'text', - kind: 'scalar', - T: 9, + name: "text", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 4, - name: 'press_enter', - kind: 'scalar', - T: 8, + name: "press_enter", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 5, - name: 'clear_text', - kind: 'scalar', - T: 8, + name: "clear_text", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, - { no: 6, name: 'page_metadata', kind: 'message', T: BrowserPageMetadata }, + { no: 6, name: "page_metadata", kind: "message", T: BrowserPageMetadata }, { no: 7, - name: 'browser_state_diff', - kind: 'scalar', - T: 9, + name: "browser_state_diff", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _CortexStepBrowserInput().fromBinary(bytes, options); @@ -63609,7 +56038,7 @@ var CortexStepBrowserMoveMouse = class _CortexStepBrowserMoveMouse extends Messa * * @generated from field: string page_id = 1; */ - pageId = ''; + pageId = ""; /** * @generated from field: int32 x = 2; */ @@ -63630,43 +56059,43 @@ var CortexStepBrowserMoveMouse = class _CortexStepBrowserMoveMouse extends Messa * * @generated from field: string browser_state_diff = 7; */ - browserStateDiff = ''; + browserStateDiff = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexStepBrowserMoveMouse'; + static typeName = "exa.cortex_pb.CortexStepBrowserMoveMouse"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'page_id', - kind: 'scalar', - T: 9, + name: "page_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'x', - kind: 'scalar', - T: 5, + name: "x", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, { no: 3, - name: 'y', - kind: 'scalar', - T: 5, + name: "y", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, - { no: 6, name: 'page_metadata', kind: 'message', T: BrowserPageMetadata }, + { no: 6, name: "page_metadata", kind: "message", T: BrowserPageMetadata }, { no: 7, - name: 'browser_state_diff', - kind: 'scalar', - T: 9, + name: "browser_state_diff", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _CortexStepBrowserMoveMouse().fromBinary(bytes, options); @@ -63675,10 +56104,7 @@ var CortexStepBrowserMoveMouse = class _CortexStepBrowserMoveMouse extends Messa return new _CortexStepBrowserMoveMouse().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _CortexStepBrowserMoveMouse().fromJsonString( - jsonString, - options, - ); + return new _CortexStepBrowserMoveMouse().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_CortexStepBrowserMoveMouse, a, b); @@ -63690,7 +56116,7 @@ var CortexStepBrowserSelectOption = class _CortexStepBrowserSelectOption extends * * @generated from field: string page_id = 1; */ - pageId = ''; + pageId = ""; /** * @generated from field: int32 index = 2; */ @@ -63698,7 +56124,7 @@ var CortexStepBrowserSelectOption = class _CortexStepBrowserSelectOption extends /** * @generated from field: string value = 3; */ - value = ''; + value = ""; /** * Outputs * Auto-populated metadata associated with the Browser page. @@ -63711,43 +56137,43 @@ var CortexStepBrowserSelectOption = class _CortexStepBrowserSelectOption extends * * @generated from field: string browser_state_diff = 7; */ - browserStateDiff = ''; + browserStateDiff = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexStepBrowserSelectOption'; + static typeName = "exa.cortex_pb.CortexStepBrowserSelectOption"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'page_id', - kind: 'scalar', - T: 9, + name: "page_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'index', - kind: 'scalar', - T: 5, + name: "index", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, { no: 3, - name: 'value', - kind: 'scalar', - T: 9, + name: "value", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 6, name: 'page_metadata', kind: 'message', T: BrowserPageMetadata }, + { no: 6, name: "page_metadata", kind: "message", T: BrowserPageMetadata }, { no: 7, - name: 'browser_state_diff', - kind: 'scalar', - T: 9, + name: "browser_state_diff", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _CortexStepBrowserSelectOption().fromBinary(bytes, options); @@ -63756,10 +56182,7 @@ var CortexStepBrowserSelectOption = class _CortexStepBrowserSelectOption extends return new _CortexStepBrowserSelectOption().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _CortexStepBrowserSelectOption().fromJsonString( - jsonString, - options, - ); + return new _CortexStepBrowserSelectOption().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_CortexStepBrowserSelectOption, a, b); @@ -63771,7 +56194,7 @@ var CortexStepBrowserScroll = class _CortexStepBrowserScroll extends Message { * * @generated from field: string page_id = 1; */ - pageId = ''; + pageId = ""; /** * @generated from field: exa.browser_pb.ScrollDirection direction = 2; */ @@ -63803,69 +56226,64 @@ var CortexStepBrowserScroll = class _CortexStepBrowserScroll extends Message { * * @generated from field: string browser_state_diff = 8; */ - browserStateDiff = ''; + browserStateDiff = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexStepBrowserScroll'; + static typeName = "exa.cortex_pb.CortexStepBrowserScroll"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'page_id', - kind: 'scalar', - T: 9, + name: "page_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { - no: 2, - name: 'direction', - kind: 'enum', - T: proto3.getEnumType(ScrollDirection), - }, + { no: 2, name: "direction", kind: "enum", T: proto3.getEnumType(ScrollDirection) }, { no: 3, - name: 'scroll_to_end', - kind: 'scalar', - T: 8, + name: "scroll_to_end", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 4, - name: 'scroll_by_element_index', - kind: 'scalar', - T: 8, + name: "scroll_by_element_index", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 5, - name: 'element_index', - kind: 'scalar', - T: 5, + name: "element_index", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, { no: 6, - name: 'pixels_scrolled_x', - kind: 'scalar', - T: 5, + name: "pixels_scrolled_x", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, { no: 7, - name: 'pixels_scrolled_y', - kind: 'scalar', - T: 5, + name: "pixels_scrolled_y", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, { no: 8, - name: 'browser_state_diff', - kind: 'scalar', - T: 9, + name: "browser_state_diff", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _CortexStepBrowserScroll().fromBinary(bytes, options); @@ -63886,7 +56304,7 @@ var CortexStepBrowserScrollUp = class _CortexStepBrowserScrollUp extends Message * * @generated from field: string page_id = 1; */ - pageId = ''; + pageId = ""; /** * @generated from field: bool scroll_to_end = 2; */ @@ -63910,49 +56328,49 @@ var CortexStepBrowserScrollUp = class _CortexStepBrowserScrollUp extends Message * * @generated from field: string browser_state_diff = 5; */ - browserStateDiff = ''; + browserStateDiff = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexStepBrowserScrollUp'; + static typeName = "exa.cortex_pb.CortexStepBrowserScrollUp"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'page_id', - kind: 'scalar', - T: 9, + name: "page_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'scroll_to_end', - kind: 'scalar', - T: 8, + name: "scroll_to_end", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 3, - name: 'scroll_by_element_index', - kind: 'scalar', - T: 8, + name: "scroll_by_element_index", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 4, - name: 'element_index', - kind: 'scalar', - T: 5, + name: "element_index", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, { no: 5, - name: 'browser_state_diff', - kind: 'scalar', - T: 9, + name: "browser_state_diff", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _CortexStepBrowserScrollUp().fromBinary(bytes, options); @@ -63973,7 +56391,7 @@ var CortexStepBrowserScrollDown = class _CortexStepBrowserScrollDown extends Mes * * @generated from field: string page_id = 1; */ - pageId = ''; + pageId = ""; /** * @generated from field: bool scroll_to_end = 2; */ @@ -63997,49 +56415,49 @@ var CortexStepBrowserScrollDown = class _CortexStepBrowserScrollDown extends Mes * * @generated from field: string browser_state_diff = 5; */ - browserStateDiff = ''; + browserStateDiff = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexStepBrowserScrollDown'; + static typeName = "exa.cortex_pb.CortexStepBrowserScrollDown"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'page_id', - kind: 'scalar', - T: 9, + name: "page_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'scroll_to_end', - kind: 'scalar', - T: 8, + name: "scroll_to_end", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 3, - name: 'scroll_by_element_index', - kind: 'scalar', - T: 8, + name: "scroll_by_element_index", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 4, - name: 'element_index', - kind: 'scalar', - T: 5, + name: "element_index", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, { no: 5, - name: 'browser_state_diff', - kind: 'scalar', - T: 9, + name: "browser_state_diff", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _CortexStepBrowserScrollDown().fromBinary(bytes, options); @@ -64048,10 +56466,7 @@ var CortexStepBrowserScrollDown = class _CortexStepBrowserScrollDown extends Mes return new _CortexStepBrowserScrollDown().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _CortexStepBrowserScrollDown().fromJsonString( - jsonString, - options, - ); + return new _CortexStepBrowserScrollDown().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_CortexStepBrowserScrollDown, a, b); @@ -64064,7 +56479,7 @@ var CortexStepBrowserClickElement = class _CortexStepBrowserClickElement extends * * @generated from field: string page_id = 1; */ - pageId = ''; + pageId = ""; /** * The index of the DOM element to click on. Page must be injected to have * elements indexed. @@ -64077,7 +56492,7 @@ var CortexStepBrowserClickElement = class _CortexStepBrowserClickElement extends * * @generated from field: string description = 3; */ - description = ''; + description = ""; /** * Optional click type (left, right, double). Defaults to left click if not * specified. @@ -64102,56 +56517,51 @@ var CortexStepBrowserClickElement = class _CortexStepBrowserClickElement extends * * @generated from field: string browser_state_diff = 7; */ - browserStateDiff = ''; + browserStateDiff = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexStepBrowserClickElement'; + static typeName = "exa.cortex_pb.CortexStepBrowserClickElement"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'page_id', - kind: 'scalar', - T: 9, + name: "page_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'index', - kind: 'scalar', - T: 5, + name: "index", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, { no: 3, - name: 'description', - kind: 'scalar', - T: 9, + name: "description", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { - no: 5, - name: 'click_type', - kind: 'enum', - T: proto3.getEnumType(ClickType), - }, + { no: 5, name: "click_type", kind: "enum", T: proto3.getEnumType(ClickType) }, { no: 4, - name: 'user_rejected', - kind: 'scalar', - T: 8, + name: "user_rejected", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, - { no: 6, name: 'page_metadata', kind: 'message', T: BrowserPageMetadata }, + { no: 6, name: "page_metadata", kind: "message", T: BrowserPageMetadata }, { no: 7, - name: 'browser_state_diff', - kind: 'scalar', - T: 9, + name: "browser_state_diff", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _CortexStepBrowserClickElement().fromBinary(bytes, options); @@ -64160,10 +56570,7 @@ var CortexStepBrowserClickElement = class _CortexStepBrowserClickElement extends return new _CortexStepBrowserClickElement().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _CortexStepBrowserClickElement().fromJsonString( - jsonString, - options, - ); + return new _CortexStepBrowserClickElement().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_CortexStepBrowserClickElement, a, b); @@ -64176,7 +56583,7 @@ var CortexStepBrowserListNetworkRequests = class _CortexStepBrowserListNetworkRe * * @generated from field: string page_id = 1; */ - pageId = ''; + pageId = ""; /** * Optional. Set to true to return the preserved requests over the last three * navigations. @@ -64203,55 +56610,46 @@ var CortexStepBrowserListNetworkRequests = class _CortexStepBrowserListNetworkRe * * @generated from field: string network_requests = 5; */ - networkRequests = ''; + networkRequests = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexStepBrowserListNetworkRequests'; + static typeName = "exa.cortex_pb.CortexStepBrowserListNetworkRequests"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'page_id', - kind: 'scalar', - T: 9, + name: "page_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'include_preserved_requests', - kind: 'scalar', - T: 8, + name: "include_preserved_requests", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, - { no: 3, name: 'resource_types', kind: 'scalar', T: 9, repeated: true }, - { no: 4, name: 'page_metadata', kind: 'message', T: BrowserPageMetadata }, + { no: 3, name: "resource_types", kind: "scalar", T: 9, repeated: true }, + { no: 4, name: "page_metadata", kind: "message", T: BrowserPageMetadata }, { no: 5, - name: 'network_requests', - kind: 'scalar', - T: 9, + name: "network_requests", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { - return new _CortexStepBrowserListNetworkRequests().fromBinary( - bytes, - options, - ); + return new _CortexStepBrowserListNetworkRequests().fromBinary(bytes, options); } static fromJson(jsonValue, options) { - return new _CortexStepBrowserListNetworkRequests().fromJson( - jsonValue, - options, - ); + return new _CortexStepBrowserListNetworkRequests().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _CortexStepBrowserListNetworkRequests().fromJsonString( - jsonString, - options, - ); + return new _CortexStepBrowserListNetworkRequests().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_CortexStepBrowserListNetworkRequests, a, b); @@ -64264,13 +56662,13 @@ var CortexStepBrowserGetNetworkRequest = class _CortexStepBrowserGetNetworkReque * * @generated from field: string page_id = 1; */ - pageId = ''; + pageId = ""; /** * The request ID to retrieve details for. * * @generated from field: string request_id = 2; */ - requestId = ''; + requestId = ""; /** * Outputs * Auto-populated metadata associated with the Browser page. @@ -64283,51 +56681,45 @@ var CortexStepBrowserGetNetworkRequest = class _CortexStepBrowserGetNetworkReque * * @generated from field: string network_request_details = 4; */ - networkRequestDetails = ''; + networkRequestDetails = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexStepBrowserGetNetworkRequest'; + static typeName = "exa.cortex_pb.CortexStepBrowserGetNetworkRequest"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'page_id', - kind: 'scalar', - T: 9, + name: "page_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'request_id', - kind: 'scalar', - T: 9, + name: "request_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 3, name: 'page_metadata', kind: 'message', T: BrowserPageMetadata }, + { no: 3, name: "page_metadata", kind: "message", T: BrowserPageMetadata }, { no: 4, - name: 'network_request_details', - kind: 'scalar', - T: 9, + name: "network_request_details", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _CortexStepBrowserGetNetworkRequest().fromBinary(bytes, options); } static fromJson(jsonValue, options) { - return new _CortexStepBrowserGetNetworkRequest().fromJson( - jsonValue, - options, - ); + return new _CortexStepBrowserGetNetworkRequest().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _CortexStepBrowserGetNetworkRequest().fromJsonString( - jsonString, - options, - ); + return new _CortexStepBrowserGetNetworkRequest().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_CortexStepBrowserGetNetworkRequest, a, b); @@ -64352,10 +56744,10 @@ var ModelAliasResolutionPayload = class _ModelAliasResolutionPayload extends Mes proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.ModelAliasResolutionPayload'; + static typeName = "exa.cortex_pb.ModelAliasResolutionPayload"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'model', kind: 'enum', T: proto3.getEnumType(Model) }, - { no: 2, name: 'model_info_override', kind: 'message', T: ModelInfo }, + { no: 1, name: "model", kind: "enum", T: proto3.getEnumType(Model) }, + { no: 2, name: "model_info_override", kind: "message", T: ModelInfo } ]); static fromBinary(bytes, options) { return new _ModelAliasResolutionPayload().fromBinary(bytes, options); @@ -64364,10 +56756,7 @@ var ModelAliasResolutionPayload = class _ModelAliasResolutionPayload extends Mes return new _ModelAliasResolutionPayload().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _ModelAliasResolutionPayload().fromJsonString( - jsonString, - options, - ); + return new _ModelAliasResolutionPayload().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_ModelAliasResolutionPayload, a, b); @@ -64379,7 +56768,7 @@ var CortexStepBrowserMouseWheel = class _CortexStepBrowserMouseWheel extends Mes * * @generated from field: string page_id = 1; */ - pageId = ''; + pageId = ""; /** * @generated from field: int32 x = 2; */ @@ -64408,57 +56797,57 @@ var CortexStepBrowserMouseWheel = class _CortexStepBrowserMouseWheel extends Mes * * @generated from field: string browser_state_diff = 7; */ - browserStateDiff = ''; + browserStateDiff = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexStepBrowserMouseWheel'; + static typeName = "exa.cortex_pb.CortexStepBrowserMouseWheel"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'page_id', - kind: 'scalar', - T: 9, + name: "page_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'x', - kind: 'scalar', - T: 5, + name: "x", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, { no: 3, - name: 'y', - kind: 'scalar', - T: 5, + name: "y", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, { no: 4, - name: 'dx', - kind: 'scalar', - T: 5, + name: "dx", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, { no: 5, - name: 'dy', - kind: 'scalar', - T: 5, + name: "dy", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, - { no: 6, name: 'page_metadata', kind: 'message', T: BrowserPageMetadata }, + { no: 6, name: "page_metadata", kind: "message", T: BrowserPageMetadata }, { no: 7, - name: 'browser_state_diff', - kind: 'scalar', - T: 9, + name: "browser_state_diff", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _CortexStepBrowserMouseWheel().fromBinary(bytes, options); @@ -64467,10 +56856,7 @@ var CortexStepBrowserMouseWheel = class _CortexStepBrowserMouseWheel extends Mes return new _CortexStepBrowserMouseWheel().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _CortexStepBrowserMouseWheel().fromJsonString( - jsonString, - options, - ); + return new _CortexStepBrowserMouseWheel().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_CortexStepBrowserMouseWheel, a, b); @@ -64482,11 +56868,11 @@ var CortexStepBrowserMouseUp = class _CortexStepBrowserMouseUp extends Message { * * @generated from field: string page_id = 1; */ - pageId = ''; + pageId = ""; /** * @generated from field: string button = 2; */ - button = ''; + button = ""; /** * Outputs * Auto-populated metadata associated with the Browser page. @@ -64499,36 +56885,36 @@ var CortexStepBrowserMouseUp = class _CortexStepBrowserMouseUp extends Message { * * @generated from field: string browser_state_diff = 4; */ - browserStateDiff = ''; + browserStateDiff = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexStepBrowserMouseUp'; + static typeName = "exa.cortex_pb.CortexStepBrowserMouseUp"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'page_id', - kind: 'scalar', - T: 9, + name: "page_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'button', - kind: 'scalar', - T: 9, + name: "button", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 3, name: 'page_metadata', kind: 'message', T: BrowserPageMetadata }, + { no: 3, name: "page_metadata", kind: "message", T: BrowserPageMetadata }, { no: 4, - name: 'browser_state_diff', - kind: 'scalar', - T: 9, + name: "browser_state_diff", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _CortexStepBrowserMouseUp().fromBinary(bytes, options); @@ -64549,11 +56935,11 @@ var CortexStepBrowserMouseDown = class _CortexStepBrowserMouseDown extends Messa * * @generated from field: string page_id = 1; */ - pageId = ''; + pageId = ""; /** * @generated from field: string button = 2; */ - button = ''; + button = ""; /** * Outputs * Auto-populated metadata associated with the Browser page. @@ -64566,36 +56952,36 @@ var CortexStepBrowserMouseDown = class _CortexStepBrowserMouseDown extends Messa * * @generated from field: string browser_state_diff = 4; */ - browserStateDiff = ''; + browserStateDiff = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexStepBrowserMouseDown'; + static typeName = "exa.cortex_pb.CortexStepBrowserMouseDown"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'page_id', - kind: 'scalar', - T: 9, + name: "page_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'button', - kind: 'scalar', - T: 9, + name: "button", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 3, name: 'page_metadata', kind: 'message', T: BrowserPageMetadata }, + { no: 3, name: "page_metadata", kind: "message", T: BrowserPageMetadata }, { no: 4, - name: 'browser_state_diff', - kind: 'scalar', - T: 9, + name: "browser_state_diff", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _CortexStepBrowserMouseDown().fromBinary(bytes, options); @@ -64604,10 +56990,7 @@ var CortexStepBrowserMouseDown = class _CortexStepBrowserMouseDown extends Messa return new _CortexStepBrowserMouseDown().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _CortexStepBrowserMouseDown().fromJsonString( - jsonString, - options, - ); + return new _CortexStepBrowserMouseDown().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_CortexStepBrowserMouseDown, a, b); @@ -64619,7 +57002,7 @@ var CortexStepBrowserRefreshPage = class _CortexStepBrowserRefreshPage extends M * * @generated from field: string page_id = 1; */ - pageId = ''; + pageId = ""; /** * Outputs * Auto-populated metadata associated with the Browser page. @@ -64632,29 +57015,29 @@ var CortexStepBrowserRefreshPage = class _CortexStepBrowserRefreshPage extends M * * @generated from field: string browser_state_diff = 3; */ - browserStateDiff = ''; + browserStateDiff = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexStepBrowserRefreshPage'; + static typeName = "exa.cortex_pb.CortexStepBrowserRefreshPage"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'page_id', - kind: 'scalar', - T: 9, + name: "page_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 2, name: 'page_metadata', kind: 'message', T: BrowserPageMetadata }, + { no: 2, name: "page_metadata", kind: "message", T: BrowserPageMetadata }, { no: 3, - name: 'browser_state_diff', - kind: 'scalar', - T: 9, + name: "browser_state_diff", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _CortexStepBrowserRefreshPage().fromBinary(bytes, options); @@ -64663,10 +57046,7 @@ var CortexStepBrowserRefreshPage = class _CortexStepBrowserRefreshPage extends M return new _CortexStepBrowserRefreshPage().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _CortexStepBrowserRefreshPage().fromJsonString( - jsonString, - options, - ); + return new _CortexStepBrowserRefreshPage().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_CortexStepBrowserRefreshPage, a, b); @@ -64678,7 +57058,7 @@ var CortexStepBrowserPressKey = class _CortexStepBrowserPressKey extends Message * * @generated from field: string page_id = 1; */ - pageId = ''; + pageId = ""; /** * Note: Only one of key / text should be set in a well-formed tool call. * Key name or combination, primarily for shortcuts and special keys (e.g., @@ -64686,14 +57066,14 @@ var CortexStepBrowserPressKey = class _CortexStepBrowserPressKey extends Message * * @generated from field: string key = 2; */ - key = ''; + key = ""; /** * Text to type character by character. For regular text input. Cannot include * special keys (e.g. "F1", "Enter"). * * @generated from field: string text = 3; */ - text = ''; + text = ""; /** * Outputs * Auto-populated metadata associated with the Browser page. @@ -64706,43 +57086,43 @@ var CortexStepBrowserPressKey = class _CortexStepBrowserPressKey extends Message * * @generated from field: string browser_state_diff = 4; */ - browserStateDiff = ''; + browserStateDiff = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexStepBrowserPressKey'; + static typeName = "exa.cortex_pb.CortexStepBrowserPressKey"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'page_id', - kind: 'scalar', - T: 9, + name: "page_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'key', - kind: 'scalar', - T: 9, + name: "key", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 3, - name: 'text', - kind: 'scalar', - T: 9, + name: "text", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 5, name: 'page_metadata', kind: 'message', T: BrowserPageMetadata }, + { no: 5, name: "page_metadata", kind: "message", T: BrowserPageMetadata }, { no: 4, - name: 'browser_state_diff', - kind: 'scalar', - T: 9, + name: "browser_state_diff", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _CortexStepBrowserPressKey().fromBinary(bytes, options); @@ -64764,7 +57144,7 @@ var CortexStepGenerateImage = class _CortexStepGenerateImage extends Message { * * @generated from field: string prompt = 1; */ - prompt = ''; + prompt = ""; /** * Optional absolute paths to the images to use in generation. Maximum of 3 * images. @@ -64778,7 +57158,7 @@ var CortexStepGenerateImage = class _CortexStepGenerateImage extends Message { * * @generated from field: string image_name = 4; */ - imageName = ''; + imageName = ""; /** * Outputs * The generated image. This is also saved in the artifacts directory with the @@ -64793,7 +57173,7 @@ var CortexStepGenerateImage = class _CortexStepGenerateImage extends Message { * * @generated from field: string model_name = 5; */ - modelName = ''; + modelName = ""; /** * @generated from field: exa.codeium_common_pb.Media generated_media = 6; */ @@ -64803,32 +57183,32 @@ var CortexStepGenerateImage = class _CortexStepGenerateImage extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexStepGenerateImage'; + static typeName = "exa.cortex_pb.CortexStepGenerateImage"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'prompt', - kind: 'scalar', - T: 9, + name: "prompt", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 2, name: 'image_paths', kind: 'scalar', T: 9, repeated: true }, + { no: 2, name: "image_paths", kind: "scalar", T: 9, repeated: true }, { no: 4, - name: 'image_name', - kind: 'scalar', - T: 9, + name: "image_name", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 3, name: 'generated_image', kind: 'message', T: ImageData }, + { no: 3, name: "generated_image", kind: "message", T: ImageData }, { no: 5, - name: 'model_name', - kind: 'scalar', - T: 9, + name: "model_name", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 6, name: 'generated_media', kind: 'message', T: Media }, + { no: 6, name: "generated_media", kind: "message", T: Media } ]); static fromBinary(bytes, options) { return new _CortexStepGenerateImage().fromBinary(bytes, options); @@ -64849,7 +57229,7 @@ var CortexStepBrowserResizeWindow = class _CortexStepBrowserResizeWindow extends * * @generated from field: string page_id = 1; */ - pageId = ''; + pageId = ""; /** * New width for the browser window in display-independent pixels. * Only used when window_state is 'normal'. @@ -64888,56 +57268,51 @@ var CortexStepBrowserResizeWindow = class _CortexStepBrowserResizeWindow extends * * @generated from field: string browser_state_diff = 7; */ - browserStateDiff = ''; + browserStateDiff = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexStepBrowserResizeWindow'; + static typeName = "exa.cortex_pb.CortexStepBrowserResizeWindow"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'page_id', - kind: 'scalar', - T: 9, + name: "page_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'width', - kind: 'scalar', - T: 5, + name: "width", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, { no: 3, - name: 'height', - kind: 'scalar', - T: 5, + name: "height", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, - { - no: 6, - name: 'window_state', - kind: 'enum', - T: proto3.getEnumType(WindowState), - }, + { no: 6, name: "window_state", kind: "enum", T: proto3.getEnumType(WindowState) }, { no: 4, - name: 'user_rejected', - kind: 'scalar', - T: 8, + name: "user_rejected", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, - { no: 5, name: 'page_metadata', kind: 'message', T: BrowserPageMetadata }, + { no: 5, name: "page_metadata", kind: "message", T: BrowserPageMetadata }, { no: 7, - name: 'browser_state_diff', - kind: 'scalar', - T: 9, + name: "browser_state_diff", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _CortexStepBrowserResizeWindow().fromBinary(bytes, options); @@ -64946,10 +57321,7 @@ var CortexStepBrowserResizeWindow = class _CortexStepBrowserResizeWindow extends return new _CortexStepBrowserResizeWindow().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _CortexStepBrowserResizeWindow().fromJsonString( - jsonString, - options, - ); + return new _CortexStepBrowserResizeWindow().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_CortexStepBrowserResizeWindow, a, b); @@ -64961,7 +57333,7 @@ var CortexStepBrowserDragPixelToPixel = class _CortexStepBrowserDragPixelToPixel * * @generated from field: string page_id = 1; */ - pageId = ''; + pageId = ""; /** * A waypoint may not necessarily be the start or end of the drag, such as if * the agent starts a drag at point A, moves to point B, and then releases at @@ -64998,46 +57370,34 @@ var CortexStepBrowserDragPixelToPixel = class _CortexStepBrowserDragPixelToPixel proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexStepBrowserDragPixelToPixel'; + static typeName = "exa.cortex_pb.CortexStepBrowserDragPixelToPixel"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'page_id', - kind: 'scalar', - T: 9, + name: "page_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 2, name: 'waypoints', kind: 'message', T: Point2, repeated: true }, + { no: 2, name: "waypoints", kind: "message", T: Point2, repeated: true }, { no: 6, - name: 'user_rejected', - kind: 'scalar', - T: 8, + name: "user_rejected", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, - { no: 7, name: 'page_metadata', kind: 'message', T: BrowserPageMetadata }, - { - no: 8, - name: 'screenshots_with_drag_feedback', - kind: 'message', - T: Media, - repeated: true, - }, + { no: 7, name: "page_metadata", kind: "message", T: BrowserPageMetadata }, + { no: 8, name: "screenshots_with_drag_feedback", kind: "message", T: Media, repeated: true } ]); static fromBinary(bytes, options) { return new _CortexStepBrowserDragPixelToPixel().fromBinary(bytes, options); } static fromJson(jsonValue, options) { - return new _CortexStepBrowserDragPixelToPixel().fromJson( - jsonValue, - options, - ); + return new _CortexStepBrowserDragPixelToPixel().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _CortexStepBrowserDragPixelToPixel().fromJsonString( - jsonString, - options, - ); + return new _CortexStepBrowserDragPixelToPixel().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_CortexStepBrowserDragPixelToPixel, a, b); @@ -65049,27 +57409,27 @@ var CortexStepTaskBoundary = class _CortexStepTaskBoundary extends Message { * * @generated from field: string task_name = 1; */ - taskName = ''; + taskName = ""; /** * @generated from field: string task_status = 2; */ - taskStatus = ''; + taskStatus = ""; /** * @generated from field: string task_summary = 3; */ - taskSummary = ''; + taskSummary = ""; /** * @generated from field: string task_summary_with_citations = 4; */ - taskSummaryWithCitations = ''; + taskSummaryWithCitations = ""; /** * @generated from field: string delta_summary = 6; */ - deltaSummary = ''; + deltaSummary = ""; /** * @generated from field: string delta_summary_with_citations = 7; */ - deltaSummaryWithCitations = ''; + deltaSummaryWithCitations = ""; /** * Outputs * @@ -65081,51 +57441,51 @@ var CortexStepTaskBoundary = class _CortexStepTaskBoundary extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexStepTaskBoundary'; + static typeName = "exa.cortex_pb.CortexStepTaskBoundary"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'task_name', - kind: 'scalar', - T: 9, + name: "task_name", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'task_status', - kind: 'scalar', - T: 9, + name: "task_status", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 3, - name: 'task_summary', - kind: 'scalar', - T: 9, + name: "task_summary", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 4, - name: 'task_summary_with_citations', - kind: 'scalar', - T: 9, + name: "task_summary_with_citations", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 6, - name: 'delta_summary', - kind: 'scalar', - T: 9, + name: "delta_summary", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 7, - name: 'delta_summary_with_citations', - kind: 'scalar', - T: 9, + name: "delta_summary_with_citations", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 5, name: 'mode', kind: 'enum', T: proto3.getEnumType(AgentMode) }, + { no: 5, name: "mode", kind: "enum", T: proto3.getEnumType(AgentMode) } ]); static fromBinary(bytes, options) { return new _CortexStepTaskBoundary().fromBinary(bytes, options); @@ -65152,7 +57512,7 @@ var CortexStepNotifyUser = class _CortexStepNotifyUser extends Message { /** * @generated from field: string notification_content = 2; */ - notificationContent = ''; + notificationContent = ""; /** * @generated from field: bool is_blocking = 3; */ @@ -65170,7 +57530,7 @@ var CortexStepNotifyUser = class _CortexStepNotifyUser extends Message { * @generated from field: string confidence_justification = 5 [deprecated = true]; * @deprecated */ - confidenceJustification = ''; + confidenceJustification = ""; /** * Whether the agent believes it should auto-proceed without user interaction * @@ -65183,7 +57543,7 @@ var CortexStepNotifyUser = class _CortexStepNotifyUser extends Message { * * @generated from field: string diffs_uri = 6; */ - diffsUri = ''; + diffsUri = ""; /** * Whether the notify user step requires user interaction before the agent can * proceed. Used to determine when to send auto-approved review steps. @@ -65196,64 +57556,58 @@ var CortexStepNotifyUser = class _CortexStepNotifyUser extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexStepNotifyUser'; + static typeName = "exa.cortex_pb.CortexStepNotifyUser"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'review_absolute_uris', - kind: 'scalar', - T: 9, - repeated: true, - }, + { no: 1, name: "review_absolute_uris", kind: "scalar", T: 9, repeated: true }, { no: 2, - name: 'notification_content', - kind: 'scalar', - T: 9, + name: "notification_content", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 3, - name: 'is_blocking', - kind: 'scalar', - T: 8, + name: "is_blocking", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 4, - name: 'confidence_score', - kind: 'scalar', - T: 2, + name: "confidence_score", + kind: "scalar", + T: 2 /* ScalarType.FLOAT */ }, { no: 5, - name: 'confidence_justification', - kind: 'scalar', - T: 9, + name: "confidence_justification", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 8, - name: 'should_auto_proceed', - kind: 'scalar', - T: 8, + name: "should_auto_proceed", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 6, - name: 'diffs_uri', - kind: 'scalar', - T: 9, + name: "diffs_uri", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 7, - name: 'ask_for_user_feedback', - kind: 'scalar', - T: 8, + name: "ask_for_user_feedback", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ - }, + } ]); static fromBinary(bytes, options) { return new _CortexStepNotifyUser().fromBinary(bytes, options); @@ -65274,7 +57628,7 @@ var CodeAcknowledgementInfo = class _CodeAcknowledgementInfo extends Message { * * @generated from field: string uri_path = 1; */ - uriPath = ''; + uriPath = ""; /** * The code action steps that are relevant to the acknowledgement. * @@ -65292,17 +57646,17 @@ var CodeAcknowledgementInfo = class _CodeAcknowledgementInfo extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CodeAcknowledgementInfo'; + static typeName = "exa.cortex_pb.CodeAcknowledgementInfo"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'uri_path', - kind: 'scalar', - T: 9, + name: "uri_path", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 2, name: 'step_indices', kind: 'scalar', T: 13, repeated: true }, - { no: 3, name: 'diff', kind: 'message', T: UnifiedDiff }, + { no: 2, name: "step_indices", kind: "scalar", T: 13, repeated: true }, + { no: 3, name: "diff", kind: "message", T: UnifiedDiff } ]); static fromBinary(bytes, options) { return new _CodeAcknowledgementInfo().fromBinary(bytes, options); @@ -65329,7 +57683,7 @@ var CortexStepCodeAcknowledgement = class _CortexStepCodeAcknowledgement extends * * @generated from field: string written_feedback = 4; */ - writtenFeedback = ''; + writtenFeedback = ""; /** * How the user acknowledged the code action. * @@ -65349,35 +57703,24 @@ var CortexStepCodeAcknowledgement = class _CortexStepCodeAcknowledgement extends proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexStepCodeAcknowledgement'; + static typeName = "exa.cortex_pb.CortexStepCodeAcknowledgement"; static fields = proto3.util.newFieldList(() => [ { no: 3, - name: 'is_accept', - kind: 'scalar', - T: 8, + name: "is_accept", + kind: "scalar", + T: 8 /* ScalarType.BOOL */ }, { no: 4, - name: 'written_feedback', - kind: 'scalar', - T: 9, + name: "written_feedback", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { - no: 5, - name: 'acknowledgement_scope', - kind: 'enum', - T: proto3.getEnumType(CodeAcknowledgementScope), - }, - { - no: 7, - name: 'code_acknowledgement_infos', - kind: 'message', - T: CodeAcknowledgementInfo, - repeated: true, - }, + { no: 5, name: "acknowledgement_scope", kind: "enum", T: proto3.getEnumType(CodeAcknowledgementScope) }, + { no: 7, name: "code_acknowledgement_infos", kind: "message", T: CodeAcknowledgementInfo, repeated: true } ]); static fromBinary(bytes, options) { return new _CortexStepCodeAcknowledgement().fromBinary(bytes, options); @@ -65386,10 +57729,7 @@ var CortexStepCodeAcknowledgement = class _CortexStepCodeAcknowledgement extends return new _CortexStepCodeAcknowledgement().fromJson(jsonValue, options); } static fromJsonString(jsonString, options) { - return new _CortexStepCodeAcknowledgement().fromJsonString( - jsonString, - options, - ); + return new _CortexStepCodeAcknowledgement().fromJsonString(jsonString, options); } static equals(a, b) { return proto3.util.equals(_CortexStepCodeAcknowledgement, a, b); @@ -65399,43 +57739,43 @@ var InternalSearchResults = class _InternalSearchResults extends Message { /** * @generated from field: string url = 1; */ - url = ''; + url = ""; /** * @generated from field: string title = 2; */ - title = ''; + title = ""; /** * @generated from field: string content = 3; */ - content = ''; + content = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.InternalSearchResults'; + static typeName = "exa.cortex_pb.InternalSearchResults"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'url', - kind: 'scalar', - T: 9, + name: "url", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'title', - kind: 'scalar', - T: 9, + name: "title", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 3, - name: 'content', - kind: 'scalar', - T: 9, + name: "content", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _InternalSearchResults().fromBinary(bytes, options); @@ -65456,7 +57796,7 @@ var CortexStepInternalSearch = class _CortexStepInternalSearch extends Message { * * @generated from field: string query = 1; */ - query = ''; + query = ""; /** * Outputs * @@ -65468,22 +57808,16 @@ var CortexStepInternalSearch = class _CortexStepInternalSearch extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexStepInternalSearch'; + static typeName = "exa.cortex_pb.CortexStepInternalSearch"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'query', - kind: 'scalar', - T: 9, + name: "query", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { - no: 2, - name: 'results', - kind: 'message', - T: InternalSearchResults, - repeated: true, - }, + { no: 2, name: "results", kind: "message", T: InternalSearchResults, repeated: true } ]); static fromBinary(bytes, options) { return new _CortexStepInternalSearch().fromBinary(bytes, options); @@ -65502,7 +57836,7 @@ var ArtifactReviewState = class _ArtifactReviewState extends Message { /** * @generated from field: string artifact_uri = 1; */ - artifactUri = ''; + artifactUri = ""; /** * @generated from field: exa.cortex_pb.ArtifactReviewStatus status = 2; */ @@ -65514,35 +57848,30 @@ var ArtifactReviewState = class _ArtifactReviewState extends Message { /** * @generated from field: string last_reviewed_content = 4; */ - lastReviewedContent = ''; + lastReviewedContent = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.ArtifactReviewState'; + static typeName = "exa.cortex_pb.ArtifactReviewState"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'artifact_uri', - kind: 'scalar', - T: 9, + name: "artifact_uri", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { - no: 2, - name: 'status', - kind: 'enum', - T: proto3.getEnumType(ArtifactReviewStatus), - }, - { no: 3, name: 'last_reviewed_time', kind: 'message', T: Timestamp }, + { no: 2, name: "status", kind: "enum", T: proto3.getEnumType(ArtifactReviewStatus) }, + { no: 3, name: "last_reviewed_time", kind: "message", T: Timestamp }, { no: 4, - name: 'last_reviewed_content', - kind: 'scalar', - T: 9, + name: "last_reviewed_content", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _ArtifactReviewState().fromBinary(bytes, options); @@ -65587,44 +57916,44 @@ var ConversationHistoryConfig = class _ConversationHistoryConfig extends Message proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.ConversationHistoryConfig'; + static typeName = "exa.cortex_pb.ConversationHistoryConfig"; static fields = proto3.util.newFieldList(() => [ - { no: 1, name: 'enabled', kind: 'scalar', T: 8, opt: true }, + { no: 1, name: "enabled", kind: "scalar", T: 8, opt: true }, { no: 2, - name: 'max_conversations', - kind: 'scalar', - T: 5, + name: "max_conversations", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, { no: 3, - name: 'max_title_chars', - kind: 'scalar', - T: 5, + name: "max_title_chars", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, { no: 4, - name: 'max_user_intent_chars', - kind: 'scalar', - T: 5, + name: "max_user_intent_chars", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, { no: 5, - name: 'max_conversation_logs_chars', - kind: 'scalar', - T: 5, + name: "max_conversation_logs_chars", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, { no: 6, - name: 'max_artifact_summary_chars', - kind: 'scalar', - T: 5, + name: "max_artifact_summary_chars", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ - }, + } ]); static fromBinary(bytes, options) { return new _ConversationHistoryConfig().fromBinary(bytes, options); @@ -65643,21 +57972,21 @@ var CortexStepSystemMessage = class _CortexStepSystemMessage extends Message { /** * @generated from field: string message = 1; */ - message = ''; + message = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexStepSystemMessage'; + static typeName = "exa.cortex_pb.CortexStepSystemMessage"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'message', - kind: 'scalar', - T: 9, + name: "message", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _CortexStepSystemMessage().fromBinary(bytes, options); @@ -65684,15 +58013,15 @@ var CortexStepWait = class _CortexStepWait extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexStepWait'; + static typeName = "exa.cortex_pb.CortexStepWait"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'duration_ms', - kind: 'scalar', - T: 3, + name: "duration_ms", + kind: "scalar", + T: 3 /* ScalarType.INT64 */ - }, + } ]); static fromBinary(bytes, options) { return new _CortexStepWait().fromBinary(bytes, options); @@ -65713,34 +58042,34 @@ var CortexStepAgencyToolCall = class _CortexStepAgencyToolCall extends Message { * * @generated from field: string agent_name = 1; */ - agentName = ''; + agentName = ""; /** * The function being called (e.g., "moma_search") * * @generated from field: string function_name = 2; */ - functionName = ''; + functionName = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexStepAgencyToolCall'; + static typeName = "exa.cortex_pb.CortexStepAgencyToolCall"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'agent_name', - kind: 'scalar', - T: 9, + name: "agent_name", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'function_name', - kind: 'scalar', - T: 9, + name: "function_name", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _CortexStepAgencyToolCall().fromBinary(bytes, options); @@ -65762,25 +58091,25 @@ var CortexStepWorkspaceAPI = class _CortexStepWorkspaceAPI extends Message { * * @generated from field: string url = 1; */ - url = ''; + url = ""; /** * HTTP method (GET, POST, PUT, DELETE). * * @generated from field: string http_method = 2; */ - httpMethod = ''; + httpMethod = ""; /** * Request body JSON. * * @generated from field: string body = 3; */ - body = ''; + body = ""; /** * User-facing explanation of what this call does. * * @generated from field: string description = 4; */ - description = ''; + description = ""; /** * HTTP status code. * @@ -65792,56 +58121,56 @@ var CortexStepWorkspaceAPI = class _CortexStepWorkspaceAPI extends Message { * * @generated from field: string response = 6; */ - response = ''; + response = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexStepWorkspaceAPI'; + static typeName = "exa.cortex_pb.CortexStepWorkspaceAPI"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'url', - kind: 'scalar', - T: 9, + name: "url", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'http_method', - kind: 'scalar', - T: 9, + name: "http_method", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 3, - name: 'body', - kind: 'scalar', - T: 9, + name: "body", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 4, - name: 'description', - kind: 'scalar', - T: 9, + name: "description", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 5, - name: 'status_code', - kind: 'scalar', - T: 5, + name: "status_code", + kind: "scalar", + T: 5 /* ScalarType.INT32 */ }, { no: 6, - name: 'response', - kind: 'scalar', - T: 9, + name: "response", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _CortexStepWorkspaceAPI().fromBinary(bytes, options); @@ -65862,7 +58191,7 @@ var GenericStepResult = class _GenericStepResult extends Message { * * @generated from field: string result = 1; */ - result = ''; + result = ""; /** * Optional key-value metadata for additional context (e.g., for rendering). * @@ -65880,27 +58209,21 @@ var GenericStepResult = class _GenericStepResult extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.GenericStepResult'; + static typeName = "exa.cortex_pb.GenericStepResult"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'result', - kind: 'scalar', - T: 9, + name: "result", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { - no: 2, - name: 'metadata', - kind: 'map', - K: 9, - V: { - kind: 'scalar', - T: 9, - /* ScalarType.STRING */ - }, - }, - { no: 3, name: 'step_render_info', kind: 'message', T: StepRenderInfo }, + { no: 2, name: "metadata", kind: "map", K: 9, V: { + kind: "scalar", + T: 9 + /* ScalarType.STRING */ + } }, + { no: 3, name: "step_render_info", kind: "message", T: StepRenderInfo } ]); static fromBinary(bytes, options) { return new _GenericStepResult().fromBinary(bytes, options); @@ -65921,47 +58244,47 @@ var CortexStepInvokeSubagent = class _CortexStepInvokeSubagent extends Message { * * @generated from field: string subagent_name = 1; */ - subagentName = ''; + subagentName = ""; /** * Natural language prompt/instructions for the subagent. * * @generated from field: string prompt = 2; */ - prompt = ''; + prompt = ""; /** * Result returned by the subagent (populated after execution). * * @generated from field: string result = 3; */ - result = ''; + result = ""; constructor(data) { super(); proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexStepInvokeSubagent'; + static typeName = "exa.cortex_pb.CortexStepInvokeSubagent"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'subagent_name', - kind: 'scalar', - T: 9, + name: "subagent_name", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 2, - name: 'prompt', - kind: 'scalar', - T: 9, + name: "prompt", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 3, - name: 'result', - kind: 'scalar', - T: 9, + name: "result", + kind: "scalar", + T: 9 /* ScalarType.STRING */ - }, + } ]); static fromBinary(bytes, options) { return new _CortexStepInvokeSubagent().fromBinary(bytes, options); @@ -65994,20 +58317,14 @@ var CortexStepGeneric = class _CortexStepGeneric extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'exa.cortex_pb.CortexStepGeneric'; + static typeName = "exa.cortex_pb.CortexStepGeneric"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'args', - kind: 'map', - K: 9, - V: { - kind: 'scalar', - T: 9, - /* ScalarType.STRING */ - }, - }, - { no: 2, name: 'result', kind: 'message', T: GenericStepResult }, + { no: 1, name: "args", kind: "map", K: 9, V: { + kind: "scalar", + T: 9 + /* ScalarType.STRING */ + } }, + { no: 2, name: "result", kind: "message", T: GenericStepResult } ]); static fromBinary(bytes, options) { return new _CortexStepGeneric().fromBinary(bytes, options); @@ -66025,17 +58342,17 @@ var CortexStepGeneric = class _CortexStepGeneric extends Message { // exa/proto_ts/dist/exa/gemini_coder/proto/trajectory_pb.js var ExecutionStatus; -(function (ExecutionStatus2) { - ExecutionStatus2[(ExecutionStatus2['UNSPECIFIED'] = 0)] = 'UNSPECIFIED'; - ExecutionStatus2[(ExecutionStatus2['IDLE'] = 1)] = 'IDLE'; - ExecutionStatus2[(ExecutionStatus2['RUNNING'] = 2)] = 'RUNNING'; - ExecutionStatus2[(ExecutionStatus2['CANCELING'] = 3)] = 'CANCELING'; +(function(ExecutionStatus2) { + ExecutionStatus2[ExecutionStatus2["UNSPECIFIED"] = 0] = "UNSPECIFIED"; + ExecutionStatus2[ExecutionStatus2["IDLE"] = 1] = "IDLE"; + ExecutionStatus2[ExecutionStatus2["RUNNING"] = 2] = "RUNNING"; + ExecutionStatus2[ExecutionStatus2["CANCELING"] = 3] = "CANCELING"; })(ExecutionStatus || (ExecutionStatus = {})); -proto3.util.setEnumType(ExecutionStatus, 'gemini_coder.ExecutionStatus', [ - { no: 0, name: 'EXECUTION_STATUS_UNSPECIFIED' }, - { no: 1, name: 'EXECUTION_STATUS_IDLE' }, - { no: 2, name: 'EXECUTION_STATUS_RUNNING' }, - { no: 3, name: 'EXECUTION_STATUS_CANCELING' }, +proto3.util.setEnumType(ExecutionStatus, "gemini_coder.ExecutionStatus", [ + { no: 0, name: "EXECUTION_STATUS_UNSPECIFIED" }, + { no: 1, name: "EXECUTION_STATUS_IDLE" }, + { no: 2, name: "EXECUTION_STATUS_RUNNING" }, + { no: 3, name: "EXECUTION_STATUS_CANCELING" } ]); var Conversation2 = class _Conversation extends Message { /** @@ -66043,7 +58360,7 @@ var Conversation2 = class _Conversation extends Message { * * @generated from field: string conversation_id = 1; */ - conversationId = ''; + conversationId = ""; /** * The trajectory underlying the current conversation state. * @@ -66061,17 +58378,17 @@ var Conversation2 = class _Conversation extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'gemini_coder.Conversation'; + static typeName = "gemini_coder.Conversation"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'conversation_id', - kind: 'scalar', - T: 9, + name: "conversation_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { no: 2, name: 'trajectory', kind: 'message', T: Trajectory }, - { no: 3, name: 'state', kind: 'message', T: ConversationState }, + { no: 2, name: "trajectory", kind: "message", T: Trajectory }, + { no: 3, name: "state", kind: "message", T: ConversationState } ]); static fromBinary(bytes, options) { return new _Conversation().fromBinary(bytes, options); @@ -66092,7 +58409,7 @@ var ConversationState = class _ConversationState extends Message { * * @generated from field: string trajectory_id = 1; */ - trajectoryId = ''; + trajectoryId = ""; /** * The status of the execution. * @@ -66118,23 +58435,18 @@ var ConversationState = class _ConversationState extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'gemini_coder.ConversationState'; + static typeName = "gemini_coder.ConversationState"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'trajectory_id', - kind: 'scalar', - T: 9, + name: "trajectory_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { - no: 2, - name: 'status', - kind: 'enum', - T: proto3.getEnumType(ExecutionStatus), - }, - { no: 3, name: 'staged_steps', kind: 'message', T: Step, repeated: true }, - { no: 4, name: 'execute_config', kind: 'message', T: CascadeConfig }, + { no: 2, name: "status", kind: "enum", T: proto3.getEnumType(ExecutionStatus) }, + { no: 3, name: "staged_steps", kind: "message", T: Step, repeated: true }, + { no: 4, name: "execute_config", kind: "message", T: CascadeConfig } ]); static fromBinary(bytes, options) { return new _ConversationState().fromBinary(bytes, options); @@ -66155,13 +58467,13 @@ var Trajectory = class _Trajectory extends Message { * * @generated from field: string trajectory_id = 1; */ - trajectoryId = ''; + trajectoryId = ""; /** * The ID of the conversation, which could be related * * @generated from field: string cascade_id = 6; */ - cascadeId = ''; + cascadeId = ""; /** * to many trajectories. * @@ -66204,57 +58516,29 @@ var Trajectory = class _Trajectory extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'gemini_coder.Trajectory'; + static typeName = "gemini_coder.Trajectory"; static fields = proto3.util.newFieldList(() => [ { no: 1, - name: 'trajectory_id', - kind: 'scalar', - T: 9, + name: "trajectory_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, { no: 6, - name: 'cascade_id', - kind: 'scalar', - T: 9, + name: "cascade_id", + kind: "scalar", + T: 9 /* ScalarType.STRING */ }, - { - no: 4, - name: 'trajectory_type', - kind: 'enum', - T: proto3.getEnumType(CortexTrajectoryType), - }, - { no: 2, name: 'steps', kind: 'message', T: Step, repeated: true }, - { - no: 5, - name: 'parent_references', - kind: 'message', - T: CortexTrajectoryReference, - repeated: true, - }, - { - no: 3, - name: 'generator_metadata', - kind: 'message', - T: CortexStepGeneratorMetadata, - repeated: true, - }, - { - no: 9, - name: 'executor_metadatas', - kind: 'message', - T: ExecutorMetadata, - repeated: true, - }, - { - no: 8, - name: 'source', - kind: 'enum', - T: proto3.getEnumType(CortexTrajectorySource), - }, - { no: 7, name: 'metadata', kind: 'message', T: CortexTrajectoryMetadata }, + { no: 4, name: "trajectory_type", kind: "enum", T: proto3.getEnumType(CortexTrajectoryType) }, + { no: 2, name: "steps", kind: "message", T: Step, repeated: true }, + { no: 5, name: "parent_references", kind: "message", T: CortexTrajectoryReference, repeated: true }, + { no: 3, name: "generator_metadata", kind: "message", T: CortexStepGeneratorMetadata, repeated: true }, + { no: 9, name: "executor_metadatas", kind: "message", T: ExecutorMetadata, repeated: true }, + { no: 8, name: "source", kind: "enum", T: proto3.getEnumType(CortexTrajectorySource) }, + { no: 7, name: "metadata", kind: "message", T: CortexTrajectoryMetadata } ]); static fromBinary(bytes, options) { return new _Trajectory().fromBinary(bytes, options); @@ -66330,758 +58614,120 @@ var Step = class _Step extends Message { proto3.util.initPartial(data, this); } static runtime = proto3; - static typeName = 'gemini_coder.Step'; + static typeName = "gemini_coder.Step"; static fields = proto3.util.newFieldList(() => [ - { - no: 1, - name: 'type', - kind: 'enum', - T: proto3.getEnumType(CortexStepType), - }, - { - no: 4, - name: 'status', - kind: 'enum', - T: proto3.getEnumType(CortexStepStatus), - }, - { no: 5, name: 'metadata', kind: 'message', T: CortexStepMetadata }, - { no: 31, name: 'error', kind: 'message', T: CortexErrorDetails }, - { no: 133, name: 'permissions', kind: 'message', T: TrajectoryPermissions }, - { - no: 140, - name: 'generic', - kind: 'message', - T: CortexStepGeneric, - oneof: 'step', - }, - { - no: 12, - name: 'finish', - kind: 'message', - T: CortexStepFinish, - oneof: 'step', - }, - { - no: 9, - name: 'mquery', - kind: 'message', - T: CortexStepMquery, - oneof: 'step', - }, - { - no: 10, - name: 'code_action', - kind: 'message', - T: CortexStepCodeAction, - oneof: 'step', - }, - { - no: 11, - name: 'git_commit', - kind: 'message', - T: CortexStepGitCommit, - oneof: 'step', - }, - { - no: 13, - name: 'grep_search', - kind: 'message', - T: CortexStepGrepSearch, - oneof: 'step', - }, - { - no: 16, - name: 'compile', - kind: 'message', - T: CortexStepCompile, - oneof: 'step', - }, - { - no: 22, - name: 'view_code_item', - kind: 'message', - T: CortexStepViewCodeItem, - oneof: 'step', - }, - { - no: 24, - name: 'error_message', - kind: 'message', - T: CortexStepErrorMessage, - oneof: 'step', - }, - { - no: 28, - name: 'run_command', - kind: 'message', - T: CortexStepRunCommand, - oneof: 'step', - }, - { no: 34, name: 'find', kind: 'message', T: CortexStepFind, oneof: 'step' }, - { - no: 36, - name: 'suggested_responses', - kind: 'message', - T: CortexStepSuggestedResponses, - oneof: 'step', - }, - { - no: 37, - name: 'command_status', - kind: 'message', - T: CortexStepCommandStatus, - oneof: 'step', - }, - { - no: 40, - name: 'read_url_content', - kind: 'message', - T: CortexStepReadUrlContent, - oneof: 'step', - }, - { - no: 41, - name: 'view_content_chunk', - kind: 'message', - T: CortexStepViewContentChunk, - oneof: 'step', - }, - { - no: 42, - name: 'search_web', - kind: 'message', - T: CortexStepSearchWeb, - oneof: 'step', - }, - { - no: 47, - name: 'mcp_tool', - kind: 'message', - T: CortexStepMcpTool, - oneof: 'step', - }, - { - no: 55, - name: 'clipboard', - kind: 'message', - T: CortexStepClipboard, - oneof: 'step', - }, - { - no: 58, - name: 'view_file_outline', - kind: 'message', - T: CortexStepViewFileOutline, - oneof: 'step', - }, - { - no: 62, - name: 'list_resources', - kind: 'message', - T: CortexStepListResources, - oneof: 'step', - }, - { - no: 63, - name: 'read_resource', - kind: 'message', - T: CortexStepReadResource, - oneof: 'step', - }, - { - no: 64, - name: 'lint_diff', - kind: 'message', - T: CortexStepLintDiff, - oneof: 'step', - }, - { - no: 67, - name: 'open_browser_url', - kind: 'message', - T: CortexStepOpenBrowserUrl, - oneof: 'step', - }, - { - no: 72, - name: 'trajectory_search', - kind: 'message', - T: CortexStepTrajectorySearch, - oneof: 'step', - }, - { - no: 73, - name: 'execute_browser_javascript', - kind: 'message', - T: CortexStepExecuteBrowserJavaScript, - oneof: 'step', - }, - { - no: 74, - name: 'list_browser_pages', - kind: 'message', - T: CortexStepListBrowserPages, - oneof: 'step', - }, - { - no: 75, - name: 'capture_browser_screenshot', - kind: 'message', - T: CortexStepCaptureBrowserScreenshot, - oneof: 'step', - }, - { - no: 76, - name: 'click_browser_pixel', - kind: 'message', - T: CortexStepClickBrowserPixel, - oneof: 'step', - }, - { - no: 77, - name: 'read_terminal', - kind: 'message', - T: CortexStepReadTerminal, - oneof: 'step', - }, - { - no: 78, - name: 'capture_browser_console_logs', - kind: 'message', - T: CortexStepCaptureBrowserConsoleLogs, - oneof: 'step', - }, - { - no: 79, - name: 'read_browser_page', - kind: 'message', - T: CortexStepReadBrowserPage, - oneof: 'step', - }, - { - no: 80, - name: 'browser_get_dom', - kind: 'message', - T: CortexStepBrowserGetDom, - oneof: 'step', - }, - { - no: 85, - name: 'code_search', - kind: 'message', - T: CortexStepCodeSearch, - oneof: 'step', - }, - { - no: 86, - name: 'browser_input', - kind: 'message', - T: CortexStepBrowserInput, - oneof: 'step', - }, - { - no: 87, - name: 'browser_move_mouse', - kind: 'message', - T: CortexStepBrowserMoveMouse, - oneof: 'step', - }, - { - no: 88, - name: 'browser_select_option', - kind: 'message', - T: CortexStepBrowserSelectOption, - oneof: 'step', - }, - { - no: 89, - name: 'browser_scroll_up', - kind: 'message', - T: CortexStepBrowserScrollUp, - oneof: 'step', - }, - { - no: 90, - name: 'browser_scroll_down', - kind: 'message', - T: CortexStepBrowserScrollDown, - oneof: 'step', - }, - { - no: 91, - name: 'browser_click_element', - kind: 'message', - T: CortexStepBrowserClickElement, - oneof: 'step', - }, - { - no: 137, - name: 'browser_list_network_requests', - kind: 'message', - T: CortexStepBrowserListNetworkRequests, - oneof: 'step', - }, - { - no: 138, - name: 'browser_get_network_request', - kind: 'message', - T: CortexStepBrowserGetNetworkRequest, - oneof: 'step', - }, - { - no: 92, - name: 'browser_press_key', - kind: 'message', - T: CortexStepBrowserPressKey, - oneof: 'step', - }, - { - no: 93, - name: 'task_boundary', - kind: 'message', - T: CortexStepTaskBoundary, - oneof: 'step', - }, - { - no: 94, - name: 'notify_user', - kind: 'message', - T: CortexStepNotifyUser, - oneof: 'step', - }, - { - no: 95, - name: 'code_acknowledgement', - kind: 'message', - T: CortexStepCodeAcknowledgement, - oneof: 'step', - }, - { - no: 96, - name: 'internal_search', - kind: 'message', - T: CortexStepInternalSearch, - oneof: 'step', - }, - { - no: 97, - name: 'browser_subagent', - kind: 'message', - T: CortexStepBrowserSubagent, - oneof: 'step', - }, - { - no: 102, - name: 'knowledge_generation', - kind: 'message', - T: CortexStepKnowledgeGeneration, - oneof: 'step', - }, - { - no: 104, - name: 'generate_image', - kind: 'message', - T: CortexStepGenerateImage, - oneof: 'step', - }, - { - no: 101, - name: 'browser_scroll', - kind: 'message', - T: CortexStepBrowserScroll, - oneof: 'step', - }, - { - no: 109, - name: 'browser_resize_window', - kind: 'message', - T: CortexStepBrowserResizeWindow, - oneof: 'step', - }, - { - no: 110, - name: 'browser_drag_pixel_to_pixel', - kind: 'message', - T: CortexStepBrowserDragPixelToPixel, - oneof: 'step', - }, - { - no: 125, - name: 'browser_mouse_wheel', - kind: 'message', - T: CortexStepBrowserMouseWheel, - oneof: 'step', - }, - { - no: 134, - name: 'browser_mouse_up', - kind: 'message', - T: CortexStepBrowserMouseUp, - oneof: 'step', - }, - { - no: 135, - name: 'browser_mouse_down', - kind: 'message', - T: CortexStepBrowserMouseDown, - oneof: 'step', - }, - { - no: 139, - name: 'browser_refresh_page', - kind: 'message', - T: CortexStepBrowserRefreshPage, - oneof: 'step', - }, - { - no: 111, - name: 'conversation_history', - kind: 'message', - T: CortexStepConversationHistory, - oneof: 'step', - }, - { - no: 112, - name: 'knowledge_artifacts', - kind: 'message', - T: CortexStepKnowledgeArtifacts, - oneof: 'step', - }, - { - no: 113, - name: 'send_command_input', - kind: 'message', - T: CortexStepSendCommandInput, - oneof: 'step', - }, - { - no: 114, - name: 'system_message', - kind: 'message', - T: CortexStepSystemMessage, - oneof: 'step', - }, - { - no: 115, - name: 'wait', - kind: 'message', - T: CortexStepWait, - oneof: 'step', - }, - { - no: 129, - name: 'ki_insertion', - kind: 'message', - T: CortexStepKIInsertion, - oneof: 'step', - }, - { - no: 136, - name: 'workspace_api', - kind: 'message', - T: CortexStepWorkspaceAPI, - oneof: 'step', - }, - { - no: 143, - name: 'invoke_subagent', - kind: 'message', - T: CortexStepInvokeSubagent, - oneof: 'step', - }, - { - no: 106, - name: 'compile_applet', - kind: 'message', - T: CortexStepCompileApplet, - oneof: 'step', - }, - { - no: 107, - name: 'install_applet_dependencies', - kind: 'message', - T: CortexStepInstallAppletDependencies, - oneof: 'step', - }, - { - no: 108, - name: 'install_applet_package', - kind: 'message', - T: CortexStepInstallAppletPackage, - oneof: 'step', - }, - { - no: 121, - name: 'set_up_firebase', - kind: 'message', - T: CortexStepSetUpFirebase, - oneof: 'step', - }, - { - no: 123, - name: 'restart_dev_server', - kind: 'message', - T: CortexStepRestartDevServer, - oneof: 'step', - }, - { - no: 124, - name: 'deploy_firebase', - kind: 'message', - T: CortexStepDeployFirebase, - oneof: 'step', - }, - { - no: 126, - name: 'lint_applet', - kind: 'message', - T: CortexStepLintApplet, - oneof: 'step', - }, - { - no: 127, - name: 'shell_exec', - kind: 'message', - T: CortexStepShellExec, - oneof: 'step', - }, - { - no: 128, - name: 'define_new_env_variable', - kind: 'message', - T: CortexStepDefineNewEnvVariable, - oneof: 'step', - }, - { - no: 142, - name: 'write_blob', - kind: 'message', - T: CortexStepWriteBlob, - oneof: 'step', - }, - { - no: 116, - name: 'agency_tool_call', - kind: 'message', - T: CortexStepAgencyToolCall, - oneof: 'step', - }, - { - no: 19, - name: 'user_input', - kind: 'message', - T: CortexStepUserInput, - oneof: 'step', - }, - { - no: 20, - name: 'planner_response', - kind: 'message', - T: CortexStepPlannerResponse, - oneof: 'step', - }, - { - no: 14, - name: 'view_file', - kind: 'message', - T: CortexStepViewFile, - oneof: 'step', - }, - { - no: 15, - name: 'list_directory', - kind: 'message', - T: CortexStepListDirectory, - oneof: 'step', - }, - { - no: 105, - name: 'delete_directory', - kind: 'message', - T: CortexStepDeleteDirectory, - oneof: 'step', - }, - { - no: 30, - name: 'checkpoint', - kind: 'message', - T: CortexStepCheckpoint, - oneof: 'step', - }, - { - no: 98, - name: 'file_change', - kind: 'message', - T: CortexStepFileChange, - oneof: 'step', - }, - { - no: 100, - name: 'move', - kind: 'message', - T: CortexStepMove, - oneof: 'step', - }, - { - no: 103, - name: 'ephemeral_message', - kind: 'message', - T: CortexStepEphemeralMessage, - oneof: 'step', - }, - { - no: 7, - name: 'dummy', - kind: 'message', - T: CortexStepDummy, - oneof: 'step', - }, - { - no: 8, - name: 'plan_input', - kind: 'message', - T: CortexStepPlanInput, - oneof: 'step', - }, - { - no: 21, - name: 'file_breakdown', - kind: 'message', - T: CortexStepFileBreakdown, - oneof: 'step', - }, - { - no: 23, - name: 'write_to_file', - kind: 'message', - T: CortexStepWriteToFile, - oneof: 'step', - }, - { - no: 32, - name: 'propose_code', - kind: 'message', - T: CortexStepProposeCode, - oneof: 'step', - }, - { - no: 35, - name: 'search_knowledge_base', - kind: 'message', - T: CortexStepSearchKnowledgeBase, - oneof: 'step', - }, - { - no: 39, - name: 'lookup_knowledge_base', - kind: 'message', - T: CortexStepLookupKnowledgeBase, - oneof: 'step', - }, - { - no: 48, - name: 'manager_feedback', - kind: 'message', - T: CortexStepManagerFeedback, - oneof: 'step', - }, - { - no: 49, - name: 'tool_call_proposal', - kind: 'message', - T: CortexStepToolCallProposal, - oneof: 'step', - }, - { - no: 50, - name: 'tool_call_choice', - kind: 'message', - T: CortexStepToolCallChoice, - oneof: 'step', - }, - { - no: 52, - name: 'trajectory_choice', - kind: 'message', - T: CortexStepTrajectoryChoice, - oneof: 'step', - }, - { - no: 59, - name: 'check_deploy_status', - kind: 'message', - T: CortexStepCheckDeployStatus, - oneof: 'step', - }, - { - no: 60, - name: 'post_pr_review', - kind: 'message', - T: CortexStepPostPrReview, - oneof: 'step', - }, - { - no: 65, - name: 'find_all_references', - kind: 'message', - T: CortexStepFindAllReferences, - oneof: 'step', - }, - { - no: 66, - name: 'brain_update', - kind: 'message', - T: CortexStepBrainUpdate, - oneof: 'step', - }, - { - no: 68, - name: 'run_extension_code', - kind: 'message', - T: CortexStepRunExtensionCode, - oneof: 'step', - }, - { - no: 70, - name: 'add_annotation', - kind: 'message', - T: CortexStepAddAnnotation, - oneof: 'step', - }, - { - no: 71, - name: 'proposal_feedback', - kind: 'message', - T: CortexStepProposalFeedback, - oneof: 'step', - }, - { - no: 43, - name: 'retrieve_memory', - kind: 'message', - T: CortexStepRetrieveMemory, - oneof: 'step', - }, - { - no: 38, - name: 'memory', - kind: 'message', - T: CortexStepMemory, - oneof: 'step', - }, - { - no: 56, - name: 'requested_interaction', - kind: 'message', - T: RequestedInteraction, - }, - { - no: 69, - name: 'user_annotations', - kind: 'message', - T: UserStepAnnotations, - }, - { no: 6, name: 'subtrajectory', kind: 'message', T: Trajectory }, + { no: 1, name: "type", kind: "enum", T: proto3.getEnumType(CortexStepType) }, + { no: 4, name: "status", kind: "enum", T: proto3.getEnumType(CortexStepStatus) }, + { no: 5, name: "metadata", kind: "message", T: CortexStepMetadata }, + { no: 31, name: "error", kind: "message", T: CortexErrorDetails }, + { no: 133, name: "permissions", kind: "message", T: TrajectoryPermissions }, + { no: 140, name: "generic", kind: "message", T: CortexStepGeneric, oneof: "step" }, + { no: 12, name: "finish", kind: "message", T: CortexStepFinish, oneof: "step" }, + { no: 9, name: "mquery", kind: "message", T: CortexStepMquery, oneof: "step" }, + { no: 10, name: "code_action", kind: "message", T: CortexStepCodeAction, oneof: "step" }, + { no: 11, name: "git_commit", kind: "message", T: CortexStepGitCommit, oneof: "step" }, + { no: 13, name: "grep_search", kind: "message", T: CortexStepGrepSearch, oneof: "step" }, + { no: 16, name: "compile", kind: "message", T: CortexStepCompile, oneof: "step" }, + { no: 22, name: "view_code_item", kind: "message", T: CortexStepViewCodeItem, oneof: "step" }, + { no: 24, name: "error_message", kind: "message", T: CortexStepErrorMessage, oneof: "step" }, + { no: 28, name: "run_command", kind: "message", T: CortexStepRunCommand, oneof: "step" }, + { no: 34, name: "find", kind: "message", T: CortexStepFind, oneof: "step" }, + { no: 36, name: "suggested_responses", kind: "message", T: CortexStepSuggestedResponses, oneof: "step" }, + { no: 37, name: "command_status", kind: "message", T: CortexStepCommandStatus, oneof: "step" }, + { no: 40, name: "read_url_content", kind: "message", T: CortexStepReadUrlContent, oneof: "step" }, + { no: 41, name: "view_content_chunk", kind: "message", T: CortexStepViewContentChunk, oneof: "step" }, + { no: 42, name: "search_web", kind: "message", T: CortexStepSearchWeb, oneof: "step" }, + { no: 47, name: "mcp_tool", kind: "message", T: CortexStepMcpTool, oneof: "step" }, + { no: 55, name: "clipboard", kind: "message", T: CortexStepClipboard, oneof: "step" }, + { no: 58, name: "view_file_outline", kind: "message", T: CortexStepViewFileOutline, oneof: "step" }, + { no: 62, name: "list_resources", kind: "message", T: CortexStepListResources, oneof: "step" }, + { no: 63, name: "read_resource", kind: "message", T: CortexStepReadResource, oneof: "step" }, + { no: 64, name: "lint_diff", kind: "message", T: CortexStepLintDiff, oneof: "step" }, + { no: 67, name: "open_browser_url", kind: "message", T: CortexStepOpenBrowserUrl, oneof: "step" }, + { no: 72, name: "trajectory_search", kind: "message", T: CortexStepTrajectorySearch, oneof: "step" }, + { no: 73, name: "execute_browser_javascript", kind: "message", T: CortexStepExecuteBrowserJavaScript, oneof: "step" }, + { no: 74, name: "list_browser_pages", kind: "message", T: CortexStepListBrowserPages, oneof: "step" }, + { no: 75, name: "capture_browser_screenshot", kind: "message", T: CortexStepCaptureBrowserScreenshot, oneof: "step" }, + { no: 76, name: "click_browser_pixel", kind: "message", T: CortexStepClickBrowserPixel, oneof: "step" }, + { no: 77, name: "read_terminal", kind: "message", T: CortexStepReadTerminal, oneof: "step" }, + { no: 78, name: "capture_browser_console_logs", kind: "message", T: CortexStepCaptureBrowserConsoleLogs, oneof: "step" }, + { no: 79, name: "read_browser_page", kind: "message", T: CortexStepReadBrowserPage, oneof: "step" }, + { no: 80, name: "browser_get_dom", kind: "message", T: CortexStepBrowserGetDom, oneof: "step" }, + { no: 85, name: "code_search", kind: "message", T: CortexStepCodeSearch, oneof: "step" }, + { no: 86, name: "browser_input", kind: "message", T: CortexStepBrowserInput, oneof: "step" }, + { no: 87, name: "browser_move_mouse", kind: "message", T: CortexStepBrowserMoveMouse, oneof: "step" }, + { no: 88, name: "browser_select_option", kind: "message", T: CortexStepBrowserSelectOption, oneof: "step" }, + { no: 89, name: "browser_scroll_up", kind: "message", T: CortexStepBrowserScrollUp, oneof: "step" }, + { no: 90, name: "browser_scroll_down", kind: "message", T: CortexStepBrowserScrollDown, oneof: "step" }, + { no: 91, name: "browser_click_element", kind: "message", T: CortexStepBrowserClickElement, oneof: "step" }, + { no: 137, name: "browser_list_network_requests", kind: "message", T: CortexStepBrowserListNetworkRequests, oneof: "step" }, + { no: 138, name: "browser_get_network_request", kind: "message", T: CortexStepBrowserGetNetworkRequest, oneof: "step" }, + { no: 92, name: "browser_press_key", kind: "message", T: CortexStepBrowserPressKey, oneof: "step" }, + { no: 93, name: "task_boundary", kind: "message", T: CortexStepTaskBoundary, oneof: "step" }, + { no: 94, name: "notify_user", kind: "message", T: CortexStepNotifyUser, oneof: "step" }, + { no: 95, name: "code_acknowledgement", kind: "message", T: CortexStepCodeAcknowledgement, oneof: "step" }, + { no: 96, name: "internal_search", kind: "message", T: CortexStepInternalSearch, oneof: "step" }, + { no: 97, name: "browser_subagent", kind: "message", T: CortexStepBrowserSubagent, oneof: "step" }, + { no: 102, name: "knowledge_generation", kind: "message", T: CortexStepKnowledgeGeneration, oneof: "step" }, + { no: 104, name: "generate_image", kind: "message", T: CortexStepGenerateImage, oneof: "step" }, + { no: 101, name: "browser_scroll", kind: "message", T: CortexStepBrowserScroll, oneof: "step" }, + { no: 109, name: "browser_resize_window", kind: "message", T: CortexStepBrowserResizeWindow, oneof: "step" }, + { no: 110, name: "browser_drag_pixel_to_pixel", kind: "message", T: CortexStepBrowserDragPixelToPixel, oneof: "step" }, + { no: 125, name: "browser_mouse_wheel", kind: "message", T: CortexStepBrowserMouseWheel, oneof: "step" }, + { no: 134, name: "browser_mouse_up", kind: "message", T: CortexStepBrowserMouseUp, oneof: "step" }, + { no: 135, name: "browser_mouse_down", kind: "message", T: CortexStepBrowserMouseDown, oneof: "step" }, + { no: 139, name: "browser_refresh_page", kind: "message", T: CortexStepBrowserRefreshPage, oneof: "step" }, + { no: 111, name: "conversation_history", kind: "message", T: CortexStepConversationHistory, oneof: "step" }, + { no: 112, name: "knowledge_artifacts", kind: "message", T: CortexStepKnowledgeArtifacts, oneof: "step" }, + { no: 113, name: "send_command_input", kind: "message", T: CortexStepSendCommandInput, oneof: "step" }, + { no: 114, name: "system_message", kind: "message", T: CortexStepSystemMessage, oneof: "step" }, + { no: 115, name: "wait", kind: "message", T: CortexStepWait, oneof: "step" }, + { no: 129, name: "ki_insertion", kind: "message", T: CortexStepKIInsertion, oneof: "step" }, + { no: 136, name: "workspace_api", kind: "message", T: CortexStepWorkspaceAPI, oneof: "step" }, + { no: 143, name: "invoke_subagent", kind: "message", T: CortexStepInvokeSubagent, oneof: "step" }, + { no: 106, name: "compile_applet", kind: "message", T: CortexStepCompileApplet, oneof: "step" }, + { no: 107, name: "install_applet_dependencies", kind: "message", T: CortexStepInstallAppletDependencies, oneof: "step" }, + { no: 108, name: "install_applet_package", kind: "message", T: CortexStepInstallAppletPackage, oneof: "step" }, + { no: 121, name: "set_up_firebase", kind: "message", T: CortexStepSetUpFirebase, oneof: "step" }, + { no: 123, name: "restart_dev_server", kind: "message", T: CortexStepRestartDevServer, oneof: "step" }, + { no: 124, name: "deploy_firebase", kind: "message", T: CortexStepDeployFirebase, oneof: "step" }, + { no: 126, name: "lint_applet", kind: "message", T: CortexStepLintApplet, oneof: "step" }, + { no: 127, name: "shell_exec", kind: "message", T: CortexStepShellExec, oneof: "step" }, + { no: 128, name: "define_new_env_variable", kind: "message", T: CortexStepDefineNewEnvVariable, oneof: "step" }, + { no: 142, name: "write_blob", kind: "message", T: CortexStepWriteBlob, oneof: "step" }, + { no: 116, name: "agency_tool_call", kind: "message", T: CortexStepAgencyToolCall, oneof: "step" }, + { no: 19, name: "user_input", kind: "message", T: CortexStepUserInput, oneof: "step" }, + { no: 20, name: "planner_response", kind: "message", T: CortexStepPlannerResponse, oneof: "step" }, + { no: 14, name: "view_file", kind: "message", T: CortexStepViewFile, oneof: "step" }, + { no: 15, name: "list_directory", kind: "message", T: CortexStepListDirectory, oneof: "step" }, + { no: 105, name: "delete_directory", kind: "message", T: CortexStepDeleteDirectory, oneof: "step" }, + { no: 30, name: "checkpoint", kind: "message", T: CortexStepCheckpoint, oneof: "step" }, + { no: 98, name: "file_change", kind: "message", T: CortexStepFileChange, oneof: "step" }, + { no: 100, name: "move", kind: "message", T: CortexStepMove, oneof: "step" }, + { no: 103, name: "ephemeral_message", kind: "message", T: CortexStepEphemeralMessage, oneof: "step" }, + { no: 7, name: "dummy", kind: "message", T: CortexStepDummy, oneof: "step" }, + { no: 8, name: "plan_input", kind: "message", T: CortexStepPlanInput, oneof: "step" }, + { no: 21, name: "file_breakdown", kind: "message", T: CortexStepFileBreakdown, oneof: "step" }, + { no: 23, name: "write_to_file", kind: "message", T: CortexStepWriteToFile, oneof: "step" }, + { no: 32, name: "propose_code", kind: "message", T: CortexStepProposeCode, oneof: "step" }, + { no: 35, name: "search_knowledge_base", kind: "message", T: CortexStepSearchKnowledgeBase, oneof: "step" }, + { no: 39, name: "lookup_knowledge_base", kind: "message", T: CortexStepLookupKnowledgeBase, oneof: "step" }, + { no: 48, name: "manager_feedback", kind: "message", T: CortexStepManagerFeedback, oneof: "step" }, + { no: 49, name: "tool_call_proposal", kind: "message", T: CortexStepToolCallProposal, oneof: "step" }, + { no: 50, name: "tool_call_choice", kind: "message", T: CortexStepToolCallChoice, oneof: "step" }, + { no: 52, name: "trajectory_choice", kind: "message", T: CortexStepTrajectoryChoice, oneof: "step" }, + { no: 59, name: "check_deploy_status", kind: "message", T: CortexStepCheckDeployStatus, oneof: "step" }, + { no: 60, name: "post_pr_review", kind: "message", T: CortexStepPostPrReview, oneof: "step" }, + { no: 65, name: "find_all_references", kind: "message", T: CortexStepFindAllReferences, oneof: "step" }, + { no: 66, name: "brain_update", kind: "message", T: CortexStepBrainUpdate, oneof: "step" }, + { no: 68, name: "run_extension_code", kind: "message", T: CortexStepRunExtensionCode, oneof: "step" }, + { no: 70, name: "add_annotation", kind: "message", T: CortexStepAddAnnotation, oneof: "step" }, + { no: 71, name: "proposal_feedback", kind: "message", T: CortexStepProposalFeedback, oneof: "step" }, + { no: 43, name: "retrieve_memory", kind: "message", T: CortexStepRetrieveMemory, oneof: "step" }, + { no: 38, name: "memory", kind: "message", T: CortexStepMemory, oneof: "step" }, + { no: 56, name: "requested_interaction", kind: "message", T: RequestedInteraction }, + { no: 69, name: "user_annotations", kind: "message", T: UserStepAnnotations }, + { no: 6, name: "subtrajectory", kind: "message", T: Trajectory } ]); static fromBinary(bytes, options) { return new _Step().fromBinary(bytes, options); @@ -67098,23 +58744,23 @@ var Step = class _Step extends Message { }; // trajectory_teleporter_tmp.ts -var DEFAULT_KEY = Buffer.from('safeCodeiumworldKeYsecretBalloon'); +var DEFAULT_KEY = Buffer.from("safeCodeiumworldKeYsecretBalloon"); var NONCE_SIZE = 12; var TAG_SIZE = 16; function decrypt(data, key = DEFAULT_KEY) { if (data.length < NONCE_SIZE + TAG_SIZE) { - throw new Error('Data too short'); + throw new Error("Data too short"); } const nonce = data.subarray(0, NONCE_SIZE); const tag = data.subarray(data.length - TAG_SIZE); const ciphertext = data.subarray(NONCE_SIZE, data.length - TAG_SIZE); - const decipher = crypto.createDecipheriv('aes-256-gcm', key, nonce); + const decipher = crypto.createDecipheriv("aes-256-gcm", key, nonce); decipher.setAuthTag(tag); return Buffer.concat([decipher.update(ciphertext), decipher.final()]); } function encrypt(data, key = DEFAULT_KEY) { const nonce = crypto.randomBytes(NONCE_SIZE); - const cipher = crypto.createCipheriv('aes-256-gcm', key, nonce); + const cipher = crypto.createCipheriv("aes-256-gcm", key, nonce); const ciphertext = Buffer.concat([cipher.update(data), cipher.final()]); const tag = cipher.getAuthTag(); return Buffer.concat([nonce, ciphertext, tag]); @@ -67134,7 +58780,12 @@ function jsonToTrajectory(json) { const pbData = Buffer.from(trajectory.toBinary()); return encrypt(pbData); } -export { decrypt, encrypt, jsonToTrajectory, trajectoryToJson }; +export { + decrypt, + encrypt, + jsonToTrajectory, + trajectoryToJson +}; /** * @license * Copyright 2026 Google LLC