@maxim_mazurok/gapi.client.area120tables-v1alpha1 0.0.20250126 → 0.0.20250128

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 +8 -8
  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://area120tables.googleapis.com/$discovery/rest?version=v1alpha1
12
- // Revision: 20250126
12
+ // Revision: 20250128
13
13
 
14
14
  /// <reference types="gapi.client" />
15
15
 
16
16
  declare namespace gapi.client {
17
17
  /** Load Area120 Tables API v1alpha1 */
18
18
  function load(
19
- urlOrObject: 'https://area120tables.googleapis.com/$discovery/rest?version=v1alpha1'
19
+ urlOrObject: 'https://area120tables.googleapis.com/$discovery/rest?version=v1alpha1',
20
20
  ): Promise<void>;
21
21
  /** @deprecated Please load APIs with discovery documents. */
22
22
  function load(name: 'area120tables', version: 'v1alpha1'): Promise<void>;
@@ -24,7 +24,7 @@ declare namespace gapi.client {
24
24
  function load(
25
25
  name: 'area120tables',
26
26
  version: 'v1alpha1',
27
- callback: () => any
27
+ callback: () => any,
28
28
  ): void;
29
29
 
30
30
  namespace area120tables {
@@ -224,7 +224,7 @@ declare namespace gapi.client {
224
224
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
225
225
  uploadType?: string;
226
226
  },
227
- body: BatchCreateRowsRequest
227
+ body: BatchCreateRowsRequest,
228
228
  ): Request<BatchCreateRowsResponse>;
229
229
  /** Deletes multiple rows. */
230
230
  batchDelete(request: {
@@ -282,7 +282,7 @@ declare namespace gapi.client {
282
282
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
283
283
  uploadType?: string;
284
284
  },
285
- body: BatchDeleteRowsRequest
285
+ body: BatchDeleteRowsRequest,
286
286
  ): Request<{}>;
287
287
  /** Updates multiple rows. */
288
288
  batchUpdate(request: {
@@ -340,7 +340,7 @@ declare namespace gapi.client {
340
340
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
341
341
  uploadType?: string;
342
342
  },
343
- body: BatchUpdateRowsRequest
343
+ body: BatchUpdateRowsRequest,
344
344
  ): Request<BatchUpdateRowsResponse>;
345
345
  /** Creates a row. */
346
346
  create(request: {
@@ -402,7 +402,7 @@ declare namespace gapi.client {
402
402
  /** Optional. Column key to use for values in the row. Defaults to user entered name. */
403
403
  view?: string;
404
404
  },
405
- body: Row
405
+ body: Row,
406
406
  ): Request<Row>;
407
407
  /** Deletes a row. */
408
408
  delete(request?: {
@@ -561,7 +561,7 @@ declare namespace gapi.client {
561
561
  /** Optional. Column key to use for values in the row. Defaults to user entered name. */
562
562
  view?: string;
563
563
  },
564
- body: Row
564
+ body: Row,
565
565
  ): Request<Row>;
566
566
  }
567
567
  interface TablesResource {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maxim_mazurok/gapi.client.area120tables-v1alpha1",
3
- "version": "0.0.20250126",
3
+ "version": "0.0.20250128",
4
4
  "description": "TypeScript typings for Area120 Tables API v1alpha1",
5
5
  "repository": {
6
6
  "type": "git",
package/readme.md CHANGED
@@ -29,7 +29,7 @@ gapi.client.load(
29
29
  () => {
30
30
  // now we can use:
31
31
  // gapi.client.area120tables
32
- }
32
+ },
33
33
  );
34
34
  ```
35
35
 
@@ -76,7 +76,7 @@ gapi.auth.authorize(
76
76
  } else {
77
77
  /* handle authorization error */
78
78
  }
79
- }
79
+ },
80
80
  );
81
81
  ```
82
82