From f7095a60024600d2c2dc4a263912c648b5125bcd Mon Sep 17 00:00:00 2001 From: Dominik Schmidt Date: Sun, 9 Aug 2026 16:08:35 +0000 Subject: [PATCH] feat: add pendingOperations facet to driveItem --- api/openapi-spec/v1.0.yaml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/api/openapi-spec/v1.0.yaml b/api/openapi-spec/v1.0.yaml index a354f86..42a55c7 100644 --- a/api/openapi-spec/v1.0.yaml +++ b/api/openapi-spec/v1.0.yaml @@ -5140,6 +5140,9 @@ components: readOnly: true deleted: $ref: '#/components/schemas/deleted' + pendingOperations: + description: Present while operations affecting the item's content have not completed. Read-only. + $ref: '#/components/schemas/pendingOperations' file: $ref: '#/components/schemas/openGraphFile' fileSystemInfo: @@ -5459,6 +5462,29 @@ components: type: string format: date-time description: Represents the date and time the photo was taken. Read-only. + pendingOperations: + type: object + readOnly: true + description: | + Present while operations affecting the item's content have not + completed, whether still queued or already running. While present, + requests for the item's content fail, the content is withheld until + processing completes and the facet disappears. + properties: + pendingContentUpdate: + type: object + readOnly: true + description: | + An update to the item's content has not completed, for example + post-processing such as virus scanning after an upload. In MS + Graph reads may return stale data while this is present, in + OpenCloud content requests fail instead. + properties: + queuedDateTime: + type: string + format: date-time + description: Time the operation was queued. May be absent. Read-only. + readOnly: true motionPhoto: type: object readOnly: true