@botpress/api 0.69.0 → 0.70.1
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/index.js +1195 -54
- package/dist/src/gen/state.d.ts +1111 -50
- package/package.json +1 -1
- package/src/gen/metadata.json +1 -1
- package/src/gen/openapi.json +1 -1
- package/src/gen/state.ts +1195 -54
package/dist/src/gen/state.d.ts
CHANGED
|
@@ -4710,6 +4710,17 @@ export declare const state: {
|
|
|
4710
4710
|
type: "boolean";
|
|
4711
4711
|
required: false;
|
|
4712
4712
|
};
|
|
4713
|
+
tags: {
|
|
4714
|
+
in: "query";
|
|
4715
|
+
type: "object";
|
|
4716
|
+
schema: {
|
|
4717
|
+
type: "object";
|
|
4718
|
+
additionalProperties: {
|
|
4719
|
+
type: "string";
|
|
4720
|
+
};
|
|
4721
|
+
};
|
|
4722
|
+
description: string;
|
|
4723
|
+
};
|
|
4713
4724
|
nextToken: {
|
|
4714
4725
|
in: "query";
|
|
4715
4726
|
description: string;
|
|
@@ -4762,6 +4773,13 @@ export declare const state: {
|
|
|
4762
4773
|
type: "string";
|
|
4763
4774
|
format: string;
|
|
4764
4775
|
};
|
|
4776
|
+
tags: {
|
|
4777
|
+
type: "object";
|
|
4778
|
+
additionalProperties: {
|
|
4779
|
+
type: "string";
|
|
4780
|
+
};
|
|
4781
|
+
description: string;
|
|
4782
|
+
};
|
|
4765
4783
|
};
|
|
4766
4784
|
required: string[];
|
|
4767
4785
|
};
|
|
@@ -7683,24 +7701,27 @@ export declare const state: {
|
|
|
7683
7701
|
};
|
|
7684
7702
|
parameters: {};
|
|
7685
7703
|
};
|
|
7686
|
-
|
|
7704
|
+
validateIntegrationCreation: {
|
|
7687
7705
|
name: string;
|
|
7688
7706
|
description: string;
|
|
7689
|
-
method: "
|
|
7690
|
-
path: string;
|
|
7707
|
+
method: "post";
|
|
7691
7708
|
section: "integration";
|
|
7692
|
-
|
|
7693
|
-
id: {
|
|
7694
|
-
type: "string";
|
|
7695
|
-
description: string;
|
|
7696
|
-
in: "path";
|
|
7697
|
-
};
|
|
7698
|
-
};
|
|
7709
|
+
path: string;
|
|
7699
7710
|
requestBody: {
|
|
7700
7711
|
description: string;
|
|
7701
7712
|
schema: {
|
|
7702
7713
|
type: "object";
|
|
7703
7714
|
properties: {
|
|
7715
|
+
name: {
|
|
7716
|
+
type: "string";
|
|
7717
|
+
maxLength: number;
|
|
7718
|
+
description: string;
|
|
7719
|
+
};
|
|
7720
|
+
version: {
|
|
7721
|
+
type: "string";
|
|
7722
|
+
maxLength: number;
|
|
7723
|
+
description: string;
|
|
7724
|
+
};
|
|
7704
7725
|
configuration: {
|
|
7705
7726
|
type: "object";
|
|
7706
7727
|
properties: {
|
|
@@ -7722,13 +7743,12 @@ export declare const state: {
|
|
|
7722
7743
|
identifier: {
|
|
7723
7744
|
type: "object";
|
|
7724
7745
|
properties: {
|
|
7746
|
+
required: {
|
|
7747
|
+
type: "boolean";
|
|
7748
|
+
};
|
|
7725
7749
|
linkTemplateScript: {
|
|
7726
7750
|
type: "string";
|
|
7727
7751
|
maxLength: number;
|
|
7728
|
-
nullable: true;
|
|
7729
|
-
};
|
|
7730
|
-
required: {
|
|
7731
|
-
type: "boolean";
|
|
7732
7752
|
};
|
|
7733
7753
|
};
|
|
7734
7754
|
additionalProperties: false;
|
|
@@ -7760,23 +7780,155 @@ export declare const state: {
|
|
|
7760
7780
|
identifier: {
|
|
7761
7781
|
type: "object";
|
|
7762
7782
|
properties: {
|
|
7783
|
+
required: {
|
|
7784
|
+
type: "boolean";
|
|
7785
|
+
};
|
|
7763
7786
|
linkTemplateScript: {
|
|
7764
7787
|
type: "string";
|
|
7765
7788
|
maxLength: number;
|
|
7766
|
-
nullable: true;
|
|
7767
|
-
};
|
|
7768
|
-
required: {
|
|
7769
|
-
type: "boolean";
|
|
7770
7789
|
};
|
|
7771
7790
|
};
|
|
7772
7791
|
additionalProperties: false;
|
|
7773
7792
|
};
|
|
7774
7793
|
};
|
|
7775
|
-
nullable: true;
|
|
7776
7794
|
additionalProperties: false;
|
|
7777
7795
|
};
|
|
7778
7796
|
description: string;
|
|
7779
7797
|
};
|
|
7798
|
+
states: {
|
|
7799
|
+
type: "object";
|
|
7800
|
+
additionalProperties: {
|
|
7801
|
+
type: "object";
|
|
7802
|
+
properties: {
|
|
7803
|
+
type: {
|
|
7804
|
+
type: "string";
|
|
7805
|
+
enum: string[];
|
|
7806
|
+
description: string;
|
|
7807
|
+
};
|
|
7808
|
+
schema: {
|
|
7809
|
+
type: "object";
|
|
7810
|
+
additionalProperties: true;
|
|
7811
|
+
description: string;
|
|
7812
|
+
};
|
|
7813
|
+
};
|
|
7814
|
+
required: string[];
|
|
7815
|
+
description: string;
|
|
7816
|
+
additionalProperties: false;
|
|
7817
|
+
};
|
|
7818
|
+
};
|
|
7819
|
+
events: {
|
|
7820
|
+
type: "object";
|
|
7821
|
+
additionalProperties: {
|
|
7822
|
+
type: "object";
|
|
7823
|
+
properties: {
|
|
7824
|
+
title: {
|
|
7825
|
+
type: "string";
|
|
7826
|
+
maxLength: number;
|
|
7827
|
+
description: string;
|
|
7828
|
+
};
|
|
7829
|
+
description: {
|
|
7830
|
+
type: "string";
|
|
7831
|
+
maxLength: number;
|
|
7832
|
+
description: string;
|
|
7833
|
+
};
|
|
7834
|
+
schema: {
|
|
7835
|
+
type: "object";
|
|
7836
|
+
additionalProperties: true;
|
|
7837
|
+
};
|
|
7838
|
+
};
|
|
7839
|
+
required: string[];
|
|
7840
|
+
description: string;
|
|
7841
|
+
additionalProperties: false;
|
|
7842
|
+
};
|
|
7843
|
+
};
|
|
7844
|
+
actions: {
|
|
7845
|
+
type: "object";
|
|
7846
|
+
additionalProperties: {
|
|
7847
|
+
type: "object";
|
|
7848
|
+
properties: {
|
|
7849
|
+
title: {
|
|
7850
|
+
type: "string";
|
|
7851
|
+
maxLength: number;
|
|
7852
|
+
description: string;
|
|
7853
|
+
};
|
|
7854
|
+
description: {
|
|
7855
|
+
type: "string";
|
|
7856
|
+
maxLength: number;
|
|
7857
|
+
description: string;
|
|
7858
|
+
};
|
|
7859
|
+
billable: {
|
|
7860
|
+
type: "boolean";
|
|
7861
|
+
};
|
|
7862
|
+
cacheable: {
|
|
7863
|
+
type: "boolean";
|
|
7864
|
+
};
|
|
7865
|
+
input: {
|
|
7866
|
+
type: "object";
|
|
7867
|
+
properties: {
|
|
7868
|
+
schema: {
|
|
7869
|
+
type: "object";
|
|
7870
|
+
additionalProperties: true;
|
|
7871
|
+
};
|
|
7872
|
+
};
|
|
7873
|
+
required: string[];
|
|
7874
|
+
additionalProperties: false;
|
|
7875
|
+
};
|
|
7876
|
+
output: {
|
|
7877
|
+
type: "object";
|
|
7878
|
+
properties: {
|
|
7879
|
+
schema: {
|
|
7880
|
+
type: "object";
|
|
7881
|
+
additionalProperties: true;
|
|
7882
|
+
};
|
|
7883
|
+
};
|
|
7884
|
+
required: string[];
|
|
7885
|
+
additionalProperties: false;
|
|
7886
|
+
};
|
|
7887
|
+
};
|
|
7888
|
+
required: string[];
|
|
7889
|
+
description: string;
|
|
7890
|
+
additionalProperties: false;
|
|
7891
|
+
};
|
|
7892
|
+
};
|
|
7893
|
+
entities: {
|
|
7894
|
+
type: "object";
|
|
7895
|
+
additionalProperties: {
|
|
7896
|
+
type: "object";
|
|
7897
|
+
properties: {
|
|
7898
|
+
title: {
|
|
7899
|
+
type: "string";
|
|
7900
|
+
maxLength: number;
|
|
7901
|
+
description: string;
|
|
7902
|
+
};
|
|
7903
|
+
description: {
|
|
7904
|
+
type: "string";
|
|
7905
|
+
maxLength: number;
|
|
7906
|
+
description: string;
|
|
7907
|
+
};
|
|
7908
|
+
schema: {
|
|
7909
|
+
type: "object";
|
|
7910
|
+
additionalProperties: true;
|
|
7911
|
+
};
|
|
7912
|
+
};
|
|
7913
|
+
required: string[];
|
|
7914
|
+
description: string;
|
|
7915
|
+
additionalProperties: false;
|
|
7916
|
+
};
|
|
7917
|
+
};
|
|
7918
|
+
identifier: {
|
|
7919
|
+
type: "object";
|
|
7920
|
+
properties: {
|
|
7921
|
+
fallbackHandlerScript: {
|
|
7922
|
+
type: "string";
|
|
7923
|
+
maxLength: number;
|
|
7924
|
+
};
|
|
7925
|
+
extractScript: {
|
|
7926
|
+
type: "string";
|
|
7927
|
+
maxLength: number;
|
|
7928
|
+
};
|
|
7929
|
+
};
|
|
7930
|
+
additionalProperties: false;
|
|
7931
|
+
};
|
|
7780
7932
|
channels: {
|
|
7781
7933
|
type: "object";
|
|
7782
7934
|
additionalProperties: {
|
|
@@ -7804,7 +7956,6 @@ export declare const state: {
|
|
|
7804
7956
|
};
|
|
7805
7957
|
required: string[];
|
|
7806
7958
|
description: string;
|
|
7807
|
-
nullable: true;
|
|
7808
7959
|
additionalProperties: false;
|
|
7809
7960
|
};
|
|
7810
7961
|
};
|
|
@@ -7847,7 +7998,6 @@ export declare const state: {
|
|
|
7847
7998
|
};
|
|
7848
7999
|
};
|
|
7849
8000
|
description: string;
|
|
7850
|
-
nullable: true;
|
|
7851
8001
|
additionalProperties: false;
|
|
7852
8002
|
};
|
|
7853
8003
|
};
|
|
@@ -7874,7 +8024,6 @@ export declare const state: {
|
|
|
7874
8024
|
};
|
|
7875
8025
|
};
|
|
7876
8026
|
description: string;
|
|
7877
|
-
nullable: true;
|
|
7878
8027
|
additionalProperties: false;
|
|
7879
8028
|
};
|
|
7880
8029
|
};
|
|
@@ -7882,46 +8031,960 @@ export declare const state: {
|
|
|
7882
8031
|
additionalProperties: false;
|
|
7883
8032
|
};
|
|
7884
8033
|
};
|
|
7885
|
-
|
|
8034
|
+
required: string[];
|
|
7886
8035
|
additionalProperties: false;
|
|
7887
8036
|
};
|
|
7888
8037
|
};
|
|
7889
|
-
|
|
8038
|
+
user: {
|
|
7890
8039
|
type: "object";
|
|
7891
8040
|
properties: {
|
|
7892
|
-
|
|
7893
|
-
type: "
|
|
7894
|
-
|
|
7895
|
-
|
|
8041
|
+
creation: {
|
|
8042
|
+
type: "object";
|
|
8043
|
+
properties: {
|
|
8044
|
+
enabled: {
|
|
8045
|
+
type: "boolean";
|
|
8046
|
+
description: string;
|
|
8047
|
+
};
|
|
8048
|
+
requiredTags: {
|
|
8049
|
+
type: "array";
|
|
8050
|
+
items: {
|
|
8051
|
+
type: "string";
|
|
8052
|
+
};
|
|
8053
|
+
description: string;
|
|
8054
|
+
};
|
|
8055
|
+
};
|
|
8056
|
+
required: string[];
|
|
8057
|
+
description: string;
|
|
8058
|
+
additionalProperties: false;
|
|
7896
8059
|
};
|
|
7897
|
-
|
|
7898
|
-
type: "
|
|
7899
|
-
|
|
7900
|
-
|
|
8060
|
+
tags: {
|
|
8061
|
+
type: "object";
|
|
8062
|
+
additionalProperties: {
|
|
8063
|
+
type: "object";
|
|
8064
|
+
properties: {
|
|
8065
|
+
title: {
|
|
8066
|
+
type: "string";
|
|
8067
|
+
maxLength: number;
|
|
8068
|
+
description: string;
|
|
8069
|
+
};
|
|
8070
|
+
description: {
|
|
8071
|
+
type: "string";
|
|
8072
|
+
maxLength: number;
|
|
8073
|
+
description: string;
|
|
8074
|
+
};
|
|
8075
|
+
};
|
|
8076
|
+
description: string;
|
|
8077
|
+
additionalProperties: false;
|
|
8078
|
+
};
|
|
7901
8079
|
};
|
|
7902
8080
|
};
|
|
7903
8081
|
additionalProperties: false;
|
|
7904
8082
|
};
|
|
7905
|
-
|
|
8083
|
+
interfaces: {
|
|
7906
8084
|
type: "object";
|
|
7907
8085
|
additionalProperties: {
|
|
7908
8086
|
type: "object";
|
|
7909
8087
|
properties: {
|
|
7910
|
-
|
|
7911
|
-
type: "string";
|
|
7912
|
-
maxLength: number;
|
|
7913
|
-
description: string;
|
|
7914
|
-
};
|
|
7915
|
-
description: {
|
|
8088
|
+
id: {
|
|
7916
8089
|
type: "string";
|
|
8090
|
+
minLength: number;
|
|
7917
8091
|
maxLength: number;
|
|
7918
8092
|
description: string;
|
|
7919
8093
|
};
|
|
7920
|
-
|
|
7921
|
-
type: "
|
|
7922
|
-
|
|
7923
|
-
|
|
7924
|
-
|
|
8094
|
+
entities: {
|
|
8095
|
+
type: "object";
|
|
8096
|
+
additionalProperties: {
|
|
8097
|
+
type: "object";
|
|
8098
|
+
properties: {
|
|
8099
|
+
name: {
|
|
8100
|
+
type: "string";
|
|
8101
|
+
maxLength: number;
|
|
8102
|
+
};
|
|
8103
|
+
};
|
|
8104
|
+
required: string[];
|
|
8105
|
+
additionalProperties: false;
|
|
8106
|
+
};
|
|
8107
|
+
};
|
|
8108
|
+
actions: {
|
|
8109
|
+
type: "object";
|
|
8110
|
+
additionalProperties: {
|
|
8111
|
+
type: "object";
|
|
8112
|
+
properties: {
|
|
8113
|
+
name: {
|
|
8114
|
+
type: "string";
|
|
8115
|
+
maxLength: number;
|
|
8116
|
+
};
|
|
8117
|
+
};
|
|
8118
|
+
required: string[];
|
|
8119
|
+
additionalProperties: false;
|
|
8120
|
+
};
|
|
8121
|
+
};
|
|
8122
|
+
events: {
|
|
8123
|
+
type: "object";
|
|
8124
|
+
additionalProperties: {
|
|
8125
|
+
type: "object";
|
|
8126
|
+
properties: {
|
|
8127
|
+
name: {
|
|
8128
|
+
type: "string";
|
|
8129
|
+
maxLength: number;
|
|
8130
|
+
};
|
|
8131
|
+
};
|
|
8132
|
+
required: string[];
|
|
8133
|
+
additionalProperties: false;
|
|
8134
|
+
};
|
|
8135
|
+
};
|
|
8136
|
+
channels: {
|
|
8137
|
+
type: "object";
|
|
8138
|
+
additionalProperties: {
|
|
8139
|
+
type: "object";
|
|
8140
|
+
properties: {
|
|
8141
|
+
name: {
|
|
8142
|
+
type: "string";
|
|
8143
|
+
maxLength: number;
|
|
8144
|
+
};
|
|
8145
|
+
};
|
|
8146
|
+
required: string[];
|
|
8147
|
+
additionalProperties: false;
|
|
8148
|
+
};
|
|
8149
|
+
};
|
|
8150
|
+
};
|
|
8151
|
+
required: string[];
|
|
8152
|
+
additionalProperties: false;
|
|
8153
|
+
};
|
|
8154
|
+
};
|
|
8155
|
+
secrets: {
|
|
8156
|
+
type: "object";
|
|
8157
|
+
additionalProperties: {
|
|
8158
|
+
type: "string";
|
|
8159
|
+
maxLength: number;
|
|
8160
|
+
};
|
|
8161
|
+
description: string;
|
|
8162
|
+
};
|
|
8163
|
+
code: {
|
|
8164
|
+
type: "string";
|
|
8165
|
+
description: string;
|
|
8166
|
+
};
|
|
8167
|
+
url: {
|
|
8168
|
+
type: "string";
|
|
8169
|
+
description: string;
|
|
8170
|
+
};
|
|
8171
|
+
dev: {
|
|
8172
|
+
type: "boolean";
|
|
8173
|
+
description: string;
|
|
8174
|
+
};
|
|
8175
|
+
icon: {
|
|
8176
|
+
type: "string";
|
|
8177
|
+
description: string;
|
|
8178
|
+
};
|
|
8179
|
+
readme: {
|
|
8180
|
+
type: "string";
|
|
8181
|
+
description: string;
|
|
8182
|
+
};
|
|
8183
|
+
title: {
|
|
8184
|
+
type: "string";
|
|
8185
|
+
minLength: number;
|
|
8186
|
+
maxLength: number;
|
|
8187
|
+
description: string;
|
|
8188
|
+
};
|
|
8189
|
+
description: {
|
|
8190
|
+
type: "string";
|
|
8191
|
+
maxLength: number;
|
|
8192
|
+
description: string;
|
|
8193
|
+
};
|
|
8194
|
+
public: {
|
|
8195
|
+
type: "boolean";
|
|
8196
|
+
description: string;
|
|
8197
|
+
};
|
|
8198
|
+
layers: {
|
|
8199
|
+
type: "array";
|
|
8200
|
+
items: {
|
|
8201
|
+
type: "string";
|
|
8202
|
+
};
|
|
8203
|
+
};
|
|
8204
|
+
};
|
|
8205
|
+
required: string[];
|
|
8206
|
+
title: string;
|
|
8207
|
+
additionalProperties: false;
|
|
8208
|
+
};
|
|
8209
|
+
};
|
|
8210
|
+
response: {
|
|
8211
|
+
description: string;
|
|
8212
|
+
schema: {
|
|
8213
|
+
type: "object";
|
|
8214
|
+
title: string;
|
|
8215
|
+
additionalProperties: false;
|
|
8216
|
+
};
|
|
8217
|
+
};
|
|
8218
|
+
parameters: {};
|
|
8219
|
+
};
|
|
8220
|
+
updateIntegration: {
|
|
8221
|
+
name: string;
|
|
8222
|
+
description: string;
|
|
8223
|
+
method: "put";
|
|
8224
|
+
path: string;
|
|
8225
|
+
section: "integration";
|
|
8226
|
+
parameters: {
|
|
8227
|
+
id: {
|
|
8228
|
+
type: "string";
|
|
8229
|
+
description: string;
|
|
8230
|
+
in: "path";
|
|
8231
|
+
};
|
|
8232
|
+
};
|
|
8233
|
+
requestBody: {
|
|
8234
|
+
description: string;
|
|
8235
|
+
schema: {
|
|
8236
|
+
type: "object";
|
|
8237
|
+
properties: {
|
|
8238
|
+
configuration: {
|
|
8239
|
+
type: "object";
|
|
8240
|
+
properties: {
|
|
8241
|
+
title: {
|
|
8242
|
+
type: "string";
|
|
8243
|
+
maxLength: number;
|
|
8244
|
+
description: string;
|
|
8245
|
+
};
|
|
8246
|
+
description: {
|
|
8247
|
+
type: "string";
|
|
8248
|
+
maxLength: number;
|
|
8249
|
+
description: string;
|
|
8250
|
+
};
|
|
8251
|
+
schema: {
|
|
8252
|
+
type: "object";
|
|
8253
|
+
additionalProperties: true;
|
|
8254
|
+
description: string;
|
|
8255
|
+
};
|
|
8256
|
+
identifier: {
|
|
8257
|
+
type: "object";
|
|
8258
|
+
properties: {
|
|
8259
|
+
linkTemplateScript: {
|
|
8260
|
+
type: "string";
|
|
8261
|
+
maxLength: number;
|
|
8262
|
+
nullable: true;
|
|
8263
|
+
};
|
|
8264
|
+
required: {
|
|
8265
|
+
type: "boolean";
|
|
8266
|
+
};
|
|
8267
|
+
};
|
|
8268
|
+
additionalProperties: false;
|
|
8269
|
+
};
|
|
8270
|
+
};
|
|
8271
|
+
description: string;
|
|
8272
|
+
additionalProperties: false;
|
|
8273
|
+
};
|
|
8274
|
+
configurations: {
|
|
8275
|
+
type: "object";
|
|
8276
|
+
additionalProperties: {
|
|
8277
|
+
type: "object";
|
|
8278
|
+
properties: {
|
|
8279
|
+
title: {
|
|
8280
|
+
type: "string";
|
|
8281
|
+
maxLength: number;
|
|
8282
|
+
description: string;
|
|
8283
|
+
};
|
|
8284
|
+
description: {
|
|
8285
|
+
type: "string";
|
|
8286
|
+
maxLength: number;
|
|
8287
|
+
description: string;
|
|
8288
|
+
};
|
|
8289
|
+
schema: {
|
|
8290
|
+
type: "object";
|
|
8291
|
+
additionalProperties: true;
|
|
8292
|
+
description: string;
|
|
8293
|
+
};
|
|
8294
|
+
identifier: {
|
|
8295
|
+
type: "object";
|
|
8296
|
+
properties: {
|
|
8297
|
+
linkTemplateScript: {
|
|
8298
|
+
type: "string";
|
|
8299
|
+
maxLength: number;
|
|
8300
|
+
nullable: true;
|
|
8301
|
+
};
|
|
8302
|
+
required: {
|
|
8303
|
+
type: "boolean";
|
|
8304
|
+
};
|
|
8305
|
+
};
|
|
8306
|
+
additionalProperties: false;
|
|
8307
|
+
};
|
|
8308
|
+
};
|
|
8309
|
+
nullable: true;
|
|
8310
|
+
additionalProperties: false;
|
|
8311
|
+
};
|
|
8312
|
+
description: string;
|
|
8313
|
+
};
|
|
8314
|
+
channels: {
|
|
8315
|
+
type: "object";
|
|
8316
|
+
additionalProperties: {
|
|
8317
|
+
type: "object";
|
|
8318
|
+
properties: {
|
|
8319
|
+
title: {
|
|
8320
|
+
type: "string";
|
|
8321
|
+
maxLength: number;
|
|
8322
|
+
description: string;
|
|
8323
|
+
};
|
|
8324
|
+
description: {
|
|
8325
|
+
type: "string";
|
|
8326
|
+
maxLength: number;
|
|
8327
|
+
description: string;
|
|
8328
|
+
};
|
|
8329
|
+
messages: {
|
|
8330
|
+
type: "object";
|
|
8331
|
+
additionalProperties: {
|
|
8332
|
+
type: "object";
|
|
8333
|
+
properties: {
|
|
8334
|
+
schema: {
|
|
8335
|
+
type: "object";
|
|
8336
|
+
additionalProperties: true;
|
|
8337
|
+
};
|
|
8338
|
+
};
|
|
8339
|
+
required: string[];
|
|
8340
|
+
description: string;
|
|
8341
|
+
nullable: true;
|
|
8342
|
+
additionalProperties: false;
|
|
8343
|
+
};
|
|
8344
|
+
};
|
|
8345
|
+
conversation: {
|
|
8346
|
+
type: "object";
|
|
8347
|
+
properties: {
|
|
8348
|
+
creation: {
|
|
8349
|
+
type: "object";
|
|
8350
|
+
properties: {
|
|
8351
|
+
enabled: {
|
|
8352
|
+
type: "boolean";
|
|
8353
|
+
description: string;
|
|
8354
|
+
};
|
|
8355
|
+
requiredTags: {
|
|
8356
|
+
type: "array";
|
|
8357
|
+
items: {
|
|
8358
|
+
type: "string";
|
|
8359
|
+
};
|
|
8360
|
+
description: string;
|
|
8361
|
+
};
|
|
8362
|
+
};
|
|
8363
|
+
required: string[];
|
|
8364
|
+
description: string;
|
|
8365
|
+
additionalProperties: false;
|
|
8366
|
+
};
|
|
8367
|
+
tags: {
|
|
8368
|
+
type: "object";
|
|
8369
|
+
additionalProperties: {
|
|
8370
|
+
type: "object";
|
|
8371
|
+
properties: {
|
|
8372
|
+
title: {
|
|
8373
|
+
type: "string";
|
|
8374
|
+
maxLength: number;
|
|
8375
|
+
description: string;
|
|
8376
|
+
};
|
|
8377
|
+
description: {
|
|
8378
|
+
type: "string";
|
|
8379
|
+
maxLength: number;
|
|
8380
|
+
description: string;
|
|
8381
|
+
};
|
|
8382
|
+
};
|
|
8383
|
+
description: string;
|
|
8384
|
+
nullable: true;
|
|
8385
|
+
additionalProperties: false;
|
|
8386
|
+
};
|
|
8387
|
+
};
|
|
8388
|
+
};
|
|
8389
|
+
additionalProperties: false;
|
|
8390
|
+
};
|
|
8391
|
+
message: {
|
|
8392
|
+
type: "object";
|
|
8393
|
+
properties: {
|
|
8394
|
+
tags: {
|
|
8395
|
+
type: "object";
|
|
8396
|
+
additionalProperties: {
|
|
8397
|
+
type: "object";
|
|
8398
|
+
properties: {
|
|
8399
|
+
title: {
|
|
8400
|
+
type: "string";
|
|
8401
|
+
maxLength: number;
|
|
8402
|
+
description: string;
|
|
8403
|
+
};
|
|
8404
|
+
description: {
|
|
8405
|
+
type: "string";
|
|
8406
|
+
maxLength: number;
|
|
8407
|
+
description: string;
|
|
8408
|
+
};
|
|
8409
|
+
};
|
|
8410
|
+
description: string;
|
|
8411
|
+
nullable: true;
|
|
8412
|
+
additionalProperties: false;
|
|
8413
|
+
};
|
|
8414
|
+
};
|
|
8415
|
+
};
|
|
8416
|
+
additionalProperties: false;
|
|
8417
|
+
};
|
|
8418
|
+
};
|
|
8419
|
+
nullable: true;
|
|
8420
|
+
additionalProperties: false;
|
|
8421
|
+
};
|
|
8422
|
+
};
|
|
8423
|
+
identifier: {
|
|
8424
|
+
type: "object";
|
|
8425
|
+
properties: {
|
|
8426
|
+
extractScript: {
|
|
8427
|
+
type: "string";
|
|
8428
|
+
maxLength: number;
|
|
8429
|
+
nullable: true;
|
|
8430
|
+
};
|
|
8431
|
+
fallbackHandlerScript: {
|
|
8432
|
+
type: "string";
|
|
8433
|
+
maxLength: number;
|
|
8434
|
+
nullable: true;
|
|
8435
|
+
};
|
|
8436
|
+
};
|
|
8437
|
+
additionalProperties: false;
|
|
8438
|
+
};
|
|
8439
|
+
actions: {
|
|
8440
|
+
type: "object";
|
|
8441
|
+
additionalProperties: {
|
|
8442
|
+
type: "object";
|
|
8443
|
+
properties: {
|
|
8444
|
+
title: {
|
|
8445
|
+
type: "string";
|
|
8446
|
+
maxLength: number;
|
|
8447
|
+
description: string;
|
|
8448
|
+
};
|
|
8449
|
+
description: {
|
|
8450
|
+
type: "string";
|
|
8451
|
+
maxLength: number;
|
|
8452
|
+
description: string;
|
|
8453
|
+
};
|
|
8454
|
+
billable: {
|
|
8455
|
+
type: "boolean";
|
|
8456
|
+
};
|
|
8457
|
+
cacheable: {
|
|
8458
|
+
type: "boolean";
|
|
8459
|
+
};
|
|
8460
|
+
input: {
|
|
8461
|
+
type: "object";
|
|
8462
|
+
properties: {
|
|
8463
|
+
schema: {
|
|
8464
|
+
type: "object";
|
|
8465
|
+
additionalProperties: true;
|
|
8466
|
+
};
|
|
8467
|
+
};
|
|
8468
|
+
required: string[];
|
|
8469
|
+
additionalProperties: false;
|
|
8470
|
+
};
|
|
8471
|
+
output: {
|
|
8472
|
+
type: "object";
|
|
8473
|
+
properties: {
|
|
8474
|
+
schema: {
|
|
8475
|
+
type: "object";
|
|
8476
|
+
additionalProperties: true;
|
|
8477
|
+
};
|
|
8478
|
+
};
|
|
8479
|
+
required: string[];
|
|
8480
|
+
additionalProperties: false;
|
|
8481
|
+
};
|
|
8482
|
+
};
|
|
8483
|
+
required: string[];
|
|
8484
|
+
description: string;
|
|
8485
|
+
nullable: true;
|
|
8486
|
+
additionalProperties: false;
|
|
8487
|
+
};
|
|
8488
|
+
};
|
|
8489
|
+
events: {
|
|
8490
|
+
type: "object";
|
|
8491
|
+
additionalProperties: {
|
|
8492
|
+
type: "object";
|
|
8493
|
+
properties: {
|
|
8494
|
+
title: {
|
|
8495
|
+
type: "string";
|
|
8496
|
+
maxLength: number;
|
|
8497
|
+
description: string;
|
|
8498
|
+
};
|
|
8499
|
+
description: {
|
|
8500
|
+
type: "string";
|
|
8501
|
+
maxLength: number;
|
|
8502
|
+
description: string;
|
|
8503
|
+
};
|
|
8504
|
+
schema: {
|
|
8505
|
+
type: "object";
|
|
8506
|
+
additionalProperties: true;
|
|
8507
|
+
};
|
|
8508
|
+
};
|
|
8509
|
+
required: string[];
|
|
8510
|
+
description: string;
|
|
8511
|
+
nullable: true;
|
|
8512
|
+
additionalProperties: false;
|
|
8513
|
+
};
|
|
8514
|
+
};
|
|
8515
|
+
states: {
|
|
8516
|
+
type: "object";
|
|
8517
|
+
additionalProperties: {
|
|
8518
|
+
type: "object";
|
|
8519
|
+
properties: {
|
|
8520
|
+
type: {
|
|
8521
|
+
type: "string";
|
|
8522
|
+
enum: string[];
|
|
8523
|
+
description: string;
|
|
8524
|
+
};
|
|
8525
|
+
schema: {
|
|
8526
|
+
type: "object";
|
|
8527
|
+
additionalProperties: true;
|
|
8528
|
+
description: string;
|
|
8529
|
+
};
|
|
8530
|
+
};
|
|
8531
|
+
required: string[];
|
|
8532
|
+
description: string;
|
|
8533
|
+
nullable: true;
|
|
8534
|
+
additionalProperties: false;
|
|
8535
|
+
};
|
|
8536
|
+
};
|
|
8537
|
+
user: {
|
|
8538
|
+
type: "object";
|
|
8539
|
+
properties: {
|
|
8540
|
+
creation: {
|
|
8541
|
+
type: "object";
|
|
8542
|
+
properties: {
|
|
8543
|
+
enabled: {
|
|
8544
|
+
type: "boolean";
|
|
8545
|
+
description: string;
|
|
8546
|
+
};
|
|
8547
|
+
requiredTags: {
|
|
8548
|
+
type: "array";
|
|
8549
|
+
items: {
|
|
8550
|
+
type: "string";
|
|
8551
|
+
};
|
|
8552
|
+
description: string;
|
|
8553
|
+
};
|
|
8554
|
+
};
|
|
8555
|
+
required: string[];
|
|
8556
|
+
description: string;
|
|
8557
|
+
additionalProperties: false;
|
|
8558
|
+
};
|
|
8559
|
+
tags: {
|
|
8560
|
+
type: "object";
|
|
8561
|
+
additionalProperties: {
|
|
8562
|
+
type: "object";
|
|
8563
|
+
properties: {
|
|
8564
|
+
title: {
|
|
8565
|
+
type: "string";
|
|
8566
|
+
maxLength: number;
|
|
8567
|
+
description: string;
|
|
8568
|
+
};
|
|
8569
|
+
description: {
|
|
8570
|
+
type: "string";
|
|
8571
|
+
maxLength: number;
|
|
8572
|
+
description: string;
|
|
8573
|
+
};
|
|
8574
|
+
};
|
|
8575
|
+
description: string;
|
|
8576
|
+
nullable: true;
|
|
8577
|
+
additionalProperties: false;
|
|
8578
|
+
};
|
|
8579
|
+
};
|
|
8580
|
+
};
|
|
8581
|
+
additionalProperties: false;
|
|
8582
|
+
};
|
|
8583
|
+
entities: {
|
|
8584
|
+
type: "object";
|
|
8585
|
+
additionalProperties: {
|
|
8586
|
+
type: "object";
|
|
8587
|
+
properties: {
|
|
8588
|
+
title: {
|
|
8589
|
+
type: "string";
|
|
8590
|
+
maxLength: number;
|
|
8591
|
+
description: string;
|
|
8592
|
+
};
|
|
8593
|
+
description: {
|
|
8594
|
+
type: "string";
|
|
8595
|
+
maxLength: number;
|
|
8596
|
+
description: string;
|
|
8597
|
+
};
|
|
8598
|
+
schema: {
|
|
8599
|
+
type: "object";
|
|
8600
|
+
additionalProperties: true;
|
|
8601
|
+
};
|
|
8602
|
+
};
|
|
8603
|
+
required: string[];
|
|
8604
|
+
description: string;
|
|
8605
|
+
nullable: true;
|
|
8606
|
+
additionalProperties: false;
|
|
8607
|
+
};
|
|
8608
|
+
};
|
|
8609
|
+
interfaces: {
|
|
8610
|
+
type: "object";
|
|
8611
|
+
additionalProperties: {
|
|
8612
|
+
type: "object";
|
|
8613
|
+
properties: {
|
|
8614
|
+
id: {
|
|
8615
|
+
type: "string";
|
|
8616
|
+
minLength: number;
|
|
8617
|
+
maxLength: number;
|
|
8618
|
+
description: string;
|
|
8619
|
+
};
|
|
8620
|
+
entities: {
|
|
8621
|
+
type: "object";
|
|
8622
|
+
additionalProperties: {
|
|
8623
|
+
type: "object";
|
|
8624
|
+
properties: {
|
|
8625
|
+
name: {
|
|
8626
|
+
type: "string";
|
|
8627
|
+
maxLength: number;
|
|
8628
|
+
};
|
|
8629
|
+
};
|
|
8630
|
+
required: string[];
|
|
8631
|
+
additionalProperties: false;
|
|
8632
|
+
};
|
|
8633
|
+
};
|
|
8634
|
+
actions: {
|
|
8635
|
+
type: "object";
|
|
8636
|
+
additionalProperties: {
|
|
8637
|
+
type: "object";
|
|
8638
|
+
properties: {
|
|
8639
|
+
name: {
|
|
8640
|
+
type: "string";
|
|
8641
|
+
maxLength: number;
|
|
8642
|
+
};
|
|
8643
|
+
};
|
|
8644
|
+
required: string[];
|
|
8645
|
+
additionalProperties: false;
|
|
8646
|
+
};
|
|
8647
|
+
};
|
|
8648
|
+
events: {
|
|
8649
|
+
type: "object";
|
|
8650
|
+
additionalProperties: {
|
|
8651
|
+
type: "object";
|
|
8652
|
+
properties: {
|
|
8653
|
+
name: {
|
|
8654
|
+
type: "string";
|
|
8655
|
+
maxLength: number;
|
|
8656
|
+
};
|
|
8657
|
+
};
|
|
8658
|
+
required: string[];
|
|
8659
|
+
additionalProperties: false;
|
|
8660
|
+
};
|
|
8661
|
+
};
|
|
8662
|
+
channels: {
|
|
8663
|
+
type: "object";
|
|
8664
|
+
additionalProperties: {
|
|
8665
|
+
type: "object";
|
|
8666
|
+
properties: {
|
|
8667
|
+
name: {
|
|
8668
|
+
type: "string";
|
|
8669
|
+
maxLength: number;
|
|
8670
|
+
};
|
|
8671
|
+
};
|
|
8672
|
+
required: string[];
|
|
8673
|
+
additionalProperties: false;
|
|
8674
|
+
};
|
|
8675
|
+
};
|
|
8676
|
+
};
|
|
8677
|
+
required: string[];
|
|
8678
|
+
nullable: true;
|
|
8679
|
+
additionalProperties: false;
|
|
8680
|
+
};
|
|
8681
|
+
};
|
|
8682
|
+
secrets: {
|
|
8683
|
+
type: "object";
|
|
8684
|
+
additionalProperties: {
|
|
8685
|
+
type: "string";
|
|
8686
|
+
maxLength: number;
|
|
8687
|
+
nullable: true;
|
|
8688
|
+
};
|
|
8689
|
+
description: string;
|
|
8690
|
+
};
|
|
8691
|
+
code: {
|
|
8692
|
+
type: "string";
|
|
8693
|
+
description: string;
|
|
8694
|
+
};
|
|
8695
|
+
icon: {
|
|
8696
|
+
type: "string";
|
|
8697
|
+
description: string;
|
|
8698
|
+
};
|
|
8699
|
+
readme: {
|
|
8700
|
+
type: "string";
|
|
8701
|
+
description: string;
|
|
8702
|
+
};
|
|
8703
|
+
title: {
|
|
8704
|
+
type: "string";
|
|
8705
|
+
minLength: number;
|
|
8706
|
+
maxLength: number;
|
|
8707
|
+
description: string;
|
|
8708
|
+
};
|
|
8709
|
+
description: {
|
|
8710
|
+
type: "string";
|
|
8711
|
+
maxLength: number;
|
|
8712
|
+
description: string;
|
|
8713
|
+
};
|
|
8714
|
+
url: {
|
|
8715
|
+
type: "string";
|
|
8716
|
+
description: string;
|
|
8717
|
+
nullable: true;
|
|
8718
|
+
};
|
|
8719
|
+
public: {
|
|
8720
|
+
type: "boolean";
|
|
8721
|
+
description: string;
|
|
8722
|
+
};
|
|
8723
|
+
layers: {
|
|
8724
|
+
type: "array";
|
|
8725
|
+
items: {
|
|
8726
|
+
type: "string";
|
|
8727
|
+
};
|
|
8728
|
+
};
|
|
8729
|
+
};
|
|
8730
|
+
title: string;
|
|
8731
|
+
additionalProperties: false;
|
|
8732
|
+
};
|
|
8733
|
+
};
|
|
8734
|
+
response: {
|
|
8735
|
+
description: string;
|
|
8736
|
+
schema: {
|
|
8737
|
+
type: "object";
|
|
8738
|
+
properties: {
|
|
8739
|
+
integration: {
|
|
8740
|
+
$ref: string;
|
|
8741
|
+
};
|
|
8742
|
+
};
|
|
8743
|
+
required: string[];
|
|
8744
|
+
title: string;
|
|
8745
|
+
additionalProperties: false;
|
|
8746
|
+
};
|
|
8747
|
+
};
|
|
8748
|
+
};
|
|
8749
|
+
validateIntegrationUpdate: {
|
|
8750
|
+
name: string;
|
|
8751
|
+
description: string;
|
|
8752
|
+
method: "put";
|
|
8753
|
+
path: string;
|
|
8754
|
+
section: "integration";
|
|
8755
|
+
parameters: {
|
|
8756
|
+
id: {
|
|
8757
|
+
type: "string";
|
|
8758
|
+
description: string;
|
|
8759
|
+
in: "path";
|
|
8760
|
+
};
|
|
8761
|
+
};
|
|
8762
|
+
requestBody: {
|
|
8763
|
+
description: string;
|
|
8764
|
+
schema: {
|
|
8765
|
+
type: "object";
|
|
8766
|
+
properties: {
|
|
8767
|
+
configuration: {
|
|
8768
|
+
type: "object";
|
|
8769
|
+
properties: {
|
|
8770
|
+
title: {
|
|
8771
|
+
type: "string";
|
|
8772
|
+
maxLength: number;
|
|
8773
|
+
description: string;
|
|
8774
|
+
};
|
|
8775
|
+
description: {
|
|
8776
|
+
type: "string";
|
|
8777
|
+
maxLength: number;
|
|
8778
|
+
description: string;
|
|
8779
|
+
};
|
|
8780
|
+
schema: {
|
|
8781
|
+
type: "object";
|
|
8782
|
+
additionalProperties: true;
|
|
8783
|
+
description: string;
|
|
8784
|
+
};
|
|
8785
|
+
identifier: {
|
|
8786
|
+
type: "object";
|
|
8787
|
+
properties: {
|
|
8788
|
+
linkTemplateScript: {
|
|
8789
|
+
type: "string";
|
|
8790
|
+
maxLength: number;
|
|
8791
|
+
nullable: true;
|
|
8792
|
+
};
|
|
8793
|
+
required: {
|
|
8794
|
+
type: "boolean";
|
|
8795
|
+
};
|
|
8796
|
+
};
|
|
8797
|
+
additionalProperties: false;
|
|
8798
|
+
};
|
|
8799
|
+
};
|
|
8800
|
+
description: string;
|
|
8801
|
+
additionalProperties: false;
|
|
8802
|
+
};
|
|
8803
|
+
configurations: {
|
|
8804
|
+
type: "object";
|
|
8805
|
+
additionalProperties: {
|
|
8806
|
+
type: "object";
|
|
8807
|
+
properties: {
|
|
8808
|
+
title: {
|
|
8809
|
+
type: "string";
|
|
8810
|
+
maxLength: number;
|
|
8811
|
+
description: string;
|
|
8812
|
+
};
|
|
8813
|
+
description: {
|
|
8814
|
+
type: "string";
|
|
8815
|
+
maxLength: number;
|
|
8816
|
+
description: string;
|
|
8817
|
+
};
|
|
8818
|
+
schema: {
|
|
8819
|
+
type: "object";
|
|
8820
|
+
additionalProperties: true;
|
|
8821
|
+
description: string;
|
|
8822
|
+
};
|
|
8823
|
+
identifier: {
|
|
8824
|
+
type: "object";
|
|
8825
|
+
properties: {
|
|
8826
|
+
linkTemplateScript: {
|
|
8827
|
+
type: "string";
|
|
8828
|
+
maxLength: number;
|
|
8829
|
+
nullable: true;
|
|
8830
|
+
};
|
|
8831
|
+
required: {
|
|
8832
|
+
type: "boolean";
|
|
8833
|
+
};
|
|
8834
|
+
};
|
|
8835
|
+
additionalProperties: false;
|
|
8836
|
+
};
|
|
8837
|
+
};
|
|
8838
|
+
nullable: true;
|
|
8839
|
+
additionalProperties: false;
|
|
8840
|
+
};
|
|
8841
|
+
description: string;
|
|
8842
|
+
};
|
|
8843
|
+
channels: {
|
|
8844
|
+
type: "object";
|
|
8845
|
+
additionalProperties: {
|
|
8846
|
+
type: "object";
|
|
8847
|
+
properties: {
|
|
8848
|
+
title: {
|
|
8849
|
+
type: "string";
|
|
8850
|
+
maxLength: number;
|
|
8851
|
+
description: string;
|
|
8852
|
+
};
|
|
8853
|
+
description: {
|
|
8854
|
+
type: "string";
|
|
8855
|
+
maxLength: number;
|
|
8856
|
+
description: string;
|
|
8857
|
+
};
|
|
8858
|
+
messages: {
|
|
8859
|
+
type: "object";
|
|
8860
|
+
additionalProperties: {
|
|
8861
|
+
type: "object";
|
|
8862
|
+
properties: {
|
|
8863
|
+
schema: {
|
|
8864
|
+
type: "object";
|
|
8865
|
+
additionalProperties: true;
|
|
8866
|
+
};
|
|
8867
|
+
};
|
|
8868
|
+
required: string[];
|
|
8869
|
+
description: string;
|
|
8870
|
+
nullable: true;
|
|
8871
|
+
additionalProperties: false;
|
|
8872
|
+
};
|
|
8873
|
+
};
|
|
8874
|
+
conversation: {
|
|
8875
|
+
type: "object";
|
|
8876
|
+
properties: {
|
|
8877
|
+
creation: {
|
|
8878
|
+
type: "object";
|
|
8879
|
+
properties: {
|
|
8880
|
+
enabled: {
|
|
8881
|
+
type: "boolean";
|
|
8882
|
+
description: string;
|
|
8883
|
+
};
|
|
8884
|
+
requiredTags: {
|
|
8885
|
+
type: "array";
|
|
8886
|
+
items: {
|
|
8887
|
+
type: "string";
|
|
8888
|
+
};
|
|
8889
|
+
description: string;
|
|
8890
|
+
};
|
|
8891
|
+
};
|
|
8892
|
+
required: string[];
|
|
8893
|
+
description: string;
|
|
8894
|
+
additionalProperties: false;
|
|
8895
|
+
};
|
|
8896
|
+
tags: {
|
|
8897
|
+
type: "object";
|
|
8898
|
+
additionalProperties: {
|
|
8899
|
+
type: "object";
|
|
8900
|
+
properties: {
|
|
8901
|
+
title: {
|
|
8902
|
+
type: "string";
|
|
8903
|
+
maxLength: number;
|
|
8904
|
+
description: string;
|
|
8905
|
+
};
|
|
8906
|
+
description: {
|
|
8907
|
+
type: "string";
|
|
8908
|
+
maxLength: number;
|
|
8909
|
+
description: string;
|
|
8910
|
+
};
|
|
8911
|
+
};
|
|
8912
|
+
description: string;
|
|
8913
|
+
nullable: true;
|
|
8914
|
+
additionalProperties: false;
|
|
8915
|
+
};
|
|
8916
|
+
};
|
|
8917
|
+
};
|
|
8918
|
+
additionalProperties: false;
|
|
8919
|
+
};
|
|
8920
|
+
message: {
|
|
8921
|
+
type: "object";
|
|
8922
|
+
properties: {
|
|
8923
|
+
tags: {
|
|
8924
|
+
type: "object";
|
|
8925
|
+
additionalProperties: {
|
|
8926
|
+
type: "object";
|
|
8927
|
+
properties: {
|
|
8928
|
+
title: {
|
|
8929
|
+
type: "string";
|
|
8930
|
+
maxLength: number;
|
|
8931
|
+
description: string;
|
|
8932
|
+
};
|
|
8933
|
+
description: {
|
|
8934
|
+
type: "string";
|
|
8935
|
+
maxLength: number;
|
|
8936
|
+
description: string;
|
|
8937
|
+
};
|
|
8938
|
+
};
|
|
8939
|
+
description: string;
|
|
8940
|
+
nullable: true;
|
|
8941
|
+
additionalProperties: false;
|
|
8942
|
+
};
|
|
8943
|
+
};
|
|
8944
|
+
};
|
|
8945
|
+
additionalProperties: false;
|
|
8946
|
+
};
|
|
8947
|
+
};
|
|
8948
|
+
nullable: true;
|
|
8949
|
+
additionalProperties: false;
|
|
8950
|
+
};
|
|
8951
|
+
};
|
|
8952
|
+
identifier: {
|
|
8953
|
+
type: "object";
|
|
8954
|
+
properties: {
|
|
8955
|
+
extractScript: {
|
|
8956
|
+
type: "string";
|
|
8957
|
+
maxLength: number;
|
|
8958
|
+
nullable: true;
|
|
8959
|
+
};
|
|
8960
|
+
fallbackHandlerScript: {
|
|
8961
|
+
type: "string";
|
|
8962
|
+
maxLength: number;
|
|
8963
|
+
nullable: true;
|
|
8964
|
+
};
|
|
8965
|
+
};
|
|
8966
|
+
additionalProperties: false;
|
|
8967
|
+
};
|
|
8968
|
+
actions: {
|
|
8969
|
+
type: "object";
|
|
8970
|
+
additionalProperties: {
|
|
8971
|
+
type: "object";
|
|
8972
|
+
properties: {
|
|
8973
|
+
title: {
|
|
8974
|
+
type: "string";
|
|
8975
|
+
maxLength: number;
|
|
8976
|
+
description: string;
|
|
8977
|
+
};
|
|
8978
|
+
description: {
|
|
8979
|
+
type: "string";
|
|
8980
|
+
maxLength: number;
|
|
8981
|
+
description: string;
|
|
8982
|
+
};
|
|
8983
|
+
billable: {
|
|
8984
|
+
type: "boolean";
|
|
8985
|
+
};
|
|
8986
|
+
cacheable: {
|
|
8987
|
+
type: "boolean";
|
|
7925
8988
|
};
|
|
7926
8989
|
input: {
|
|
7927
8990
|
type: "object";
|
|
@@ -8201,12 +9264,6 @@ export declare const state: {
|
|
|
8201
9264
|
description: string;
|
|
8202
9265
|
schema: {
|
|
8203
9266
|
type: "object";
|
|
8204
|
-
properties: {
|
|
8205
|
-
integration: {
|
|
8206
|
-
$ref: string;
|
|
8207
|
-
};
|
|
8208
|
-
};
|
|
8209
|
-
required: string[];
|
|
8210
9267
|
title: string;
|
|
8211
9268
|
additionalProperties: false;
|
|
8212
9269
|
};
|
|
@@ -12490,7 +13547,9 @@ export declare const state: {
|
|
|
12490
13547
|
updateWorkspaceMemberBody: true;
|
|
12491
13548
|
createIntegrationApiKeyBody: true;
|
|
12492
13549
|
createIntegrationBody: true;
|
|
13550
|
+
validateIntegrationCreationBody: true;
|
|
12493
13551
|
updateIntegrationBody: true;
|
|
13552
|
+
validateIntegrationUpdateBody: true;
|
|
12494
13553
|
requestIntegrationVerificationBody: true;
|
|
12495
13554
|
createInterfaceBody: true;
|
|
12496
13555
|
updateInterfaceBody: true;
|
|
@@ -12613,7 +13672,9 @@ export declare const state: {
|
|
|
12613
13672
|
createIntegrationApiKeyResponse: true;
|
|
12614
13673
|
deleteIntegrationApiKeyResponse: true;
|
|
12615
13674
|
createIntegrationResponse: true;
|
|
13675
|
+
validateIntegrationCreationResponse: true;
|
|
12616
13676
|
updateIntegrationResponse: true;
|
|
13677
|
+
validateIntegrationUpdateResponse: true;
|
|
12617
13678
|
listIntegrationsResponse: true;
|
|
12618
13679
|
getIntegrationResponse: true;
|
|
12619
13680
|
getIntegrationLogsResponse: true;
|