@maxim_mazurok/gapi.client.appengine-v1 0.0.20230123 → 0.0.20230206
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 +9 -1
- package/package.json +1 -1
- package/tests.ts +9 -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: 20230206
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -317,6 +317,12 @@ declare namespace gapi.client {
|
|
|
317
317
|
*/
|
|
318
318
|
sourceRange?: string;
|
|
319
319
|
}
|
|
320
|
+
interface FlexibleRuntimeSettings {
|
|
321
|
+
/** The operating system of the application runtime. */
|
|
322
|
+
operatingSystem?: string;
|
|
323
|
+
/** The runtime version of an App Engine flexible application. */
|
|
324
|
+
runtimeVersion?: string;
|
|
325
|
+
}
|
|
320
326
|
interface GoogleAppengineV1betaLocationMetadata {
|
|
321
327
|
/** App Engine flexible environment is available in the given location.@OutputOnly */
|
|
322
328
|
flexibleEnvironmentAvailable?: boolean;
|
|
@@ -866,6 +872,8 @@ declare namespace gapi.client {
|
|
|
866
872
|
envVariables?: { [P in string]: string };
|
|
867
873
|
/** Custom static error pages. Limited to 10KB per page.Only returned in GET requests if view=FULL is set. */
|
|
868
874
|
errorHandlers?: ErrorHandler[];
|
|
875
|
+
/** Settings for App Engine flexible runtimes. */
|
|
876
|
+
flexibleRuntimeSettings?: FlexibleRuntimeSettings;
|
|
869
877
|
/**
|
|
870
878
|
* 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
|
|
871
879
|
* 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: 20230206
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|
|
@@ -486,6 +486,10 @@ gapi.load('client', async () => {
|
|
|
486
486
|
staticFile: "Test string",
|
|
487
487
|
}
|
|
488
488
|
],
|
|
489
|
+
flexibleRuntimeSettings: {
|
|
490
|
+
operatingSystem: "Test string",
|
|
491
|
+
runtimeVersion: "Test string",
|
|
492
|
+
},
|
|
489
493
|
handlers: [
|
|
490
494
|
{
|
|
491
495
|
apiEndpoint: {
|
|
@@ -740,6 +744,10 @@ gapi.load('client', async () => {
|
|
|
740
744
|
staticFile: "Test string",
|
|
741
745
|
}
|
|
742
746
|
],
|
|
747
|
+
flexibleRuntimeSettings: {
|
|
748
|
+
operatingSystem: "Test string",
|
|
749
|
+
runtimeVersion: "Test string",
|
|
750
|
+
},
|
|
743
751
|
handlers: [
|
|
744
752
|
{
|
|
745
753
|
apiEndpoint: {
|