@maxim_mazurok/gapi.client.appengine-v1 0.0.20231016 → 0.0.20231024
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 +7 -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: 20231024
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -1169,6 +1169,9 @@ declare namespace gapi.client {
|
|
|
1169
1169
|
/** Settings for App Engine flexible runtimes. */
|
|
1170
1170
|
flexibleRuntimeSettings?:
|
|
1171
1171
|
FlexibleRuntimeSettings;
|
|
1172
|
+
/** Additional Google Generated Customer Metadata, this field won't be provided by default and can be requested by setting the IncludeExtraData field in GetVersionRequest */
|
|
1173
|
+
generatedCustomerMetadata?:
|
|
1174
|
+
{ [P in string]: any };
|
|
1172
1175
|
/**
|
|
1173
1176
|
* An ordered list of URL-matching patterns that should be applied to incoming requests. The first matching URL handles the request and other request handlers are not attempted.Only
|
|
1174
1177
|
* returned in GET requests if view=FULL is set.
|
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: 20231024
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|
|
@@ -495,6 +495,9 @@ gapi.load('client', async () => {
|
|
|
495
495
|
operatingSystem: "Test string",
|
|
496
496
|
runtimeVersion: "Test string",
|
|
497
497
|
},
|
|
498
|
+
generatedCustomerMetadata: {
|
|
499
|
+
A: 42
|
|
500
|
+
},
|
|
498
501
|
handlers: [
|
|
499
502
|
{
|
|
500
503
|
apiEndpoint: {
|
|
@@ -753,6 +756,9 @@ gapi.load('client', async () => {
|
|
|
753
756
|
operatingSystem: "Test string",
|
|
754
757
|
runtimeVersion: "Test string",
|
|
755
758
|
},
|
|
759
|
+
generatedCustomerMetadata: {
|
|
760
|
+
A: 42
|
|
761
|
+
},
|
|
756
762
|
handlers: [
|
|
757
763
|
{
|
|
758
764
|
apiEndpoint: {
|