@sylphx/contract 0.6.0 → 0.8.0
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/CHANGELOG.md +17 -1
- package/README.md +1 -1
- package/dist/compute.d.ts +33 -0
- package/dist/compute.d.ts.map +1 -0
- package/dist/compute.js +119 -0
- package/dist/endpoints/admin-config.d.ts +3 -0
- package/dist/endpoints/admin-config.d.ts.map +1 -1
- package/dist/endpoints/admin-config.js +9 -1
- package/dist/endpoints/ai-admin.d.ts +134 -5
- package/dist/endpoints/ai-admin.d.ts.map +1 -1
- package/dist/endpoints/analytics-admin.d.ts +141 -6
- package/dist/endpoints/analytics-admin.d.ts.map +1 -1
- package/dist/endpoints/analytics-admin.js +7 -7
- package/dist/endpoints/auth.d.ts +26 -8
- package/dist/endpoints/auth.d.ts.map +1 -1
- package/dist/endpoints/auth.js +5 -5
- package/dist/endpoints/domains.d.ts +10 -1
- package/dist/endpoints/domains.d.ts.map +1 -1
- package/dist/endpoints/domains.js +6 -3
- package/dist/endpoints/email-admin.d.ts +1 -0
- package/dist/endpoints/email-admin.d.ts.map +1 -1
- package/dist/endpoints/flags-admin.d.ts +8 -0
- package/dist/endpoints/flags-admin.d.ts.map +1 -1
- package/dist/endpoints/notifications-admin.d.ts +4 -4
- package/dist/endpoints/project-manifest.d.ts +308 -306
- package/dist/endpoints/project-manifest.d.ts.map +1 -1
- package/dist/hono-app.d.ts +1 -1
- package/dist/index.d.ts +637 -330
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +3 -0
- package/dist/schemas/admin-config.d.ts +4 -0
- package/dist/schemas/admin-config.d.ts.map +1 -1
- package/dist/schemas/admin-config.js +3 -0
- package/dist/schemas/ai-admin.d.ts +137 -8
- package/dist/schemas/ai-admin.d.ts.map +1 -1
- package/dist/schemas/ai-admin.js +119 -13
- package/dist/schemas/analytics-admin.d.ts +164 -7
- package/dist/schemas/analytics-admin.d.ts.map +1 -1
- package/dist/schemas/analytics-admin.js +104 -3
- package/dist/schemas/auth.d.ts +2 -1
- package/dist/schemas/auth.d.ts.map +1 -1
- package/dist/schemas/auth.js +2 -1
- package/dist/schemas/domain.d.ts +4 -1
- package/dist/schemas/domain.d.ts.map +1 -1
- package/dist/schemas/domain.js +3 -1
- package/dist/schemas/email-admin.d.ts +1 -0
- package/dist/schemas/email-admin.d.ts.map +1 -1
- package/dist/schemas/email-admin.js +1 -0
- package/dist/schemas/flags-admin.d.ts +13 -0
- package/dist/schemas/flags-admin.d.ts.map +1 -1
- package/dist/schemas/flags-admin.js +6 -0
- package/dist/schemas/notifications-admin.d.ts +6 -6
- package/dist/schemas/notifications-admin.js +1 -1
- package/dist/schemas/project-manifest.d.ts +316 -306
- package/dist/schemas/project-manifest.d.ts.map +1 -1
- package/dist/schemas/project-manifest.js +5 -0
- package/package.json +5 -1
|
@@ -59,6 +59,7 @@ export declare const projectManifestEndpoints: {
|
|
|
59
59
|
command: Schema.optional<typeof Schema.String>;
|
|
60
60
|
}>>;
|
|
61
61
|
command: Schema.optional<typeof Schema.String>;
|
|
62
|
+
release_command: Schema.optional<typeof Schema.String>;
|
|
62
63
|
port: Schema.optional<Schema.filter<Schema.filter<typeof Schema.Number>>>;
|
|
63
64
|
instances: Schema.optional<Schema.filter<Schema.filter<typeof Schema.Number>>>;
|
|
64
65
|
instance_type: Schema.optional<Schema.Literal<["nano", "micro", "small", "standard", "large", "xlarge"]>>;
|
|
@@ -98,31 +99,7 @@ export declare const projectManifestEndpoints: {
|
|
|
98
99
|
aliases: Schema.optional<Schema.Array$<typeof Schema.String>>;
|
|
99
100
|
}>>>;
|
|
100
101
|
environments: Schema.optional<Schema.SchemaClass<{
|
|
101
|
-
readonly
|
|
102
|
-
readonly domains?: readonly {
|
|
103
|
-
readonly service: string;
|
|
104
|
-
readonly hostname: string;
|
|
105
|
-
readonly redirect_https?: boolean | undefined;
|
|
106
|
-
readonly www_redirect?: "none" | "apex" | "www" | undefined;
|
|
107
|
-
readonly aliases?: readonly string[] | undefined;
|
|
108
|
-
}[] | undefined;
|
|
109
|
-
readonly services?: readonly {
|
|
110
|
-
readonly name: string;
|
|
111
|
-
readonly type?: "function" | "cron" | "web" | "worker" | undefined;
|
|
112
|
-
readonly port?: number | undefined;
|
|
113
|
-
readonly env?: readonly string[] | undefined;
|
|
114
|
-
readonly resources?: readonly string[] | undefined;
|
|
115
|
-
readonly instances?: number | undefined;
|
|
116
|
-
readonly max_instances?: number | undefined;
|
|
117
|
-
readonly command?: string | undefined;
|
|
118
|
-
readonly instance_type?: "nano" | "micro" | "standard" | "large" | "xlarge" | "small" | undefined;
|
|
119
|
-
readonly cron_schedule?: string | undefined;
|
|
120
|
-
readonly regions?: readonly ("fsn1" | "nbg1" | "hel1" | "ash1" | "hil1")[] | undefined;
|
|
121
|
-
readonly scale_to_zero?: boolean | undefined;
|
|
122
|
-
readonly idle_timeout_seconds?: number | undefined;
|
|
123
|
-
readonly min_instances?: number | undefined;
|
|
124
|
-
}[] | undefined;
|
|
125
|
-
readonly region?: "fsn1" | "nbg1" | "hel1" | "ash1" | "hil1" | undefined;
|
|
102
|
+
readonly production?: {
|
|
126
103
|
readonly env?: {
|
|
127
104
|
readonly [x: string]: {
|
|
128
105
|
readonly value: string;
|
|
@@ -133,11 +110,12 @@ export declare const projectManifestEndpoints: {
|
|
|
133
110
|
readonly attr: string;
|
|
134
111
|
};
|
|
135
112
|
} | undefined;
|
|
113
|
+
readonly region?: "fsn1" | "nbg1" | "hel1" | "ash1" | "hil1" | undefined;
|
|
136
114
|
readonly build?: {
|
|
137
|
-
readonly context?: string | undefined;
|
|
138
|
-
readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
|
|
139
115
|
readonly dockerfile?: string | undefined;
|
|
140
|
-
readonly buildpack?: "auto" | "
|
|
116
|
+
readonly buildpack?: "auto" | "ruby" | "node" | "python" | "static" | "dockerfile" | undefined;
|
|
117
|
+
readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
|
|
118
|
+
readonly context?: string | undefined;
|
|
141
119
|
readonly docker_context?: string | undefined;
|
|
142
120
|
readonly build_command?: string | undefined;
|
|
143
121
|
readonly ignore?: readonly string[] | undefined;
|
|
@@ -145,38 +123,37 @@ export declare const projectManifestEndpoints: {
|
|
|
145
123
|
readonly reproducible?: boolean | undefined;
|
|
146
124
|
} | undefined;
|
|
147
125
|
readonly deploy?: {
|
|
148
|
-
readonly strategy?: "
|
|
126
|
+
readonly strategy?: "rolling" | "blue-green" | "immediate" | undefined;
|
|
149
127
|
readonly release_command?: string | undefined;
|
|
150
128
|
readonly health_check_path?: string | undefined;
|
|
151
129
|
readonly health_check_timeout?: number | undefined;
|
|
152
130
|
readonly graceful_shutdown?: number | undefined;
|
|
153
131
|
} | undefined;
|
|
154
|
-
};
|
|
155
|
-
readonly staging?: {
|
|
156
|
-
readonly domains?: readonly {
|
|
157
|
-
readonly service: string;
|
|
158
|
-
readonly hostname: string;
|
|
159
|
-
readonly redirect_https?: boolean | undefined;
|
|
160
|
-
readonly www_redirect?: "none" | "apex" | "www" | undefined;
|
|
161
|
-
readonly aliases?: readonly string[] | undefined;
|
|
162
|
-
}[] | undefined;
|
|
163
132
|
readonly services?: readonly {
|
|
164
|
-
readonly name: string;
|
|
165
|
-
readonly type?: "function" | "cron" | "web" | "worker" | undefined;
|
|
166
133
|
readonly port?: number | undefined;
|
|
167
134
|
readonly env?: readonly string[] | undefined;
|
|
135
|
+
readonly name: string;
|
|
168
136
|
readonly resources?: readonly string[] | undefined;
|
|
169
|
-
readonly instances?: number | undefined;
|
|
170
137
|
readonly max_instances?: number | undefined;
|
|
171
138
|
readonly command?: string | undefined;
|
|
172
|
-
readonly
|
|
139
|
+
readonly type?: "function" | "web" | "worker" | "cron" | undefined;
|
|
140
|
+
readonly instances?: number | undefined;
|
|
141
|
+
readonly instance_type?: "nano" | "micro" | "standard" | "large" | "small" | "xlarge" | undefined;
|
|
173
142
|
readonly cron_schedule?: string | undefined;
|
|
174
143
|
readonly regions?: readonly ("fsn1" | "nbg1" | "hel1" | "ash1" | "hil1")[] | undefined;
|
|
175
144
|
readonly scale_to_zero?: boolean | undefined;
|
|
176
145
|
readonly idle_timeout_seconds?: number | undefined;
|
|
177
146
|
readonly min_instances?: number | undefined;
|
|
178
147
|
}[] | undefined;
|
|
179
|
-
readonly
|
|
148
|
+
readonly domains?: readonly {
|
|
149
|
+
readonly hostname: string;
|
|
150
|
+
readonly service: string;
|
|
151
|
+
readonly redirect_https?: boolean | undefined;
|
|
152
|
+
readonly www_redirect?: "apex" | "www" | "none" | undefined;
|
|
153
|
+
readonly aliases?: readonly string[] | undefined;
|
|
154
|
+
}[] | undefined;
|
|
155
|
+
};
|
|
156
|
+
readonly staging?: {
|
|
180
157
|
readonly env?: {
|
|
181
158
|
readonly [x: string]: {
|
|
182
159
|
readonly value: string;
|
|
@@ -187,11 +164,12 @@ export declare const projectManifestEndpoints: {
|
|
|
187
164
|
readonly attr: string;
|
|
188
165
|
};
|
|
189
166
|
} | undefined;
|
|
167
|
+
readonly region?: "fsn1" | "nbg1" | "hel1" | "ash1" | "hil1" | undefined;
|
|
190
168
|
readonly build?: {
|
|
191
|
-
readonly context?: string | undefined;
|
|
192
|
-
readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
|
|
193
169
|
readonly dockerfile?: string | undefined;
|
|
194
|
-
readonly buildpack?: "auto" | "
|
|
170
|
+
readonly buildpack?: "auto" | "ruby" | "node" | "python" | "static" | "dockerfile" | undefined;
|
|
171
|
+
readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
|
|
172
|
+
readonly context?: string | undefined;
|
|
195
173
|
readonly docker_context?: string | undefined;
|
|
196
174
|
readonly build_command?: string | undefined;
|
|
197
175
|
readonly ignore?: readonly string[] | undefined;
|
|
@@ -199,38 +177,37 @@ export declare const projectManifestEndpoints: {
|
|
|
199
177
|
readonly reproducible?: boolean | undefined;
|
|
200
178
|
} | undefined;
|
|
201
179
|
readonly deploy?: {
|
|
202
|
-
readonly strategy?: "
|
|
180
|
+
readonly strategy?: "rolling" | "blue-green" | "immediate" | undefined;
|
|
203
181
|
readonly release_command?: string | undefined;
|
|
204
182
|
readonly health_check_path?: string | undefined;
|
|
205
183
|
readonly health_check_timeout?: number | undefined;
|
|
206
184
|
readonly graceful_shutdown?: number | undefined;
|
|
207
185
|
} | undefined;
|
|
208
|
-
};
|
|
209
|
-
readonly production?: {
|
|
210
|
-
readonly domains?: readonly {
|
|
211
|
-
readonly service: string;
|
|
212
|
-
readonly hostname: string;
|
|
213
|
-
readonly redirect_https?: boolean | undefined;
|
|
214
|
-
readonly www_redirect?: "none" | "apex" | "www" | undefined;
|
|
215
|
-
readonly aliases?: readonly string[] | undefined;
|
|
216
|
-
}[] | undefined;
|
|
217
186
|
readonly services?: readonly {
|
|
218
|
-
readonly name: string;
|
|
219
|
-
readonly type?: "function" | "cron" | "web" | "worker" | undefined;
|
|
220
187
|
readonly port?: number | undefined;
|
|
221
188
|
readonly env?: readonly string[] | undefined;
|
|
189
|
+
readonly name: string;
|
|
222
190
|
readonly resources?: readonly string[] | undefined;
|
|
223
|
-
readonly instances?: number | undefined;
|
|
224
191
|
readonly max_instances?: number | undefined;
|
|
225
192
|
readonly command?: string | undefined;
|
|
226
|
-
readonly
|
|
193
|
+
readonly type?: "function" | "web" | "worker" | "cron" | undefined;
|
|
194
|
+
readonly instances?: number | undefined;
|
|
195
|
+
readonly instance_type?: "nano" | "micro" | "standard" | "large" | "small" | "xlarge" | undefined;
|
|
227
196
|
readonly cron_schedule?: string | undefined;
|
|
228
197
|
readonly regions?: readonly ("fsn1" | "nbg1" | "hel1" | "ash1" | "hil1")[] | undefined;
|
|
229
198
|
readonly scale_to_zero?: boolean | undefined;
|
|
230
199
|
readonly idle_timeout_seconds?: number | undefined;
|
|
231
200
|
readonly min_instances?: number | undefined;
|
|
232
201
|
}[] | undefined;
|
|
233
|
-
readonly
|
|
202
|
+
readonly domains?: readonly {
|
|
203
|
+
readonly hostname: string;
|
|
204
|
+
readonly service: string;
|
|
205
|
+
readonly redirect_https?: boolean | undefined;
|
|
206
|
+
readonly www_redirect?: "apex" | "www" | "none" | undefined;
|
|
207
|
+
readonly aliases?: readonly string[] | undefined;
|
|
208
|
+
}[] | undefined;
|
|
209
|
+
};
|
|
210
|
+
readonly preview?: {
|
|
234
211
|
readonly env?: {
|
|
235
212
|
readonly [x: string]: {
|
|
236
213
|
readonly value: string;
|
|
@@ -241,11 +218,12 @@ export declare const projectManifestEndpoints: {
|
|
|
241
218
|
readonly attr: string;
|
|
242
219
|
};
|
|
243
220
|
} | undefined;
|
|
221
|
+
readonly region?: "fsn1" | "nbg1" | "hel1" | "ash1" | "hil1" | undefined;
|
|
244
222
|
readonly build?: {
|
|
245
|
-
readonly context?: string | undefined;
|
|
246
|
-
readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
|
|
247
223
|
readonly dockerfile?: string | undefined;
|
|
248
|
-
readonly buildpack?: "auto" | "
|
|
224
|
+
readonly buildpack?: "auto" | "ruby" | "node" | "python" | "static" | "dockerfile" | undefined;
|
|
225
|
+
readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
|
|
226
|
+
readonly context?: string | undefined;
|
|
249
227
|
readonly docker_context?: string | undefined;
|
|
250
228
|
readonly build_command?: string | undefined;
|
|
251
229
|
readonly ignore?: readonly string[] | undefined;
|
|
@@ -253,38 +231,37 @@ export declare const projectManifestEndpoints: {
|
|
|
253
231
|
readonly reproducible?: boolean | undefined;
|
|
254
232
|
} | undefined;
|
|
255
233
|
readonly deploy?: {
|
|
256
|
-
readonly strategy?: "
|
|
234
|
+
readonly strategy?: "rolling" | "blue-green" | "immediate" | undefined;
|
|
257
235
|
readonly release_command?: string | undefined;
|
|
258
236
|
readonly health_check_path?: string | undefined;
|
|
259
237
|
readonly health_check_timeout?: number | undefined;
|
|
260
238
|
readonly graceful_shutdown?: number | undefined;
|
|
261
239
|
} | undefined;
|
|
262
|
-
};
|
|
263
|
-
readonly preview?: {
|
|
264
|
-
readonly domains?: readonly {
|
|
265
|
-
readonly service: string;
|
|
266
|
-
readonly hostname: string;
|
|
267
|
-
readonly redirect_https?: boolean | undefined;
|
|
268
|
-
readonly www_redirect?: "none" | "apex" | "www" | undefined;
|
|
269
|
-
readonly aliases?: readonly string[] | undefined;
|
|
270
|
-
}[] | undefined;
|
|
271
240
|
readonly services?: readonly {
|
|
272
|
-
readonly name: string;
|
|
273
|
-
readonly type?: "function" | "cron" | "web" | "worker" | undefined;
|
|
274
241
|
readonly port?: number | undefined;
|
|
275
242
|
readonly env?: readonly string[] | undefined;
|
|
243
|
+
readonly name: string;
|
|
276
244
|
readonly resources?: readonly string[] | undefined;
|
|
277
|
-
readonly instances?: number | undefined;
|
|
278
245
|
readonly max_instances?: number | undefined;
|
|
279
246
|
readonly command?: string | undefined;
|
|
280
|
-
readonly
|
|
247
|
+
readonly type?: "function" | "web" | "worker" | "cron" | undefined;
|
|
248
|
+
readonly instances?: number | undefined;
|
|
249
|
+
readonly instance_type?: "nano" | "micro" | "standard" | "large" | "small" | "xlarge" | undefined;
|
|
281
250
|
readonly cron_schedule?: string | undefined;
|
|
282
251
|
readonly regions?: readonly ("fsn1" | "nbg1" | "hel1" | "ash1" | "hil1")[] | undefined;
|
|
283
252
|
readonly scale_to_zero?: boolean | undefined;
|
|
284
253
|
readonly idle_timeout_seconds?: number | undefined;
|
|
285
254
|
readonly min_instances?: number | undefined;
|
|
286
255
|
}[] | undefined;
|
|
287
|
-
readonly
|
|
256
|
+
readonly domains?: readonly {
|
|
257
|
+
readonly hostname: string;
|
|
258
|
+
readonly service: string;
|
|
259
|
+
readonly redirect_https?: boolean | undefined;
|
|
260
|
+
readonly www_redirect?: "apex" | "www" | "none" | undefined;
|
|
261
|
+
readonly aliases?: readonly string[] | undefined;
|
|
262
|
+
}[] | undefined;
|
|
263
|
+
};
|
|
264
|
+
readonly development?: {
|
|
288
265
|
readonly env?: {
|
|
289
266
|
readonly [x: string]: {
|
|
290
267
|
readonly value: string;
|
|
@@ -295,11 +272,12 @@ export declare const projectManifestEndpoints: {
|
|
|
295
272
|
readonly attr: string;
|
|
296
273
|
};
|
|
297
274
|
} | undefined;
|
|
275
|
+
readonly region?: "fsn1" | "nbg1" | "hel1" | "ash1" | "hil1" | undefined;
|
|
298
276
|
readonly build?: {
|
|
299
|
-
readonly context?: string | undefined;
|
|
300
|
-
readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
|
|
301
277
|
readonly dockerfile?: string | undefined;
|
|
302
|
-
readonly buildpack?: "auto" | "
|
|
278
|
+
readonly buildpack?: "auto" | "ruby" | "node" | "python" | "static" | "dockerfile" | undefined;
|
|
279
|
+
readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
|
|
280
|
+
readonly context?: string | undefined;
|
|
303
281
|
readonly docker_context?: string | undefined;
|
|
304
282
|
readonly build_command?: string | undefined;
|
|
305
283
|
readonly ignore?: readonly string[] | undefined;
|
|
@@ -307,39 +285,38 @@ export declare const projectManifestEndpoints: {
|
|
|
307
285
|
readonly reproducible?: boolean | undefined;
|
|
308
286
|
} | undefined;
|
|
309
287
|
readonly deploy?: {
|
|
310
|
-
readonly strategy?: "
|
|
288
|
+
readonly strategy?: "rolling" | "blue-green" | "immediate" | undefined;
|
|
311
289
|
readonly release_command?: string | undefined;
|
|
312
290
|
readonly health_check_path?: string | undefined;
|
|
313
291
|
readonly health_check_timeout?: number | undefined;
|
|
314
292
|
readonly graceful_shutdown?: number | undefined;
|
|
315
293
|
} | undefined;
|
|
316
|
-
};
|
|
317
|
-
}, {
|
|
318
|
-
readonly development?: {
|
|
319
|
-
readonly domains?: readonly {
|
|
320
|
-
readonly service: string;
|
|
321
|
-
readonly hostname: string;
|
|
322
|
-
readonly redirect_https?: boolean | undefined;
|
|
323
|
-
readonly www_redirect?: "none" | "apex" | "www" | undefined;
|
|
324
|
-
readonly aliases?: readonly string[] | undefined;
|
|
325
|
-
}[] | undefined;
|
|
326
294
|
readonly services?: readonly {
|
|
327
|
-
readonly name: string;
|
|
328
|
-
readonly type?: "function" | "cron" | "web" | "worker" | undefined;
|
|
329
295
|
readonly port?: number | undefined;
|
|
330
296
|
readonly env?: readonly string[] | undefined;
|
|
297
|
+
readonly name: string;
|
|
331
298
|
readonly resources?: readonly string[] | undefined;
|
|
332
|
-
readonly instances?: number | undefined;
|
|
333
299
|
readonly max_instances?: number | undefined;
|
|
334
300
|
readonly command?: string | undefined;
|
|
335
|
-
readonly
|
|
301
|
+
readonly type?: "function" | "web" | "worker" | "cron" | undefined;
|
|
302
|
+
readonly instances?: number | undefined;
|
|
303
|
+
readonly instance_type?: "nano" | "micro" | "standard" | "large" | "small" | "xlarge" | undefined;
|
|
336
304
|
readonly cron_schedule?: string | undefined;
|
|
337
305
|
readonly regions?: readonly ("fsn1" | "nbg1" | "hel1" | "ash1" | "hil1")[] | undefined;
|
|
338
306
|
readonly scale_to_zero?: boolean | undefined;
|
|
339
307
|
readonly idle_timeout_seconds?: number | undefined;
|
|
340
308
|
readonly min_instances?: number | undefined;
|
|
341
309
|
}[] | undefined;
|
|
342
|
-
readonly
|
|
310
|
+
readonly domains?: readonly {
|
|
311
|
+
readonly hostname: string;
|
|
312
|
+
readonly service: string;
|
|
313
|
+
readonly redirect_https?: boolean | undefined;
|
|
314
|
+
readonly www_redirect?: "apex" | "www" | "none" | undefined;
|
|
315
|
+
readonly aliases?: readonly string[] | undefined;
|
|
316
|
+
}[] | undefined;
|
|
317
|
+
};
|
|
318
|
+
}, {
|
|
319
|
+
readonly production?: {
|
|
343
320
|
readonly env?: {
|
|
344
321
|
readonly [x: string]: {
|
|
345
322
|
readonly value: string;
|
|
@@ -350,11 +327,12 @@ export declare const projectManifestEndpoints: {
|
|
|
350
327
|
readonly attr: string;
|
|
351
328
|
};
|
|
352
329
|
} | undefined;
|
|
330
|
+
readonly region?: "fsn1" | "nbg1" | "hel1" | "ash1" | "hil1" | undefined;
|
|
353
331
|
readonly build?: {
|
|
354
|
-
readonly context?: string | undefined;
|
|
355
|
-
readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
|
|
356
332
|
readonly dockerfile?: string | undefined;
|
|
357
|
-
readonly buildpack?: "auto" | "
|
|
333
|
+
readonly buildpack?: "auto" | "ruby" | "node" | "python" | "static" | "dockerfile" | undefined;
|
|
334
|
+
readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
|
|
335
|
+
readonly context?: string | undefined;
|
|
358
336
|
readonly docker_context?: string | undefined;
|
|
359
337
|
readonly build_command?: string | undefined;
|
|
360
338
|
readonly ignore?: readonly string[] | undefined;
|
|
@@ -362,38 +340,37 @@ export declare const projectManifestEndpoints: {
|
|
|
362
340
|
readonly reproducible?: boolean | undefined;
|
|
363
341
|
} | undefined;
|
|
364
342
|
readonly deploy?: {
|
|
365
|
-
readonly strategy?: "
|
|
343
|
+
readonly strategy?: "rolling" | "blue-green" | "immediate" | undefined;
|
|
366
344
|
readonly release_command?: string | undefined;
|
|
367
345
|
readonly health_check_path?: string | undefined;
|
|
368
346
|
readonly health_check_timeout?: number | undefined;
|
|
369
347
|
readonly graceful_shutdown?: number | undefined;
|
|
370
348
|
} | undefined;
|
|
371
|
-
};
|
|
372
|
-
readonly staging?: {
|
|
373
|
-
readonly domains?: readonly {
|
|
374
|
-
readonly service: string;
|
|
375
|
-
readonly hostname: string;
|
|
376
|
-
readonly redirect_https?: boolean | undefined;
|
|
377
|
-
readonly www_redirect?: "none" | "apex" | "www" | undefined;
|
|
378
|
-
readonly aliases?: readonly string[] | undefined;
|
|
379
|
-
}[] | undefined;
|
|
380
349
|
readonly services?: readonly {
|
|
381
350
|
readonly name: string;
|
|
382
|
-
readonly type?: "function" | "cron" | "web" | "worker" | undefined;
|
|
383
351
|
readonly port?: number | undefined;
|
|
384
352
|
readonly env?: readonly string[] | undefined;
|
|
385
353
|
readonly resources?: readonly string[] | undefined;
|
|
386
|
-
readonly instances?: number | undefined;
|
|
387
354
|
readonly max_instances?: number | undefined;
|
|
388
355
|
readonly command?: string | undefined;
|
|
389
|
-
readonly
|
|
356
|
+
readonly type?: "function" | "web" | "worker" | "cron" | undefined;
|
|
357
|
+
readonly instances?: number | undefined;
|
|
358
|
+
readonly instance_type?: "nano" | "micro" | "standard" | "large" | "small" | "xlarge" | undefined;
|
|
390
359
|
readonly cron_schedule?: string | undefined;
|
|
391
360
|
readonly regions?: readonly ("fsn1" | "nbg1" | "hel1" | "ash1" | "hil1")[] | undefined;
|
|
392
361
|
readonly scale_to_zero?: boolean | undefined;
|
|
393
362
|
readonly idle_timeout_seconds?: number | undefined;
|
|
394
363
|
readonly min_instances?: number | undefined;
|
|
395
364
|
}[] | undefined;
|
|
396
|
-
readonly
|
|
365
|
+
readonly domains?: readonly {
|
|
366
|
+
readonly hostname: string;
|
|
367
|
+
readonly service: string;
|
|
368
|
+
readonly redirect_https?: boolean | undefined;
|
|
369
|
+
readonly www_redirect?: "apex" | "www" | "none" | undefined;
|
|
370
|
+
readonly aliases?: readonly string[] | undefined;
|
|
371
|
+
}[] | undefined;
|
|
372
|
+
};
|
|
373
|
+
readonly staging?: {
|
|
397
374
|
readonly env?: {
|
|
398
375
|
readonly [x: string]: {
|
|
399
376
|
readonly value: string;
|
|
@@ -404,11 +381,12 @@ export declare const projectManifestEndpoints: {
|
|
|
404
381
|
readonly attr: string;
|
|
405
382
|
};
|
|
406
383
|
} | undefined;
|
|
384
|
+
readonly region?: "fsn1" | "nbg1" | "hel1" | "ash1" | "hil1" | undefined;
|
|
407
385
|
readonly build?: {
|
|
408
|
-
readonly context?: string | undefined;
|
|
409
|
-
readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
|
|
410
386
|
readonly dockerfile?: string | undefined;
|
|
411
|
-
readonly buildpack?: "auto" | "
|
|
387
|
+
readonly buildpack?: "auto" | "ruby" | "node" | "python" | "static" | "dockerfile" | undefined;
|
|
388
|
+
readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
|
|
389
|
+
readonly context?: string | undefined;
|
|
412
390
|
readonly docker_context?: string | undefined;
|
|
413
391
|
readonly build_command?: string | undefined;
|
|
414
392
|
readonly ignore?: readonly string[] | undefined;
|
|
@@ -416,38 +394,37 @@ export declare const projectManifestEndpoints: {
|
|
|
416
394
|
readonly reproducible?: boolean | undefined;
|
|
417
395
|
} | undefined;
|
|
418
396
|
readonly deploy?: {
|
|
419
|
-
readonly strategy?: "
|
|
397
|
+
readonly strategy?: "rolling" | "blue-green" | "immediate" | undefined;
|
|
420
398
|
readonly release_command?: string | undefined;
|
|
421
399
|
readonly health_check_path?: string | undefined;
|
|
422
400
|
readonly health_check_timeout?: number | undefined;
|
|
423
401
|
readonly graceful_shutdown?: number | undefined;
|
|
424
402
|
} | undefined;
|
|
425
|
-
};
|
|
426
|
-
readonly production?: {
|
|
427
|
-
readonly domains?: readonly {
|
|
428
|
-
readonly service: string;
|
|
429
|
-
readonly hostname: string;
|
|
430
|
-
readonly redirect_https?: boolean | undefined;
|
|
431
|
-
readonly www_redirect?: "none" | "apex" | "www" | undefined;
|
|
432
|
-
readonly aliases?: readonly string[] | undefined;
|
|
433
|
-
}[] | undefined;
|
|
434
403
|
readonly services?: readonly {
|
|
435
404
|
readonly name: string;
|
|
436
|
-
readonly type?: "function" | "cron" | "web" | "worker" | undefined;
|
|
437
405
|
readonly port?: number | undefined;
|
|
438
406
|
readonly env?: readonly string[] | undefined;
|
|
439
407
|
readonly resources?: readonly string[] | undefined;
|
|
440
|
-
readonly instances?: number | undefined;
|
|
441
408
|
readonly max_instances?: number | undefined;
|
|
442
409
|
readonly command?: string | undefined;
|
|
443
|
-
readonly
|
|
410
|
+
readonly type?: "function" | "web" | "worker" | "cron" | undefined;
|
|
411
|
+
readonly instances?: number | undefined;
|
|
412
|
+
readonly instance_type?: "nano" | "micro" | "standard" | "large" | "small" | "xlarge" | undefined;
|
|
444
413
|
readonly cron_schedule?: string | undefined;
|
|
445
414
|
readonly regions?: readonly ("fsn1" | "nbg1" | "hel1" | "ash1" | "hil1")[] | undefined;
|
|
446
415
|
readonly scale_to_zero?: boolean | undefined;
|
|
447
416
|
readonly idle_timeout_seconds?: number | undefined;
|
|
448
417
|
readonly min_instances?: number | undefined;
|
|
449
418
|
}[] | undefined;
|
|
450
|
-
readonly
|
|
419
|
+
readonly domains?: readonly {
|
|
420
|
+
readonly hostname: string;
|
|
421
|
+
readonly service: string;
|
|
422
|
+
readonly redirect_https?: boolean | undefined;
|
|
423
|
+
readonly www_redirect?: "apex" | "www" | "none" | undefined;
|
|
424
|
+
readonly aliases?: readonly string[] | undefined;
|
|
425
|
+
}[] | undefined;
|
|
426
|
+
};
|
|
427
|
+
readonly preview?: {
|
|
451
428
|
readonly env?: {
|
|
452
429
|
readonly [x: string]: {
|
|
453
430
|
readonly value: string;
|
|
@@ -458,11 +435,12 @@ export declare const projectManifestEndpoints: {
|
|
|
458
435
|
readonly attr: string;
|
|
459
436
|
};
|
|
460
437
|
} | undefined;
|
|
438
|
+
readonly region?: "fsn1" | "nbg1" | "hel1" | "ash1" | "hil1" | undefined;
|
|
461
439
|
readonly build?: {
|
|
462
|
-
readonly context?: string | undefined;
|
|
463
|
-
readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
|
|
464
440
|
readonly dockerfile?: string | undefined;
|
|
465
|
-
readonly buildpack?: "auto" | "
|
|
441
|
+
readonly buildpack?: "auto" | "ruby" | "node" | "python" | "static" | "dockerfile" | undefined;
|
|
442
|
+
readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
|
|
443
|
+
readonly context?: string | undefined;
|
|
466
444
|
readonly docker_context?: string | undefined;
|
|
467
445
|
readonly build_command?: string | undefined;
|
|
468
446
|
readonly ignore?: readonly string[] | undefined;
|
|
@@ -470,38 +448,37 @@ export declare const projectManifestEndpoints: {
|
|
|
470
448
|
readonly reproducible?: boolean | undefined;
|
|
471
449
|
} | undefined;
|
|
472
450
|
readonly deploy?: {
|
|
473
|
-
readonly strategy?: "
|
|
451
|
+
readonly strategy?: "rolling" | "blue-green" | "immediate" | undefined;
|
|
474
452
|
readonly release_command?: string | undefined;
|
|
475
453
|
readonly health_check_path?: string | undefined;
|
|
476
454
|
readonly health_check_timeout?: number | undefined;
|
|
477
455
|
readonly graceful_shutdown?: number | undefined;
|
|
478
456
|
} | undefined;
|
|
479
|
-
};
|
|
480
|
-
readonly preview?: {
|
|
481
|
-
readonly domains?: readonly {
|
|
482
|
-
readonly service: string;
|
|
483
|
-
readonly hostname: string;
|
|
484
|
-
readonly redirect_https?: boolean | undefined;
|
|
485
|
-
readonly www_redirect?: "none" | "apex" | "www" | undefined;
|
|
486
|
-
readonly aliases?: readonly string[] | undefined;
|
|
487
|
-
}[] | undefined;
|
|
488
457
|
readonly services?: readonly {
|
|
489
458
|
readonly name: string;
|
|
490
|
-
readonly type?: "function" | "cron" | "web" | "worker" | undefined;
|
|
491
459
|
readonly port?: number | undefined;
|
|
492
460
|
readonly env?: readonly string[] | undefined;
|
|
493
461
|
readonly resources?: readonly string[] | undefined;
|
|
494
|
-
readonly instances?: number | undefined;
|
|
495
462
|
readonly max_instances?: number | undefined;
|
|
496
463
|
readonly command?: string | undefined;
|
|
497
|
-
readonly
|
|
464
|
+
readonly type?: "function" | "web" | "worker" | "cron" | undefined;
|
|
465
|
+
readonly instances?: number | undefined;
|
|
466
|
+
readonly instance_type?: "nano" | "micro" | "standard" | "large" | "small" | "xlarge" | undefined;
|
|
498
467
|
readonly cron_schedule?: string | undefined;
|
|
499
468
|
readonly regions?: readonly ("fsn1" | "nbg1" | "hel1" | "ash1" | "hil1")[] | undefined;
|
|
500
469
|
readonly scale_to_zero?: boolean | undefined;
|
|
501
470
|
readonly idle_timeout_seconds?: number | undefined;
|
|
502
471
|
readonly min_instances?: number | undefined;
|
|
503
472
|
}[] | undefined;
|
|
504
|
-
readonly
|
|
473
|
+
readonly domains?: readonly {
|
|
474
|
+
readonly hostname: string;
|
|
475
|
+
readonly service: string;
|
|
476
|
+
readonly redirect_https?: boolean | undefined;
|
|
477
|
+
readonly www_redirect?: "apex" | "www" | "none" | undefined;
|
|
478
|
+
readonly aliases?: readonly string[] | undefined;
|
|
479
|
+
}[] | undefined;
|
|
480
|
+
};
|
|
481
|
+
readonly development?: {
|
|
505
482
|
readonly env?: {
|
|
506
483
|
readonly [x: string]: {
|
|
507
484
|
readonly value: string;
|
|
@@ -512,11 +489,12 @@ export declare const projectManifestEndpoints: {
|
|
|
512
489
|
readonly attr: string;
|
|
513
490
|
};
|
|
514
491
|
} | undefined;
|
|
492
|
+
readonly region?: "fsn1" | "nbg1" | "hel1" | "ash1" | "hil1" | undefined;
|
|
515
493
|
readonly build?: {
|
|
516
|
-
readonly context?: string | undefined;
|
|
517
|
-
readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
|
|
518
494
|
readonly dockerfile?: string | undefined;
|
|
519
|
-
readonly buildpack?: "auto" | "
|
|
495
|
+
readonly buildpack?: "auto" | "ruby" | "node" | "python" | "static" | "dockerfile" | undefined;
|
|
496
|
+
readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
|
|
497
|
+
readonly context?: string | undefined;
|
|
520
498
|
readonly docker_context?: string | undefined;
|
|
521
499
|
readonly build_command?: string | undefined;
|
|
522
500
|
readonly ignore?: readonly string[] | undefined;
|
|
@@ -524,12 +502,35 @@ export declare const projectManifestEndpoints: {
|
|
|
524
502
|
readonly reproducible?: boolean | undefined;
|
|
525
503
|
} | undefined;
|
|
526
504
|
readonly deploy?: {
|
|
527
|
-
readonly strategy?: "
|
|
505
|
+
readonly strategy?: "rolling" | "blue-green" | "immediate" | undefined;
|
|
528
506
|
readonly release_command?: string | undefined;
|
|
529
507
|
readonly health_check_path?: string | undefined;
|
|
530
508
|
readonly health_check_timeout?: number | undefined;
|
|
531
509
|
readonly graceful_shutdown?: number | undefined;
|
|
532
510
|
} | undefined;
|
|
511
|
+
readonly services?: readonly {
|
|
512
|
+
readonly name: string;
|
|
513
|
+
readonly port?: number | undefined;
|
|
514
|
+
readonly env?: readonly string[] | undefined;
|
|
515
|
+
readonly resources?: readonly string[] | undefined;
|
|
516
|
+
readonly max_instances?: number | undefined;
|
|
517
|
+
readonly command?: string | undefined;
|
|
518
|
+
readonly type?: "function" | "web" | "worker" | "cron" | undefined;
|
|
519
|
+
readonly instances?: number | undefined;
|
|
520
|
+
readonly instance_type?: "nano" | "micro" | "standard" | "large" | "small" | "xlarge" | undefined;
|
|
521
|
+
readonly cron_schedule?: string | undefined;
|
|
522
|
+
readonly regions?: readonly ("fsn1" | "nbg1" | "hel1" | "ash1" | "hil1")[] | undefined;
|
|
523
|
+
readonly scale_to_zero?: boolean | undefined;
|
|
524
|
+
readonly idle_timeout_seconds?: number | undefined;
|
|
525
|
+
readonly min_instances?: number | undefined;
|
|
526
|
+
}[] | undefined;
|
|
527
|
+
readonly domains?: readonly {
|
|
528
|
+
readonly hostname: string;
|
|
529
|
+
readonly service: string;
|
|
530
|
+
readonly redirect_https?: boolean | undefined;
|
|
531
|
+
readonly www_redirect?: "apex" | "www" | "none" | undefined;
|
|
532
|
+
readonly aliases?: readonly string[] | undefined;
|
|
533
|
+
}[] | undefined;
|
|
533
534
|
};
|
|
534
535
|
}, never>>;
|
|
535
536
|
resources: Schema.optional<Schema.Struct<{
|
|
@@ -620,6 +621,7 @@ export declare const projectManifestEndpoints: {
|
|
|
620
621
|
command: Schema.optional<typeof Schema.String>;
|
|
621
622
|
}>>;
|
|
622
623
|
command: Schema.optional<typeof Schema.String>;
|
|
624
|
+
release_command: Schema.optional<typeof Schema.String>;
|
|
623
625
|
port: Schema.optional<Schema.filter<Schema.filter<typeof Schema.Number>>>;
|
|
624
626
|
instances: Schema.optional<Schema.filter<Schema.filter<typeof Schema.Number>>>;
|
|
625
627
|
instance_type: Schema.optional<Schema.Literal<["nano", "micro", "small", "standard", "large", "xlarge"]>>;
|
|
@@ -659,31 +661,7 @@ export declare const projectManifestEndpoints: {
|
|
|
659
661
|
aliases: Schema.optional<Schema.Array$<typeof Schema.String>>;
|
|
660
662
|
}>>>;
|
|
661
663
|
environments: Schema.optional<Schema.SchemaClass<{
|
|
662
|
-
readonly
|
|
663
|
-
readonly domains?: readonly {
|
|
664
|
-
readonly service: string;
|
|
665
|
-
readonly hostname: string;
|
|
666
|
-
readonly redirect_https?: boolean | undefined;
|
|
667
|
-
readonly www_redirect?: "none" | "apex" | "www" | undefined;
|
|
668
|
-
readonly aliases?: readonly string[] | undefined;
|
|
669
|
-
}[] | undefined;
|
|
670
|
-
readonly services?: readonly {
|
|
671
|
-
readonly name: string;
|
|
672
|
-
readonly type?: "function" | "cron" | "web" | "worker" | undefined;
|
|
673
|
-
readonly port?: number | undefined;
|
|
674
|
-
readonly env?: readonly string[] | undefined;
|
|
675
|
-
readonly resources?: readonly string[] | undefined;
|
|
676
|
-
readonly instances?: number | undefined;
|
|
677
|
-
readonly max_instances?: number | undefined;
|
|
678
|
-
readonly command?: string | undefined;
|
|
679
|
-
readonly instance_type?: "nano" | "micro" | "standard" | "large" | "xlarge" | "small" | undefined;
|
|
680
|
-
readonly cron_schedule?: string | undefined;
|
|
681
|
-
readonly regions?: readonly ("fsn1" | "nbg1" | "hel1" | "ash1" | "hil1")[] | undefined;
|
|
682
|
-
readonly scale_to_zero?: boolean | undefined;
|
|
683
|
-
readonly idle_timeout_seconds?: number | undefined;
|
|
684
|
-
readonly min_instances?: number | undefined;
|
|
685
|
-
}[] | undefined;
|
|
686
|
-
readonly region?: "fsn1" | "nbg1" | "hel1" | "ash1" | "hil1" | undefined;
|
|
664
|
+
readonly production?: {
|
|
687
665
|
readonly env?: {
|
|
688
666
|
readonly [x: string]: {
|
|
689
667
|
readonly value: string;
|
|
@@ -694,11 +672,12 @@ export declare const projectManifestEndpoints: {
|
|
|
694
672
|
readonly attr: string;
|
|
695
673
|
};
|
|
696
674
|
} | undefined;
|
|
675
|
+
readonly region?: "fsn1" | "nbg1" | "hel1" | "ash1" | "hil1" | undefined;
|
|
697
676
|
readonly build?: {
|
|
698
|
-
readonly context?: string | undefined;
|
|
699
|
-
readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
|
|
700
677
|
readonly dockerfile?: string | undefined;
|
|
701
|
-
readonly buildpack?: "auto" | "
|
|
678
|
+
readonly buildpack?: "auto" | "ruby" | "node" | "python" | "static" | "dockerfile" | undefined;
|
|
679
|
+
readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
|
|
680
|
+
readonly context?: string | undefined;
|
|
702
681
|
readonly docker_context?: string | undefined;
|
|
703
682
|
readonly build_command?: string | undefined;
|
|
704
683
|
readonly ignore?: readonly string[] | undefined;
|
|
@@ -706,38 +685,37 @@ export declare const projectManifestEndpoints: {
|
|
|
706
685
|
readonly reproducible?: boolean | undefined;
|
|
707
686
|
} | undefined;
|
|
708
687
|
readonly deploy?: {
|
|
709
|
-
readonly strategy?: "
|
|
688
|
+
readonly strategy?: "rolling" | "blue-green" | "immediate" | undefined;
|
|
710
689
|
readonly release_command?: string | undefined;
|
|
711
690
|
readonly health_check_path?: string | undefined;
|
|
712
691
|
readonly health_check_timeout?: number | undefined;
|
|
713
692
|
readonly graceful_shutdown?: number | undefined;
|
|
714
693
|
} | undefined;
|
|
715
|
-
};
|
|
716
|
-
readonly staging?: {
|
|
717
|
-
readonly domains?: readonly {
|
|
718
|
-
readonly service: string;
|
|
719
|
-
readonly hostname: string;
|
|
720
|
-
readonly redirect_https?: boolean | undefined;
|
|
721
|
-
readonly www_redirect?: "none" | "apex" | "www" | undefined;
|
|
722
|
-
readonly aliases?: readonly string[] | undefined;
|
|
723
|
-
}[] | undefined;
|
|
724
694
|
readonly services?: readonly {
|
|
725
|
-
readonly name: string;
|
|
726
|
-
readonly type?: "function" | "cron" | "web" | "worker" | undefined;
|
|
727
695
|
readonly port?: number | undefined;
|
|
728
696
|
readonly env?: readonly string[] | undefined;
|
|
697
|
+
readonly name: string;
|
|
729
698
|
readonly resources?: readonly string[] | undefined;
|
|
730
|
-
readonly instances?: number | undefined;
|
|
731
699
|
readonly max_instances?: number | undefined;
|
|
732
700
|
readonly command?: string | undefined;
|
|
733
|
-
readonly
|
|
701
|
+
readonly type?: "function" | "web" | "worker" | "cron" | undefined;
|
|
702
|
+
readonly instances?: number | undefined;
|
|
703
|
+
readonly instance_type?: "nano" | "micro" | "standard" | "large" | "small" | "xlarge" | undefined;
|
|
734
704
|
readonly cron_schedule?: string | undefined;
|
|
735
705
|
readonly regions?: readonly ("fsn1" | "nbg1" | "hel1" | "ash1" | "hil1")[] | undefined;
|
|
736
706
|
readonly scale_to_zero?: boolean | undefined;
|
|
737
707
|
readonly idle_timeout_seconds?: number | undefined;
|
|
738
708
|
readonly min_instances?: number | undefined;
|
|
739
709
|
}[] | undefined;
|
|
740
|
-
readonly
|
|
710
|
+
readonly domains?: readonly {
|
|
711
|
+
readonly hostname: string;
|
|
712
|
+
readonly service: string;
|
|
713
|
+
readonly redirect_https?: boolean | undefined;
|
|
714
|
+
readonly www_redirect?: "apex" | "www" | "none" | undefined;
|
|
715
|
+
readonly aliases?: readonly string[] | undefined;
|
|
716
|
+
}[] | undefined;
|
|
717
|
+
};
|
|
718
|
+
readonly staging?: {
|
|
741
719
|
readonly env?: {
|
|
742
720
|
readonly [x: string]: {
|
|
743
721
|
readonly value: string;
|
|
@@ -748,11 +726,12 @@ export declare const projectManifestEndpoints: {
|
|
|
748
726
|
readonly attr: string;
|
|
749
727
|
};
|
|
750
728
|
} | undefined;
|
|
729
|
+
readonly region?: "fsn1" | "nbg1" | "hel1" | "ash1" | "hil1" | undefined;
|
|
751
730
|
readonly build?: {
|
|
752
|
-
readonly context?: string | undefined;
|
|
753
|
-
readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
|
|
754
731
|
readonly dockerfile?: string | undefined;
|
|
755
|
-
readonly buildpack?: "auto" | "
|
|
732
|
+
readonly buildpack?: "auto" | "ruby" | "node" | "python" | "static" | "dockerfile" | undefined;
|
|
733
|
+
readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
|
|
734
|
+
readonly context?: string | undefined;
|
|
756
735
|
readonly docker_context?: string | undefined;
|
|
757
736
|
readonly build_command?: string | undefined;
|
|
758
737
|
readonly ignore?: readonly string[] | undefined;
|
|
@@ -760,38 +739,37 @@ export declare const projectManifestEndpoints: {
|
|
|
760
739
|
readonly reproducible?: boolean | undefined;
|
|
761
740
|
} | undefined;
|
|
762
741
|
readonly deploy?: {
|
|
763
|
-
readonly strategy?: "
|
|
742
|
+
readonly strategy?: "rolling" | "blue-green" | "immediate" | undefined;
|
|
764
743
|
readonly release_command?: string | undefined;
|
|
765
744
|
readonly health_check_path?: string | undefined;
|
|
766
745
|
readonly health_check_timeout?: number | undefined;
|
|
767
746
|
readonly graceful_shutdown?: number | undefined;
|
|
768
747
|
} | undefined;
|
|
769
|
-
};
|
|
770
|
-
readonly production?: {
|
|
771
|
-
readonly domains?: readonly {
|
|
772
|
-
readonly service: string;
|
|
773
|
-
readonly hostname: string;
|
|
774
|
-
readonly redirect_https?: boolean | undefined;
|
|
775
|
-
readonly www_redirect?: "none" | "apex" | "www" | undefined;
|
|
776
|
-
readonly aliases?: readonly string[] | undefined;
|
|
777
|
-
}[] | undefined;
|
|
778
748
|
readonly services?: readonly {
|
|
779
|
-
readonly name: string;
|
|
780
|
-
readonly type?: "function" | "cron" | "web" | "worker" | undefined;
|
|
781
749
|
readonly port?: number | undefined;
|
|
782
750
|
readonly env?: readonly string[] | undefined;
|
|
751
|
+
readonly name: string;
|
|
783
752
|
readonly resources?: readonly string[] | undefined;
|
|
784
|
-
readonly instances?: number | undefined;
|
|
785
753
|
readonly max_instances?: number | undefined;
|
|
786
754
|
readonly command?: string | undefined;
|
|
787
|
-
readonly
|
|
755
|
+
readonly type?: "function" | "web" | "worker" | "cron" | undefined;
|
|
756
|
+
readonly instances?: number | undefined;
|
|
757
|
+
readonly instance_type?: "nano" | "micro" | "standard" | "large" | "small" | "xlarge" | undefined;
|
|
788
758
|
readonly cron_schedule?: string | undefined;
|
|
789
759
|
readonly regions?: readonly ("fsn1" | "nbg1" | "hel1" | "ash1" | "hil1")[] | undefined;
|
|
790
760
|
readonly scale_to_zero?: boolean | undefined;
|
|
791
761
|
readonly idle_timeout_seconds?: number | undefined;
|
|
792
762
|
readonly min_instances?: number | undefined;
|
|
793
763
|
}[] | undefined;
|
|
794
|
-
readonly
|
|
764
|
+
readonly domains?: readonly {
|
|
765
|
+
readonly hostname: string;
|
|
766
|
+
readonly service: string;
|
|
767
|
+
readonly redirect_https?: boolean | undefined;
|
|
768
|
+
readonly www_redirect?: "apex" | "www" | "none" | undefined;
|
|
769
|
+
readonly aliases?: readonly string[] | undefined;
|
|
770
|
+
}[] | undefined;
|
|
771
|
+
};
|
|
772
|
+
readonly preview?: {
|
|
795
773
|
readonly env?: {
|
|
796
774
|
readonly [x: string]: {
|
|
797
775
|
readonly value: string;
|
|
@@ -802,11 +780,12 @@ export declare const projectManifestEndpoints: {
|
|
|
802
780
|
readonly attr: string;
|
|
803
781
|
};
|
|
804
782
|
} | undefined;
|
|
783
|
+
readonly region?: "fsn1" | "nbg1" | "hel1" | "ash1" | "hil1" | undefined;
|
|
805
784
|
readonly build?: {
|
|
806
|
-
readonly context?: string | undefined;
|
|
807
|
-
readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
|
|
808
785
|
readonly dockerfile?: string | undefined;
|
|
809
|
-
readonly buildpack?: "auto" | "
|
|
786
|
+
readonly buildpack?: "auto" | "ruby" | "node" | "python" | "static" | "dockerfile" | undefined;
|
|
787
|
+
readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
|
|
788
|
+
readonly context?: string | undefined;
|
|
810
789
|
readonly docker_context?: string | undefined;
|
|
811
790
|
readonly build_command?: string | undefined;
|
|
812
791
|
readonly ignore?: readonly string[] | undefined;
|
|
@@ -814,38 +793,37 @@ export declare const projectManifestEndpoints: {
|
|
|
814
793
|
readonly reproducible?: boolean | undefined;
|
|
815
794
|
} | undefined;
|
|
816
795
|
readonly deploy?: {
|
|
817
|
-
readonly strategy?: "
|
|
796
|
+
readonly strategy?: "rolling" | "blue-green" | "immediate" | undefined;
|
|
818
797
|
readonly release_command?: string | undefined;
|
|
819
798
|
readonly health_check_path?: string | undefined;
|
|
820
799
|
readonly health_check_timeout?: number | undefined;
|
|
821
800
|
readonly graceful_shutdown?: number | undefined;
|
|
822
801
|
} | undefined;
|
|
823
|
-
};
|
|
824
|
-
readonly preview?: {
|
|
825
|
-
readonly domains?: readonly {
|
|
826
|
-
readonly service: string;
|
|
827
|
-
readonly hostname: string;
|
|
828
|
-
readonly redirect_https?: boolean | undefined;
|
|
829
|
-
readonly www_redirect?: "none" | "apex" | "www" | undefined;
|
|
830
|
-
readonly aliases?: readonly string[] | undefined;
|
|
831
|
-
}[] | undefined;
|
|
832
802
|
readonly services?: readonly {
|
|
833
|
-
readonly name: string;
|
|
834
|
-
readonly type?: "function" | "cron" | "web" | "worker" | undefined;
|
|
835
803
|
readonly port?: number | undefined;
|
|
836
804
|
readonly env?: readonly string[] | undefined;
|
|
805
|
+
readonly name: string;
|
|
837
806
|
readonly resources?: readonly string[] | undefined;
|
|
838
|
-
readonly instances?: number | undefined;
|
|
839
807
|
readonly max_instances?: number | undefined;
|
|
840
808
|
readonly command?: string | undefined;
|
|
841
|
-
readonly
|
|
809
|
+
readonly type?: "function" | "web" | "worker" | "cron" | undefined;
|
|
810
|
+
readonly instances?: number | undefined;
|
|
811
|
+
readonly instance_type?: "nano" | "micro" | "standard" | "large" | "small" | "xlarge" | undefined;
|
|
842
812
|
readonly cron_schedule?: string | undefined;
|
|
843
813
|
readonly regions?: readonly ("fsn1" | "nbg1" | "hel1" | "ash1" | "hil1")[] | undefined;
|
|
844
814
|
readonly scale_to_zero?: boolean | undefined;
|
|
845
815
|
readonly idle_timeout_seconds?: number | undefined;
|
|
846
816
|
readonly min_instances?: number | undefined;
|
|
847
817
|
}[] | undefined;
|
|
848
|
-
readonly
|
|
818
|
+
readonly domains?: readonly {
|
|
819
|
+
readonly hostname: string;
|
|
820
|
+
readonly service: string;
|
|
821
|
+
readonly redirect_https?: boolean | undefined;
|
|
822
|
+
readonly www_redirect?: "apex" | "www" | "none" | undefined;
|
|
823
|
+
readonly aliases?: readonly string[] | undefined;
|
|
824
|
+
}[] | undefined;
|
|
825
|
+
};
|
|
826
|
+
readonly development?: {
|
|
849
827
|
readonly env?: {
|
|
850
828
|
readonly [x: string]: {
|
|
851
829
|
readonly value: string;
|
|
@@ -856,11 +834,12 @@ export declare const projectManifestEndpoints: {
|
|
|
856
834
|
readonly attr: string;
|
|
857
835
|
};
|
|
858
836
|
} | undefined;
|
|
837
|
+
readonly region?: "fsn1" | "nbg1" | "hel1" | "ash1" | "hil1" | undefined;
|
|
859
838
|
readonly build?: {
|
|
860
|
-
readonly context?: string | undefined;
|
|
861
|
-
readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
|
|
862
839
|
readonly dockerfile?: string | undefined;
|
|
863
|
-
readonly buildpack?: "auto" | "
|
|
840
|
+
readonly buildpack?: "auto" | "ruby" | "node" | "python" | "static" | "dockerfile" | undefined;
|
|
841
|
+
readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
|
|
842
|
+
readonly context?: string | undefined;
|
|
864
843
|
readonly docker_context?: string | undefined;
|
|
865
844
|
readonly build_command?: string | undefined;
|
|
866
845
|
readonly ignore?: readonly string[] | undefined;
|
|
@@ -868,39 +847,38 @@ export declare const projectManifestEndpoints: {
|
|
|
868
847
|
readonly reproducible?: boolean | undefined;
|
|
869
848
|
} | undefined;
|
|
870
849
|
readonly deploy?: {
|
|
871
|
-
readonly strategy?: "
|
|
850
|
+
readonly strategy?: "rolling" | "blue-green" | "immediate" | undefined;
|
|
872
851
|
readonly release_command?: string | undefined;
|
|
873
852
|
readonly health_check_path?: string | undefined;
|
|
874
853
|
readonly health_check_timeout?: number | undefined;
|
|
875
854
|
readonly graceful_shutdown?: number | undefined;
|
|
876
855
|
} | undefined;
|
|
877
|
-
};
|
|
878
|
-
}, {
|
|
879
|
-
readonly development?: {
|
|
880
|
-
readonly domains?: readonly {
|
|
881
|
-
readonly service: string;
|
|
882
|
-
readonly hostname: string;
|
|
883
|
-
readonly redirect_https?: boolean | undefined;
|
|
884
|
-
readonly www_redirect?: "none" | "apex" | "www" | undefined;
|
|
885
|
-
readonly aliases?: readonly string[] | undefined;
|
|
886
|
-
}[] | undefined;
|
|
887
856
|
readonly services?: readonly {
|
|
888
|
-
readonly name: string;
|
|
889
|
-
readonly type?: "function" | "cron" | "web" | "worker" | undefined;
|
|
890
857
|
readonly port?: number | undefined;
|
|
891
858
|
readonly env?: readonly string[] | undefined;
|
|
859
|
+
readonly name: string;
|
|
892
860
|
readonly resources?: readonly string[] | undefined;
|
|
893
|
-
readonly instances?: number | undefined;
|
|
894
861
|
readonly max_instances?: number | undefined;
|
|
895
862
|
readonly command?: string | undefined;
|
|
896
|
-
readonly
|
|
863
|
+
readonly type?: "function" | "web" | "worker" | "cron" | undefined;
|
|
864
|
+
readonly instances?: number | undefined;
|
|
865
|
+
readonly instance_type?: "nano" | "micro" | "standard" | "large" | "small" | "xlarge" | undefined;
|
|
897
866
|
readonly cron_schedule?: string | undefined;
|
|
898
867
|
readonly regions?: readonly ("fsn1" | "nbg1" | "hel1" | "ash1" | "hil1")[] | undefined;
|
|
899
868
|
readonly scale_to_zero?: boolean | undefined;
|
|
900
869
|
readonly idle_timeout_seconds?: number | undefined;
|
|
901
870
|
readonly min_instances?: number | undefined;
|
|
902
871
|
}[] | undefined;
|
|
903
|
-
readonly
|
|
872
|
+
readonly domains?: readonly {
|
|
873
|
+
readonly hostname: string;
|
|
874
|
+
readonly service: string;
|
|
875
|
+
readonly redirect_https?: boolean | undefined;
|
|
876
|
+
readonly www_redirect?: "apex" | "www" | "none" | undefined;
|
|
877
|
+
readonly aliases?: readonly string[] | undefined;
|
|
878
|
+
}[] | undefined;
|
|
879
|
+
};
|
|
880
|
+
}, {
|
|
881
|
+
readonly production?: {
|
|
904
882
|
readonly env?: {
|
|
905
883
|
readonly [x: string]: {
|
|
906
884
|
readonly value: string;
|
|
@@ -911,11 +889,12 @@ export declare const projectManifestEndpoints: {
|
|
|
911
889
|
readonly attr: string;
|
|
912
890
|
};
|
|
913
891
|
} | undefined;
|
|
892
|
+
readonly region?: "fsn1" | "nbg1" | "hel1" | "ash1" | "hil1" | undefined;
|
|
914
893
|
readonly build?: {
|
|
915
|
-
readonly context?: string | undefined;
|
|
916
|
-
readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
|
|
917
894
|
readonly dockerfile?: string | undefined;
|
|
918
|
-
readonly buildpack?: "auto" | "
|
|
895
|
+
readonly buildpack?: "auto" | "ruby" | "node" | "python" | "static" | "dockerfile" | undefined;
|
|
896
|
+
readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
|
|
897
|
+
readonly context?: string | undefined;
|
|
919
898
|
readonly docker_context?: string | undefined;
|
|
920
899
|
readonly build_command?: string | undefined;
|
|
921
900
|
readonly ignore?: readonly string[] | undefined;
|
|
@@ -923,38 +902,37 @@ export declare const projectManifestEndpoints: {
|
|
|
923
902
|
readonly reproducible?: boolean | undefined;
|
|
924
903
|
} | undefined;
|
|
925
904
|
readonly deploy?: {
|
|
926
|
-
readonly strategy?: "
|
|
905
|
+
readonly strategy?: "rolling" | "blue-green" | "immediate" | undefined;
|
|
927
906
|
readonly release_command?: string | undefined;
|
|
928
907
|
readonly health_check_path?: string | undefined;
|
|
929
908
|
readonly health_check_timeout?: number | undefined;
|
|
930
909
|
readonly graceful_shutdown?: number | undefined;
|
|
931
910
|
} | undefined;
|
|
932
|
-
};
|
|
933
|
-
readonly staging?: {
|
|
934
|
-
readonly domains?: readonly {
|
|
935
|
-
readonly service: string;
|
|
936
|
-
readonly hostname: string;
|
|
937
|
-
readonly redirect_https?: boolean | undefined;
|
|
938
|
-
readonly www_redirect?: "none" | "apex" | "www" | undefined;
|
|
939
|
-
readonly aliases?: readonly string[] | undefined;
|
|
940
|
-
}[] | undefined;
|
|
941
911
|
readonly services?: readonly {
|
|
942
912
|
readonly name: string;
|
|
943
|
-
readonly type?: "function" | "cron" | "web" | "worker" | undefined;
|
|
944
913
|
readonly port?: number | undefined;
|
|
945
914
|
readonly env?: readonly string[] | undefined;
|
|
946
915
|
readonly resources?: readonly string[] | undefined;
|
|
947
|
-
readonly instances?: number | undefined;
|
|
948
916
|
readonly max_instances?: number | undefined;
|
|
949
917
|
readonly command?: string | undefined;
|
|
950
|
-
readonly
|
|
918
|
+
readonly type?: "function" | "web" | "worker" | "cron" | undefined;
|
|
919
|
+
readonly instances?: number | undefined;
|
|
920
|
+
readonly instance_type?: "nano" | "micro" | "standard" | "large" | "small" | "xlarge" | undefined;
|
|
951
921
|
readonly cron_schedule?: string | undefined;
|
|
952
922
|
readonly regions?: readonly ("fsn1" | "nbg1" | "hel1" | "ash1" | "hil1")[] | undefined;
|
|
953
923
|
readonly scale_to_zero?: boolean | undefined;
|
|
954
924
|
readonly idle_timeout_seconds?: number | undefined;
|
|
955
925
|
readonly min_instances?: number | undefined;
|
|
956
926
|
}[] | undefined;
|
|
957
|
-
readonly
|
|
927
|
+
readonly domains?: readonly {
|
|
928
|
+
readonly hostname: string;
|
|
929
|
+
readonly service: string;
|
|
930
|
+
readonly redirect_https?: boolean | undefined;
|
|
931
|
+
readonly www_redirect?: "apex" | "www" | "none" | undefined;
|
|
932
|
+
readonly aliases?: readonly string[] | undefined;
|
|
933
|
+
}[] | undefined;
|
|
934
|
+
};
|
|
935
|
+
readonly staging?: {
|
|
958
936
|
readonly env?: {
|
|
959
937
|
readonly [x: string]: {
|
|
960
938
|
readonly value: string;
|
|
@@ -965,11 +943,12 @@ export declare const projectManifestEndpoints: {
|
|
|
965
943
|
readonly attr: string;
|
|
966
944
|
};
|
|
967
945
|
} | undefined;
|
|
946
|
+
readonly region?: "fsn1" | "nbg1" | "hel1" | "ash1" | "hil1" | undefined;
|
|
968
947
|
readonly build?: {
|
|
969
|
-
readonly context?: string | undefined;
|
|
970
|
-
readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
|
|
971
948
|
readonly dockerfile?: string | undefined;
|
|
972
|
-
readonly buildpack?: "auto" | "
|
|
949
|
+
readonly buildpack?: "auto" | "ruby" | "node" | "python" | "static" | "dockerfile" | undefined;
|
|
950
|
+
readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
|
|
951
|
+
readonly context?: string | undefined;
|
|
973
952
|
readonly docker_context?: string | undefined;
|
|
974
953
|
readonly build_command?: string | undefined;
|
|
975
954
|
readonly ignore?: readonly string[] | undefined;
|
|
@@ -977,38 +956,37 @@ export declare const projectManifestEndpoints: {
|
|
|
977
956
|
readonly reproducible?: boolean | undefined;
|
|
978
957
|
} | undefined;
|
|
979
958
|
readonly deploy?: {
|
|
980
|
-
readonly strategy?: "
|
|
959
|
+
readonly strategy?: "rolling" | "blue-green" | "immediate" | undefined;
|
|
981
960
|
readonly release_command?: string | undefined;
|
|
982
961
|
readonly health_check_path?: string | undefined;
|
|
983
962
|
readonly health_check_timeout?: number | undefined;
|
|
984
963
|
readonly graceful_shutdown?: number | undefined;
|
|
985
964
|
} | undefined;
|
|
986
|
-
};
|
|
987
|
-
readonly production?: {
|
|
988
|
-
readonly domains?: readonly {
|
|
989
|
-
readonly service: string;
|
|
990
|
-
readonly hostname: string;
|
|
991
|
-
readonly redirect_https?: boolean | undefined;
|
|
992
|
-
readonly www_redirect?: "none" | "apex" | "www" | undefined;
|
|
993
|
-
readonly aliases?: readonly string[] | undefined;
|
|
994
|
-
}[] | undefined;
|
|
995
965
|
readonly services?: readonly {
|
|
996
966
|
readonly name: string;
|
|
997
|
-
readonly type?: "function" | "cron" | "web" | "worker" | undefined;
|
|
998
967
|
readonly port?: number | undefined;
|
|
999
968
|
readonly env?: readonly string[] | undefined;
|
|
1000
969
|
readonly resources?: readonly string[] | undefined;
|
|
1001
|
-
readonly instances?: number | undefined;
|
|
1002
970
|
readonly max_instances?: number | undefined;
|
|
1003
971
|
readonly command?: string | undefined;
|
|
1004
|
-
readonly
|
|
972
|
+
readonly type?: "function" | "web" | "worker" | "cron" | undefined;
|
|
973
|
+
readonly instances?: number | undefined;
|
|
974
|
+
readonly instance_type?: "nano" | "micro" | "standard" | "large" | "small" | "xlarge" | undefined;
|
|
1005
975
|
readonly cron_schedule?: string | undefined;
|
|
1006
976
|
readonly regions?: readonly ("fsn1" | "nbg1" | "hel1" | "ash1" | "hil1")[] | undefined;
|
|
1007
977
|
readonly scale_to_zero?: boolean | undefined;
|
|
1008
978
|
readonly idle_timeout_seconds?: number | undefined;
|
|
1009
979
|
readonly min_instances?: number | undefined;
|
|
1010
980
|
}[] | undefined;
|
|
1011
|
-
readonly
|
|
981
|
+
readonly domains?: readonly {
|
|
982
|
+
readonly hostname: string;
|
|
983
|
+
readonly service: string;
|
|
984
|
+
readonly redirect_https?: boolean | undefined;
|
|
985
|
+
readonly www_redirect?: "apex" | "www" | "none" | undefined;
|
|
986
|
+
readonly aliases?: readonly string[] | undefined;
|
|
987
|
+
}[] | undefined;
|
|
988
|
+
};
|
|
989
|
+
readonly preview?: {
|
|
1012
990
|
readonly env?: {
|
|
1013
991
|
readonly [x: string]: {
|
|
1014
992
|
readonly value: string;
|
|
@@ -1019,11 +997,12 @@ export declare const projectManifestEndpoints: {
|
|
|
1019
997
|
readonly attr: string;
|
|
1020
998
|
};
|
|
1021
999
|
} | undefined;
|
|
1000
|
+
readonly region?: "fsn1" | "nbg1" | "hel1" | "ash1" | "hil1" | undefined;
|
|
1022
1001
|
readonly build?: {
|
|
1023
|
-
readonly context?: string | undefined;
|
|
1024
|
-
readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
|
|
1025
1002
|
readonly dockerfile?: string | undefined;
|
|
1026
|
-
readonly buildpack?: "auto" | "
|
|
1003
|
+
readonly buildpack?: "auto" | "ruby" | "node" | "python" | "static" | "dockerfile" | undefined;
|
|
1004
|
+
readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
|
|
1005
|
+
readonly context?: string | undefined;
|
|
1027
1006
|
readonly docker_context?: string | undefined;
|
|
1028
1007
|
readonly build_command?: string | undefined;
|
|
1029
1008
|
readonly ignore?: readonly string[] | undefined;
|
|
@@ -1031,38 +1010,37 @@ export declare const projectManifestEndpoints: {
|
|
|
1031
1010
|
readonly reproducible?: boolean | undefined;
|
|
1032
1011
|
} | undefined;
|
|
1033
1012
|
readonly deploy?: {
|
|
1034
|
-
readonly strategy?: "
|
|
1013
|
+
readonly strategy?: "rolling" | "blue-green" | "immediate" | undefined;
|
|
1035
1014
|
readonly release_command?: string | undefined;
|
|
1036
1015
|
readonly health_check_path?: string | undefined;
|
|
1037
1016
|
readonly health_check_timeout?: number | undefined;
|
|
1038
1017
|
readonly graceful_shutdown?: number | undefined;
|
|
1039
1018
|
} | undefined;
|
|
1040
|
-
};
|
|
1041
|
-
readonly preview?: {
|
|
1042
|
-
readonly domains?: readonly {
|
|
1043
|
-
readonly service: string;
|
|
1044
|
-
readonly hostname: string;
|
|
1045
|
-
readonly redirect_https?: boolean | undefined;
|
|
1046
|
-
readonly www_redirect?: "none" | "apex" | "www" | undefined;
|
|
1047
|
-
readonly aliases?: readonly string[] | undefined;
|
|
1048
|
-
}[] | undefined;
|
|
1049
1019
|
readonly services?: readonly {
|
|
1050
1020
|
readonly name: string;
|
|
1051
|
-
readonly type?: "function" | "cron" | "web" | "worker" | undefined;
|
|
1052
1021
|
readonly port?: number | undefined;
|
|
1053
1022
|
readonly env?: readonly string[] | undefined;
|
|
1054
1023
|
readonly resources?: readonly string[] | undefined;
|
|
1055
|
-
readonly instances?: number | undefined;
|
|
1056
1024
|
readonly max_instances?: number | undefined;
|
|
1057
1025
|
readonly command?: string | undefined;
|
|
1058
|
-
readonly
|
|
1026
|
+
readonly type?: "function" | "web" | "worker" | "cron" | undefined;
|
|
1027
|
+
readonly instances?: number | undefined;
|
|
1028
|
+
readonly instance_type?: "nano" | "micro" | "standard" | "large" | "small" | "xlarge" | undefined;
|
|
1059
1029
|
readonly cron_schedule?: string | undefined;
|
|
1060
1030
|
readonly regions?: readonly ("fsn1" | "nbg1" | "hel1" | "ash1" | "hil1")[] | undefined;
|
|
1061
1031
|
readonly scale_to_zero?: boolean | undefined;
|
|
1062
1032
|
readonly idle_timeout_seconds?: number | undefined;
|
|
1063
1033
|
readonly min_instances?: number | undefined;
|
|
1064
1034
|
}[] | undefined;
|
|
1065
|
-
readonly
|
|
1035
|
+
readonly domains?: readonly {
|
|
1036
|
+
readonly hostname: string;
|
|
1037
|
+
readonly service: string;
|
|
1038
|
+
readonly redirect_https?: boolean | undefined;
|
|
1039
|
+
readonly www_redirect?: "apex" | "www" | "none" | undefined;
|
|
1040
|
+
readonly aliases?: readonly string[] | undefined;
|
|
1041
|
+
}[] | undefined;
|
|
1042
|
+
};
|
|
1043
|
+
readonly development?: {
|
|
1066
1044
|
readonly env?: {
|
|
1067
1045
|
readonly [x: string]: {
|
|
1068
1046
|
readonly value: string;
|
|
@@ -1073,11 +1051,12 @@ export declare const projectManifestEndpoints: {
|
|
|
1073
1051
|
readonly attr: string;
|
|
1074
1052
|
};
|
|
1075
1053
|
} | undefined;
|
|
1054
|
+
readonly region?: "fsn1" | "nbg1" | "hel1" | "ash1" | "hil1" | undefined;
|
|
1076
1055
|
readonly build?: {
|
|
1077
|
-
readonly context?: string | undefined;
|
|
1078
|
-
readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
|
|
1079
1056
|
readonly dockerfile?: string | undefined;
|
|
1080
|
-
readonly buildpack?: "auto" | "
|
|
1057
|
+
readonly buildpack?: "auto" | "ruby" | "node" | "python" | "static" | "dockerfile" | undefined;
|
|
1058
|
+
readonly strategy?: "auto" | "dockerfile" | "buildpack" | "nixpacks" | undefined;
|
|
1059
|
+
readonly context?: string | undefined;
|
|
1081
1060
|
readonly docker_context?: string | undefined;
|
|
1082
1061
|
readonly build_command?: string | undefined;
|
|
1083
1062
|
readonly ignore?: readonly string[] | undefined;
|
|
@@ -1085,12 +1064,35 @@ export declare const projectManifestEndpoints: {
|
|
|
1085
1064
|
readonly reproducible?: boolean | undefined;
|
|
1086
1065
|
} | undefined;
|
|
1087
1066
|
readonly deploy?: {
|
|
1088
|
-
readonly strategy?: "
|
|
1067
|
+
readonly strategy?: "rolling" | "blue-green" | "immediate" | undefined;
|
|
1089
1068
|
readonly release_command?: string | undefined;
|
|
1090
1069
|
readonly health_check_path?: string | undefined;
|
|
1091
1070
|
readonly health_check_timeout?: number | undefined;
|
|
1092
1071
|
readonly graceful_shutdown?: number | undefined;
|
|
1093
1072
|
} | undefined;
|
|
1073
|
+
readonly services?: readonly {
|
|
1074
|
+
readonly name: string;
|
|
1075
|
+
readonly port?: number | undefined;
|
|
1076
|
+
readonly env?: readonly string[] | undefined;
|
|
1077
|
+
readonly resources?: readonly string[] | undefined;
|
|
1078
|
+
readonly max_instances?: number | undefined;
|
|
1079
|
+
readonly command?: string | undefined;
|
|
1080
|
+
readonly type?: "function" | "web" | "worker" | "cron" | undefined;
|
|
1081
|
+
readonly instances?: number | undefined;
|
|
1082
|
+
readonly instance_type?: "nano" | "micro" | "standard" | "large" | "small" | "xlarge" | undefined;
|
|
1083
|
+
readonly cron_schedule?: string | undefined;
|
|
1084
|
+
readonly regions?: readonly ("fsn1" | "nbg1" | "hel1" | "ash1" | "hil1")[] | undefined;
|
|
1085
|
+
readonly scale_to_zero?: boolean | undefined;
|
|
1086
|
+
readonly idle_timeout_seconds?: number | undefined;
|
|
1087
|
+
readonly min_instances?: number | undefined;
|
|
1088
|
+
}[] | undefined;
|
|
1089
|
+
readonly domains?: readonly {
|
|
1090
|
+
readonly hostname: string;
|
|
1091
|
+
readonly service: string;
|
|
1092
|
+
readonly redirect_https?: boolean | undefined;
|
|
1093
|
+
readonly www_redirect?: "apex" | "www" | "none" | undefined;
|
|
1094
|
+
readonly aliases?: readonly string[] | undefined;
|
|
1095
|
+
}[] | undefined;
|
|
1094
1096
|
};
|
|
1095
1097
|
}, never>>;
|
|
1096
1098
|
resources: Schema.optional<Schema.Struct<{
|