@maxim_mazurok/gapi.client.calendar-v3 0.0.20230519 → 0.0.20230609
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 +4 -1
- package/package.json +1 -1
- package/tests.ts +5 -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://calendar-json.googleapis.com/$discovery/rest?version=v3
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20230609
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -941,6 +941,9 @@ declare namespace gapi.client {
|
|
|
941
941
|
label?:
|
|
942
942
|
string;
|
|
943
943
|
};
|
|
944
|
+
/** Indicates what kind of location this is. Any details will be specified in a sub-field of the specified name (but which may be missing if empty). Any other fields will be ignored. */
|
|
945
|
+
type?:
|
|
946
|
+
string;
|
|
944
947
|
}
|
|
945
948
|
interface FreeBusyCalendar {
|
|
946
949
|
/** List of time ranges during which this calendar should be regarded as busy. */
|
package/package.json
CHANGED
package/tests.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
4
4
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
5
5
|
|
|
6
|
-
// Revision:
|
|
6
|
+
// Revision: 20230609
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|
|
@@ -548,6 +548,7 @@ gapi.load('client', async () => {
|
|
|
548
548
|
floorSectionId: "Test string",
|
|
549
549
|
label: "Test string",
|
|
550
550
|
},
|
|
551
|
+
type: "Test string",
|
|
551
552
|
},
|
|
552
553
|
});
|
|
553
554
|
/** Creates an event. */
|
|
@@ -727,6 +728,7 @@ gapi.load('client', async () => {
|
|
|
727
728
|
floorSectionId: "Test string",
|
|
728
729
|
label: "Test string",
|
|
729
730
|
},
|
|
731
|
+
type: "Test string",
|
|
730
732
|
},
|
|
731
733
|
});
|
|
732
734
|
/** Returns instances of the specified recurring event. */
|
|
@@ -952,6 +954,7 @@ gapi.load('client', async () => {
|
|
|
952
954
|
floorSectionId: "Test string",
|
|
953
955
|
label: "Test string",
|
|
954
956
|
},
|
|
957
|
+
type: "Test string",
|
|
955
958
|
},
|
|
956
959
|
});
|
|
957
960
|
/** Creates an event based on a simple text string. */
|
|
@@ -1140,6 +1143,7 @@ gapi.load('client', async () => {
|
|
|
1140
1143
|
floorSectionId: "Test string",
|
|
1141
1144
|
label: "Test string",
|
|
1142
1145
|
},
|
|
1146
|
+
type: "Test string",
|
|
1143
1147
|
},
|
|
1144
1148
|
});
|
|
1145
1149
|
/** Watch for changes to Events resources. */
|