Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/common-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ jobs:
- uses: actions/setup-node@v3
with:
node-version: '20.x'
registry-url: "https://registry.npmjs.org"

- name: Install Packages
run: npm install
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/common-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ jobs:
- uses: actions/setup-node@v1
with:
node-version: '20.x'
registry-url: "https://registry.npmjs.org"

- name: Install Packages
run: npm install
Expand Down
1 change: 0 additions & 1 deletion jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ module.exports = {
"src/.*/model/request",
"src/.*/model/response",
"src/.*/model/options",
"src/utils/validations",
],
testEnvironmentOptions: {
"url": "https://skyflow-test.com"
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "skyflow-node",
"version": "2.1.0-beta.1-dev.956e5c7",
"version": "2.2.1-beta.1-dev.92e32df",
"description": "Skyflow SDK for Node.js",
"main": "./lib/index.js",
"module": "./lib/index.js",
Expand Down
8 changes: 4 additions & 4 deletions src/ _generated_/rest/Client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import { Records } from "./api/resources/records/client/Client";
import { Tokens } from "./api/resources/tokens/client/Client";
import { Query } from "./api/resources/query/client/Client";
import { Authentication } from "./api/resources/authentication/client/Client";
import { Deprecated } from "./api/resources/deprecated/client/Client";
import { Guardrails } from "./api/resources/guardrails/client/Client";
import { Strings } from "./api/resources/strings/client/Client";
import { Files } from "./api/resources/files/client/Client";

Expand Down Expand Up @@ -42,7 +42,7 @@ export class SkyflowClient {
protected _tokens: Tokens | undefined;
protected _query: Query | undefined;
protected _authentication: Authentication | undefined;
protected _deprecated: Deprecated | undefined;
protected _guardrails: Guardrails | undefined;
protected _strings: Strings | undefined;
protected _files: Files | undefined;

Expand Down Expand Up @@ -72,8 +72,8 @@ export class SkyflowClient {
return (this._authentication ??= new Authentication(this._options));
}

public get deprecated(): Deprecated {
return (this._deprecated ??= new Deprecated(this._options));
public get guardrails(): Guardrails {
return (this._guardrails ??= new Guardrails(this._options));
}

public get strings(): Strings {
Expand Down
305 changes: 0 additions & 305 deletions src/ _generated_/rest/api/resources/deprecated/client/Client.ts

This file was deleted.

This file was deleted.

Loading