@maxim_mazurok/gapi.client.docs-v1 0.0.20250117 → 0.0.20250129

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 +4 -4
  2. package/package.json +1 -1
  3. package/readme.md +2 -2
package/index.d.ts CHANGED
@@ -9,14 +9,14 @@
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://docs.googleapis.com/$discovery/rest?version=v1
12
- // Revision: 20250117
12
+ // Revision: 20250129
13
13
 
14
14
  /// <reference types="gapi.client" />
15
15
 
16
16
  declare namespace gapi.client {
17
17
  /** Load Google Docs API v1 */
18
18
  function load(
19
- urlOrObject: 'https://docs.googleapis.com/$discovery/rest?version=v1'
19
+ urlOrObject: 'https://docs.googleapis.com/$discovery/rest?version=v1',
20
20
  ): Promise<void>;
21
21
  /** @deprecated Please load APIs with discovery documents. */
22
22
  function load(name: 'docs', version: 'v1'): Promise<void>;
@@ -1669,7 +1669,7 @@ declare namespace gapi.client {
1669
1669
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1670
1670
  uploadType?: string;
1671
1671
  },
1672
- body: BatchUpdateDocumentRequest
1672
+ body: BatchUpdateDocumentRequest,
1673
1673
  ): client.Request<BatchUpdateDocumentResponse>;
1674
1674
  /** Creates a blank document using the title given in the request. Other fields in the request, including any provided content, are ignored. Returns the created document. */
1675
1675
  create(request: {
@@ -1723,7 +1723,7 @@ declare namespace gapi.client {
1723
1723
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1724
1724
  uploadType?: string;
1725
1725
  },
1726
- body: Document
1726
+ body: Document,
1727
1727
  ): client.Request<Document>;
1728
1728
  /** Gets the latest version of the specified document. */
1729
1729
  get(request?: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maxim_mazurok/gapi.client.docs-v1",
3
- "version": "0.0.20250117",
3
+ "version": "0.0.20250129",
4
4
  "description": "TypeScript typings for Google Docs API v1",
5
5
  "repository": {
6
6
  "type": "git",
package/readme.md CHANGED
@@ -30,7 +30,7 @@ gapi.client.load(
30
30
  () => {
31
31
  // now we can use:
32
32
  // gapi.client.docs
33
- }
33
+ },
34
34
  );
35
35
  ```
36
36
 
@@ -74,7 +74,7 @@ gapi.auth.authorize(
74
74
  } else {
75
75
  /* handle authorization error */
76
76
  }
77
- }
77
+ },
78
78
  );
79
79
  ```
80
80