mirror of
https://github.com/OMGeeky/google-apis-rs.git
synced 2026-02-23 15:49:49 +01:00
update dependencies
This commit is contained in:
@@ -132,7 +132,7 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"revision": "20220301",
|
||||
"revision": "20230122",
|
||||
"rootUrl": "https://driveactivity.googleapis.com/",
|
||||
"schemas": {
|
||||
"Action": {
|
||||
@@ -167,6 +167,10 @@
|
||||
"description": "Data describing the type and additional information of an action.",
|
||||
"id": "ActionDetail",
|
||||
"properties": {
|
||||
"appliedLabelChange": {
|
||||
"$ref": "AppliedLabelChange",
|
||||
"description": "Label was changed."
|
||||
},
|
||||
"comment": {
|
||||
"$ref": "Comment",
|
||||
"description": "A change about comments was made."
|
||||
@@ -280,6 +284,63 @@
|
||||
},
|
||||
"type": "object"
|
||||
},
|
||||
"AppliedLabelChange": {
|
||||
"description": "Label changes that were made on the Target.",
|
||||
"id": "AppliedLabelChange",
|
||||
"properties": {
|
||||
"changes": {
|
||||
"description": "Changes that were made to the Label on the Target.",
|
||||
"items": {
|
||||
"$ref": "AppliedLabelChangeDetail"
|
||||
},
|
||||
"type": "array"
|
||||
}
|
||||
},
|
||||
"type": "object"
|
||||
},
|
||||
"AppliedLabelChangeDetail": {
|
||||
"description": "A change made to a Label on the Target.",
|
||||
"id": "AppliedLabelChangeDetail",
|
||||
"properties": {
|
||||
"fieldChanges": {
|
||||
"description": "Field Changes. Only present if `types` contains `LABEL_FIELD_VALUE_CHANGED`.",
|
||||
"items": {
|
||||
"$ref": "FieldValueChange"
|
||||
},
|
||||
"type": "array"
|
||||
},
|
||||
"label": {
|
||||
"description": "The Label name representing the Label that changed. This name always contains the revision of the Label that was used when this Action occurred. The format is `labels/id@revision`.",
|
||||
"type": "string"
|
||||
},
|
||||
"title": {
|
||||
"description": "The human-readable title of the label that changed.",
|
||||
"type": "string"
|
||||
},
|
||||
"types": {
|
||||
"description": "The types of changes made to the Label on the Target.",
|
||||
"items": {
|
||||
"enum": [
|
||||
"TYPE_UNSPECIFIED",
|
||||
"LABEL_ADDED",
|
||||
"LABEL_REMOVED",
|
||||
"LABEL_FIELD_VALUE_CHANGED",
|
||||
"LABEL_APPLIED_BY_ITEM_CREATE"
|
||||
],
|
||||
"enumDescriptions": [
|
||||
"The type of change to this Label is not available.",
|
||||
"The identified Label was added to the Target.",
|
||||
"The identified Label was removed from the Target.",
|
||||
"Field values were changed on the Target.",
|
||||
"The Label was applied as a side-effect of Drive item creation."
|
||||
],
|
||||
"type": "string"
|
||||
},
|
||||
"type": "array"
|
||||
}
|
||||
},
|
||||
"type": "object"
|
||||
},
|
||||
"Assignment": {
|
||||
"description": "A comment with an assignment.",
|
||||
"id": "Assignment",
|
||||
@@ -342,7 +403,7 @@
|
||||
"type": "object"
|
||||
},
|
||||
"ConsolidationStrategy": {
|
||||
"description": "How the individual activities are consolidated. A set of activities may be consolidated into one combined activity if they are related in some way, such as one actor performing the same action on multiple targets, or multiple actors performing the same action on a single target. The strategy defines the rules for which activities are related.",
|
||||
"description": "How the individual activities are consolidated. If a set of activities is related they can be consolidated into one combined activity, such as one actor performing the same action on multiple targets, or multiple actors performing the same action on a single target. The strategy defines the rules for which activities are related.",
|
||||
"id": "ConsolidationStrategy",
|
||||
"properties": {
|
||||
"legacy": {
|
||||
@@ -407,6 +468,18 @@
|
||||
},
|
||||
"type": "object"
|
||||
},
|
||||
"Date": {
|
||||
"description": "Wrapper for Date Field value.",
|
||||
"id": "Date",
|
||||
"properties": {
|
||||
"value": {
|
||||
"description": "Date value.",
|
||||
"format": "google-datetime",
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"type": "object"
|
||||
},
|
||||
"Delete": {
|
||||
"description": "An object was deleted.",
|
||||
"id": "Delete",
|
||||
@@ -629,6 +702,68 @@
|
||||
"properties": {},
|
||||
"type": "object"
|
||||
},
|
||||
"FieldValue": {
|
||||
"description": "Contains a value of a Field.",
|
||||
"id": "FieldValue",
|
||||
"properties": {
|
||||
"date": {
|
||||
"$ref": "Date",
|
||||
"description": "Date Field value."
|
||||
},
|
||||
"integer": {
|
||||
"$ref": "Integer",
|
||||
"description": "Integer Field value."
|
||||
},
|
||||
"selection": {
|
||||
"$ref": "Selection",
|
||||
"description": "Selection Field value."
|
||||
},
|
||||
"selectionList": {
|
||||
"$ref": "SelectionList",
|
||||
"description": "Selection List Field value."
|
||||
},
|
||||
"text": {
|
||||
"$ref": "Text",
|
||||
"description": "Text Field value."
|
||||
},
|
||||
"textList": {
|
||||
"$ref": "TextList",
|
||||
"description": "Text List Field value."
|
||||
},
|
||||
"user": {
|
||||
"$ref": "SingleUser",
|
||||
"description": "User Field value."
|
||||
},
|
||||
"userList": {
|
||||
"$ref": "UserList",
|
||||
"description": "User List Field value."
|
||||
}
|
||||
},
|
||||
"type": "object"
|
||||
},
|
||||
"FieldValueChange": {
|
||||
"description": "Change to a Field value.",
|
||||
"id": "FieldValueChange",
|
||||
"properties": {
|
||||
"displayName": {
|
||||
"description": "The human-readable display name for this field.",
|
||||
"type": "string"
|
||||
},
|
||||
"fieldId": {
|
||||
"description": "The ID of this field. Field IDs are unique within a Label.",
|
||||
"type": "string"
|
||||
},
|
||||
"newValue": {
|
||||
"$ref": "FieldValue",
|
||||
"description": "The value that is now set on the field. If not present, the field was cleared. At least one of {old_value|new_value} is always set."
|
||||
},
|
||||
"oldValue": {
|
||||
"$ref": "FieldValue",
|
||||
"description": "The value that was previously set on the field. If not present, the field was newly set. At least one of {old_value|new_value} is always set."
|
||||
}
|
||||
},
|
||||
"type": "object"
|
||||
},
|
||||
"File": {
|
||||
"description": "This item is deprecated; please see `DriveFile` instead.",
|
||||
"id": "File",
|
||||
@@ -707,6 +842,18 @@
|
||||
},
|
||||
"type": "object"
|
||||
},
|
||||
"Integer": {
|
||||
"description": "Wrapper for Integer Field value.",
|
||||
"id": "Integer",
|
||||
"properties": {
|
||||
"value": {
|
||||
"description": "Integer value.",
|
||||
"format": "int64",
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"type": "object"
|
||||
},
|
||||
"KnownUser": {
|
||||
"description": "A known user.",
|
||||
"id": "KnownUser",
|
||||
@@ -723,7 +870,7 @@
|
||||
"type": "object"
|
||||
},
|
||||
"Legacy": {
|
||||
"description": "A strategy which consolidates activities using the grouping rules from the legacy V1 Activity API. Similar actions occurring within a window of time can be grouped across multiple targets (such as moving a set of files at once) or multiple actors (such as several users editing the same item). Grouping rules for this strategy are specific to each type of action.",
|
||||
"description": "A strategy that consolidates activities using the grouping rules from the legacy V1 Activity API. Similar actions occurring within a window of time can be grouped across multiple targets (such as moving a set of files at once) or multiple actors (such as several users editing the same item). Grouping rules for this strategy are specific to each type of action.",
|
||||
"id": "Legacy",
|
||||
"properties": {},
|
||||
"type": "object"
|
||||
@@ -756,7 +903,7 @@
|
||||
"type": "object"
|
||||
},
|
||||
"NoConsolidation": {
|
||||
"description": "A strategy which does no consolidation of individual activities.",
|
||||
"description": "A strategy that does no consolidation of individual activities.",
|
||||
"id": "NoConsolidation",
|
||||
"properties": {},
|
||||
"type": "object"
|
||||
@@ -890,15 +1037,15 @@
|
||||
"id": "QueryDriveActivityRequest",
|
||||
"properties": {
|
||||
"ancestorName": {
|
||||
"description": "Return activities for this Drive folder and all children and descendants. The format is `items/ITEM_ID`.",
|
||||
"description": "Return activities for this Drive folder, plus all children and descendants. The format is `items/ITEM_ID`.",
|
||||
"type": "string"
|
||||
},
|
||||
"consolidationStrategy": {
|
||||
"$ref": "ConsolidationStrategy",
|
||||
"description": "Details on how to consolidate related actions that make up the activity. If not set, then related actions are not consolidated."
|
||||
"description": "Details on how to consolidate related actions that make up the activity. If not set, then related actions aren't consolidated."
|
||||
},
|
||||
"filter": {
|
||||
"description": "The filtering for items returned from this query request. The format of the filter string is a sequence of expressions, joined by an optional \"AND\", where each expression is of the form \"field operator value\". Supported fields: - `time`: Uses numerical operators on date values either in terms of milliseconds since Jan 1, 1970 or in RFC 3339 format. Examples: - `time > 1452409200000 AND time <= 1492812924310` - `time >= \"2016-01-10T01:02:03-05:00\"` - `detail.action_detail_case`: Uses the \"has\" operator (:) and either a singular value or a list of allowed action types enclosed in parentheses. Examples: - `detail.action_detail_case: RENAME` - `detail.action_detail_case:(CREATE EDIT)` - `-detail.action_detail_case:MOVE` ",
|
||||
"description": "The filtering for items returned from this query request. The format of the filter string is a sequence of expressions, joined by an optional \"AND\", where each expression is of the form \"field operator value\". Supported fields: - `time`: Uses numerical operators on date values either in terms of milliseconds since Jan 1, 1970 or in RFC 3339 format. Examples: - `time > 1452409200000 AND time <= 1492812924310` - `time >= \"2016-01-10T01:02:03-05:00\"` - `detail.action_detail_case`: Uses the \"has\" operator (:) and either a singular value or a list of allowed action types enclosed in parentheses, separated by a space. To exclude a result from the response, prepend a hyphen (`-`) to the beginning of the filter string. Examples: - `detail.action_detail_case:RENAME` - `detail.action_detail_case:(CREATE RESTORE)` - `-detail.action_detail_case:MOVE` ",
|
||||
"type": "string"
|
||||
},
|
||||
"itemName": {
|
||||
@@ -906,12 +1053,12 @@
|
||||
"type": "string"
|
||||
},
|
||||
"pageSize": {
|
||||
"description": "The miminum number of activities desired in the response; the server will attempt to return at least this quanitity. The server may also return fewer activities if it has a partial response ready before the request times out. If not set, a default value is used.",
|
||||
"description": "The minimum number of activities desired in the response; the server attempts to return at least this quantity. The server may also return fewer activities if it has a partial response ready before the request times out. If not set, a default value is used.",
|
||||
"format": "int32",
|
||||
"type": "integer"
|
||||
},
|
||||
"pageToken": {
|
||||
"description": "The token identifying which page of results to return. Set this to the next_page_token value returned from a previous query to obtain the following page of results. If not set, the first page of results will be returned.",
|
||||
"description": "The token identifies which page of results to return. Set this to the next_page_token value returned from a previous query to obtain the following page of results. If not set, the first page of results is returned.",
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
@@ -1008,6 +1155,35 @@
|
||||
},
|
||||
"type": "object"
|
||||
},
|
||||
"Selection": {
|
||||
"description": "Wrapper for Selection Field value as combined value/display_name pair for selected choice.",
|
||||
"id": "Selection",
|
||||
"properties": {
|
||||
"displayName": {
|
||||
"description": "Selection value as human-readable display string.",
|
||||
"type": "string"
|
||||
},
|
||||
"value": {
|
||||
"description": "Selection value as Field Choice ID.",
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"type": "object"
|
||||
},
|
||||
"SelectionList": {
|
||||
"description": "Wrapper for SelectionList Field value.",
|
||||
"id": "SelectionList",
|
||||
"properties": {
|
||||
"values": {
|
||||
"description": "Selection values.",
|
||||
"items": {
|
||||
"$ref": "Selection"
|
||||
},
|
||||
"type": "array"
|
||||
}
|
||||
},
|
||||
"type": "object"
|
||||
},
|
||||
"SettingsChange": {
|
||||
"description": "Information about settings changes.",
|
||||
"id": "SettingsChange",
|
||||
@@ -1022,6 +1198,17 @@
|
||||
},
|
||||
"type": "object"
|
||||
},
|
||||
"SingleUser": {
|
||||
"description": "Wrapper for User Field value.",
|
||||
"id": "SingleUser",
|
||||
"properties": {
|
||||
"value": {
|
||||
"description": "User value as email.",
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"type": "object"
|
||||
},
|
||||
"Suggestion": {
|
||||
"description": "A suggestion.",
|
||||
"id": "Suggestion",
|
||||
@@ -1077,7 +1264,7 @@
|
||||
"type": "object"
|
||||
},
|
||||
"Target": {
|
||||
"description": "Information about the target of activity.",
|
||||
"description": "Information about the target of activity. For more information on how activity history is shared with users, see [Activity history visibility](https://developers.google.com/drive/activity/v2#activityhistory).",
|
||||
"id": "Target",
|
||||
"properties": {
|
||||
"drive": {
|
||||
@@ -1152,6 +1339,31 @@
|
||||
},
|
||||
"type": "object"
|
||||
},
|
||||
"Text": {
|
||||
"description": "Wrapper for Text Field value.",
|
||||
"id": "Text",
|
||||
"properties": {
|
||||
"value": {
|
||||
"description": "Value of Text Field.",
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"type": "object"
|
||||
},
|
||||
"TextList": {
|
||||
"description": "Wrapper for Text List Field value.",
|
||||
"id": "TextList",
|
||||
"properties": {
|
||||
"values": {
|
||||
"description": "Text values.",
|
||||
"items": {
|
||||
"$ref": "Text"
|
||||
},
|
||||
"type": "array"
|
||||
}
|
||||
},
|
||||
"type": "object"
|
||||
},
|
||||
"TimeRange": {
|
||||
"description": "Information about time ranges.",
|
||||
"id": "TimeRange",
|
||||
@@ -1199,6 +1411,20 @@
|
||||
}
|
||||
},
|
||||
"type": "object"
|
||||
},
|
||||
"UserList": {
|
||||
"description": "Wrapper for UserList Field value.",
|
||||
"id": "UserList",
|
||||
"properties": {
|
||||
"values": {
|
||||
"description": "User values.",
|
||||
"items": {
|
||||
"$ref": "SingleUser"
|
||||
},
|
||||
"type": "array"
|
||||
}
|
||||
},
|
||||
"type": "object"
|
||||
}
|
||||
},
|
||||
"servicePath": "",
|
||||
|
||||
Reference in New Issue
Block a user