Skip to content

Commit

Permalink
Add optional secrets arg to publish method
Browse files Browse the repository at this point in the history
  • Loading branch information
dotNomad committed Sep 16, 2024
1 parent cf59b50 commit 7cb3b56
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions extensions/vscode/src/api/resources/ContentRecords.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,10 +72,12 @@ export class ContentRecords {
accountName: string,
configName: string,
dir: string,
secrets?: Record<string, string>,
) {
const data = {
account: accountName,
config: configName,
secrets: secrets,
};
const encodedTarget = encodeURIComponent(targetName);
return this.client.post<{ localId: string }>(
Expand Down

0 comments on commit 7cb3b56

Please sign in to comment.