Skip to content

Commit

Permalink
feat: exposing nlu type as interface property
Browse files Browse the repository at this point in the history
  • Loading branch information
zhihil committed Sep 19, 2023
1 parent d22eea4 commit e81bd7c
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions packages/api-sdk/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import { Client } from './client';
import { ClientOptions, PublicClient } from './publicClient';

export type { Client } from './client';
export * as Interface from './interface';
export type { PublicClient } from './publicClient';
export type { Flatten } from './types';

Expand Down
1 change: 1 addition & 0 deletions packages/api-sdk/src/interface.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export * as Resource from './resources/interface';
1 change: 1 addition & 0 deletions packages/api-sdk/src/resources/interface.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export * as Project from './project/interface';
1 change: 0 additions & 1 deletion packages/api-sdk/src/resources/project/interface.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
export enum NLUType {
VFNLU = 'vfnlu',
}

interface BaseUpdateNLUMetadataBody {
type: NLUType;
}
Expand Down

0 comments on commit e81bd7c

Please sign in to comment.