@botpress/client 1.7.0 → 1.9.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.map +2 -2
- package/dist/index.cjs.map +2 -2
- package/dist/index.d.ts +4 -8
- package/dist/index.mjs.map +2 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1816,11 +1816,9 @@ interface ConfigureIntegrationRequestBody$1 {
|
|
|
1816
1816
|
*/
|
|
1817
1817
|
scheduleRegisterCall?: "hourly" | "daily" | "weekly" | "bi-weekly" | "monthly" | "bi-monthly" | "quarterly" | "yearly";
|
|
1818
1818
|
/**
|
|
1819
|
-
* **EXPERIMENTAL** Sandbox identifiers for the integration. Setting this to null will remove all sandbox identifiers.
|
|
1819
|
+
* **EXPERIMENTAL** Sandbox identifiers for the integration. Setting this to null will remove all sandbox identifiers. This is an experimental feature meant to be used by specific integrations.
|
|
1820
1820
|
*/
|
|
1821
|
-
sandboxIdentifiers?: {
|
|
1822
|
-
[k: string]: {} | null;
|
|
1823
|
-
} | null;
|
|
1821
|
+
sandboxIdentifiers?: {} | null;
|
|
1824
1822
|
}
|
|
1825
1823
|
type ConfigureIntegrationInput$1 = ConfigureIntegrationRequestBody$1 & ConfigureIntegrationRequestHeaders$1 & ConfigureIntegrationRequestQuery$1 & ConfigureIntegrationRequestParams$1;
|
|
1826
1824
|
interface ConfigureIntegrationResponse$1 {
|
|
@@ -17264,11 +17262,9 @@ interface ConfigureIntegrationRequestBody {
|
|
|
17264
17262
|
*/
|
|
17265
17263
|
scheduleRegisterCall?: "hourly" | "daily" | "weekly" | "bi-weekly" | "monthly" | "bi-monthly" | "quarterly" | "yearly";
|
|
17266
17264
|
/**
|
|
17267
|
-
* **EXPERIMENTAL** Sandbox identifiers for the integration. Setting this to null will remove all sandbox identifiers.
|
|
17265
|
+
* **EXPERIMENTAL** Sandbox identifiers for the integration. Setting this to null will remove all sandbox identifiers. This is an experimental feature meant to be used by specific integrations.
|
|
17268
17266
|
*/
|
|
17269
|
-
sandboxIdentifiers?: {
|
|
17270
|
-
[k: string]: {} | null;
|
|
17271
|
-
} | null;
|
|
17267
|
+
sandboxIdentifiers?: {} | null;
|
|
17272
17268
|
}
|
|
17273
17269
|
type ConfigureIntegrationInput = ConfigureIntegrationRequestBody & ConfigureIntegrationRequestHeaders & ConfigureIntegrationRequestQuery & ConfigureIntegrationRequestParams;
|
|
17274
17270
|
interface ConfigureIntegrationResponse {
|