Skip to content

Commit 7ce2ab5

Browse files
Merge pull request #262 from skyflowapi/release/25.11.1
SK-2391/Release/25.11.1
2 parents 6c7c732 + 38ded50 commit 7ce2ab5

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/common-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- uses: actions/setup-node@v1
2020
with:
2121
node-version: '20.x'
22-
registry-url: "https://registry.npmjs.org"
22+
# registry-url: "https://registry.npmjs.org"
2323

2424
- name: Install Packages
2525
run: npm install

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "skyflow-node",
3-
"version": "2.0.0",
3+
"version": "1.14.2-dev.e8b58cc",
44
"description": "Skyflow SDK for Node.js",
55
"main": "./lib/index.js",
66
"module": "./lib/index.js",

src/service-account/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import { ServiceAccountResponseError } from '../vault/types';
1010
import { WithRawResponse } from '../ _generated_/rest/core';
1111

1212
export type BearerTokenOptions = {
13-
ctx?: string,
13+
ctx?: string | Record<string, any>,
1414
roleIDs?: string[],
1515
logLevel?: LogLevel,
1616
}
@@ -27,7 +27,7 @@ export type SignedDataTokensResponse = {
2727
export type SignedDataTokensOptions = {
2828
dataTokens: string[],
2929
timeToLive?: number,
30-
ctx?: string,
30+
ctx?: string | Record<string, any>,
3131
logLevel?: LogLevel,
3232
}
3333

0 commit comments

Comments
 (0)