@maxim_mazurok/gapi.client.connectors-v2 0.0.20250115 → 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 +9 -9
  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://connectors.googleapis.com/$discovery/rest?version=v2
12
- // Revision: 20250115
12
+ // Revision: 20250128
13
13
 
14
14
  /// <reference types="gapi.client" />
15
15
 
16
16
  declare namespace gapi.client {
17
17
  /** Load Connectors API v2 */
18
18
  function load(
19
- urlOrObject: 'https://connectors.googleapis.com/$discovery/rest?version=v2'
19
+ urlOrObject: 'https://connectors.googleapis.com/$discovery/rest?version=v2',
20
20
  ): Promise<void>;
21
21
  /** @deprecated Please load APIs with discovery documents. */
22
22
  function load(name: 'connectors', version: 'v2'): Promise<void>;
@@ -452,7 +452,7 @@ declare namespace gapi.client {
452
452
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
453
453
  uploadType?: string;
454
454
  },
455
- body: ExecuteActionRequest
455
+ body: ExecuteActionRequest,
456
456
  ): Request<ExecuteActionResponse>;
457
457
  /** Gets the schema of the given action. */
458
458
  get(request?: {
@@ -572,7 +572,7 @@ declare namespace gapi.client {
572
572
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
573
573
  uploadType?: string;
574
574
  },
575
- body: Entity
575
+ body: Entity,
576
576
  ): Request<Entity>;
577
577
  /** Deletes an existing entity row matching the entity type and entity id specified in the request. */
578
578
  delete(request?: {
@@ -748,7 +748,7 @@ declare namespace gapi.client {
748
748
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
749
749
  uploadType?: string;
750
750
  },
751
- body: Entity
751
+ body: Entity,
752
752
  ): Request<Entity>;
753
753
  /** Updates entities based on conditions specified in the request and not on entity id. */
754
754
  updateEntitiesWithConditions(request: {
@@ -810,7 +810,7 @@ declare namespace gapi.client {
810
810
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
811
811
  uploadType?: string;
812
812
  },
813
- body: Entity
813
+ body: Entity,
814
814
  ): Request<UpdateEntitiesWithConditionsResponse>;
815
815
  }
816
816
  interface EntityTypesResource {
@@ -983,7 +983,7 @@ declare namespace gapi.client {
983
983
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
984
984
  uploadType?: string;
985
985
  },
986
- body: ExchangeAuthCodeRequest
986
+ body: ExchangeAuthCodeRequest,
987
987
  ): Request<ExchangeAuthCodeResponse>;
988
988
  /** Executes a SQL statement specified in the body of the request. An example of this SQL statement in the case of Salesforce connector would be 'select * from Account a, Order o where a.Id = o.AccountId'. */
989
989
  executeSqlQuery(request: {
@@ -1041,7 +1041,7 @@ declare namespace gapi.client {
1041
1041
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1042
1042
  uploadType?: string;
1043
1043
  },
1044
- body: ExecuteSqlQueryRequest
1044
+ body: ExecuteSqlQueryRequest,
1045
1045
  ): Request<ExecuteSqlQueryResponse>;
1046
1046
  /** RefreshAccessToken exchanges the OAuth refresh token (and other necessary data) for a new access token (and new associated credentials). */
1047
1047
  refreshAccessToken(request: {
@@ -1097,7 +1097,7 @@ declare namespace gapi.client {
1097
1097
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1098
1098
  uploadType?: string;
1099
1099
  },
1100
- body: RefreshAccessTokenRequest
1100
+ body: RefreshAccessTokenRequest,
1101
1101
  ): Request<RefreshAccessTokenResponse>;
1102
1102
  actions: ActionsResource;
1103
1103
  entityTypes: EntityTypesResource;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maxim_mazurok/gapi.client.connectors-v2",
3
- "version": "0.0.20250115",
3
+ "version": "0.0.20250128",
4
4
  "description": "TypeScript typings for Connectors API v2",
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.connectors
33
- }
33
+ },
34
34
  );
35
35
  ```
36
36
 
@@ -62,7 +62,7 @@ gapi.auth.authorize(
62
62
  } else {
63
63
  /* handle authorization error */
64
64
  }
65
- }
65
+ },
66
66
  );
67
67
  ```
68
68