From 89985a1d299c9356bea6ddaee5382c3901e7a2a3 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Fri, 14 Oct 2022 00:05:53 +0000 Subject: [PATCH] daily update 20221014T000553 --- client/services/ContextService.ts | 8 ++++++++ swagger.json | 10 ++++++++++ 2 files changed, 18 insertions(+) diff --git a/client/services/ContextService.ts b/client/services/ContextService.ts index ba19cee..6968023 100644 --- a/client/services/ContextService.ts +++ b/client/services/ContextService.ts @@ -186,11 +186,16 @@ export class ContextService { */ public static listEnvironmentVariablesFromContext({ contextId, + pageToken, }: { /** * ID of the context (UUID) */ contextId: string; + /** + * A token to retrieve the next page of results. + */ + pageToken?: string; }): CancelablePromise<{ items: Array<{ /** @@ -217,6 +222,9 @@ export class ContextService { path: { "context-id": contextId, }, + query: { + "page-token": pageToken, + }, }); } /** diff --git a/swagger.json b/swagger.json index b421d9a..4f9d982 100644 --- a/swagger.json +++ b/swagger.json @@ -374,6 +374,16 @@ "format": "uuid", "type": "string" } + }, + { + "allowEmptyValue": true, + "description": "A token to retrieve the next page of results.", + "in": "query", + "name": "page-token", + "required": false, + "schema": { + "type": "string" + } } ], "responses": {