@schemastore/cloudbuild 0.0.6 → 0.0.8
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 +22 -6
- package/index.d.ts +13 -13
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -1,12 +1,28 @@
|
|
|
1
|
-
#
|
|
2
|
-
|
|
1
|
+
# Type definitions for cloudbuild
|
|
2
|
+
|
|
3
|
+
## Installation
|
|
4
|
+
|
|
5
|
+
```
|
|
6
|
+
npm i @schemastore/cloudbuild
|
|
7
|
+
yarn add @schemastore/cloudbuild
|
|
8
|
+
```
|
|
9
|
+
|
|
10
|
+
## Summary
|
|
3
11
|
|
|
4
|
-
# Summary
|
|
5
12
|
This package contains type definitions for cloudbuild.
|
|
6
13
|
|
|
7
|
-
##
|
|
8
|
-
|
|
14
|
+
## Usage
|
|
15
|
+
|
|
16
|
+
```ts
|
|
17
|
+
import * as cloudbuild from '@schemastore/cloudbuild';
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
## Note
|
|
21
|
+
|
|
22
|
+
The definitions were auto-generated by [schemastore-updater](https://github.com/ffflorian/schemastore-updater) using [`json-schema-to-typescript`](https://www.npmjs.com/package/json-schema-to-typescript).
|
|
9
23
|
|
|
10
24
|
## Additional Details
|
|
11
|
-
|
|
25
|
+
|
|
26
|
+
* [Schema source](https://github.com/SchemaStore/schemastore/tree/master/src/schemas/json/cloudbuild)
|
|
27
|
+
* Last updated: Sat, Jul 19, 2025, 17:01:19 GMT
|
|
12
28
|
* Dependencies: none
|
package/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*
|
|
1
|
+
/* eslint-disable */
|
|
2
2
|
/**
|
|
3
3
|
* This file was automatically generated by json-schema-to-typescript.
|
|
4
4
|
* DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
|
|
@@ -44,7 +44,7 @@ export interface GoogleCloudBuildBuildConfigFile {
|
|
|
44
44
|
* Substitutions data for `Build` resource.
|
|
45
45
|
*/
|
|
46
46
|
substitutions?: {
|
|
47
|
-
[k: string]: string;
|
|
47
|
+
[k: string]: string | undefined;
|
|
48
48
|
};
|
|
49
49
|
/**
|
|
50
50
|
* A list of images to be pushed upon the successful completion of all build
|
|
@@ -74,7 +74,7 @@ export interface GoogleCloudBuildBuildConfigFile {
|
|
|
74
74
|
* Secrets to decrypt using Cloud Key Management Service.
|
|
75
75
|
*/
|
|
76
76
|
secrets?: Secret[];
|
|
77
|
-
[k: string]: unknown;
|
|
77
|
+
[k: string]: unknown | undefined;
|
|
78
78
|
}
|
|
79
79
|
/**
|
|
80
80
|
* A step in the build pipeline.
|
|
@@ -170,7 +170,7 @@ export interface BuildStep {
|
|
|
170
170
|
* the step's execution.
|
|
171
171
|
*/
|
|
172
172
|
dir?: string;
|
|
173
|
-
[k: string]: unknown;
|
|
173
|
+
[k: string]: unknown | undefined;
|
|
174
174
|
}
|
|
175
175
|
/**
|
|
176
176
|
* Volume describes a Docker container volume which is mounted into build steps
|
|
@@ -191,7 +191,7 @@ export interface Volume {
|
|
|
191
191
|
* same build step or with certain reserved volume paths.
|
|
192
192
|
*/
|
|
193
193
|
path?: string;
|
|
194
|
-
[k: string]: unknown;
|
|
194
|
+
[k: string]: unknown | undefined;
|
|
195
195
|
}
|
|
196
196
|
/**
|
|
197
197
|
* Special options for this build.
|
|
@@ -267,7 +267,7 @@ export interface BuildOptions {
|
|
|
267
267
|
* Requested hash for SourceProvenance.
|
|
268
268
|
*/
|
|
269
269
|
sourceProvenanceHash?: ("NONE" | "SHA256" | "MD5")[];
|
|
270
|
-
[k: string]: unknown;
|
|
270
|
+
[k: string]: unknown | undefined;
|
|
271
271
|
}
|
|
272
272
|
/**
|
|
273
273
|
* The location of the source files to build.
|
|
@@ -275,7 +275,7 @@ export interface BuildOptions {
|
|
|
275
275
|
export interface Source {
|
|
276
276
|
storageSource?: StorageSource;
|
|
277
277
|
repoSource?: RepoSource;
|
|
278
|
-
[k: string]: unknown;
|
|
278
|
+
[k: string]: unknown | undefined;
|
|
279
279
|
}
|
|
280
280
|
/**
|
|
281
281
|
* If provided, get the source from this location in Google Cloud Storage.
|
|
@@ -299,7 +299,7 @@ export interface StorageSource {
|
|
|
299
299
|
* build.
|
|
300
300
|
*/
|
|
301
301
|
object?: string;
|
|
302
|
-
[k: string]: unknown;
|
|
302
|
+
[k: string]: unknown | undefined;
|
|
303
303
|
}
|
|
304
304
|
/**
|
|
305
305
|
* If provided, get the source from this location in a Cloud Source
|
|
@@ -335,7 +335,7 @@ export interface RepoSource {
|
|
|
335
335
|
* Name of the branch to build.
|
|
336
336
|
*/
|
|
337
337
|
branchName?: string;
|
|
338
|
-
[k: string]: unknown;
|
|
338
|
+
[k: string]: unknown | undefined;
|
|
339
339
|
}
|
|
340
340
|
/**
|
|
341
341
|
* Artifacts produced by the build that should be uploaded upon
|
|
@@ -355,7 +355,7 @@ export interface Artifacts {
|
|
|
355
355
|
* If any of the images fail to be pushed, the build is marked FAILURE.
|
|
356
356
|
*/
|
|
357
357
|
images?: string[];
|
|
358
|
-
[k: string]: unknown;
|
|
358
|
+
[k: string]: unknown | undefined;
|
|
359
359
|
}
|
|
360
360
|
/**
|
|
361
361
|
* A list of objects to be uploaded to Cloud Storage upon successful
|
|
@@ -384,7 +384,7 @@ export interface ArtifactObjects {
|
|
|
384
384
|
* Path globs used to match files in the build's workspace.
|
|
385
385
|
*/
|
|
386
386
|
paths?: string[];
|
|
387
|
-
[k: string]: unknown;
|
|
387
|
+
[k: string]: unknown | undefined;
|
|
388
388
|
}
|
|
389
389
|
/**
|
|
390
390
|
* Pairs a set of secret environment variables containing encrypted
|
|
@@ -404,7 +404,7 @@ export interface Secret {
|
|
|
404
404
|
* build's secrets.
|
|
405
405
|
*/
|
|
406
406
|
secretEnv?: {
|
|
407
|
-
[k: string]: string;
|
|
407
|
+
[k: string]: string | undefined;
|
|
408
408
|
};
|
|
409
|
-
[k: string]: unknown;
|
|
409
|
+
[k: string]: unknown | undefined;
|
|
410
410
|
}
|
package/package.json
CHANGED
|
@@ -7,8 +7,8 @@
|
|
|
7
7
|
"name": "@schemastore/cloudbuild",
|
|
8
8
|
"repository": "https://github.com/ffflorian/schemastore-updater/tree/main/schemas/cloudbuild",
|
|
9
9
|
"scripts": {},
|
|
10
|
-
"
|
|
10
|
+
"typeScriptVersion": "2.2",
|
|
11
11
|
"types": "index.d.ts",
|
|
12
|
-
"
|
|
13
|
-
"
|
|
14
|
-
}
|
|
12
|
+
"typesPublisherContentHash": "0667c383101f7aac9a70d29edafb2792c710db18a84edc94c245c2d773e50882",
|
|
13
|
+
"version": "0.0.8"
|
|
14
|
+
}
|