@platzio/sdk 0.6.0-beta.2 → 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 +338 -1
- package/dist/index.d.ts +338 -1
- package/dist/index.js +283 -0
- package/dist/index.mjs +279 -0
- package/openapi.yaml +180 -0
- package/package.json +1 -1
- package/src/api.ts +532 -0
package/dist/index.d.mts
CHANGED
|
@@ -126,6 +126,68 @@ 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
|
+
}
|
|
129
191
|
/**
|
|
130
192
|
*
|
|
131
193
|
* @export
|
|
@@ -1589,6 +1651,37 @@ interface Bot {
|
|
|
1589
1651
|
*/
|
|
1590
1652
|
'display_name': string;
|
|
1591
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
|
+
}
|
|
1592
1685
|
/**
|
|
1593
1686
|
*
|
|
1594
1687
|
* @export
|
|
@@ -2312,6 +2405,19 @@ interface ChartMetadata {
|
|
|
2312
2405
|
*/
|
|
2313
2406
|
'git_provider'?: string | null;
|
|
2314
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
|
+
}
|
|
2315
2421
|
/**
|
|
2316
2422
|
*
|
|
2317
2423
|
* @export
|
|
@@ -2350,6 +2456,19 @@ interface CreateUserToken {
|
|
|
2350
2456
|
*/
|
|
2351
2457
|
'user_id': string | null;
|
|
2352
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
|
+
}
|
|
2353
2472
|
/**
|
|
2354
2473
|
*
|
|
2355
2474
|
* @export
|
|
@@ -4896,6 +5015,224 @@ declare class AuthenticationApi extends BaseAPI {
|
|
|
4896
5015
|
*/
|
|
4897
5016
|
startGoogleLogin(options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<StartGoogleLoginResponse, any>>;
|
|
4898
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
|
+
}
|
|
4899
5236
|
/**
|
|
4900
5237
|
* BotsApi - axios parameter creator
|
|
4901
5238
|
* @export
|
|
@@ -8432,4 +8769,4 @@ declare class UsersApi extends BaseAPI {
|
|
|
8432
8769
|
updateUser(requestParameters: UsersApiUpdateUserRequest, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<User, any>>;
|
|
8433
8770
|
}
|
|
8434
8771
|
|
|
8435
|
-
export { 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, 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 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 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 };
|
|
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 };
|