@maxim_mazurok/gapi.client.classroom-v1 0.0.20250521 → 0.0.20250526
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/index.d.ts +21 -1
- 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://classroom.googleapis.com/$discovery/rest?version=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20250526
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -335,6 +335,14 @@ declare namespace gapi.client {
|
|
|
335
335
|
/** Title of the Form. Read-only. */
|
|
336
336
|
title?: string;
|
|
337
337
|
}
|
|
338
|
+
interface GeminiGem {
|
|
339
|
+
/** Gems resource id. */
|
|
340
|
+
id?: string;
|
|
341
|
+
/** Title of the Gem. Read-only. */
|
|
342
|
+
title?: string;
|
|
343
|
+
/** URL that can be used to access the Gem. Read-only. */
|
|
344
|
+
url?: string;
|
|
345
|
+
}
|
|
338
346
|
interface GlobalPermission {
|
|
339
347
|
/** Permission value. */
|
|
340
348
|
permission?: string;
|
|
@@ -528,8 +536,12 @@ declare namespace gapi.client {
|
|
|
528
536
|
driveFile?: SharedDriveFile;
|
|
529
537
|
/** Google Forms material. Read-only. */
|
|
530
538
|
form?: Form;
|
|
539
|
+
/** Gemini Gem material. Read-only. */
|
|
540
|
+
gem?: GeminiGem;
|
|
531
541
|
/** Link material. On creation, this is upgraded to a more appropriate type if possible, and this is reflected in the response. */
|
|
532
542
|
link?: Link;
|
|
543
|
+
/** NotebookLM Notebook material. Read-only. */
|
|
544
|
+
notebook?: NotebookLmNotebook;
|
|
533
545
|
/** YouTube video material. */
|
|
534
546
|
youtubeVideo?: YouTubeVideo;
|
|
535
547
|
}
|
|
@@ -571,6 +583,14 @@ declare namespace gapi.client {
|
|
|
571
583
|
/** The user's first name. Read-only. */
|
|
572
584
|
givenName?: string;
|
|
573
585
|
}
|
|
586
|
+
interface NotebookLmNotebook {
|
|
587
|
+
/** Notebook resource id. */
|
|
588
|
+
id?: string;
|
|
589
|
+
/** Title of the Notebook. Read-only. */
|
|
590
|
+
title?: string;
|
|
591
|
+
/** URL that can be used to access the Notebook. Read-only. */
|
|
592
|
+
url?: string;
|
|
593
|
+
}
|
|
574
594
|
interface ReclaimStudentSubmissionRequest {}
|
|
575
595
|
interface Registration {
|
|
576
596
|
/** The Cloud Pub/Sub topic that notifications are to be sent to. */
|