@northflank/js-client 0.8.3 → 0.8.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.
@@ -8310,7 +8310,8 @@ declare class DeleteNotificationEndpoint extends DeleteApiEndpoint<DeleteNotific
8310
8310
  }
8311
8311
 
8312
8312
  type ListRegistrycredentialsResult = {
8313
- 'credentials'?: {
8313
+ /** An array of registry credential information. */
8314
+ 'credentials': {
8314
8315
  /** ID of the docker credentials Example: "example-credentials" */
8315
8316
  'id': string;
8316
8317
  /** The name of the docker credentials. Example: "Example Docker Credentials" */
@@ -8845,6 +8846,14 @@ type CreateProjectResult = {
8845
8846
  'region'?: string;
8846
8847
  /** The BYOC cluster this project will be hosted in. Example: "gcp-cluster-1" */
8847
8848
  'clusterId'?: string;
8849
+ /** Registry configuration for the project. Can be PaaS or Self-Hosted */
8850
+ 'customRegistry'?: {
8851
+ 'enabled'?: boolean;
8852
+ 'configuration'?: {
8853
+ 'credentialId': string;
8854
+ 'provider'?: 'acr' | 'ecr' | 'gar' | 'dockerhub' | 'github' | 'gitlab' | 'custom' | 'legacy';
8855
+ };
8856
+ };
8848
8857
  /** Advanced project networking settings. */
8849
8858
  'networking'?: {
8850
8859
  /** Projects from which ingress request should be permitted. */
@@ -9066,6 +9075,14 @@ type PutProjectResult = {
9066
9075
  'region'?: string;
9067
9076
  /** The BYOC cluster this project will be hosted in. Example: "gcp-cluster-1" */
9068
9077
  'clusterId'?: string;
9078
+ /** Registry configuration for the project. Can be PaaS or Self-Hosted */
9079
+ 'customRegistry'?: {
9080
+ 'enabled'?: boolean;
9081
+ 'configuration'?: {
9082
+ 'credentialId': string;
9083
+ 'provider'?: 'acr' | 'ecr' | 'gar' | 'dockerhub' | 'github' | 'gitlab' | 'custom' | 'legacy';
9084
+ };
9085
+ };
9069
9086
  /** Advanced project networking settings. */
9070
9087
  'networking'?: {
9071
9088
  /** Projects from which ingress request should be permitted. */
@@ -9287,6 +9304,14 @@ type PatchProjectResult = {
9287
9304
  'region'?: string;
9288
9305
  /** The BYOC cluster this project will be hosted in. Example: "gcp-cluster-1" */
9289
9306
  'clusterId'?: string;
9307
+ /** Registry configuration for the project. Can be PaaS or Self-Hosted */
9308
+ 'customRegistry'?: {
9309
+ 'enabled'?: boolean;
9310
+ 'configuration'?: {
9311
+ 'credentialId': string;
9312
+ 'provider'?: 'acr' | 'ecr' | 'gar' | 'dockerhub' | 'github' | 'gitlab' | 'custom' | 'legacy';
9313
+ };
9314
+ };
9290
9315
  /** Advanced project networking settings. */
9291
9316
  'networking'?: {
9292
9317
  /** Projects from which ingress request should be permitted. */
@@ -9451,6 +9476,15 @@ type GetProjectResult = {
9451
9476
  /** Type of the service (combined, build or deployment) Example: "combined" */
9452
9477
  'serviceType': 'combined' | 'build' | 'deployment';
9453
9478
  }[];
9479
+ 'customRegistry'?: {
9480
+ /** Whether the project has a custom registry. */
9481
+ 'enabled': boolean;
9482
+ /** The configuration of the custom registry. */
9483
+ 'configuration'?: {
9484
+ 'credentialId'?: string;
9485
+ 'provider'?: 'acr' | 'ecr' | 'gar' | 'dockerhub' | 'github' | 'gitlab' | 'custom' | 'legacy';
9486
+ };
9487
+ };
9454
9488
  /** An array of jobs belonging to the project. */
9455
9489
  'jobs': {
9456
9490
  /** Identifier for the job. Example: "example-job" */
@@ -11692,6 +11726,8 @@ type CreateJobCronResult = {
11692
11726
  };
11693
11727
  };
11694
11728
  'dockerfile': {
11729
+ /** DEPRECATED: This field will be removed in the near future and currently has no effect. */
11730
+ 'useCache'?: boolean;
11695
11731
  /** Build engine to use. Defaults to recommended build engine `buildkit` Example: "buildkit" */
11696
11732
  'buildEngine'?: 'buildkit' | 'kaniko';
11697
11733
  /** The file path of the Dockerfile. Example: "/Dockerfile" */
@@ -11995,6 +12031,8 @@ type CreateJobCronData = {
11995
12031
  };
11996
12032
  };
11997
12033
  'dockerfile': {
12034
+ /** DEPRECATED: This field will be removed in the near future and currently has no effect. */
12035
+ 'useCache'?: boolean;
11998
12036
  /** Build engine to use. Defaults to recommended build engine `buildkit` Example: "buildkit" */
11999
12037
  'buildEngine'?: 'buildkit' | 'kaniko';
12000
12038
  /** The file path of the Dockerfile. Example: "/Dockerfile" */
@@ -12267,6 +12305,8 @@ type PutJobCronResult = {
12267
12305
  };
12268
12306
  };
12269
12307
  'dockerfile': {
12308
+ /** DEPRECATED: This field will be removed in the near future and currently has no effect. */
12309
+ 'useCache'?: boolean;
12270
12310
  /** Build engine to use. Defaults to recommended build engine `buildkit` Example: "buildkit" */
12271
12311
  'buildEngine'?: 'buildkit' | 'kaniko';
12272
12312
  /** The file path of the Dockerfile. Example: "/Dockerfile" */
@@ -12570,6 +12610,8 @@ type PutJobCronData = {
12570
12610
  };
12571
12611
  };
12572
12612
  'dockerfile': {
12613
+ /** DEPRECATED: This field will be removed in the near future and currently has no effect. */
12614
+ 'useCache'?: boolean;
12573
12615
  /** Build engine to use. Defaults to recommended build engine `buildkit` Example: "buildkit" */
12574
12616
  'buildEngine'?: 'buildkit' | 'kaniko';
12575
12617
  /** The file path of the Dockerfile. Example: "/Dockerfile" */
@@ -12842,6 +12884,8 @@ type PatchJobCronResult = {
12842
12884
  };
12843
12885
  };
12844
12886
  'dockerfile': {
12887
+ /** DEPRECATED: This field will be removed in the near future and currently has no effect. */
12888
+ 'useCache'?: boolean;
12845
12889
  /** Build engine to use. Defaults to recommended build engine `buildkit` Example: "buildkit" */
12846
12890
  'buildEngine'?: 'buildkit' | 'kaniko';
12847
12891
  /** The file path of the Dockerfile. Example: "/Dockerfile" */
@@ -13194,6 +13238,8 @@ type CreateJobManualResult = {
13194
13238
  };
13195
13239
  };
13196
13240
  'dockerfile': {
13241
+ /** DEPRECATED: This field will be removed in the near future and currently has no effect. */
13242
+ 'useCache'?: boolean;
13197
13243
  /** Build engine to use. Defaults to recommended build engine `buildkit` Example: "buildkit" */
13198
13244
  'buildEngine'?: 'buildkit' | 'kaniko';
13199
13245
  /** The file path of the Dockerfile. Example: "/Dockerfile" */
@@ -13497,6 +13543,8 @@ type CreateJobManualData = {
13497
13543
  };
13498
13544
  };
13499
13545
  'dockerfile': {
13546
+ /** DEPRECATED: This field will be removed in the near future and currently has no effect. */
13547
+ 'useCache'?: boolean;
13500
13548
  /** Build engine to use. Defaults to recommended build engine `buildkit` Example: "buildkit" */
13501
13549
  'buildEngine'?: 'buildkit' | 'kaniko';
13502
13550
  /** The file path of the Dockerfile. Example: "/Dockerfile" */
@@ -13757,6 +13805,8 @@ type PutJobManualResult = {
13757
13805
  };
13758
13806
  };
13759
13807
  'dockerfile': {
13808
+ /** DEPRECATED: This field will be removed in the near future and currently has no effect. */
13809
+ 'useCache'?: boolean;
13760
13810
  /** Build engine to use. Defaults to recommended build engine `buildkit` Example: "buildkit" */
13761
13811
  'buildEngine'?: 'buildkit' | 'kaniko';
13762
13812
  /** The file path of the Dockerfile. Example: "/Dockerfile" */
@@ -14060,6 +14110,8 @@ type PutJobManualData = {
14060
14110
  };
14061
14111
  };
14062
14112
  'dockerfile': {
14113
+ /** DEPRECATED: This field will be removed in the near future and currently has no effect. */
14114
+ 'useCache'?: boolean;
14063
14115
  /** Build engine to use. Defaults to recommended build engine `buildkit` Example: "buildkit" */
14064
14116
  'buildEngine'?: 'buildkit' | 'kaniko';
14065
14117
  /** The file path of the Dockerfile. Example: "/Dockerfile" */
@@ -14320,6 +14372,8 @@ type PatchJobManualResult = {
14320
14372
  };
14321
14373
  };
14322
14374
  'dockerfile': {
14375
+ /** DEPRECATED: This field will be removed in the near future and currently has no effect. */
14376
+ 'useCache'?: boolean;
14323
14377
  /** Build engine to use. Defaults to recommended build engine `buildkit` Example: "buildkit" */
14324
14378
  'buildEngine'?: 'buildkit' | 'kaniko';
14325
14379
  /** The file path of the Dockerfile. Example: "/Dockerfile" */
@@ -17905,6 +17959,8 @@ type CreateServiceBuildResult = {
17905
17959
  };
17906
17960
  };
17907
17961
  'dockerfile': {
17962
+ /** DEPRECATED: This field will be removed in the near future and currently has no effect. */
17963
+ 'useCache'?: boolean;
17908
17964
  /** Build engine to use. Defaults to recommended build engine `buildkit` Example: "buildkit" */
17909
17965
  'buildEngine'?: 'buildkit' | 'kaniko';
17910
17966
  /** The file path of the Dockerfile. Example: "/Dockerfile" */
@@ -18062,6 +18118,8 @@ type CreateServiceBuildData = {
18062
18118
  };
18063
18119
  };
18064
18120
  'dockerfile': {
18121
+ /** DEPRECATED: This field will be removed in the near future and currently has no effect. */
18122
+ 'useCache'?: boolean;
18065
18123
  /** Build engine to use. Defaults to recommended build engine `buildkit` Example: "buildkit" */
18066
18124
  'buildEngine'?: 'buildkit' | 'kaniko';
18067
18125
  /** The file path of the Dockerfile. Example: "/Dockerfile" */
@@ -18189,6 +18247,8 @@ type PutServiceBuildResult = {
18189
18247
  };
18190
18248
  };
18191
18249
  'dockerfile': {
18250
+ /** DEPRECATED: This field will be removed in the near future and currently has no effect. */
18251
+ 'useCache'?: boolean;
18192
18252
  /** Build engine to use. Defaults to recommended build engine `buildkit` Example: "buildkit" */
18193
18253
  'buildEngine'?: 'buildkit' | 'kaniko';
18194
18254
  /** The file path of the Dockerfile. Example: "/Dockerfile" */
@@ -18346,6 +18406,8 @@ type PutServiceBuildData = {
18346
18406
  };
18347
18407
  };
18348
18408
  'dockerfile': {
18409
+ /** DEPRECATED: This field will be removed in the near future and currently has no effect. */
18410
+ 'useCache'?: boolean;
18349
18411
  /** Build engine to use. Defaults to recommended build engine `buildkit` Example: "buildkit" */
18350
18412
  'buildEngine'?: 'buildkit' | 'kaniko';
18351
18413
  /** The file path of the Dockerfile. Example: "/Dockerfile" */
@@ -18473,6 +18535,8 @@ type PatchServiceBuildResult = {
18473
18535
  };
18474
18536
  };
18475
18537
  'dockerfile': {
18538
+ /** DEPRECATED: This field will be removed in the near future and currently has no effect. */
18539
+ 'useCache'?: boolean;
18476
18540
  /** Build engine to use. Defaults to recommended build engine `buildkit` Example: "buildkit" */
18477
18541
  'buildEngine'?: 'buildkit' | 'kaniko';
18478
18542
  /** The file path of the Dockerfile. Example: "/Dockerfile" */
@@ -18908,6 +18972,8 @@ type CreateServiceCombinedResult = {
18908
18972
  };
18909
18973
  };
18910
18974
  'dockerfile': {
18975
+ /** DEPRECATED: This field will be removed in the near future and currently has no effect. */
18976
+ 'useCache'?: boolean;
18911
18977
  /** Build engine to use. Defaults to recommended build engine `buildkit` Example: "buildkit" */
18912
18978
  'buildEngine'?: 'buildkit' | 'kaniko';
18913
18979
  /** The file path of the Dockerfile. Example: "/Dockerfile" */
@@ -19445,6 +19511,8 @@ type CreateServiceCombinedData = {
19445
19511
  };
19446
19512
  };
19447
19513
  'dockerfile': {
19514
+ /** DEPRECATED: This field will be removed in the near future and currently has no effect. */
19515
+ 'useCache'?: boolean;
19448
19516
  /** Build engine to use. Defaults to recommended build engine `buildkit` Example: "buildkit" */
19449
19517
  'buildEngine'?: 'buildkit' | 'kaniko';
19450
19518
  /** The file path of the Dockerfile. Example: "/Dockerfile" */
@@ -19814,6 +19882,8 @@ type PutServiceCombinedResult = {
19814
19882
  };
19815
19883
  };
19816
19884
  'dockerfile': {
19885
+ /** DEPRECATED: This field will be removed in the near future and currently has no effect. */
19886
+ 'useCache'?: boolean;
19817
19887
  /** Build engine to use. Defaults to recommended build engine `buildkit` Example: "buildkit" */
19818
19888
  'buildEngine'?: 'buildkit' | 'kaniko';
19819
19889
  /** The file path of the Dockerfile. Example: "/Dockerfile" */
@@ -20351,6 +20421,8 @@ type PutServiceCombinedData = {
20351
20421
  };
20352
20422
  };
20353
20423
  'dockerfile': {
20424
+ /** DEPRECATED: This field will be removed in the near future and currently has no effect. */
20425
+ 'useCache'?: boolean;
20354
20426
  /** Build engine to use. Defaults to recommended build engine `buildkit` Example: "buildkit" */
20355
20427
  'buildEngine'?: 'buildkit' | 'kaniko';
20356
20428
  /** The file path of the Dockerfile. Example: "/Dockerfile" */
@@ -20720,6 +20792,8 @@ type PatchServiceCombinedResult = {
20720
20792
  };
20721
20793
  };
20722
20794
  'dockerfile': {
20795
+ /** DEPRECATED: This field will be removed in the near future and currently has no effect. */
20796
+ 'useCache'?: boolean;
20723
20797
  /** Build engine to use. Defaults to recommended build engine `buildkit` Example: "buildkit" */
20724
20798
  'buildEngine'?: 'buildkit' | 'kaniko';
20725
20799
  /** The file path of the Dockerfile. Example: "/Dockerfile" */
@@ -8310,7 +8310,8 @@ declare class DeleteNotificationEndpoint extends DeleteApiEndpoint<DeleteNotific
8310
8310
  }
8311
8311
 
8312
8312
  type ListRegistrycredentialsResult = {
8313
- 'credentials'?: {
8313
+ /** An array of registry credential information. */
8314
+ 'credentials': {
8314
8315
  /** ID of the docker credentials Example: "example-credentials" */
8315
8316
  'id': string;
8316
8317
  /** The name of the docker credentials. Example: "Example Docker Credentials" */
@@ -8845,6 +8846,14 @@ type CreateProjectResult = {
8845
8846
  'region'?: string;
8846
8847
  /** The BYOC cluster this project will be hosted in. Example: "gcp-cluster-1" */
8847
8848
  'clusterId'?: string;
8849
+ /** Registry configuration for the project. Can be PaaS or Self-Hosted */
8850
+ 'customRegistry'?: {
8851
+ 'enabled'?: boolean;
8852
+ 'configuration'?: {
8853
+ 'credentialId': string;
8854
+ 'provider'?: 'acr' | 'ecr' | 'gar' | 'dockerhub' | 'github' | 'gitlab' | 'custom' | 'legacy';
8855
+ };
8856
+ };
8848
8857
  /** Advanced project networking settings. */
8849
8858
  'networking'?: {
8850
8859
  /** Projects from which ingress request should be permitted. */
@@ -9066,6 +9075,14 @@ type PutProjectResult = {
9066
9075
  'region'?: string;
9067
9076
  /** The BYOC cluster this project will be hosted in. Example: "gcp-cluster-1" */
9068
9077
  'clusterId'?: string;
9078
+ /** Registry configuration for the project. Can be PaaS or Self-Hosted */
9079
+ 'customRegistry'?: {
9080
+ 'enabled'?: boolean;
9081
+ 'configuration'?: {
9082
+ 'credentialId': string;
9083
+ 'provider'?: 'acr' | 'ecr' | 'gar' | 'dockerhub' | 'github' | 'gitlab' | 'custom' | 'legacy';
9084
+ };
9085
+ };
9069
9086
  /** Advanced project networking settings. */
9070
9087
  'networking'?: {
9071
9088
  /** Projects from which ingress request should be permitted. */
@@ -9287,6 +9304,14 @@ type PatchProjectResult = {
9287
9304
  'region'?: string;
9288
9305
  /** The BYOC cluster this project will be hosted in. Example: "gcp-cluster-1" */
9289
9306
  'clusterId'?: string;
9307
+ /** Registry configuration for the project. Can be PaaS or Self-Hosted */
9308
+ 'customRegistry'?: {
9309
+ 'enabled'?: boolean;
9310
+ 'configuration'?: {
9311
+ 'credentialId': string;
9312
+ 'provider'?: 'acr' | 'ecr' | 'gar' | 'dockerhub' | 'github' | 'gitlab' | 'custom' | 'legacy';
9313
+ };
9314
+ };
9290
9315
  /** Advanced project networking settings. */
9291
9316
  'networking'?: {
9292
9317
  /** Projects from which ingress request should be permitted. */
@@ -9451,6 +9476,15 @@ type GetProjectResult = {
9451
9476
  /** Type of the service (combined, build or deployment) Example: "combined" */
9452
9477
  'serviceType': 'combined' | 'build' | 'deployment';
9453
9478
  }[];
9479
+ 'customRegistry'?: {
9480
+ /** Whether the project has a custom registry. */
9481
+ 'enabled': boolean;
9482
+ /** The configuration of the custom registry. */
9483
+ 'configuration'?: {
9484
+ 'credentialId'?: string;
9485
+ 'provider'?: 'acr' | 'ecr' | 'gar' | 'dockerhub' | 'github' | 'gitlab' | 'custom' | 'legacy';
9486
+ };
9487
+ };
9454
9488
  /** An array of jobs belonging to the project. */
9455
9489
  'jobs': {
9456
9490
  /** Identifier for the job. Example: "example-job" */
@@ -11692,6 +11726,8 @@ type CreateJobCronResult = {
11692
11726
  };
11693
11727
  };
11694
11728
  'dockerfile': {
11729
+ /** DEPRECATED: This field will be removed in the near future and currently has no effect. */
11730
+ 'useCache'?: boolean;
11695
11731
  /** Build engine to use. Defaults to recommended build engine `buildkit` Example: "buildkit" */
11696
11732
  'buildEngine'?: 'buildkit' | 'kaniko';
11697
11733
  /** The file path of the Dockerfile. Example: "/Dockerfile" */
@@ -11995,6 +12031,8 @@ type CreateJobCronData = {
11995
12031
  };
11996
12032
  };
11997
12033
  'dockerfile': {
12034
+ /** DEPRECATED: This field will be removed in the near future and currently has no effect. */
12035
+ 'useCache'?: boolean;
11998
12036
  /** Build engine to use. Defaults to recommended build engine `buildkit` Example: "buildkit" */
11999
12037
  'buildEngine'?: 'buildkit' | 'kaniko';
12000
12038
  /** The file path of the Dockerfile. Example: "/Dockerfile" */
@@ -12267,6 +12305,8 @@ type PutJobCronResult = {
12267
12305
  };
12268
12306
  };
12269
12307
  'dockerfile': {
12308
+ /** DEPRECATED: This field will be removed in the near future and currently has no effect. */
12309
+ 'useCache'?: boolean;
12270
12310
  /** Build engine to use. Defaults to recommended build engine `buildkit` Example: "buildkit" */
12271
12311
  'buildEngine'?: 'buildkit' | 'kaniko';
12272
12312
  /** The file path of the Dockerfile. Example: "/Dockerfile" */
@@ -12570,6 +12610,8 @@ type PutJobCronData = {
12570
12610
  };
12571
12611
  };
12572
12612
  'dockerfile': {
12613
+ /** DEPRECATED: This field will be removed in the near future and currently has no effect. */
12614
+ 'useCache'?: boolean;
12573
12615
  /** Build engine to use. Defaults to recommended build engine `buildkit` Example: "buildkit" */
12574
12616
  'buildEngine'?: 'buildkit' | 'kaniko';
12575
12617
  /** The file path of the Dockerfile. Example: "/Dockerfile" */
@@ -12842,6 +12884,8 @@ type PatchJobCronResult = {
12842
12884
  };
12843
12885
  };
12844
12886
  'dockerfile': {
12887
+ /** DEPRECATED: This field will be removed in the near future and currently has no effect. */
12888
+ 'useCache'?: boolean;
12845
12889
  /** Build engine to use. Defaults to recommended build engine `buildkit` Example: "buildkit" */
12846
12890
  'buildEngine'?: 'buildkit' | 'kaniko';
12847
12891
  /** The file path of the Dockerfile. Example: "/Dockerfile" */
@@ -13194,6 +13238,8 @@ type CreateJobManualResult = {
13194
13238
  };
13195
13239
  };
13196
13240
  'dockerfile': {
13241
+ /** DEPRECATED: This field will be removed in the near future and currently has no effect. */
13242
+ 'useCache'?: boolean;
13197
13243
  /** Build engine to use. Defaults to recommended build engine `buildkit` Example: "buildkit" */
13198
13244
  'buildEngine'?: 'buildkit' | 'kaniko';
13199
13245
  /** The file path of the Dockerfile. Example: "/Dockerfile" */
@@ -13497,6 +13543,8 @@ type CreateJobManualData = {
13497
13543
  };
13498
13544
  };
13499
13545
  'dockerfile': {
13546
+ /** DEPRECATED: This field will be removed in the near future and currently has no effect. */
13547
+ 'useCache'?: boolean;
13500
13548
  /** Build engine to use. Defaults to recommended build engine `buildkit` Example: "buildkit" */
13501
13549
  'buildEngine'?: 'buildkit' | 'kaniko';
13502
13550
  /** The file path of the Dockerfile. Example: "/Dockerfile" */
@@ -13757,6 +13805,8 @@ type PutJobManualResult = {
13757
13805
  };
13758
13806
  };
13759
13807
  'dockerfile': {
13808
+ /** DEPRECATED: This field will be removed in the near future and currently has no effect. */
13809
+ 'useCache'?: boolean;
13760
13810
  /** Build engine to use. Defaults to recommended build engine `buildkit` Example: "buildkit" */
13761
13811
  'buildEngine'?: 'buildkit' | 'kaniko';
13762
13812
  /** The file path of the Dockerfile. Example: "/Dockerfile" */
@@ -14060,6 +14110,8 @@ type PutJobManualData = {
14060
14110
  };
14061
14111
  };
14062
14112
  'dockerfile': {
14113
+ /** DEPRECATED: This field will be removed in the near future and currently has no effect. */
14114
+ 'useCache'?: boolean;
14063
14115
  /** Build engine to use. Defaults to recommended build engine `buildkit` Example: "buildkit" */
14064
14116
  'buildEngine'?: 'buildkit' | 'kaniko';
14065
14117
  /** The file path of the Dockerfile. Example: "/Dockerfile" */
@@ -14320,6 +14372,8 @@ type PatchJobManualResult = {
14320
14372
  };
14321
14373
  };
14322
14374
  'dockerfile': {
14375
+ /** DEPRECATED: This field will be removed in the near future and currently has no effect. */
14376
+ 'useCache'?: boolean;
14323
14377
  /** Build engine to use. Defaults to recommended build engine `buildkit` Example: "buildkit" */
14324
14378
  'buildEngine'?: 'buildkit' | 'kaniko';
14325
14379
  /** The file path of the Dockerfile. Example: "/Dockerfile" */
@@ -17905,6 +17959,8 @@ type CreateServiceBuildResult = {
17905
17959
  };
17906
17960
  };
17907
17961
  'dockerfile': {
17962
+ /** DEPRECATED: This field will be removed in the near future and currently has no effect. */
17963
+ 'useCache'?: boolean;
17908
17964
  /** Build engine to use. Defaults to recommended build engine `buildkit` Example: "buildkit" */
17909
17965
  'buildEngine'?: 'buildkit' | 'kaniko';
17910
17966
  /** The file path of the Dockerfile. Example: "/Dockerfile" */
@@ -18062,6 +18118,8 @@ type CreateServiceBuildData = {
18062
18118
  };
18063
18119
  };
18064
18120
  'dockerfile': {
18121
+ /** DEPRECATED: This field will be removed in the near future and currently has no effect. */
18122
+ 'useCache'?: boolean;
18065
18123
  /** Build engine to use. Defaults to recommended build engine `buildkit` Example: "buildkit" */
18066
18124
  'buildEngine'?: 'buildkit' | 'kaniko';
18067
18125
  /** The file path of the Dockerfile. Example: "/Dockerfile" */
@@ -18189,6 +18247,8 @@ type PutServiceBuildResult = {
18189
18247
  };
18190
18248
  };
18191
18249
  'dockerfile': {
18250
+ /** DEPRECATED: This field will be removed in the near future and currently has no effect. */
18251
+ 'useCache'?: boolean;
18192
18252
  /** Build engine to use. Defaults to recommended build engine `buildkit` Example: "buildkit" */
18193
18253
  'buildEngine'?: 'buildkit' | 'kaniko';
18194
18254
  /** The file path of the Dockerfile. Example: "/Dockerfile" */
@@ -18346,6 +18406,8 @@ type PutServiceBuildData = {
18346
18406
  };
18347
18407
  };
18348
18408
  'dockerfile': {
18409
+ /** DEPRECATED: This field will be removed in the near future and currently has no effect. */
18410
+ 'useCache'?: boolean;
18349
18411
  /** Build engine to use. Defaults to recommended build engine `buildkit` Example: "buildkit" */
18350
18412
  'buildEngine'?: 'buildkit' | 'kaniko';
18351
18413
  /** The file path of the Dockerfile. Example: "/Dockerfile" */
@@ -18473,6 +18535,8 @@ type PatchServiceBuildResult = {
18473
18535
  };
18474
18536
  };
18475
18537
  'dockerfile': {
18538
+ /** DEPRECATED: This field will be removed in the near future and currently has no effect. */
18539
+ 'useCache'?: boolean;
18476
18540
  /** Build engine to use. Defaults to recommended build engine `buildkit` Example: "buildkit" */
18477
18541
  'buildEngine'?: 'buildkit' | 'kaniko';
18478
18542
  /** The file path of the Dockerfile. Example: "/Dockerfile" */
@@ -18908,6 +18972,8 @@ type CreateServiceCombinedResult = {
18908
18972
  };
18909
18973
  };
18910
18974
  'dockerfile': {
18975
+ /** DEPRECATED: This field will be removed in the near future and currently has no effect. */
18976
+ 'useCache'?: boolean;
18911
18977
  /** Build engine to use. Defaults to recommended build engine `buildkit` Example: "buildkit" */
18912
18978
  'buildEngine'?: 'buildkit' | 'kaniko';
18913
18979
  /** The file path of the Dockerfile. Example: "/Dockerfile" */
@@ -19445,6 +19511,8 @@ type CreateServiceCombinedData = {
19445
19511
  };
19446
19512
  };
19447
19513
  'dockerfile': {
19514
+ /** DEPRECATED: This field will be removed in the near future and currently has no effect. */
19515
+ 'useCache'?: boolean;
19448
19516
  /** Build engine to use. Defaults to recommended build engine `buildkit` Example: "buildkit" */
19449
19517
  'buildEngine'?: 'buildkit' | 'kaniko';
19450
19518
  /** The file path of the Dockerfile. Example: "/Dockerfile" */
@@ -19814,6 +19882,8 @@ type PutServiceCombinedResult = {
19814
19882
  };
19815
19883
  };
19816
19884
  'dockerfile': {
19885
+ /** DEPRECATED: This field will be removed in the near future and currently has no effect. */
19886
+ 'useCache'?: boolean;
19817
19887
  /** Build engine to use. Defaults to recommended build engine `buildkit` Example: "buildkit" */
19818
19888
  'buildEngine'?: 'buildkit' | 'kaniko';
19819
19889
  /** The file path of the Dockerfile. Example: "/Dockerfile" */
@@ -20351,6 +20421,8 @@ type PutServiceCombinedData = {
20351
20421
  };
20352
20422
  };
20353
20423
  'dockerfile': {
20424
+ /** DEPRECATED: This field will be removed in the near future and currently has no effect. */
20425
+ 'useCache'?: boolean;
20354
20426
  /** Build engine to use. Defaults to recommended build engine `buildkit` Example: "buildkit" */
20355
20427
  'buildEngine'?: 'buildkit' | 'kaniko';
20356
20428
  /** The file path of the Dockerfile. Example: "/Dockerfile" */
@@ -20720,6 +20792,8 @@ type PatchServiceCombinedResult = {
20720
20792
  };
20721
20793
  };
20722
20794
  'dockerfile': {
20795
+ /** DEPRECATED: This field will be removed in the near future and currently has no effect. */
20796
+ 'useCache'?: boolean;
20723
20797
  /** Build engine to use. Defaults to recommended build engine `buildkit` Example: "buildkit" */
20724
20798
  'buildEngine'?: 'buildkit' | 'kaniko';
20725
20799
  /** The file path of the Dockerfile. Example: "/Dockerfile" */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@northflank/js-client",
3
- "version": "0.8.3",
3
+ "version": "0.8.5",
4
4
  "license": "MIT",
5
5
  "author": "Marco Suter",
6
6
  "main": "dist/cjs/api-client.js",