@lepsto/sdk-app 89.5.0 → 89.6.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 +32 -38
- package/dist/_types/gen/client.gen.d.ts +39 -1
- package/dist/_types/gen/deployment/index.d.ts +1 -1
- package/dist/_types/gen/deployment/queryOptions.gen.d.ts +5 -1
- package/dist/_types/gen/manifest.gen.d.ts +1 -1
- package/dist/_types/gen/playground/connect.gen.d.ts +3 -0
- package/dist/_types/gen/playground/index.d.ts +3 -0
- package/dist/_types/gen/playground/queryOptions.gen.d.ts +70 -0
- package/dist/_types/gen/types.gen.d.ts +418 -4
- package/dist/chunk-OSI6GWYM.js +11531 -0
- package/dist/chunk-OSI6GWYM.js.map +1 -0
- package/dist/deployment/index.cjs +5 -0
- package/dist/deployment/index.cjs.map +1 -1
- package/dist/deployment/index.js +5 -1
- package/dist/deployment/index.js.map +1 -1
- package/dist/index.cjs +257 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +23 -11283
- package/dist/index.js.map +1 -1
- package/dist/playground/index.cjs +106 -0
- package/dist/playground/index.cjs.map +1 -0
- package/dist/playground/index.d.cts +1 -0
- package/dist/playground/index.d.ts +1 -0
- package/dist/playground/index.js +78 -0
- package/dist/playground/index.js.map +1 -0
- package/package.json +12 -2
- package/src/gen/bindings.gen.ts +245 -1
- package/src/gen/client.gen.ts +74 -0
- package/src/gen/deployment/index.ts +1 -1
- package/src/gen/deployment/queryOptions.gen.ts +6 -0
- package/src/gen/manifest.gen.ts +22 -1
- package/src/gen/playground/connect.gen.ts +9 -0
- package/src/gen/playground/index.ts +4 -0
- package/src/gen/playground/queryOptions.gen.ts +119 -0
- package/src/gen/types.gen.ts +466 -4
|
@@ -77838,6 +77838,7 @@ export interface DeploymentCanvasGetOutput {
|
|
|
77838
77838
|
sleepState: ("awake" | "sleeping" | "waking" | "stopped" | "wake_failed");
|
|
77839
77839
|
idleMinutes: number;
|
|
77840
77840
|
scaleToZero: boolean;
|
|
77841
|
+
publicDomain?: boolean;
|
|
77841
77842
|
containerPort: number;
|
|
77842
77843
|
environmentId: string;
|
|
77843
77844
|
jobTimeoutSec?: number;
|
|
@@ -78232,6 +78233,7 @@ export interface DeploymentDomainAddOutput {
|
|
|
78232
78233
|
environmentId: string;
|
|
78233
78234
|
routingStatus: ("provisioning" | "propagating" | "active" | "failed");
|
|
78234
78235
|
lastProbeError: (string | null);
|
|
78236
|
+
redirectStatus: number;
|
|
78235
78237
|
dnsInstructions: ({
|
|
78236
78238
|
txt: {
|
|
78237
78239
|
name: string;
|
|
@@ -78248,6 +78250,7 @@ export interface DeploymentDomainAddOutput {
|
|
|
78248
78250
|
routingRecordType: ("A" | "CNAME");
|
|
78249
78251
|
verificationToken: (string | null);
|
|
78250
78252
|
advertisedHostname: string;
|
|
78253
|
+
redirectToDomainId: (string | null);
|
|
78251
78254
|
verificationStatus: ("pending_dns" | "verified" | "dns_failed");
|
|
78252
78255
|
lastVerificationError: (({
|
|
78253
78256
|
code: (string | null);
|
|
@@ -78299,6 +78302,7 @@ export interface DeploymentDomainGetOutput {
|
|
|
78299
78302
|
environmentId: string;
|
|
78300
78303
|
routingStatus: ("provisioning" | "propagating" | "active" | "failed");
|
|
78301
78304
|
lastProbeError: (string | null);
|
|
78305
|
+
redirectStatus: number;
|
|
78302
78306
|
dnsInstructions: ({
|
|
78303
78307
|
txt: {
|
|
78304
78308
|
name: string;
|
|
@@ -78315,6 +78319,7 @@ export interface DeploymentDomainGetOutput {
|
|
|
78315
78319
|
routingRecordType: ("A" | "CNAME");
|
|
78316
78320
|
verificationToken: (string | null);
|
|
78317
78321
|
advertisedHostname: string;
|
|
78322
|
+
redirectToDomainId: (string | null);
|
|
78318
78323
|
verificationStatus: ("pending_dns" | "verified" | "dns_failed");
|
|
78319
78324
|
lastVerificationError: (({
|
|
78320
78325
|
code: (string | null);
|
|
@@ -78357,6 +78362,7 @@ export type DeploymentDomainListOutput = {
|
|
|
78357
78362
|
environmentId: string;
|
|
78358
78363
|
routingStatus: ("provisioning" | "propagating" | "active" | "failed");
|
|
78359
78364
|
lastProbeError: (string | null);
|
|
78365
|
+
redirectStatus: number;
|
|
78360
78366
|
dnsInstructions: ({
|
|
78361
78367
|
txt: {
|
|
78362
78368
|
name: string;
|
|
@@ -78373,6 +78379,7 @@ export type DeploymentDomainListOutput = {
|
|
|
78373
78379
|
routingRecordType: ("A" | "CNAME");
|
|
78374
78380
|
verificationToken: (string | null);
|
|
78375
78381
|
advertisedHostname: string;
|
|
78382
|
+
redirectToDomainId: (string | null);
|
|
78376
78383
|
verificationStatus: ("pending_dns" | "verified" | "dns_failed");
|
|
78377
78384
|
lastVerificationError: (({
|
|
78378
78385
|
code: (string | null);
|
|
@@ -78415,6 +78422,7 @@ export type DeploymentDomainListByServiceOutput = {
|
|
|
78415
78422
|
environmentId: string;
|
|
78416
78423
|
routingStatus: ("provisioning" | "propagating" | "active" | "failed");
|
|
78417
78424
|
lastProbeError: (string | null);
|
|
78425
|
+
redirectStatus: number;
|
|
78418
78426
|
dnsInstructions: ({
|
|
78419
78427
|
txt: {
|
|
78420
78428
|
name: string;
|
|
@@ -78431,6 +78439,7 @@ export type DeploymentDomainListByServiceOutput = {
|
|
|
78431
78439
|
routingRecordType: ("A" | "CNAME");
|
|
78432
78440
|
verificationToken: (string | null);
|
|
78433
78441
|
advertisedHostname: string;
|
|
78442
|
+
redirectToDomainId: (string | null);
|
|
78434
78443
|
verificationStatus: ("pending_dns" | "verified" | "dns_failed");
|
|
78435
78444
|
lastVerificationError: (({
|
|
78436
78445
|
code: (string | null);
|
|
@@ -78456,6 +78465,68 @@ export interface DeploymentDomainListByServiceOutputItems {
|
|
|
78456
78465
|
value: string;
|
|
78457
78466
|
recordType: ("A" | "CNAME");
|
|
78458
78467
|
}
|
|
78468
|
+
export interface DeploymentDomainRedirectSetInput {
|
|
78469
|
+
id: string;
|
|
78470
|
+
status?: (301 | 302);
|
|
78471
|
+
redirectToDomainId: (string | null);
|
|
78472
|
+
}
|
|
78473
|
+
export interface DeploymentDomainRedirectSetOutput {
|
|
78474
|
+
id: string;
|
|
78475
|
+
kind: ("auto" | "custom");
|
|
78476
|
+
aliases: string[];
|
|
78477
|
+
hostname: string;
|
|
78478
|
+
createdAt: string;
|
|
78479
|
+
tlsStatus: ("none" | "pending" | "issuing" | "active" | "failed");
|
|
78480
|
+
updatedAt: string;
|
|
78481
|
+
lastProbeAt: (string | null);
|
|
78482
|
+
redirectWww: boolean;
|
|
78483
|
+
wwwTlsStatus: ("none" | "pending" | "issuing" | "active" | "failed");
|
|
78484
|
+
environmentId: string;
|
|
78485
|
+
routingStatus: ("provisioning" | "propagating" | "active" | "failed");
|
|
78486
|
+
lastProbeError: (string | null);
|
|
78487
|
+
redirectStatus: number;
|
|
78488
|
+
dnsInstructions: ({
|
|
78489
|
+
txt: {
|
|
78490
|
+
name: string;
|
|
78491
|
+
value: string;
|
|
78492
|
+
};
|
|
78493
|
+
routing: DeploymentDomainRedirectSetOutputItems[];
|
|
78494
|
+
acmeChallenge?: DeploymentDomainRedirectSetOutputItems;
|
|
78495
|
+
txtAlternatives?: {
|
|
78496
|
+
name: string;
|
|
78497
|
+
value: string;
|
|
78498
|
+
}[];
|
|
78499
|
+
routingUnavailable?: boolean;
|
|
78500
|
+
} | null);
|
|
78501
|
+
routingRecordType: ("A" | "CNAME");
|
|
78502
|
+
verificationToken: (string | null);
|
|
78503
|
+
advertisedHostname: string;
|
|
78504
|
+
redirectToDomainId: (string | null);
|
|
78505
|
+
verificationStatus: ("pending_dns" | "verified" | "dns_failed");
|
|
78506
|
+
lastVerificationError: (({
|
|
78507
|
+
code: (string | null);
|
|
78508
|
+
reason: "transient";
|
|
78509
|
+
checkedAt: string;
|
|
78510
|
+
} | {
|
|
78511
|
+
txt?: {
|
|
78512
|
+
got: string[];
|
|
78513
|
+
want: string;
|
|
78514
|
+
};
|
|
78515
|
+
host?: {
|
|
78516
|
+
got: string[];
|
|
78517
|
+
want: string[];
|
|
78518
|
+
};
|
|
78519
|
+
reason: "mismatch";
|
|
78520
|
+
checkedAt: string;
|
|
78521
|
+
}) | null);
|
|
78522
|
+
lastVerificationCheckAt: (string | null);
|
|
78523
|
+
tlsCertificateExpiresAt: (string | null);
|
|
78524
|
+
}
|
|
78525
|
+
export interface DeploymentDomainRedirectSetOutputItems {
|
|
78526
|
+
name: string;
|
|
78527
|
+
value: string;
|
|
78528
|
+
recordType: ("A" | "CNAME");
|
|
78529
|
+
}
|
|
78459
78530
|
export interface DeploymentDomainRedirectWwwInput {
|
|
78460
78531
|
id: string;
|
|
78461
78532
|
enabled: boolean;
|
|
@@ -78474,6 +78545,7 @@ export interface DeploymentDomainRedirectWwwOutput {
|
|
|
78474
78545
|
environmentId: string;
|
|
78475
78546
|
routingStatus: ("provisioning" | "propagating" | "active" | "failed");
|
|
78476
78547
|
lastProbeError: (string | null);
|
|
78548
|
+
redirectStatus: number;
|
|
78477
78549
|
dnsInstructions: ({
|
|
78478
78550
|
txt: {
|
|
78479
78551
|
name: string;
|
|
@@ -78490,6 +78562,7 @@ export interface DeploymentDomainRedirectWwwOutput {
|
|
|
78490
78562
|
routingRecordType: ("A" | "CNAME");
|
|
78491
78563
|
verificationToken: (string | null);
|
|
78492
78564
|
advertisedHostname: string;
|
|
78565
|
+
redirectToDomainId: (string | null);
|
|
78493
78566
|
verificationStatus: ("pending_dns" | "verified" | "dns_failed");
|
|
78494
78567
|
lastVerificationError: (({
|
|
78495
78568
|
code: (string | null);
|
|
@@ -78592,6 +78665,7 @@ export interface DeploymentDomainVerifyOutput {
|
|
|
78592
78665
|
environmentId: string;
|
|
78593
78666
|
routingStatus: ("provisioning" | "propagating" | "active" | "failed");
|
|
78594
78667
|
lastProbeError: (string | null);
|
|
78668
|
+
redirectStatus: number;
|
|
78595
78669
|
dnsInstructions: ({
|
|
78596
78670
|
txt: {
|
|
78597
78671
|
name: string;
|
|
@@ -78608,6 +78682,7 @@ export interface DeploymentDomainVerifyOutput {
|
|
|
78608
78682
|
routingRecordType: ("A" | "CNAME");
|
|
78609
78683
|
verificationToken: (string | null);
|
|
78610
78684
|
advertisedHostname: string;
|
|
78685
|
+
redirectToDomainId: (string | null);
|
|
78611
78686
|
verificationStatus: ("pending_dns" | "verified" | "dns_failed");
|
|
78612
78687
|
lastVerificationError: (({
|
|
78613
78688
|
code: (string | null);
|
|
@@ -78753,7 +78828,7 @@ export interface DeploymentEnvironmentUpdateOutput {
|
|
|
78753
78828
|
baseEnvironmentId: (string | null);
|
|
78754
78829
|
}
|
|
78755
78830
|
export interface DeploymentEventsListByEnvironmentInput {
|
|
78756
|
-
type?: ("deployment.queued" | "deployment.build.started" | "deployment.build.succeeded" | "deployment.build.failed" | "deployment.deploying" | "deployment.variable.ignored" | "deployment.healthcheck.passed" | "deployment.healthcheck.failed" | "deployment.healthy" | "deployment.failed" | "deployment.replaced" | "deployment.sourcemaps.uploaded" | "deployment.sourcemaps.upload-failed" | "deployment.requeue-failed" | "deployment.release.started" | "deployment.release.log" | "deployment.release.succeeded" | "deployment.release.failed" | "replica.restarted" | "service.scaled" | "service.restarted" | "service.restart-failed" | "domain.verified" | "domain.tls.issued" | "domain.tls.failed" | "domain.www-tls.issued" | "domain.www-tls.failed" | "domain.routing.active" | "domain.routing.failed" | "domain.removed" | "domain.governance.mirror-failed" | "service.slept" | "service.woke" | "service.wake_failed" | "service.sleep-enabled" | "service.sleep-disabled" | "service.sleep-enable-failed" | "cloud-sql.instance.stopped" | "cloud-sql.instance.started" | "cloud-sql.instance.stop-failed" | "cloud-sql.instance.start-failed" | "suspension.workload-stopped" | "suspension.workload-restored" | "managed-service.restarted" | "managed-service.port-leak-healed");
|
|
78831
|
+
type?: ("deployment.queued" | "deployment.build.started" | "deployment.build.succeeded" | "deployment.build.failed" | "deployment.deploying" | "deployment.variable.ignored" | "deployment.healthcheck.passed" | "deployment.healthcheck.failed" | "deployment.healthy" | "deployment.failed" | "deployment.replaced" | "deployment.sourcemaps.uploaded" | "deployment.sourcemaps.upload-failed" | "deployment.requeue-failed" | "deployment.release.started" | "deployment.release.log" | "deployment.release.succeeded" | "deployment.release.failed" | "replica.restarted" | "service.scaled" | "service.restarted" | "service.restart-failed" | "domain.verified" | "domain.tls.issued" | "domain.tls.failed" | "domain.www-tls.issued" | "domain.www-tls.failed" | "domain.routing.active" | "domain.routing.failed" | "domain.routing.reapplied" | "domain.removed" | "domain.governance.mirror-failed" | "service.slept" | "service.woke" | "service.wake_failed" | "service.sleep-enabled" | "service.sleep-disabled" | "service.sleep-enable-failed" | "service.public_domain.changed" | "cloud-sql.instance.stopped" | "cloud-sql.instance.started" | "cloud-sql.instance.stop-failed" | "cloud-sql.instance.start-failed" | "suspension.workload-stopped" | "suspension.workload-restored" | "managed-service.restarted" | "managed-service.port-leak-healed");
|
|
78757
78832
|
limit?: number;
|
|
78758
78833
|
since?: string;
|
|
78759
78834
|
until?: string;
|
|
@@ -78761,7 +78836,7 @@ export interface DeploymentEventsListByEnvironmentInput {
|
|
|
78761
78836
|
}
|
|
78762
78837
|
export type DeploymentEventsListByEnvironmentOutput = {
|
|
78763
78838
|
id: string;
|
|
78764
|
-
type: ("deployment.queued" | "deployment.build.started" | "deployment.build.succeeded" | "deployment.build.failed" | "deployment.deploying" | "deployment.variable.ignored" | "deployment.healthcheck.passed" | "deployment.healthcheck.failed" | "deployment.healthy" | "deployment.failed" | "deployment.replaced" | "deployment.sourcemaps.uploaded" | "deployment.sourcemaps.upload-failed" | "deployment.requeue-failed" | "deployment.release.started" | "deployment.release.log" | "deployment.release.succeeded" | "deployment.release.failed" | "replica.restarted" | "service.scaled" | "service.restarted" | "service.restart-failed" | "domain.verified" | "domain.tls.issued" | "domain.tls.failed" | "domain.www-tls.issued" | "domain.www-tls.failed" | "domain.routing.active" | "domain.routing.failed" | "domain.removed" | "domain.governance.mirror-failed" | "service.slept" | "service.woke" | "service.wake_failed" | "service.sleep-enabled" | "service.sleep-disabled" | "service.sleep-enable-failed" | "cloud-sql.instance.stopped" | "cloud-sql.instance.started" | "cloud-sql.instance.stop-failed" | "cloud-sql.instance.start-failed" | "suspension.workload-stopped" | "suspension.workload-restored" | "managed-service.restarted" | "managed-service.port-leak-healed");
|
|
78839
|
+
type: ("deployment.queued" | "deployment.build.started" | "deployment.build.succeeded" | "deployment.build.failed" | "deployment.deploying" | "deployment.variable.ignored" | "deployment.healthcheck.passed" | "deployment.healthcheck.failed" | "deployment.healthy" | "deployment.failed" | "deployment.replaced" | "deployment.sourcemaps.uploaded" | "deployment.sourcemaps.upload-failed" | "deployment.requeue-failed" | "deployment.release.started" | "deployment.release.log" | "deployment.release.succeeded" | "deployment.release.failed" | "replica.restarted" | "service.scaled" | "service.restarted" | "service.restart-failed" | "domain.verified" | "domain.tls.issued" | "domain.tls.failed" | "domain.www-tls.issued" | "domain.www-tls.failed" | "domain.routing.active" | "domain.routing.failed" | "domain.routing.reapplied" | "domain.removed" | "domain.governance.mirror-failed" | "service.slept" | "service.woke" | "service.wake_failed" | "service.sleep-enabled" | "service.sleep-disabled" | "service.sleep-enable-failed" | "service.public_domain.changed" | "cloud-sql.instance.stopped" | "cloud-sql.instance.started" | "cloud-sql.instance.stop-failed" | "cloud-sql.instance.start-failed" | "suspension.workload-stopped" | "suspension.workload-restored" | "managed-service.restarted" | "managed-service.port-leak-healed");
|
|
78765
78840
|
payload: {
|
|
78766
78841
|
[k: string]: unknown;
|
|
78767
78842
|
};
|
|
@@ -78773,7 +78848,7 @@ export type DeploymentEventsListByEnvironmentOutput = {
|
|
|
78773
78848
|
environmentId: (string | null);
|
|
78774
78849
|
}[];
|
|
78775
78850
|
export interface DeploymentEventsListByServiceInput {
|
|
78776
|
-
type?: ("deployment.queued" | "deployment.build.started" | "deployment.build.succeeded" | "deployment.build.failed" | "deployment.deploying" | "deployment.variable.ignored" | "deployment.healthcheck.passed" | "deployment.healthcheck.failed" | "deployment.healthy" | "deployment.failed" | "deployment.replaced" | "deployment.sourcemaps.uploaded" | "deployment.sourcemaps.upload-failed" | "deployment.requeue-failed" | "deployment.release.started" | "deployment.release.log" | "deployment.release.succeeded" | "deployment.release.failed" | "replica.restarted" | "service.scaled" | "service.restarted" | "service.restart-failed" | "domain.verified" | "domain.tls.issued" | "domain.tls.failed" | "domain.www-tls.issued" | "domain.www-tls.failed" | "domain.routing.active" | "domain.routing.failed" | "domain.removed" | "domain.governance.mirror-failed" | "service.slept" | "service.woke" | "service.wake_failed" | "service.sleep-enabled" | "service.sleep-disabled" | "service.sleep-enable-failed" | "cloud-sql.instance.stopped" | "cloud-sql.instance.started" | "cloud-sql.instance.stop-failed" | "cloud-sql.instance.start-failed" | "suspension.workload-stopped" | "suspension.workload-restored" | "managed-service.restarted" | "managed-service.port-leak-healed");
|
|
78851
|
+
type?: ("deployment.queued" | "deployment.build.started" | "deployment.build.succeeded" | "deployment.build.failed" | "deployment.deploying" | "deployment.variable.ignored" | "deployment.healthcheck.passed" | "deployment.healthcheck.failed" | "deployment.healthy" | "deployment.failed" | "deployment.replaced" | "deployment.sourcemaps.uploaded" | "deployment.sourcemaps.upload-failed" | "deployment.requeue-failed" | "deployment.release.started" | "deployment.release.log" | "deployment.release.succeeded" | "deployment.release.failed" | "replica.restarted" | "service.scaled" | "service.restarted" | "service.restart-failed" | "domain.verified" | "domain.tls.issued" | "domain.tls.failed" | "domain.www-tls.issued" | "domain.www-tls.failed" | "domain.routing.active" | "domain.routing.failed" | "domain.routing.reapplied" | "domain.removed" | "domain.governance.mirror-failed" | "service.slept" | "service.woke" | "service.wake_failed" | "service.sleep-enabled" | "service.sleep-disabled" | "service.sleep-enable-failed" | "service.public_domain.changed" | "cloud-sql.instance.stopped" | "cloud-sql.instance.started" | "cloud-sql.instance.stop-failed" | "cloud-sql.instance.start-failed" | "suspension.workload-stopped" | "suspension.workload-restored" | "managed-service.restarted" | "managed-service.port-leak-healed");
|
|
78777
78852
|
limit?: number;
|
|
78778
78853
|
since?: string;
|
|
78779
78854
|
until?: string;
|
|
@@ -78782,7 +78857,7 @@ export interface DeploymentEventsListByServiceInput {
|
|
|
78782
78857
|
}
|
|
78783
78858
|
export type DeploymentEventsListByServiceOutput = {
|
|
78784
78859
|
id: string;
|
|
78785
|
-
type: ("deployment.queued" | "deployment.build.started" | "deployment.build.succeeded" | "deployment.build.failed" | "deployment.deploying" | "deployment.variable.ignored" | "deployment.healthcheck.passed" | "deployment.healthcheck.failed" | "deployment.healthy" | "deployment.failed" | "deployment.replaced" | "deployment.sourcemaps.uploaded" | "deployment.sourcemaps.upload-failed" | "deployment.requeue-failed" | "deployment.release.started" | "deployment.release.log" | "deployment.release.succeeded" | "deployment.release.failed" | "replica.restarted" | "service.scaled" | "service.restarted" | "service.restart-failed" | "domain.verified" | "domain.tls.issued" | "domain.tls.failed" | "domain.www-tls.issued" | "domain.www-tls.failed" | "domain.routing.active" | "domain.routing.failed" | "domain.removed" | "domain.governance.mirror-failed" | "service.slept" | "service.woke" | "service.wake_failed" | "service.sleep-enabled" | "service.sleep-disabled" | "service.sleep-enable-failed" | "cloud-sql.instance.stopped" | "cloud-sql.instance.started" | "cloud-sql.instance.stop-failed" | "cloud-sql.instance.start-failed" | "suspension.workload-stopped" | "suspension.workload-restored" | "managed-service.restarted" | "managed-service.port-leak-healed");
|
|
78860
|
+
type: ("deployment.queued" | "deployment.build.started" | "deployment.build.succeeded" | "deployment.build.failed" | "deployment.deploying" | "deployment.variable.ignored" | "deployment.healthcheck.passed" | "deployment.healthcheck.failed" | "deployment.healthy" | "deployment.failed" | "deployment.replaced" | "deployment.sourcemaps.uploaded" | "deployment.sourcemaps.upload-failed" | "deployment.requeue-failed" | "deployment.release.started" | "deployment.release.log" | "deployment.release.succeeded" | "deployment.release.failed" | "replica.restarted" | "service.scaled" | "service.restarted" | "service.restart-failed" | "domain.verified" | "domain.tls.issued" | "domain.tls.failed" | "domain.www-tls.issued" | "domain.www-tls.failed" | "domain.routing.active" | "domain.routing.failed" | "domain.routing.reapplied" | "domain.removed" | "domain.governance.mirror-failed" | "service.slept" | "service.woke" | "service.wake_failed" | "service.sleep-enabled" | "service.sleep-disabled" | "service.sleep-enable-failed" | "service.public_domain.changed" | "cloud-sql.instance.stopped" | "cloud-sql.instance.started" | "cloud-sql.instance.stop-failed" | "cloud-sql.instance.start-failed" | "suspension.workload-stopped" | "suspension.workload-restored" | "managed-service.restarted" | "managed-service.port-leak-healed");
|
|
78786
78861
|
payload: {
|
|
78787
78862
|
[k: string]: unknown;
|
|
78788
78863
|
};
|
|
@@ -79308,6 +79383,10 @@ export interface DeploymentServiceCreateInput {
|
|
|
79308
79383
|
memory?: string;
|
|
79309
79384
|
};
|
|
79310
79385
|
};
|
|
79386
|
+
/**
|
|
79387
|
+
* Whether this service gets its public auto-domain (`<slug>-<hash>.<suffix>`) and the HTTPRoute that fronts it. Default true. Set false for a service that must not face the internet (minio, pgadmin, a worker): the auto-domain and its route are removed, which also frees a URL-map host rule. A custom domain attached to this service is NOT touched in either direction — it keeps serving. Set true again to re-create the auto-domain under the same hostname.
|
|
79388
|
+
*/
|
|
79389
|
+
publicDomain?: boolean;
|
|
79311
79390
|
containerPort?: number;
|
|
79312
79391
|
environmentId: string;
|
|
79313
79392
|
/**
|
|
@@ -79388,6 +79467,7 @@ export interface DeploymentServiceCreateOutput {
|
|
|
79388
79467
|
sleepState: ("awake" | "sleeping" | "waking" | "stopped" | "wake_failed");
|
|
79389
79468
|
idleMinutes: number;
|
|
79390
79469
|
scaleToZero: boolean;
|
|
79470
|
+
publicDomain?: boolean;
|
|
79391
79471
|
containerPort: number;
|
|
79392
79472
|
environmentId: string;
|
|
79393
79473
|
jobTimeoutSec?: number;
|
|
@@ -79502,6 +79582,7 @@ export interface DeploymentServiceGetOutput {
|
|
|
79502
79582
|
sleepState: ("awake" | "sleeping" | "waking" | "stopped" | "wake_failed");
|
|
79503
79583
|
idleMinutes: number;
|
|
79504
79584
|
scaleToZero: boolean;
|
|
79585
|
+
publicDomain?: boolean;
|
|
79505
79586
|
containerPort: number;
|
|
79506
79587
|
environmentId: string;
|
|
79507
79588
|
jobTimeoutSec?: number;
|
|
@@ -79587,6 +79668,7 @@ export type DeploymentServiceListOutput = {
|
|
|
79587
79668
|
sleepState: ("awake" | "sleeping" | "waking" | "stopped" | "wake_failed");
|
|
79588
79669
|
idleMinutes: number;
|
|
79589
79670
|
scaleToZero: boolean;
|
|
79671
|
+
publicDomain?: boolean;
|
|
79590
79672
|
containerPort: number;
|
|
79591
79673
|
environmentId: string;
|
|
79592
79674
|
jobTimeoutSec?: number;
|
|
@@ -79740,6 +79822,7 @@ export interface DeploymentServiceScaleOutput {
|
|
|
79740
79822
|
sleepState: ("awake" | "sleeping" | "waking" | "stopped" | "wake_failed");
|
|
79741
79823
|
idleMinutes: number;
|
|
79742
79824
|
scaleToZero: boolean;
|
|
79825
|
+
publicDomain?: boolean;
|
|
79743
79826
|
containerPort: number;
|
|
79744
79827
|
environmentId: string;
|
|
79745
79828
|
jobTimeoutSec?: number;
|
|
@@ -79822,6 +79905,10 @@ export interface DeploymentServiceUpdateInput {
|
|
|
79822
79905
|
autoDeploy?: boolean;
|
|
79823
79906
|
idleMinutes?: number;
|
|
79824
79907
|
scaleToZero?: boolean;
|
|
79908
|
+
/**
|
|
79909
|
+
* Whether this service gets its public auto-domain (`<slug>-<hash>.<suffix>`) and the HTTPRoute that fronts it. Default true. Set false for a service that must not face the internet (minio, pgadmin, a worker): the auto-domain and its route are removed, which also frees a URL-map host rule. A custom domain attached to this service is NOT touched in either direction — it keeps serving. Set true again to re-create the auto-domain under the same hostname.
|
|
79910
|
+
*/
|
|
79911
|
+
publicDomain?: boolean;
|
|
79825
79912
|
containerPort?: number;
|
|
79826
79913
|
/**
|
|
79827
79914
|
* Wall-clock budget for one run, in seconds (60..86400). Becomes the Job activeDeadlineSeconds — an overrunning run is killed, not left going.
|
|
@@ -79906,6 +79993,7 @@ export interface DeploymentServiceUpdateOutput {
|
|
|
79906
79993
|
sleepState: ("awake" | "sleeping" | "waking" | "stopped" | "wake_failed");
|
|
79907
79994
|
idleMinutes: number;
|
|
79908
79995
|
scaleToZero: boolean;
|
|
79996
|
+
publicDomain?: boolean;
|
|
79909
79997
|
containerPort: number;
|
|
79910
79998
|
environmentId: string;
|
|
79911
79999
|
jobTimeoutSec?: number;
|
|
@@ -96542,6 +96630,332 @@ export interface OrganizationYoutubeInstallInput {
|
|
|
96542
96630
|
export interface OrganizationYoutubeInstallOutput {
|
|
96543
96631
|
url: string;
|
|
96544
96632
|
}
|
|
96633
|
+
export interface PlaygroundAnalyticsOverviewInput {
|
|
96634
|
+
/**
|
|
96635
|
+
* Max records per entity in recent[]; omit for the endpoint default
|
|
96636
|
+
*/
|
|
96637
|
+
limit?: number;
|
|
96638
|
+
}
|
|
96639
|
+
export interface PlaygroundAnalyticsOverviewOutput {
|
|
96640
|
+
ok: boolean;
|
|
96641
|
+
minted: boolean;
|
|
96642
|
+
overview?: unknown;
|
|
96643
|
+
http_status: number;
|
|
96644
|
+
}
|
|
96645
|
+
export interface PlaygroundBillingEntitlementsInput {
|
|
96646
|
+
}
|
|
96647
|
+
export interface PlaygroundBillingEntitlementsOutput {
|
|
96648
|
+
ok: boolean;
|
|
96649
|
+
minted: boolean;
|
|
96650
|
+
http_status: number;
|
|
96651
|
+
entitlements?: unknown;
|
|
96652
|
+
}
|
|
96653
|
+
export interface PlaygroundBillingRecordUsageInput {
|
|
96654
|
+
/**
|
|
96655
|
+
* Quantity of events to record against playground-events (SUM); defaults to 1
|
|
96656
|
+
*/
|
|
96657
|
+
value?: number;
|
|
96658
|
+
}
|
|
96659
|
+
export interface PlaygroundBillingRecordUsageOutput {
|
|
96660
|
+
minted: boolean;
|
|
96661
|
+
accepted: (number | null);
|
|
96662
|
+
recorded: boolean;
|
|
96663
|
+
duplicates: (number | null);
|
|
96664
|
+
http_status: number;
|
|
96665
|
+
}
|
|
96666
|
+
export interface PlaygroundClickupCreateTaskInput {
|
|
96667
|
+
/**
|
|
96668
|
+
* Task title; defaults to a fixture label
|
|
96669
|
+
*/
|
|
96670
|
+
name?: string;
|
|
96671
|
+
/**
|
|
96672
|
+
* ClickUp list id; falls back to CLICKUP_TEST_LIST_ID
|
|
96673
|
+
*/
|
|
96674
|
+
listId?: string;
|
|
96675
|
+
}
|
|
96676
|
+
export interface PlaygroundClickupCreateTaskOutput {
|
|
96677
|
+
minted: boolean;
|
|
96678
|
+
task_id: (string | null);
|
|
96679
|
+
list_status: number;
|
|
96680
|
+
vend_status: number;
|
|
96681
|
+
clickup_status: number;
|
|
96682
|
+
installation_count: number;
|
|
96683
|
+
}
|
|
96684
|
+
export interface PlaygroundClickupGetLastWebhookInput {
|
|
96685
|
+
}
|
|
96686
|
+
export type PlaygroundClickupGetLastWebhookOutput = ({
|
|
96687
|
+
payload: string;
|
|
96688
|
+
event_id: string;
|
|
96689
|
+
provider: string;
|
|
96690
|
+
verified: boolean;
|
|
96691
|
+
product_id: string;
|
|
96692
|
+
occurred_at: string;
|
|
96693
|
+
connector_id: string;
|
|
96694
|
+
clickup_event: (string | null);
|
|
96695
|
+
receipt_count: number;
|
|
96696
|
+
} | {
|
|
96697
|
+
found: false;
|
|
96698
|
+
});
|
|
96699
|
+
export interface PlaygroundClickupGetOverviewInput {
|
|
96700
|
+
}
|
|
96701
|
+
export interface PlaygroundClickupGetOverviewOutput {
|
|
96702
|
+
team: ({
|
|
96703
|
+
teamId: string;
|
|
96704
|
+
teamName: string;
|
|
96705
|
+
} | null);
|
|
96706
|
+
lists: PlaygroundClickupGetOverviewOutputItems[];
|
|
96707
|
+
tasks: {
|
|
96708
|
+
id: string;
|
|
96709
|
+
name: string;
|
|
96710
|
+
status: (string | null);
|
|
96711
|
+
}[];
|
|
96712
|
+
minted: boolean;
|
|
96713
|
+
spaces: PlaygroundClickupGetOverviewOutputItems[];
|
|
96714
|
+
list_status: number;
|
|
96715
|
+
vend_status: number;
|
|
96716
|
+
lists_status: number;
|
|
96717
|
+
tasks_status: number;
|
|
96718
|
+
spaces_status: number;
|
|
96719
|
+
folders_status: number;
|
|
96720
|
+
installation_count: number;
|
|
96721
|
+
}
|
|
96722
|
+
export interface PlaygroundClickupGetOverviewOutputItems {
|
|
96723
|
+
id: string;
|
|
96724
|
+
name: string;
|
|
96725
|
+
}
|
|
96726
|
+
export interface PlaygroundEchoPingInput {
|
|
96727
|
+
/**
|
|
96728
|
+
* The text to echo back, 1–1024 characters
|
|
96729
|
+
*/
|
|
96730
|
+
message: string;
|
|
96731
|
+
}
|
|
96732
|
+
export interface PlaygroundEchoPingOutput {
|
|
96733
|
+
/**
|
|
96734
|
+
* The message exactly as it was received
|
|
96735
|
+
*/
|
|
96736
|
+
message: string;
|
|
96737
|
+
/**
|
|
96738
|
+
* The product the call was resolved to
|
|
96739
|
+
*/
|
|
96740
|
+
productId: string;
|
|
96741
|
+
/**
|
|
96742
|
+
* ISO-8601 instant (UTC) at which the call reached the service
|
|
96743
|
+
*/
|
|
96744
|
+
receivedAt: string;
|
|
96745
|
+
}
|
|
96746
|
+
export interface PlaygroundGdriveGetLastChangeInput {
|
|
96747
|
+
}
|
|
96748
|
+
export type PlaygroundGdriveGetLastChangeOutput = ({
|
|
96749
|
+
file_id: string;
|
|
96750
|
+
removed: boolean;
|
|
96751
|
+
file_name: (string | null);
|
|
96752
|
+
mime_type: (string | null);
|
|
96753
|
+
product_id: string;
|
|
96754
|
+
occurred_at: string;
|
|
96755
|
+
connector_id: string;
|
|
96756
|
+
resource_state: string;
|
|
96757
|
+
} | {
|
|
96758
|
+
found: false;
|
|
96759
|
+
});
|
|
96760
|
+
export interface PlaygroundGdriveReadFileInput {
|
|
96761
|
+
/**
|
|
96762
|
+
* Drive file id; falls back to GDRIVE_TEST_FILE_ID, then the first picked file
|
|
96763
|
+
*/
|
|
96764
|
+
fileId?: string;
|
|
96765
|
+
}
|
|
96766
|
+
export interface PlaygroundGdriveReadFileOutput {
|
|
96767
|
+
minted: boolean;
|
|
96768
|
+
file_id: (string | null);
|
|
96769
|
+
file_name: (string | null);
|
|
96770
|
+
mime_type: (string | null);
|
|
96771
|
+
file_count: number;
|
|
96772
|
+
get_status: number;
|
|
96773
|
+
list_status: number;
|
|
96774
|
+
vend_status: number;
|
|
96775
|
+
content_bytes: (number | null);
|
|
96776
|
+
}
|
|
96777
|
+
export interface PlaygroundGoogleadsReadCustomerInput {
|
|
96778
|
+
}
|
|
96779
|
+
export interface PlaygroundGoogleadsReadCustomerOutput {
|
|
96780
|
+
minted: boolean;
|
|
96781
|
+
vended: boolean;
|
|
96782
|
+
customer_id: (string | null);
|
|
96783
|
+
vend_status: number;
|
|
96784
|
+
result_count: number;
|
|
96785
|
+
search_status: number;
|
|
96786
|
+
login_customer_id: (string | null);
|
|
96787
|
+
}
|
|
96788
|
+
export interface PlaygroundLifecycleGetStateInput {
|
|
96789
|
+
}
|
|
96790
|
+
export interface PlaygroundLifecycleGetStateOutput {
|
|
96791
|
+
blocked: boolean;
|
|
96792
|
+
archived: boolean;
|
|
96793
|
+
productId: string;
|
|
96794
|
+
lastBlockTransition: ({
|
|
96795
|
+
eventId: string;
|
|
96796
|
+
eventName: string;
|
|
96797
|
+
productId: string;
|
|
96798
|
+
occurredAt: string;
|
|
96799
|
+
recordedAt: string;
|
|
96800
|
+
receiptCount: number;
|
|
96801
|
+
organizationId: string;
|
|
96802
|
+
cascadedFromOrg: boolean;
|
|
96803
|
+
} | null);
|
|
96804
|
+
lastArchiveTransition: ({
|
|
96805
|
+
eventId: string;
|
|
96806
|
+
eventName: string;
|
|
96807
|
+
productId: string;
|
|
96808
|
+
occurredAt: string;
|
|
96809
|
+
recordedAt: string;
|
|
96810
|
+
receiptCount: number;
|
|
96811
|
+
organizationId: string;
|
|
96812
|
+
cascadedFromOrg: boolean;
|
|
96813
|
+
} | null);
|
|
96814
|
+
}
|
|
96815
|
+
export interface PlaygroundLifecycleListEventsInput {
|
|
96816
|
+
}
|
|
96817
|
+
export type PlaygroundLifecycleListEventsOutput = {
|
|
96818
|
+
eventId: string;
|
|
96819
|
+
eventName: string;
|
|
96820
|
+
productId: string;
|
|
96821
|
+
occurredAt: string;
|
|
96822
|
+
recordedAt: string;
|
|
96823
|
+
receiptCount: number;
|
|
96824
|
+
organizationId: string;
|
|
96825
|
+
cascadedFromOrg: boolean;
|
|
96826
|
+
}[];
|
|
96827
|
+
export interface PlaygroundWebhookGetLastInput {
|
|
96828
|
+
}
|
|
96829
|
+
export type PlaygroundWebhookGetLastOutput = ({
|
|
96830
|
+
payload?: unknown;
|
|
96831
|
+
event_id: string;
|
|
96832
|
+
provider: string;
|
|
96833
|
+
verified: boolean;
|
|
96834
|
+
product_id: string;
|
|
96835
|
+
occurred_at: string;
|
|
96836
|
+
connector_id: string;
|
|
96837
|
+
delivery_count: number;
|
|
96838
|
+
} | {
|
|
96839
|
+
found: false;
|
|
96840
|
+
});
|
|
96841
|
+
export interface PlaygroundWorkflowEchoInput {
|
|
96842
|
+
/**
|
|
96843
|
+
* The text to store, 1–1024 characters
|
|
96844
|
+
*/
|
|
96845
|
+
note: string;
|
|
96846
|
+
/**
|
|
96847
|
+
* Optional labels stored alongside the note, at most 20
|
|
96848
|
+
*
|
|
96849
|
+
* @maxItems 20
|
|
96850
|
+
*/
|
|
96851
|
+
tags?: [] | [string] | [string, string] | [string, string, string] | [string, string, string, string] | [string, string, string, string, string] | [string, string, string, string, string, string] | [string, string, string, string, string, string, string] | [string, string, string, string, string, string, string, string] | [string, string, string, string, string, string, string, string, string] | [string, string, string, string, string, string, string, string, string, string] | [string, string, string, string, string, string, string, string, string, string, string] | [string, string, string, string, string, string, string, string, string, string, string, string] | [string, string, string, string, string, string, string, string, string, string, string, string, string] | [string, string, string, string, string, string, string, string, string, string, string, string, string, string] | [string, string, string, string, string, string, string, string, string, string, string, string, string, string, string] | [string, string, string, string, string, string, string, string, string, string, string, string, string, string, string, string] | [string, string, string, string, string, string, string, string, string, string, string, string, string, string, string, string, string] | [string, string, string, string, string, string, string, string, string, string, string, string, string, string, string, string, string, string] | [string, string, string, string, string, string, string, string, string, string, string, string, string, string, string, string, string, string, string] | [string, string, string, string, string, string, string, string, string, string, string, string, string, string, string, string, string, string, string, string];
|
|
96852
|
+
}
|
|
96853
|
+
export interface PlaygroundWorkflowEchoOutput {
|
|
96854
|
+
/**
|
|
96855
|
+
* Identifier of the stored echo
|
|
96856
|
+
*/
|
|
96857
|
+
id: string;
|
|
96858
|
+
/**
|
|
96859
|
+
* The note exactly as it was received
|
|
96860
|
+
*/
|
|
96861
|
+
note: string;
|
|
96862
|
+
/**
|
|
96863
|
+
* The tags exactly as they were received
|
|
96864
|
+
*/
|
|
96865
|
+
tags: string[];
|
|
96866
|
+
/**
|
|
96867
|
+
* Correlation id for this echo. The playground/workflow.echoed event published about two seconds later repeats it, which is how a composer matches the completion back to this step.
|
|
96868
|
+
*/
|
|
96869
|
+
echo_id: string;
|
|
96870
|
+
/**
|
|
96871
|
+
* ISO-8601 instant (UTC) at which the echo was stored
|
|
96872
|
+
*/
|
|
96873
|
+
received_at: string;
|
|
96874
|
+
}
|
|
96875
|
+
export interface PlaygroundWorkflowEchoListInput {
|
|
96876
|
+
}
|
|
96877
|
+
export type PlaygroundWorkflowEchoListOutput = {
|
|
96878
|
+
/**
|
|
96879
|
+
* Identifier of the stored echo
|
|
96880
|
+
*/
|
|
96881
|
+
id: string;
|
|
96882
|
+
/**
|
|
96883
|
+
* The note exactly as it was received
|
|
96884
|
+
*/
|
|
96885
|
+
note: string;
|
|
96886
|
+
/**
|
|
96887
|
+
* The tags exactly as they were received
|
|
96888
|
+
*/
|
|
96889
|
+
tags: string[];
|
|
96890
|
+
/**
|
|
96891
|
+
* ISO-8601 instant (UTC) at which the echo was stored
|
|
96892
|
+
*/
|
|
96893
|
+
received_at: string;
|
|
96894
|
+
}[];
|
|
96895
|
+
export interface PlaygroundWorkflowPingInput {
|
|
96896
|
+
/**
|
|
96897
|
+
* Class of ping, echoed on the emitted event and filterable on the trigger. Defaults to 'manual'.
|
|
96898
|
+
*/
|
|
96899
|
+
kind?: string;
|
|
96900
|
+
}
|
|
96901
|
+
export interface PlaygroundWorkflowPingOutput {
|
|
96902
|
+
/**
|
|
96903
|
+
* Correlation id for this ping. The emitted playground/workflow.ping event repeats it, which is how a composer matches the event back to this step.
|
|
96904
|
+
*/
|
|
96905
|
+
id: string;
|
|
96906
|
+
/**
|
|
96907
|
+
* The name of the event that was published
|
|
96908
|
+
*/
|
|
96909
|
+
event: string;
|
|
96910
|
+
}
|
|
96911
|
+
export interface PlaygroundWorkflowSubjectsListInput {
|
|
96912
|
+
/**
|
|
96913
|
+
* How many subjects to return, 1–100. Defaults to 25.
|
|
96914
|
+
*/
|
|
96915
|
+
limit?: number;
|
|
96916
|
+
/**
|
|
96917
|
+
* The next_cursor of the previous page. Opaque — pass it back unchanged. Omit for the first page.
|
|
96918
|
+
*/
|
|
96919
|
+
cursor?: string;
|
|
96920
|
+
/**
|
|
96921
|
+
* ISO-8601 UTC instant. Return only subjects whose last_activity_at is AT OR AFTER this — the opposite question, the recently active population. Omit for no lower bound.
|
|
96922
|
+
*/
|
|
96923
|
+
last_activity_after?: string;
|
|
96924
|
+
/**
|
|
96925
|
+
* ISO-8601 UTC instant. Return only subjects whose last_activity_at is AT OR BEFORE this — the "inactive for N days" question: pass now minus N days. Omit for no upper bound.
|
|
96926
|
+
*/
|
|
96927
|
+
last_activity_before?: string;
|
|
96928
|
+
}
|
|
96929
|
+
export interface PlaygroundWorkflowSubjectsListOutput {
|
|
96930
|
+
/**
|
|
96931
|
+
* This page of subjects, most recently active first
|
|
96932
|
+
*/
|
|
96933
|
+
items: {
|
|
96934
|
+
/**
|
|
96935
|
+
* Stable identifier for the subject. This is the field a batch trigger keys on, so a subject already served in an earlier run is skipped rather than served twice.
|
|
96936
|
+
*/
|
|
96937
|
+
subject_key: string;
|
|
96938
|
+
/**
|
|
96939
|
+
* Human-readable name of the subject
|
|
96940
|
+
*/
|
|
96941
|
+
display_name: string;
|
|
96942
|
+
/**
|
|
96943
|
+
* ISO-8601 instant (UTC) of the subject last activity
|
|
96944
|
+
*/
|
|
96945
|
+
last_activity_at: string;
|
|
96946
|
+
}[];
|
|
96947
|
+
/**
|
|
96948
|
+
* Whether another page follows. False and a null next_cursor both mark the last page, so a consumer that loops on either terminates.
|
|
96949
|
+
*/
|
|
96950
|
+
has_more: boolean;
|
|
96951
|
+
/**
|
|
96952
|
+
* Pass back as `cursor` to fetch the next page; null on the last page. Always null when has_more is false.
|
|
96953
|
+
*/
|
|
96954
|
+
next_cursor: (string | null);
|
|
96955
|
+
}
|
|
96956
|
+
export interface PlaygroundWsEchoInput {
|
|
96957
|
+
}
|
|
96958
|
+
export type PlaygroundWsEchoOutput = unknown;
|
|
96545
96959
|
export interface RealtimeArchiveExportInput {
|
|
96546
96960
|
/**
|
|
96547
96961
|
* Only entries with ts <= to_ts (epoch ms)
|