@maxim_mazurok/gapi.client.workflowexecutions-v1 0.0.20230620 → 0.0.20230710

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 +8 -8
  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://workflowexecutions.googleapis.com/$discovery/rest?version=v1
12
- // Revision: 20230620
12
+ // Revision: 20230710
13
13
 
14
14
  /// <reference types="gapi.client" />
15
15
 
@@ -107,26 +107,26 @@ declare namespace gapi.client {
107
107
  string;
108
108
  }
109
109
  interface PubsubMessage {
110
- /** Attributes for this message. If this field is empty, the message must contain non-empty data. This can be used to filter messages on the subscription. */
110
+ /** Optional. Attributes for this message. If this field is empty, the message must contain non-empty data. This can be used to filter messages on the subscription. */
111
111
  attributes?:
112
112
  { [P in string]: string };
113
- /** The message data field. If this field is empty, the message must contain at least one attribute. */
113
+ /** Optional. The message data field. If this field is empty, the message must contain at least one attribute. */
114
114
  data?:
115
115
  string;
116
116
  /**
117
- * ID of this message, assigned by the server when the message is published. Guaranteed to be unique within the topic. This value may be read by a subscriber that receives a
117
+ * Optional. ID of this message, assigned by the server when the message is published. Guaranteed to be unique within the topic. This value may be read by a subscriber that receives a
118
118
  * `PubsubMessage` via a `Pull` call or a push delivery. It must not be populated by the publisher in a `Publish` call.
119
119
  */
120
120
  messageId?:
121
121
  string;
122
122
  /**
123
- * If non-empty, identifies related messages for which publish order should be respected. If a `Subscription` has `enable_message_ordering` set to `true`, messages published with the
124
- * same non-empty `ordering_key` value will be delivered to subscribers in the order in which they are received by the Pub/Sub system. All `PubsubMessage`s published in a given
125
- * `PublishRequest` must specify the same `ordering_key` value. For more information, see [ordering messages](https://cloud.google.com/pubsub/docs/ordering).
123
+ * Optional. If non-empty, identifies related messages for which publish order should be respected. If a `Subscription` has `enable_message_ordering` set to `true`, messages published
124
+ * with the same non-empty `ordering_key` value will be delivered to subscribers in the order in which they are received by the Pub/Sub system. All `PubsubMessage`s published in a
125
+ * given `PublishRequest` must specify the same `ordering_key` value. For more information, see [ordering messages](https://cloud.google.com/pubsub/docs/ordering).
126
126
  */
127
127
  orderingKey?:
128
128
  string;
129
- /** The time at which the message was published, populated by the server when it receives the `Publish` call. It must not be populated by the publisher in a `Publish` call. */
129
+ /** Optional. The time at which the message was published, populated by the server when it receives the `Publish` call. It must not be populated by the publisher in a `Publish` call. */
130
130
  publishTime?:
131
131
  string;
132
132
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maxim_mazurok/gapi.client.workflowexecutions-v1",
3
- "version": "0.0.20230620",
3
+ "version": "0.0.20230710",
4
4
  "description": "TypeScript typings for Workflow Executions API v1",
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: 20230620
6
+ // Revision: 20230710
7
7
 
8
8
  gapi.load('client', async () => {
9
9
  /** now we can use gapi.client */