Skip to content

Commit a57ae63

Browse files
feat(cloudsearch): update the api
#### cloudsearch:v1 The following keys were added: - schemas.AppsDynamiteSharedSpaceInfo.properties.segmentedMembershipCounts.$ref (Total Keys: 1) - schemas.AppsDynamiteStorageAction.properties.persistValues.type (Total Keys: 1) - schemas.MessageDeleted.properties.wonderCardMappings (Total Keys: 2) - schemas.UserMentionMetadata.properties.userMentionError.type (Total Keys: 1) - schemas.WonderCardDelete (Total Keys: 6) - schemas.WonderMessageMapping (Total Keys: 4)
1 parent b204e0f commit a57ae63

File tree

1 file changed

+66
-3
lines changed

1 file changed

+66
-3
lines changed

googleapiclient/discovery_cache/documents/cloudsearch.v1.json

Lines changed: 66 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2077,7 +2077,7 @@
20772077
}
20782078
}
20792079
},
2080-
"revision": "20230131",
2080+
"revision": "20230214",
20812081
"rootUrl": "https://cloudsearch.googleapis.com/",
20822082
"schemas": {
20832083
"AbuseReportingConfig": {
@@ -3777,9 +3777,14 @@
37773777
"type": "string"
37783778
},
37793779
"numMembers": {
3780+
"description": "Deprecated. Use segmented_membership_counts instead which also includes other counts such as rosters.",
37803781
"format": "int32",
37813782
"type": "integer"
37823783
},
3784+
"segmentedMembershipCounts": {
3785+
"$ref": "AppsDynamiteSharedSegmentedMembershipCounts",
3786+
"description": "Member counts object with types of members and their respective counts."
3787+
},
37833788
"userMembershipState": {
37843789
"description": "searching user's membership state in this space",
37853790
"enum": [
@@ -3988,6 +3993,10 @@
39883993
"$ref": "AppsDynamiteStorageActionActionParameter"
39893994
},
39903995
"type": "array"
3996+
},
3997+
"persistValues": {
3998+
"description": "Indicates whether form values persist after the action. The default value is `false`. If `true`, form values remain after the action is triggered. When using [LoadIndicator.NONE](workspace/add-ons/reference/rpc/google.apps.card.v1#loadindicator) for actions, `persist_values` = `true`is recommended, as it ensures that any changes made by the user after form or on change actions are sent to the server are not overwritten by the response. If `false`, the form values are cleared when the action is triggered. When `persist_values` is set to `false`, it is strongly recommended that the card use [LoadIndicator.SPINNER](workspace/add-ons/reference/rpc/google.apps.card.v1#loadindicator) for all actions, as this locks the UI to ensure no changes are made by the user while the action is being processed.",
3999+
"type": "boolean"
39914000
}
39924001
},
39934002
"type": "object"
@@ -4762,13 +4771,15 @@
47624771
"CHECK_BOX",
47634772
"RADIO_BUTTON",
47644773
"SWITCH",
4765-
"DROPDOWN"
4774+
"DROPDOWN",
4775+
"MULTI_SELECT"
47664776
],
47674777
"enumDescriptions": [
47684778
"The selection type is a checkbox.",
47694779
"The selection type is a radio button.",
47704780
"The selection type is a switch.",
4771-
"The selection type is a dropdown."
4781+
"The selection type is a dropdown.",
4782+
"The selection type is multi-select"
47724783
],
47734784
"type": "string"
47744785
}
@@ -13071,6 +13082,13 @@
1307113082
"$ref": "MultiKey"
1307213083
},
1307313084
"type": "array"
13085+
},
13086+
"wonderCardMappings": {
13087+
"description": "Value of coproc's message delete history record extension that exports /wonder/message_mapping/{vertical} attribute of deleted messages which have smartmail label (eg. ^cob_sm_invoice, etc).",
13088+
"items": {
13089+
"$ref": "WonderCardDelete"
13090+
},
13091+
"type": "array"
1307413092
}
1307513093
},
1307613094
"type": "object"
@@ -17986,6 +18004,18 @@
1798618004
"Server-generated user mention, for clients to strikethrough."
1798718005
],
1798818006
"type": "string"
18007+
},
18008+
"userMentionError": {
18009+
"description": "Specific reason for the user mention failing, for fine-grained processing by clients (i.e. specific error message for space limit exceeded case) IMPORTANT: Set this only for FAILED_TO_ADD case.",
18010+
"enum": [
18011+
"USER_MENTION_ERROR_UNSPECIFIED",
18012+
"MEMBERSHIP_LIMIT_EXCEEDED"
18013+
],
18014+
"enumDescriptions": [
18015+
"",
18016+
"Failure caused by adding user to a room that is full"
18017+
],
18018+
"type": "string"
1798918019
}
1799018020
},
1799118021
"type": "object"
@@ -18219,6 +18249,39 @@
1821918249
},
1822018250
"type": "object"
1822118251
},
18252+
"WonderCardDelete": {
18253+
"description": "Message delete history record extension that exports /wonder/message_mapping/{vertical} attribute of deleted messages which have any smartmail label (eg. ^cob_sm_invoice). go/how-dd-card-deletion",
18254+
"id": "WonderCardDelete",
18255+
"properties": {
18256+
"messageMappings": {
18257+
"additionalProperties": {
18258+
"$ref": "WonderMessageMapping"
18259+
},
18260+
"description": "Contains <{@code WonderCardType} enum value, value of /wonder/message_mapping/{vertical} attribute of deleted message> pairs.",
18261+
"type": "object"
18262+
},
18263+
"msgId": {
18264+
"description": "Message ID of the original deleted message",
18265+
"format": "uint64",
18266+
"type": "string"
18267+
}
18268+
},
18269+
"type": "object"
18270+
},
18271+
"WonderMessageMapping": {
18272+
"description": "Card mapping attached to original message as an attribute stored at /wonder/message_mapping/{vertical} Next ID: 2",
18273+
"id": "WonderMessageMapping",
18274+
"properties": {
18275+
"wonderCardMessageId": {
18276+
"description": "List of wonder card (client-generated) message IDs generated based on the original message.",
18277+
"items": {
18278+
"type": "string"
18279+
},
18280+
"type": "array"
18281+
}
18282+
},
18283+
"type": "object"
18284+
},
1822218285
"WrappedResourceKey": {
1822318286
"description": "A wrapper around a raw resource key. The secret should never be logged, and this proto annotates those secret fields to ensure that they are not. Clients are encouraged to use this proto rather than defining their own, to ensure that secrets are correctly annotated.",
1822418287
"id": "WrappedResourceKey",

0 commit comments

Comments
 (0)