qovery-typescript-axios 1.1.897 → 1.1.898

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/api.ts CHANGED
@@ -3442,6 +3442,105 @@ export interface BillingStatus {
3442
3442
  */
3443
3443
  'message'?: string;
3444
3444
  }
3445
+ /**
3446
+ *
3447
+ * @export
3448
+ * @interface BlueprintCatalogResponse
3449
+ */
3450
+ export interface BlueprintCatalogResponse {
3451
+ /**
3452
+ *
3453
+ * @type {string}
3454
+ * @memberof BlueprintCatalogResponse
3455
+ */
3456
+ 'version': string;
3457
+ /**
3458
+ *
3459
+ * @type {string}
3460
+ * @memberof BlueprintCatalogResponse
3461
+ */
3462
+ 'generatedAt': string;
3463
+ /**
3464
+ *
3465
+ * @type {Array<BlueprintItem>}
3466
+ * @memberof BlueprintCatalogResponse
3467
+ */
3468
+ 'blueprints': Array<BlueprintItem>;
3469
+ }
3470
+ /**
3471
+ *
3472
+ * @export
3473
+ * @interface BlueprintItem
3474
+ */
3475
+ export interface BlueprintItem {
3476
+ /**
3477
+ *
3478
+ * @type {string}
3479
+ * @memberof BlueprintItem
3480
+ */
3481
+ 'name': string;
3482
+ /**
3483
+ *
3484
+ * @type {string}
3485
+ * @memberof BlueprintItem
3486
+ */
3487
+ 'kind': string;
3488
+ /**
3489
+ *
3490
+ * @type {string}
3491
+ * @memberof BlueprintItem
3492
+ */
3493
+ 'description': string;
3494
+ /**
3495
+ *
3496
+ * @type {string}
3497
+ * @memberof BlueprintItem
3498
+ */
3499
+ 'icon': string;
3500
+ /**
3501
+ *
3502
+ * @type {Array<string>}
3503
+ * @memberof BlueprintItem
3504
+ */
3505
+ 'categories': Array<string>;
3506
+ /**
3507
+ *
3508
+ * @type {string}
3509
+ * @memberof BlueprintItem
3510
+ */
3511
+ 'provider': string;
3512
+ /**
3513
+ *
3514
+ * @type {string}
3515
+ * @memberof BlueprintItem
3516
+ */
3517
+ 'serviceFamily': string;
3518
+ /**
3519
+ *
3520
+ * @type {Array<BlueprintMajorVersion>}
3521
+ * @memberof BlueprintItem
3522
+ */
3523
+ 'majorVersions': Array<BlueprintMajorVersion>;
3524
+ }
3525
+ /**
3526
+ *
3527
+ * @export
3528
+ * @interface BlueprintMajorVersion
3529
+ */
3530
+ export interface BlueprintMajorVersion {
3531
+ /**
3532
+ *
3533
+ * @type {string}
3534
+ * @memberof BlueprintMajorVersion
3535
+ */
3536
+ 'serviceVersion': string;
3537
+ /**
3538
+ *
3539
+ * @type {string}
3540
+ * @memberof BlueprintMajorVersion
3541
+ */
3542
+ 'latestTag': string;
3543
+ }
3445
3544
  /**
3446
3545
  *
3447
3546
  * @export
@@ -31925,6 +32024,121 @@ export class BillingApi extends BaseAPI {
31925
32024
 
31926
32025
 
31927
32026
 
32027
+ /**
32028
+ * BlueprintMainCallsApi - axios parameter creator
32029
+ * @export
32030
+ */
32031
+ export const BlueprintMainCallsApiAxiosParamCreator = function (configuration?: Configuration) {
32032
+ return {
32033
+ /**
32034
+ * Retrieves the Qovery service catalog from the public GitHub repository (Qovery/service-catalog). The catalog lists all available blueprints that can be deployed.
32035
+ * @summary Get the blueprint service catalog
32036
+ * @param {string} organizationId Organization ID
32037
+ * @param {*} [options] Override http request option.
32038
+ * @throws {RequiredError}
32039
+ */
32040
+ getBlueprintCatalog: async (organizationId: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
32041
+ // verify required parameter 'organizationId' is not null or undefined
32042
+ assertParamExists('getBlueprintCatalog', 'organizationId', organizationId)
32043
+ const localVarPath = `/organization/{organizationId}/blueprint/catalog`
32044
+ .replace(`{${"organizationId"}}`, encodeURIComponent(String(organizationId)));
32045
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
32046
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
32047
+ let baseOptions;
32048
+ if (configuration) {
32049
+ baseOptions = configuration.baseOptions;
32050
+ }
32051
+
32052
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
32053
+ const localVarHeaderParameter = {} as any;
32054
+ const localVarQueryParameter = {} as any;
32055
+
32056
+ // authentication ApiKeyAuth required
32057
+ await setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration)
32058
+
32059
+ // authentication bearerAuth required
32060
+ // http bearer authentication required
32061
+ await setBearerAuthToObject(localVarHeaderParameter, configuration)
32062
+
32063
+
32064
+
32065
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
32066
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
32067
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
32068
+
32069
+ return {
32070
+ url: toPathString(localVarUrlObj),
32071
+ options: localVarRequestOptions,
32072
+ };
32073
+ },
32074
+ }
32075
+ };
32076
+
32077
+ /**
32078
+ * BlueprintMainCallsApi - functional programming interface
32079
+ * @export
32080
+ */
32081
+ export const BlueprintMainCallsApiFp = function(configuration?: Configuration) {
32082
+ const localVarAxiosParamCreator = BlueprintMainCallsApiAxiosParamCreator(configuration)
32083
+ return {
32084
+ /**
32085
+ * Retrieves the Qovery service catalog from the public GitHub repository (Qovery/service-catalog). The catalog lists all available blueprints that can be deployed.
32086
+ * @summary Get the blueprint service catalog
32087
+ * @param {string} organizationId Organization ID
32088
+ * @param {*} [options] Override http request option.
32089
+ * @throws {RequiredError}
32090
+ */
32091
+ async getBlueprintCatalog(organizationId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BlueprintCatalogResponse>> {
32092
+ const localVarAxiosArgs = await localVarAxiosParamCreator.getBlueprintCatalog(organizationId, options);
32093
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
32094
+ const localVarOperationServerBasePath = operationServerMap['BlueprintMainCallsApi.getBlueprintCatalog']?.[localVarOperationServerIndex]?.url;
32095
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
32096
+ },
32097
+ }
32098
+ };
32099
+
32100
+ /**
32101
+ * BlueprintMainCallsApi - factory interface
32102
+ * @export
32103
+ */
32104
+ export const BlueprintMainCallsApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
32105
+ const localVarFp = BlueprintMainCallsApiFp(configuration)
32106
+ return {
32107
+ /**
32108
+ * Retrieves the Qovery service catalog from the public GitHub repository (Qovery/service-catalog). The catalog lists all available blueprints that can be deployed.
32109
+ * @summary Get the blueprint service catalog
32110
+ * @param {string} organizationId Organization ID
32111
+ * @param {*} [options] Override http request option.
32112
+ * @throws {RequiredError}
32113
+ */
32114
+ getBlueprintCatalog(organizationId: string, options?: RawAxiosRequestConfig): AxiosPromise<BlueprintCatalogResponse> {
32115
+ return localVarFp.getBlueprintCatalog(organizationId, options).then((request) => request(axios, basePath));
32116
+ },
32117
+ };
32118
+ };
32119
+
32120
+ /**
32121
+ * BlueprintMainCallsApi - object-oriented interface
32122
+ * @export
32123
+ * @class BlueprintMainCallsApi
32124
+ * @extends {BaseAPI}
32125
+ */
32126
+ export class BlueprintMainCallsApi extends BaseAPI {
32127
+ /**
32128
+ * Retrieves the Qovery service catalog from the public GitHub repository (Qovery/service-catalog). The catalog lists all available blueprints that can be deployed.
32129
+ * @summary Get the blueprint service catalog
32130
+ * @param {string} organizationId Organization ID
32131
+ * @param {*} [options] Override http request option.
32132
+ * @throws {RequiredError}
32133
+ * @memberof BlueprintMainCallsApi
32134
+ */
32135
+ public getBlueprintCatalog(organizationId: string, options?: RawAxiosRequestConfig) {
32136
+ return BlueprintMainCallsApiFp(this.configuration).getBlueprintCatalog(organizationId, options).then((request) => request(this.axios, this.basePath));
32137
+ }
32138
+ }
32139
+
32140
+
32141
+
31928
32142
  /**
31929
32143
  * CloudProviderApi - axios parameter creator
31930
32144
  * @export
package/dist/api.d.ts CHANGED
@@ -3319,6 +3319,105 @@ export interface BillingStatus {
3319
3319
  */
3320
3320
  'message'?: string;
3321
3321
  }
