Skip to content

Commit

Permalink
Remove ItemsClient wrapper
Browse files Browse the repository at this point in the history
  • Loading branch information
zplata committed Dec 4, 2024
1 parent 0f401b6 commit eb3a096
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 196 deletions.
16 changes: 0 additions & 16 deletions src/wrapper/CollectionsClient.ts

This file was deleted.

173 changes: 0 additions & 173 deletions src/wrapper/ItemsClient.ts

This file was deleted.

7 changes: 0 additions & 7 deletions src/wrapper/WebflowClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,20 +3,13 @@ import { WebflowClient as FernClient } from "../Client";
import { OauthScope } from "../api/types/OAuthScope";
import * as core from "../core";
import * as errors from "../errors";
import { Client as Collections } from "./CollectionsClient";
import { SDK_VERSION } from "../version";

export class WebflowClient extends FernClient {
constructor(protected readonly _options: FernClient.Options) {
super(_options);
}

protected _collections: Collections | undefined;

public get collections(): Collections {
return (this._collections ??= new Collections(this._options));
}

/**
* @param clientId The OAuth client ID
* @param state The state
Expand Down

0 comments on commit eb3a096

Please sign in to comment.