@northflank/js-client 0.5.4 → 0.5.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/api-client.d.ts +4 -10
- package/dist/esm/api-client.d.ts +4 -10
- package/package.json +1 -1
package/dist/cjs/api-client.d.ts
CHANGED
|
@@ -1860,11 +1860,8 @@ declare type StartJobRunData = {
|
|
|
1860
1860
|
/** An object containing the environment variables overrides to use when running the job. Keys must only contain letters and numbers separated with underscores, may not start with a number Example: {"VARIABLE_1":"abcdef","VARIABLE_2":"12345"} */
|
|
1861
1861
|
'runtimeEnvironment'?: any;
|
|
1862
1862
|
'deployment'?: {
|
|
1863
|
-
/**
|
|
1864
|
-
'
|
|
1865
|
-
/** The CMD override to use when running the job. Example: "nginx -g" */
|
|
1866
|
-
'cmd'?: string;
|
|
1867
|
-
};
|
|
1863
|
+
/** The CMD override to use when running the job. Example: "nginx -g" */
|
|
1864
|
+
'cmdOverride'?: string;
|
|
1868
1865
|
/** Optional: Specify the commit to run */
|
|
1869
1866
|
'internal'?: {
|
|
1870
1867
|
/** ID of the build service to deploy Example: "example-build-service" */
|
|
@@ -1875,11 +1872,8 @@ declare type StartJobRunData = {
|
|
|
1875
1872
|
'buildSHA'?: any;
|
|
1876
1873
|
};
|
|
1877
1874
|
} | {
|
|
1878
|
-
/**
|
|
1879
|
-
'
|
|
1880
|
-
/** The CMD override to use when running the job. Example: "nginx -g" */
|
|
1881
|
-
'cmd'?: string;
|
|
1882
|
-
};
|
|
1875
|
+
/** The CMD override to use when running the job. Example: "nginx -g" */
|
|
1876
|
+
'cmdOverride'?: string;
|
|
1883
1877
|
/** Optional: Specify the external image to run */
|
|
1884
1878
|
'external'?: {
|
|
1885
1879
|
/** Image to be deployed. When not deploying from Dockerhub the URL must be specified. Example: "nginx:latest" */
|
package/dist/esm/api-client.d.ts
CHANGED
|
@@ -1860,11 +1860,8 @@ declare type StartJobRunData = {
|
|
|
1860
1860
|
/** An object containing the environment variables overrides to use when running the job. Keys must only contain letters and numbers separated with underscores, may not start with a number Example: {"VARIABLE_1":"abcdef","VARIABLE_2":"12345"} */
|
|
1861
1861
|
'runtimeEnvironment'?: any;
|
|
1862
1862
|
'deployment'?: {
|
|
1863
|
-
/**
|
|
1864
|
-
'
|
|
1865
|
-
/** The CMD override to use when running the job. Example: "nginx -g" */
|
|
1866
|
-
'cmd'?: string;
|
|
1867
|
-
};
|
|
1863
|
+
/** The CMD override to use when running the job. Example: "nginx -g" */
|
|
1864
|
+
'cmdOverride'?: string;
|
|
1868
1865
|
/** Optional: Specify the commit to run */
|
|
1869
1866
|
'internal'?: {
|
|
1870
1867
|
/** ID of the build service to deploy Example: "example-build-service" */
|
|
@@ -1875,11 +1872,8 @@ declare type StartJobRunData = {
|
|
|
1875
1872
|
'buildSHA'?: any;
|
|
1876
1873
|
};
|
|
1877
1874
|
} | {
|
|
1878
|
-
/**
|
|
1879
|
-
'
|
|
1880
|
-
/** The CMD override to use when running the job. Example: "nginx -g" */
|
|
1881
|
-
'cmd'?: string;
|
|
1882
|
-
};
|
|
1875
|
+
/** The CMD override to use when running the job. Example: "nginx -g" */
|
|
1876
|
+
'cmdOverride'?: string;
|
|
1883
1877
|
/** Optional: Specify the external image to run */
|
|
1884
1878
|
'external'?: {
|
|
1885
1879
|
/** Image to be deployed. When not deploying from Dockerhub the URL must be specified. Example: "nginx:latest" */
|