@botpress/client 1.15.2 → 1.15.3
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 +66 -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
|
@@ -6938,6 +6938,37 @@ interface GetBotVersionResponse$1 {
|
|
|
6938
6938
|
url: string;
|
|
6939
6939
|
}
|
|
6940
6940
|
|
|
6941
|
+
interface GetBotJsonRequestHeaders$1 {
|
|
6942
|
+
}
|
|
6943
|
+
interface GetBotJsonRequestQuery$1 {
|
|
6944
|
+
}
|
|
6945
|
+
interface GetBotJsonRequestParams$1 {
|
|
6946
|
+
id: string;
|
|
6947
|
+
}
|
|
6948
|
+
interface GetBotJsonRequestBody$1 {
|
|
6949
|
+
}
|
|
6950
|
+
type GetBotJsonInput$1 = GetBotJsonRequestBody$1 & GetBotJsonRequestHeaders$1 & GetBotJsonRequestQuery$1 & GetBotJsonRequestParams$1;
|
|
6951
|
+
interface GetBotJsonResponse$1 {
|
|
6952
|
+
[k: string]: any;
|
|
6953
|
+
}
|
|
6954
|
+
|
|
6955
|
+
interface PublishFromBotJsonRequestHeaders$1 {
|
|
6956
|
+
}
|
|
6957
|
+
interface PublishFromBotJsonRequestQuery$1 {
|
|
6958
|
+
}
|
|
6959
|
+
interface PublishFromBotJsonRequestParams$1 {
|
|
6960
|
+
id: string;
|
|
6961
|
+
}
|
|
6962
|
+
interface PublishFromBotJsonRequestBody$1 {
|
|
6963
|
+
botJson: {
|
|
6964
|
+
[k: string]: any;
|
|
6965
|
+
};
|
|
6966
|
+
}
|
|
6967
|
+
type PublishFromBotJsonInput$1 = PublishFromBotJsonRequestBody$1 & PublishFromBotJsonRequestHeaders$1 & PublishFromBotJsonRequestQuery$1 & PublishFromBotJsonRequestParams$1;
|
|
6968
|
+
interface PublishFromBotJsonResponse$1 {
|
|
6969
|
+
[k: string]: any;
|
|
6970
|
+
}
|
|
6971
|
+
|
|
6941
6972
|
interface CreateBotVersionRequestHeaders$1 {
|
|
6942
6973
|
}
|
|
6943
6974
|
interface CreateBotVersionRequestQuery$1 {
|
|
@@ -13343,6 +13374,8 @@ declare class Client$7 {
|
|
|
13343
13374
|
readonly listBotIssueEvents: (input: ListBotIssueEventsInput$1) => Promise<ListBotIssueEventsResponse$1>;
|
|
13344
13375
|
readonly listBotVersions: (input: ListBotVersionsInput$1) => Promise<ListBotVersionsResponse$1>;
|
|
13345
13376
|
readonly getBotVersion: (input: GetBotVersionInput$1) => Promise<GetBotVersionResponse$1>;
|
|
13377
|
+
readonly getBotJson: (input: GetBotJsonInput$1) => Promise<GetBotJsonResponse$1>;
|
|
13378
|
+
readonly publishFromBotJson: (input: PublishFromBotJsonInput$1) => Promise<PublishFromBotJsonResponse$1>;
|
|
13346
13379
|
readonly createBotVersion: (input: CreateBotVersionInput$1) => Promise<CreateBotVersionResponse$1>;
|
|
13347
13380
|
readonly deployBotVersion: (input: DeployBotVersionInput$1) => Promise<DeployBotVersionResponse$1>;
|
|
13348
13381
|
readonly createIntegrationShareableId: (input: CreateIntegrationShareableIdInput$1) => Promise<CreateIntegrationShareableIdResponse$1>;
|
|
@@ -23105,6 +23138,37 @@ interface GetBotVersionResponse {
|
|
|
23105
23138
|
url: string;
|
|
23106
23139
|
}
|
|
23107
23140
|
|
|
23141
|
+
interface GetBotJsonRequestHeaders {
|
|
23142
|
+
}
|
|
23143
|
+
interface GetBotJsonRequestQuery {
|
|
23144
|
+
}
|
|
23145
|
+
interface GetBotJsonRequestParams {
|
|
23146
|
+
id: string;
|
|
23147
|
+
}
|
|
23148
|
+
interface GetBotJsonRequestBody {
|
|
23149
|
+
}
|
|
23150
|
+
type GetBotJsonInput = GetBotJsonRequestBody & GetBotJsonRequestHeaders & GetBotJsonRequestQuery & GetBotJsonRequestParams;
|
|
23151
|
+
interface GetBotJsonResponse {
|
|
23152
|
+
[k: string]: any;
|
|
23153
|
+
}
|
|
23154
|
+
|
|
23155
|
+
interface PublishFromBotJsonRequestHeaders {
|
|
23156
|
+
}
|
|
23157
|
+
interface PublishFromBotJsonRequestQuery {
|
|
23158
|
+
}
|
|
23159
|
+
interface PublishFromBotJsonRequestParams {
|
|
23160
|
+
id: string;
|
|
23161
|
+
}
|
|
23162
|
+
interface PublishFromBotJsonRequestBody {
|
|
23163
|
+
botJson: {
|
|
23164
|
+
[k: string]: any;
|
|
23165
|
+
};
|
|
23166
|
+
}
|
|
23167
|
+
type PublishFromBotJsonInput = PublishFromBotJsonRequestBody & PublishFromBotJsonRequestHeaders & PublishFromBotJsonRequestQuery & PublishFromBotJsonRequestParams;
|
|
23168
|
+
interface PublishFromBotJsonResponse {
|
|
23169
|
+
[k: string]: any;
|
|
23170
|
+
}
|
|
23171
|
+
|
|
23108
23172
|
interface CreateBotVersionRequestHeaders {
|
|
23109
23173
|
}
|
|
23110
23174
|
interface CreateBotVersionRequestQuery {
|
|
@@ -34031,6 +34095,8 @@ declare class Client$1 {
|
|
|
34031
34095
|
readonly listBotIssueEvents: (input: ListBotIssueEventsInput) => Promise<ListBotIssueEventsResponse>;
|
|
34032
34096
|
readonly listBotVersions: (input: ListBotVersionsInput) => Promise<ListBotVersionsResponse>;
|
|
34033
34097
|
readonly getBotVersion: (input: GetBotVersionInput) => Promise<GetBotVersionResponse>;
|
|
34098
|
+
readonly getBotJson: (input: GetBotJsonInput) => Promise<GetBotJsonResponse>;
|
|
34099
|
+
readonly publishFromBotJson: (input: PublishFromBotJsonInput) => Promise<PublishFromBotJsonResponse>;
|
|
34034
34100
|
readonly createBotVersion: (input: CreateBotVersionInput) => Promise<CreateBotVersionResponse>;
|
|
34035
34101
|
readonly deployBotVersion: (input: DeployBotVersionInput) => Promise<DeployBotVersionResponse>;
|
|
34036
34102
|
readonly createIntegrationShareableId: (input: CreateIntegrationShareableIdInput) => Promise<CreateIntegrationShareableIdResponse>;
|