gogcli-mcp-sheets 2.21.1 → 2.22.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.claude-plugin/marketplace.json +2 -2
- package/.claude-plugin/plugin.json +1 -1
- package/dist/index.js +120 -9
- package/manifest.json +1 -1
- package/package.json +1 -1
- package/server.json +2 -2
- package/src/tools/sheets-extra.ts +1 -1
- package/tests/tools/sheets-extra.test.ts +32 -0
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
},
|
|
8
8
|
"metadata": {
|
|
9
9
|
"description": "Extended Google Sheets for Claude via gogcli — auth + full Sheets support",
|
|
10
|
-
"version": "2.
|
|
10
|
+
"version": "2.22.0"
|
|
11
11
|
},
|
|
12
12
|
"plugins": [
|
|
13
13
|
{
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"displayName": "gogcli (Sheets)",
|
|
16
16
|
"source": "./",
|
|
17
17
|
"description": "Extended Google Sheets for Claude via gogcli — auth + full Sheets support",
|
|
18
|
-
"version": "2.
|
|
18
|
+
"version": "2.22.0",
|
|
19
19
|
"author": {
|
|
20
20
|
"name": "Chris Hall"
|
|
21
21
|
},
|
package/dist/index.js
CHANGED
|
@@ -31430,6 +31430,13 @@ var TIMESTAMP_KEYS = /* @__PURE__ */ new Set([
|
|
|
31430
31430
|
// Calendar event start/end
|
|
31431
31431
|
"internalDate",
|
|
31432
31432
|
// Gmail, epoch milliseconds (authoritative)
|
|
31433
|
+
// gog >= 0.35.0 Gmail message AND thread listings. Already offset-bearing
|
|
31434
|
+
// (RFC3339 from internalDate), so it needs no offset repair — it is
|
|
31435
|
+
// allowlisted purely to gain a Display sibling, and to be re-rendered in
|
|
31436
|
+
// DISPLAY_TZ like every other instant. Separately sourced from the sibling
|
|
31437
|
+
// `date`, which is a naive re-format of the sender's Date header; the two may
|
|
31438
|
+
// legitimately disagree. See docs/timestamps.md.
|
|
31439
|
+
"internalDateIso",
|
|
31433
31440
|
"modifiedTime",
|
|
31434
31441
|
// Drive
|
|
31435
31442
|
"createdTime",
|
|
@@ -31666,8 +31673,8 @@ function formatOneAccountHealth(a, now) {
|
|
|
31666
31673
|
const age = ageInDays(a.created_at, now);
|
|
31667
31674
|
const ageStr = age === null ? "" : ` Authorized ${age.toFixed(1)} day(s) ago.`;
|
|
31668
31675
|
if (a.valid === false) {
|
|
31669
|
-
const
|
|
31670
|
-
return `\u2717 ${email3}: NEEDS RE-AUTH \u2014 ${
|
|
31676
|
+
const cause2 = INVALID_GRANT_PATTERN.test(a.error ?? "") ? 'refresh token expired or revoked \u2014 commonly the 7-day limit on OAuth consent screens still in "Testing" mode' : a.error?.trim() || "unknown error";
|
|
31677
|
+
return `\u2717 ${email3}: NEEDS RE-AUTH \u2014 ${cause2}.${ageStr} Re-authorize with gog_auth_add (browser) or gog_auth_add_url + gog_auth_add_complete (remote/headless).`;
|
|
31671
31678
|
}
|
|
31672
31679
|
if (a.valid === true) {
|
|
31673
31680
|
let line = `\u2713 ${email3}: token valid.${ageStr}`;
|
|
@@ -31709,7 +31716,7 @@ function registerAuthToolsWith(server, defaultServices) {
|
|
|
31709
31716
|
}
|
|
31710
31717
|
});
|
|
31711
31718
|
server.registerTool("gog_auth_status", {
|
|
31712
|
-
description: "Show gogcli auth
|
|
31719
|
+
description: "Show gogcli auth CONFIGURATION: keyring backend, credential files, and auth setup. Despite the name this is not a health check \u2014 it reads local setup and does not contact Google, so it says nothing about whether an account can still authenticate. Use gog_auth_health for that.",
|
|
31713
31720
|
annotations: { readOnlyHint: true },
|
|
31714
31721
|
inputSchema: {}
|
|
31715
31722
|
}, async () => {
|
|
@@ -31720,7 +31727,7 @@ function registerAuthToolsWith(server, defaultServices) {
|
|
|
31720
31727
|
}
|
|
31721
31728
|
});
|
|
31722
31729
|
server.registerTool("gog_auth_health", {
|
|
31723
|
-
description: 'Check the LIVE health of each stored Google account. Unlike gog_auth_status (which only reports keyring/config setup), this performs a real token refresh against Google, so it detects expired or revoked (invalid_grant) refresh tokens \u2014 the account-wide sign-out that blocks every service. Reports per account: whether the token is currently valid, the mapped cause when it is not, how long ago it was authorized, and a warning as it approaches the 7-day refresh-token limit that applies to OAuth apps whose consent screen is still in "Testing" mode. Run it proactively to re-authorize on your own schedule instead of mid-task.',
|
|
31730
|
+
description: 'Check the LIVE health of each stored Google account. Unlike gog_auth_status (which only reports keyring/config setup), this performs a real token refresh against Google, so it detects expired or revoked (invalid_grant) refresh tokens \u2014 the account-wide sign-out that blocks every service. Reports per account: whether the token is currently valid, the mapped cause when it is not, how long ago it was authorized, and a warning as it approaches the 7-day refresh-token limit that applies to OAuth apps whose consent screen is still in "Testing" mode. Run it proactively to re-authorize on your own schedule instead of mid-task. On the hosted connector this is the ONLY check that measures Google: a connector showing "connected" or "refreshed" has verified the connector key that reaches the gog machine, and nothing else \u2014 the Google credential lives on that machine and can be dead while the connection looks perfectly healthy.',
|
|
31724
31731
|
annotations: { readOnlyHint: true },
|
|
31725
31732
|
inputSchema: {}
|
|
31726
31733
|
}, async () => {
|
|
@@ -31986,14 +31993,29 @@ function registerSheetsTools(server) {
|
|
|
31986
31993
|
}
|
|
31987
31994
|
|
|
31988
31995
|
// ../gogcli-mcp/src/server.ts
|
|
31989
|
-
var VERSION = true ? "2.
|
|
31996
|
+
var VERSION = true ? "2.22.0" : "0.0.0";
|
|
31990
31997
|
|
|
31991
31998
|
// ../gogcli-mcp/src/auth-log.ts
|
|
31992
31999
|
var FAILURES = /* @__PURE__ */ new Set([
|
|
31993
32000
|
"token.mint-failed",
|
|
31994
32001
|
"grant.dead",
|
|
31995
32002
|
"replay.failed",
|
|
31996
|
-
"runner.auth-failed"
|
|
32003
|
+
"runner.auth-failed",
|
|
32004
|
+
"connect.key-rejected",
|
|
32005
|
+
// An enrolment that could not proceed is a failure even though nobody is at
|
|
32006
|
+
// fault: it is the only trace a half-enrolled connector leaves behind, and
|
|
32007
|
+
// the absence of exactly this record is why DEFECT 4 could not be explained.
|
|
32008
|
+
"connect.runner-unreachable",
|
|
32009
|
+
"connect.google-unhealthy",
|
|
32010
|
+
"refusal.google-unhealthy",
|
|
32011
|
+
// The loudest record on this branch, and the only one that means "we cannot
|
|
32012
|
+
// explain this". Google refused a real call while a live check of the same
|
|
32013
|
+
// credential, taken seconds later, succeeded — so neither the 7-day cliff nor
|
|
32014
|
+
// a revoked grant accounts for it. It is filed as a failure precisely because
|
|
32015
|
+
// it is the record nobody may scroll past: it is the only evidence that could
|
|
32016
|
+
// ever justify building something on the hosted path, and its absence over
|
|
32017
|
+
// time is what retires that theory for good.
|
|
32018
|
+
"refusal.google-ok"
|
|
31997
32019
|
]);
|
|
31998
32020
|
var PREFIX = "gog-auth ";
|
|
31999
32021
|
var TAG_CHARS = 12;
|
|
@@ -32140,10 +32162,39 @@ async function exchange(refreshToken, clientId, clientSecret) {
|
|
|
32140
32162
|
return { accessToken: body.access_token, expiresAt: Date.now() + expiresInMs };
|
|
32141
32163
|
}
|
|
32142
32164
|
|
|
32165
|
+
// ../gogcli-mcp/src/google-probe.ts
|
|
32166
|
+
var bool = (value) => typeof value === "boolean" ? value : void 0;
|
|
32167
|
+
var cause = (value) => typeof value === "string" && value.length > 0 ? value : void 0;
|
|
32168
|
+
function readGoogleProbe(body) {
|
|
32169
|
+
const record2 = typeof body === "object" && body !== null ? body : {};
|
|
32170
|
+
const measured = bool(record2.measured);
|
|
32171
|
+
const reported = cause(record2.error);
|
|
32172
|
+
if (measured === false) {
|
|
32173
|
+
return {
|
|
32174
|
+
kind: "unmeasured",
|
|
32175
|
+
reason: reported ?? "the runner reported it could not measure the Google layer"
|
|
32176
|
+
};
|
|
32177
|
+
}
|
|
32178
|
+
if (measured === true) {
|
|
32179
|
+
if (bool(record2.ok) === true) return { kind: "ok" };
|
|
32180
|
+
return {
|
|
32181
|
+
kind: "unhealthy",
|
|
32182
|
+
reason: reported ?? "the runner reported the Google layer unhealthy with no cause"
|
|
32183
|
+
};
|
|
32184
|
+
}
|
|
32185
|
+
return {
|
|
32186
|
+
kind: "unmeasured",
|
|
32187
|
+
reason: reported ? `the runner did not report whether it measured the Google layer; it said: ${reported}` : "the runner did not report whether it measured the Google layer"
|
|
32188
|
+
};
|
|
32189
|
+
}
|
|
32190
|
+
|
|
32143
32191
|
// ../gogcli-mcp/src/connector-runtime.ts
|
|
32144
32192
|
var DEFAULT_TIMEOUT_MS = 3e4;
|
|
32145
32193
|
var DEADLINE_GRACE_MS = 5e3;
|
|
32146
32194
|
var MIN_REPLAY_BUDGET_MS = 1e3;
|
|
32195
|
+
var REFUSAL_PROBE_TIMEOUT_MS = 4e3;
|
|
32196
|
+
var MIN_PROBE_BUDGET_MS = 1e3;
|
|
32197
|
+
var PROBE_INTERVAL_MS = 6e4;
|
|
32147
32198
|
var RUNNER_GOG_FAILED = 422;
|
|
32148
32199
|
var RUNNER_DRAINING = 503;
|
|
32149
32200
|
var RUNNER_BAD_REQUEST = 400;
|
|
@@ -32190,7 +32241,7 @@ function gogTarget(args) {
|
|
|
32190
32241
|
}
|
|
32191
32242
|
return { service };
|
|
32192
32243
|
}
|
|
32193
|
-
async function remintAfterGoogleRejection(err, used, args, readAccessToken, deadlineAt) {
|
|
32244
|
+
async function remintAfterGoogleRejection(err, used, args, readAccessToken, deadlineAt, probeGoogle) {
|
|
32194
32245
|
if (!(err instanceof GogFailedError)) return void 0;
|
|
32195
32246
|
const grantDead = REFRESH_TOKEN_DEAD_PATTERN.test(err.stderr);
|
|
32196
32247
|
if (!grantDead && !GOOGLE_TOKEN_REJECTED_PATTERN.test(err.stderr)) return void 0;
|
|
@@ -32205,6 +32256,7 @@ async function remintAfterGoogleRejection(err, used, args, readAccessToken, dead
|
|
|
32205
32256
|
return void 0;
|
|
32206
32257
|
}
|
|
32207
32258
|
if (!used) {
|
|
32259
|
+
await probeGoogle(where);
|
|
32208
32260
|
logAuthTransition("replay.declined", {
|
|
32209
32261
|
...where,
|
|
32210
32262
|
reason: "no access token was supplied with the call, so gog acted as the backend volume\u2019s own identity"
|
|
@@ -32252,6 +32304,64 @@ async function remintAfterGoogleRejection(err, used, args, readAccessToken, dead
|
|
|
32252
32304
|
return { token: fresh, budgetMs, invalidate: readAccessToken.invalidate, ...where };
|
|
32253
32305
|
}
|
|
32254
32306
|
function makeFlyExecutor(endpoint, key, readAccessToken) {
|
|
32307
|
+
let lastProbeAt = Number.NEGATIVE_INFINITY;
|
|
32308
|
+
const probeGoogleAfterRefusal = async (where, deadlineAt) => {
|
|
32309
|
+
const record2 = { ...where, endpoint };
|
|
32310
|
+
const now = Date.now();
|
|
32311
|
+
const remainingMs = deadlineAt - now;
|
|
32312
|
+
if (remainingMs < MIN_PROBE_BUDGET_MS) {
|
|
32313
|
+
logAuthTransition("refusal.google-unmeasured", {
|
|
32314
|
+
...record2,
|
|
32315
|
+
reason: `only ${remainingMs}ms of the call\u2019s deadline remained, so the Google layer was not measured rather than delay the caller\u2019s own error`
|
|
32316
|
+
});
|
|
32317
|
+
return;
|
|
32318
|
+
}
|
|
32319
|
+
if (now - lastProbeAt < PROBE_INTERVAL_MS) {
|
|
32320
|
+
logAuthTransition("refusal.google-unmeasured", {
|
|
32321
|
+
...record2,
|
|
32322
|
+
// "attempted", not "measured". `lastProbeAt` is stamped before the
|
|
32323
|
+
// fetch and is deliberately NOT reset when the probe comes back with no
|
|
32324
|
+
// verdict (a 404 from a runner too old to have the endpoint, a timeout,
|
|
32325
|
+
// a dead socket) — the backend cost this throttle exists to bound was
|
|
32326
|
+
// paid either way, and resetting it would let a retry loop storm a
|
|
32327
|
+
// runner that is already unwell. So the timestamp stays and the sentence
|
|
32328
|
+
// has to be the true one: on this branch a log line may not assert a
|
|
32329
|
+
// measurement that never happened, and the previous probe may well have
|
|
32330
|
+
// measured nothing at all.
|
|
32331
|
+
reason: "a Google probe was attempted recently, so another was not sent: this probe spawns gog on the backend and takes the keyring\u2019s exclusive lock"
|
|
32332
|
+
});
|
|
32333
|
+
return;
|
|
32334
|
+
}
|
|
32335
|
+
lastProbeAt = now;
|
|
32336
|
+
let event;
|
|
32337
|
+
let reason;
|
|
32338
|
+
try {
|
|
32339
|
+
const res = await fetch(`${endpoint}/health/google`, {
|
|
32340
|
+
headers: { Authorization: `Bearer ${key}` },
|
|
32341
|
+
// Never more than the probe's own budget, never more than the call has
|
|
32342
|
+
// left. `Math.min` rather than a plain constant because the second
|
|
32343
|
+
// bound is the caller's, and it outranks ours.
|
|
32344
|
+
signal: AbortSignal.timeout(Math.min(REFUSAL_PROBE_TIMEOUT_MS, remainingMs))
|
|
32345
|
+
});
|
|
32346
|
+
if (!res.ok) {
|
|
32347
|
+
event = "refusal.google-unmeasured";
|
|
32348
|
+
reason = `the runner did not answer the Google probe (HTTP ${res.status})`;
|
|
32349
|
+
} else {
|
|
32350
|
+
const verdict = readGoogleProbe(await res.json());
|
|
32351
|
+
if (verdict.kind === "ok") {
|
|
32352
|
+
event = "refusal.google-ok";
|
|
32353
|
+
reason = "Google refused this call, yet a live token check on the same volume succeeded \u2014 so a dead or expired refresh token does not explain this refusal";
|
|
32354
|
+
} else {
|
|
32355
|
+
event = verdict.kind === "unhealthy" ? "refusal.google-unhealthy" : "refusal.google-unmeasured";
|
|
32356
|
+
reason = verdict.reason;
|
|
32357
|
+
}
|
|
32358
|
+
}
|
|
32359
|
+
} catch (err) {
|
|
32360
|
+
event = "refusal.google-unmeasured";
|
|
32361
|
+
reason = err instanceof Error ? err.message : String(err);
|
|
32362
|
+
}
|
|
32363
|
+
logAuthTransition(event, { ...record2, reason });
|
|
32364
|
+
};
|
|
32255
32365
|
return async (args, opts) => {
|
|
32256
32366
|
const deadlineMs = (opts?.timeout ?? DEFAULT_TIMEOUT_MS) + DEADLINE_GRACE_MS;
|
|
32257
32367
|
const accessToken = await readAccessToken?.();
|
|
@@ -32264,7 +32374,8 @@ function makeFlyExecutor(endpoint, key, readAccessToken) {
|
|
|
32264
32374
|
accessToken,
|
|
32265
32375
|
args,
|
|
32266
32376
|
readAccessToken,
|
|
32267
|
-
deadlineAt
|
|
32377
|
+
deadlineAt,
|
|
32378
|
+
(where2) => probeGoogleAfterRefusal(where2, deadlineAt)
|
|
32268
32379
|
);
|
|
32269
32380
|
if (replay === void 0) throw err;
|
|
32270
32381
|
const where = { credential: replay.credential, service: replay.service, endpoint };
|
|
@@ -32773,7 +32884,7 @@ ${resultText(result) ?? ""}` }] };
|
|
|
32773
32884
|
url: external_exports.string().optional().describe("Hyperlink URL for single-link mode"),
|
|
32774
32885
|
text: external_exports.string().optional().describe("Display text for single-link mode (defaults to the URL when omitted)"),
|
|
32775
32886
|
runsJson: external_exports.string().optional().describe('Multi-link cell: JSON array of runs, e.g. [{"text":"Act A","uri":"https://a"},{"text":" / "},{"text":"Act B","uri":"https://b"}]. A run with an empty uri is plain text.'),
|
|
32776
|
-
cellsJson: external_exports.string().optional().describe("Batch: JSON array of {cell,url,text} or {cell,runs:[{text,uri}]} objects, written in one request."),
|
|
32887
|
+
cellsJson: external_exports.string().optional().describe("Batch: JSON array of {cell,url,text} or {cell,runs:[{text,uri}]} objects, written in one request. Inline JSON or @file (a path gog reads itself \u2014 cheaper than inlining a large batch). gog also accepts @- for stdin, but this server never writes to gog's stdin, so @- would hang until the call times out."),
|
|
32777
32888
|
account: accountParam
|
|
32778
32889
|
}
|
|
32779
32890
|
}, async ({ spreadsheetId, cell, url: url2, text, runsJson, cellsJson, account }) => {
|
package/manifest.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"manifest_version": "0.3",
|
|
4
4
|
"name": "gogcli-mcp-sheets",
|
|
5
5
|
"display_name": "gogcli (Sheets)",
|
|
6
|
-
"version": "2.
|
|
6
|
+
"version": "2.22.0",
|
|
7
7
|
"description": "Extended Google Sheets for Claude via gogcli — auth + full Sheets support",
|
|
8
8
|
"author": {
|
|
9
9
|
"name": "Chris Hall",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gogcli-mcp-sheets",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.22.0",
|
|
4
4
|
"mcpName": "io.github.chrischall/gogcli-mcp-sheets",
|
|
5
5
|
"description": "Extended Google Sheets MCP server via gogcli — all base tools plus full Sheets support",
|
|
6
6
|
"author": "Claude Code (AI) <https://www.anthropic.com/claude>",
|
package/server.json
CHANGED
|
@@ -7,12 +7,12 @@
|
|
|
7
7
|
"source": "github",
|
|
8
8
|
"subfolder": "packages/gogcli-mcp-sheets"
|
|
9
9
|
},
|
|
10
|
-
"version": "2.
|
|
10
|
+
"version": "2.22.0",
|
|
11
11
|
"packages": [
|
|
12
12
|
{
|
|
13
13
|
"registryType": "npm",
|
|
14
14
|
"identifier": "gogcli-mcp-sheets",
|
|
15
|
-
"version": "2.
|
|
15
|
+
"version": "2.22.0",
|
|
16
16
|
"transport": {
|
|
17
17
|
"type": "stdio"
|
|
18
18
|
},
|
|
@@ -471,7 +471,7 @@ export function registerExtraSheetsTools(server: McpServer): void {
|
|
|
471
471
|
url: z.string().optional().describe('Hyperlink URL for single-link mode'),
|
|
472
472
|
text: z.string().optional().describe('Display text for single-link mode (defaults to the URL when omitted)'),
|
|
473
473
|
runsJson: z.string().optional().describe('Multi-link cell: JSON array of runs, e.g. [{"text":"Act A","uri":"https://a"},{"text":" / "},{"text":"Act B","uri":"https://b"}]. A run with an empty uri is plain text.'),
|
|
474
|
-
cellsJson: z.string().optional().describe('Batch: JSON array of {cell,url,text} or {cell,runs:[{text,uri}]} objects, written in one request.'),
|
|
474
|
+
cellsJson: z.string().optional().describe('Batch: JSON array of {cell,url,text} or {cell,runs:[{text,uri}]} objects, written in one request. Inline JSON or @file (a path gog reads itself — cheaper than inlining a large batch). gog also accepts @- for stdin, but this server never writes to gog\'s stdin, so @- would hang until the call times out.'),
|
|
475
475
|
account: accountParam,
|
|
476
476
|
},
|
|
477
477
|
}, async ({ spreadsheetId, cell, url, text, runsJson, cellsJson, account }) => {
|
|
@@ -753,6 +753,38 @@ describe('gog_sheets_links_set', () => {
|
|
|
753
753
|
{ account: undefined },
|
|
754
754
|
);
|
|
755
755
|
});
|
|
756
|
+
|
|
757
|
+
// gog 0.35.0 (openclaw/gogcli#941) routes --cells-json through
|
|
758
|
+
// resolveInlineOrFileBytes, so it now also accepts @file and @- (stdin).
|
|
759
|
+
// The value is already passed through verbatim, so @file needs no code
|
|
760
|
+
// change — only the param description, which currently tells the model it
|
|
761
|
+
// must inline the whole array.
|
|
762
|
+
it('forwards an @file --cells-json reference verbatim', async () => {
|
|
763
|
+
vi.mocked(lib.runOrDiagnose).mockResolvedValue(rawTextResult('{}'));
|
|
764
|
+
const harness = await setupHandlers();
|
|
765
|
+
await harness.callTool('gog_sheets_links_set', { spreadsheetId: 'sid', cellsJson: '@/tmp/cells.json' });
|
|
766
|
+
expect(lib.runOrDiagnose).toHaveBeenCalledWith(
|
|
767
|
+
['sheets', 'links', 'set', 'sid', '--cells-json=@/tmp/cells.json'],
|
|
768
|
+
{ account: undefined },
|
|
769
|
+
);
|
|
770
|
+
});
|
|
771
|
+
|
|
772
|
+
// runner.ts spawns gog without ever writing to or closing the child's stdin,
|
|
773
|
+
// so `@-` blocks until the 30 s timeout rather than reading anything. The
|
|
774
|
+
// description must steer callers away from it.
|
|
775
|
+
it('cellsJson description documents @file and rules out @- stdin', async () => {
|
|
776
|
+
const { McpServer } = await import('@modelcontextprotocol/sdk/server/mcp.js');
|
|
777
|
+
const server = new McpServer({ name: 'test', version: '0.0.0' });
|
|
778
|
+
const configs = new Map<string, { inputSchema?: Record<string, { description?: string }> }>();
|
|
779
|
+
vi.spyOn(server, 'registerTool').mockImplementation((name, config) => {
|
|
780
|
+
configs.set(name, config as { inputSchema?: Record<string, { description?: string }> });
|
|
781
|
+
return undefined as never;
|
|
782
|
+
});
|
|
783
|
+
registerExtraSheetsTools(server);
|
|
784
|
+
const desc = configs.get('gog_sheets_links_set')?.inputSchema?.cellsJson?.description ?? '';
|
|
785
|
+
expect(desc).toMatch(/@file/);
|
|
786
|
+
expect(desc).toMatch(/@-/);
|
|
787
|
+
});
|
|
756
788
|
});
|
|
757
789
|
|
|
758
790
|
// 18. named-ranges list
|