@schemastore/zuul 1.0.1 → 1.0.2
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 +1 -1
- package/index.d.ts +15 -30
- package/package.json +1 -1
package/README.md
CHANGED
package/index.d.ts
CHANGED
|
@@ -13,37 +13,30 @@ export type FailureUrl = string;
|
|
|
13
13
|
export type Files1 = string | string[];
|
|
14
14
|
export type Final = boolean;
|
|
15
15
|
export type IrrelevantFiles = string | string[];
|
|
16
|
-
export type Name1 = string;
|
|
17
16
|
export type OverrideCheckout = string;
|
|
18
17
|
export type Parent = string;
|
|
19
18
|
export type PostRun = string | string[];
|
|
20
19
|
export type PostTimeout = number;
|
|
21
20
|
export type PreRun = string | string[];
|
|
22
21
|
export type Provides = string[];
|
|
23
|
-
export type Name2 = string;
|
|
24
|
-
export type OverrideCheckout1 = string;
|
|
25
22
|
export type RequiredProjects = (string | RequiredProjectModel)[];
|
|
26
23
|
export type Requires = string[];
|
|
27
24
|
export type Zuul = string;
|
|
28
25
|
export type Roles = ZuulRoleModel[];
|
|
29
26
|
export type Run = string | string[];
|
|
30
27
|
export type Secrets = JobSecretModel | (JobSecretModel | string)[];
|
|
31
|
-
export type Name3 = string;
|
|
32
28
|
export type PassToParent = boolean;
|
|
33
29
|
export type Secret = string;
|
|
34
30
|
export type SemaphoreS = string | JobSemaphoreModel | (JobSemaphoreModel | unknown[]);
|
|
35
|
-
export type Name4 = string;
|
|
36
31
|
export type ResourcesFirst = boolean;
|
|
37
32
|
export type SuccessUrl = string;
|
|
38
33
|
export type Tags = string | string[];
|
|
39
34
|
export type Timeout = number;
|
|
40
35
|
export type Voting = boolean;
|
|
41
36
|
export type WorkspaceScheme = 'flat' | 'golang' | 'unique';
|
|
42
|
-
export type Name5 = string;
|
|
43
37
|
export type Name6 = string | string[];
|
|
44
38
|
export type Label = string;
|
|
45
39
|
export type Nodes = NodesetNodeModel[];
|
|
46
|
-
export type Name7 = string;
|
|
47
40
|
export type Nodes1 = string[];
|
|
48
41
|
export type Groups = NodesetGroupModel[];
|
|
49
42
|
export type Alternatives = (string | NodesetModel)[];
|
|
@@ -51,7 +44,6 @@ export type FailFast = boolean;
|
|
|
51
44
|
export type Jobs = unknown[];
|
|
52
45
|
export type Queue = string;
|
|
53
46
|
export type DefaultBranch = string;
|
|
54
|
-
export type Description1 = string;
|
|
55
47
|
export type MergeMode =
|
|
56
48
|
| 'merge'
|
|
57
49
|
| 'merge-resolve'
|
|
@@ -60,14 +52,7 @@ export type MergeMode =
|
|
|
60
52
|
| 'cherry-pick'
|
|
61
53
|
| 'squash-merge'
|
|
62
54
|
| 'rebase';
|
|
63
|
-
export type Name8 = string;
|
|
64
|
-
export type Queue1 = string;
|
|
65
55
|
export type Templates = string[];
|
|
66
|
-
export type DefaultBranch1 = string;
|
|
67
|
-
export type Description2 = string;
|
|
68
|
-
export type Name9 = string;
|
|
69
|
-
export type Queue2 = string;
|
|
70
|
-
export type Name10 = string;
|
|
71
56
|
export type ZuulConfigSchema = (JobEntry | NodesetEntry | ProjectEntry | ProjectTemplateEntry | SecretEntry)[];
|
|
72
57
|
|
|
73
58
|
export interface JobEntry {
|
|
@@ -87,7 +72,7 @@ export interface JobModel {
|
|
|
87
72
|
'group-vars'?: GroupVars;
|
|
88
73
|
'host-vars'?: HostVars;
|
|
89
74
|
'irrelevant-files'?: IrrelevantFiles;
|
|
90
|
-
name:
|
|
75
|
+
name: Name;
|
|
91
76
|
nodeset?: Nodeset;
|
|
92
77
|
'override-checkout'?: OverrideCheckout;
|
|
93
78
|
parent?: Parent;
|
|
@@ -130,20 +115,20 @@ export interface Nodeset {
|
|
|
130
115
|
[k: string]: unknown | undefined;
|
|
131
116
|
}
|
|
132
117
|
export interface RequiredProjectModel {
|
|
133
|
-
name:
|
|
134
|
-
'override-checkout'?:
|
|
118
|
+
name: Name;
|
|
119
|
+
'override-checkout'?: OverrideCheckout;
|
|
135
120
|
[k: string]: unknown | undefined;
|
|
136
121
|
}
|
|
137
122
|
export interface ZuulRoleModel {
|
|
138
123
|
zuul: Zuul;
|
|
139
124
|
}
|
|
140
125
|
export interface JobSecretModel {
|
|
141
|
-
name:
|
|
126
|
+
name: Name;
|
|
142
127
|
'pass-to-parent'?: PassToParent;
|
|
143
128
|
secret: Secret;
|
|
144
129
|
}
|
|
145
130
|
export interface JobSemaphoreModel {
|
|
146
|
-
name:
|
|
131
|
+
name: Name;
|
|
147
132
|
'resources-first'?: ResourcesFirst;
|
|
148
133
|
}
|
|
149
134
|
export interface Vars {
|
|
@@ -153,7 +138,7 @@ export interface NodesetEntry {
|
|
|
153
138
|
nodeset: NodesetModel;
|
|
154
139
|
}
|
|
155
140
|
export interface NodesetModel {
|
|
156
|
-
name:
|
|
141
|
+
name: Name;
|
|
157
142
|
nodes?: Nodes;
|
|
158
143
|
groups?: Groups;
|
|
159
144
|
alternatives?: Alternatives;
|
|
@@ -163,7 +148,7 @@ export interface NodesetNodeModel {
|
|
|
163
148
|
label: Label;
|
|
164
149
|
}
|
|
165
150
|
export interface NodesetGroupModel {
|
|
166
|
-
name:
|
|
151
|
+
name: Name;
|
|
167
152
|
nodes: Nodes1;
|
|
168
153
|
}
|
|
169
154
|
export interface ProjectEntry {
|
|
@@ -172,14 +157,14 @@ export interface ProjectEntry {
|
|
|
172
157
|
export interface ProjectModel {
|
|
173
158
|
check?: PipelineModel;
|
|
174
159
|
'default-branch'?: DefaultBranch;
|
|
175
|
-
description?:
|
|
160
|
+
description?: Description;
|
|
176
161
|
gate?: PipelineModel;
|
|
177
162
|
'merge-mode'?: MergeMode;
|
|
178
|
-
name?:
|
|
163
|
+
name?: Name;
|
|
179
164
|
'periodic-weekly'?: PipelineModel;
|
|
180
165
|
post?: PipelineModel;
|
|
181
166
|
promote?: PipelineModel;
|
|
182
|
-
queue?:
|
|
167
|
+
queue?: Queue;
|
|
183
168
|
release?: PipelineModel;
|
|
184
169
|
templates?: Templates;
|
|
185
170
|
'third-party-check'?: PipelineModel;
|
|
@@ -198,14 +183,14 @@ export interface ProjectTemplateEntry {
|
|
|
198
183
|
}
|
|
199
184
|
export interface ProjectTemplateModel {
|
|
200
185
|
check?: PipelineModel;
|
|
201
|
-
'default-branch'?:
|
|
202
|
-
description?:
|
|
186
|
+
'default-branch'?: DefaultBranch;
|
|
187
|
+
description?: Description;
|
|
203
188
|
gate?: PipelineModel;
|
|
204
|
-
name:
|
|
189
|
+
name: Name;
|
|
205
190
|
'periodic-weekly'?: PipelineModel;
|
|
206
191
|
post?: PipelineModel;
|
|
207
192
|
promote?: PipelineModel;
|
|
208
|
-
queue?:
|
|
193
|
+
queue?: Queue;
|
|
209
194
|
release?: PipelineModel;
|
|
210
195
|
'third-party-check'?: PipelineModel;
|
|
211
196
|
vars?: Vars2;
|
|
@@ -218,7 +203,7 @@ export interface SecretEntry {
|
|
|
218
203
|
}
|
|
219
204
|
export interface SecretModel {
|
|
220
205
|
data: Data;
|
|
221
|
-
name:
|
|
206
|
+
name: Name;
|
|
222
207
|
}
|
|
223
208
|
export interface Data {
|
|
224
209
|
[k: string]: unknown | undefined;
|
package/package.json
CHANGED