@northflank/js-client 0.7.24 → 0.7.25
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 +109 -1
- package/dist/cjs/api-client.js +1 -1
- package/dist/esm/api-client.d.ts +109 -1
- package/dist/esm/api-client.js +1 -1
- package/package.json +4 -4
package/dist/cjs/api-client.d.ts
CHANGED
|
@@ -1270,7 +1270,7 @@ declare class GetAddonTypesEndpoint extends GetApiEndpoint<GetAddonTypesRequest,
|
|
|
1270
1270
|
|
|
1271
1271
|
type ListBackupdestinationsResult = {
|
|
1272
1272
|
/** List of backup destinations. */
|
|
1273
|
-
'backupDestinations'
|
|
1273
|
+
'backupDestinations': {
|
|
1274
1274
|
/** The name of the backup destination. Example: "Example Backup Destination" */
|
|
1275
1275
|
'name': string;
|
|
1276
1276
|
'description'?: string;
|
|
@@ -9219,6 +9219,10 @@ type CreateJobCronResult = {
|
|
|
9219
9219
|
'dockerWorkDir': string;
|
|
9220
9220
|
/** Should intermediate image layers be cached? */
|
|
9221
9221
|
'useCache'?: boolean;
|
|
9222
|
+
'buildkit'?: {
|
|
9223
|
+
'useInternalCache'?: boolean;
|
|
9224
|
+
'internalCacheStorage'?: number;
|
|
9225
|
+
};
|
|
9222
9226
|
};
|
|
9223
9227
|
} | {
|
|
9224
9228
|
'storage'?: {
|
|
@@ -9507,6 +9511,10 @@ type CreateJobCronData = {
|
|
|
9507
9511
|
'dockerWorkDir': string;
|
|
9508
9512
|
/** Should intermediate image layers be cached? */
|
|
9509
9513
|
'useCache'?: boolean;
|
|
9514
|
+
'buildkit'?: {
|
|
9515
|
+
'useInternalCache'?: boolean;
|
|
9516
|
+
'internalCacheStorage'?: number;
|
|
9517
|
+
};
|
|
9510
9518
|
};
|
|
9511
9519
|
} | {
|
|
9512
9520
|
'storage'?: {
|
|
@@ -9762,6 +9770,10 @@ type PutJobCronResult = {
|
|
|
9762
9770
|
'dockerWorkDir': string;
|
|
9763
9771
|
/** Should intermediate image layers be cached? */
|
|
9764
9772
|
'useCache'?: boolean;
|
|
9773
|
+
'buildkit'?: {
|
|
9774
|
+
'useInternalCache'?: boolean;
|
|
9775
|
+
'internalCacheStorage'?: number;
|
|
9776
|
+
};
|
|
9765
9777
|
};
|
|
9766
9778
|
} | {
|
|
9767
9779
|
'storage'?: {
|
|
@@ -10050,6 +10062,10 @@ type PutJobCronData = {
|
|
|
10050
10062
|
'dockerWorkDir': string;
|
|
10051
10063
|
/** Should intermediate image layers be cached? */
|
|
10052
10064
|
'useCache'?: boolean;
|
|
10065
|
+
'buildkit'?: {
|
|
10066
|
+
'useInternalCache'?: boolean;
|
|
10067
|
+
'internalCacheStorage'?: number;
|
|
10068
|
+
};
|
|
10053
10069
|
};
|
|
10054
10070
|
} | {
|
|
10055
10071
|
'storage'?: {
|
|
@@ -10305,6 +10321,10 @@ type PatchJobCronResult = {
|
|
|
10305
10321
|
'dockerWorkDir': string;
|
|
10306
10322
|
/** Should intermediate image layers be cached? */
|
|
10307
10323
|
'useCache'?: boolean;
|
|
10324
|
+
'buildkit'?: {
|
|
10325
|
+
'useInternalCache'?: boolean;
|
|
10326
|
+
'internalCacheStorage'?: number;
|
|
10327
|
+
};
|
|
10308
10328
|
};
|
|
10309
10329
|
} | {
|
|
10310
10330
|
'storage'?: {
|
|
@@ -10639,6 +10659,10 @@ type CreateJobManualResult = {
|
|
|
10639
10659
|
'dockerWorkDir': string;
|
|
10640
10660
|
/** Should intermediate image layers be cached? */
|
|
10641
10661
|
'useCache'?: boolean;
|
|
10662
|
+
'buildkit'?: {
|
|
10663
|
+
'useInternalCache'?: boolean;
|
|
10664
|
+
'internalCacheStorage'?: number;
|
|
10665
|
+
};
|
|
10642
10666
|
};
|
|
10643
10667
|
} | {
|
|
10644
10668
|
'storage'?: {
|
|
@@ -10927,6 +10951,10 @@ type CreateJobManualData = {
|
|
|
10927
10951
|
'dockerWorkDir': string;
|
|
10928
10952
|
/** Should intermediate image layers be cached? */
|
|
10929
10953
|
'useCache'?: boolean;
|
|
10954
|
+
'buildkit'?: {
|
|
10955
|
+
'useInternalCache'?: boolean;
|
|
10956
|
+
'internalCacheStorage'?: number;
|
|
10957
|
+
};
|
|
10930
10958
|
};
|
|
10931
10959
|
} | {
|
|
10932
10960
|
'storage'?: {
|
|
@@ -11170,6 +11198,10 @@ type PutJobManualResult = {
|
|
|
11170
11198
|
'dockerWorkDir': string;
|
|
11171
11199
|
/** Should intermediate image layers be cached? */
|
|
11172
11200
|
'useCache'?: boolean;
|
|
11201
|
+
'buildkit'?: {
|
|
11202
|
+
'useInternalCache'?: boolean;
|
|
11203
|
+
'internalCacheStorage'?: number;
|
|
11204
|
+
};
|
|
11173
11205
|
};
|
|
11174
11206
|
} | {
|
|
11175
11207
|
'storage'?: {
|
|
@@ -11458,6 +11490,10 @@ type PutJobManualData = {
|
|
|
11458
11490
|
'dockerWorkDir': string;
|
|
11459
11491
|
/** Should intermediate image layers be cached? */
|
|
11460
11492
|
'useCache'?: boolean;
|
|
11493
|
+
'buildkit'?: {
|
|
11494
|
+
'useInternalCache'?: boolean;
|
|
11495
|
+
'internalCacheStorage'?: number;
|
|
11496
|
+
};
|
|
11461
11497
|
};
|
|
11462
11498
|
} | {
|
|
11463
11499
|
'storage'?: {
|
|
@@ -11701,6 +11737,10 @@ type PatchJobManualResult = {
|
|
|
11701
11737
|
'dockerWorkDir': string;
|
|
11702
11738
|
/** Should intermediate image layers be cached? */
|
|
11703
11739
|
'useCache'?: boolean;
|
|
11740
|
+
'buildkit'?: {
|
|
11741
|
+
'useInternalCache'?: boolean;
|
|
11742
|
+
'internalCacheStorage'?: number;
|
|
11743
|
+
};
|
|
11704
11744
|
};
|
|
11705
11745
|
} | {
|
|
11706
11746
|
'storage'?: {
|
|
@@ -11918,6 +11958,10 @@ type GetJobResult = {
|
|
|
11918
11958
|
'buildkit'?: {
|
|
11919
11959
|
/** Should intermediate image layers be cached? */
|
|
11920
11960
|
'useCache'?: boolean;
|
|
11961
|
+
/** Should use persistent storage to store all layers? */
|
|
11962
|
+
'useInternalCache'?: boolean;
|
|
11963
|
+
/** Storage size to use for internal cache */
|
|
11964
|
+
'internalCacheStorage'?: boolean;
|
|
11921
11965
|
};
|
|
11922
11966
|
/** Details about Kaniko settings. */
|
|
11923
11967
|
'kaniko'?: {
|
|
@@ -12340,6 +12384,12 @@ type UpdateJobBuildoptionsData = {
|
|
|
12340
12384
|
'dockerFilePath'?: string;
|
|
12341
12385
|
/** The working directory of the Dockerfile. Example: "/" */
|
|
12342
12386
|
'dockerWorkDir'?: string;
|
|
12387
|
+
'buildkit'?: {
|
|
12388
|
+
/** Should use persistent storage to store all layers? */
|
|
12389
|
+
'useInternalCache'?: boolean;
|
|
12390
|
+
/** Persistent storage per build in MB */
|
|
12391
|
+
'internalCacheStorage': number;
|
|
12392
|
+
};
|
|
12343
12393
|
};
|
|
12344
12394
|
/** An array of path ignore rules. A commit will only be built if a file has been changed that does not match any of the ignore rules. Path ignore rules follow `.gitignore` syntax. */
|
|
12345
12395
|
'pathIgnoreRules'?: string[];
|
|
@@ -15207,6 +15257,10 @@ type CreateServiceBuildResult = {
|
|
|
15207
15257
|
'dockerWorkDir': string;
|
|
15208
15258
|
/** Should intermediate image layers be cached? */
|
|
15209
15259
|
'useCache'?: boolean;
|
|
15260
|
+
'buildkit'?: {
|
|
15261
|
+
'useInternalCache'?: boolean;
|
|
15262
|
+
'internalCacheStorage'?: number;
|
|
15263
|
+
};
|
|
15210
15264
|
};
|
|
15211
15265
|
} | {
|
|
15212
15266
|
'storage'?: {
|
|
@@ -15348,6 +15402,10 @@ type CreateServiceBuildData = {
|
|
|
15348
15402
|
'dockerWorkDir': string;
|
|
15349
15403
|
/** Should intermediate image layers be cached? */
|
|
15350
15404
|
'useCache'?: boolean;
|
|
15405
|
+
'buildkit'?: {
|
|
15406
|
+
'useInternalCache'?: boolean;
|
|
15407
|
+
'internalCacheStorage'?: number;
|
|
15408
|
+
};
|
|
15351
15409
|
};
|
|
15352
15410
|
} | {
|
|
15353
15411
|
'storage'?: {
|
|
@@ -15459,6 +15517,10 @@ type PutServiceBuildResult = {
|
|
|
15459
15517
|
'dockerWorkDir': string;
|
|
15460
15518
|
/** Should intermediate image layers be cached? */
|
|
15461
15519
|
'useCache'?: boolean;
|
|
15520
|
+
'buildkit'?: {
|
|
15521
|
+
'useInternalCache'?: boolean;
|
|
15522
|
+
'internalCacheStorage'?: number;
|
|
15523
|
+
};
|
|
15462
15524
|
};
|
|
15463
15525
|
} | {
|
|
15464
15526
|
'storage'?: {
|
|
@@ -15600,6 +15662,10 @@ type PutServiceBuildData = {
|
|
|
15600
15662
|
'dockerWorkDir': string;
|
|
15601
15663
|
/** Should intermediate image layers be cached? */
|
|
15602
15664
|
'useCache'?: boolean;
|
|
15665
|
+
'buildkit'?: {
|
|
15666
|
+
'useInternalCache'?: boolean;
|
|
15667
|
+
'internalCacheStorage'?: number;
|
|
15668
|
+
};
|
|
15603
15669
|
};
|
|
15604
15670
|
} | {
|
|
15605
15671
|
'storage'?: {
|
|
@@ -15711,6 +15777,10 @@ type PatchServiceBuildResult = {
|
|
|
15711
15777
|
'dockerWorkDir': string;
|
|
15712
15778
|
/** Should intermediate image layers be cached? */
|
|
15713
15779
|
'useCache'?: boolean;
|
|
15780
|
+
'buildkit'?: {
|
|
15781
|
+
'useInternalCache'?: boolean;
|
|
15782
|
+
'internalCacheStorage'?: number;
|
|
15783
|
+
};
|
|
15714
15784
|
};
|
|
15715
15785
|
} | {
|
|
15716
15786
|
'storage'?: {
|
|
@@ -15851,6 +15921,10 @@ type PatchServiceBuildData = {
|
|
|
15851
15921
|
'dockerWorkDir'?: string;
|
|
15852
15922
|
/** Should intermediate image layers be cached? */
|
|
15853
15923
|
'useCache'?: boolean;
|
|
15924
|
+
'buildkit'?: {
|
|
15925
|
+
'useInternalCache'?: boolean;
|
|
15926
|
+
'internalCacheStorage'?: number;
|
|
15927
|
+
};
|
|
15854
15928
|
};
|
|
15855
15929
|
'buildpack'?: {
|
|
15856
15930
|
/** Buildpack stack to use. Defaults to recommended stack `HEROKU_22`. Example: "HEROKU_22" */
|
|
@@ -16115,6 +16189,10 @@ type CreateServiceCombinedResult = {
|
|
|
16115
16189
|
'dockerWorkDir': string;
|
|
16116
16190
|
/** Should intermediate image layers be cached? */
|
|
16117
16191
|
'useCache'?: boolean;
|
|
16192
|
+
'buildkit'?: {
|
|
16193
|
+
'useInternalCache'?: boolean;
|
|
16194
|
+
'internalCacheStorage'?: number;
|
|
16195
|
+
};
|
|
16118
16196
|
};
|
|
16119
16197
|
} | {
|
|
16120
16198
|
'storage'?: {
|
|
@@ -16601,6 +16679,10 @@ type CreateServiceCombinedData = {
|
|
|
16601
16679
|
'dockerWorkDir': string;
|
|
16602
16680
|
/** Should intermediate image layers be cached? */
|
|
16603
16681
|
'useCache'?: boolean;
|
|
16682
|
+
'buildkit'?: {
|
|
16683
|
+
'useInternalCache'?: boolean;
|
|
16684
|
+
'internalCacheStorage'?: number;
|
|
16685
|
+
};
|
|
16604
16686
|
};
|
|
16605
16687
|
} | {
|
|
16606
16688
|
'storage'?: {
|
|
@@ -16925,6 +17007,10 @@ type PutServiceCombinedResult = {
|
|
|
16925
17007
|
'dockerWorkDir': string;
|
|
16926
17008
|
/** Should intermediate image layers be cached? */
|
|
16927
17009
|
'useCache'?: boolean;
|
|
17010
|
+
'buildkit'?: {
|
|
17011
|
+
'useInternalCache'?: boolean;
|
|
17012
|
+
'internalCacheStorage'?: number;
|
|
17013
|
+
};
|
|
16928
17014
|
};
|
|
16929
17015
|
} | {
|
|
16930
17016
|
'storage'?: {
|
|
@@ -17411,6 +17497,10 @@ type PutServiceCombinedData = {
|
|
|
17411
17497
|
'dockerWorkDir': string;
|
|
17412
17498
|
/** Should intermediate image layers be cached? */
|
|
17413
17499
|
'useCache'?: boolean;
|
|
17500
|
+
'buildkit'?: {
|
|
17501
|
+
'useInternalCache'?: boolean;
|
|
17502
|
+
'internalCacheStorage'?: number;
|
|
17503
|
+
};
|
|
17414
17504
|
};
|
|
17415
17505
|
} | {
|
|
17416
17506
|
'storage'?: {
|
|
@@ -17735,6 +17825,10 @@ type PatchServiceCombinedResult = {
|
|
|
17735
17825
|
'dockerWorkDir': string;
|
|
17736
17826
|
/** Should intermediate image layers be cached? */
|
|
17737
17827
|
'useCache'?: boolean;
|
|
17828
|
+
'buildkit'?: {
|
|
17829
|
+
'useInternalCache'?: boolean;
|
|
17830
|
+
'internalCacheStorage'?: number;
|
|
17831
|
+
};
|
|
17738
17832
|
};
|
|
17739
17833
|
} | {
|
|
17740
17834
|
'storage'?: {
|
|
@@ -18218,6 +18312,10 @@ type PatchServiceCombinedData = {
|
|
|
18218
18312
|
'dockerWorkDir'?: string;
|
|
18219
18313
|
/** Should intermediate image layers be cached? */
|
|
18220
18314
|
'useCache'?: boolean;
|
|
18315
|
+
'buildkit'?: {
|
|
18316
|
+
'useInternalCache'?: boolean;
|
|
18317
|
+
'internalCacheStorage'?: number;
|
|
18318
|
+
};
|
|
18221
18319
|
};
|
|
18222
18320
|
'buildpack'?: {
|
|
18223
18321
|
/** Buildpack stack to use. Defaults to recommended stack `HEROKU_22`. Example: "HEROKU_22" */
|
|
@@ -20845,6 +20943,10 @@ type GetServiceResult = {
|
|
|
20845
20943
|
'buildkit'?: {
|
|
20846
20944
|
/** Should intermediate image layers be cached? */
|
|
20847
20945
|
'useCache'?: boolean;
|
|
20946
|
+
/** Should use persistent storage to store all layers? */
|
|
20947
|
+
'useInternalCache'?: boolean;
|
|
20948
|
+
/** Storage size to use for internal cache */
|
|
20949
|
+
'internalCacheStorage'?: boolean;
|
|
20848
20950
|
};
|
|
20849
20951
|
/** Details about Kaniko settings. */
|
|
20850
20952
|
'kaniko'?: {
|
|
@@ -21323,6 +21425,12 @@ type UpdateServiceBuildoptionsData = {
|
|
|
21323
21425
|
'dockerFilePath'?: string;
|
|
21324
21426
|
/** The working directory of the Dockerfile. Example: "/" */
|
|
21325
21427
|
'dockerWorkDir'?: string;
|
|
21428
|
+
'buildkit'?: {
|
|
21429
|
+
/** Should use persistent storage to store all layers? */
|
|
21430
|
+
'useInternalCache'?: boolean;
|
|
21431
|
+
/** Persistent storage per build in MB */
|
|
21432
|
+
'internalCacheStorage': number;
|
|
21433
|
+
};
|
|
21326
21434
|
};
|
|
21327
21435
|
/** An array of pull request build rules. Only supported for build services. Each commit belonging to a pull request on a branch that matches one of the provided build rules will be built automatically. */
|
|
21328
21436
|
'prRestrictions'?: string[];
|