@maxim_mazurok/gapi.client.appengine-v1 0.0.20230831 → 0.0.20230918
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 +4 -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://appengine.googleapis.com/$discovery/rest?version=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20230918
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -955,6 +955,9 @@ declare namespace gapi.client {
|
|
|
955
955
|
string;
|
|
956
956
|
}
|
|
957
957
|
interface Service {
|
|
958
|
+
/** Additional Google Generated Customer Metadata, this field won't be provided by default and can be requested by setting the IncludeExtraData field in GetServiceRequest */
|
|
959
|
+
generatedCustomerMetadata?:
|
|
960
|
+
{ [P in string]: any };
|
|
958
961
|
/** Relative name of the service within the application. Example: default.@OutputOnly */
|
|
959
962
|
id?:
|
|
960
963
|
string;
|
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: 20230918
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|
|
@@ -370,6 +370,9 @@ gapi.load('client', async () => {
|
|
|
370
370
|
servicesId: "Test string",
|
|
371
371
|
updateMask: "Test string",
|
|
372
372
|
}, {
|
|
373
|
+
generatedCustomerMetadata: {
|
|
374
|
+
A: 42
|
|
375
|
+
},
|
|
373
376
|
id: "Test string",
|
|
374
377
|
labels: {
|
|
375
378
|
A: "Test string"
|