3322
+ /**
3323
+ *
3324
+ * @export
3325
+ * @interface BlueprintCatalogResponse
3326
+ */
3327
+ export interface BlueprintCatalogResponse {
3328
+ /**
3329
+ *
3330
+ * @type {string}
3331
+ * @memberof BlueprintCatalogResponse
3332
+ */
3333
+ 'version': string;
3334
+ /**
3335
+ *
3336
+ * @type {string}
3337
+ * @memberof BlueprintCatalogResponse
3338
+ */
3339
+ 'generatedAt': string;
3340
+ /**
3341
+ *
3342
+ * @type {Array<BlueprintItem>}
3343
+ * @memberof BlueprintCatalogResponse
3344
+ */
3345
+ 'blueprints': Array<BlueprintItem>;
3346
+ }
3347
+ /**
3348
+ *
3349
+ * @export
3350
+ * @interface BlueprintItem
3351
+ */
3352
+ export interface BlueprintItem {
3353
+ /**
3354
+ *
3355
+ * @type {string}
3356
+ * @memberof BlueprintItem
3357
+ */
3358
+ 'name': string;
3359
+ /**
3360
+ *
3361
+ * @type {string}
3362
+ * @memberof BlueprintItem
3363
+ */
3364
+ 'kind': string;
3365
+ /**
3366
+ *
3367
+ * @type {string}
3368
+ * @memberof BlueprintItem
3369
+ */
3370
+ 'description': string;
3371
+ /**
3372
+ *
3373
+ * @type {string}
3374
+ * @memberof BlueprintItem
3375
+ */
3376
+ 'icon': string;
3377
+ /**
3378
+ *
3379
+ * @type {Array<string>}
3380
+ * @memberof BlueprintItem
3381
+ */
3382
+ 'categories': Array<string>;
3383
+ /**
3384
+ *
3385
+ * @type {string}
3386
+ * @memberof BlueprintItem
3387
+ */
3388
+ 'provider': string;
3389
+ /**
3390
+ *
3391
+ * @type {string}
3392
+ * @memberof BlueprintItem
3393
+ */
3394
+ 'serviceFamily': string;
3395
+ /**
3396
+ *
3397
+ * @type {Array<BlueprintMajorVersion>}
3398
+ * @memberof BlueprintItem
3399
+ */
3400
+ 'majorVersions': Array<BlueprintMajorVersion>;
3401
+ }
3402
+ /**
3403
+ *
3404
+ * @export
3405
+ * @interface BlueprintMajorVersion
3406
+ */
3407
+ export interface BlueprintMajorVersion {
3408
+ /**
3409
+ *
3410
+ * @type {string}
3411
+ * @memberof BlueprintMajorVersion
3412
+ */
3413
+ 'serviceVersion': string;
3414
+ /**
3415
+ *
3416
+ * @type {string}
3417
+ * @memberof BlueprintMajorVersion
3418
+ */
3419
+ 'latestTag': string;
3420
+ }
3322
3421
  /**
3323
3422
  *
3324
3423
  * @export
@@ -26889,6 +26988,65 @@ export declare class BillingApi extends BaseAPI {
26889
26988
  */
26890
26989
  organizationDownloadAllInvoices(organizationId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
26891
26990
  }
