@maxim_mazurok/gapi.client.meet-v2 0.1.20260310 → 0.1.20260315

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.
Files changed (2) hide show
  1. package/index.d.ts +80 -1
  2. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -9,7 +9,7 @@
9
9
  // This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
10
10
  // In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
11
11
  // Generated from: https://meet.googleapis.com/$discovery/rest?version=v2
12
- // Revision: 20260310
12
+ // Revision: 20260315
13
13
 
14
14
  /// <reference types="gapi.client" />
15
15
 
@@ -92,6 +92,12 @@ declare namespace gapi.client {
92
92
  /** List of recordings in one page. */
93
93
  recordings?: Recording[];
94
94
  }
95
+ interface ListSmartNotesResponse {
96
+ /** Token to be circulated back for further List call if current List doesn't include all the smart notes. Unset if all smart notes are returned. */
97
+ nextPageToken?: string;
98
+ /** List of smart notes in one page. */
99
+ smartNotes?: SmartNote[];
100
+ }
95
101
  interface ListTranscriptEntriesResponse {
96
102
  /** Token to be circulated back for further List call if current List doesn't include all the transcript entries. Unset if all entries are returned. */
97
103
  nextPageToken?: string;
@@ -162,6 +168,18 @@ declare namespace gapi.client {
162
168
  /** Output only. Unique ID for the user. Interoperable with Admin SDK API and People API. Format: `users/{user}` */
163
169
  user?: string;
164
170
  }
171
+ interface SmartNote {
172
+ /** Output only. The Google Doc destination where the smart notes are saved. */
173
+ docsDestination?: DocsDestination;
174
+ /** Output only. Timestamp when the smart notes stopped. */
175
+ endTime?: string;
176
+ /** Output only. Identifier. Resource name of the smart notes. Format: `conferenceRecords/{conference_record}/smartNotes/{smart_note}`, where `{smart_note}` is a 1:1 mapping to each unique smart notes session of the conference. */
177
+ name?: string;
178
+ /** Output only. Timestamp when the smart notes started. */
179
+ startTime?: string;
180
+ /** Output only. Current state. */
181
+ state?: string;
182
+ }
165
183
  interface SmartNotesConfig {
166
184
  /** Defines whether to automatically generate a summary and recap of the meeting for all invitees in the organization when someone with the privilege to enable smart notes joins the meeting. */
167
185
  autoSmartNotesGeneration?: string;
@@ -407,6 +425,66 @@ declare namespace gapi.client {
407
425
  uploadType?: string;
408
426
  }): Request<ListRecordingsResponse>;
409
427
  }
428
+ interface SmartNotesResource {
429
+ /** Gets smart notes by smart note ID. */
430
+ get(request?: {
431
+ /** V1 error format. */
432
+ '$.xgafv'?: string;
433
+ /** OAuth access token. */
434
+ access_token?: string;
435
+ /** Data format for response. */
436
+ alt?: string;
437
+ /** JSONP */
438
+ callback?: string;
439
+ /** Selector specifying which fields to include in a partial response. */
440
+ fields?: string;
441
+ /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
442
+ key?: string;
443
+ /** Required. Resource name of the smart note. Format: conferenceRecords/{conference_record}/smartNotes/{smart_note} */
444
+ name: string;
445
+ /** OAuth 2.0 token for the current user. */
446
+ oauth_token?: string;
447
+ /** Returns response with indentations and line breaks. */
448
+ prettyPrint?: boolean;
449
+ /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
450
+ quotaUser?: string;
451
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
452
+ upload_protocol?: string;
453
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
454
+ uploadType?: string;
455
+ }): Request<SmartNote>;
456
+ /** Lists the set of smart notes from the conference record. By default, ordered by start time and in ascending order. */
457
+ list(request?: {
458
+ /** V1 error format. */
459
+ '$.xgafv'?: string;
460
+ /** OAuth access token. */
461
+ access_token?: string;
462
+ /** Data format for response. */
463
+ alt?: string;
464
+ /** JSONP */
465
+ callback?: string;
466
+ /** Selector specifying which fields to include in a partial response. */
467
+ fields?: string;
468
+ /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
469
+ key?: string;
470
+ /** OAuth 2.0 token for the current user. */
471
+ oauth_token?: string;
472
+ /** Optional. Maximum number of smart notes to return. The service might return fewer than this value. If unspecified, at most 10 smart notes are returned. The maximum value is 100; values above 100 are coerced to 100. Maximum might change in the future. */
473
+ pageSize?: number;
474
+ /** Optional. Page token returned from previous List Call. */
475
+ pageToken?: string;
476
+ /** Required. Format: `conferenceRecords/{conference_record}` */
477
+ parent: string;
478
+ /** Returns response with indentations and line breaks. */
479
+ prettyPrint?: boolean;
480
+ /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
481
+ quotaUser?: string;
482
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
483
+ upload_protocol?: string;
484
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
485
+ uploadType?: string;
486
+ }): Request<ListSmartNotesResponse>;
487
+ }
410
488
  interface EntriesResource {
411
489
  /** Gets a `TranscriptEntry` resource by entry ID. Note: The transcript entries returned by the Google Meet API might not match the transcription found in the Google Docs transcript file. This can occur when 1) we have interleaved speakers within milliseconds, or 2) the Google Docs transcript file is modified after generation. */
412
490
  get(request?: {
@@ -589,6 +667,7 @@ declare namespace gapi.client {
589
667
  }): Request<ListConferenceRecordsResponse>;
590
668
  participants: ParticipantsResource;
591
669
  recordings: RecordingsResource;
670
+ smartNotes: SmartNotesResource;
592
671
  transcripts: TranscriptsResource;
593
672
  }
594
673
  interface SpacesResource {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maxim_mazurok/gapi.client.meet-v2",
3
- "version": "0.1.20260310",
3
+ "version": "0.1.20260315",
4
4
  "description": "TypeScript typings for Google Meet API v2",
5
5
  "repository": {
6
6
  "type": "git",