@botpress/client 1.17.1 → 1.19.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 +67 -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
|
@@ -5509,6 +5509,7 @@ interface CreateBotResponse$1 {
|
|
|
5509
5509
|
interfaces?: {
|
|
5510
5510
|
[k: string]: {
|
|
5511
5511
|
integrationId: string;
|
|
5512
|
+
interfaceId: string;
|
|
5512
5513
|
};
|
|
5513
5514
|
};
|
|
5514
5515
|
/**
|
|
@@ -6134,6 +6135,7 @@ interface UpdateBotResponse$1 {
|
|
|
6134
6135
|
interfaces?: {
|
|
6135
6136
|
[k: string]: {
|
|
6136
6137
|
integrationId: string;
|
|
6138
|
+
interfaceId: string;
|
|
6137
6139
|
};
|
|
6138
6140
|
};
|
|
6139
6141
|
/**
|
|
@@ -6591,6 +6593,7 @@ interface GetBotResponse$1 {
|
|
|
6591
6593
|
interfaces?: {
|
|
6592
6594
|
[k: string]: {
|
|
6593
6595
|
integrationId: string;
|
|
6596
|
+
interfaceId: string;
|
|
6594
6597
|
};
|
|
6595
6598
|
};
|
|
6596
6599
|
/**
|
|
@@ -7886,6 +7889,34 @@ interface GetAuditRecordsResponse$1 {
|
|
|
7886
7889
|
};
|
|
7887
7890
|
}
|
|
7888
7891
|
|
|
7892
|
+
interface SetWorkspacePreferenceRequestHeaders$1 {
|
|
7893
|
+
}
|
|
7894
|
+
interface SetWorkspacePreferenceRequestQuery$1 {
|
|
7895
|
+
}
|
|
7896
|
+
interface SetWorkspacePreferenceRequestParams$1 {
|
|
7897
|
+
key: string;
|
|
7898
|
+
}
|
|
7899
|
+
interface SetWorkspacePreferenceRequestBody$1 {
|
|
7900
|
+
value?: any;
|
|
7901
|
+
}
|
|
7902
|
+
type SetWorkspacePreferenceInput$1 = SetWorkspacePreferenceRequestBody$1 & SetWorkspacePreferenceRequestHeaders$1 & SetWorkspacePreferenceRequestQuery$1 & SetWorkspacePreferenceRequestParams$1;
|
|
7903
|
+
interface SetWorkspacePreferenceResponse$1 {
|
|
7904
|
+
}
|
|
7905
|
+
|
|
7906
|
+
interface GetWorkspacePreferenceRequestHeaders$1 {
|
|
7907
|
+
}
|
|
7908
|
+
interface GetWorkspacePreferenceRequestQuery$1 {
|
|
7909
|
+
}
|
|
7910
|
+
interface GetWorkspacePreferenceRequestParams$1 {
|
|
7911
|
+
key: string;
|
|
7912
|
+
}
|
|
7913
|
+
interface GetWorkspacePreferenceRequestBody$1 {
|
|
7914
|
+
}
|
|
7915
|
+
type GetWorkspacePreferenceInput$1 = GetWorkspacePreferenceRequestBody$1 & GetWorkspacePreferenceRequestHeaders$1 & GetWorkspacePreferenceRequestQuery$1 & GetWorkspacePreferenceRequestParams$1;
|
|
7916
|
+
interface GetWorkspacePreferenceResponse$1 {
|
|
7917
|
+
value?: any;
|
|
7918
|
+
}
|
|
7919
|
+
|
|
7889
7920
|
interface ListWorkspaceMembersRequestHeaders$1 {
|
|
7890
7921
|
}
|
|
7891
7922
|
interface ListWorkspaceMembersRequestQuery$1 {
|
|
@@ -13928,6 +13959,8 @@ declare class Client$7 {
|
|
|
13928
13959
|
readonly listPublicWorkspaces: (input: ListPublicWorkspacesInput$1) => Promise<ListPublicWorkspacesResponse$1>;
|
|
13929
13960
|
readonly deleteWorkspace: (input: DeleteWorkspaceInput$1) => Promise<DeleteWorkspaceResponse$1>;
|
|
13930
13961
|
readonly getAuditRecords: (input: GetAuditRecordsInput$1) => Promise<GetAuditRecordsResponse$1>;
|
|
13962
|
+
readonly setWorkspacePreference: (input: SetWorkspacePreferenceInput$1) => Promise<SetWorkspacePreferenceResponse$1>;
|
|
13963
|
+
readonly getWorkspacePreference: (input: GetWorkspacePreferenceInput$1) => Promise<GetWorkspacePreferenceResponse$1>;
|
|
13931
13964
|
readonly listWorkspaceMembers: (input: ListWorkspaceMembersInput$1) => Promise<ListWorkspaceMembersResponse$1>;
|
|
13932
13965
|
readonly getWorkspaceMember: (input: GetWorkspaceMemberInput$1) => Promise<GetWorkspaceMemberResponse$1>;
|
|
13933
13966
|
readonly deleteWorkspaceMember: (input: DeleteWorkspaceMemberInput$1) => Promise<DeleteWorkspaceMemberResponse$1>;
|
|
@@ -22236,6 +22269,7 @@ interface CreateBotResponse {
|
|
|
22236
22269
|
interfaces?: {
|
|
22237
22270
|
[k: string]: {
|
|
22238
22271
|
integrationId: string;
|
|
22272
|
+
interfaceId: string;
|
|
22239
22273
|
};
|
|
22240
22274
|
};
|
|
22241
22275
|
/**
|
|
@@ -22861,6 +22895,7 @@ interface UpdateBotResponse {
|
|
|
22861
22895
|
interfaces?: {
|
|
22862
22896
|
[k: string]: {
|
|
22863
22897
|
integrationId: string;
|
|
22898
|
+
interfaceId: string;
|
|
22864
22899
|
};
|
|
22865
22900
|
};
|
|
22866
22901
|
/**
|
|
@@ -23318,6 +23353,7 @@ interface GetBotResponse {
|
|
|
23318
23353
|
interfaces?: {
|
|
23319
23354
|
[k: string]: {
|
|
23320
23355
|
integrationId: string;
|
|
23356
|
+
interfaceId: string;
|
|
23321
23357
|
};
|
|
23322
23358
|
};
|
|
23323
23359
|
/**
|
|
@@ -24613,6 +24649,34 @@ interface GetAuditRecordsResponse {
|
|
|
24613
24649
|
};
|
|
24614
24650
|
}
|
|
24615
24651
|
|
|
24652
|
+
interface SetWorkspacePreferenceRequestHeaders {
|
|
24653
|
+
}
|
|
24654
|
+
interface SetWorkspacePreferenceRequestQuery {
|
|
24655
|
+
}
|
|
24656
|
+
interface SetWorkspacePreferenceRequestParams {
|
|
24657
|
+
key: string;
|
|
24658
|
+
}
|
|
24659
|
+
interface SetWorkspacePreferenceRequestBody {
|
|
24660
|
+
value?: any;
|
|
24661
|
+
}
|
|
24662
|
+
type SetWorkspacePreferenceInput = SetWorkspacePreferenceRequestBody & SetWorkspacePreferenceRequestHeaders & SetWorkspacePreferenceRequestQuery & SetWorkspacePreferenceRequestParams;
|
|
24663
|
+
interface SetWorkspacePreferenceResponse {
|
|
24664
|
+
}
|
|
24665
|
+
|
|
24666
|
+
interface GetWorkspacePreferenceRequestHeaders {
|
|
24667
|
+
}
|
|
24668
|
+
interface GetWorkspacePreferenceRequestQuery {
|
|
24669
|
+
}
|
|
24670
|
+
interface GetWorkspacePreferenceRequestParams {
|
|
24671
|
+
key: string;
|
|
24672
|
+
}
|
|
24673
|
+
interface GetWorkspacePreferenceRequestBody {
|
|
24674
|
+
}
|
|
24675
|
+
type GetWorkspacePreferenceInput = GetWorkspacePreferenceRequestBody & GetWorkspacePreferenceRequestHeaders & GetWorkspacePreferenceRequestQuery & GetWorkspacePreferenceRequestParams;
|
|
24676
|
+
interface GetWorkspacePreferenceResponse {
|
|
24677
|
+
value?: any;
|
|
24678
|
+
}
|
|
24679
|
+
|
|
24616
24680
|
interface ListWorkspaceMembersRequestHeaders {
|
|
24617
24681
|
}
|
|
24618
24682
|
interface ListWorkspaceMembersRequestQuery {
|
|
@@ -33320,6 +33384,7 @@ interface Bot {
|
|
|
33320
33384
|
interfaces?: {
|
|
33321
33385
|
[k: string]: {
|
|
33322
33386
|
integrationId: string;
|
|
33387
|
+
interfaceId: string;
|
|
33323
33388
|
};
|
|
33324
33389
|
};
|
|
33325
33390
|
/**
|
|
@@ -35184,6 +35249,8 @@ declare class Client$1 {
|
|
|
35184
35249
|
readonly listPublicWorkspaces: (input: ListPublicWorkspacesInput) => Promise<ListPublicWorkspacesResponse>;
|
|
35185
35250
|
readonly deleteWorkspace: (input: DeleteWorkspaceInput) => Promise<DeleteWorkspaceResponse>;
|
|
35186
35251
|
readonly getAuditRecords: (input: GetAuditRecordsInput) => Promise<GetAuditRecordsResponse>;
|
|
35252
|
+
readonly setWorkspacePreference: (input: SetWorkspacePreferenceInput) => Promise<SetWorkspacePreferenceResponse>;
|
|
35253
|
+
readonly getWorkspacePreference: (input: GetWorkspacePreferenceInput) => Promise<GetWorkspacePreferenceResponse>;
|
|
35187
35254
|
readonly listWorkspaceMembers: (input: ListWorkspaceMembersInput) => Promise<ListWorkspaceMembersResponse>;
|
|
35188
35255
|
readonly getWorkspaceMember: (input: GetWorkspaceMemberInput) => Promise<GetWorkspaceMemberResponse>;
|
|
35189
35256
|
readonly deleteWorkspaceMember: (input: DeleteWorkspaceMemberInput) => Promise<DeleteWorkspaceMemberResponse>;
|