@platzio/sdk 0.6.0-beta.1-1 → 0.6.0-beta.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/index.d.mts CHANGED
@@ -126,6 +126,124 @@ declare class BaseAPI {
126
126
  constructor(configuration?: Configuration, basePath?: string, axios?: AxiosInstance);
127
127
  }
128
128
 
129
+ /**
130
+ *
131
+ * @export
132
+ * @interface AllBotTokens200Response
133
+ */
134
+ interface AllBotTokens200Response {
135
+ /**
136
+ *
137
+ * @type {number}
138
+ * @memberof AllBotTokens200Response
139
+ */
140
+ 'page': number;
141
+ /**
142
+ *
143
+ * @type {number}
144
+ * @memberof AllBotTokens200Response
145
+ */
146
+ 'per_page': number;
147
+ /**
148
+ *
149
+ * @type {Array<AllBotTokens200ResponseItemsInner>}
150
+ * @memberof AllBotTokens200Response
151
+ */
152
+ 'items': Array<AllBotTokens200ResponseItemsInner>;
153
+ /**
154
+ *
155
+ * @type {number}
156
+ * @memberof AllBotTokens200Response
157
+ */
158
+ 'num_total': number;
159
+ }
160
+ /**
161
+ *
162
+ * @export
163
+ * @interface AllBotTokens200ResponseItemsInner
164
+ */
165
+ interface AllBotTokens200ResponseItemsInner {
166
+ /**
167
+ *
168
+ * @type {string}
169
+ * @memberof AllBotTokens200ResponseItemsInner
170
+ */
171
+ 'id': string;
172
+ /**
173
+ *
174
+ * @type {string}
175
+ * @memberof AllBotTokens200ResponseItemsInner
176
+ */
177
+ 'bot_id': string;
178
+ /**
179
+ *
180
+ * @type {string}
181
+ * @memberof AllBotTokens200ResponseItemsInner
182
+ */
183
+ 'created_at': string;
184
+ /**
185
+ *
186
+ * @type {string}
187
+ * @memberof AllBotTokens200ResponseItemsInner
188
+ */
189
+ 'created_by_user_id': string;
190
+ }
191
+ /**
192
+ *
193
+ * @export
194
+ * @interface AllBots200Response
195
+ */
196
+ interface AllBots200Response {
197
+ /**
198
+ *
199
+ * @type {number}
200
+ * @memberof AllBots200Response
201
+ */
202
+ 'page': number;
203
+ /**
204
+ *
205
+ * @type {number}
206
+ * @memberof AllBots200Response
207
+ */
208
+ 'per_page': number;
209
+ /**
210
+ *
211
+ * @type {Array<AllBots200ResponseItemsInner>}
212
+ * @memberof AllBots200Response
213
+ */
214
+ 'items': Array<AllBots200ResponseItemsInner>;
215
+ /**
216
+ *
217
+ * @type {number}
218
+ * @memberof AllBots200Response
219
+ */
220
+ 'num_total': number;
221
+ }
222
+ /**
223
+ *
224
+ * @export
225
+ * @interface AllBots200ResponseItemsInner
226
+ */
227
+ interface AllBots200ResponseItemsInner {
228
+ /**
229
+ *
230
+ * @type {string}
231
+ * @memberof AllBots200ResponseItemsInner
232
+ */
233
+ 'id': string;
234
+ /**
235
+ *
236
+ * @type {string}
237
+ * @memberof AllBots200ResponseItemsInner
238
+ */
239
+ 'created_at': string;
240
+ /**
241
+ *
242
+ * @type {string}
243
+ * @memberof AllBots200ResponseItemsInner
244
+ */
245
+ 'display_name': string;
246
+ }
129
247
  /**
130
248
  *
131
249
  * @export
@@ -1508,6 +1626,62 @@ interface AllUsers200ResponseItemsInner {
1508
1626
  */
1509
1627
  'is_active': boolean;
1510
1628
  }
1629
+ /**
1630
+ *
1631
+ * @export
1632
+ * @interface Bot
1633
+ */
1634
+ interface Bot {
1635
+ /**
1636
+ *
1637
+ * @type {string}
1638
+ * @memberof Bot
1639
+ */
1640
+ 'id': string;
1641
+ /**
1642
+ *
1643
+ * @type {string}
1644
+ * @memberof Bot
1645
+ */
1646
+ 'created_at': string;
1647
+ /**
1648
+ *
1649
+ * @type {string}
1650
+ * @memberof Bot
1651
+ */
1652
+ 'display_name': string;
1653
+ }
1654
+ /**
1655
+ *
1656
+ * @export
1657
+ * @interface BotToken
1658
+ */
1659
+ interface BotToken {
1660
+ /**
1661
+ *
1662
+ * @type {string}
1663
+ * @memberof BotToken
1664
+ */
1665
+ 'id': string;
1666
+ /**
1667
+ *
1668
+ * @type {string}
1669
+ * @memberof BotToken
1670
+ */
1671
+ 'bot_id': string;
1672
+ /**
1673
+ *
1674
+ * @type {string}
1675
+ * @memberof BotToken
1676
+ */
1677
+ 'created_at': string;
1678
+ /**
1679
+ *
1680
+ * @type {string}
1681
+ * @memberof BotToken
1682
+ */
1683
+ 'created_by_user_id': string;
1684
+ }
1511
1685
  /**
1512
1686
  *
1513
1687
  * @export
@@ -2231,6 +2405,19 @@ interface ChartMetadata {
2231
2405
  */
2232
2406
  'git_provider'?: string | null;
2233
2407
  }
2408
+ /**
2409
+ *
2410
+ * @export
2411
+ * @interface CreateBotToken
2412
+ */
2413
+ interface CreateBotToken {
2414
+ /**
2415
+ *
2416
+ * @type {string}
2417
+ * @memberof CreateBotToken
2418
+ */
2419
+ 'bot_id': string;
2420
+ }
2234
2421
  /**
2235
2422
  *
2236
2423
  * @export
@@ -2269,6 +2456,19 @@ interface CreateUserToken {
2269
2456
  */
2270
2457
  'user_id': string | null;
2271
2458
  }
