@maxim_mazurok/gapi.client.documentai-v1beta3 0.0.20240830 → 0.0.20240906
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://documentai.googleapis.com/$discovery/rest?version=v1beta3
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20240906
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -2194,6 +2194,8 @@ declare namespace gapi.client {
|
|
|
2194
2194
|
interface GoogleCloudDocumentaiV1beta3DocumentSchemaEntityType {
|
|
2195
2195
|
/** The entity type that this type is derived from. For now, one and only one should be set. */
|
|
2196
2196
|
baseTypes?: string[];
|
|
2197
|
+
/** The description of the entity type. Could be used to provide more information about the entity type for model calls. */
|
|
2198
|
+
description?: string;
|
|
2197
2199
|
/** User defined name for the type. */
|
|
2198
2200
|
displayName?: string;
|
|
2199
2201
|
/** Metadata for the entity type. */
|
|
@@ -2210,6 +2212,8 @@ declare namespace gapi.client {
|
|
|
2210
2212
|
values?: string[];
|
|
2211
2213
|
}
|
|
2212
2214
|
interface GoogleCloudDocumentaiV1beta3DocumentSchemaEntityTypeProperty {
|
|
2215
|
+
/** The description of the property. Could be used to provide more information about the property for model calls. */
|
|
2216
|
+
description?: string;
|
|
2213
2217
|
/** User defined name for the property. */
|
|
2214
2218
|
displayName?: string;
|
|
2215
2219
|
/** The name of the property. Follows the same guidelines as the EntityType name. */
|