@botpress/client 0.26.1 → 0.26.2
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/.turbo/turbo-build.log +7 -7
- package/.turbo/turbo-generate.log +1 -1
- package/dist/bundle.cjs +7 -7
- package/dist/bundle.cjs.map +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +52 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -2260,6 +2260,10 @@ interface ListPublicIntegrationsResponse {
|
|
|
2260
2260
|
* Idicates if the integration is public. Public integrations are available to all and cannot be updated without creating a new version.
|
|
2261
2261
|
*/
|
|
2262
2262
|
public: boolean;
|
|
2263
|
+
/**
|
|
2264
|
+
* Status of the integration version verification
|
|
2265
|
+
*/
|
|
2266
|
+
verificationStatus: "unapproved" | "pending" | "approved" | "rejected";
|
|
2263
2267
|
ownerWorkspace: {
|
|
2264
2268
|
id: string;
|
|
2265
2269
|
handle: string | null;
|
|
@@ -2574,6 +2578,10 @@ interface GetPublicIntegrationByIdResponse {
|
|
|
2574
2578
|
* Idicates if the integration is public. Public integrations are available to all and cannot be updated without creating a new version.
|
|
2575
2579
|
*/
|
|
2576
2580
|
public: boolean;
|
|
2581
|
+
/**
|
|
2582
|
+
* Status of the integration version verification
|
|
2583
|
+
*/
|
|
2584
|
+
verificationStatus: "unapproved" | "pending" | "approved" | "rejected";
|
|
2577
2585
|
/**
|
|
2578
2586
|
* Secrets are integration-wide values available in the code via environment variables formatted with a SECRET_ prefix followed by your secret name. A secret name must respect SCREAMING_SNAKE casing.
|
|
2579
2587
|
*/
|
|
@@ -2887,6 +2895,10 @@ interface GetPublicIntegrationResponse {
|
|
|
2887
2895
|
* Idicates if the integration is public. Public integrations are available to all and cannot be updated without creating a new version.
|
|
2888
2896
|
*/
|
|
2889
2897
|
public: boolean;
|
|
2898
|
+
/**
|
|
2899
|
+
* Status of the integration version verification
|
|
2900
|
+
*/
|
|
2901
|
+
verificationStatus: "unapproved" | "pending" | "approved" | "rejected";
|
|
2890
2902
|
/**
|
|
2891
2903
|
* Secrets are integration-wide values available in the code via environment variables formatted with a SECRET_ prefix followed by your secret name. A secret name must respect SCREAMING_SNAKE casing.
|
|
2892
2904
|
*/
|
|
@@ -3156,6 +3168,10 @@ interface CreateBotResponse {
|
|
|
3156
3168
|
* Idicates if the integration is public. Public integrations are available to all and cannot be updated without creating a new version.
|
|
3157
3169
|
*/
|
|
3158
3170
|
public: boolean;
|
|
3171
|
+
/**
|
|
3172
|
+
* Status of the integration version verification
|
|
3173
|
+
*/
|
|
3174
|
+
verificationStatus: "unapproved" | "pending" | "approved" | "rejected";
|
|
3159
3175
|
};
|
|
3160
3176
|
};
|
|
3161
3177
|
/**
|
|
@@ -3634,6 +3650,10 @@ interface UpdateBotResponse {
|
|
|
3634
3650
|
* Idicates if the integration is public. Public integrations are available to all and cannot be updated without creating a new version.
|
|
3635
3651
|
*/
|
|
3636
3652
|
public: boolean;
|
|
3653
|
+
/**
|
|
3654
|
+
* Status of the integration version verification
|
|
3655
|
+
*/
|
|
3656
|
+
verificationStatus: "unapproved" | "pending" | "approved" | "rejected";
|
|
3637
3657
|
};
|
|
3638
3658
|
};
|
|
3639
3659
|
/**
|
|
@@ -3989,6 +4009,10 @@ interface GetBotResponse {
|
|
|
3989
4009
|
* Idicates if the integration is public. Public integrations are available to all and cannot be updated without creating a new version.
|
|
3990
4010
|
*/
|
|
3991
4011
|
public: boolean;
|
|
4012
|
+
/**
|
|
4013
|
+
* Status of the integration version verification
|
|
4014
|
+
*/
|
|
4015
|
+
verificationStatus: "unapproved" | "pending" | "approved" | "rejected";
|
|
3992
4016
|
};
|
|
3993
4017
|
};
|
|
3994
4018
|
/**
|
|
@@ -5704,6 +5728,10 @@ interface CreateIntegrationResponse {
|
|
|
5704
5728
|
* Idicates if the integration is public. Public integrations are available to all and cannot be updated without creating a new version.
|
|
5705
5729
|
*/
|
|
5706
5730
|
public: boolean;
|
|
5731
|
+
/**
|
|
5732
|
+
* Status of the integration version verification
|
|
5733
|
+
*/
|
|
5734
|
+
verificationStatus: "unapproved" | "pending" | "approved" | "rejected";
|
|
5707
5735
|
/**
|
|
5708
5736
|
* Secrets are integration-wide values available in the code via environment variables formatted with a SECRET_ prefix followed by your secret name. A secret name must respect SCREAMING_SNAKE casing.
|
|
5709
5737
|
*/
|
|
@@ -6258,6 +6286,10 @@ interface UpdateIntegrationResponse {
|
|
|
6258
6286
|
* Idicates if the integration is public. Public integrations are available to all and cannot be updated without creating a new version.
|
|
6259
6287
|
*/
|
|
6260
6288
|
public: boolean;
|
|
6289
|
+
/**
|
|
6290
|
+
* Status of the integration version verification
|
|
6291
|
+
*/
|
|
6292
|
+
verificationStatus: "unapproved" | "pending" | "approved" | "rejected";
|
|
6261
6293
|
/**
|
|
6262
6294
|
* Secrets are integration-wide values available in the code via environment variables formatted with a SECRET_ prefix followed by your secret name. A secret name must respect SCREAMING_SNAKE casing.
|
|
6263
6295
|
*/
|
|
@@ -6316,6 +6348,10 @@ interface ListIntegrationsResponse {
|
|
|
6316
6348
|
* Idicates if the integration is public. Public integrations are available to all and cannot be updated without creating a new version.
|
|
6317
6349
|
*/
|
|
6318
6350
|
public: boolean;
|
|
6351
|
+
/**
|
|
6352
|
+
* Status of the integration version verification
|
|
6353
|
+
*/
|
|
6354
|
+
verificationStatus: "unapproved" | "pending" | "approved" | "rejected";
|
|
6319
6355
|
}[];
|
|
6320
6356
|
meta: {
|
|
6321
6357
|
/**
|
|
@@ -6625,6 +6661,10 @@ interface GetIntegrationResponse {
|
|
|
6625
6661
|
* Idicates if the integration is public. Public integrations are available to all and cannot be updated without creating a new version.
|
|
6626
6662
|
*/
|
|
6627
6663
|
public: boolean;
|
|
6664
|
+
/**
|
|
6665
|
+
* Status of the integration version verification
|
|
6666
|
+
*/
|
|
6667
|
+
verificationStatus: "unapproved" | "pending" | "approved" | "rejected";
|
|
6628
6668
|
/**
|
|
6629
6669
|
* Secrets are integration-wide values available in the code via environment variables formatted with a SECRET_ prefix followed by your secret name. A secret name must respect SCREAMING_SNAKE casing.
|
|
6630
6670
|
*/
|
|
@@ -6955,6 +6995,10 @@ interface GetIntegrationByNameResponse {
|
|
|
6955
6995
|
* Idicates if the integration is public. Public integrations are available to all and cannot be updated without creating a new version.
|
|
6956
6996
|
*/
|
|
6957
6997
|
public: boolean;
|
|
6998
|
+
/**
|
|
6999
|
+
* Status of the integration version verification
|
|
7000
|
+
*/
|
|
7001
|
+
verificationStatus: "unapproved" | "pending" | "approved" | "rejected";
|
|
6958
7002
|
/**
|
|
6959
7003
|
* Secrets are integration-wide values available in the code via environment variables formatted with a SECRET_ prefix followed by your secret name. A secret name must respect SCREAMING_SNAKE casing.
|
|
6960
7004
|
*/
|
|
@@ -9623,6 +9667,10 @@ interface Bot {
|
|
|
9623
9667
|
* Idicates if the integration is public. Public integrations are available to all and cannot be updated without creating a new version.
|
|
9624
9668
|
*/
|
|
9625
9669
|
public: boolean;
|
|
9670
|
+
/**
|
|
9671
|
+
* Status of the integration version verification
|
|
9672
|
+
*/
|
|
9673
|
+
verificationStatus: "unapproved" | "pending" | "approved" | "rejected";
|
|
9626
9674
|
};
|
|
9627
9675
|
};
|
|
9628
9676
|
/**
|
|
@@ -10132,6 +10180,10 @@ interface Integration {
|
|
|
10132
10180
|
* Idicates if the integration is public. Public integrations are available to all and cannot be updated without creating a new version.
|
|
10133
10181
|
*/
|
|
10134
10182
|
public: boolean;
|
|
10183
|
+
/**
|
|
10184
|
+
* Status of the integration version verification
|
|
10185
|
+
*/
|
|
10186
|
+
verificationStatus: "unapproved" | "pending" | "approved" | "rejected";
|
|
10135
10187
|
/**
|
|
10136
10188
|
* Secrets are integration-wide values available in the code via environment variables formatted with a SECRET_ prefix followed by your secret name. A secret name must respect SCREAMING_SNAKE casing.
|
|
10137
10189
|
*/
|