@botpress/api 0.68.3 → 0.70.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.
@@ -7683,6 +7683,522 @@ export declare const state: {
7683
7683
  };
7684
7684
  parameters: {};
7685
7685
  };
7686
+ validateIntegrationCreation: {
7687
+ name: string;
7688
+ description: string;
7689
+ method: "post";
7690
+ section: "integration";
7691
+ path: string;
7692
+ requestBody: {
7693
+ description: string;
7694
+ schema: {
7695
+ type: "object";
7696
+ properties: {
7697
+ name: {
7698
+ type: "string";
7699
+ maxLength: number;
7700
+ description: string;
7701
+ };
7702
+ version: {
7703
+ type: "string";
7704
+ maxLength: number;
7705
+ description: string;
7706
+ };
7707
+ configuration: {
7708
+ type: "object";
7709
+ properties: {
7710
+ title: {
7711
+ type: "string";
7712
+ maxLength: number;
7713
+ description: string;
7714
+ };
7715
+ description: {
7716
+ type: "string";
7717
+ maxLength: number;
7718
+ description: string;
7719
+ };
7720
+ schema: {
7721
+ type: "object";
7722
+ additionalProperties: true;
7723
+ description: string;
7724
+ };
7725
+ identifier: {
7726
+ type: "object";
7727
+ properties: {
7728
+ required: {
7729
+ type: "boolean";
7730
+ };
7731
+ linkTemplateScript: {
7732
+ type: "string";
7733
+ maxLength: number;
7734
+ };
7735
+ };
7736
+ additionalProperties: false;
7737
+ };
7738
+ };
7739
+ description: string;
7740
+ additionalProperties: false;
7741
+ };
7742
+ configurations: {
7743
+ type: "object";
7744
+ additionalProperties: {
7745
+ type: "object";
7746
+ properties: {
7747
+ title: {
7748
+ type: "string";
7749
+ maxLength: number;
7750
+ description: string;
7751
+ };
7752
+ description: {
7753
+ type: "string";
7754
+ maxLength: number;
7755
+ description: string;
7756
+ };
7757
+ schema: {
7758
+ type: "object";
7759
+ additionalProperties: true;
7760
+ description: string;
7761
+ };
7762
+ identifier: {
7763
+ type: "object";
7764
+ properties: {
7765
+ required: {
7766
+ type: "boolean";
7767
+ };
7768
+ linkTemplateScript: {
7769
+ type: "string";
7770
+ maxLength: number;
7771
+ };
7772
+ };
7773
+ additionalProperties: false;
7774
+ };
7775
+ };
7776
+ additionalProperties: false;
7777
+ };
7778
+ description: string;
7779
+ };
7780
+ states: {
7781
+ type: "object";
7782
+ additionalProperties: {
7783
+ type: "object";
7784
+ properties: {
7785
+ type: {
7786
+ type: "string";
7787
+ enum: string[];
7788
+ description: string;
7789
+ };
7790
+ schema: {
7791
+ type: "object";
7792
+ additionalProperties: true;
7793
+ description: string;
7794
+ };
7795
+ };
7796
+ required: string[];
7797
+ description: string;
7798
+ additionalProperties: false;
7799
+ };
7800
+ };
7801
+ events: {
7802
+ type: "object";
7803
+ additionalProperties: {
7804
+ type: "object";
7805
+ properties: {
7806
+ title: {
7807
+ type: "string";
7808
+ maxLength: number;
7809
+ description: string;
7810
+ };
7811
+ description: {
7812
+ type: "string";
7813
+ maxLength: number;
7814
+ description: string;
7815
+ };
7816
+ schema: {
7817
+ type: "object";
7818
+ additionalProperties: true;
7819
+ };
7820
+ };
7821
+ required: string[];
7822
+ description: string;
7823
+ additionalProperties: false;
7824
+ };
7825
+ };
7826
+ actions: {
7827
+ type: "object";
7828
+ additionalProperties: {
7829
+ type: "object";
7830
+ properties: {
7831
+ title: {
7832
+ type: "string";
7833
+ maxLength: number;
7834
+ description: string;
7835
+ };
7836
+ description: {
7837
+ type: "string";
7838
+ maxLength: number;
7839
+ description: string;
7840
+ };
7841
+ billable: {
7842
+ type: "boolean";
7843
+ };
7844
+ cacheable: {
7845
+ type: "boolean";
7846
+ };
7847
+ input: {
7848
+ type: "object";
7849
+ properties: {
7850
+ schema: {
7851
+ type: "object";
7852
+ additionalProperties: true;
7853
+ };
7854
+ };
7855
+ required: string[];
7856
+ additionalProperties: false;
7857
+ };
7858
+ output: {
7859
+ type: "object";
7860
+ properties: {
7861
+ schema: {
7862
+ type: "object";
7863
+ additionalProperties: true;
7864
+ };
7865
+ };
7866
+ required: string[];
7867
+ additionalProperties: false;
7868
+ };
7869
+ };
7870
+ required: string[];
7871
+ description: string;
7872
+ additionalProperties: false;
7873
+ };
7874
+ };
7875
+ entities: {
7876
+ type: "object";
7877
+ additionalProperties: {
7878
+ type: "object";
7879
+ properties: {
7880
+ title: {
7881
+ type: "string";
7882
+ maxLength: number;
7883
+ description: string;
7884
+ };
7885
+ description: {
7886
+ type: "string";
7887
+ maxLength: number;
7888
+ description: string;
7889
+ };
7890
+ schema: {
7891
+ type: "object";
7892
+ additionalProperties: true;
7893
+ };
7894
+ };
7895
+ required: string[];
7896
+ description: string;
7897
+ additionalProperties: false;
7898
+ };
7899
+ };
7900
+ identifier: {
7901
+ type: "object";
7902
+ properties: {
7903
+ fallbackHandlerScript: {
7904
+ type: "string";
7905
+ maxLength: number;
7906
+ };
7907
+ extractScript: {
7908
+ type: "string";
7909
+ maxLength: number;
7910
+ };
7911
+ };
7912
+ additionalProperties: false;
7913
+ };
7914
+ channels: {
7915
+ type: "object";
7916
+ additionalProperties: {
7917
+ type: "object";
7918
+ properties: {
7919
+ title: {
7920
+ type: "string";
7921
+ maxLength: number;
7922
+ description: string;
7923
+ };
7924
+ description: {
7925
+ type: "string";
7926
+ maxLength: number;
7927
+ description: string;
7928
+ };
7929
+ messages: {
7930
+ type: "object";
7931
+ additionalProperties: {
7932
+ type: "object";
7933
+ properties: {
7934
+ schema: {
7935
+ type: "object";
7936
+ additionalProperties: true;
7937
+ };
7938
+ };
7939
+ required: string[];
7940
+ description: string;
7941
+ additionalProperties: false;
7942
+ };
7943
+ };
7944
+ conversation: {
7945
+ type: "object";
7946
+ properties: {
7947
+ creation: {
7948
+ type: "object";
7949
+ properties: {
7950
+ enabled: {
7951
+ type: "boolean";
7952
+ description: string;
7953
+ };
7954
+ requiredTags: {
7955
+ type: "array";
7956
+ items: {
7957
+ type: "string";
7958
+ };
7959
+ description: string;
7960
+ };
7961
+ };
7962
+ required: string[];
7963
+ description: string;
7964
+ additionalProperties: false;
7965
+ };
7966
+ tags: {
7967
+ type: "object";
7968
+ additionalProperties: {
7969
+ type: "object";
7970
+ properties: {
7971
+ title: {
7972
+ type: "string";
7973
+ maxLength: number;
7974
+ description: string;
7975
+ };
7976
+ description: {
7977
+ type: "string";
7978
+ maxLength: number;
7979
+ description: string;
7980
+ };
7981
+ };
7982
+ description: string;
7983
+ additionalProperties: false;
7984
+ };
7985
+ };
7986
+ };
7987
+ additionalProperties: false;
7988
+ };
7989
+ message: {
7990
+ type: "object";
7991
+ properties: {
7992
+ tags: {
7993
+ type: "object";
7994
+ additionalProperties: {
7995
+ type: "object";
7996
+ properties: {
7997
+ title: {
7998
+ type: "string";
7999
+ maxLength: number;
8000
+ description: string;
8001
+ };
8002
+ description: {
8003
+ type: "string";
8004
+ maxLength: number;
8005
+ description: string;
8006
+ };
8007
+ };
8008
+ description: string;
8009
+ additionalProperties: false;
8010
+ };
8011
+ };
8012
+ };
8013
+ additionalProperties: false;
8014
+ };
8015
+ };
8016
+ required: string[];
8017
+ additionalProperties: false;
8018
+ };
8019
+ };
8020
+ user: {
8021
+ type: "object";
8022
+ properties: {
8023
+ creation: {
8024
+ type: "object";
8025
+ properties: {
8026
+ enabled: {
8027
+ type: "boolean";
8028
+ description: string;
8029
+ };
8030
+ requiredTags: {
8031
+ type: "array";
8032
+ items: {
8033
+ type: "string";
8034
+ };
8035
+ description: string;
8036
+ };
8037
+ };
8038
+ required: string[];
8039
+ description: string;
8040
+ additionalProperties: false;
8041
+ };
8042
+ tags: {
8043
+ type: "object";
8044
+ additionalProperties: {
8045
+ type: "object";
8046
+ properties: {
8047
+ title: {
8048
+ type: "string";
8049
+ maxLength: number;
8050
+ description: string;
8051
+ };
8052
+ description: {
8053
+ type: "string";
8054
+ maxLength: number;
8055
+ description: string;
8056
+ };
8057
+ };
8058
+ description: string;
8059
+ additionalProperties: false;
8060
+ };
8061
+ };
8062
+ };
8063
+ additionalProperties: false;
8064
+ };
8065
+ interfaces: {
8066
+ type: "object";
8067
+ additionalProperties: {
8068
+ type: "object";
8069
+ properties: {
8070
+ id: {
8071
+ type: "string";
8072
+ minLength: number;
8073
+ maxLength: number;
8074
+ description: string;
8075
+ };
8076
+ entities: {
8077
+ type: "object";
8078
+ additionalProperties: {
8079
+ type: "object";
8080
+ properties: {
8081
+ name: {
8082
+ type: "string";
8083
+ maxLength: number;
8084
+ };
8085
+ };
8086
+ required: string[];
8087
+ additionalProperties: false;
8088
+ };
8089
+ };
8090
+ actions: {
8091
+ type: "object";
8092
+ additionalProperties: {
8093
+ type: "object";
8094
+ properties: {
8095
+ name: {
8096
+ type: "string";
8097
+ maxLength: number;
8098
+ };
8099
+ };
8100
+ required: string[];
8101
+ additionalProperties: false;
8102
+ };
8103
+ };
8104
+ events: {
8105
+ type: "object";
8106
+ additionalProperties: {
8107
+ type: "object";
8108
+ properties: {
8109
+ name: {
8110
+ type: "string";
8111
+ maxLength: number;
8112
+ };
8113
+ };
8114
+ required: string[];
8115
+ additionalProperties: false;
8116
+ };
8117
+ };
8118
+ channels: {
8119
+ type: "object";
8120
+ additionalProperties: {
8121
+ type: "object";
8122
+ properties: {
8123
+ name: {
8124
+ type: "string";
8125
+ maxLength: number;
8126
+ };
8127
+ };
8128
+ required: string[];
8129
+ additionalProperties: false;
8130
+ };
8131
+ };
8132
+ };
8133
+ required: string[];
8134
+ additionalProperties: false;
8135
+ };
8136
+ };
8137
+ secrets: {
8138
+ type: "object";
8139
+ additionalProperties: {
8140
+ type: "string";
8141
+ maxLength: number;
8142
+ };
8143
+ description: string;
8144
+ };
8145
+ code: {
8146
+ type: "string";
8147
+ description: string;
8148
+ };
8149
+ url: {
8150
+ type: "string";
8151
+ description: string;
8152
+ };
8153
+ dev: {
8154
+ type: "boolean";
8155
+ description: string;
8156
+ };
8157
+ icon: {
8158
+ type: "string";
8159
+ description: string;
8160
+ };
8161
+ readme: {
8162
+ type: "string";
8163
+ description: string;
8164
+ };
8165
+ title: {
8166
+ type: "string";
8167
+ minLength: number;
8168
+ maxLength: number;
8169
+ description: string;
8170
+ };
8171
+ description: {
8172
+ type: "string";
8173
+ maxLength: number;
8174
+ description: string;
8175
+ };
8176
+ public: {
8177
+ type: "boolean";
8178
+ description: string;
8179
+ };
8180
+ layers: {
8181
+ type: "array";
8182
+ items: {
8183
+ type: "string";
8184
+ };
8185
+ };
8186
+ };
8187
+ required: string[];
8188
+ title: string;
8189
+ additionalProperties: false;
8190
+ };
8191
+ };
8192
+ response: {
8193
+ description: string;
8194
+ schema: {
8195
+ type: "object";
8196
+ title: string;
8197
+ additionalProperties: false;
8198
+ };
8199
+ };
8200
+ parameters: {};
8201
+ };
7686
8202
  updateIntegration: {
7687
8203
  name: string;
7688
8204
  description: string;
@@ -8201,12 +8717,535 @@ export declare const state: {
8201
8717
  description: string;
8202
8718
  schema: {
8203
8719
  type: "object";
8204
- properties: {
8205
- integration: {
8206
- $ref: string;
8207
- };
8208
- };
8209
- required: string[];
8720
+ properties: {
8721
+ integration: {
8722
+ $ref: string;
8723
+ };
8724
+ };
8725
+ required: string[];
8726
+ title: string;
8727
+ additionalProperties: false;
8728
+ };
8729
+ };
8730
+ };
8731
+ validateIntegrationUpdate: {
8732
+ name: string;
8733
+ description: string;
8734
+ method: "put";
8735
+ path: string;
8736
+ section: "integration";
8737
+ parameters: {
8738
+ id: {
8739
+ type: "string";
8740
+ description: string;
8741
+ in: "path";
8742
+ };
8743
+ };
8744
+ requestBody: {
8745
+ description: string;
8746
+ schema: {
8747
+ type: "object";
8748
+ properties: {
8749
+ configuration: {
8750
+ type: "object";
8751
+ properties: {
8752
+ title: {
8753
+ type: "string";
8754
+ maxLength: number;
8755
+ description: string;
8756
+ };
8757
+ description: {
8758
+ type: "string";
8759
+ maxLength: number;
8760
+ description: string;
8761
+ };
8762
+ schema: {
8763
+ type: "object";
8764
+ additionalProperties: true;
8765
+ description: string;
8766
+ };
8767
+ identifier: {
8768
+ type: "object";
8769
+ properties: {
8770
+ linkTemplateScript: {
8771
+ type: "string";
8772
+ maxLength: number;
8773
+ nullable: true;
8774
+ };
8775
+ required: {
8776
+ type: "boolean";
8777
+ };
8778
+ };
8779
+ additionalProperties: false;
8780
+ };
8781
+ };
8782
+ description: string;
8783
+ additionalProperties: false;
8784
+ };
8785
+ configurations: {
8786
+ type: "object";
8787
+ additionalProperties: {
8788
+ type: "object";
8789
+ properties: {
8790
+ title: {
8791
+ type: "string";
8792
+ maxLength: number;
8793
+ description: string;
8794
+ };
8795
+ description: {
8796
+ type: "string";
8797
+ maxLength: number;
8798
+ description: string;
8799
+ };
8800
+ schema: {
8801
+ type: "object";
8802
+ additionalProperties: true;
8803
+ description: string;
8804
+ };
8805
+ identifier: {
8806
+ type: "object";
8807
+ properties: {
8808
+ linkTemplateScript: {
8809
+ type: "string";
8810
+ maxLength: number;
8811
+ nullable: true;
8812
+ };
8813
+ required: {
8814
+ type: "boolean";
8815
+ };
8816
+ };
8817
+ additionalProperties: false;
8818
+ };
8819
+ };
8820
+ nullable: true;
8821
+ additionalProperties: false;
8822
+ };
8823
+ description: string;
8824
+ };
8825
+ channels: {
8826
+ type: "object";
8827
+ additionalProperties: {
8828
+ type: "object";
8829
+ properties: {
8830
+ title: {
8831
+ type: "string";
8832
+ maxLength: number;
8833
+ description: string;
8834
+ };
8835
+ description: {
8836
+ type: "string";
8837
+ maxLength: number;
8838
+ description: string;
8839
+ };
8840
+ messages: {
8841
+ type: "object";
8842
+ additionalProperties: {
8843
+ type: "object";
8844
+ properties: {
8845
+ schema: {
8846
+ type: "object";
8847
+ additionalProperties: true;
8848
+ };
8849
+ };
8850
+ required: string[];
8851
+ description: string;
8852
+ nullable: true;
8853
+ additionalProperties: false;
8854
+ };
8855
+ };
8856
+ conversation: {
8857
+ type: "object";
8858
+ properties: {
8859
+ creation: {
8860
+ type: "object";
8861
+ properties: {
8862
+ enabled: {
8863
+ type: "boolean";
8864
+ description: string;
8865
+ };
8866
+ requiredTags: {
8867
+ type: "array";
8868
+ items: {
8869
+ type: "string";
8870
+ };
8871
+ description: string;
8872
+ };
8873
+ };
8874
+ required: string[];
8875
+ description: string;
8876
+ additionalProperties: false;
8877
+ };
8878
+ tags: {
8879
+ type: "object";
8880
+ additionalProperties: {
8881
+ type: "object";
8882
+ properties: {
8883
+ title: {
8884
+ type: "string";
8885
+ maxLength: number;
8886
+ description: string;
8887
+ };
8888
+ description: {
8889
+ type: "string";
8890
+ maxLength: number;
8891
+ description: string;
8892
+ };
8893
+ };
8894
+ description: string;
8895
+ nullable: true;
8896
+ additionalProperties: false;
8897
+ };
8898
+ };
8899
+ };
8900
+ additionalProperties: false;
8901
+ };
8902
+ message: {
8903
+ type: "object";
8904
+ properties: {
8905
+ tags: {
8906
+ type: "object";
8907
+ additionalProperties: {
8908
+ type: "object";
8909
+ properties: {
8910
+ title: {
8911
+ type: "string";
8912
+ maxLength: number;
8913
+ description: string;
8914
+ };
8915
+ description: {
8916
+ type: "string";
8917
+ maxLength: number;
8918
+ description: string;
8919
+ };
8920
+ };
8921
+ description: string;
8922
+ nullable: true;
8923
+ additionalProperties: false;
8924
+ };
8925
+ };
8926
+ };
8927
+ additionalProperties: false;
8928
+ };
8929
+ };
8930
+ nullable: true;
8931
+ additionalProperties: false;
8932
+ };
8933
+ };
8934
+ identifier: {
8935
+ type: "object";
8936
+ properties: {
8937
+ extractScript: {
8938
+ type: "string";
8939
+ maxLength: number;
8940
+ nullable: true;
8941
+ };
8942
+ fallbackHandlerScript: {
8943
+ type: "string";
8944
+ maxLength: number;
8945
+ nullable: true;
8946
+ };
8947
+ };
8948
+ additionalProperties: false;
8949
+ };
8950
+ actions: {
8951
+ type: "object";
8952
+ additionalProperties: {
8953
+ type: "object";
8954
+ properties: {
8955
+ title: {
8956
+ type: "string";
8957
+ maxLength: number;
8958
+ description: string;
8959
+ };
8960
+ description: {
8961
+ type: "string";
8962
+ maxLength: number;
8963
+ description: string;
8964
+ };
8965
+ billable: {
8966
+ type: "boolean";
8967
+ };
8968
+ cacheable: {
8969
+ type: "boolean";
8970
+ };
8971
+ input: {
8972
+ type: "object";
8973
+ properties: {
8974
+ schema: {
8975
+ type: "object";
8976
+ additionalProperties: true;
8977
+ };
8978
+ };
8979
+ required: string[];
8980
+ additionalProperties: false;
8981
+ };
8982
+ output: {
8983
+ type: "object";
8984
+ properties: {
8985
+ schema: {
8986
+ type: "object";
8987
+ additionalProperties: true;
8988
+ };
8989
+ };
8990
+ required: string[];
8991
+ additionalProperties: false;
8992
+ };
8993
+ };
8994
+ required: string[];
8995
+ description: string;
8996
+ nullable: true;
8997
+ additionalProperties: false;
8998
+ };
8999
+ };
9000
+ events: {
9001
+ type: "object";
9002
+ additionalProperties: {
9003
+ type: "object";
9004
+ properties: {
9005
+ title: {
9006
+ type: "string";
9007
+ maxLength: number;
9008
+ description: string;
9009
+ };
9010
+ description: {
9011
+ type: "string";
9012
+ maxLength: number;
9013
+ description: string;
9014
+ };
9015
+ schema: {
9016
+ type: "object";
9017
+ additionalProperties: true;
9018
+ };
9019
+ };
9020
+ required: string[];
9021
+ description: string;
9022
+ nullable: true;
9023
+ additionalProperties: false;
9024
+ };
9025
+ };
9026
+ states: {
9027
+ type: "object";
9028
+ additionalProperties: {
9029
+ type: "object";
9030
+ properties: {
9031
+ type: {
9032
+ type: "string";
9033
+ enum: string[];
9034
+ description: string;
9035
+ };
9036
+ schema: {
9037
+ type: "object";
9038
+ additionalProperties: true;
9039
+ description: string;
9040
+ };
9041
+ };
9042
+ required: string[];
9043
+ description: string;
9044
+ nullable: true;
9045
+ additionalProperties: false;
9046
+ };
9047
+ };
9048
+ user: {
9049
+ type: "object";
9050
+ properties: {
9051
+ creation: {
9052
+ type: "object";
9053
+ properties: {
9054
+ enabled: {
9055
+ type: "boolean";
9056
+ description: string;
9057
+ };
9058
+ requiredTags: {
9059
+ type: "array";
9060
+ items: {
9061
+ type: "string";
9062
+ };
9063
+ description: string;
9064
+ };
9065
+ };
9066
+ required: string[];
9067
+ description: string;
9068
+ additionalProperties: false;
9069
+ };
9070
+ tags: {
9071
+ type: "object";
9072
+ additionalProperties: {
9073
+ type: "object";
9074
+ properties: {
9075
+ title: {
9076
+ type: "string";
9077
+ maxLength: number;
9078
+ description: string;
9079
+ };
9080
+ description: {
9081
+ type: "string";
9082
+ maxLength: number;
9083
+ description: string;
9084
+ };
9085
+ };
9086
+ description: string;
9087
+ nullable: true;
9088
+ additionalProperties: false;
9089
+ };
9090
+ };
9091
+ };
9092
+ additionalProperties: false;
9093
+ };
9094
+ entities: {
9095
+ type: "object";
9096
+ additionalProperties: {
9097
+ type: "object";
9098
+ properties: {
9099
+ title: {
9100
+ type: "string";
9101
+ maxLength: number;
9102
+ description: string;
9103
+ };
9104
+ description: {
9105
+ type: "string";
9106
+ maxLength: number;
9107
+ description: string;
9108
+ };
9109
+ schema: {
9110
+ type: "object";
9111
+ additionalProperties: true;
9112
+ };
9113
+ };
9114
+ required: string[];
9115
+ description: string;
9116
+ nullable: true;
9117
+ additionalProperties: false;
9118
+ };
9119
+ };
9120
+ interfaces: {
9121
+ type: "object";
9122
+ additionalProperties: {
9123
+ type: "object";
9124
+ properties: {
9125
+ id: {
9126
+ type: "string";
9127
+ minLength: number;
9128
+ maxLength: number;
9129
+ description: string;
9130
+ };
9131
+ entities: {
9132
+ type: "object";
9133
+ additionalProperties: {
9134
+ type: "object";
9135
+ properties: {
9136
+ name: {
9137
+ type: "string";
9138
+ maxLength: number;
9139
+ };
9140
+ };
9141
+ required: string[];
9142
+ additionalProperties: false;
9143
+ };
9144
+ };
9145
+ actions: {
9146
+ type: "object";
9147
+ additionalProperties: {
9148
+ type: "object";
9149
+ properties: {
9150
+ name: {
9151
+ type: "string";
9152
+ maxLength: number;
9153
+ };
9154
+ };
9155
+ required: string[];
9156
+ additionalProperties: false;
9157
+ };
9158
+ };
9159
+ events: {
9160
+ type: "object";
9161
+ additionalProperties: {
9162
+ type: "object";
9163
+ properties: {
9164
+ name: {
9165
+ type: "string";
9166
+ maxLength: number;
9167
+ };
9168
+ };
9169
+ required: string[];
9170
+ additionalProperties: false;
9171
+ };
9172
+ };
9173
+ channels: {
9174
+ type: "object";
9175
+ additionalProperties: {
9176
+ type: "object";
9177
+ properties: {
9178
+ name: {
9179
+ type: "string";
9180
+ maxLength: number;
9181
+ };
9182
+ };
9183
+ required: string[];
9184
+ additionalProperties: false;
9185
+ };
9186
+ };
9187
+ };
9188
+ required: string[];
9189
+ nullable: true;
9190
+ additionalProperties: false;
9191
+ };
9192
+ };
9193
+ secrets: {
9194
+ type: "object";
9195
+ additionalProperties: {
9196
+ type: "string";
9197
+ maxLength: number;
9198
+ nullable: true;
9199
+ };
9200
+ description: string;
9201
+ };
9202
+ code: {
9203
+ type: "string";
9204
+ description: string;
9205
+ };
9206
+ icon: {
9207
+ type: "string";
9208
+ description: string;
9209
+ };
9210
+ readme: {
9211
+ type: "string";
9212
+ description: string;
9213
+ };
9214
+ title: {
9215
+ type: "string";
9216
+ minLength: number;
9217
+ maxLength: number;
9218
+ description: string;
9219
+ };
9220
+ description: {
9221
+ type: "string";
9222
+ maxLength: number;
9223
+ description: string;
9224
+ };
9225
+ url: {
9226
+ type: "string";
9227
+ description: string;
9228
+ nullable: true;
9229
+ };
9230
+ public: {
9231
+ type: "boolean";
9232
+ description: string;
9233
+ };
9234
+ layers: {
9235
+ type: "array";
9236
+ items: {
9237
+ type: "string";
9238
+ };
9239
+ };
9240
+ };
9241
+ title: string;
9242
+ additionalProperties: false;
9243
+ };
9244
+ };
9245
+ response: {
9246
+ description: string;
9247
+ schema: {
9248
+ type: "object";
8210
9249
  title: string;
8211
9250
  additionalProperties: false;
8212
9251
  };
@@ -10494,6 +11533,18 @@ export declare const state: {
10494
11533
  description: string;
10495
11534
  type: "string";
10496
11535
  };
11536
+ sortField: {
11537
+ in: "query";
11538
+ description: string;
11539
+ type: "string";
11540
+ enum: string[];
11541
+ };
11542
+ sortDirection: {
11543
+ in: "query";
11544
+ description: string;
11545
+ type: "string";
11546
+ enum: string[];
11547
+ };
10497
11548
  tags: {
10498
11549
  in: "query";
10499
11550
  description: string;
@@ -12478,7 +13529,9 @@ export declare const state: {
12478
13529
  updateWorkspaceMemberBody: true;
12479
13530
  createIntegrationApiKeyBody: true;
12480
13531
  createIntegrationBody: true;
13532
+ validateIntegrationCreationBody: true;
12481
13533
  updateIntegrationBody: true;
13534
+ validateIntegrationUpdateBody: true;
12482
13535
  requestIntegrationVerificationBody: true;
12483
13536
  createInterfaceBody: true;
12484
13537
  updateInterfaceBody: true;
@@ -12601,7 +13654,9 @@ export declare const state: {
12601
13654
  createIntegrationApiKeyResponse: true;
12602
13655
  deleteIntegrationApiKeyResponse: true;
12603
13656
  createIntegrationResponse: true;
13657
+ validateIntegrationCreationResponse: true;
12604
13658
  updateIntegrationResponse: true;
13659
+ validateIntegrationUpdateResponse: true;
12605
13660
  listIntegrationsResponse: true;
12606
13661
  getIntegrationResponse: true;
12607
13662
  getIntegrationLogsResponse: true;