26991
+ /**
26992
+ * BlueprintMainCallsApi - axios parameter creator
26993
+ * @export
26994
+ */
26995
+ export declare const BlueprintMainCallsApiAxiosParamCreator: (configuration?: Configuration) => {
26996
+ /**
26997
+ * Retrieves the Qovery service catalog from the public GitHub repository (Qovery/service-catalog). The catalog lists all available blueprints that can be deployed.
26998
+ * @summary Get the blueprint service catalog
26999
+ * @param {string} organizationId Organization ID
27000
+ * @param {*} [options] Override http request option.
27001
+ * @throws {RequiredError}
27002
+ */
27003
+ getBlueprintCatalog: (organizationId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
27004
+ };
27005
+ /**
27006
+ * BlueprintMainCallsApi - functional programming interface
27007
+ * @export
27008
+ */
27009
+ export declare const BlueprintMainCallsApiFp: (configuration?: Configuration) => {
27010
+ /**
27011
+ * Retrieves the Qovery service catalog from the public GitHub repository (Qovery/service-catalog). The catalog lists all available blueprints that can be deployed.
27012
+ * @summary Get the blueprint service catalog
27013
+ * @param {string} organizationId Organization ID
27014
+ * @param {*} [options] Override http request option.
27015
+ * @throws {RequiredError}
27016
+ */
27017
+ getBlueprintCatalog(organizationId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BlueprintCatalogResponse>>;
27018
+ };
27019
+ /**
27020
+ * BlueprintMainCallsApi - factory interface
27021
+ * @export
27022
+ */
27023
+ export declare const BlueprintMainCallsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
27024
+ /**
27025
+ * Retrieves the Qovery service catalog from the public GitHub repository (Qovery/service-catalog). The catalog lists all available blueprints that can be deployed.
27026
+ * @summary Get the blueprint service catalog
27027
+ * @param {string} organizationId Organization ID
27028
+ * @param {*} [options] Override http request option.
27029
+ * @throws {RequiredError}
27030
+ */
27031
+ getBlueprintCatalog(organizationId: string, options?: RawAxiosRequestConfig): AxiosPromise<BlueprintCatalogResponse>;
27032
+ };
27033
+ /**
27034
+ * BlueprintMainCallsApi - object-oriented interface
27035
+ * @export
27036
+ * @class BlueprintMainCallsApi
27037
+ * @extends {BaseAPI}
27038
+ */
27039
+ export declare class BlueprintMainCallsApi extends BaseAPI {
27040
+ /**
27041
+ * Retrieves the Qovery service catalog from the public GitHub repository (Qovery/service-catalog). The catalog lists all available blueprints that can be deployed.
27042
+ * @summary Get the blueprint service catalog
27043
+ * @param {string} organizationId Organization ID
27044
+ * @param {*} [options] Override http request option.
27045
+ * @throws {RequiredError}
27046
+ * @memberof BlueprintMainCallsApi
27047
+ */
27048
+ getBlueprintCatalog(organizationId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BlueprintCatalogResponse, any, {}>>;
27049
+ }
26892
27050
  /**
26893
27051
  * CloudProviderApi - axios parameter creator
26894
27052
  * @export
package/dist/api.js CHANGED
@@ -26,13 +26,13 @@ exports.CompanySizeEnum = exports.ClusterStateEnum = exports.ClusterLogsStepEnum
26
26
  exports.InvoiceStatusEnum = exports.InviteStatusEnum = exports.InviteMemberRoleEnum = exports.HelmRepositoryKindEnum = exports.HelmRepositoryAssociatedServiceType = exports.HelmPortProtocolEnum = exports.HelmForceEvent = exports.GkeInfrastructureOutputsKindEnum = exports.GitWebhookStatusResponseProviderEnum = exports.GitWebhookStatusResponseStatusEnum = exports.GitTokenAssociatedServiceType = exports.GitProviderEnum = exports.GenericClusterCredentialsObjectTypeEnum = exports.GcpWorkloadIdentityFederationCredentialsRequestCredentialTypeEnum = exports.GcpWorkloadIdentityFederationClusterCredentialsObjectTypeEnum = exports.GcpStaticClusterCredentialsObjectTypeEnum = exports.GcpServiceAccountKeyCredentialsRequestCredentialTypeEnum = exports.GcpSecretManagerEndpointDtoModeEnum = exports.GcpJsonCredentialsAuthDtoModeEnum = exports.EnvironmentStatusEventOriginEnum = exports.EnvironmentModeEnum = exports.EnvironmentLogTypeEnum = exports.EnvironmentDeploymentStatusEnum = exports.EksInfrastructureOutputsKindEnum = exports.EksAnywhereVsphereStaticCredentialsRequestTypeEnum = exports.EksAnywhereVsphereRoleCredentialsRequestTypeEnum = exports.EksAnywhereVsphereClusterCredentialsObjectTypeEnum = exports.DockerfileFragmentInlineTypeEnum = exports.DockerfileFragmentFileTypeEnum = exports.DeploymentRestrictionTypeEnum = exports.DeploymentRestrictionModeEnum = exports.DeploymentInfraReason = exports.DeploymentHistoryTriggerAction = exports.DeploymentHistoryStatusEnum = exports.DeploymentHistoryServiceDetailsOneOf2JobTypeEnum = exports.DeploymentHistoryActionStatus = exports.DeleteTerraformAction = exports.DatabaseTypeEnum = exports.DatabaseModeEnum = exports.DatabaseEditRequestDiskTypeEnum = exports.DatabaseAccessibilityEnum = exports.DatabaseDiskTypeEnum = exports.CustomDomainStatusEnum = exports.CreateEnvironmentModeEnum = exports.CpuArchitectureEnum = exports.ContainerRegistryKindEnum = exports.ContainerRegistryAssociatedServiceType = exports.ContainerAdvancedSettingsDeploymentUpdateStrategyTypeEnum = exports.ContainerAdvancedSettingsDeploymentTopologySpreadZoneEnum = exports.ContainerAdvancedSettingsDeploymentAntiaffinityPodEnum = void 0;
27
27
  exports.StepMetricStatusEnum = exports.StatusKindEnum = exports.StateEnum = exports.StageStepMetricNameEnum = exports.StageStatusEnum = exports.ServicesOverviewResponseManagedByEnum = exports.ServiceTypeForVariableEnum = exports.ServiceTypeEnum = exports.ServiceSubActionEnum = exports.ServiceStepMetricNameEnum = exports.ServiceLightResponseJobTypeEnum = exports.ServiceDeploymentStatusEnum = exports.ServiceActionStatusEnum = exports.ServiceActionEnum = exports.ScalewayClusterCredentialsObjectTypeEnum = exports.Route53StaticCredentialsResponseTypeEnum = exports.Route53StaticCredentialsRequestTypeEnum = exports.Route53DnsProviderResponseProviderEnum = exports.Route53DnsProviderRequestProviderEnum = exports.RewardClaimTypeEnum = exports.RegistryMirroringModeEnum = exports.QueuedDeploymentRequestWithStagesStagesInnerServicesInnerDetailsOneOfJobTypeEnum = exports.QoveryDnsProviderResponseProviderEnum = exports.QoveryDnsProviderRequestProviderEnum = exports.PortProtocolEnum = exports.PlanEnum = exports.OrganizationWebhookKindEnum = exports.OrganizationWebhookEventEnum = exports.OrganizationEventType = exports.OrganizationEventTargetType = exports.OrganizationEventTargetLevel = exports.OrganizationEventSubTargetType = exports.OrganizationEventOrigin = exports.OrganizationCustomRoleProjectPermission = exports.OrganizationCustomRoleClusterPermission = exports.OrganizationApiTokenScope = exports.OrganizationAnnotationsGroupScopeEnum = exports.ObservabilityResourceProfile = exports.MetricsConfigurationManagedByQoveryKindEnum = exports.LinkedServiceTypeEnum = exports.LabelsGroupAssociatedItemType = exports.KubernetesEnum = exports.KedaScalerRole = exports.KarpenterNodePoolRequirementOperator = exports.KarpenterNodePoolRequirementKey = exports.KapsuleInfrastructureOutputsKindEnum = exports.JobTypeEnum = exports.JobScheduleEvent = exports.JobLifecycleTypeEnum = exports.JobForceEvent = void 0;
28
28
  exports.ApplicationMainCallsApiAxiosParamCreator = exports.ApplicationLogsApi = exports.ApplicationLogsApiFactory = exports.ApplicationLogsApiFp = exports.ApplicationLogsApiAxiosParamCreator = exports.ApplicationEnvironmentVariableApi = exports.ApplicationEnvironmentVariableApiFactory = exports.ApplicationEnvironmentVariableApiFp = exports.ApplicationEnvironmentVariableApiAxiosParamCreator = exports.ApplicationDeploymentRestrictionApi = exports.ApplicationDeploymentRestrictionApiFactory = exports.ApplicationDeploymentRestrictionApiFp = exports.ApplicationDeploymentRestrictionApiAxiosParamCreator = exports.ApplicationDeploymentHistoryApi = exports.ApplicationDeploymentHistoryApiFactory = exports.ApplicationDeploymentHistoryApiFp = exports.ApplicationDeploymentHistoryApiAxiosParamCreator = exports.ApplicationCustomDomainApi = exports.ApplicationCustomDomainApiFactory = exports.ApplicationCustomDomainApiFp = exports.ApplicationCustomDomainApiAxiosParamCreator = exports.ApplicationConfigurationApi = exports.ApplicationConfigurationApiFactory = exports.ApplicationConfigurationApiFp = exports.ApplicationConfigurationApiAxiosParamCreator = exports.ApplicationActionsApi = exports.ApplicationActionsApiFactory = exports.ApplicationActionsApiFp = exports.ApplicationActionsApiAxiosParamCreator = exports.AlertRulesApi = exports.AlertRulesApiFactory = exports.AlertRulesApiFp = exports.AlertRulesApiAxiosParamCreator = exports.AlertReceiversApi = exports.AlertReceiversApiFactory = exports.AlertReceiversApiFp = exports.AlertReceiversApiAxiosParamCreator = exports.AccountInfoApi = exports.AccountInfoApiFactory = exports.AccountInfoApiFp = exports.AccountInfoApiAxiosParamCreator = exports.WeekdayEnum = exports.TypeOfUseEnum = exports.TfVarsDiscoveryModeSpecificPathsTypeEnum = exports.TfVarsDiscoveryModeAutoDiscoverTypeEnum = exports.TerraformResourceResponseModeEnum = exports.TerraformEngineEnum = exports.TerraformDeployRequestActionEnum = exports.TerraformAutoDeployConfigTerraformActionEnum = exports.StorageTypeEnum = void 0;
29
- exports.ContainerDeploymentHistoryApiAxiosParamCreator = exports.ContainerCustomDomainApi = exports.ContainerCustomDomainApiFactory = exports.ContainerCustomDomainApiFp = exports.ContainerCustomDomainApiAxiosParamCreator = exports.ContainerConfigurationApi = exports.ContainerConfigurationApiFactory = exports.ContainerConfigurationApiFp = exports.ContainerConfigurationApiAxiosParamCreator = exports.ContainerActionsApi = exports.ContainerActionsApiFactory = exports.ContainerActionsApiFp = exports.ContainerActionsApiAxiosParamCreator = exports.ClustersApi = exports.ClustersApiFactory = exports.ClustersApiFp = exports.ClustersApiAxiosParamCreator = exports.CloudProviderCredentialsApi = exports.CloudProviderCredentialsApiFactory = exports.CloudProviderCredentialsApiFp = exports.CloudProviderCredentialsApiAxiosParamCreator = exports.ListAzureAKSInstanceTypeGpuEnum = exports.ListAWSEKSInstanceTypeGpuEnum = exports.CloudProviderApi = exports.CloudProviderApiFactory = exports.CloudProviderApiFp = exports.CloudProviderApiAxiosParamCreator = exports.BillingApi = exports.BillingApiFactory = exports.BillingApiFp = exports.BillingApiAxiosParamCreator = exports.BackupsApi = exports.BackupsApiFactory = exports.BackupsApiFp = exports.BackupsApiAxiosParamCreator = exports.ArgoCDApi = exports.ArgoCDApiFactory = exports.ArgoCDApiFp = exports.ArgoCDApiAxiosParamCreator = exports.ApplicationsApi = exports.ApplicationsApiFactory = exports.ApplicationsApiFp = exports.ApplicationsApiAxiosParamCreator = exports.ApplicationSecretApi = exports.ApplicationSecretApiFactory = exports.ApplicationSecretApiFp = exports.ApplicationSecretApiAxiosParamCreator = exports.ApplicationMainCallsApi = exports.ApplicationMainCallsApiFactory = exports.ApplicationMainCallsApiFp = void 0;
30
- exports.DefaultApiFactory = exports.DefaultApiFp = exports.DefaultApiAxiosParamCreator = exports.DatabasesApi = exports.DatabasesApiFactory = exports.DatabasesApiFp = exports.DatabasesApiAxiosParamCreator = exports.DatabaseMainCallsApi = exports.DatabaseMainCallsApiFactory = exports.DatabaseMainCallsApiFp = exports.DatabaseMainCallsApiAxiosParamCreator = exports.DatabaseDeploymentHistoryApi = exports.DatabaseDeploymentHistoryApiFactory = exports.DatabaseDeploymentHistoryApiFp = exports.DatabaseDeploymentHistoryApiAxiosParamCreator = exports.DatabaseApplicationApi = exports.DatabaseApplicationApiFactory = exports.DatabaseApplicationApiFp = exports.DatabaseApplicationApiAxiosParamCreator = exports.DatabaseActionsApi = exports.DatabaseActionsApiFactory = exports.DatabaseActionsApiFp = exports.DatabaseActionsApiAxiosParamCreator = exports.ContainersApi = exports.ContainersApiFactory = exports.ContainersApiFp = exports.ContainersApiAxiosParamCreator = exports.ContainerSecretApi = exports.ContainerSecretApiFactory = exports.ContainerSecretApiFp = exports.ContainerSecretApiAxiosParamCreator = exports.ContainerRegistriesApi = exports.ContainerRegistriesApiFactory = exports.ContainerRegistriesApiFp = exports.ContainerRegistriesApiAxiosParamCreator = exports.ContainerMainCallsApi = exports.ContainerMainCallsApiFactory = exports.ContainerMainCallsApiFp = exports.ContainerMainCallsApiAxiosParamCreator = exports.ContainerLogsApi = exports.ContainerLogsApiFactory = exports.ContainerLogsApiFp = exports.ContainerLogsApiAxiosParamCreator = exports.ContainerEnvironmentVariableApi = exports.ContainerEnvironmentVariableApiFactory = exports.ContainerEnvironmentVariableApiFp = exports.ContainerEnvironmentVariableApiAxiosParamCreator = exports.ContainerDeploymentHistoryApi = exports.ContainerDeploymentHistoryApiFactory = exports.ContainerDeploymentHistoryApiFp = void 0;
31
- exports.GitRepositoriesApiAxiosParamCreator = exports.EnvironmentsApi = exports.EnvironmentsApiFactory = exports.EnvironmentsApiFp = exports.EnvironmentsApiAxiosParamCreator = exports.EnvironmentVariableApi = exports.EnvironmentVariableApiFactory = exports.EnvironmentVariableApiFp = exports.EnvironmentVariableApiAxiosParamCreator = exports.EnvironmentSecretApi = exports.EnvironmentSecretApiFactory = exports.EnvironmentSecretApiFp = exports.EnvironmentSecretApiAxiosParamCreator = exports.EnvironmentMainCallsApi = exports.EnvironmentMainCallsApiFactory = exports.EnvironmentMainCallsApiFp = exports.EnvironmentMainCallsApiAxiosParamCreator = exports.EnvironmentLogsApi = exports.EnvironmentLogsApiFactory = exports.EnvironmentLogsApiFp = exports.EnvironmentLogsApiAxiosParamCreator = exports.EnvironmentExportApi = exports.EnvironmentExportApiFactory = exports.EnvironmentExportApiFp = exports.EnvironmentExportApiAxiosParamCreator = exports.EnvironmentDeploymentRuleApi = exports.EnvironmentDeploymentRuleApiFactory = exports.EnvironmentDeploymentRuleApiFp = exports.EnvironmentDeploymentRuleApiAxiosParamCreator = exports.EnvironmentDeploymentHistoryApi = exports.EnvironmentDeploymentHistoryApiFactory = exports.EnvironmentDeploymentHistoryApiFp = exports.EnvironmentDeploymentHistoryApiAxiosParamCreator = exports.EnvironmentActionsApi = exports.EnvironmentActionsApiFactory = exports.EnvironmentActionsApiFp = exports.EnvironmentActionsApiAxiosParamCreator = exports.EnvironmentApi = exports.EnvironmentApiFactory = exports.EnvironmentApiFp = exports.EnvironmentApiAxiosParamCreator = exports.DeploymentStageMainCallsApi = exports.DeploymentStageMainCallsApiFactory = exports.DeploymentStageMainCallsApiFp = exports.DeploymentStageMainCallsApiAxiosParamCreator = exports.DeploymentQueueActionsApi = exports.DeploymentQueueActionsApiFactory = exports.DeploymentQueueActionsApiFp = exports.DeploymentQueueActionsApiAxiosParamCreator = exports.DefaultApi = void 0;
32
- exports.JobDeploymentHistoryApiFactory = exports.JobDeploymentHistoryApiFp = exports.JobDeploymentHistoryApiAxiosParamCreator = exports.JobConfigurationApi = exports.JobConfigurationApiFactory = exports.JobConfigurationApiFp = exports.JobConfigurationApiAxiosParamCreator = exports.JobActionsApi = exports.JobActionsApiFactory = exports.JobActionsApiFp = exports.JobActionsApiAxiosParamCreator = exports.HelmsApi = exports.HelmsApiFactory = exports.HelmsApiFp = exports.HelmsApiAxiosParamCreator = exports.HelmRepositoriesApi = exports.HelmRepositoriesApiFactory = exports.HelmRepositoriesApiFp = exports.HelmRepositoriesApiAxiosParamCreator = exports.HelmMainCallsApi = exports.HelmMainCallsApiFactory = exports.HelmMainCallsApiFp = exports.HelmMainCallsApiAxiosParamCreator = exports.HelmDeploymentRestrictionApi = exports.HelmDeploymentRestrictionApiFactory = exports.HelmDeploymentRestrictionApiFp = exports.HelmDeploymentRestrictionApiAxiosParamCreator = exports.HelmDeploymentHistoryApi = exports.HelmDeploymentHistoryApiFactory = exports.HelmDeploymentHistoryApiFp = exports.HelmDeploymentHistoryApiAxiosParamCreator = exports.HelmCustomDomainApi = exports.HelmCustomDomainApiFactory = exports.HelmCustomDomainApiFp = exports.HelmCustomDomainApiAxiosParamCreator = exports.HelmConfigurationApi = exports.HelmConfigurationApiFactory = exports.HelmConfigurationApiFp = exports.HelmConfigurationApiAxiosParamCreator = exports.HelmActionsApi = exports.HelmActionsApiFactory = exports.HelmActionsApiFp = exports.HelmActionsApiAxiosParamCreator = exports.GithubAppApi = exports.GithubAppApiFactory = exports.GithubAppApiFp = exports.GithubAppApiAxiosParamCreator = exports.GitRepositoriesApi = exports.GitRepositoriesApiFactory = exports.GitRepositoriesApiFp = void 0;
33
- exports.OrganizationEnterpriseConnectionApiAxiosParamCreator = exports.OrganizationCustomRoleApi = exports.OrganizationCustomRoleApiFactory = exports.OrganizationCustomRoleApiFp = exports.OrganizationCustomRoleApiAxiosParamCreator = exports.OrganizationClusterLockApi = exports.OrganizationClusterLockApiFactory = exports.OrganizationClusterLockApiFp = exports.OrganizationClusterLockApiAxiosParamCreator = exports.OrganizationApiTokenApi = exports.OrganizationApiTokenApiFactory = exports.OrganizationApiTokenApiFp = exports.OrganizationApiTokenApiAxiosParamCreator = exports.OrganizationAnnotationsGroupApi = exports.OrganizationAnnotationsGroupApiFactory = exports.OrganizationAnnotationsGroupApiFp = exports.OrganizationAnnotationsGroupApiAxiosParamCreator = exports.OrganizationAccountGitRepositoriesApi = exports.OrganizationAccountGitRepositoriesApiFactory = exports.OrganizationAccountGitRepositoriesApiFp = exports.OrganizationAccountGitRepositoriesApiAxiosParamCreator = exports.MembersApi = exports.MembersApiFactory = exports.MembersApiFp = exports.MembersApiAxiosParamCreator = exports.LifecycleTemplateMainCallsApi = exports.LifecycleTemplateMainCallsApiFactory = exports.LifecycleTemplateMainCallsApiFp = exports.LifecycleTemplateMainCallsApiAxiosParamCreator = exports.JobsApi = exports.JobsApiFactory = exports.JobsApiFp = exports.JobsApiAxiosParamCreator = exports.JobSecretApi = exports.JobSecretApiFactory = exports.JobSecretApiFp = exports.JobSecretApiAxiosParamCreator = exports.JobMainCallsApi = exports.JobMainCallsApiFactory = exports.JobMainCallsApiFp = exports.JobMainCallsApiAxiosParamCreator = exports.JobEnvironmentVariableApi = exports.JobEnvironmentVariableApiFactory = exports.JobEnvironmentVariableApiFp = exports.JobEnvironmentVariableApiAxiosParamCreator = exports.JobDeploymentRestrictionApi = exports.JobDeploymentRestrictionApiFactory = exports.JobDeploymentRestrictionApiFp = exports.JobDeploymentRestrictionApiAxiosParamCreator = exports.JobDeploymentHistoryApi = void 0;
34
- exports.ServiceMainCallsApiFactory = exports.ServiceMainCallsApiFp = exports.ServiceMainCallsApiAxiosParamCreator = exports.SecretManagerAccessApi = exports.SecretManagerAccessApiFactory = exports.SecretManagerAccessApiFp = exports.SecretManagerAccessApiAxiosParamCreator = exports.ReferralRewardsApi = exports.ReferralRewardsApiFactory = exports.ReferralRewardsApiFp = exports.ReferralRewardsApiAxiosParamCreator = exports.ProjectsApi = exports.ProjectsApiFactory = exports.ProjectsApiFp = exports.ProjectsApiAxiosParamCreator = exports.ProjectSecretApi = exports.ProjectSecretApiFactory = exports.ProjectSecretApiFp = exports.ProjectSecretApiAxiosParamCreator = exports.ProjectMainCallsApi = exports.ProjectMainCallsApiFactory = exports.ProjectMainCallsApiFp = exports.ProjectMainCallsApiAxiosParamCreator = exports.ProjectEnvironmentVariableApi = exports.ProjectEnvironmentVariableApiFactory = exports.ProjectEnvironmentVariableApiFp = exports.ProjectEnvironmentVariableApiAxiosParamCreator = exports.ProjectDeploymentRuleApi = exports.ProjectDeploymentRuleApiFactory = exports.ProjectDeploymentRuleApiFp = exports.ProjectDeploymentRuleApiAxiosParamCreator = exports.OrganizationWebhookApi = exports.OrganizationWebhookApiFactory = exports.OrganizationWebhookApiFp = exports.OrganizationWebhookApiAxiosParamCreator = exports.OrganizationMainCallsApi = exports.OrganizationMainCallsApiFactory = exports.OrganizationMainCallsApiFp = exports.OrganizationMainCallsApiAxiosParamCreator = exports.OrganizationLabelsGroupApi = exports.OrganizationLabelsGroupApiFactory = exports.OrganizationLabelsGroupApiFp = exports.OrganizationLabelsGroupApiAxiosParamCreator = exports.OrganizationEventApi = exports.OrganizationEventApiFactory = exports.OrganizationEventApiFp = exports.OrganizationEventApiAxiosParamCreator = exports.OrganizationEnterpriseConnectionApi = exports.OrganizationEnterpriseConnectionApiFactory = exports.OrganizationEnterpriseConnectionApiFp = void 0;
35
- exports.VariableMainCallsApi = exports.VariableMainCallsApiFactory = exports.VariableMainCallsApiFp = exports.VariableMainCallsApiAxiosParamCreator = exports.UserSignUpApi = exports.UserSignUpApiFactory = exports.UserSignUpApiFp = exports.UserSignUpApiAxiosParamCreator = exports.TerraformsApi = exports.TerraformsApiFactory = exports.TerraformsApiFp = exports.TerraformsApiAxiosParamCreator = exports.TerraformResourcesApi = exports.TerraformResourcesApiFactory = exports.TerraformResourcesApiFp = exports.TerraformResourcesApiAxiosParamCreator = exports.TerraformMainCallsApi = exports.TerraformMainCallsApiFactory = exports.TerraformMainCallsApiFp = exports.TerraformMainCallsApiAxiosParamCreator = exports.TerraformDeploymentRestrictionApi = exports.TerraformDeploymentRestrictionApiFactory = exports.TerraformDeploymentRestrictionApiFp = exports.TerraformDeploymentRestrictionApiAxiosParamCreator = exports.TerraformDeploymentHistoryApi = exports.TerraformDeploymentHistoryApiFactory = exports.TerraformDeploymentHistoryApiFp = exports.TerraformDeploymentHistoryApiAxiosParamCreator = exports.TerraformConfigurationApi = exports.TerraformConfigurationApiFactory = exports.TerraformConfigurationApiFp = exports.TerraformConfigurationApiAxiosParamCreator = exports.TerraformActionsApi = exports.TerraformActionsApiFactory = exports.TerraformActionsApiFp = exports.TerraformActionsApiAxiosParamCreator = exports.GetIngressDeploymentStatusServiceTypeEnum = exports.ServiceStatusApi = exports.ServiceStatusApiFactory = exports.ServiceStatusApiFp = exports.ServiceStatusApiAxiosParamCreator = exports.ServiceMainCallsApi = void 0;
29
+ exports.ContainerCustomDomainApiAxiosParamCreator = exports.ContainerConfigurationApi = exports.ContainerConfigurationApiFactory = exports.ContainerConfigurationApiFp = exports.ContainerConfigurationApiAxiosParamCreator = exports.ContainerActionsApi = exports.ContainerActionsApiFactory = exports.ContainerActionsApiFp = exports.ContainerActionsApiAxiosParamCreator = exports.ClustersApi = exports.ClustersApiFactory = exports.ClustersApiFp = exports.ClustersApiAxiosParamCreator = exports.CloudProviderCredentialsApi = exports.CloudProviderCredentialsApiFactory = exports.CloudProviderCredentialsApiFp = exports.CloudProviderCredentialsApiAxiosParamCreator = exports.ListAzureAKSInstanceTypeGpuEnum = exports.ListAWSEKSInstanceTypeGpuEnum = exports.CloudProviderApi = exports.CloudProviderApiFactory = exports.CloudProviderApiFp = exports.CloudProviderApiAxiosParamCreator = exports.BlueprintMainCallsApi = exports.BlueprintMainCallsApiFactory = exports.BlueprintMainCallsApiFp = exports.BlueprintMainCallsApiAxiosParamCreator = exports.BillingApi = exports.BillingApiFactory = exports.BillingApiFp = exports.BillingApiAxiosParamCreator = exports.BackupsApi = exports.BackupsApiFactory = exports.BackupsApiFp = exports.BackupsApiAxiosParamCreator = exports.ArgoCDApi = exports.ArgoCDApiFactory = exports.ArgoCDApiFp = exports.ArgoCDApiAxiosParamCreator = exports.ApplicationsApi = exports.ApplicationsApiFactory = exports.ApplicationsApiFp = exports.ApplicationsApiAxiosParamCreator = exports.ApplicationSecretApi = exports.ApplicationSecretApiFactory = exports.ApplicationSecretApiFp = exports.ApplicationSecretApiAxiosParamCreator = exports.ApplicationMainCallsApi = exports.ApplicationMainCallsApiFactory = exports.ApplicationMainCallsApiFp = void 0;
30
+ exports.DatabasesApiFactory = exports.DatabasesApiFp = exports.DatabasesApiAxiosParamCreator = exports.DatabaseMainCallsApi = exports.DatabaseMainCallsApiFactory = exports.DatabaseMainCallsApiFp = exports.DatabaseMainCallsApiAxiosParamCreator = exports.DatabaseDeploymentHistoryApi = exports.DatabaseDeploymentHistoryApiFactory = exports.DatabaseDeploymentHistoryApiFp = exports.DatabaseDeploymentHistoryApiAxiosParamCreator = exports.DatabaseApplicationApi = exports.DatabaseApplicationApiFactory = exports.DatabaseApplicationApiFp = exports.DatabaseApplicationApiAxiosParamCreator = exports.DatabaseActionsApi = exports.DatabaseActionsApiFactory = exports.DatabaseActionsApiFp = exports.DatabaseActionsApiAxiosParamCreator = exports.ContainersApi = exports.ContainersApiFactory = exports.ContainersApiFp = exports.ContainersApiAxiosParamCreator = exports.ContainerSecretApi = exports.ContainerSecretApiFactory = exports.ContainerSecretApiFp = exports.ContainerSecretApiAxiosParamCreator = exports.ContainerRegistriesApi = exports.ContainerRegistriesApiFactory = exports.ContainerRegistriesApiFp = exports.ContainerRegistriesApiAxiosParamCreator = exports.ContainerMainCallsApi = exports.ContainerMainCallsApiFactory = exports.ContainerMainCallsApiFp = exports.ContainerMainCallsApiAxiosParamCreator = exports.ContainerLogsApi = exports.ContainerLogsApiFactory = exports.ContainerLogsApiFp = exports.ContainerLogsApiAxiosParamCreator = exports.ContainerEnvironmentVariableApi = exports.ContainerEnvironmentVariableApiFactory = exports.ContainerEnvironmentVariableApiFp = exports.ContainerEnvironmentVariableApiAxiosParamCreator = exports.ContainerDeploymentHistoryApi = exports.ContainerDeploymentHistoryApiFactory = exports.ContainerDeploymentHistoryApiFp = exports.ContainerDeploymentHistoryApiAxiosParamCreator = exports.ContainerCustomDomainApi = exports.ContainerCustomDomainApiFactory = exports.ContainerCustomDomainApiFp = void 0;
31
+ exports.EnvironmentsApiAxiosParamCreator = exports.EnvironmentVariableApi = exports.EnvironmentVariableApiFactory = exports.EnvironmentVariableApiFp = exports.EnvironmentVariableApiAxiosParamCreator = exports.EnvironmentSecretApi = exports.EnvironmentSecretApiFactory = exports.EnvironmentSecretApiFp = exports.EnvironmentSecretApiAxiosParamCreator = exports.EnvironmentMainCallsApi = exports.EnvironmentMainCallsApiFactory = exports.EnvironmentMainCallsApiFp = exports.EnvironmentMainCallsApiAxiosParamCreator = exports.EnvironmentLogsApi = exports.EnvironmentLogsApiFactory = exports.EnvironmentLogsApiFp = exports.EnvironmentLogsApiAxiosParamCreator = exports.EnvironmentExportApi = exports.EnvironmentExportApiFactory = exports.EnvironmentExportApiFp = exports.EnvironmentExportApiAxiosParamCreator = exports.EnvironmentDeploymentRuleApi = exports.EnvironmentDeploymentRuleApiFactory = exports.EnvironmentDeploymentRuleApiFp = exports.EnvironmentDeploymentRuleApiAxiosParamCreator = exports.EnvironmentDeploymentHistoryApi = exports.EnvironmentDeploymentHistoryApiFactory = exports.EnvironmentDeploymentHistoryApiFp = exports.EnvironmentDeploymentHistoryApiAxiosParamCreator = exports.EnvironmentActionsApi = exports.EnvironmentActionsApiFactory = exports.EnvironmentActionsApiFp = exports.EnvironmentActionsApiAxiosParamCreator = exports.EnvironmentApi = exports.EnvironmentApiFactory = exports.EnvironmentApiFp = exports.EnvironmentApiAxiosParamCreator = exports.DeploymentStageMainCallsApi = exports.DeploymentStageMainCallsApiFactory = exports.DeploymentStageMainCallsApiFp = exports.DeploymentStageMainCallsApiAxiosParamCreator = exports.DeploymentQueueActionsApi = exports.DeploymentQueueActionsApiFactory = exports.DeploymentQueueActionsApiFp = exports.DeploymentQueueActionsApiAxiosParamCreator = exports.DefaultApi = exports.DefaultApiFactory = exports.DefaultApiFp = exports.DefaultApiAxiosParamCreator = exports.DatabasesApi = void 0;
32
+ exports.JobConfigurationApiFactory = exports.JobConfigurationApiFp = exports.JobConfigurationApiAxiosParamCreator = exports.JobActionsApi = exports.JobActionsApiFactory = exports.JobActionsApiFp = exports.JobActionsApiAxiosParamCreator = exports.HelmsApi = exports.HelmsApiFactory = exports.HelmsApiFp = exports.HelmsApiAxiosParamCreator = exports.HelmRepositoriesApi = exports.HelmRepositoriesApiFactory = exports.HelmRepositoriesApiFp = exports.HelmRepositoriesApiAxiosParamCreator = exports.HelmMainCallsApi = exports.HelmMainCallsApiFactory = exports.HelmMainCallsApiFp = exports.HelmMainCallsApiAxiosParamCreator = exports.HelmDeploymentRestrictionApi = exports.HelmDeploymentRestrictionApiFactory = exports.HelmDeploymentRestrictionApiFp = exports.HelmDeploymentRestrictionApiAxiosParamCreator = exports.HelmDeploymentHistoryApi = exports.HelmDeploymentHistoryApiFactory = exports.HelmDeploymentHistoryApiFp = exports.HelmDeploymentHistoryApiAxiosParamCreator = exports.HelmCustomDomainApi = exports.HelmCustomDomainApiFactory = exports.HelmCustomDomainApiFp = exports.HelmCustomDomainApiAxiosParamCreator = exports.HelmConfigurationApi = exports.HelmConfigurationApiFactory = exports.HelmConfigurationApiFp = exports.HelmConfigurationApiAxiosParamCreator = exports.HelmActionsApi = exports.HelmActionsApiFactory = exports.HelmActionsApiFp = exports.HelmActionsApiAxiosParamCreator = exports.GithubAppApi = exports.GithubAppApiFactory = exports.GithubAppApiFp = exports.GithubAppApiAxiosParamCreator = exports.GitRepositoriesApi = exports.GitRepositoriesApiFactory = exports.GitRepositoriesApiFp = exports.GitRepositoriesApiAxiosParamCreator = exports.EnvironmentsApi = exports.EnvironmentsApiFactory = exports.EnvironmentsApiFp = void 0;
33
+ exports.OrganizationCustomRoleApiAxiosParamCreator = exports.OrganizationClusterLockApi = exports.OrganizationClusterLockApiFactory = exports.OrganizationClusterLockApiFp = exports.OrganizationClusterLockApiAxiosParamCreator = exports.OrganizationApiTokenApi = exports.OrganizationApiTokenApiFactory = exports.OrganizationApiTokenApiFp = exports.OrganizationApiTokenApiAxiosParamCreator = exports.OrganizationAnnotationsGroupApi = exports.OrganizationAnnotationsGroupApiFactory = exports.OrganizationAnnotationsGroupApiFp = exports.OrganizationAnnotationsGroupApiAxiosParamCreator = exports.OrganizationAccountGitRepositoriesApi = exports.OrganizationAccountGitRepositoriesApiFactory = exports.OrganizationAccountGitRepositoriesApiFp = exports.OrganizationAccountGitRepositoriesApiAxiosParamCreator = exports.MembersApi = exports.MembersApiFactory = exports.MembersApiFp = exports.MembersApiAxiosParamCreator = exports.LifecycleTemplateMainCallsApi = exports.LifecycleTemplateMainCallsApiFactory = exports.LifecycleTemplateMainCallsApiFp = exports.LifecycleTemplateMainCallsApiAxiosParamCreator = exports.JobsApi = exports.JobsApiFactory = exports.JobsApiFp = exports.JobsApiAxiosParamCreator = exports.JobSecretApi = exports.JobSecretApiFactory = exports.JobSecretApiFp = exports.JobSecretApiAxiosParamCreator = exports.JobMainCallsApi = exports.JobMainCallsApiFactory = exports.JobMainCallsApiFp = exports.JobMainCallsApiAxiosParamCreator = exports.JobEnvironmentVariableApi = exports.JobEnvironmentVariableApiFactory = exports.JobEnvironmentVariableApiFp = exports.JobEnvironmentVariableApiAxiosParamCreator = exports.JobDeploymentRestrictionApi = exports.JobDeploymentRestrictionApiFactory = exports.JobDeploymentRestrictionApiFp = exports.JobDeploymentRestrictionApiAxiosParamCreator = exports.JobDeploymentHistoryApi = exports.JobDeploymentHistoryApiFactory = exports.JobDeploymentHistoryApiFp = exports.JobDeploymentHistoryApiAxiosParamCreator = exports.JobConfigurationApi = void 0;
34
+ exports.SecretManagerAccessApiFactory = exports.SecretManagerAccessApiFp = exports.SecretManagerAccessApiAxiosParamCreator = exports.ReferralRewardsApi = exports.ReferralRewardsApiFactory = exports.ReferralRewardsApiFp = exports.ReferralRewardsApiAxiosParamCreator = exports.ProjectsApi = exports.ProjectsApiFactory = exports.ProjectsApiFp = exports.ProjectsApiAxiosParamCreator = exports.ProjectSecretApi = exports.ProjectSecretApiFactory = exports.ProjectSecretApiFp = exports.ProjectSecretApiAxiosParamCreator = exports.ProjectMainCallsApi = exports.ProjectMainCallsApiFactory = exports.ProjectMainCallsApiFp = exports.ProjectMainCallsApiAxiosParamCreator = exports.ProjectEnvironmentVariableApi = exports.ProjectEnvironmentVariableApiFactory = exports.ProjectEnvironmentVariableApiFp = exports.ProjectEnvironmentVariableApiAxiosParamCreator = exports.ProjectDeploymentRuleApi = exports.ProjectDeploymentRuleApiFactory = exports.ProjectDeploymentRuleApiFp = exports.ProjectDeploymentRuleApiAxiosParamCreator = exports.OrganizationWebhookApi = exports.OrganizationWebhookApiFactory = exports.OrganizationWebhookApiFp = exports.OrganizationWebhookApiAxiosParamCreator = exports.OrganizationMainCallsApi = exports.OrganizationMainCallsApiFactory = exports.OrganizationMainCallsApiFp = exports.OrganizationMainCallsApiAxiosParamCreator = exports.OrganizationLabelsGroupApi = exports.OrganizationLabelsGroupApiFactory = exports.OrganizationLabelsGroupApiFp = exports.OrganizationLabelsGroupApiAxiosParamCreator = exports.OrganizationEventApi = exports.OrganizationEventApiFactory = exports.OrganizationEventApiFp = exports.OrganizationEventApiAxiosParamCreator = exports.OrganizationEnterpriseConnectionApi = exports.OrganizationEnterpriseConnectionApiFactory = exports.OrganizationEnterpriseConnectionApiFp = exports.OrganizationEnterpriseConnectionApiAxiosParamCreator = exports.OrganizationCustomRoleApi = exports.OrganizationCustomRoleApiFactory = exports.OrganizationCustomRoleApiFp = void 0;
35
+ exports.VariableMainCallsApi = exports.VariableMainCallsApiFactory = exports.VariableMainCallsApiFp = exports.VariableMainCallsApiAxiosParamCreator = exports.UserSignUpApi = exports.UserSignUpApiFactory = exports.UserSignUpApiFp = exports.UserSignUpApiAxiosParamCreator = exports.TerraformsApi = exports.TerraformsApiFactory = exports.TerraformsApiFp = exports.TerraformsApiAxiosParamCreator = exports.TerraformResourcesApi = exports.TerraformResourcesApiFactory = exports.TerraformResourcesApiFp = exports.TerraformResourcesApiAxiosParamCreator = exports.TerraformMainCallsApi = exports.TerraformMainCallsApiFactory = exports.TerraformMainCallsApiFp = exports.TerraformMainCallsApiAxiosParamCreator = exports.TerraformDeploymentRestrictionApi = exports.TerraformDeploymentRestrictionApiFactory = exports.TerraformDeploymentRestrictionApiFp = exports.TerraformDeploymentRestrictionApiAxiosParamCreator = exports.TerraformDeploymentHistoryApi = exports.TerraformDeploymentHistoryApiFactory = exports.TerraformDeploymentHistoryApiFp = exports.TerraformDeploymentHistoryApiAxiosParamCreator = exports.TerraformConfigurationApi = exports.TerraformConfigurationApiFactory = exports.TerraformConfigurationApiFp = exports.TerraformConfigurationApiAxiosParamCreator = exports.TerraformActionsApi = exports.TerraformActionsApiFactory = exports.TerraformActionsApiFp = exports.TerraformActionsApiAxiosParamCreator = exports.GetIngressDeploymentStatusServiceTypeEnum = exports.ServiceStatusApi = exports.ServiceStatusApiFactory = exports.ServiceStatusApiFp = exports.ServiceStatusApiAxiosParamCreator = exports.ServiceMainCallsApi = exports.ServiceMainCallsApiFactory = exports.ServiceMainCallsApiFp = exports.ServiceMainCallsApiAxiosParamCreator = exports.SecretManagerAccessApi = void 0;
36
36
  const axios_1 = require("axios");
37
37
  // Some imports not used depending on template conditions
38
38
  // @ts-ignore
@@ -8829,6 +8829,115 @@ class BillingApi extends base_1.BaseAPI {
8829
8829
  }
8830
8830
  }
8831
8831
  exports.BillingApi = BillingApi;
8832
+ /**
8833
+ * BlueprintMainCallsApi - axios parameter creator
8834
+ * @export
8835
+ */
8836
+ const BlueprintMainCallsApiAxiosParamCreator = function (configuration) {
8837
+ return {
8838
+ /**
8839
+ * Retrieves the Qovery service catalog from the public GitHub repository (Qovery/service-catalog). The catalog lists all available blueprints that can be deployed.
8840
+ * @summary Get the blueprint service catalog
8841
+ * @param {string} organizationId Organization ID
8842
+ * @param {*} [options] Override http request option.
8843
+ * @throws {RequiredError}
8844
+ */
8845
+ getBlueprintCatalog: (organizationId_1, ...args_1) => __awaiter(this, [organizationId_1, ...args_1], void 0, function* (organizationId, options = {}) {
8846
+ // verify required parameter 'organizationId' is not null or undefined
8847
+ (0, common_1.assertParamExists)('getBlueprintCatalog', 'organizationId', organizationId);
8848
+ const localVarPath = `/organization/{organizationId}/blueprint/catalog`
8849
+ .replace(`{${"organizationId"}}`, encodeURIComponent(String(organizationId)));
8850
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
8851
+ const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
8852
+ let baseOptions;
8853
+ if (configuration) {
8854
+ baseOptions = configuration.baseOptions;
8855
+ }
8856
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
8857
+ const localVarHeaderParameter = {};
8858
+ const localVarQueryParameter = {};
8859
+ // authentication ApiKeyAuth required
8860
+ yield (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "Authorization", configuration);
8861
+ // authentication bearerAuth required
8862
+ // http bearer authentication required
8863
+ yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
8864
+ (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
8865
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
8866
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
8867
+ return {
8868
+ url: (0, common_1.toPathString)(localVarUrlObj),
8869
+ options: localVarRequestOptions,
8870
+ };
8871
+ }),
8872
+ };
8873
+ };
8874
+ exports.BlueprintMainCallsApiAxiosParamCreator = BlueprintMainCallsApiAxiosParamCreator;
8875
+ /**
8876
+ * BlueprintMainCallsApi - functional programming interface
8877
+ * @export
8878
+ */
8879
+ const BlueprintMainCallsApiFp = function (configuration) {
8880
+ const localVarAxiosParamCreator = (0, exports.BlueprintMainCallsApiAxiosParamCreator)(configuration);
8881
+ return {
8882
+ /**
8883
+ * Retrieves the Qovery service catalog from the public GitHub repository (Qovery/service-catalog). The catalog lists all available blueprints that can be deployed.
8884
+ * @summary Get the blueprint service catalog
8885
+ * @param {string} organizationId Organization ID
8886
+ * @param {*} [options] Override http request option.
8887
+ * @throws {RequiredError}
8888
+ */
8889
+ getBlueprintCatalog(organizationId, options) {
8890
+ return __awaiter(this, void 0, void 0, function* () {
8891
+ var _a, _b, _c;
8892
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.getBlueprintCatalog(organizationId, options);
8893
+ const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
8894
+ const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['BlueprintMainCallsApi.getBlueprintCatalog']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
8895
+ return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
8896
+ });
8897
+ },
8898
+ };
8899
+ };
8900
+ exports.BlueprintMainCallsApiFp = BlueprintMainCallsApiFp;
8901
+ /**
8902
+ * BlueprintMainCallsApi - factory interface
8903
+ * @export
8904
+ */
8905
+ const BlueprintMainCallsApiFactory = function (configuration, basePath, axios) {
8906
+ const localVarFp = (0, exports.BlueprintMainCallsApiFp)(configuration);
8907
+ return {
8908
+ /**
8909
+ * Retrieves the Qovery service catalog from the public GitHub repository (Qovery/service-catalog). The catalog lists all available blueprints that can be deployed.
8910
+ * @summary Get the blueprint service catalog
8911
+ * @param {string} organizationId Organization ID
8912
+ * @param {*} [options] Override http request option.
8913
+ * @throws {RequiredError}
8914
+ */
8915
+ getBlueprintCatalog(organizationId, options) {
8916
+ return localVarFp.getBlueprintCatalog(organizationId, options).then((request) => request(axios, basePath));
8917
+ },
8918
+ };
8919
+ };
8920
+ exports.BlueprintMainCallsApiFactory = BlueprintMainCallsApiFactory;
8921
+ /**
8922
+ * BlueprintMainCallsApi - object-oriented interface
8923
+ * @export
8924
+ * @class BlueprintMainCallsApi
8925
+ * @extends {BaseAPI}
8926
+ */
8927
+ class BlueprintMainCallsApi extends base_1.BaseAPI {
8928
+ /**
8929
+ * Retrieves the Qovery service catalog from the public GitHub repository (Qovery/service-catalog). The catalog lists all available blueprints that can be deployed.
8930
+ * @summary Get the blueprint service catalog
8931
+ * @param {string} organizationId Organization ID
8932
+ * @param {*} [options] Override http request option.
8933
+ * @throws {RequiredError}
8934
+ * @memberof BlueprintMainCallsApi
8935
+ */
8936
+ getBlueprintCatalog(organizationId, options) {
8937
+ return (0, exports.BlueprintMainCallsApiFp)(this.configuration).getBlueprintCatalog(organizationId, options).then((request) => request(this.axios, this.basePath));
8938
+ }
8939
+ }
8940
+ exports.BlueprintMainCallsApi = BlueprintMainCallsApi;
8832
8941
  /**
8833
8942
  * CloudProviderApi - axios parameter creator
8834
8943
  * @export
package/dist/esm/api.d.ts CHANGED
@@ -3319,6 +3319,105 @@ export interface BillingStatus {
3319
3319
  */
3320
3320
  'message'?: string;
3321
3321
  }
3322
+ /**
3323
+ *
3324
+ * @export
3325
+ * @interface BlueprintCatalogResponse
3326
+ */
3327
+ export interface BlueprintCatalogResponse {
3328
+ /**
3329
+ *
3330
+ * @type {string}
3331
+ * @memberof BlueprintCatalogResponse
3332
+ */
3333
+ 'version': string;
3334
+ /**
3335
+ *
3336
+ * @type {string}
3337
+ * @memberof BlueprintCatalogResponse
3338
+ */
3339
+ 'generatedAt': string;
3340
+ /**
3341
+ *
3342
+ * @type {Array<BlueprintItem>}
3343
+ * @memberof BlueprintCatalogResponse
3344
+ */
3345
+ 'blueprints': Array<BlueprintItem>;
3346
+ }
3347
+ /**
3348
+ *
3349
+ * @export
3350
+ * @interface BlueprintItem
3351
+ */
3352
+ export interface BlueprintItem {
3353
+ /**
3354
+ *
3355
+ * @type {string}
3356
+ * @memberof BlueprintItem
3357
+ */
3358
+ 'name': string;
3359
+ /**
3360
+ *
3361
+ * @type {string}
3362
+ * @memberof BlueprintItem
3363
+ */
3364
+ 'kind': string;
3365
+ /**
3366
+ *
3367
+ * @type {string}
3368
+ * @memberof BlueprintItem
3369
+ */
3370
+ 'description': string;
3371
+ /**
3372
+ *
3373
+ * @type {string}
3374
+ * @memberof BlueprintItem
3375
+ */
3376
+ 'icon': string;
3377
+ /**
3378
+ *
3379
+ * @type {Array<string>}
3380
+ * @memberof BlueprintItem
3381
+ */
3382
+ 'categories': Array<string>;
3383
+ /**
3384
+ *
3385
+ * @type {string}
3386
+ * @memberof BlueprintItem
3387
+ */
3388
+ 'provider': string;
3389
+ /**
3390
+ *
3391
+ * @type {string}
3392
+ * @memberof BlueprintItem
3393
+ */
3394
+ 'serviceFamily': string;
3395
+ /**
3396
+ *
3397
+ * @type {Array<BlueprintMajorVersion>}
3398
+ * @memberof BlueprintItem
3399
+ */
3400
+ 'majorVersions': Array<BlueprintMajorVersion>;
3401
+ }
3402
+ /**
3403
+ *
3404
+ * @export
3405
+ * @interface BlueprintMajorVersion
3406
+ */
3407
+ export interface BlueprintMajorVersion {
3408
+ /**
3409
+ *
3410
+ * @type {string}
3411
+ * @memberof BlueprintMajorVersion
3412
+ */
3413
+ 'serviceVersion': string;
3414
+ /**
3415
+ *
3416
+ * @type {string}
3417
+ * @memberof BlueprintMajorVersion
3418
+ */
3419
+ 'latestTag': string;
3420
+ }
3322
3421
  /**
3323
3422
  *
3324
3423
  * @export
@@ -26889,6 +26988,65 @@ export declare class BillingApi extends BaseAPI {
26889
26988
  */
26890
26989
  organizationDownloadAllInvoices(organizationId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
26891
26990
  }
26991
+ /**
26992
+ * BlueprintMainCallsApi - axios parameter creator
26993
+ * @export
26994
+ */
26995
+ export declare const BlueprintMainCallsApiAxiosParamCreator: (configuration?: Configuration) => {
26996
+ /**
26997
+ * Retrieves the Qovery service catalog from the public GitHub repository (Qovery/service-catalog). The catalog lists all available blueprints that can be deployed.
26998
+ * @summary Get the blueprint service catalog
26999
+ * @param {string} organizationId Organization ID
27000
+ * @param {*} [options] Override http request option.
27001
+ * @throws {RequiredError}
27002
+ */
27003
+ getBlueprintCatalog: (organizationId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
27004
+ };
27005
+ /**
27006
+ * BlueprintMainCallsApi - functional programming interface
27007
+ * @export
27008
+ */
27009
+ export declare const BlueprintMainCallsApiFp: (configuration?: Configuration) => {
27010
+ /**
27011
+ * Retrieves the Qovery service catalog from the public GitHub repository (Qovery/service-catalog). The catalog lists all available blueprints that can be deployed.
27012
+ * @summary Get the blueprint service catalog
27013
+ * @param {string} organizationId Organization ID
27014
+ * @param {*} [options] Override http request option.
27015
+ * @throws {RequiredError}
27016
+ */
27017
+ getBlueprintCatalog(organizationId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BlueprintCatalogResponse>>;
27018
+ };
27019
+ /**
27020
+ * BlueprintMainCallsApi - factory interface
27021
+ * @export
27022
+ */
27023
+ export declare const BlueprintMainCallsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
27024
+ /**
27025
+ * Retrieves the Qovery service catalog from the public GitHub repository (Qovery/service-catalog). The catalog lists all available blueprints that can be deployed.
27026
+ * @summary Get the blueprint service catalog
27027
+ * @param {string} organizationId Organization ID
27028
+ * @param {*} [options] Override http request option.
27029
+ * @throws {RequiredError}
27030
+ */
27031
+ getBlueprintCatalog(organizationId: string, options?: RawAxiosRequestConfig): AxiosPromise<BlueprintCatalogResponse>;
27032
+ };
27033
+ /**
27034
+ * BlueprintMainCallsApi - object-oriented interface
27035
+ * @export
27036
+ * @class BlueprintMainCallsApi
27037
+ * @extends {BaseAPI}
27038
+ */
27039
+ export declare class BlueprintMainCallsApi extends BaseAPI {
27040
+ /**
27041
+ * Retrieves the Qovery service catalog from the public GitHub repository (Qovery/service-catalog). The catalog lists all available blueprints that can be deployed.
27042
+ * @summary Get the blueprint service catalog
27043
+ * @param {string} organizationId Organization ID
27044
+ * @param {*} [options] Override http request option.
27045
+ * @throws {RequiredError}
27046
+ * @memberof BlueprintMainCallsApi
27047
+ */
27048
+ getBlueprintCatalog(organizationId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BlueprintCatalogResponse, any, {}>>;
27049
+ }
26892
27050
  /**
26893
27051
  * CloudProviderApi - axios parameter creator
26894
27052
  * @export
package/dist/esm/api.js CHANGED
@@ -8752,6 +8752,111 @@ export class BillingApi extends BaseAPI {
8752
8752
  return BillingApiFp(this.configuration).organizationDownloadAllInvoices(organizationId, options).then((request) => request(this.axios, this.basePath));
8753
8753
  }
8754
8754
  }
8755
+ /**
8756
+ * BlueprintMainCallsApi - axios parameter creator
8757
+ * @export
8758
+ */
8759
+ export const BlueprintMainCallsApiAxiosParamCreator = function (configuration) {
8760
+ return {
8761
+ /**
8762
+ * Retrieves the Qovery service catalog from the public GitHub repository (Qovery/service-catalog). The catalog lists all available blueprints that can be deployed.
8763
+ * @summary Get the blueprint service catalog
8764
+ * @param {string} organizationId Organization ID
8765
+ * @param {*} [options] Override http request option.
8766
+ * @throws {RequiredError}
8767
+ */
8768
+ getBlueprintCatalog: (organizationId_1, ...args_1) => __awaiter(this, [organizationId_1, ...args_1], void 0, function* (organizationId, options = {}) {
8769
+ // verify required parameter 'organizationId' is not null or undefined
8770
+ assertParamExists('getBlueprintCatalog', 'organizationId', organizationId);
8771
+ const localVarPath = `/organization/{organizationId}/blueprint/catalog`
8772
+ .replace(`{${"organizationId"}}`, encodeURIComponent(String(organizationId)));
8773
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
8774
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
8775
+ let baseOptions;
8776
+ if (configuration) {
8777
+ baseOptions = configuration.baseOptions;
8778
+ }
8779
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
8780
+ const localVarHeaderParameter = {};
8781
+ const localVarQueryParameter = {};
8782
+ // authentication ApiKeyAuth required
8783
+ yield setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration);
8784
+ // authentication bearerAuth required
8785
+ // http bearer authentication required
8786
+ yield setBearerAuthToObject(localVarHeaderParameter, configuration);
8787
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
8788
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
8789
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
8790
+ return {
8791
+ url: toPathString(localVarUrlObj),
8792
+ options: localVarRequestOptions,
8793
+ };
8794
+ }),
8795
+ };
8796
+ };
8797
+ /**
8798
+ * BlueprintMainCallsApi - functional programming interface
8799
+ * @export
8800
+ */
8801
+ export const BlueprintMainCallsApiFp = function (configuration) {
8802
+ const localVarAxiosParamCreator = BlueprintMainCallsApiAxiosParamCreator(configuration);
8803
+ return {
8804
+ /**
8805
+ * Retrieves the Qovery service catalog from the public GitHub repository (Qovery/service-catalog). The catalog lists all available blueprints that can be deployed.
8806
+ * @summary Get the blueprint service catalog
8807
+ * @param {string} organizationId Organization ID
8808
+ * @param {*} [options] Override http request option.
8809
+ * @throws {RequiredError}
8810
+ */
8811
+ getBlueprintCatalog(organizationId, options) {
8812
+ return __awaiter(this, void 0, void 0, function* () {
8813
+ var _a, _b, _c;
8814
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.getBlueprintCatalog(organizationId, options);
8815
+ const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
8816
+ const localVarOperationServerBasePath = (_c = (_b = operationServerMap['BlueprintMainCallsApi.getBlueprintCatalog']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
8817
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
8818
+ });
8819
+ },
8820
+ };
8821
+ };
8822
+ /**
8823
+ * BlueprintMainCallsApi - factory interface
8824
+ * @export
8825
+ */
8826
+ export const BlueprintMainCallsApiFactory = function (configuration, basePath, axios) {
8827
+ const localVarFp = BlueprintMainCallsApiFp(configuration);
8828
+ return {
8829
+ /**
8830
+ * Retrieves the Qovery service catalog from the public GitHub repository (Qovery/service-catalog). The catalog lists all available blueprints that can be deployed.
8831
+ * @summary Get the blueprint service catalog
8832
+ * @param {string} organizationId Organization ID
8833
+ * @param {*} [options] Override http request option.
8834
+ * @throws {RequiredError}
8835
+ */
8836
+ getBlueprintCatalog(organizationId, options) {
8837
+ return localVarFp.getBlueprintCatalog(organizationId, options).then((request) => request(axios, basePath));
8838
+ },
8839
+ };
8840
+ };
8841
+ /**
8842
+ * BlueprintMainCallsApi - object-oriented interface
8843
+ * @export
8844
+ * @class BlueprintMainCallsApi
8845
+ * @extends {BaseAPI}
8846
+ */
8847
+ export class BlueprintMainCallsApi extends BaseAPI {
8848
+ /**
8849
+ * Retrieves the Qovery service catalog from the public GitHub repository (Qovery/service-catalog). The catalog lists all available blueprints that can be deployed.
8850
+ * @summary Get the blueprint service catalog
8851
+ * @param {string} organizationId Organization ID
8852
+ * @param {*} [options] Override http request option.
8853
+ * @throws {RequiredError}
8854
+ * @memberof BlueprintMainCallsApi
8855
+ */
8856
+ getBlueprintCatalog(organizationId, options) {
8857
+ return BlueprintMainCallsApiFp(this.configuration).getBlueprintCatalog(organizationId, options).then((request) => request(this.axios, this.basePath));
8858
+ }
8859
+ }
8755
8860
  /**
8756
8861
  * CloudProviderApi - axios parameter creator
8757
8862
  * @export
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "qovery-typescript-axios",
3
- "version": "v1.1.897",
3
+ "version": "v1.1.898",
4
4
  "description": "OpenAPI client for qovery-typescript-axios",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {