Skip to content

Commit

Permalink
Merge pull request #92 from mkusaka/update-20221014T000553
Browse files Browse the repository at this point in the history
update 20221014T000553
  • Loading branch information
mkusaka authored Oct 14, 2022
2 parents cbd6de3 + 89985a1 commit e50dcf1
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
8 changes: 8 additions & 0 deletions client/services/ContextService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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<{
/**
Expand All @@ -217,6 +222,9 @@ export class ContextService {
path: {
"context-id": contextId,
},
query: {
"page-token": pageToken,
},
});
}
/**
Expand Down
10 changes: 10 additions & 0 deletions swagger.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": {
Expand Down

0 comments on commit e50dcf1

Please sign in to comment.