Skip to content

Commit 1315da9

Browse files
feat(all): auto-regenerate discovery clients (#3460)
1 parent 80afb8a commit 1315da9

26 files changed

+723
-110
lines changed

chat/v1/chat-api.json

Lines changed: 78 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1535,7 +1535,7 @@
15351535
}
15361536
}
15371537
},
1538-
"revision": "20260108",
1538+
"revision": "20260120",
15391539
"rootUrl": "https://chat.googleapis.com/",
15401540
"schemas": {
15411541
"AccessSettings": {
@@ -2458,6 +2458,23 @@
24582458
},
24592459
"type": "object"
24602460
},
2461+
"ForwardedMetadata": {
2462+
"description": "Metadata about the source space from which a message was forwarded.",
2463+
"id": "ForwardedMetadata",
2464+
"properties": {
2465+
"space": {
2466+
"description": "Output only. The resource name of the source space. Format: spaces/{space}",
2467+
"readOnly": true,
2468+
"type": "string"
2469+
},
2470+
"spaceDisplayName": {
2471+
"description": "Output only. The display name of the source space or DM at the time of forwarding. For `SPACE`, this is the space name. For `DIRECT_MESSAGE`, this is the other participant's name (e.g., \"User A\"). For `GROUP_CHAT`, this is a generated name based on members' first names, limited to 5 including the creator (e.g., \"User A, User B\").",
2472+
"readOnly": true,
2473+
"type": "string"
2474+
}
2475+
},
2476+
"type": "object"
2477+
},
24612478
"GoogleAppsCardV1Action": {
24622479
"description": "An action that describes the behavior when the form is submitted. For example, you can invoke an Apps Script script to handle the form. If the action is triggered, the form values are sent to the server. [Google Workspace add-ons and Chat apps](https://developers.google.com/workspace/extend):",
24632480
"id": "GoogleAppsCardV1Action",
@@ -4932,6 +4949,11 @@
49324949
"description": "Information about a message that another message quotes. When you create a message, you can quote messages within the same thread, or quote a root message to create a new root message. However, you can't quote a message reply from a different thread. When you update a message, you can't add or replace the `quotedMessageMetadata` field, but you can remove it. For example usage, see [Quote another message](https://developers.google.com/workspace/chat/create-messages#quote-a-message).",
49334950
"id": "QuotedMessageMetadata",
49344951
"properties": {
4952+
"forwardedMetadata": {
4953+
"$ref": "ForwardedMetadata",
4954+
"description": "Output only. Metadata about the source space of the quoted message. Populated only for FORWARD quote type.",
4955+
"readOnly": true
4956+
},
49354957
"lastUpdateTime": {
49364958
"description": "Required. The timestamp when the quoted message was created or when the quoted message was last updated. If the message was edited, use this field, `last_update_time`. If the message was never edited, use `create_time`. If `last_update_time` doesn't match the latest version of the quoted message, the request fails.",
49374959
"format": "google-datetime",
@@ -4940,6 +4962,61 @@
49404962
"name": {
49414963
"description": "Required. Resource name of the message that is quoted. Format: `spaces/{space}/messages/{message}`",
49424964
"type": "string"
4965+
},
4966+
"quoteType": {
4967+
"description": "Optional. Specifies the quote type. If not set, defaults to REPLY in the message read/write path for backward compatibility.",
4968+
"enum": [
4969+
"QUOTE_TYPE_UNSPECIFIED",
4970+
"REPLY"
4971+
],
4972+
"enumDescriptions": [
4973+
"Reserved. This value is unused.",
4974+
"If quote_type is `REPLY`, you can do the following: * If you're replying in a thread, you can quote another message in that thread. * If you're creating a root message, you can quote another root message in that space. You can't quote a message reply from a different thread."
4975+
],
4976+
"type": "string"
4977+
},
4978+
"quotedMessageSnapshot": {
4979+
"$ref": "QuotedMessageSnapshot",
4980+
"description": "Output only. A snapshot of the quoted message's content.",
4981+
"readOnly": true
4982+
}
4983+
},
4984+
"type": "object"
4985+
},
4986+
"QuotedMessageSnapshot": {
4987+
"description": "Provides a snapshot of the content of the quoted message at the time of quoting or forwarding",
4988+
"id": "QuotedMessageSnapshot",
4989+
"properties": {
4990+
"annotations": {
4991+
"description": "Output only. Annotations parsed from the text body of the quoted message. Populated only for FORWARD quote type.",
4992+
"items": {
4993+
"$ref": "Annotation"
4994+
},
4995+
"readOnly": true,
4996+
"type": "array"
4997+
},
4998+
"attachments": {
4999+
"description": "Output only. Attachments that were part of the quoted message. These are copies of the quoted message's attachment metadata. Populated only for FORWARD quote type.",
5000+
"items": {
5001+
"$ref": "Attachment"
5002+
},
5003+
"readOnly": true,
5004+
"type": "array"
5005+
},
5006+
"formattedText": {
5007+
"description": "Output only. Contains the quoted message `text` with markups added to support rich formatting like hyperlinks,custom emojis, markup, etc. Populated only for FORWARD quote type.",
5008+
"readOnly": true,
5009+
"type": "string"
5010+
},
5011+
"sender": {
5012+
"description": "Output only. The quoted message's author name. Populated for both REPLY \u0026 FORWARD quote types.",
5013+
"readOnly": true,
5014+
"type": "string"
5015+
},
5016+
"text": {
5017+
"description": "Output only. Snapshot of the quoted message's text content.",
5018+
"readOnly": true,
5019+
"type": "string"
49435020
}
49445021
},
49455022
"type": "object"

chat/v1/chat-gen.go

Lines changed: 85 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

chromemanagement/v1/chromemanagement-api.json

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1786,7 +1786,7 @@
17861786
}
17871787
}
17881788
},
1789-
"revision": "20251211",
1789+
"revision": "20260123",
17901790
"rootUrl": "https://chromemanagement.googleapis.com/",
17911791
"schemas": {
17921792
"GoogleChromeManagementV1AndroidAppInfo": {
@@ -4255,13 +4255,15 @@
42554255
"RISK_ASSESSMENT_PROVIDER_UNSPECIFIED",
42564256
"RISK_ASSESSMENT_PROVIDER_CRXCAVATOR",
42574257
"RISK_ASSESSMENT_PROVIDER_SPIN_AI",
4258-
"RISK_ASSESSMENT_PROVIDER_LAYERX"
4258+
"RISK_ASSESSMENT_PROVIDER_LAYERX",
4259+
"RISK_ASSESSMENT_PROVIDER_SPIN_AI_V2"
42594260
],
42604261
"enumDescriptions": [
42614262
"Default value when no provider is specified.",
42624263
"CRXcavator.",
42634264
"Spin.Ai.",
4264-
"LayerX Security."
4265+
"LayerX Security.",
4266+
"Spin.AI V2."
42654267
],
42664268
"readOnly": true,
42674269
"type": "string"

chromemanagement/v1/chromemanagement-gen.go

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)