@northflank/js-client 0.5.6 → 0.5.7

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.
@@ -1567,6 +1567,8 @@ declare type CreateJobManualData = {
1567
1567
  'branch'?: string;
1568
1568
  /** Commit SHA to deploy, or 'latest' to deploy the most recent commit Example: "latest" */
1569
1569
  'buildSHA'?: any;
1570
+ /** ID of the build that should be deployed Example: "premium-guide-6393" */
1571
+ 'buildId'?: string;
1570
1572
  };
1571
1573
  } | any;
1572
1574
  'buildConfiguration'?: {
@@ -1745,6 +1747,8 @@ declare type CreateJobCronData = {
1745
1747
  'branch'?: string;
1746
1748
  /** Commit SHA to deploy, or 'latest' to deploy the most recent commit Example: "latest" */
1747
1749
  'buildSHA'?: any;
1750
+ /** ID of the build that should be deployed Example: "premium-guide-6393" */
1751
+ 'buildId'?: string;
1748
1752
  };
1749
1753
  } | any;
1750
1754
  'buildConfiguration'?: {
@@ -1870,6 +1874,8 @@ declare type StartJobRunData = {
1870
1874
  'branch'?: string;
1871
1875
  /** Commit SHA to deploy, or 'latest' to deploy the most recent commit Example: "latest" */
1872
1876
  'buildSHA'?: any;
1877
+ /** ID of the build that should be deployed Example: "premium-guide-6393" */
1878
+ 'buildId'?: string;
1873
1879
  };
1874
1880
  } | {
1875
1881
  /** The CMD override to use when running the job. Example: "nginx -g" */
@@ -2574,6 +2580,8 @@ declare type UpdateJobDeploymentData = {
2574
2580
  'branch'?: string;
2575
2581
  /** Commit SHA to deploy, or 'latest' to deploy the most recent commit Example: "latest" */
2576
2582
  'buildSHA'?: any;
2583
+ /** ID of the build that should be deployed Example: "premium-guide-6393" */
2584
+ 'buildId'?: string;
2577
2585
  };
2578
2586
  };
2579
2587
  /** Updates the deployment settings of the given job. */
@@ -4475,6 +4483,8 @@ declare type UpdateServiceDeploymentData = {
4475
4483
  'branch'?: string;
4476
4484
  /** Commit SHA to deploy, or 'latest' to deploy the most recent commit Example: "latest" */
4477
4485
  'buildSHA'?: any;
4486
+ /** ID of the build that should be deployed Example: "premium-guide-6393" */
4487
+ 'buildId'?: string;
4478
4488
  };
4479
4489
  };
4480
4490
  /** Updates the deployment settings of the given service. */
@@ -1567,6 +1567,8 @@ declare type CreateJobManualData = {
1567
1567
  'branch'?: string;
1568
1568
  /** Commit SHA to deploy, or 'latest' to deploy the most recent commit Example: "latest" */
1569
1569
  'buildSHA'?: any;
1570
+ /** ID of the build that should be deployed Example: "premium-guide-6393" */
1571
+ 'buildId'?: string;
1570
1572
  };
1571
1573
  } | any;
1572
1574
  'buildConfiguration'?: {
@@ -1745,6 +1747,8 @@ declare type CreateJobCronData = {
1745
1747
  'branch'?: string;
1746
1748
  /** Commit SHA to deploy, or 'latest' to deploy the most recent commit Example: "latest" */
1747
1749
  'buildSHA'?: any;
1750
+ /** ID of the build that should be deployed Example: "premium-guide-6393" */
1751
+ 'buildId'?: string;
1748
1752
  };
1749
1753
  } | any;
1750
1754
  'buildConfiguration'?: {
@@ -1870,6 +1874,8 @@ declare type StartJobRunData = {
1870
1874
  'branch'?: string;
1871
1875
  /** Commit SHA to deploy, or 'latest' to deploy the most recent commit Example: "latest" */
1872
1876
  'buildSHA'?: any;
1877
+ /** ID of the build that should be deployed Example: "premium-guide-6393" */
1878
+ 'buildId'?: string;
1873
1879
  };
1874
1880
  } | {
1875
1881
  /** The CMD override to use when running the job. Example: "nginx -g" */
@@ -2574,6 +2580,8 @@ declare type UpdateJobDeploymentData = {
2574
2580
  'branch'?: string;
2575
2581
  /** Commit SHA to deploy, or 'latest' to deploy the most recent commit Example: "latest" */
2576
2582
  'buildSHA'?: any;
2583
+ /** ID of the build that should be deployed Example: "premium-guide-6393" */
2584
+ 'buildId'?: string;
2577
2585
  };
2578
2586
  };
2579
2587
  /** Updates the deployment settings of the given job. */
@@ -4475,6 +4483,8 @@ declare type UpdateServiceDeploymentData = {
4475
4483
  'branch'?: string;
4476
4484
  /** Commit SHA to deploy, or 'latest' to deploy the most recent commit Example: "latest" */
4477
4485
  'buildSHA'?: any;
4486
+ /** ID of the build that should be deployed Example: "premium-guide-6393" */
4487
+ 'buildId'?: string;
4478
4488
  };
4479
4489
  };
4480
4490
  /** Updates the deployment settings of the given service. */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@northflank/js-client",
3
- "version": "0.5.6",
3
+ "version": "0.5.7",
4
4
  "license": "MIT",
5
5
  "author": "Marco Suter",
6
6
  "main": "dist/cjs/api-client.js",