惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Apple Machine Learning Research
Apple Machine Learning Research
aimingoo的专栏
aimingoo的专栏
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 聂微东
Engineering at Meta
Engineering at Meta
N
Netflix TechBlog - Medium
Blog — PlanetScale
Blog — PlanetScale
大猫的无限游戏
大猫的无限游戏
Vercel News
Vercel News
D
DataBreaches.Net
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
WordPress大学
WordPress大学
L
LangChain Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
F
Fortinet All Blogs
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
J
Java Code Geeks
Recent Announcements
Recent Announcements
Jina AI
Jina AI
G
Google Developers Blog
腾讯CDC
博客园_首页
博客园 - 【当耐特】

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
refactor: trim google meet helper exports · openclaw/open...
steipete · 2026-05-01 · via Recent Commits to openclaw:main

@@ -10,15 +10,15 @@ const GOOGLE_MEET_MEDIA_SCOPE =

1010

"https://www.googleapis.com/auth/meetings.conference.media.readonly";

1111

const GOOGLE_MEET_SPACE_SCOPE = "https://www.googleapis.com/auth/meetings.space.readonly";

121213-

export type GoogleMeetSpace = {

13+

type GoogleMeetSpace = {

1414

name: string;

1515

meetingCode?: string;

1616

meetingUri?: string;

1717

activeConference?: Record<string, unknown>;

1818

config?: Record<string, unknown>;

1919

};

202021-

export type GoogleMeetPreflightReport = {

21+

type GoogleMeetPreflightReport = {

2222

input: string;

2323

resolvedSpaceName: string;

2424

meetingCode?: string;

@@ -29,20 +29,20 @@ export type GoogleMeetPreflightReport = {

2929

blockers: string[];

3030

};

313132-

export type GoogleMeetCreateSpaceResult = {

32+

type GoogleMeetCreateSpaceResult = {

3333

space: GoogleMeetSpace;

3434

meetingUri: string;

3535

};

363637-

export type GoogleMeetConferenceRecord = {

37+

type GoogleMeetConferenceRecord = {

3838

name: string;

3939

space?: string;

4040

startTime?: string;

4141

endTime?: string;

4242

expireTime?: string;

4343

};

444445-

export type GoogleMeetParticipant = {

45+

type GoogleMeetParticipant = {

4646

name: string;

4747

earliestStartTime?: string;

4848

latestEndTime?: string;

@@ -58,20 +58,20 @@ export type GoogleMeetParticipant = {

5858

};

5959

};

606061-

export type GoogleMeetParticipantSession = {

61+

type GoogleMeetParticipantSession = {

6262

name: string;

6363

startTime?: string;

6464

endTime?: string;

6565

};

666667-

export type GoogleMeetRecording = {

67+

type GoogleMeetRecording = {

6868

name: string;

6969

startTime?: string;

7070

endTime?: string;

7171

driveDestination?: Record<string, unknown>;

7272

};

737374-

export type GoogleMeetTranscript = {

74+

type GoogleMeetTranscript = {

7575

name: string;

7676

startTime?: string;

7777

endTime?: string;

@@ -80,7 +80,7 @@ export type GoogleMeetTranscript = {

8080

documentTextError?: string;

8181

};

828283-

export type GoogleMeetTranscriptEntry = {

83+

type GoogleMeetTranscriptEntry = {

8484

name: string;

8585

participant?: string;

8686

text?: string;

@@ -89,13 +89,13 @@ export type GoogleMeetTranscriptEntry = {

8989

endTime?: string;

9090

};

919192-

export type GoogleMeetTranscriptEntries = {

92+

type GoogleMeetTranscriptEntries = {

9393

transcript: string;

9494

entries: GoogleMeetTranscriptEntry[];

9595

entriesError?: string;

9696

};

979798-

export type GoogleMeetSmartNote = {

98+

type GoogleMeetSmartNote = {

9999

name: string;

100100

startTime?: string;

101101

endTime?: string;

@@ -104,7 +104,7 @@ export type GoogleMeetSmartNote = {

104104

documentTextError?: string;

105105

};

106106107-

export type GoogleMeetArtifactsEntry = {

107+

type GoogleMeetArtifactsEntry = {

108108

conferenceRecord: GoogleMeetConferenceRecord;

109109

participants: GoogleMeetParticipant[];

110110

recordings: GoogleMeetRecording[];

@@ -127,7 +127,7 @@ export type GoogleMeetLatestConferenceRecordResult = {

127127

conferenceRecord?: GoogleMeetConferenceRecord;

128128

};

129129130-

export type GoogleMeetAttendanceRow = {

130+

type GoogleMeetAttendanceRow = {

131131

conferenceRecord: string;

132132

participant: string;

133133

participants?: string[];

@@ -392,7 +392,7 @@ export async function createGoogleMeetSpace(params: {

392392

}

393393

}

394394395-

export async function fetchGoogleMeetConferenceRecord(params: {

395+

async function fetchGoogleMeetConferenceRecord(params: {

396396

accessToken: string;

397397

conferenceRecord: string;

398398

}): Promise<GoogleMeetConferenceRecord> {

@@ -409,7 +409,7 @@ export async function fetchGoogleMeetConferenceRecord(params: {

409409

return payload;

410410

}

411411412-

export async function listGoogleMeetConferenceRecords(params: {

412+

async function listGoogleMeetConferenceRecords(params: {

413413

accessToken: string;

414414

meeting?: string;

415415

pageSize?: number;

@@ -453,7 +453,7 @@ export async function fetchLatestGoogleMeetConferenceRecord(params: {

453453

};

454454

}

455455456-

export async function listGoogleMeetParticipants(params: {

456+

async function listGoogleMeetParticipants(params: {

457457

accessToken: string;

458458

conferenceRecord: string;

459459

pageSize?: number;

@@ -469,7 +469,7 @@ export async function listGoogleMeetParticipants(params: {

469469

});

470470

}

471471472-

export async function listGoogleMeetParticipantSessions(params: {

472+

async function listGoogleMeetParticipantSessions(params: {

473473

accessToken: string;

474474

participant: string;

475475

pageSize?: number;

@@ -484,7 +484,7 @@ export async function listGoogleMeetParticipantSessions(params: {

484484

});

485485

}

486486487-

export async function listGoogleMeetRecordings(params: {

487+

async function listGoogleMeetRecordings(params: {

488488

accessToken: string;

489489

conferenceRecord: string;

490490

pageSize?: number;

@@ -500,7 +500,7 @@ export async function listGoogleMeetRecordings(params: {

500500

});

501501

}

502502503-

export async function listGoogleMeetTranscripts(params: {

503+

async function listGoogleMeetTranscripts(params: {

504504

accessToken: string;

505505

conferenceRecord: string;

506506

pageSize?: number;

@@ -516,7 +516,7 @@ export async function listGoogleMeetTranscripts(params: {

516516

});

517517

}

518518519-

export async function listGoogleMeetTranscriptEntries(params: {

519+

async function listGoogleMeetTranscriptEntries(params: {

520520

accessToken: string;

521521

transcript: string;

522522

pageSize?: number;

@@ -531,7 +531,7 @@ export async function listGoogleMeetTranscriptEntries(params: {

531531

});

532532

}

533533534-

export async function listGoogleMeetSmartNotes(params: {

534+

async function listGoogleMeetSmartNotes(params: {

535535

accessToken: string;

536536

conferenceRecord: string;

537537

pageSize?: number;