@platzio/sdk 0.6.0-beta.1-1 → 0.6.0-beta.2

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.ts CHANGED
@@ -126,6 +126,62 @@ declare class BaseAPI {
126
126
  constructor(configuration?: Configuration, basePath?: string, axios?: AxiosInstance);
127
127
  }
128
128
 
129
+ /**
130
+ *
131
+ * @export
132
+ * @interface AllBots200Response
133
+ */
134
+ interface AllBots200Response {
135
+ /**
136
+ *
137
+ * @type {number}
138
+ * @memberof AllBots200Response
139
+ */
140
+ 'page': number;
141
+ /**
142
+ *
143
+ * @type {number}
144
+ * @memberof AllBots200Response
145
+ */
146
+ 'per_page': number;
147
+ /**
148
+ *
149
+ * @type {Array<AllBots200ResponseItemsInner>}
150
+ * @memberof AllBots200Response
151
+ */
152
+ 'items': Array<AllBots200ResponseItemsInner>;
153
+ /**
154
+ *
155
+ * @type {number}
156
+ * @memberof AllBots200Response
157
+ */
158
+ 'num_total': number;
159
+ }
160
+ /**
161
+ *
162
+ * @export
163
+ * @interface AllBots200ResponseItemsInner
164
+ */
165
+ interface AllBots200ResponseItemsInner {
166
+ /**
167
+ *
168
+ * @type {string}
169
+ * @memberof AllBots200ResponseItemsInner
170
+ */
171
+ 'id': string;
172
+ /**
173
+ *
174
+ * @type {string}
175
+ * @memberof AllBots200ResponseItemsInner
176
+ */
177
+ 'created_at': string;
178
+ /**
179
+ *
180
+ * @type {string}
181
+ * @memberof AllBots200ResponseItemsInner
182
+ */
183
+ 'display_name': string;
184
+ }
129
185
  /**
130
186
  *
131
187
  * @export
@@ -1508,6 +1564,31 @@ interface AllUsers200ResponseItemsInner {
1508
1564
  */
1509
1565
  'is_active': boolean;
1510
1566
  }
1567
+ /**
1568
+ *
1569
+ * @export
1570
+ * @interface Bot
1571
+ */
1572
+ interface Bot {
1573
+ /**
1574
+ *
1575
+ * @type {string}
1576
+ * @memberof Bot
1577
+ */
1578
+ 'id': string;
1579
+ /**
1580
+ *
1581
+ * @type {string}
1582
+ * @memberof Bot
1583
+ */
1584
+ 'created_at': string;
1585
+ /**
1586
+ *
1587
+ * @type {string}
1588
+ * @memberof Bot
1589
+ */
1590
+ 'display_name': string;
1591
+ }
1511
1592
  /**
1512
1593
  *
1513
1594
  * @export
@@ -2337,6 +2418,7 @@ type DbEventOperation = typeof DbEventOperation[keyof typeof DbEventOperation];
2337
2418
  * @enum {string}
2338
2419
  */
