@northflank/js-client 0.5.0-beta.0 → 0.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -4
- package/dist/cjs/api-client.d.ts +1 -317
- package/dist/cjs/api-client.js +1 -1
- package/dist/esm/api-client.d.ts +1 -317
- package/dist/esm/api-client.js +1 -1
- package/package.json +1 -1
package/dist/esm/api-client.d.ts
CHANGED
|
@@ -2599,106 +2599,6 @@ declare class GetJobContainersEndpoint extends GetApiEndpoint<GetJobContainersRe
|
|
|
2599
2599
|
|
|
2600
2600
|
/** WARNING: Autogenerated Code - do not modify! */
|
|
2601
2601
|
|
|
2602
|
-
declare type GetJobBranchesResult = {
|
|
2603
|
-
/** A list of branches for this repository. */
|
|
2604
|
-
'branches'?: {
|
|
2605
|
-
/** Name of the branch. Example: "main" */
|
|
2606
|
-
'name': string;
|
|
2607
|
-
'id': string;
|
|
2608
|
-
/** Details about the most recent commit on the branch. */
|
|
2609
|
-
'commit': {
|
|
2610
|
-
/** SHA identifier of the commit. Example: "f8aca180e989be62cba71db629d2ede05f2d10c4" */
|
|
2611
|
-
'sha': string;
|
|
2612
|
-
/** Details about the commit author. */
|
|
2613
|
-
'author': {
|
|
2614
|
-
/** The login of the commit author. Example: "northflank" */
|
|
2615
|
-
'login': string;
|
|
2616
|
-
};
|
|
2617
|
-
/** Commit message of the commit. Example: "Initial commit" */
|
|
2618
|
-
'message'?: string;
|
|
2619
|
-
/** Timestamp of the commit. Example: "2021-09-17T14:04:39.000Z" */
|
|
2620
|
-
'date'?: string;
|
|
2621
|
-
};
|
|
2622
|
-
}[];
|
|
2623
|
-
};
|
|
2624
|
-
declare type GetJobBranchesCall = (opts: GetJobBranchesRequest) => Promise<ApiCallResponse<GetJobBranchesResult>>;
|
|
2625
|
-
declare type GetJobBranchesRequest = {
|
|
2626
|
-
parameters: GetJobBranchesParameters;
|
|
2627
|
-
options?: GetJobBranchesOptions;
|
|
2628
|
-
};
|
|
2629
|
-
declare type GetJobBranchesParameters = {
|
|
2630
|
-
/** ID of the project */ 'projectId': string;
|
|
2631
|
-
/** ID of the job */
|
|
2632
|
-
'jobId': string;
|
|
2633
|
-
};
|
|
2634
|
-
declare type GetJobBranchesOptions = {
|
|
2635
|
-
/** The number of results to display per request. Maximum of 100 results per page. */
|
|
2636
|
-
'per_page'?: number;
|
|
2637
|
-
/** The page number to access. */
|
|
2638
|
-
'page'?: number;
|
|
2639
|
-
/** The cursor returned from the previous page of results, used to request the next page. */
|
|
2640
|
-
'cursor'?: string;
|
|
2641
|
-
};
|
|
2642
|
-
/** Gets information about the branches of the given job. */
|
|
2643
|
-
declare class GetJobBranchesEndpoint extends GetApiEndpoint<GetJobBranchesRequest, GetJobBranchesResult> {
|
|
2644
|
-
description: string;
|
|
2645
|
-
withAuth: boolean;
|
|
2646
|
-
endpointUrl: (opts: GetJobBranchesRequest) => string;
|
|
2647
|
-
body: () => undefined;
|
|
2648
|
-
}
|
|
2649
|
-
|
|
2650
|
-
/** WARNING: Autogenerated Code - do not modify! */
|
|
2651
|
-
|
|
2652
|
-
declare type GetJobPullrequestsResult = {
|
|
2653
|
-
/** A list of pull requests for this repository. */
|
|
2654
|
-
'pullRequests'?: {
|
|
2655
|
-
/** ID number of the pull request. Example: "1" */
|
|
2656
|
-
'id': string;
|
|
2657
|
-
/** Status of the pull request. Example: "OPEN" */
|
|
2658
|
-
'state': string;
|
|
2659
|
-
/** Title of the pull request. Example: "Add new feature handling" */
|
|
2660
|
-
'title': string;
|
|
2661
|
-
/** Name of the branch the pull request is merging from. Example: "feature/new-feature" */
|
|
2662
|
-
'source': string;
|
|
2663
|
-
/** Name of the branch the pull request is being merged into. Example: "main" */
|
|
2664
|
-
'destination': string;
|
|
2665
|
-
/** SHA of the most recent commit of the pull request. Example: "4f101d8821aeb3e4f81f95f3e886a2759ba7b9db" */
|
|
2666
|
-
'sha': string;
|
|
2667
|
-
/** The timestamp the pull request was opened. Example: "2021-03-22T11:05:52.000Z" */
|
|
2668
|
-
'created_at': string;
|
|
2669
|
-
/** The timestamp the pull request was last updated at. Example: "2021-05-11T16:05:43.000Z" */
|
|
2670
|
-
'updated_at': string;
|
|
2671
|
-
'html_url': string;
|
|
2672
|
-
}[];
|
|
2673
|
-
};
|
|
2674
|
-
declare type GetJobPullrequestsCall = (opts: GetJobPullrequestsRequest) => Promise<ApiCallResponse<GetJobPullrequestsResult>>;
|
|
2675
|
-
declare type GetJobPullrequestsRequest = {
|
|
2676
|
-
parameters: GetJobPullrequestsParameters;
|
|
2677
|
-
options?: GetJobPullrequestsOptions;
|
|
2678
|
-
};
|
|
2679
|
-
declare type GetJobPullrequestsParameters = {
|
|
2680
|
-
/** ID of the project */ 'projectId': string;
|
|
2681
|
-
/** ID of the job */
|
|
2682
|
-
'jobId': string;
|
|
2683
|
-
};
|
|
2684
|
-
declare type GetJobPullrequestsOptions = {
|
|
2685
|
-
/** The number of results to display per request. Maximum of 100 results per page. */
|
|
2686
|
-
'per_page'?: number;
|
|
2687
|
-
/** The page number to access. */
|
|
2688
|
-
'page'?: number;
|
|
2689
|
-
/** The cursor returned from the previous page of results, used to request the next page. */
|
|
2690
|
-
'cursor'?: string;
|
|
2691
|
-
};
|
|
2692
|
-
/** Gets information about the pull-requests of the given job. */
|
|
2693
|
-
declare class GetJobPullrequestsEndpoint extends GetApiEndpoint<GetJobPullrequestsRequest, GetJobPullrequestsResult> {
|
|
2694
|
-
description: string;
|
|
2695
|
-
withAuth: boolean;
|
|
2696
|
-
endpointUrl: (opts: GetJobPullrequestsRequest) => string;
|
|
2697
|
-
body: () => undefined;
|
|
2698
|
-
}
|
|
2699
|
-
|
|
2700
|
-
/** WARNING: Autogenerated Code - do not modify! */
|
|
2701
|
-
|
|
2702
2602
|
declare type ListRegistrycredentialsResult = {
|
|
2703
2603
|
/** An array of credentials saved to this account. */
|
|
2704
2604
|
'credentials': {
|
|
@@ -4943,210 +4843,6 @@ declare class GetServiceContainersEndpoint extends GetApiEndpoint<GetServiceCont
|
|
|
4943
4843
|
|
|
4944
4844
|
/** WARNING: Autogenerated Code - do not modify! */
|
|
4945
4845
|
|
|
4946
|
-
declare type GetServiceBranchesResult = {
|
|
4947
|
-
/** A list of branches for this repository. */
|
|
4948
|
-
'branches'?: {
|
|
4949
|
-
/** Name of the branch. Example: "main" */
|
|
4950
|
-
'name': string;
|
|
4951
|
-
'id': string;
|
|
4952
|
-
/** Details about the most recent commit on the branch. */
|
|
4953
|
-
'commit': {
|
|
4954
|
-
/** SHA identifier of the commit. Example: "f8aca180e989be62cba71db629d2ede05f2d10c4" */
|
|
4955
|
-
'sha': string;
|
|
4956
|
-
/** Details about the commit author. */
|
|
4957
|
-
'author': {
|
|
4958
|
-
/** The login of the commit author. Example: "northflank" */
|
|
4959
|
-
'login': string;
|
|
4960
|
-
};
|
|
4961
|
-
/** Commit message of the commit. Example: "Initial commit" */
|
|
4962
|
-
'message'?: string;
|
|
4963
|
-
/** Timestamp of the commit. Example: "2021-09-17T14:04:39.000Z" */
|
|
4964
|
-
'date'?: string;
|
|
4965
|
-
};
|
|
4966
|
-
}[];
|
|
4967
|
-
};
|
|
4968
|
-
declare type GetServiceBranchesCall = (opts: GetServiceBranchesRequest) => Promise<ApiCallResponse<GetServiceBranchesResult>>;
|
|
4969
|
-
declare type GetServiceBranchesRequest = {
|
|
4970
|
-
parameters: GetServiceBranchesParameters;
|
|
4971
|
-
options?: GetServiceBranchesOptions;
|
|
4972
|
-
};
|
|
4973
|
-
declare type GetServiceBranchesParameters = {
|
|
4974
|
-
/** ID of the project */ 'projectId': string;
|
|
4975
|
-
/** ID of the service */
|
|
4976
|
-
'serviceId': string;
|
|
4977
|
-
};
|
|
4978
|
-
declare type GetServiceBranchesOptions = {
|
|
4979
|
-
/** The number of results to display per request. Maximum of 100 results per page. */
|
|
4980
|
-
'per_page'?: number;
|
|
4981
|
-
/** The page number to access. */
|
|
4982
|
-
'page'?: number;
|
|
4983
|
-
/** The cursor returned from the previous page of results, used to request the next page. */
|
|
4984
|
-
'cursor'?: string;
|
|
4985
|
-
};
|
|
4986
|
-
/** Gets information about the branches of the given service. */
|
|
4987
|
-
declare class GetServiceBranchesEndpoint extends GetApiEndpoint<GetServiceBranchesRequest, GetServiceBranchesResult> {
|
|
4988
|
-
description: string;
|
|
4989
|
-
withAuth: boolean;
|
|
4990
|
-
endpointUrl: (opts: GetServiceBranchesRequest) => string;
|
|
4991
|
-
body: () => undefined;
|
|
4992
|
-
}
|
|
4993
|
-
|
|
4994
|
-
/** WARNING: Autogenerated Code - do not modify! */
|
|
4995
|
-
|
|
4996
|
-
declare type GetServicePullrequestsResult = {
|
|
4997
|
-
/** A list of pull requests for this repository. */
|
|
4998
|
-
'pullRequests'?: {
|
|
4999
|
-
/** ID number of the pull request. Example: "1" */
|
|
5000
|
-
'id': string;
|
|
5001
|
-
/** Status of the pull request. Example: "OPEN" */
|
|
5002
|
-
'state': string;
|
|
5003
|
-
/** Title of the pull request. Example: "Add new feature handling" */
|
|
5004
|
-
'title': string;
|
|
5005
|
-
/** Name of the branch the pull request is merging from. Example: "feature/new-feature" */
|
|
5006
|
-
'source': string;
|
|
5007
|
-
/** Name of the branch the pull request is being merged into. Example: "main" */
|
|
5008
|
-
'destination': string;
|
|
5009
|
-
/** SHA of the most recent commit of the pull request. Example: "4f101d8821aeb3e4f81f95f3e886a2759ba7b9db" */
|
|
5010
|
-
'sha': string;
|
|
5011
|
-
/** The timestamp the pull request was opened. Example: "2021-03-22T11:05:52.000Z" */
|
|
5012
|
-
'created_at': string;
|
|
5013
|
-
/** The timestamp the pull request was last updated at. Example: "2021-05-11T16:05:43.000Z" */
|
|
5014
|
-
'updated_at': string;
|
|
5015
|
-
'html_url': string;
|
|
5016
|
-
}[];
|
|
5017
|
-
};
|
|
5018
|
-
declare type GetServicePullrequestsCall = (opts: GetServicePullrequestsRequest) => Promise<ApiCallResponse<GetServicePullrequestsResult>>;
|
|
5019
|
-
declare type GetServicePullrequestsRequest = {
|
|
5020
|
-
parameters: GetServicePullrequestsParameters;
|
|
5021
|
-
options?: GetServicePullrequestsOptions;
|
|
5022
|
-
};
|
|
5023
|
-
declare type GetServicePullrequestsParameters = {
|
|
5024
|
-
/** ID of the project */ 'projectId': string;
|
|
5025
|
-
/** ID of the service */
|
|
5026
|
-
'serviceId': string;
|
|
5027
|
-
};
|
|
5028
|
-
declare type GetServicePullrequestsOptions = {
|
|
5029
|
-
/** The number of results to display per request. Maximum of 100 results per page. */
|
|
5030
|
-
'per_page'?: number;
|
|
5031
|
-
/** The page number to access. */
|
|
5032
|
-
'page'?: number;
|
|
5033
|
-
/** The cursor returned from the previous page of results, used to request the next page. */
|
|
5034
|
-
'cursor'?: string;
|
|
5035
|
-
};
|
|
5036
|
-
/** Gets information about the pull-requests of the given service. */
|
|
5037
|
-
declare class GetServicePullrequestsEndpoint extends GetApiEndpoint<GetServicePullrequestsRequest, GetServicePullrequestsResult> {
|
|
5038
|
-
description: string;
|
|
5039
|
-
withAuth: boolean;
|
|
5040
|
-
endpointUrl: (opts: GetServicePullrequestsRequest) => string;
|
|
5041
|
-
body: () => undefined;
|
|
5042
|
-
}
|
|
5043
|
-
|
|
5044
|
-
/** WARNING: Autogenerated Code - do not modify! */
|
|
5045
|
-
|
|
5046
|
-
declare type ListReposResult = {
|
|
5047
|
-
/** A list of accessible repositories. */
|
|
5048
|
-
'repos'?: {
|
|
5049
|
-
/** Version control provider of the repository. Example: "github" */
|
|
5050
|
-
'vcsService': 'bitbucket' | 'gitlab' | 'github' | 'self-hosted';
|
|
5051
|
-
/** If `vcsService` is `self-hosted`, the ID of the self-hosted provider. */
|
|
5052
|
-
'selfHostedVcsId'?: string;
|
|
5053
|
-
/** The ID of the repository, according to the version control provider. Example: 123456789 */
|
|
5054
|
-
'id': any;
|
|
5055
|
-
/** The name of the repository. Example: "gatsby-with-northflank" */
|
|
5056
|
-
'name': string;
|
|
5057
|
-
/** The full name of the repository. Example: "northflank/gatsby-with-northflank" */
|
|
5058
|
-
'full_name': string;
|
|
5059
|
-
/** The url of the repository. Example: "https://github.com/northflank/gatsby-with-northflank" */
|
|
5060
|
-
'url': string;
|
|
5061
|
-
/** Details about the repository owner. */
|
|
5062
|
-
'owner': {
|
|
5063
|
-
/** The login of the repository owner. Example: "northflank" */
|
|
5064
|
-
'login': string;
|
|
5065
|
-
};
|
|
5066
|
-
/** The login of the linked version control account that can access this repository. Example: "example-user" */
|
|
5067
|
-
'accountLogin': string;
|
|
5068
|
-
}[];
|
|
5069
|
-
};
|
|
5070
|
-
declare type ListReposCall = (opts: ListReposRequest) => Promise<ApiCallResponse<ListReposResult>>;
|
|
5071
|
-
declare type ListReposRequest = {
|
|
5072
|
-
options?: ListReposOptions;
|
|
5073
|
-
};
|
|
5074
|
-
declare type ListReposOptions = {
|
|
5075
|
-
/** The number of results to display per request. Maximum of 100 results per page. */
|
|
5076
|
-
'per_page'?: number;
|
|
5077
|
-
/** The page number to access. */
|
|
5078
|
-
'page'?: number;
|
|
5079
|
-
/** The cursor returned from the previous page of results, used to request the next page. */
|
|
5080
|
-
'cursor'?: string;
|
|
5081
|
-
/** If provided, only returns repositories belonging to this version control provider. */
|
|
5082
|
-
'vcs_service'?: string;
|
|
5083
|
-
/** If provided, only returns repositories belonging to this self-hosted version control provider. */
|
|
5084
|
-
'self_hosted_vcs_id'?: string;
|
|
5085
|
-
/** If provided, only returns repositories that can be accessed by the linked version control account with this name. */
|
|
5086
|
-
'account_login'?: string;
|
|
5087
|
-
};
|
|
5088
|
-
/** Gets a list of repositories accessible to this account */
|
|
5089
|
-
declare class ListReposEndpoint extends GetApiEndpoint<ListReposRequest, ListReposResult> {
|
|
5090
|
-
description: string;
|
|
5091
|
-
withAuth: boolean;
|
|
5092
|
-
endpointUrl: (opts: ListReposRequest) => string;
|
|
5093
|
-
body: () => undefined;
|
|
5094
|
-
}
|
|
5095
|
-
|
|
5096
|
-
/** WARNING: Autogenerated Code - do not modify! */
|
|
5097
|
-
|
|
5098
|
-
declare type ListBranchesResult = {
|
|
5099
|
-
/** A list of branches for this repository. */
|
|
5100
|
-
'branches'?: {
|
|
5101
|
-
/** Name of the branch. Example: "main" */
|
|
5102
|
-
'name': string;
|
|
5103
|
-
'id': string;
|
|
5104
|
-
/** Details about the most recent commit on the branch. */
|
|
5105
|
-
'commit': {
|
|
5106
|
-
/** SHA identifier of the commit. Example: "f8aca180e989be62cba71db629d2ede05f2d10c4" */
|
|
5107
|
-
'sha': string;
|
|
5108
|
-
/** Details about the commit author. */
|
|
5109
|
-
'author': {
|
|
5110
|
-
/** The login of the commit author. Example: "northflank" */
|
|
5111
|
-
'login': string;
|
|
5112
|
-
};
|
|
5113
|
-
/** Commit message of the commit. Example: "Initial commit" */
|
|
5114
|
-
'message'?: string;
|
|
5115
|
-
/** Timestamp of the commit. Example: "2021-09-17T14:04:39.000Z" */
|
|
5116
|
-
'date'?: string;
|
|
5117
|
-
};
|
|
5118
|
-
}[];
|
|
5119
|
-
};
|
|
5120
|
-
declare type ListBranchesCall = (opts: ListBranchesRequest) => Promise<ApiCallResponse<ListBranchesResult>>;
|
|
5121
|
-
declare type ListBranchesRequest = {
|
|
5122
|
-
parameters: ListBranchesParameters;
|
|
5123
|
-
options?: ListBranchesOptions;
|
|
5124
|
-
};
|
|
5125
|
-
declare type ListBranchesParameters = {
|
|
5126
|
-
/** Version control provider of the repository */ 'vcsService': string;
|
|
5127
|
-
/** Name of the owner of the repository */
|
|
5128
|
-
'repositoryOwner': string;
|
|
5129
|
-
/** Name of the repository */
|
|
5130
|
-
'repositoryName': string;
|
|
5131
|
-
};
|
|
5132
|
-
declare type ListBranchesOptions = {
|
|
5133
|
-
/** The number of results to display per request. Maximum of 100 results per page. */
|
|
5134
|
-
'per_page'?: number;
|
|
5135
|
-
/** The page number to access. */
|
|
5136
|
-
'page'?: number;
|
|
5137
|
-
/** The cursor returned from the previous page of results, used to request the next page. */
|
|
5138
|
-
'cursor'?: string;
|
|
5139
|
-
};
|
|
5140
|
-
/** Gets a list of branches for the repo */
|
|
5141
|
-
declare class ListBranchesEndpoint extends GetApiEndpoint<ListBranchesRequest, ListBranchesResult> {
|
|
5142
|
-
description: string;
|
|
5143
|
-
withAuth: boolean;
|
|
5144
|
-
endpointUrl: (opts: ListBranchesRequest) => string;
|
|
5145
|
-
body: () => undefined;
|
|
5146
|
-
}
|
|
5147
|
-
|
|
5148
|
-
/** WARNING: Autogenerated Code - do not modify! */
|
|
5149
|
-
|
|
5150
4846
|
declare type ListVolumesResult = {
|
|
5151
4847
|
/** Identifier for the volume Example: "example-volume" */
|
|
5152
4848
|
'id': string;
|
|
@@ -5619,8 +5315,6 @@ declare class ApiClient {
|
|
|
5619
5315
|
vcs: ListVcsCall;
|
|
5620
5316
|
secrets: ListSecretsCall;
|
|
5621
5317
|
services: ListServicesCall;
|
|
5622
|
-
repos: ListReposCall;
|
|
5623
|
-
branches: ListBranchesCall;
|
|
5624
5318
|
volumes: ListVolumesCall;
|
|
5625
5319
|
};
|
|
5626
5320
|
create: {
|
|
@@ -5662,8 +5356,6 @@ declare class ApiClient {
|
|
|
5662
5356
|
environmentDetails: GetJobEnvironmentdetailsCall;
|
|
5663
5357
|
deployment: GetJobDeploymentCall;
|
|
5664
5358
|
containers: GetJobContainersCall;
|
|
5665
|
-
branches: GetJobBranchesCall;
|
|
5666
|
-
pullRequests: GetJobPullrequestsCall;
|
|
5667
5359
|
};
|
|
5668
5360
|
registryCredentials: GetRegistrycredentialsCall;
|
|
5669
5361
|
domain: GetDomainCall;
|
|
@@ -5678,8 +5370,6 @@ declare class ApiClient {
|
|
|
5678
5370
|
healthChecks: GetServiceHealthchecksCall;
|
|
5679
5371
|
builds: GetServiceBuildsCall;
|
|
5680
5372
|
containers: GetServiceContainersCall;
|
|
5681
|
-
branches: GetServiceBranchesCall;
|
|
5682
|
-
pullRequests: GetServicePullrequestsCall;
|
|
5683
5373
|
buildArguments: GetServiceBuildargumentsCall;
|
|
5684
5374
|
buildArgumentDetails: GetServiceBuildargumentdetailsCall;
|
|
5685
5375
|
environmentVariables: GetServiceEnvironmentvariablesCall;
|
|
@@ -5816,8 +5506,6 @@ declare class ApiClient {
|
|
|
5816
5506
|
vcs: ListVcsEndpoint;
|
|
5817
5507
|
secrets: ListSecretsEndpoint;
|
|
5818
5508
|
services: ListServicesEndpoint;
|
|
5819
|
-
repos: ListReposEndpoint;
|
|
5820
|
-
branches: ListBranchesEndpoint;
|
|
5821
5509
|
volumes: ListVolumesEndpoint;
|
|
5822
5510
|
};
|
|
5823
5511
|
create: {
|
|
@@ -5859,8 +5547,6 @@ declare class ApiClient {
|
|
|
5859
5547
|
environmentDetails: GetJobEnvironmentdetailsEndpoint;
|
|
5860
5548
|
deployment: GetJobDeploymentEndpoint;
|
|
5861
5549
|
containers: GetJobContainersEndpoint;
|
|
5862
|
-
branches: GetJobBranchesEndpoint;
|
|
5863
|
-
pullRequests: GetJobPullrequestsEndpoint;
|
|
5864
5550
|
};
|
|
5865
5551
|
registryCredentials: GetRegistrycredentialsEndpoint;
|
|
5866
5552
|
domain: GetDomainEndpoint;
|
|
@@ -5875,8 +5561,6 @@ declare class ApiClient {
|
|
|
5875
5561
|
healthChecks: GetServiceHealthchecksEndpoint;
|
|
5876
5562
|
builds: GetServiceBuildsEndpoint;
|
|
5877
5563
|
containers: GetServiceContainersEndpoint;
|
|
5878
|
-
branches: GetServiceBranchesEndpoint;
|
|
5879
|
-
pullRequests: GetServicePullrequestsEndpoint;
|
|
5880
5564
|
buildArguments: GetServiceBuildargumentsEndpoint;
|
|
5881
5565
|
buildArgumentDetails: GetServiceBuildargumentdetailsEndpoint;
|
|
5882
5566
|
environmentVariables: GetServiceEnvironmentvariablesEndpoint;
|
|
@@ -6010,4 +5694,4 @@ declare type ApiClientOpts = {
|
|
|
6010
5694
|
customUserAgent?: string;
|
|
6011
5695
|
};
|
|
6012
5696
|
|
|
6013
|
-
export { AbortAddonBackupEndpoint, AbortAddonRestoreEndpoint, AbortJobBuildEndpoint, AbortJobRunEndpoint, AbortServiceBuildEndpoint, AddDomainSubdomainEndpoint, AddRegistrycredentialsEndpoint, ApiCallError, ApiCallResponse, ApiClient, ApiClientContext, ApiClientContextProvider, ApiClientContextWrapper, ApiClientFileContextProvider, ApiClientInMemoryContextProvider, ApiClientOpts, ApiEndpoint, AssignSubdomainServiceEndpoint, AttachVolumeEndpoint, BackupAddonEndpoint, CreateAddonEndpoint, CreateDomainEndpoint, CreateJobCronEndpoint, CreateJobManualEndpoint, CreateProjectEndpoint, CreateSecretEndpoint, CreateServiceBuildEndpoint, CreateServiceCombinedEndpoint, CreateServiceDeploymentEndpoint, CreateVolumeEndpoint, DeleteAddonEndpoint, DeleteApiEndpoint, DeleteBackupEndpoint, DeleteDomainEndpoint, DeleteJobEndpoint, DeleteProjectEndpoint, DeleteRegistrycredentialsEndpoint, DeleteSecretEndpoint, DeleteSecretlinkEndpoint, DeleteServiceEndpoint, DeleteSubdomainEndpoint, DeleteVolumeEndpoint, DetachVolumeEndpoint, GetAddonBackupDownloadEndpoint, GetAddonBackupEndpoint, GetAddonBackupsEndpoint, GetAddonContainersEndpoint, GetAddonCredentialsEndpoint, GetAddonEndpoint, GetAddonTypesEndpoint, GetAddonVersionEndpoint, GetApiEndpoint, GetDnsidEndpoint, GetDomainEndpoint,
|
|
5697
|
+
export { AbortAddonBackupEndpoint, AbortAddonRestoreEndpoint, AbortJobBuildEndpoint, AbortJobRunEndpoint, AbortServiceBuildEndpoint, AddDomainSubdomainEndpoint, AddRegistrycredentialsEndpoint, ApiCallError, ApiCallResponse, ApiClient, ApiClientContext, ApiClientContextProvider, ApiClientContextWrapper, ApiClientFileContextProvider, ApiClientInMemoryContextProvider, ApiClientOpts, ApiEndpoint, AssignSubdomainServiceEndpoint, AttachVolumeEndpoint, BackupAddonEndpoint, CreateAddonEndpoint, CreateDomainEndpoint, CreateJobCronEndpoint, CreateJobManualEndpoint, CreateProjectEndpoint, CreateSecretEndpoint, CreateServiceBuildEndpoint, CreateServiceCombinedEndpoint, CreateServiceDeploymentEndpoint, CreateVolumeEndpoint, DeleteAddonEndpoint, DeleteApiEndpoint, DeleteBackupEndpoint, DeleteDomainEndpoint, DeleteJobEndpoint, DeleteProjectEndpoint, DeleteRegistrycredentialsEndpoint, DeleteSecretEndpoint, DeleteSecretlinkEndpoint, DeleteServiceEndpoint, DeleteSubdomainEndpoint, DeleteVolumeEndpoint, DetachVolumeEndpoint, GetAddonBackupDownloadEndpoint, GetAddonBackupEndpoint, GetAddonBackupsEndpoint, GetAddonContainersEndpoint, GetAddonCredentialsEndpoint, GetAddonEndpoint, GetAddonTypesEndpoint, GetAddonVersionEndpoint, GetApiEndpoint, GetDnsidEndpoint, GetDomainEndpoint, GetJobBuildargumentdetailsEndpoint, GetJobBuildargumentsEndpoint, GetJobBuildsEndpoint, GetJobContainersEndpoint, GetJobDeploymentEndpoint, GetJobEndpoint, GetJobEnvironmentEndpoint, GetJobEnvironmentdetailsEndpoint, GetJobHealthchecksEndpoint, GetJobRunEndpoint, GetJobRunsEndpoint, GetProjectEndpoint, GetRegistrycredentialsEndpoint, GetSecretEndpoint, GetSecretdetailsEndpoint, GetSecretlinkEndpoint, GetServiceBuildargumentdetailsEndpoint, GetServiceBuildargumentsEndpoint, GetServiceBuildsEndpoint, GetServiceContainersEndpoint, GetServiceDeploymentEndpoint, GetServiceEndpoint, GetServiceEnvironmentvariabledetailsEndpoint, GetServiceEnvironmentvariablesEndpoint, GetServiceHealthchecksEndpoint, GetServicePortsEndpoint, GetSubdomainEndpoint, GetVolumeEndpoint, ImportAddonBackupEndpoint, ListAddonsEndpoint, ListDomainsEndpoint, ListJobsEndpoint, ListPlansEndpoint, ListProjectsEndpoint, ListRegionsEndpoint, ListRegistrycredentialsEndpoint, ListSecretsEndpoint, ListServicesEndpoint, ListVcsEndpoint, ListVolumesEndpoint, NorthflankPortForwarder, PauseAddonEndpoint, PauseServiceEndpoint, PortForwardingInfo, PortForwardingResult, PostApiEndpoint, RestartAddonEndpoint, RestartServiceEndpoint, RestoreAddonBackupEndpoint, ResumeAddonEndpoint, ResumeServiceEndpoint, ScaleAddonEndpoint, ScaleServiceEndpoint, StartJobBuildEndpoint, StartJobRunEndpoint, StartServiceBuildEndpoint, UnassignSubdomainEndpoint, UpdateAddonNetworksettingsEndpoint, UpdateAddonSecurityEndpoint, UpdateAddonVersionEndpoint, UpdateJobBuildargumentsEndpoint, UpdateJobBuildoptionsEndpoint, UpdateJobCmdoverrideEndpoint, UpdateJobDeploymentEndpoint, UpdateJobEnvironmentEndpoint, UpdateJobHealthchecksEndpoint, UpdateJobSettingsEndpoint, UpdateRegistrycredentialsEndpoint, UpdateSecretEndpoint, UpdateSecretlinkEndpoint, UpdateServiceBuildargumentsEndpoint, UpdateServiceBuildoptionsEndpoint, UpdateServiceCmdoverrideEndpoint, UpdateServiceDeploymentEndpoint, UpdateServiceEnvironmentvariablesEndpoint, UpdateServiceHealthchecksEndpoint, UpdateServicePortsEndpoint, UpdateVolumeEndpoint, VerifyDomainEndpoint, VerifySubdomainEndpoint };
|