@maxim_mazurok/gapi.client.documentai-v1beta3 0.0.20231021 → 0.0.20231102

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 +12 -12
  2. package/package.json +1 -1
  3. package/tests.ts +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: 20231021
12
+ // Revision: 20231102
13
13
 
14
14
  /// <reference types="gapi.client" />
15
15
 
@@ -307,7 +307,7 @@ declare namespace gapi.client {
307
307
  /** The basic metadata of the long-running operation. */
308
308
  commonMetadata?:
309
309
  GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata;
310
- /** The list of dataset resync statuses. Not checked when `dataset_documents` is specified in ResyncRequest. */
310
+ /** The list of dataset resync statuses. Not checked when ResyncDatasetRequest.dataset_documents is specified. */
311
311
  datasetResyncStatuses?:
312
312
  GoogleCloudDocumentaiUiv1beta3ResyncDatasetMetadataDatasetResyncStatus[];
313
313
  /** The list of document resync statuses. The same document could have multiple `individual_document_resync_statuses` if it has multiple inconsistencies. */
@@ -318,7 +318,7 @@ declare namespace gapi.client {
318
318
  /** The type of the inconsistency of the dataset. */
319
319
  datasetInconsistencyType?:
320
320
  string;
321
- /** The status of resyncing the dataset with regards to the detected inconsistency. Empty if `validate_only` is true in the request. */
321
+ /** The status of resyncing the dataset with regards to the detected inconsistency. Empty if ResyncDatasetRequest.validate_only is `true`. */
322
322
  status?:
323
323
  GoogleRpcStatus;
324
324
  }
@@ -329,7 +329,7 @@ declare namespace gapi.client {
329
329
  /** The type of document inconsistency. */
330
330
  documentInconsistencyType?:
331
331
  string;
332
- /** The status of resyncing the document with regards to the detected inconsistency. Empty if `validate_only` is true in the request. */
332
+ /** The status of resyncing the document with regards to the detected inconsistency. Empty if ResyncDatasetRequest.validate_only is `true`. */
333
333
  status?:
334
334
  GoogleRpcStatus;
335
335
  }
@@ -2103,7 +2103,7 @@ declare namespace gapi.client {
2103
2103
  string;
2104
2104
  }
2105
2105
  interface GoogleCloudDocumentaiV1beta3Dataset {
2106
- /** Optional. Document AI Warehouse-based dataset configuration. */
2106
+ /** Optional. Derepcated. Warehouse-based dataset configuration is not supported today. */
2107
2107
  documentWarehouseConfig?:
2108
2108
  GoogleCloudDocumentaiV1beta3DatasetDocumentWarehouseConfig;
2109
2109
  /** Optional. User-managed Cloud Storage dataset configuration. Use this configuration if the dataset documents are stored under a user-managed Cloud Storage location. */
@@ -2342,7 +2342,7 @@ declare namespace gapi.client {
2342
2342
  /** Document identifier. */
2343
2343
  documentId?:
2344
2344
  GoogleCloudDocumentaiV1beta3DocumentId;
2345
- /** Labelling state of the document. */
2345
+ /** Labeling state of the document. */
2346
2346
  labelingState?:
2347
2347
  string;
2348
2348
  /** Number of pages in the document. */
@@ -3246,15 +3246,15 @@ declare namespace gapi.client {
3246
3246
  pageToken?:
3247
3247
  string;
3248
3248
  /**
3249
- * Optional. Controls if the ListDocuments request requires a total size of matched documents. See ListDocumentsResponse.total_size. Enabling this flag may adversely impact
3250
- * performance. Defaults to false.
3249
+ * Optional. Controls if the request requires a total size of matched documents. See ListDocumentsResponse.total_size. Enabling this flag may adversely impact performance. Defaults to
3250
+ * false.
3251
3251
  */
3252
3252
  returnTotalSize?:
3253
3253
  boolean;
3254
3254
  /**
3255
- * Optional. Number of results to skip beginning from the `page_token` if provided. https://google.aip.dev/158#skipping-results. It must be a non-negative integer. Negative values wil
3256
- * be rejected. Note that this is not the number of pages to skip. If this value causes the cursor to move past the end of results, `ListDocumentsResponse.document_metadata` and
3257
- * `ListDocumentsResponse.next_page_token` will be empty.
3255
+ * Optional. Number of results to skip beginning from the `page_token` if provided. https://google.aip.dev/158#skipping-results. It must be a non-negative integer. Negative values will
3256
+ * be rejected. Note that this is not the number of pages to skip. If this value causes the cursor to move past the end of results, ListDocumentsResponse.document_metadata and
3257
+ * ListDocumentsResponse.next_page_token will be empty.
3258
3258
  */
3259
3259
  skip?:
3260
3260
  number;
@@ -3263,7 +3263,7 @@ declare namespace gapi.client {
3263
3263
  /** Document metadata corresponding to the listed documents. */
3264
3264
  documentMetadata?:
3265
3265
  GoogleCloudDocumentaiV1beta3DocumentMetadata[];
3266
- /** A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. */
3266
+ /** A token, which can be sent as ListDocumentsRequest.page_token to retrieve the next page. If this field is omitted, there are no subsequent pages. */
3267
3267
  nextPageToken?:
3268
3268
  string;
3269
3269
  /** Total count of documents queried. */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maxim_mazurok/gapi.client.documentai-v1beta3",
3
- "version": "0.0.20231021",
3
+ "version": "0.0.20231102",
4
4
  "description": "TypeScript typings for Cloud Document AI API v1beta3",
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: 20231021
6
+ // Revision: 20231102
7
7
 
8
8
  gapi.load('client', async () => {
9
9
  /** now we can use gapi.client */