@maxim_mazurok/gapi.client.connectors-v2 0.0.20240625 → 0.0.20240708
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.
- package/index.d.ts +5 -1
- package/package.json +1 -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://connectors.googleapis.com/$discovery/rest?version=v2
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20240708
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -322,12 +322,16 @@ declare namespace gapi.client {
|
|
|
322
322
|
interface ResultMetadata {
|
|
323
323
|
/** The data type of the metadata field */
|
|
324
324
|
dataType?: string;
|
|
325
|
+
/** The following field specifies the default value of the Parameter provided by the external system if a value is not provided. */
|
|
326
|
+
defaultValue?: any;
|
|
325
327
|
/** A brief description of the metadata field. */
|
|
326
328
|
description?: string;
|
|
327
329
|
/** JsonSchema of the result, applicable only if parameter is of type `STRUCT` */
|
|
328
330
|
jsonSchema?: JsonSchema;
|
|
329
331
|
/** Name of the metadata field. */
|
|
330
332
|
name?: string;
|
|
333
|
+
/** Specifies whether a null value is allowed. */
|
|
334
|
+
nullable?: boolean;
|
|
331
335
|
}
|
|
332
336
|
interface Schedule {
|
|
333
337
|
/** Allows to define schedule that runs specified day of the week. */
|