@maxim_mazurok/gapi.client.connectors-v2 0.0.20230906 → 0.0.20230913

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 +11 -2
  2. package/package.json +1 -1
  3. package/tests.ts +2 -2
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://connectors.googleapis.com/$discovery/rest?version=v2
12
- // Revision: 20230906
12
+ // Revision: 20230913
13
13
 
14
14
  /// <reference types="gapi.client" />
15
15
 
@@ -23,6 +23,12 @@ declare namespace gapi.client {
23
23
 
24
24
  namespace connectors {
25
25
  interface Action {
26
+ /** Brief Description of action */
27
+ description?:
28
+ string;
29
+ /** Display Name of action to be shown on client side */
30
+ displayName?:
31
+ string;
26
32
  /** JsonSchema representation of this actions's input schema */
27
33
  inputJsonSchema?:
28
34
  JsonSchema;
@@ -118,6 +124,9 @@ declare namespace gapi.client {
118
124
  Reference;
119
125
  }
120
126
  interface InputParameter {
127
+ /** The following map contains fields that are not explicitly mentioned above,this give connectors the flexibility to add new metadata fields. */
128
+ additionalDetails?:
129
+ { [P in string]: any };
121
130
  /** The data type of the Parameter */
122
131
  dataType?:
123
132
  string;
@@ -217,7 +226,7 @@ declare namespace gapi.client {
217
226
  dataType?:
218
227
  string;
219
228
  value?:
220
- string;
229
+ any;
221
230
  }
222
231
  interface Reference {
223
232
  /** Name of the reference field. */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maxim_mazurok/gapi.client.connectors-v2",
3
- "version": "0.0.20230906",
3
+ "version": "0.0.20230913",
4
4
  "description": "TypeScript typings for Connectors API v2",
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: 20230906
6
+ // Revision: 20230913
7
7
 
8
8
  gapi.load('client', async () => {
9
9
  /** now we can use gapi.client */
@@ -42,7 +42,7 @@ gapi.load('client', async () => {
42
42
  queryParameters: [
43
43
  {
44
44
  dataType: "Test string",
45
- value: "Test string",
45
+ value: 42,
46
46
  }
47
47
  ],
48
48
  timeout: "Test string",