@botpress/client 1.17.1 → 1.18.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/bundle.cjs +11 -11
- package/dist/bundle.cjs.map +4 -4
- package/dist/index.cjs +3 -3
- package/dist/index.cjs.map +4 -4
- package/dist/index.d.ts +60 -0
- package/dist/index.mjs +3 -3
- package/dist/index.mjs.map +4 -4
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -7886,6 +7886,34 @@ interface GetAuditRecordsResponse$1 {
|
|
|
7886
7886
|
};
|
|
7887
7887
|
}
|
|
7888
7888
|
|
|
7889
|
+
interface SetWorkspacePreferenceRequestHeaders$1 {
|
|
7890
|
+
}
|
|
7891
|
+
interface SetWorkspacePreferenceRequestQuery$1 {
|
|
7892
|
+
}
|
|
7893
|
+
interface SetWorkspacePreferenceRequestParams$1 {
|
|
7894
|
+
key: string;
|
|
7895
|
+
}
|
|
7896
|
+
interface SetWorkspacePreferenceRequestBody$1 {
|
|
7897
|
+
value?: any;
|
|
7898
|
+
}
|
|
7899
|
+
type SetWorkspacePreferenceInput$1 = SetWorkspacePreferenceRequestBody$1 & SetWorkspacePreferenceRequestHeaders$1 & SetWorkspacePreferenceRequestQuery$1 & SetWorkspacePreferenceRequestParams$1;
|
|
7900
|
+
interface SetWorkspacePreferenceResponse$1 {
|
|
7901
|
+
}
|
|
7902
|
+
|
|
7903
|
+
interface GetWorkspacePreferenceRequestHeaders$1 {
|
|
7904
|
+
}
|
|
7905
|
+
interface GetWorkspacePreferenceRequestQuery$1 {
|
|
7906
|
+
}
|
|
7907
|
+
interface GetWorkspacePreferenceRequestParams$1 {
|
|
7908
|
+
key: string;
|
|
7909
|
+
}
|
|
7910
|
+
interface GetWorkspacePreferenceRequestBody$1 {
|
|
7911
|
+
}
|
|
7912
|
+
type GetWorkspacePreferenceInput$1 = GetWorkspacePreferenceRequestBody$1 & GetWorkspacePreferenceRequestHeaders$1 & GetWorkspacePreferenceRequestQuery$1 & GetWorkspacePreferenceRequestParams$1;
|
|
7913
|
+
interface GetWorkspacePreferenceResponse$1 {
|
|
7914
|
+
value?: any;
|
|
7915
|
+
}
|
|
7916
|
+
|
|
7889
7917
|
interface ListWorkspaceMembersRequestHeaders$1 {
|
|
7890
7918
|
}
|
|
7891
7919
|
interface ListWorkspaceMembersRequestQuery$1 {
|
|
@@ -13928,6 +13956,8 @@ declare class Client$7 {
|
|
|
13928
13956
|
readonly listPublicWorkspaces: (input: ListPublicWorkspacesInput$1) => Promise<ListPublicWorkspacesResponse$1>;
|
|
13929
13957
|
readonly deleteWorkspace: (input: DeleteWorkspaceInput$1) => Promise<DeleteWorkspaceResponse$1>;
|
|
13930
13958
|
readonly getAuditRecords: (input: GetAuditRecordsInput$1) => Promise<GetAuditRecordsResponse$1>;
|
|
13959
|
+
readonly setWorkspacePreference: (input: SetWorkspacePreferenceInput$1) => Promise<SetWorkspacePreferenceResponse$1>;
|
|
13960
|
+
readonly getWorkspacePreference: (input: GetWorkspacePreferenceInput$1) => Promise<GetWorkspacePreferenceResponse$1>;
|
|
13931
13961
|
readonly listWorkspaceMembers: (input: ListWorkspaceMembersInput$1) => Promise<ListWorkspaceMembersResponse$1>;
|
|
13932
13962
|
readonly getWorkspaceMember: (input: GetWorkspaceMemberInput$1) => Promise<GetWorkspaceMemberResponse$1>;
|
|
13933
13963
|
readonly deleteWorkspaceMember: (input: DeleteWorkspaceMemberInput$1) => Promise<DeleteWorkspaceMemberResponse$1>;
|
|
@@ -24613,6 +24643,34 @@ interface GetAuditRecordsResponse {
|
|
|
24613
24643
|
};
|
|
24614
24644
|
}
|
|
24615
24645
|
|
|
24646
|
+
interface SetWorkspacePreferenceRequestHeaders {
|
|
24647
|
+
}
|
|
24648
|
+
interface SetWorkspacePreferenceRequestQuery {
|
|
24649
|
+
}
|
|
24650
|
+
interface SetWorkspacePreferenceRequestParams {
|
|
24651
|
+
key: string;
|
|
24652
|
+
}
|
|
24653
|
+
interface SetWorkspacePreferenceRequestBody {
|
|
24654
|
+
value?: any;
|
|
24655
|
+
}
|
|
24656
|
+
type SetWorkspacePreferenceInput = SetWorkspacePreferenceRequestBody & SetWorkspacePreferenceRequestHeaders & SetWorkspacePreferenceRequestQuery & SetWorkspacePreferenceRequestParams;
|
|
24657
|
+
interface SetWorkspacePreferenceResponse {
|
|
24658
|
+
}
|
|
24659
|
+
|
|
24660
|
+
interface GetWorkspacePreferenceRequestHeaders {
|
|
24661
|
+
}
|
|
24662
|
+
interface GetWorkspacePreferenceRequestQuery {
|
|
24663
|
+
}
|
|
24664
|
+
interface GetWorkspacePreferenceRequestParams {
|
|
24665
|
+
key: string;
|
|
24666
|
+
}
|
|
24667
|
+
interface GetWorkspacePreferenceRequestBody {
|
|
24668
|
+
}
|
|
24669
|
+
type GetWorkspacePreferenceInput = GetWorkspacePreferenceRequestBody & GetWorkspacePreferenceRequestHeaders & GetWorkspacePreferenceRequestQuery & GetWorkspacePreferenceRequestParams;
|
|
24670
|
+
interface GetWorkspacePreferenceResponse {
|
|
24671
|
+
value?: any;
|
|
24672
|
+
}
|
|
24673
|
+
|
|
24616
24674
|
interface ListWorkspaceMembersRequestHeaders {
|
|
24617
24675
|
}
|
|
24618
24676
|
interface ListWorkspaceMembersRequestQuery {
|
|
@@ -35184,6 +35242,8 @@ declare class Client$1 {
|
|
|
35184
35242
|
readonly listPublicWorkspaces: (input: ListPublicWorkspacesInput) => Promise<ListPublicWorkspacesResponse>;
|
|
35185
35243
|
readonly deleteWorkspace: (input: DeleteWorkspaceInput) => Promise<DeleteWorkspaceResponse>;
|
|
35186
35244
|
readonly getAuditRecords: (input: GetAuditRecordsInput) => Promise<GetAuditRecordsResponse>;
|
|
35245
|
+
readonly setWorkspacePreference: (input: SetWorkspacePreferenceInput) => Promise<SetWorkspacePreferenceResponse>;
|
|
35246
|
+
readonly getWorkspacePreference: (input: GetWorkspacePreferenceInput) => Promise<GetWorkspacePreferenceResponse>;
|
|
35187
35247
|
readonly listWorkspaceMembers: (input: ListWorkspaceMembersInput) => Promise<ListWorkspaceMembersResponse>;
|
|
35188
35248
|
readonly getWorkspaceMember: (input: GetWorkspaceMemberInput) => Promise<GetWorkspaceMemberResponse>;
|
|
35189
35249
|
readonly deleteWorkspaceMember: (input: DeleteWorkspaceMemberInput) => Promise<DeleteWorkspaceMemberResponse>;
|