@maxim_mazurok/gapi.client.appengine-v1 0.0.20221212 → 0.0.20230109

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.
Files changed (3) hide show
  1. package/index.d.ts +42 -1
  2. package/package.json +1 -1
  3. 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: 20221212
12
+ // Revision: 20230109
13
13
 
14
14
  /// <reference types="gapi.client" />
15
15
 
@@ -2668,7 +2668,48 @@ declare namespace gapi.client {
2668
2668
  operations: OperationsResource;
2669
2669
  services: ServicesResource;
2670
2670
  }
2671
+ interface ApplicationsResource {
2672
+ /** Gets information about an application. */
2673
+ get(request?: {
2674
+ /** V1 error format. */
2675
+ "$.xgafv"?: string;
2676
+ /** OAuth access token. */
2677
+ access_token?: string;
2678
+ /** Data format for response. */
2679
+ alt?: string;
2680
+ /** Part of `name`. See documentation of `projectsId`. */
2681
+ applicationsId: string;
2682
+ /** JSONP */
2683
+ callback?: string;
2684
+ /** Selector specifying which fields to include in a partial response. */
2685
+ fields?: string;
2686
+ /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
2687
+ key?: string;
2688
+ /** Part of `name`. See documentation of `projectsId`. */
2689
+ locationsId: string;
2690
+ /** OAuth 2.0 token for the current user. */
2691
+ oauth_token?: string;
2692
+ /** Returns response with indentations and line breaks. */
2693
+ prettyPrint?: boolean;
2694
+ /** Part of `name`. Name of the Application resource to get. Example: apps/myapp. */
2695
+ projectsId: string;
2696
+ /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
2697
+ quotaUser?: string;
2698
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
2699
+ upload_protocol?: string;
2700
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
2701
+ uploadType?: string;
2702
+ }): Request<Application>;
2703
+ }
2704
+ interface LocationsResource {
2705
+ applications: ApplicationsResource;
2706
+ }
2707
+ interface ProjectsResource {
2708
+ locations: LocationsResource;
2709
+ }
2671
2710
 
2672
2711
  const apps: AppsResource;
2712
+
2713
+ const projects: ProjectsResource;
2673
2714
  }
2674
2715
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maxim_mazurok/gapi.client.appengine-v1",
3
- "version": "0.0.20221212",
3
+ "version": "0.0.20230109",
4
4
  "description": "TypeScript typings for App Engine Admin API v1",
5
5
  "license": "MIT",
6
6
  "author": {
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: 20221212
6
+ // Revision: 20230109
7
7
 
8
8
  gapi.load('client', async () => {
9
9
  /** now we can use gapi.client */
@@ -893,5 +893,11 @@ gapi.load('client', async () => {
893
893
  servicesId: "Test string",
894
894
  versionsId: "Test string",
895
895
  });
896
+ /** Gets information about an application. */
897
+ await gapi.client.appengine.projects.locations.applications.get({
898
+ applicationsId: "Test string",
899
+ locationsId: "Test string",
900
+ projectsId: "Test string",
901
+ });
896
902
  }
897
903
  });