2339
2420
  declare const DbTable: {
2421
+ readonly Bots: "bots";
2340
2422
  readonly DeploymentKinds: "deployment_kinds";
2341
2423
  readonly DeploymentResources: "deployment_resources";
2342
2424
  readonly DeploymentResourceTypes: "deployment_resource_types";
@@ -3627,7 +3709,7 @@ interface K8sResource {
3627
3709
  * @type MeResponse
3628
3710
  * @export
3629
3711
  */
3630
- type MeResponse = MeResponseOneOf | MeResponseOneOf1;
3712
+ type MeResponse = MeResponseOneOf | MeResponseOneOf1 | MeResponseOneOf2;
3631
3713
  /**
3632
3714
  *
3633
3715
  * @export
@@ -3649,30 +3731,56 @@ interface MeResponseOneOf {
3649
3731
  interface MeResponseOneOf1 {
3650
3732
  /**
3651
3733
  *
3652
- * @type {MeResponseOneOf1Deployment}
3734
+ * @type {Bot}
3653
3735
  * @memberof MeResponseOneOf1
3654
3736
  */
3655
- 'Deployment': MeResponseOneOf1Deployment;
3737
+ 'Bot': Bot;
3656
3738
  }
3657
3739
  /**
3658
3740
  *
3659
3741
  * @export
3660
- * @interface MeResponseOneOf1Deployment
3742
+ * @interface MeResponseOneOf2
3661
3743
  */
3662
- interface MeResponseOneOf1Deployment {
3744
+ interface MeResponseOneOf2 {
3745
+ /**
3746
+ *
3747
+ * @type {MeResponseOneOf2Deployment}
3748
+ * @memberof MeResponseOneOf2
3749
+ */
3750
+ 'Deployment': MeResponseOneOf2Deployment;
3751
+ }
3752
+ /**
3753
+ *
3754
+ * @export
3755
+ * @interface MeResponseOneOf2Deployment
3756
+ */
3757
+ interface MeResponseOneOf2Deployment {
3663
3758
  /**
3664
3759
  *
3665
3760
  * @type {string}
3666
- * @memberof MeResponseOneOf1Deployment
3761
+ * @memberof MeResponseOneOf2Deployment
3667
3762
  */
3668
3763
  'id': string;
3669
3764
  /**
3670
3765
  *
3671
3766
  * @type {string}
3672
- * @memberof MeResponseOneOf1Deployment
3767
+ * @memberof MeResponseOneOf2Deployment
3673
3768
  */
3674
3769
  'name': string;
3675
3770
  }
3771
+ /**
3772
+ *
3773
+ * @export
3774
+ * @interface NewBot
3775
+ */
3776
+ interface NewBot {
3777
+ /**
3778
+ *
3779
+ * @type {string}
3780
+ * @memberof NewBot
3781
+ */
3782
+ 'display_name': string;
3783
+ }
3676
3784
  /**
3677
3785
  *
3678
3786
  * @export
@@ -4367,6 +4475,19 @@ interface UiSchemaV1Beta1 {
4367
4475
  */
4368
4476
  'kind': ChartExtKindValuesUi;
4369
4477
  }
4478
+ /**
4479
+ *
4480
+ * @export
4481
+ * @interface UpdateBot
4482
+ */
4483
+ interface UpdateBot {
4484
+ /**
4485
+ *
4486
+ * @type {string}
4487
+ * @memberof UpdateBot
4488
+ */
4489
+ 'display_name'?: string | null;
4490
+ }
4370
4491
  /**
4371
4492
  *
4372
4493
  * @export
@@ -4775,6 +4896,182 @@ declare class AuthenticationApi extends BaseAPI {
4775
4896
  */
4776
4897
  startGoogleLogin(options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<StartGoogleLoginResponse, any>>;
4777
4898
  }
4899
+ /**
4900
+ * BotsApi - axios parameter creator
4901
+ * @export
4902
+ */
4903
+ declare const BotsApiAxiosParamCreator: (configuration?: Configuration) => {
4904
+ /**
4905
+ *
4906
+ * @param {string | null} [displayName]
4907
+ * @param {number | null} [page]
4908
+ * @param {number | null} [perPage]
4909
+ * @param {*} [options] Override http request option.
4910
+ * @throws {RequiredError}
4911
+ */
4912
+ allBots: (displayName?: string | null, page?: number | null, perPage?: number | null, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
4913
+ /**
4914
+ *
4915
+ * @param {string} id
4916
+ * @param {*} [options] Override http request option.
4917
+ * @throws {RequiredError}
4918
+ */
4919
+ getBot: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
4920
+ /**
4921
+ *
4922
+ * @param {string} id
4923
+ * @param {UpdateBot} updateBot
4924
+ * @param {*} [options] Override http request option.
4925
+ * @throws {RequiredError}
4926
+ */
4927
+ updateBot: (id: string, updateBot: UpdateBot, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
4928
+ };
4929
+ /**
4930
+ * BotsApi - functional programming interface
4931
+ * @export
4932
+ */
4933
+ declare const BotsApiFp: (configuration?: Configuration) => {
4934
+ /**
4935
+ *
4936
+ * @param {string | null} [displayName]
4937
+ * @param {number | null} [page]
4938
+ * @param {number | null} [perPage]
4939
+ * @param {*} [options] Override http request option.
4940
+ * @throws {RequiredError}
4941
+ */
4942
+ allBots(displayName?: string | null, page?: number | null, perPage?: number | null, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AllBots200Response>>;
4943
+ /**
4944
+ *
4945
+ * @param {string} id
4946
+ * @param {*} [options] Override http request option.
4947
+ * @throws {RequiredError}
4948
+ */
4949
+ getBot(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Bot>>;
4950
+ /**
4951
+ *
4952
+ * @param {string} id
4953
+ * @param {UpdateBot} updateBot
4954
+ * @param {*} [options] Override http request option.
4955
+ * @throws {RequiredError}
4956
+ */
4957
+ updateBot(id: string, updateBot: UpdateBot, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Bot>>;
4958
+ };
4959
+ /**
4960
+ * BotsApi - factory interface
4961
+ * @export
4962
+ */
4963
+ declare const BotsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
4964
+ /**
4965
+ *
4966
+ * @param {BotsApiAllBotsRequest} requestParameters Request parameters.
4967
+ * @param {*} [options] Override http request option.
4968
+ * @throws {RequiredError}
4969
+ */
4970
+ allBots(requestParameters?: BotsApiAllBotsRequest, options?: RawAxiosRequestConfig): AxiosPromise<AllBots200Response>;
4971
+ /**
4972
+ *
4973
+ * @param {BotsApiGetBotRequest} requestParameters Request parameters.
4974
+ * @param {*} [options] Override http request option.
4975
+ * @throws {RequiredError}
4976
+ */
4977
+ getBot(requestParameters: BotsApiGetBotRequest, options?: RawAxiosRequestConfig): AxiosPromise<Bot>;
4978
+ /**
4979
+ *
4980
+ * @param {BotsApiUpdateBotRequest} requestParameters Request parameters.
4981
+ * @param {*} [options] Override http request option.
4982
+ * @throws {RequiredError}
4983
+ */
4984
+ updateBot(requestParameters: BotsApiUpdateBotRequest, options?: RawAxiosRequestConfig): AxiosPromise<Bot>;
4985
+ };
4986
+ /**
4987
+ * Request parameters for allBots operation in BotsApi.
4988
+ * @export
4989
+ * @interface BotsApiAllBotsRequest
4990
+ */
4991
+ interface BotsApiAllBotsRequest {
4992
+ /**
4993
+ *
4994
+ * @type {string}
4995
+ * @memberof BotsApiAllBots
4996
+ */
4997
+ readonly displayName?: string | null;
4998
+ /**
4999
+ *
5000
+ * @type {number}
5001
+ * @memberof BotsApiAllBots
5002
+ */
5003
+ readonly page?: number | null;
5004
+ /**
5005
+ *
5006
+ * @type {number}
5007
+ * @memberof BotsApiAllBots
5008
+ */
5009
+ readonly perPage?: number | null;
5010
+ }
5011
+ /**
5012
+ * Request parameters for getBot operation in BotsApi.
5013
+ * @export
5014
+ * @interface BotsApiGetBotRequest
5015
+ */
5016
+ interface BotsApiGetBotRequest {
5017
+ /**
5018
+ *
5019
+ * @type {string}
5020
+ * @memberof BotsApiGetBot
5021
+ */
5022
+ readonly id: string;
5023
+ }
5024
+ /**
5025
+ * Request parameters for updateBot operation in BotsApi.
5026
+ * @export
5027
+ * @interface BotsApiUpdateBotRequest
5028
+ */
5029
+ interface BotsApiUpdateBotRequest {
5030
+ /**
5031
+ *
5032
+ * @type {string}
5033
+ * @memberof BotsApiUpdateBot
5034
+ */
5035
+ readonly id: string;
5036
+ /**
5037
+ *
5038
+ * @type {UpdateBot}
5039
+ * @memberof BotsApiUpdateBot
5040
+ */
5041
+ readonly updateBot: UpdateBot;
5042
+ }
5043
+ /**
5044
+ * BotsApi - object-oriented interface
5045
+ * @export
5046
+ * @class BotsApi
5047
+ * @extends {BaseAPI}
5048
+ */
5049
+ declare class BotsApi extends BaseAPI {
5050
+ /**
5051
+ *
5052
+ * @param {BotsApiAllBotsRequest} requestParameters Request parameters.
5053
+ * @param {*} [options] Override http request option.
5054
+ * @throws {RequiredError}
5055
+ * @memberof BotsApi
5056
+ */
5057
+ allBots(requestParameters?: BotsApiAllBotsRequest, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<AllBots200Response, any>>;
5058
+ /**
5059
+ *
5060
+ * @param {BotsApiGetBotRequest} requestParameters Request parameters.
5061
+ * @param {*} [options] Override http request option.
5062
+ * @throws {RequiredError}
5063
+ * @memberof BotsApi
5064
+ */
5065
+ getBot(requestParameters: BotsApiGetBotRequest, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<Bot, any>>;
5066
+ /**
5067
+ *
5068
+ * @param {BotsApiUpdateBotRequest} requestParameters Request parameters.
5069
+ * @param {*} [options] Override http request option.
5070
+ * @throws {RequiredError}
5071
+ * @memberof BotsApi
5072
+ */
5073
+ updateBot(requestParameters: BotsApiUpdateBotRequest, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<Bot, any>>;
5074
+ }
4778
5075
  /**
4779
5076
  * DeploymentKindsApi - axios parameter creator
4780
5077
  * @export
@@ -8135,4 +8432,4 @@ declare class UsersApi extends BaseAPI {
8135
8432
  updateUser(requestParameters: UsersApiUpdateUserRequest, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<User, any>>;
8136
8433
  }
8137
8434
 
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 };
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 };
package/dist/index.js CHANGED
@@ -71,6 +71,10 @@ __export(src_exports, {
71
71
  AuthenticationApiAxiosParamCreator: () => AuthenticationApiAxiosParamCreator,
72
72
  AuthenticationApiFactory: () => AuthenticationApiFactory,
73
73
  AuthenticationApiFp: () => AuthenticationApiFp,
74
+ BotsApi: () => BotsApi,
75
+ BotsApiAxiosParamCreator: () => BotsApiAxiosParamCreator,
76
+ BotsApiFactory: () => BotsApiFactory,
77
+ BotsApiFp: () => BotsApiFp,
74
78
  ChartExtActionEndpoint: () => ChartExtActionEndpoint,
75
79
  ChartExtActionMethod: () => ChartExtActionMethod,
76
80
  ChartExtActionUserDeploymentRole: () => ChartExtActionUserDeploymentRole,
@@ -298,6 +302,7 @@ var DbEventOperation = {
298
302
  Delete: "DELETE"
299
303
  };
300
304
  var DbTable = {
305
+ Bots: "bots",
301
306
  DeploymentKinds: "deployment_kinds",
302
307
  DeploymentResources: "deployment_resources",
303
308
  DeploymentResourceTypes: "deployment_resource_types",
@@ -547,6 +552,222 @@ var AuthenticationApi = class extends BaseAPI {
547
552
  return AuthenticationApiFp(this.configuration).startGoogleLogin(options).then((request) => request(this.axios, this.basePath));
548
553
  }
549
554
  };
555
+ var BotsApiAxiosParamCreator = function(configuration) {
556
+ return {
557
+ /**
558
+ *
559
+ * @param {string | null} [displayName]
560
+ * @param {number | null} [page]
561
+ * @param {number | null} [perPage]
562
+ * @param {*} [options] Override http request option.
563
+ * @throws {RequiredError}
564
+ */
565
+ allBots: (_0, _1, _2, ..._3) => __async(this, [_0, _1, _2, ..._3], function* (displayName, page, perPage, options = {}) {
566
+ const localVarPath = `/api/v2/bots`;
567
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
568
+ let baseOptions;
569
+ if (configuration) {
570
+ baseOptions = configuration.baseOptions;
571
+ }
572
+ const localVarRequestOptions = __spreadValues(__spreadValues({ method: "GET" }, baseOptions), options);
573
+ const localVarHeaderParameter = {};
574
+ const localVarQueryParameter = {};
575
+ yield setBearerAuthToObject(localVarHeaderParameter, configuration);
576
+ yield setApiKeyToObject(localVarHeaderParameter, "x-platz-token", configuration);
577
+ if (displayName !== void 0) {
578
+ localVarQueryParameter["display_name"] = displayName;
579
+ }
580
+ if (page !== void 0) {
581
+ localVarQueryParameter["page"] = page;
582
+ }
583
+ if (perPage !== void 0) {
584
+ localVarQueryParameter["per_page"] = perPage;
585
+ }
586
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
587
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
588
+ localVarRequestOptions.headers = __spreadValues(__spreadValues(__spreadValues({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
589
+ return {
590
+ url: toPathString(localVarUrlObj),
591
+ options: localVarRequestOptions
592
+ };
593
+ }),
594
+ /**
595
+ *
596
+ * @param {string} id
597
+ * @param {*} [options] Override http request option.
598
+ * @throws {RequiredError}
599
+ */
600
+ getBot: (_0, ..._1) => __async(this, [_0, ..._1], function* (id, options = {}) {
601
+ assertParamExists("getBot", "id", id);
602
+ const localVarPath = `/api/v2/bots/{id}`.replace(`{${"id"}}`, encodeURIComponent(String(id)));
603
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
604
+ let baseOptions;
605
+ if (configuration) {
606
+ baseOptions = configuration.baseOptions;
607
+ }
608
+ const localVarRequestOptions = __spreadValues(__spreadValues({ method: "GET" }, baseOptions), options);
609
+ const localVarHeaderParameter = {};
610
+ const localVarQueryParameter = {};
611
+ yield setBearerAuthToObject(localVarHeaderParameter, configuration);
612
+ yield setApiKeyToObject(localVarHeaderParameter, "x-platz-token", configuration);
613
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
614
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
615
+ localVarRequestOptions.headers = __spreadValues(__spreadValues(__spreadValues({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
616
+ return {
617
+ url: toPathString(localVarUrlObj),
618
+ options: localVarRequestOptions
619
+ };
620
+ }),
621
+ /**
622
+ *
623
+ * @param {string} id
624
+ * @param {UpdateBot} updateBot
625
+ * @param {*} [options] Override http request option.
626
+ * @throws {RequiredError}
627
+ */
628
+ updateBot: (_0, _1, ..._2) => __async(this, [_0, _1, ..._2], function* (id, updateBot, options = {}) {
629
+ assertParamExists("updateBot", "id", id);
630
+ assertParamExists("updateBot", "updateBot", updateBot);
631
+ const localVarPath = `/api/v2/bots/{id}`.replace(`{${"id"}}`, encodeURIComponent(String(id)));
632
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
633
+ let baseOptions;
634
+ if (configuration) {
635
+ baseOptions = configuration.baseOptions;
636
+ }
637
+ const localVarRequestOptions = __spreadValues(__spreadValues({ method: "PUT" }, baseOptions), options);
638
+ const localVarHeaderParameter = {};
639
+ const localVarQueryParameter = {};
640
+ yield setBearerAuthToObject(localVarHeaderParameter, configuration);
641
+ yield setApiKeyToObject(localVarHeaderParameter, "x-platz-token", configuration);
642
+ localVarHeaderParameter["Content-Type"] = "application/json";
643
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
644
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
645
+ localVarRequestOptions.headers = __spreadValues(__spreadValues(__spreadValues({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
646
+ localVarRequestOptions.data = serializeDataIfNeeded(updateBot, localVarRequestOptions, configuration);
647
+ return {
648
+ url: toPathString(localVarUrlObj),
649
+ options: localVarRequestOptions
650
+ };
651
+ })
652
+ };
653
+ };
654
+ var BotsApiFp = function(configuration) {
655
+ const localVarAxiosParamCreator = BotsApiAxiosParamCreator(configuration);
656
+ return {
657
+ /**
658
+ *
659
+ * @param {string | null} [displayName]
660
+ * @param {number | null} [page]
661
+ * @param {number | null} [perPage]
662
+ * @param {*} [options] Override http request option.
663
+ * @throws {RequiredError}
664
+ */
665
+ allBots(displayName, page, perPage, options) {
666
+ return __async(this, null, function* () {
667
+ var _a2, _b, _c;
668
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.allBots(displayName, page, perPage, options);
669
+ const localVarOperationServerIndex = (_a2 = configuration == null ? void 0 : configuration.serverIndex) != null ? _a2 : 0;
670
+ const localVarOperationServerBasePath = (_c = (_b = operationServerMap["BotsApi.allBots"]) == null ? void 0 : _b[localVarOperationServerIndex]) == null ? void 0 : _c.url;
671
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, import_axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
672
+ });
673
+ },
674
+ /**
675
+ *
676
+ * @param {string} id
677
+ * @param {*} [options] Override http request option.
678
+ * @throws {RequiredError}
679
+ */
680
+ getBot(id, options) {
681
+ return __async(this, null, function* () {
682
+ var _a2, _b, _c;
683
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.getBot(id, options);
684
+ const localVarOperationServerIndex = (_a2 = configuration == null ? void 0 : configuration.serverIndex) != null ? _a2 : 0;
685
+ const localVarOperationServerBasePath = (_c = (_b = operationServerMap["BotsApi.getBot"]) == null ? void 0 : _b[localVarOperationServerIndex]) == null ? void 0 : _c.url;
686
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, import_axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
687
+ });
688
+ },
689
+ /**
690
+ *
691
+ * @param {string} id
692
+ * @param {UpdateBot} updateBot
693
+ * @param {*} [options] Override http request option.
694
+ * @throws {RequiredError}
695
+ */
696
+ updateBot(id, updateBot, options) {
697
+ return __async(this, null, function* () {
698
+ var _a2, _b, _c;
699
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.updateBot(id, updateBot, options);
700
+ const localVarOperationServerIndex = (_a2 = configuration == null ? void 0 : configuration.serverIndex) != null ? _a2 : 0;
701
+ const localVarOperationServerBasePath = (_c = (_b = operationServerMap["BotsApi.updateBot"]) == null ? void 0 : _b[localVarOperationServerIndex]) == null ? void 0 : _c.url;
702
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, import_axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
703
+ });
704
+ }
705
+ };
706
+ };
707
+ var BotsApiFactory = function(configuration, basePath, axios) {
708
+ const localVarFp = BotsApiFp(configuration);
709
+ return {
710
+ /**
711
+ *
712
+ * @param {BotsApiAllBotsRequest} requestParameters Request parameters.
713
+ * @param {*} [options] Override http request option.
714
+ * @throws {RequiredError}
715
+ */
716
+ allBots(requestParameters = {}, options) {
717
+ return localVarFp.allBots(requestParameters.displayName, requestParameters.page, requestParameters.perPage, options).then((request) => request(axios, basePath));
718
+ },
719
+ /**
720
+ *
721
+ * @param {BotsApiGetBotRequest} requestParameters Request parameters.
722
+ * @param {*} [options] Override http request option.
723
+ * @throws {RequiredError}
724
+ */
725
+ getBot(requestParameters, options) {
726
+ return localVarFp.getBot(requestParameters.id, options).then((request) => request(axios, basePath));
727
+ },
728
+ /**
729
+ *
730
+ * @param {BotsApiUpdateBotRequest} requestParameters Request parameters.
731
+ * @param {*} [options] Override http request option.
732
+ * @throws {RequiredError}
733
+ */
734
+ updateBot(requestParameters, options) {
735
+ return localVarFp.updateBot(requestParameters.id, requestParameters.updateBot, options).then((request) => request(axios, basePath));
736
+ }
737
+ };
738
+ };
739
+ var BotsApi = class extends BaseAPI {
740
+ /**
741
+ *
742
+ * @param {BotsApiAllBotsRequest} requestParameters Request parameters.
743
+ * @param {*} [options] Override http request option.
744
+ * @throws {RequiredError}
745
+ * @memberof BotsApi
746
+ */
747
+ allBots(requestParameters = {}, options) {
748
+ return BotsApiFp(this.configuration).allBots(requestParameters.displayName, requestParameters.page, requestParameters.perPage, options).then((request) => request(this.axios, this.basePath));
749
+ }
750
+ /**
751
+ *
752
+ * @param {BotsApiGetBotRequest} requestParameters Request parameters.
753
+ * @param {*} [options] Override http request option.
754
+ * @throws {RequiredError}
755
+ * @memberof BotsApi
756
+ */
757
+ getBot(requestParameters, options) {
758
+ return BotsApiFp(this.configuration).getBot(requestParameters.id, options).then((request) => request(this.axios, this.basePath));
759
+ }
760
+ /**
761
+ *
762
+ * @param {BotsApiUpdateBotRequest} requestParameters Request parameters.
763
+ * @param {*} [options] Override http request option.
764
+ * @throws {RequiredError}
765
+ * @memberof BotsApi
766
+ */
767
+ updateBot(requestParameters, options) {
768
+ return BotsApiFp(this.configuration).updateBot(requestParameters.id, requestParameters.updateBot, options).then((request) => request(this.axios, this.basePath));
769
+ }
770
+ };
550
771
  var DeploymentKindsApiAxiosParamCreator = function(configuration) {
551
772
  return {
552
773
  /**
@@ -4782,6 +5003,10 @@ var Configuration = class {
4782
5003
  AuthenticationApiAxiosParamCreator,
4783
5004
  AuthenticationApiFactory,
4784
5005
  AuthenticationApiFp,
5006
+ BotsApi,
5007
+ BotsApiAxiosParamCreator,
5008
+ BotsApiFactory,
5009
+ BotsApiFp,
4785
5010
  ChartExtActionEndpoint,
4786
5011
  ChartExtActionMethod,
4787
5012
  ChartExtActionUserDeploymentRole,