2459
+ /**
2460
+ *
2461
+ * @export
2462
+ * @interface CreatedBotToken
2463
+ */
2464
+ interface CreatedBotToken {
2465
+ /**
2466
+ *
2467
+ * @type {string}
2468
+ * @memberof CreatedBotToken
2469
+ */
2470
+ 'created_token': string;
2471
+ }
2272
2472
  /**
2273
2473
  *
2274
2474
  * @export
@@ -2337,6 +2537,7 @@ type DbEventOperation = typeof DbEventOperation[keyof typeof DbEventOperation];
2337
2537
  * @enum {string}
2338
2538
  */
2339
2539
  declare const DbTable: {
2540
+ readonly Bots: "bots";
2340
2541
  readonly DeploymentKinds: "deployment_kinds";
2341
2542
  readonly DeploymentResources: "deployment_resources";
2342
2543
  readonly DeploymentResourceTypes: "deployment_resource_types";
@@ -3627,7 +3828,7 @@ interface K8sResource {
3627
3828
  * @type MeResponse
3628
3829
  * @export
3629
3830
  */
3630
- type MeResponse = MeResponseOneOf | MeResponseOneOf1;
3831
+ type MeResponse = MeResponseOneOf | MeResponseOneOf1 | MeResponseOneOf2;
3631
3832
  /**
3632
3833
  *
3633
3834
  * @export
@@ -3649,30 +3850,56 @@ interface MeResponseOneOf {
3649
3850
  interface MeResponseOneOf1 {
3650
3851
  /**
3651
3852
  *
3652
- * @type {MeResponseOneOf1Deployment}
3853
+ * @type {Bot}
3653
3854
  * @memberof MeResponseOneOf1
3654
3855
  */
3655
- 'Deployment': MeResponseOneOf1Deployment;
3856
+ 'Bot': Bot;
3857
+ }
3858
+ /**
3859
+ *
3860
+ * @export
3861
+ * @interface MeResponseOneOf2
3862
+ */
3863
+ interface MeResponseOneOf2 {
3864
+ /**
3865
+ *
3866
+ * @type {MeResponseOneOf2Deployment}
3867
+ * @memberof MeResponseOneOf2
3868
+ */
3869
+ 'Deployment': MeResponseOneOf2Deployment;
3656
3870
  }
3657
3871
  /**
3658
3872
  *
3659
3873
  * @export
3660
- * @interface MeResponseOneOf1Deployment
3874
+ * @interface MeResponseOneOf2Deployment
3661
3875
  */
3662
- interface MeResponseOneOf1Deployment {
3876
+ interface MeResponseOneOf2Deployment {
3663
3877
  /**
3664
3878
  *
3665
3879
  * @type {string}
3666
- * @memberof MeResponseOneOf1Deployment
3880
+ * @memberof MeResponseOneOf2Deployment
3667
3881
  */
3668
3882
  'id': string;
3669
3883
  /**
3670
3884
  *
3671
3885
  * @type {string}
3672
- * @memberof MeResponseOneOf1Deployment
3886
+ * @memberof MeResponseOneOf2Deployment
3673
3887
  */
3674
3888
  'name': string;
3675
3889
  }
3890
+ /**
3891
+ *
3892
+ * @export
3893
+ * @interface NewBot
3894
+ */
3895
+ interface NewBot {
3896
+ /**
3897
+ *
3898
+ * @type {string}
3899
+ * @memberof NewBot
3900
+ */
3901
+ 'display_name': string;
3902
+ }
3676
3903
  /**
3677
3904
  *
3678
3905
  * @export
@@ -4367,6 +4594,19 @@ interface UiSchemaV1Beta1 {
4367
4594
  */
4368
4595
  'kind': ChartExtKindValuesUi;
4369
4596
  }
4597
+ /**
4598
+ *
4599
+ * @export
4600
+ * @interface UpdateBot
4601
+ */
4602
+ interface UpdateBot {
4603
+ /**
4604
+ *
4605
+ * @type {string}
4606
+ * @memberof UpdateBot
4607
+ */
4608
+ 'display_name'?: string | null;
4609
+ }
4370
4610
  /**
4371
4611
  *
4372
4612
  * @export
@@ -4775,6 +5015,400 @@ declare class AuthenticationApi extends BaseAPI {
4775
5015
  */
4776
5016
  startGoogleLogin(options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<StartGoogleLoginResponse, any>>;
4777
5017
  }
5018
+ /**
5019
+ * BotTokensApi - axios parameter creator
5020
+ * @export
5021
+ */
5022
+ declare const BotTokensApiAxiosParamCreator: (configuration?: Configuration) => {
5023
+ /**
5024
+ *
5025
+ * @param {string | null} [botId]
5026
+ * @param {string | null} [createdByUserId]
5027
+ * @param {number | null} [page]
5028
+ * @param {number | null} [perPage]
5029
+ * @param {*} [options] Override http request option.
5030
+ * @throws {RequiredError}
5031
+ */
5032
+ allBotTokens: (botId?: string | null, createdByUserId?: string | null, page?: number | null, perPage?: number | null, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5033
+ /**
5034
+ *
5035
+ * @param {CreateBotToken} createBotToken
5036
+ * @param {*} [options] Override http request option.
5037
+ * @throws {RequiredError}
5038
+ */
5039
+ createBotToken: (createBotToken: CreateBotToken, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5040
+ /**
5041
+ *
5042
+ * @param {string} id
5043
+ * @param {*} [options] Override http request option.
5044
+ * @throws {RequiredError}
5045
+ */
5046
+ deleteBotToken: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5047
+ /**
5048
+ *
5049
+ * @param {string} id
5050
+ * @param {*} [options] Override http request option.
5051
+ * @throws {RequiredError}
5052
+ */
5053
+ getBotToken: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5054
+ };
5055
+ /**
5056
+ * BotTokensApi - functional programming interface
5057
+ * @export
5058
+ */
5059
+ declare const BotTokensApiFp: (configuration?: Configuration) => {
5060
+ /**
5061
+ *
5062
+ * @param {string | null} [botId]
5063
+ * @param {string | null} [createdByUserId]
5064
+ * @param {number | null} [page]
5065
+ * @param {number | null} [perPage]
5066
+ * @param {*} [options] Override http request option.
5067
+ * @throws {RequiredError}
5068
+ */
5069
+ allBotTokens(botId?: string | null, createdByUserId?: string | null, page?: number | null, perPage?: number | null, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AllBotTokens200Response>>;
5070
+ /**
5071
+ *
5072
+ * @param {CreateBotToken} createBotToken
5073
+ * @param {*} [options] Override http request option.
5074
+ * @throws {RequiredError}
5075
+ */
5076
+ createBotToken(createBotToken: CreateBotToken, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreatedBotToken>>;
5077
+ /**
5078
+ *
5079
+ * @param {string} id
5080
+ * @param {*} [options] Override http request option.
5081
+ * @throws {RequiredError}
5082
+ */
5083
+ deleteBotToken(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
5084
+ /**
5085
+ *
5086
+ * @param {string} id
5087
+ * @param {*} [options] Override http request option.
5088
+ * @throws {RequiredError}
5089
+ */
5090
+ getBotToken(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BotToken>>;
5091
+ };
5092
+ /**
5093
+ * BotTokensApi - factory interface
5094
+ * @export
5095
+ */
5096
+ declare const BotTokensApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
5097
+ /**
5098
+ *
5099
+ * @param {BotTokensApiAllBotTokensRequest} requestParameters Request parameters.
5100
+ * @param {*} [options] Override http request option.
5101
+ * @throws {RequiredError}
5102
+ */
5103
+ allBotTokens(requestParameters?: BotTokensApiAllBotTokensRequest, options?: RawAxiosRequestConfig): AxiosPromise<AllBotTokens200Response>;
5104
+ /**
5105
+ *
5106
+ * @param {BotTokensApiCreateBotTokenRequest} requestParameters Request parameters.
5107
+ * @param {*} [options] Override http request option.
5108
+ * @throws {RequiredError}
5109
+ */
5110
+ createBotToken(requestParameters: BotTokensApiCreateBotTokenRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreatedBotToken>;
5111
+ /**
5112
+ *
5113
+ * @param {BotTokensApiDeleteBotTokenRequest} requestParameters Request parameters.
5114
+ * @param {*} [options] Override http request option.
5115
+ * @throws {RequiredError}
5116
+ */
5117
+ deleteBotToken(requestParameters: BotTokensApiDeleteBotTokenRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
5118
+ /**
5119
+ *
5120
+ * @param {BotTokensApiGetBotTokenRequest} requestParameters Request parameters.
5121
+ * @param {*} [options] Override http request option.
5122
+ * @throws {RequiredError}
5123
+ */
5124
+ getBotToken(requestParameters: BotTokensApiGetBotTokenRequest, options?: RawAxiosRequestConfig): AxiosPromise<BotToken>;
5125
+ };
5126
+ /**
5127
+ * Request parameters for allBotTokens operation in BotTokensApi.
5128
+ * @export
5129
+ * @interface BotTokensApiAllBotTokensRequest
5130
+ */
5131
+ interface BotTokensApiAllBotTokensRequest {
5132
+ /**
5133
+ *
5134
+ * @type {string}
5135
+ * @memberof BotTokensApiAllBotTokens
5136
+ */
5137
+ readonly botId?: string | null;
5138
+ /**
5139
+ *
5140
+ * @type {string}
5141
+ * @memberof BotTokensApiAllBotTokens
5142
+ */
5143
+ readonly createdByUserId?: string | null;
5144
+ /**
5145
+ *
5146
+ * @type {number}
5147
+ * @memberof BotTokensApiAllBotTokens
5148
+ */
5149
+ readonly page?: number | null;
5150
+ /**
5151
+ *
5152
+ * @type {number}
5153
+ * @memberof BotTokensApiAllBotTokens
5154
+ */
5155
+ readonly perPage?: number | null;
5156
+ }
5157
+ /**
5158
+ * Request parameters for createBotToken operation in BotTokensApi.
5159
+ * @export
5160
+ * @interface BotTokensApiCreateBotTokenRequest
5161
+ */
5162
+ interface BotTokensApiCreateBotTokenRequest {
5163
+ /**
5164
+ *
5165
+ * @type {CreateBotToken}
5166
+ * @memberof BotTokensApiCreateBotToken
5167
+ */
5168
+ readonly createBotToken: CreateBotToken;
5169
+ }
5170
+ /**
5171
+ * Request parameters for deleteBotToken operation in BotTokensApi.
5172
+ * @export
5173
+ * @interface BotTokensApiDeleteBotTokenRequest
5174
+ */
5175
+ interface BotTokensApiDeleteBotTokenRequest {
5176
+ /**
5177
+ *
5178
+ * @type {string}
5179
+ * @memberof BotTokensApiDeleteBotToken
5180
+ */
5181
+ readonly id: string;
5182
+ }
5183
+ /**
5184
+ * Request parameters for getBotToken operation in BotTokensApi.
5185
+ * @export
5186
+ * @interface BotTokensApiGetBotTokenRequest
5187
+ */
5188
+ interface BotTokensApiGetBotTokenRequest {
5189
+ /**
5190
+ *
5191
+ * @type {string}
5192
+ * @memberof BotTokensApiGetBotToken
5193
+ */
5194
+ readonly id: string;
5195
+ }
5196
+ /**
5197
+ * BotTokensApi - object-oriented interface
5198
+ * @export
5199
+ * @class BotTokensApi
5200
+ * @extends {BaseAPI}
5201
+ */
5202
+ declare class BotTokensApi extends BaseAPI {
5203
+ /**
5204
+ *
5205
+ * @param {BotTokensApiAllBotTokensRequest} requestParameters Request parameters.
5206
+ * @param {*} [options] Override http request option.
5207
+ * @throws {RequiredError}
5208
+ * @memberof BotTokensApi
5209
+ */
5210
+ allBotTokens(requestParameters?: BotTokensApiAllBotTokensRequest, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<AllBotTokens200Response, any>>;
5211
+ /**
5212
+ *
5213
+ * @param {BotTokensApiCreateBotTokenRequest} requestParameters Request parameters.
5214
+ * @param {*} [options] Override http request option.
5215
+ * @throws {RequiredError}
5216
+ * @memberof BotTokensApi
5217
+ */
5218
+ createBotToken(requestParameters: BotTokensApiCreateBotTokenRequest, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<CreatedBotToken, any>>;
5219
+ /**
5220
+ *
5221
+ * @param {BotTokensApiDeleteBotTokenRequest} requestParameters Request parameters.
5222
+ * @param {*} [options] Override http request option.
5223
+ * @throws {RequiredError}
5224
+ * @memberof BotTokensApi
5225
+ */
5226
+ deleteBotToken(requestParameters: BotTokensApiDeleteBotTokenRequest, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
5227
+ /**
5228
+ *
5229
+ * @param {BotTokensApiGetBotTokenRequest} requestParameters Request parameters.
5230
+ * @param {*} [options] Override http request option.
5231
+ * @throws {RequiredError}
5232
+ * @memberof BotTokensApi
5233
+ */
5234
+ getBotToken(requestParameters: BotTokensApiGetBotTokenRequest, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<BotToken, any>>;
5235
+ }
5236
+ /**
5237
+ * BotsApi - axios parameter creator
5238
+ * @export
5239
+ */
5240
+ declare const BotsApiAxiosParamCreator: (configuration?: Configuration) => {
5241
+ /**
5242
+ *
5243
+ * @param {string | null} [displayName]
5244
+ * @param {number | null} [page]
5245
+ * @param {number | null} [perPage]
5246
+ * @param {*} [options] Override http request option.
5247
+ * @throws {RequiredError}
5248
+ */
5249
+ allBots: (displayName?: string | null, page?: number | null, perPage?: number | null, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5250
+ /**
5251
+ *
5252
+ * @param {string} id
5253
+ * @param {*} [options] Override http request option.
5254
+ * @throws {RequiredError}
5255
+ */
5256
+ getBot: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5257
+ /**
5258
+ *
5259
+ * @param {string} id
5260
+ * @param {UpdateBot} updateBot
5261
+ * @param {*} [options] Override http request option.
5262
+ * @throws {RequiredError}
5263
+ */
5264
+ updateBot: (id: string, updateBot: UpdateBot, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5265
+ };
5266
+ /**
5267
+ * BotsApi - functional programming interface
5268
+ * @export
5269
+ */
5270
+ declare const BotsApiFp: (configuration?: Configuration) => {
5271
+ /**
5272
+ *
5273
+ * @param {string | null} [displayName]
5274
+ * @param {number | null} [page]
5275
+ * @param {number | null} [perPage]
5276
+ * @param {*} [options] Override http request option.
5277
+ * @throws {RequiredError}
5278
+ */
5279
+ allBots(displayName?: string | null, page?: number | null, perPage?: number | null, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AllBots200Response>>;
5280
+ /**
5281
+ *
5282
+ * @param {string} id
5283
+ * @param {*} [options] Override http request option.
5284
+ * @throws {RequiredError}
5285
+ */
5286
+ getBot(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Bot>>;
5287
+ /**
5288
+ *
5289
+ * @param {string} id
5290
+ * @param {UpdateBot} updateBot
5291
+ * @param {*} [options] Override http request option.
5292
+ * @throws {RequiredError}
5293
+ */
5294
+ updateBot(id: string, updateBot: UpdateBot, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Bot>>;
5295
+ };
5296
+ /**
5297
+ * BotsApi - factory interface
5298
+ * @export
5299
+ */
5300
+ declare const BotsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
5301
+ /**
5302
+ *
5303
+ * @param {BotsApiAllBotsRequest} requestParameters Request parameters.
5304
+ * @param {*} [options] Override http request option.
5305
+ * @throws {RequiredError}
5306
+ */
5307
+ allBots(requestParameters?: BotsApiAllBotsRequest, options?: RawAxiosRequestConfig): AxiosPromise<AllBots200Response>;
5308
+ /**
5309
+ *
5310
+ * @param {BotsApiGetBotRequest} requestParameters Request parameters.
5311
+ * @param {*} [options] Override http request option.
5312
+ * @throws {RequiredError}
5313
+ */
5314
+ getBot(requestParameters: BotsApiGetBotRequest, options?: RawAxiosRequestConfig): AxiosPromise<Bot>;
5315
+ /**
5316
+ *
5317
+ * @param {BotsApiUpdateBotRequest} requestParameters Request parameters.
5318
+ * @param {*} [options] Override http request option.
5319
+ * @throws {RequiredError}
5320
+ */
5321
+ updateBot(requestParameters: BotsApiUpdateBotRequest, options?: RawAxiosRequestConfig): AxiosPromise<Bot>;
5322
+ };
5323
+ /**
5324
+ * Request parameters for allBots operation in BotsApi.
5325
+ * @export
5326
+ * @interface BotsApiAllBotsRequest
5327
+ */
5328
+ interface BotsApiAllBotsRequest {
5329
+ /**
5330
+ *
5331
+ * @type {string}
5332
+ * @memberof BotsApiAllBots
5333
+ */
5334
+ readonly displayName?: string | null;
5335
+ /**
5336
+ *
5337
+ * @type {number}
5338
+ * @memberof BotsApiAllBots
5339
+ */
5340
+ readonly page?: number | null;
5341
+ /**
5342
+ *
5343
+ * @type {number}
5344
+ * @memberof BotsApiAllBots
5345
+ */
5346
+ readonly perPage?: number | null;
5347
+ }
5348
+ /**
5349
+ * Request parameters for getBot operation in BotsApi.
5350
+ * @export
5351
+ * @interface BotsApiGetBotRequest
5352
+ */
5353
+ interface BotsApiGetBotRequest {
5354
+ /**
5355
+ *
5356
+ * @type {string}
5357
+ * @memberof BotsApiGetBot
5358
+ */
5359
+ readonly id: string;
5360
+ }
5361
+ /**
5362
+ * Request parameters for updateBot operation in BotsApi.
5363
+ * @export
5364
+ * @interface BotsApiUpdateBotRequest
5365
+ */
5366
+ interface BotsApiUpdateBotRequest {
5367
+ /**
5368
+ *
5369
+ * @type {string}
5370
+ * @memberof BotsApiUpdateBot
5371
+ */
5372
+ readonly id: string;
5373
+ /**
5374
+ *
5375
+ * @type {UpdateBot}
5376
+ * @memberof BotsApiUpdateBot
5377
+ */
5378
+ readonly updateBot: UpdateBot;
5379
+ }
5380
+ /**
5381
+ * BotsApi - object-oriented interface
5382
+ * @export
5383
+ * @class BotsApi
5384
+ * @extends {BaseAPI}
5385
+ */
5386
+ declare class BotsApi extends BaseAPI {
5387
+ /**
5388
+ *
5389
+ * @param {BotsApiAllBotsRequest} requestParameters Request parameters.
5390
+ * @param {*} [options] Override http request option.
5391
+ * @throws {RequiredError}
5392
+ * @memberof BotsApi
5393
+ */
5394
+ allBots(requestParameters?: BotsApiAllBotsRequest, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<AllBots200Response, any>>;
5395
+ /**
5396
+ *
5397
+ * @param {BotsApiGetBotRequest} requestParameters Request parameters.
5398
+ * @param {*} [options] Override http request option.
5399
+ * @throws {RequiredError}
5400
+ * @memberof BotsApi
5401
+ */
5402
+ getBot(requestParameters: BotsApiGetBotRequest, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<Bot, any>>;
5403
+ /**
5404
+ *
5405
+ * @param {BotsApiUpdateBotRequest} requestParameters Request parameters.
5406
+ * @param {*} [options] Override http request option.
5407
+ * @throws {RequiredError}
5408
+ * @memberof BotsApi
5409
+ */
5410
+ updateBot(requestParameters: BotsApiUpdateBotRequest, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<Bot, any>>;
5411
+ }
4778
5412
  /**
4779
5413
  * DeploymentKindsApi - axios parameter creator
4780
5414
  * @export
@@ -8135,4 +8769,4 @@ declare class UsersApi extends BaseAPI {
8135
8769
  updateUser(requestParameters: UsersApiUpdateUserRequest, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<User, any>>;
8136
8770
  }
8137
8771
 
8138
- export { type AllDeploymentKinds200Response, type AllDeploymentKinds200ResponseItemsInner, type AllDeploymentPermissions200Response, type AllDeploymentPermissions200ResponseItemsInner, type AllDeploymentResourceTypes200Response, type AllDeploymentResourceTypes200ResponseItemsInner, type AllDeploymentResources200Response, type AllDeploymentResources200ResponseItemsInner, type AllDeploymentTasks200Response, type AllDeploymentTasks200ResponseItemsInner, type AllDeployments200Response, type AllDeployments200ResponseItemsInner, type AllEnvUserPermissions200Response, type AllEnvUserPermissions200ResponseItemsInner, type AllEnvs200Response, type AllEnvs200ResponseItemsInner, type AllHelmCharts200Response, type AllHelmCharts200ResponseItemsInner, type AllHelmRegistries200Response, type AllHelmRegistries200ResponseItemsInner, type AllHelmTagFormats200Response, type AllHelmTagFormats200ResponseItemsInner, type AllK8sClusters200Response, type AllK8sClusters200ResponseItemsInner, type AllK8sResources200Response, type AllK8sResources200ResponseItemsInner, type AllSecrets200Response, type AllSecrets200ResponseItemsInner, type AllUserTokens200Response, type AllUserTokens200ResponseItemsInner, type AllUsers200Response, type AllUsers200ResponseItemsInner, AuthenticationApi, AuthenticationApiAxiosParamCreator, AuthenticationApiFactory, type AuthenticationApiFinishGoogleLoginRequest, AuthenticationApiFp, type CancelDeploymentTask, type ChartExt, ChartExtActionEndpoint, ChartExtActionMethod, type ChartExtActionTarget, ChartExtActionUserDeploymentRole, type ChartExtActionV0, type ChartExtActionV1Beta1, type ChartExtActions, type ChartExtActionsV0, ChartExtCardinality, type ChartExtDeploymentDisplay, type ChartExtDeploymentDisplayIcon, type ChartExtDeploymentDisplayName, type ChartExtDeploymentDisplayNameInputField, type ChartExtDeploymentDisplayNameOneOf, type ChartExtFeatures, type ChartExtFeaturesSpec, type ChartExtFeaturesV0, type ChartExtFeaturesV1Beta1, type ChartExtFeaturesV1Beta2, type ChartExtIngress, ChartExtIngressHostnameFormat, ChartExtKindAction, ChartExtKindFeatures, ChartExtKindResourceType, ChartExtKindValuesUi, type ChartExtResourceLifecycleActionV1Beta1, type ChartExtResourceLifecycleV1Beta1, type ChartExtResourceType, type ChartExtResourceTypeV1Beta1, type ChartExtResourceTypeV1Beta1Spec, type ChartExtStatusFeature, ChartExtVersionV1Beta1, ChartExtVersionV1Beta2, type ChartMetadata, Configuration, type ConfigurationParameters, type CreateDeploymentTask, type CreateUserToken, type CreatedUserToken, type DbEvent, type DbEventData, DbEventOperation, DbTable, type DbTableOrDeploymentResource, type DbTableOrDeploymentResourceOneOf, type Deployment, type DeploymentInstallTask, type DeploymentInvokeActionTask, type DeploymentKind, DeploymentKindsApi, type DeploymentKindsApiAllDeploymentKindsRequest, DeploymentKindsApiAxiosParamCreator, DeploymentKindsApiFactory, DeploymentKindsApiFp, type DeploymentKindsApiGetDeploymentKindRequest, type DeploymentKindsApiUpdateDeploymentKindRequest, type DeploymentPermission, DeploymentPermissionsApi, type DeploymentPermissionsApiAllDeploymentPermissionsRequest, DeploymentPermissionsApiAxiosParamCreator, type DeploymentPermissionsApiCreateDeploymentPermissionRequest, type DeploymentPermissionsApiDeleteDeploymentPermissionRequest, DeploymentPermissionsApiFactory, DeploymentPermissionsApiFp, type DeploymentPermissionsApiGetDeploymentPermissionRequest, type DeploymentRecreaseTask, type DeploymentReinstallTask, type DeploymentReportedMetric, type DeploymentReportedNotice, DeploymentReportedNoticeLevel, type DeploymentReportedStatus, DeploymentReportedStatusColor, type DeploymentReportedStatusContent, type DeploymentReportedStatusSummary, type DeploymentResource, DeploymentResourceSyncStatus, type DeploymentResourceType, DeploymentResourceTypesApi, type DeploymentResourceTypesApiAllDeploymentResourceTypesRequest, DeploymentResourceTypesApiAxiosParamCreator, DeploymentResourceTypesApiFactory, DeploymentResourceTypesApiFp, type DeploymentResourceTypesApiGetDeploymentResourceTypeRequest, DeploymentResourcesApi, type DeploymentResourcesApiAllDeploymentResourcesRequest, DeploymentResourcesApiAxiosParamCreator, type DeploymentResourcesApiCreateDeploymentResourceRequest, type DeploymentResourcesApiDeleteDeploymentResourceRequest, DeploymentResourcesApiFactory, DeploymentResourcesApiFp, type DeploymentResourcesApiGetDeploymentResourceRequest, type DeploymentResourcesApiUpdateDeploymentResourceRequest, type DeploymentRestartK8sResourceTask, DeploymentStatus, type DeploymentTask, type DeploymentTaskOperation, type DeploymentTaskOperationOneOf, type DeploymentTaskOperationOneOf1, type DeploymentTaskOperationOneOf2, type DeploymentTaskOperationOneOf3, type DeploymentTaskOperationOneOf4, type DeploymentTaskOperationOneOf5, type DeploymentTaskOperationOneOf6, DeploymentTaskStatus, DeploymentTasksApi, type DeploymentTasksApiAllDeploymentTasksRequest, DeploymentTasksApiAxiosParamCreator, type DeploymentTasksApiCreateDeploymentTaskRequest, DeploymentTasksApiFactory, DeploymentTasksApiFp, type DeploymentTasksApiGetDeploymentTaskRequest, type DeploymentUpgradeTask, DeploymentsApi, type DeploymentsApiAllDeploymentsRequest, DeploymentsApiAxiosParamCreator, type DeploymentsApiCreateDeploymentRequest, type DeploymentsApiDeleteDeploymentRequest, DeploymentsApiFactory, DeploymentsApiFp, type DeploymentsApiGetDeploymentRequest, type DeploymentsApiUpdateDeploymentRequest, type Env, type EnvUserPermission, EnvUserPermissionsApi, type EnvUserPermissionsApiAllEnvUserPermissionsRequest, EnvUserPermissionsApiAxiosParamCreator, type EnvUserPermissionsApiCreateEnvUserPermissionRequest, type EnvUserPermissionsApiDeleteEnvUserPermissionRequest, EnvUserPermissionsApiFactory, EnvUserPermissionsApiFp, type EnvUserPermissionsApiGetEnvUserPermissionRequest, EnvUserRole, EnvsApi, type EnvsApiAllEnvsRequest, EnvsApiAxiosParamCreator, type EnvsApiCreateEnvRequest, type EnvsApiDeleteEnvRequest, EnvsApiFactory, EnvsApiFp, type EnvsApiGetEnvRequest, type EnvsApiUpdateEnvRequest, type FinishGoogleLoginResponse, type HelmChart, HelmChartsApi, type HelmChartsApiAllHelmChartsRequest, HelmChartsApiAxiosParamCreator, HelmChartsApiFactory, HelmChartsApiFp, type HelmChartsApiGetHelmChartRequest, HelmRegistriesApi, type HelmRegistriesApiAllHelmRegistriesRequest, HelmRegistriesApiAxiosParamCreator, HelmRegistriesApiFactory, HelmRegistriesApiFp, type HelmRegistriesApiGetHelmRegistryRequest, type HelmRegistriesApiUpdateHelmRegistryRequest, type HelmRegistry, type HelmTagFormat, HelmTagFormatsApi, type HelmTagFormatsApiAllHelmTagFormatsRequest, HelmTagFormatsApiAxiosParamCreator, type HelmTagFormatsApiCreateHelmTagFormatRequest, type HelmTagFormatsApiDeleteHelmTagFormatRequest, HelmTagFormatsApiFactory, HelmTagFormatsApiFp, type HelmTagFormatsApiGetHelmTagFormatRequest, type K8sCluster, type K8sResource, KubernetesClustersApi, type KubernetesClustersApiAllK8sClustersRequest, KubernetesClustersApiAxiosParamCreator, type KubernetesClustersApiDeleteK8sClusterRequest, KubernetesClustersApiFactory, KubernetesClustersApiFp, type KubernetesClustersApiGetK8sClusterRequest, type KubernetesClustersApiUpdateK8sClusterRequest, KubernetesResourcesApi, type KubernetesResourcesApiAllK8sResourcesRequest, KubernetesResourcesApiAxiosParamCreator, KubernetesResourcesApiFactory, KubernetesResourcesApiFp, type KubernetesResourcesApiGetK8sResourceRequest, type MeResponse, type MeResponseOneOf, type MeResponseOneOf1, type MeResponseOneOf1Deployment, type NewDeployment, type NewDeploymentPermission, type NewDeploymentResource, type NewEnv, type NewEnvUserPermission, type NewHelmTagFormat, type NewSecret, type OAuth2Response, type Secret, SecretsApi, type SecretsApiAllSecretsRequest, SecretsApiAxiosParamCreator, type SecretsApiCreateSecretRequest, type SecretsApiDeleteSecretRequest, SecretsApiFactory, SecretsApiFp, type SecretsApiGetSecretRequest, type SecretsApiUpdateSecretRequest, type SerializedUiSchemaInputType, ServerApi, ServerApiAxiosParamCreator, ServerApiFactory, ServerApiFp, type ServerInfo, type StartGoogleLoginResponse, type UiSchema, type UiSchemaFieldValuePair, type UiSchemaInput, type UiSchemaInputFieldOption, type UiSchemaInputFieldValue, type UiSchemaInputRef, type UiSchemaInputRefField, type UiSchemaInputRefOneOf, type UiSchemaInputRefOneOf1, type UiSchemaInputRefProperty, type UiSchemaInputSingleType, type UiSchemaInputSingleTypeOneOf, type UiSchemaInputSingleTypeOneOfCollectionSelect, type UiSchemaInputType, type UiSchemaOutputValue, type UiSchemaOutputs, type UiSchemaV0, type UiSchemaV1Beta1, type UpdateDeployment, type UpdateDeploymentKind, type UpdateDeploymentResource, type UpdateEnv, type UpdateHelmRegistry, type UpdateK8sCluster, type UpdateSecret, type UpdateUser, type User, UserDeploymentRole, type UserToken, UserTokensApi, type UserTokensApiAllUserTokensRequest, UserTokensApiAxiosParamCreator, type UserTokensApiCreateUserTokenRequest, type UserTokensApiDeleteUserTokenRequest, UserTokensApiFactory, UserTokensApiFp, type UserTokensApiGetUserTokenRequest, UsersApi, type UsersApiAllUsersRequest, UsersApiAxiosParamCreator, UsersApiFactory, UsersApiFp, type UsersApiGetUserRequest, type UsersApiUpdateUserRequest };
8772
+ export { type AllBotTokens200Response, type AllBotTokens200ResponseItemsInner, type AllBots200Response, type AllBots200ResponseItemsInner, type AllDeploymentKinds200Response, type AllDeploymentKinds200ResponseItemsInner, type AllDeploymentPermissions200Response, type AllDeploymentPermissions200ResponseItemsInner, type AllDeploymentResourceTypes200Response, type AllDeploymentResourceTypes200ResponseItemsInner, type AllDeploymentResources200Response, type AllDeploymentResources200ResponseItemsInner, type AllDeploymentTasks200Response, type AllDeploymentTasks200ResponseItemsInner, type AllDeployments200Response, type AllDeployments200ResponseItemsInner, type AllEnvUserPermissions200Response, type AllEnvUserPermissions200ResponseItemsInner, type AllEnvs200Response, type AllEnvs200ResponseItemsInner, type AllHelmCharts200Response, type AllHelmCharts200ResponseItemsInner, type AllHelmRegistries200Response, type AllHelmRegistries200ResponseItemsInner, type AllHelmTagFormats200Response, type AllHelmTagFormats200ResponseItemsInner, type AllK8sClusters200Response, type AllK8sClusters200ResponseItemsInner, type AllK8sResources200Response, type AllK8sResources200ResponseItemsInner, type AllSecrets200Response, type AllSecrets200ResponseItemsInner, type AllUserTokens200Response, type AllUserTokens200ResponseItemsInner, type AllUsers200Response, type AllUsers200ResponseItemsInner, AuthenticationApi, AuthenticationApiAxiosParamCreator, AuthenticationApiFactory, type AuthenticationApiFinishGoogleLoginRequest, AuthenticationApiFp, type Bot, type BotToken, BotTokensApi, type BotTokensApiAllBotTokensRequest, BotTokensApiAxiosParamCreator, type BotTokensApiCreateBotTokenRequest, type BotTokensApiDeleteBotTokenRequest, BotTokensApiFactory, BotTokensApiFp, type BotTokensApiGetBotTokenRequest, BotsApi, type BotsApiAllBotsRequest, BotsApiAxiosParamCreator, BotsApiFactory, BotsApiFp, type BotsApiGetBotRequest, type BotsApiUpdateBotRequest, type CancelDeploymentTask, type ChartExt, ChartExtActionEndpoint, ChartExtActionMethod, type ChartExtActionTarget, ChartExtActionUserDeploymentRole, type ChartExtActionV0, type ChartExtActionV1Beta1, type ChartExtActions, type ChartExtActionsV0, ChartExtCardinality, type ChartExtDeploymentDisplay, type ChartExtDeploymentDisplayIcon, type ChartExtDeploymentDisplayName, type ChartExtDeploymentDisplayNameInputField, type ChartExtDeploymentDisplayNameOneOf, type ChartExtFeatures, type ChartExtFeaturesSpec, type ChartExtFeaturesV0, type ChartExtFeaturesV1Beta1, type ChartExtFeaturesV1Beta2, type ChartExtIngress, ChartExtIngressHostnameFormat, ChartExtKindAction, ChartExtKindFeatures, ChartExtKindResourceType, ChartExtKindValuesUi, type ChartExtResourceLifecycleActionV1Beta1, type ChartExtResourceLifecycleV1Beta1, type ChartExtResourceType, type ChartExtResourceTypeV1Beta1, type ChartExtResourceTypeV1Beta1Spec, type ChartExtStatusFeature, ChartExtVersionV1Beta1, ChartExtVersionV1Beta2, type ChartMetadata, Configuration, type ConfigurationParameters, type CreateBotToken, type CreateDeploymentTask, type CreateUserToken, type CreatedBotToken, type CreatedUserToken, type DbEvent, type DbEventData, DbEventOperation, DbTable, type DbTableOrDeploymentResource, type DbTableOrDeploymentResourceOneOf, type Deployment, type DeploymentInstallTask, type DeploymentInvokeActionTask, type DeploymentKind, DeploymentKindsApi, type DeploymentKindsApiAllDeploymentKindsRequest, DeploymentKindsApiAxiosParamCreator, DeploymentKindsApiFactory, DeploymentKindsApiFp, type DeploymentKindsApiGetDeploymentKindRequest, type DeploymentKindsApiUpdateDeploymentKindRequest, type DeploymentPermission, DeploymentPermissionsApi, type DeploymentPermissionsApiAllDeploymentPermissionsRequest, DeploymentPermissionsApiAxiosParamCreator, type DeploymentPermissionsApiCreateDeploymentPermissionRequest, type DeploymentPermissionsApiDeleteDeploymentPermissionRequest, DeploymentPermissionsApiFactory, DeploymentPermissionsApiFp, type DeploymentPermissionsApiGetDeploymentPermissionRequest, type DeploymentRecreaseTask, type DeploymentReinstallTask, type DeploymentReportedMetric, type DeploymentReportedNotice, DeploymentReportedNoticeLevel, type DeploymentReportedStatus, DeploymentReportedStatusColor, type DeploymentReportedStatusContent, type DeploymentReportedStatusSummary, type DeploymentResource, DeploymentResourceSyncStatus, type DeploymentResourceType, DeploymentResourceTypesApi, type DeploymentResourceTypesApiAllDeploymentResourceTypesRequest, DeploymentResourceTypesApiAxiosParamCreator, DeploymentResourceTypesApiFactory, DeploymentResourceTypesApiFp, type DeploymentResourceTypesApiGetDeploymentResourceTypeRequest, DeploymentResourcesApi, type DeploymentResourcesApiAllDeploymentResourcesRequest, DeploymentResourcesApiAxiosParamCreator, type DeploymentResourcesApiCreateDeploymentResourceRequest, type DeploymentResourcesApiDeleteDeploymentResourceRequest, DeploymentResourcesApiFactory, DeploymentResourcesApiFp, type DeploymentResourcesApiGetDeploymentResourceRequest, type DeploymentResourcesApiUpdateDeploymentResourceRequest, type DeploymentRestartK8sResourceTask, DeploymentStatus, type DeploymentTask, type DeploymentTaskOperation, type DeploymentTaskOperationOneOf, type DeploymentTaskOperationOneOf1, type DeploymentTaskOperationOneOf2, type DeploymentTaskOperationOneOf3, type DeploymentTaskOperationOneOf4, type DeploymentTaskOperationOneOf5, type DeploymentTaskOperationOneOf6, DeploymentTaskStatus, DeploymentTasksApi, type DeploymentTasksApiAllDeploymentTasksRequest, DeploymentTasksApiAxiosParamCreator, type DeploymentTasksApiCreateDeploymentTaskRequest, DeploymentTasksApiFactory, DeploymentTasksApiFp, type DeploymentTasksApiGetDeploymentTaskRequest, type DeploymentUpgradeTask, DeploymentsApi, type DeploymentsApiAllDeploymentsRequest, DeploymentsApiAxiosParamCreator, type DeploymentsApiCreateDeploymentRequest, type DeploymentsApiDeleteDeploymentRequest, DeploymentsApiFactory, DeploymentsApiFp, type DeploymentsApiGetDeploymentRequest, type DeploymentsApiUpdateDeploymentRequest, type Env, type EnvUserPermission, EnvUserPermissionsApi, type EnvUserPermissionsApiAllEnvUserPermissionsRequest, EnvUserPermissionsApiAxiosParamCreator, type EnvUserPermissionsApiCreateEnvUserPermissionRequest, type EnvUserPermissionsApiDeleteEnvUserPermissionRequest, EnvUserPermissionsApiFactory, EnvUserPermissionsApiFp, type EnvUserPermissionsApiGetEnvUserPermissionRequest, EnvUserRole, EnvsApi, type EnvsApiAllEnvsRequest, EnvsApiAxiosParamCreator, type EnvsApiCreateEnvRequest, type EnvsApiDeleteEnvRequest, EnvsApiFactory, EnvsApiFp, type EnvsApiGetEnvRequest, type EnvsApiUpdateEnvRequest, type FinishGoogleLoginResponse, type HelmChart, HelmChartsApi, type HelmChartsApiAllHelmChartsRequest, HelmChartsApiAxiosParamCreator, HelmChartsApiFactory, HelmChartsApiFp, type HelmChartsApiGetHelmChartRequest, HelmRegistriesApi, type HelmRegistriesApiAllHelmRegistriesRequest, HelmRegistriesApiAxiosParamCreator, HelmRegistriesApiFactory, HelmRegistriesApiFp, type HelmRegistriesApiGetHelmRegistryRequest, type HelmRegistriesApiUpdateHelmRegistryRequest, type HelmRegistry, type HelmTagFormat, HelmTagFormatsApi, type HelmTagFormatsApiAllHelmTagFormatsRequest, HelmTagFormatsApiAxiosParamCreator, type HelmTagFormatsApiCreateHelmTagFormatRequest, type HelmTagFormatsApiDeleteHelmTagFormatRequest, HelmTagFormatsApiFactory, HelmTagFormatsApiFp, type HelmTagFormatsApiGetHelmTagFormatRequest, type K8sCluster, type K8sResource, KubernetesClustersApi, type KubernetesClustersApiAllK8sClustersRequest, KubernetesClustersApiAxiosParamCreator, type KubernetesClustersApiDeleteK8sClusterRequest, KubernetesClustersApiFactory, KubernetesClustersApiFp, type KubernetesClustersApiGetK8sClusterRequest, type KubernetesClustersApiUpdateK8sClusterRequest, KubernetesResourcesApi, type KubernetesResourcesApiAllK8sResourcesRequest, KubernetesResourcesApiAxiosParamCreator, KubernetesResourcesApiFactory, KubernetesResourcesApiFp, type KubernetesResourcesApiGetK8sResourceRequest, type MeResponse, type MeResponseOneOf, type MeResponseOneOf1, type MeResponseOneOf2, type MeResponseOneOf2Deployment, type NewBot, type NewDeployment, type NewDeploymentPermission, type NewDeploymentResource, type NewEnv, type NewEnvUserPermission, type NewHelmTagFormat, type NewSecret, type OAuth2Response, type Secret, SecretsApi, type SecretsApiAllSecretsRequest, SecretsApiAxiosParamCreator, type SecretsApiCreateSecretRequest, type SecretsApiDeleteSecretRequest, SecretsApiFactory, SecretsApiFp, type SecretsApiGetSecretRequest, type SecretsApiUpdateSecretRequest, type SerializedUiSchemaInputType, ServerApi, ServerApiAxiosParamCreator, ServerApiFactory, ServerApiFp, type ServerInfo, type StartGoogleLoginResponse, type UiSchema, type UiSchemaFieldValuePair, type UiSchemaInput, type UiSchemaInputFieldOption, type UiSchemaInputFieldValue, type UiSchemaInputRef, type UiSchemaInputRefField, type UiSchemaInputRefOneOf, type UiSchemaInputRefOneOf1, type UiSchemaInputRefProperty, type UiSchemaInputSingleType, type UiSchemaInputSingleTypeOneOf, type UiSchemaInputSingleTypeOneOfCollectionSelect, type UiSchemaInputType, type UiSchemaOutputValue, type UiSchemaOutputs, type UiSchemaV0, type UiSchemaV1Beta1, type UpdateBot, type UpdateDeployment, type UpdateDeploymentKind, type UpdateDeploymentResource, type UpdateEnv, type UpdateHelmRegistry, type UpdateK8sCluster, type UpdateSecret, type UpdateUser, type User, UserDeploymentRole, type UserToken, UserTokensApi, type UserTokensApiAllUserTokensRequest, UserTokensApiAxiosParamCreator, type UserTokensApiCreateUserTokenRequest, type UserTokensApiDeleteUserTokenRequest, UserTokensApiFactory, UserTokensApiFp, type UserTokensApiGetUserTokenRequest, UsersApi, type UsersApiAllUsersRequest, UsersApiAxiosParamCreator, UsersApiFactory, UsersApiFp, type UsersApiGetUserRequest, type UsersApiUpdateUserRequest };