@lessly/sdk-app 12.1.0 → 13.0.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/dist/analytics/index.d.cts +1 -1
- package/dist/analytics/index.d.ts +1 -1
- package/dist/brain/index.cjs +0 -10
- package/dist/brain/index.cjs.map +1 -1
- package/dist/brain/index.d.cts +2 -10
- package/dist/brain/index.d.ts +2 -10
- package/dist/brain/index.js +1 -9
- package/dist/brain/index.js.map +1 -1
- package/dist/{client.gen-CUGiXN_3.d.cts → client.gen-BnXpkn0p.d.cts} +306 -116
- package/dist/{client.gen-CUGiXN_3.d.ts → client.gen-BnXpkn0p.d.ts} +306 -116
- package/dist/consent/index.d.cts +1 -1
- package/dist/consent/index.d.ts +1 -1
- package/dist/deployment/index.cjs +5 -0
- package/dist/deployment/index.cjs.map +1 -1
- package/dist/deployment/index.d.cts +6 -2
- package/dist/deployment/index.d.ts +6 -2
- package/dist/deployment/index.js +5 -1
- package/dist/deployment/index.js.map +1 -1
- package/dist/index.cjs +123 -40
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +123 -40
- package/dist/index.js.map +1 -1
- package/dist/mail/index.d.cts +2 -2
- package/dist/mail/index.d.ts +2 -2
- package/dist/organization/index.d.cts +1 -1
- package/dist/organization/index.d.ts +1 -1
- package/dist/playground/index.cjs +66 -0
- package/dist/playground/index.cjs.map +1 -0
- package/dist/playground/index.d.cts +52 -0
- package/dist/playground/index.d.ts +52 -0
- package/dist/playground/index.js +53 -0
- package/dist/playground/index.js.map +1 -0
- package/dist/realtime/index.d.cts +1 -1
- package/dist/realtime/index.d.ts +1 -1
- package/dist/tracking/index.d.cts +1 -1
- package/dist/tracking/index.d.ts +1 -1
- package/dist/waitlist/index.d.cts +1 -1
- package/dist/waitlist/index.d.ts +1 -1
- package/package.json +7 -2
- package/src/gen/bindings.gen.ts +123 -40
- package/src/gen/brain/index.ts +1 -1
- package/src/gen/brain/queryOptions.gen.ts +0 -14
- package/src/gen/client.gen.ts +55 -8
- package/src/gen/deployment/index.ts +1 -1
- package/src/gen/deployment/queryOptions.gen.ts +6 -0
- package/src/gen/manifest.gen.ts +1 -1
- package/src/gen/playground/index.ts +3 -0
- package/src/gen/playground/queryOptions.gen.ts +86 -0
- package/src/gen/types.gen.ts +310 -115
|
@@ -46,9 +46,15 @@ interface BrainBackupStatusInput {
|
|
|
46
46
|
type BrainBackupStatusOutput = ({
|
|
47
47
|
id: string;
|
|
48
48
|
error: (string | null);
|
|
49
|
-
|
|
49
|
+
/**
|
|
50
|
+
* 'running' | 'completed' | 'failed'
|
|
51
|
+
*/
|
|
52
|
+
status: string;
|
|
50
53
|
gcsPath: string;
|
|
51
|
-
|
|
54
|
+
/**
|
|
55
|
+
* 'scheduled' | 'manual' | 'pre-restore'
|
|
56
|
+
*/
|
|
57
|
+
trigger: string;
|
|
52
58
|
createdAt: string;
|
|
53
59
|
edgeCount: (number | null);
|
|
54
60
|
nodeCount: (number | null);
|
|
@@ -64,9 +70,15 @@ interface BrainBackupsListInput {
|
|
|
64
70
|
type BrainBackupsListOutput = {
|
|
65
71
|
id: string;
|
|
66
72
|
error: (string | null);
|
|
67
|
-
|
|
73
|
+
/**
|
|
74
|
+
* 'running' | 'completed' | 'failed'
|
|
75
|
+
*/
|
|
76
|
+
status: string;
|
|
68
77
|
gcsPath: string;
|
|
69
|
-
|
|
78
|
+
/**
|
|
79
|
+
* 'scheduled' | 'manual' | 'pre-restore'
|
|
80
|
+
*/
|
|
81
|
+
trigger: string;
|
|
70
82
|
createdAt: string;
|
|
71
83
|
edgeCount: (number | null);
|
|
72
84
|
nodeCount: (number | null);
|
|
@@ -471,103 +483,6 @@ type BrainGdriveConnectionsListOutput = {
|
|
|
471
483
|
mimeType: string;
|
|
472
484
|
}[];
|
|
473
485
|
}[];
|
|
474
|
-
interface BrainKnowledgeEntityMemoriesInput {
|
|
475
|
-
/**
|
|
476
|
-
* Max memories (default 50)
|
|
477
|
-
*/
|
|
478
|
-
limit?: number;
|
|
479
|
-
/**
|
|
480
|
-
* Read scope; 'both' (default) unions shared + your private
|
|
481
|
-
*/
|
|
482
|
-
scope?: ("shared" | "private" | "both");
|
|
483
|
-
/**
|
|
484
|
-
* Pagination offset
|
|
485
|
-
*/
|
|
486
|
-
offset?: number;
|
|
487
|
-
/**
|
|
488
|
-
* Entity id, name, or alias to fetch backing memories for
|
|
489
|
-
*/
|
|
490
|
-
entity_ref: string;
|
|
491
|
-
}
|
|
492
|
-
interface BrainKnowledgeEntityMemoriesOutput {
|
|
493
|
-
total: number;
|
|
494
|
-
entity: ({
|
|
495
|
-
score?: number;
|
|
496
|
-
aliases: string[];
|
|
497
|
-
entity_id: string;
|
|
498
|
-
description: (string | null);
|
|
499
|
-
entity_type: string;
|
|
500
|
-
display_name: string;
|
|
501
|
-
canonical_name: string;
|
|
502
|
-
evidence_count: number;
|
|
503
|
-
} | null);
|
|
504
|
-
memories: {
|
|
505
|
-
/**
|
|
506
|
-
* Consumer-facing label derived from the layer; 'unknown' for an unrecognised layer
|
|
507
|
-
*/
|
|
508
|
-
kind: ("schema" | "intention" | "identity" | "basic" | "fact" | "summary" | "knowledge" | "raw" | "unknown");
|
|
509
|
-
tags: string[];
|
|
510
|
-
/**
|
|
511
|
-
* Engine memory layer (l0_basic_info…l7_intention)
|
|
512
|
-
*/
|
|
513
|
-
layer: ("l6_schema" | "l7_intention" | "l4_identity" | "l0_basic_info" | "l2_fact" | "l3_summary" | "l5_knowledge" | "l1_raw");
|
|
514
|
-
custom: {
|
|
515
|
-
[k: string]: unknown;
|
|
516
|
-
};
|
|
517
|
-
status: string;
|
|
518
|
-
content: string;
|
|
519
|
-
user_id: string;
|
|
520
|
-
agent_id: string;
|
|
521
|
-
memory_at: (number | null);
|
|
522
|
-
memory_id: string;
|
|
523
|
-
speculate: (string | null);
|
|
524
|
-
session_id: string;
|
|
525
|
-
gmt_created: number;
|
|
526
|
-
/**
|
|
527
|
-
* Source authority (highest→lowest): policy > official > team > informal
|
|
528
|
-
*/
|
|
529
|
-
source_authority: ("policy" | "official" | "team" | "informal");
|
|
530
|
-
source_raw_memory_id: (string | null);
|
|
531
|
-
}[];
|
|
532
|
-
elapsed_ms: number;
|
|
533
|
-
request_id: string;
|
|
534
|
-
}
|
|
535
|
-
interface BrainKnowledgeGraphInput {
|
|
536
|
-
/**
|
|
537
|
-
* Max nodes (default 5000). When the cap applies the HIGHEST-DEGREE nodes are kept, so a small limit (e.g. 100) returns the hub concepts — that is usually what you want
|
|
538
|
-
*/
|
|
539
|
-
limit?: number;
|
|
540
|
-
/**
|
|
541
|
-
* Read scope; 'both' (default) unions shared + your private
|
|
542
|
-
*/
|
|
543
|
-
scope?: ("shared" | "private" | "both");
|
|
544
|
-
}
|
|
545
|
-
interface BrainKnowledgeGraphOutput {
|
|
546
|
-
edges: {
|
|
547
|
-
reason: (string | null);
|
|
548
|
-
source: string;
|
|
549
|
-
target: string;
|
|
550
|
-
symmetric: boolean;
|
|
551
|
-
relation_type: string;
|
|
552
|
-
}[];
|
|
553
|
-
nodes: {
|
|
554
|
-
id: string;
|
|
555
|
-
degree: number;
|
|
556
|
-
aliases: string[];
|
|
557
|
-
description: (string | null);
|
|
558
|
-
entity_type: string;
|
|
559
|
-
display_name: string;
|
|
560
|
-
canonical_name: string;
|
|
561
|
-
evidence_count: number;
|
|
562
|
-
}[];
|
|
563
|
-
totals: {
|
|
564
|
-
edgeCount: number;
|
|
565
|
-
nodeCount: number;
|
|
566
|
-
};
|
|
567
|
-
truncated: boolean;
|
|
568
|
-
elapsed_ms: number;
|
|
569
|
-
request_id: string;
|
|
570
|
-
}
|
|
571
486
|
interface BrainKnowledgeNeighborhoodInput {
|
|
572
487
|
/**
|
|
573
488
|
* Hops to expand (engine clamps to 3)
|
|
@@ -925,7 +840,10 @@ interface BrainRestoreStatusInput {
|
|
|
925
840
|
}
|
|
926
841
|
type BrainRestoreStatusOutput = ({
|
|
927
842
|
error: (string | null);
|
|
928
|
-
|
|
843
|
+
/**
|
|
844
|
+
* 'pending' | 'wiped' | 'importing' | 'completed' | 'failed'
|
|
845
|
+
*/
|
|
846
|
+
status: string;
|
|
929
847
|
edgeCount: (number | null);
|
|
930
848
|
nodeCount: (number | null);
|
|
931
849
|
productId: string;
|
|
@@ -1506,6 +1424,7 @@ interface DeploymentCanvasGetOutput {
|
|
|
1506
1424
|
command?: string;
|
|
1507
1425
|
outputDir?: string;
|
|
1508
1426
|
};
|
|
1427
|
+
markdown?: boolean;
|
|
1509
1428
|
});
|
|
1510
1429
|
replicas: number;
|
|
1511
1430
|
createdAt: string;
|
|
@@ -1517,9 +1436,16 @@ interface DeploymentCanvasGetOutput {
|
|
|
1517
1436
|
};
|
|
1518
1437
|
};
|
|
1519
1438
|
updatedAt: string;
|
|
1439
|
+
sleepState: ("awake" | "sleeping" | "waking" | "stopped" | "wake_failed");
|
|
1440
|
+
idleMinutes: number;
|
|
1441
|
+
scaleToZero: boolean;
|
|
1520
1442
|
containerPort: number;
|
|
1521
1443
|
environmentId: string;
|
|
1522
1444
|
lastReplicasRunning: number;
|
|
1445
|
+
scaleToZeroEligibility?: {
|
|
1446
|
+
reasons: string[];
|
|
1447
|
+
eligible: boolean;
|
|
1448
|
+
};
|
|
1523
1449
|
}[];
|
|
1524
1450
|
environmentId: string;
|
|
1525
1451
|
}
|
|
@@ -1798,7 +1724,7 @@ interface DeploymentDeploymentCancelInput {
|
|
|
1798
1724
|
}
|
|
1799
1725
|
interface DeploymentDeploymentCancelOutput {
|
|
1800
1726
|
id: string;
|
|
1801
|
-
status: ("Initializing" | "Building" | "Deploying" | "Active" | "Replaced" | "Crashed" | "Completed" | "Failed" | "Removed");
|
|
1727
|
+
status: ("Initializing" | "Building" | "Deploying" | "Active" | "Replaced" | "Crashed" | "Completed" | "Failed" | "Removed" | "Sleeping" | "Stopped" | "WakeFailed");
|
|
1802
1728
|
builtAt: (string | null);
|
|
1803
1729
|
imageRef: (string | null);
|
|
1804
1730
|
commitSha: (string | null);
|
|
@@ -1824,7 +1750,7 @@ interface DeploymentDeploymentGetInput {
|
|
|
1824
1750
|
}
|
|
1825
1751
|
interface DeploymentDeploymentGetOutput {
|
|
1826
1752
|
id: string;
|
|
1827
|
-
status: ("Initializing" | "Building" | "Deploying" | "Active" | "Replaced" | "Crashed" | "Completed" | "Failed" | "Removed");
|
|
1753
|
+
status: ("Initializing" | "Building" | "Deploying" | "Active" | "Replaced" | "Crashed" | "Completed" | "Failed" | "Removed" | "Sleeping" | "Stopped" | "WakeFailed");
|
|
1828
1754
|
builtAt: (string | null);
|
|
1829
1755
|
imageRef: (string | null);
|
|
1830
1756
|
commitSha: (string | null);
|
|
@@ -1850,7 +1776,7 @@ interface DeploymentDeploymentListInput {
|
|
|
1850
1776
|
}
|
|
1851
1777
|
type DeploymentDeploymentListOutput = {
|
|
1852
1778
|
id: string;
|
|
1853
|
-
status: ("Initializing" | "Building" | "Deploying" | "Active" | "Replaced" | "Crashed" | "Completed" | "Failed" | "Removed");
|
|
1779
|
+
status: ("Initializing" | "Building" | "Deploying" | "Active" | "Replaced" | "Crashed" | "Completed" | "Failed" | "Removed" | "Sleeping" | "Stopped" | "WakeFailed");
|
|
1854
1780
|
builtAt: (string | null);
|
|
1855
1781
|
imageRef: (string | null);
|
|
1856
1782
|
commitSha: (string | null);
|
|
@@ -2387,7 +2313,7 @@ interface DeploymentEnvironmentUpdateOutput {
|
|
|
2387
2313
|
baseEnvironmentId: (string | null);
|
|
2388
2314
|
}
|
|
2389
2315
|
interface DeploymentEventsListByEnvironmentInput {
|
|
2390
|
-
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.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");
|
|
2316
|
+
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.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");
|
|
2391
2317
|
limit?: number;
|
|
2392
2318
|
since?: string;
|
|
2393
2319
|
until?: string;
|
|
@@ -2395,7 +2321,7 @@ interface DeploymentEventsListByEnvironmentInput {
|
|
|
2395
2321
|
}
|
|
2396
2322
|
type DeploymentEventsListByEnvironmentOutput = {
|
|
2397
2323
|
id: string;
|
|
2398
|
-
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.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");
|
|
2324
|
+
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.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");
|
|
2399
2325
|
payload: {
|
|
2400
2326
|
[k: string]: unknown;
|
|
2401
2327
|
};
|
|
@@ -2407,7 +2333,7 @@ type DeploymentEventsListByEnvironmentOutput = {
|
|
|
2407
2333
|
environmentId: (string | null);
|
|
2408
2334
|
}[];
|
|
2409
2335
|
interface DeploymentEventsListByServiceInput {
|
|
2410
|
-
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.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");
|
|
2336
|
+
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.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");
|
|
2411
2337
|
limit?: number;
|
|
2412
2338
|
since?: string;
|
|
2413
2339
|
until?: string;
|
|
@@ -2416,7 +2342,7 @@ interface DeploymentEventsListByServiceInput {
|
|
|
2416
2342
|
}
|
|
2417
2343
|
type DeploymentEventsListByServiceOutput = {
|
|
2418
2344
|
id: string;
|
|
2419
|
-
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.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");
|
|
2345
|
+
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.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");
|
|
2420
2346
|
payload: {
|
|
2421
2347
|
[k: string]: unknown;
|
|
2422
2348
|
};
|
|
@@ -2865,6 +2791,7 @@ interface DeploymentServiceCreateInput {
|
|
|
2865
2791
|
command?: string;
|
|
2866
2792
|
outputDir?: string;
|
|
2867
2793
|
};
|
|
2794
|
+
markdown?: boolean;
|
|
2868
2795
|
});
|
|
2869
2796
|
replicas?: number;
|
|
2870
2797
|
resources?: {
|
|
@@ -2918,6 +2845,7 @@ interface DeploymentServiceCreateOutput {
|
|
|
2918
2845
|
command?: string;
|
|
2919
2846
|
outputDir?: string;
|
|
2920
2847
|
};
|
|
2848
|
+
markdown?: boolean;
|
|
2921
2849
|
});
|
|
2922
2850
|
replicas: number;
|
|
2923
2851
|
createdAt: string;
|
|
@@ -2929,9 +2857,16 @@ interface DeploymentServiceCreateOutput {
|
|
|
2929
2857
|
};
|
|
2930
2858
|
};
|
|
2931
2859
|
updatedAt: string;
|
|
2860
|
+
sleepState: ("awake" | "sleeping" | "waking" | "stopped" | "wake_failed");
|
|
2861
|
+
idleMinutes: number;
|
|
2862
|
+
scaleToZero: boolean;
|
|
2932
2863
|
containerPort: number;
|
|
2933
2864
|
environmentId: string;
|
|
2934
2865
|
lastReplicasRunning: number;
|
|
2866
|
+
scaleToZeroEligibility?: {
|
|
2867
|
+
reasons: string[];
|
|
2868
|
+
eligible: boolean;
|
|
2869
|
+
};
|
|
2935
2870
|
}
|
|
2936
2871
|
interface DeploymentServiceCreateOutputReadiness {
|
|
2937
2872
|
path: string;
|
|
@@ -3007,6 +2942,7 @@ interface DeploymentServiceGetOutput {
|
|
|
3007
2942
|
command?: string;
|
|
3008
2943
|
outputDir?: string;
|
|
3009
2944
|
};
|
|
2945
|
+
markdown?: boolean;
|
|
3010
2946
|
});
|
|
3011
2947
|
replicas: number;
|
|
3012
2948
|
createdAt: string;
|
|
@@ -3018,9 +2954,16 @@ interface DeploymentServiceGetOutput {
|
|
|
3018
2954
|
};
|
|
3019
2955
|
};
|
|
3020
2956
|
updatedAt: string;
|
|
2957
|
+
sleepState: ("awake" | "sleeping" | "waking" | "stopped" | "wake_failed");
|
|
2958
|
+
idleMinutes: number;
|
|
2959
|
+
scaleToZero: boolean;
|
|
3021
2960
|
containerPort: number;
|
|
3022
2961
|
environmentId: string;
|
|
3023
2962
|
lastReplicasRunning: number;
|
|
2963
|
+
scaleToZeroEligibility?: {
|
|
2964
|
+
reasons: string[];
|
|
2965
|
+
eligible: boolean;
|
|
2966
|
+
};
|
|
3024
2967
|
}
|
|
3025
2968
|
interface DeploymentServiceGetOutputReadiness {
|
|
3026
2969
|
path: string;
|
|
@@ -3067,6 +3010,7 @@ type DeploymentServiceListOutput = {
|
|
|
3067
3010
|
command?: string;
|
|
3068
3011
|
outputDir?: string;
|
|
3069
3012
|
};
|
|
3013
|
+
markdown?: boolean;
|
|
3070
3014
|
});
|
|
3071
3015
|
replicas: number;
|
|
3072
3016
|
createdAt: string;
|
|
@@ -3078,9 +3022,16 @@ type DeploymentServiceListOutput = {
|
|
|
3078
3022
|
};
|
|
3079
3023
|
};
|
|
3080
3024
|
updatedAt: string;
|
|
3025
|
+
sleepState: ("awake" | "sleeping" | "waking" | "stopped" | "wake_failed");
|
|
3026
|
+
idleMinutes: number;
|
|
3027
|
+
scaleToZero: boolean;
|
|
3081
3028
|
containerPort: number;
|
|
3082
3029
|
environmentId: string;
|
|
3083
3030
|
lastReplicasRunning: number;
|
|
3031
|
+
scaleToZeroEligibility?: {
|
|
3032
|
+
reasons: string[];
|
|
3033
|
+
eligible: boolean;
|
|
3034
|
+
};
|
|
3084
3035
|
}[];
|
|
3085
3036
|
interface DeploymentServiceListOutputReadiness {
|
|
3086
3037
|
path: string;
|
|
@@ -3097,13 +3048,14 @@ interface DeploymentServiceLogsInput {
|
|
|
3097
3048
|
}
|
|
3098
3049
|
interface DeploymentServiceLogsOutput {
|
|
3099
3050
|
lines: string[];
|
|
3051
|
+
sleepState?: ("awake" | "sleeping" | "waking" | "stopped" | "wake_failed");
|
|
3100
3052
|
}
|
|
3101
3053
|
interface DeploymentServiceRedeployInput {
|
|
3102
3054
|
serviceId: string;
|
|
3103
3055
|
}
|
|
3104
3056
|
interface DeploymentServiceRedeployOutput {
|
|
3105
3057
|
id: string;
|
|
3106
|
-
status: ("Initializing" | "Building" | "Deploying" | "Active" | "Replaced" | "Crashed" | "Completed" | "Failed" | "Removed");
|
|
3058
|
+
status: ("Initializing" | "Building" | "Deploying" | "Active" | "Replaced" | "Crashed" | "Completed" | "Failed" | "Removed" | "Sleeping" | "Stopped" | "WakeFailed");
|
|
3107
3059
|
builtAt: (string | null);
|
|
3108
3060
|
imageRef: (string | null);
|
|
3109
3061
|
commitSha: (string | null);
|
|
@@ -3136,7 +3088,7 @@ interface DeploymentServiceRollbackInput {
|
|
|
3136
3088
|
}
|
|
3137
3089
|
interface DeploymentServiceRollbackOutput {
|
|
3138
3090
|
id: string;
|
|
3139
|
-
status: ("Initializing" | "Building" | "Deploying" | "Active" | "Replaced" | "Crashed" | "Completed" | "Failed" | "Removed");
|
|
3091
|
+
status: ("Initializing" | "Building" | "Deploying" | "Active" | "Replaced" | "Crashed" | "Completed" | "Failed" | "Removed" | "Sleeping" | "Stopped" | "WakeFailed");
|
|
3140
3092
|
builtAt: (string | null);
|
|
3141
3093
|
imageRef: (string | null);
|
|
3142
3094
|
commitSha: (string | null);
|
|
@@ -3194,6 +3146,7 @@ interface DeploymentServiceScaleOutput {
|
|
|
3194
3146
|
command?: string;
|
|
3195
3147
|
outputDir?: string;
|
|
3196
3148
|
};
|
|
3149
|
+
markdown?: boolean;
|
|
3197
3150
|
});
|
|
3198
3151
|
replicas: number;
|
|
3199
3152
|
createdAt: string;
|
|
@@ -3205,9 +3158,16 @@ interface DeploymentServiceScaleOutput {
|
|
|
3205
3158
|
};
|
|
3206
3159
|
};
|
|
3207
3160
|
updatedAt: string;
|
|
3161
|
+
sleepState: ("awake" | "sleeping" | "waking" | "stopped" | "wake_failed");
|
|
3162
|
+
idleMinutes: number;
|
|
3163
|
+
scaleToZero: boolean;
|
|
3208
3164
|
containerPort: number;
|
|
3209
3165
|
environmentId: string;
|
|
3210
3166
|
lastReplicasRunning: number;
|
|
3167
|
+
scaleToZeroEligibility?: {
|
|
3168
|
+
reasons: string[];
|
|
3169
|
+
eligible: boolean;
|
|
3170
|
+
};
|
|
3211
3171
|
}
|
|
3212
3172
|
interface DeploymentServiceScaleOutputReadiness {
|
|
3213
3173
|
path: string;
|
|
@@ -3250,6 +3210,7 @@ interface DeploymentServiceUpdateInput {
|
|
|
3250
3210
|
command?: string;
|
|
3251
3211
|
outputDir?: string;
|
|
3252
3212
|
};
|
|
3213
|
+
markdown?: boolean;
|
|
3253
3214
|
});
|
|
3254
3215
|
replicas?: number;
|
|
3255
3216
|
resources?: {
|
|
@@ -3258,6 +3219,8 @@ interface DeploymentServiceUpdateInput {
|
|
|
3258
3219
|
memory?: string;
|
|
3259
3220
|
};
|
|
3260
3221
|
};
|
|
3222
|
+
idleMinutes?: number;
|
|
3223
|
+
scaleToZero?: boolean;
|
|
3261
3224
|
containerPort?: number;
|
|
3262
3225
|
}
|
|
3263
3226
|
interface DeploymentServiceUpdateInputReadiness {
|
|
@@ -3302,6 +3265,7 @@ interface DeploymentServiceUpdateOutput {
|
|
|
3302
3265
|
command?: string;
|
|
3303
3266
|
outputDir?: string;
|
|
3304
3267
|
};
|
|
3268
|
+
markdown?: boolean;
|
|
3305
3269
|
});
|
|
3306
3270
|
replicas: number;
|
|
3307
3271
|
createdAt: string;
|
|
@@ -3313,9 +3277,16 @@ interface DeploymentServiceUpdateOutput {
|
|
|
3313
3277
|
};
|
|
3314
3278
|
};
|
|
3315
3279
|
updatedAt: string;
|
|
3280
|
+
sleepState: ("awake" | "sleeping" | "waking" | "stopped" | "wake_failed");
|
|
3281
|
+
idleMinutes: number;
|
|
3282
|
+
scaleToZero: boolean;
|
|
3316
3283
|
containerPort: number;
|
|
3317
3284
|
environmentId: string;
|
|
3318
3285
|
lastReplicasRunning: number;
|
|
3286
|
+
scaleToZeroEligibility?: {
|
|
3287
|
+
reasons: string[];
|
|
3288
|
+
eligible: boolean;
|
|
3289
|
+
};
|
|
3319
3290
|
}
|
|
3320
3291
|
interface DeploymentServiceUpdateOutputReadiness {
|
|
3321
3292
|
path: string;
|
|
@@ -3326,6 +3297,12 @@ interface DeploymentServiceUpdateOutputReadiness {
|
|
|
3326
3297
|
successThreshold?: number;
|
|
3327
3298
|
initialDelaySeconds?: number;
|
|
3328
3299
|
}
|
|
3300
|
+
interface DeploymentServiceWakeInput {
|
|
3301
|
+
id: string;
|
|
3302
|
+
}
|
|
3303
|
+
interface DeploymentServiceWakeOutput {
|
|
3304
|
+
[k: string]: unknown;
|
|
3305
|
+
}
|
|
3329
3306
|
interface DeploymentSshCommandInput {
|
|
3330
3307
|
serviceId: string;
|
|
3331
3308
|
}
|
|
@@ -13147,6 +13124,194 @@ interface OrganizationSelectOutput {
|
|
|
13147
13124
|
};
|
|
13148
13125
|
activeProductId: (string | null);
|
|
13149
13126
|
}
|
|
13127
|
+
interface PlaygroundAnalyticsOverviewInput {
|
|
13128
|
+
/**
|
|
13129
|
+
* Max records per entity in recent[]; omit for the endpoint default
|
|
13130
|
+
*/
|
|
13131
|
+
limit?: number;
|
|
13132
|
+
}
|
|
13133
|
+
interface PlaygroundAnalyticsOverviewOutput {
|
|
13134
|
+
ok: boolean;
|
|
13135
|
+
minted: boolean;
|
|
13136
|
+
overview?: unknown;
|
|
13137
|
+
http_status: number;
|
|
13138
|
+
}
|
|
13139
|
+
interface PlaygroundBillingEntitlementsInput {
|
|
13140
|
+
}
|
|
13141
|
+
interface PlaygroundBillingEntitlementsOutput {
|
|
13142
|
+
ok: boolean;
|
|
13143
|
+
minted: boolean;
|
|
13144
|
+
http_status: number;
|
|
13145
|
+
entitlements?: unknown;
|
|
13146
|
+
}
|
|
13147
|
+
interface PlaygroundBillingRecordUsageInput {
|
|
13148
|
+
/**
|
|
13149
|
+
* Quantity of events to record against playground-events (SUM); defaults to 1
|
|
13150
|
+
*/
|
|
13151
|
+
value?: number;
|
|
13152
|
+
}
|
|
13153
|
+
interface PlaygroundBillingRecordUsageOutput {
|
|
13154
|
+
minted: boolean;
|
|
13155
|
+
accepted: (number | null);
|
|
13156
|
+
recorded: boolean;
|
|
13157
|
+
duplicates: (number | null);
|
|
13158
|
+
http_status: number;
|
|
13159
|
+
}
|
|
13160
|
+
interface PlaygroundClickupCreateTaskInput {
|
|
13161
|
+
/**
|
|
13162
|
+
* Task title; defaults to a fixture label
|
|
13163
|
+
*/
|
|
13164
|
+
name?: string;
|
|
13165
|
+
/**
|
|
13166
|
+
* ClickUp list id; falls back to CLICKUP_TEST_LIST_ID
|
|
13167
|
+
*/
|
|
13168
|
+
listId?: string;
|
|
13169
|
+
}
|
|
13170
|
+
interface PlaygroundClickupCreateTaskOutput {
|
|
13171
|
+
minted: boolean;
|
|
13172
|
+
task_id: (string | null);
|
|
13173
|
+
list_status: number;
|
|
13174
|
+
vend_status: number;
|
|
13175
|
+
clickup_status: number;
|
|
13176
|
+
installation_count: number;
|
|
13177
|
+
}
|
|
13178
|
+
interface PlaygroundClickupGetLastWebhookInput {
|
|
13179
|
+
}
|
|
13180
|
+
type PlaygroundClickupGetLastWebhookOutput = ({
|
|
13181
|
+
payload: string;
|
|
13182
|
+
event_id: string;
|
|
13183
|
+
provider: string;
|
|
13184
|
+
verified: boolean;
|
|
13185
|
+
product_id: string;
|
|
13186
|
+
occurred_at: string;
|
|
13187
|
+
connector_id: string;
|
|
13188
|
+
clickup_event: (string | null);
|
|
13189
|
+
receipt_count: number;
|
|
13190
|
+
} | {
|
|
13191
|
+
found: false;
|
|
13192
|
+
});
|
|
13193
|
+
interface PlaygroundClickupGetOverviewInput {
|
|
13194
|
+
}
|
|
13195
|
+
interface PlaygroundClickupGetOverviewOutput {
|
|
13196
|
+
team: ({
|
|
13197
|
+
teamId: string;
|
|
13198
|
+
teamName: string;
|
|
13199
|
+
} | null);
|
|
13200
|
+
lists: PlaygroundClickupGetOverviewOutputItems[];
|
|
13201
|
+
tasks: {
|
|
13202
|
+
id: string;
|
|
13203
|
+
name: string;
|
|
13204
|
+
status: (string | null);
|
|
13205
|
+
}[];
|
|
13206
|
+
minted: boolean;
|
|
13207
|
+
spaces: PlaygroundClickupGetOverviewOutputItems[];
|
|
13208
|
+
list_status: number;
|
|
13209
|
+
vend_status: number;
|
|
13210
|
+
lists_status: number;
|
|
13211
|
+
tasks_status: number;
|
|
13212
|
+
spaces_status: number;
|
|
13213
|
+
folders_status: number;
|
|
13214
|
+
installation_count: number;
|
|
13215
|
+
}
|
|
13216
|
+
interface PlaygroundClickupGetOverviewOutputItems {
|
|
13217
|
+
id: string;
|
|
13218
|
+
name: string;
|
|
13219
|
+
}
|
|
13220
|
+
interface PlaygroundGdriveGetLastChangeInput {
|
|
13221
|
+
}
|
|
13222
|
+
type PlaygroundGdriveGetLastChangeOutput = ({
|
|
13223
|
+
file_id: string;
|
|
13224
|
+
removed: boolean;
|
|
13225
|
+
file_name: (string | null);
|
|
13226
|
+
mime_type: (string | null);
|
|
13227
|
+
product_id: string;
|
|
13228
|
+
occurred_at: string;
|
|
13229
|
+
connector_id: string;
|
|
13230
|
+
resource_state: string;
|
|
13231
|
+
} | {
|
|
13232
|
+
found: false;
|
|
13233
|
+
});
|
|
13234
|
+
interface PlaygroundGdriveReadFileInput {
|
|
13235
|
+
/**
|
|
13236
|
+
* Drive file id; falls back to GDRIVE_TEST_FILE_ID, then the first picked file
|
|
13237
|
+
*/
|
|
13238
|
+
fileId?: string;
|
|
13239
|
+
}
|
|
13240
|
+
interface PlaygroundGdriveReadFileOutput {
|
|
13241
|
+
minted: boolean;
|
|
13242
|
+
file_id: (string | null);
|
|
13243
|
+
file_name: (string | null);
|
|
13244
|
+
mime_type: (string | null);
|
|
13245
|
+
file_count: number;
|
|
13246
|
+
get_status: number;
|
|
13247
|
+
list_status: number;
|
|
13248
|
+
vend_status: number;
|
|
13249
|
+
content_bytes: (number | null);
|
|
13250
|
+
}
|
|
13251
|
+
interface PlaygroundGoogleadsReadCustomerInput {
|
|
13252
|
+
}
|
|
13253
|
+
interface PlaygroundGoogleadsReadCustomerOutput {
|
|
13254
|
+
minted: boolean;
|
|
13255
|
+
vended: boolean;
|
|
13256
|
+
customer_id: (string | null);
|
|
13257
|
+
vend_status: number;
|
|
13258
|
+
result_count: number;
|
|
13259
|
+
search_status: number;
|
|
13260
|
+
login_customer_id: (string | null);
|
|
13261
|
+
}
|
|
13262
|
+
interface PlaygroundLifecycleGetStateInput {
|
|
13263
|
+
}
|
|
13264
|
+
interface PlaygroundLifecycleGetStateOutput {
|
|
13265
|
+
blocked: boolean;
|
|
13266
|
+
archived: boolean;
|
|
13267
|
+
productId: string;
|
|
13268
|
+
lastBlockTransition: ({
|
|
13269
|
+
eventId: string;
|
|
13270
|
+
eventName: string;
|
|
13271
|
+
productId: string;
|
|
13272
|
+
occurredAt: string;
|
|
13273
|
+
recordedAt: string;
|
|
13274
|
+
receiptCount: number;
|
|
13275
|
+
organizationId: string;
|
|
13276
|
+
cascadedFromOrg: boolean;
|
|
13277
|
+
} | null);
|
|
13278
|
+
lastArchiveTransition: ({
|
|
13279
|
+
eventId: string;
|
|
13280
|
+
eventName: string;
|
|
13281
|
+
productId: string;
|
|
13282
|
+
occurredAt: string;
|
|
13283
|
+
recordedAt: string;
|
|
13284
|
+
receiptCount: number;
|
|
13285
|
+
organizationId: string;
|
|
13286
|
+
cascadedFromOrg: boolean;
|
|
13287
|
+
} | null);
|
|
13288
|
+
}
|
|
13289
|
+
interface PlaygroundLifecycleListEventsInput {
|
|
13290
|
+
}
|
|
13291
|
+
type PlaygroundLifecycleListEventsOutput = {
|
|
13292
|
+
eventId: string;
|
|
13293
|
+
eventName: string;
|
|
13294
|
+
productId: string;
|
|
13295
|
+
occurredAt: string;
|
|
13296
|
+
recordedAt: string;
|
|
13297
|
+
receiptCount: number;
|
|
13298
|
+
organizationId: string;
|
|
13299
|
+
cascadedFromOrg: boolean;
|
|
13300
|
+
}[];
|
|
13301
|
+
interface PlaygroundWebhookGetLastInput {
|
|
13302
|
+
}
|
|
13303
|
+
type PlaygroundWebhookGetLastOutput = ({
|
|
13304
|
+
payload?: unknown;
|
|
13305
|
+
event_id: string;
|
|
13306
|
+
provider: string;
|
|
13307
|
+
verified: boolean;
|
|
13308
|
+
product_id: string;
|
|
13309
|
+
occurred_at: string;
|
|
13310
|
+
connector_id: string;
|
|
13311
|
+
delivery_count: number;
|
|
13312
|
+
} | {
|
|
13313
|
+
found: false;
|
|
13314
|
+
});
|
|
13150
13315
|
interface RealtimeArchiveExportInput {
|
|
13151
13316
|
/**
|
|
13152
13317
|
* Only entries with ts <= to_ts (epoch ms)
|
|
@@ -15175,14 +15340,10 @@ interface GeneratedClient {
|
|
|
15175
15340
|
list(input: BrainGdriveConnectionsListInput): Promise<BrainGdriveConnectionsListOutput>;
|
|
15176
15341
|
};
|
|
15177
15342
|
knowledge: {
|
|
15178
|
-
graph(input: BrainKnowledgeGraphInput): Promise<BrainKnowledgeGraphOutput>;
|
|
15179
15343
|
neighborhood(input: BrainKnowledgeNeighborhoodInput): Promise<BrainKnowledgeNeighborhoodOutput>;
|
|
15180
15344
|
relations(input: BrainKnowledgeRelationsInput): Promise<BrainKnowledgeRelationsOutput>;
|
|
15181
15345
|
search(input: BrainKnowledgeSearchInput): Promise<BrainKnowledgeSearchOutput>;
|
|
15182
15346
|
};
|
|
15183
|
-
'knowledge-entity': {
|
|
15184
|
-
memories(input: BrainKnowledgeEntityMemoriesInput): Promise<BrainKnowledgeEntityMemoriesOutput>;
|
|
15185
|
-
};
|
|
15186
15347
|
memory: {
|
|
15187
15348
|
add(input: BrainMemoryAddInput): Promise<BrainMemoryAddOutput>;
|
|
15188
15349
|
delete(input: BrainMemoryDeleteInput): Promise<BrainMemoryDeleteOutput>;
|
|
@@ -15377,6 +15538,7 @@ interface GeneratedClient {
|
|
|
15377
15538
|
rollback(input: DeploymentServiceRollbackInput): Promise<DeploymentServiceRollbackOutput>;
|
|
15378
15539
|
scale(input: DeploymentServiceScaleInput): Promise<DeploymentServiceScaleOutput>;
|
|
15379
15540
|
update(input: DeploymentServiceUpdateInput): Promise<DeploymentServiceUpdateOutput>;
|
|
15541
|
+
wake(input: DeploymentServiceWakeInput): Promise<DeploymentServiceWakeOutput>;
|
|
15380
15542
|
};
|
|
15381
15543
|
ssh: {
|
|
15382
15544
|
command(input: DeploymentSshCommandInput): Promise<DeploymentSshCommandOutput>;
|
|
@@ -15597,6 +15759,34 @@ interface GeneratedClient {
|
|
|
15597
15759
|
update(input: OrganizationRolesUpdateInput): Promise<OrganizationRolesUpdateOutput>;
|
|
15598
15760
|
};
|
|
15599
15761
|
};
|
|
15762
|
+
playground: {
|
|
15763
|
+
analytics: {
|
|
15764
|
+
overview(input: PlaygroundAnalyticsOverviewInput): Promise<PlaygroundAnalyticsOverviewOutput>;
|
|
15765
|
+
};
|
|
15766
|
+
billing: {
|
|
15767
|
+
entitlements(input: PlaygroundBillingEntitlementsInput): Promise<PlaygroundBillingEntitlementsOutput>;
|
|
15768
|
+
'record-usage'(input: PlaygroundBillingRecordUsageInput): Promise<PlaygroundBillingRecordUsageOutput>;
|
|
15769
|
+
};
|
|
15770
|
+
clickup: {
|
|
15771
|
+
'create-task'(input: PlaygroundClickupCreateTaskInput): Promise<PlaygroundClickupCreateTaskOutput>;
|
|
15772
|
+
'get-last-webhook'(input: PlaygroundClickupGetLastWebhookInput): Promise<PlaygroundClickupGetLastWebhookOutput>;
|
|
15773
|
+
'get-overview'(input: PlaygroundClickupGetOverviewInput): Promise<PlaygroundClickupGetOverviewOutput>;
|
|
15774
|
+
};
|
|
15775
|
+
gdrive: {
|
|
15776
|
+
'get-last-change'(input: PlaygroundGdriveGetLastChangeInput): Promise<PlaygroundGdriveGetLastChangeOutput>;
|
|
15777
|
+
'read-file'(input: PlaygroundGdriveReadFileInput): Promise<PlaygroundGdriveReadFileOutput>;
|
|
15778
|
+
};
|
|
15779
|
+
googleads: {
|
|
15780
|
+
'read-customer'(input: PlaygroundGoogleadsReadCustomerInput): Promise<PlaygroundGoogleadsReadCustomerOutput>;
|
|
15781
|
+
};
|
|
15782
|
+
lifecycle: {
|
|
15783
|
+
'get-state'(input: PlaygroundLifecycleGetStateInput): Promise<PlaygroundLifecycleGetStateOutput>;
|
|
15784
|
+
'list-events'(input: PlaygroundLifecycleListEventsInput): Promise<PlaygroundLifecycleListEventsOutput>;
|
|
15785
|
+
};
|
|
15786
|
+
webhook: {
|
|
15787
|
+
'get-last'(input: PlaygroundWebhookGetLastInput): Promise<PlaygroundWebhookGetLastOutput>;
|
|
15788
|
+
};
|
|
15789
|
+
};
|
|
15600
15790
|
realtime: {
|
|
15601
15791
|
archive: {
|
|
15602
15792
|
export(input: RealtimeArchiveExportInput): Promise<RealtimeArchiveExportOutput>;
|
|
@@ -15750,4 +15940,4 @@ interface GeneratedClient {
|
|
|
15750
15940
|
};
|
|
15751
15941
|
}
|
|
15752
15942
|
|
|
15753
|
-
export type { BrainGdriveConnectionsListInput as $, AnalyticsQueryRunInput as A, BrainBackupCreateInput as B, BrainConnectorReposListInput as C, BrainConnectorReposListOutput as D, BrainDaemonBatchStatusInput as E, BrainDaemonBatchStatusOutput as F, GeneratedClient as G, BrainDaemonCreateInput as H, BrainDaemonCreateOutput as I, BrainDaemonGetInput as J, BrainDaemonGetOutput as K, BrainDaemonReingestInput as L, BrainDaemonReingestOutput as M, BrainDaemonRemoveInput as N, BrainDaemonRemoveOutput as O, BrainDaemonRunItemsInput as P, BrainDaemonRunItemsOutput as Q, BrainDaemonRunInput as R, BrainDaemonRunOutput as S, BrainDaemonRunsInput as T, BrainDaemonRunsOutput as U, BrainDaemonStatusInput as V, BrainDaemonStatusOutput as W, BrainDaemonUpdateInput as X, BrainDaemonUpdateOutput as Y, BrainDaemonsListInput as Z, BrainDaemonsListOutput as _, AnalyticsQueryRunOutput as a, DeploymentAlertEventsListInput as a$, BrainGdriveConnectionsListOutput as a0, BrainKnowledgeEntityMemoriesInput as a1, BrainKnowledgeEntityMemoriesOutput as a2, BrainKnowledgeGraphInput as a3, BrainKnowledgeGraphOutput as a4, BrainKnowledgeNeighborhoodInput as a5, BrainKnowledgeNeighborhoodOutput as a6, BrainKnowledgeRelationsInput as a7, BrainKnowledgeRelationsOutput as a8, BrainKnowledgeSearchInput as a9, ConsentConfigThemeUpsertOutput as aA, ConsentDashboardConfigGetInput as aB, ConsentDashboardConfigGetOutput as aC, ConsentDashboardDecisionsListInput as aD, ConsentDashboardDecisionsListOutput as aE, ConsentDashboardEmbedSnippetGetInput as aF, ConsentDashboardEmbedSnippetGetOutput as aG, ConsentDashboardStatsGetInput as aH, ConsentDashboardStatsGetOutput as aI, ConsentEmbedGetInput as aJ, ConsentEmbedGetOutput as aK, ConsentProvidersCreateInput as aL, ConsentProvidersCreateOutput as aM, ConsentProvidersDeleteInput as aN, ConsentProvidersDeleteOutput as aO, ConsentProvidersListInput as aP, ConsentProvidersListOutput as aQ, ConsentProvidersUpdateInput as aR, ConsentProvidersUpdateOutput as aS, ConsentRecordsExportInput as aT, ConsentRecordsExportOutput as aU, ConsentStatsGetInput as aV, ConsentStatsGetOutput as aW, DeploymentAlertCreateInput as aX, DeploymentAlertCreateOutput as aY, DeploymentAlertDeleteInput as aZ, DeploymentAlertDeleteOutput as a_, BrainKnowledgeSearchOutput as aa, BrainMemoryAddInput as ab, BrainMemoryAddOutput as ac, BrainMemoryDeleteInput as ad, BrainMemoryDeleteOutput as ae, BrainMemoryGetInput as af, BrainMemoryGetOutput as ag, BrainMemoryListInput as ah, BrainMemoryListOutput as ai, BrainMemorySearchInput as aj, BrainMemorySearchOutput as ak, BrainMemoryStatsInput as al, BrainMemoryStatsOutput as am, BrainMemoryUpdateInput as an, BrainMemoryUpdateOutput as ao, BrainProductSharedMemoryResetInput as ap, BrainProductSharedMemoryResetOutput as aq, BrainRestoreStatusInput as ar, BrainRestoreStatusOutput as as, ConsentConfigCookieDomainUpsertInput as at, ConsentConfigCookieDomainUpsertOutput as au, ConsentConfigCustomizationUpsertInput as av, ConsentConfigCustomizationUpsertOutput as aw, ConsentConfigFloatingIconUpsertInput as ax, ConsentConfigFloatingIconUpsertOutput as ay, ConsentConfigThemeUpsertInput as az, BrainBackupCreateOutput as b, DeploymentDomainListByServiceInput as b$, DeploymentAlertEventsListOutput as b0, DeploymentAlertListInput as b1, DeploymentAlertListOutput as b2, DeploymentAlertUpdateInput as b3, DeploymentAlertUpdateOutput as b4, DeploymentAnalyticsQueryInput as b5, DeploymentAnalyticsQueryOutput as b6, DeploymentAuditListInput as b7, DeploymentAuditListOutput as b8, DeploymentBuildGetInput as b9, DeploymentCloudSqlInstanceBackupOutput as bA, DeploymentCloudSqlInstanceCreateInput as bB, DeploymentCloudSqlInstanceCreateOutput as bC, DeploymentCloudSqlInstanceDeleteInput as bD, DeploymentCloudSqlInstanceDeleteOutput as bE, DeploymentCloudSqlInstanceGetInput as bF, DeploymentCloudSqlInstanceGetOutput as bG, DeploymentCloudSqlInstanceListInput as bH, DeploymentCloudSqlInstanceListOutput as bI, DeploymentCloudSqlInstanceResizeInput as bJ, DeploymentCloudSqlInstanceResizeOutput as bK, DeploymentCloudSqlInstanceRestoreInput as bL, DeploymentCloudSqlInstanceRestoreOutput as bM, DeploymentCloudSqlLogsInput as bN, DeploymentCloudSqlLogsOutput as bO, DeploymentDeploymentCancelInput as bP, DeploymentDeploymentCancelOutput as bQ, DeploymentDeploymentGetInput as bR, DeploymentDeploymentGetOutput as bS, DeploymentDeploymentListInput as bT, DeploymentDeploymentListOutput as bU, DeploymentDomainAddInput as bV, DeploymentDomainAddOutput as bW, DeploymentDomainAllowedListInput as bX, DeploymentDomainAllowedListOutput as bY, DeploymentDomainGetInput as bZ, DeploymentDomainGetOutput as b_, DeploymentBuildGetOutput as ba, DeploymentBuildListInput as bb, DeploymentBuildListOutput as bc, DeploymentBuildLogsInput as bd, DeploymentBuildLogsOutput as be, DeploymentCanvasGetInput as bf, DeploymentCanvasGetOutput as bg, DeploymentCanvasMoveNodeInput as bh, DeploymentCanvasMoveNodeOutput as bi, DeploymentCloudSqlBackfillLogFlagsInput as bj, DeploymentCloudSqlBackfillLogFlagsOutput as bk, DeploymentCloudSqlDatabaseAttachInput as bl, DeploymentCloudSqlDatabaseAttachOutput as bm, DeploymentCloudSqlDatabaseCreateInput as bn, DeploymentCloudSqlDatabaseCreateOutput as bo, DeploymentCloudSqlDatabaseDeleteInput as bp, DeploymentCloudSqlDatabaseDeleteOutput as bq, DeploymentCloudSqlDatabaseDetachInput as br, DeploymentCloudSqlDatabaseDetachOutput as bs, DeploymentCloudSqlDatabaseGetInput as bt, DeploymentCloudSqlDatabaseGetOutput as bu, DeploymentCloudSqlDatabaseListInput as bv, DeploymentCloudSqlDatabaseListOutput as bw, DeploymentCloudSqlInstanceBackupListInput as bx, DeploymentCloudSqlInstanceBackupListOutput as by, DeploymentCloudSqlInstanceBackupInput as bz, BrainBackupRestoreInput as c, DeploymentMetricsGetInput as c$, DeploymentDomainListByServiceOutput as c0, DeploymentDomainListInput as c1, DeploymentDomainListOutput as c2, DeploymentDomainRedirectWwwInput as c3, DeploymentDomainRedirectWwwOutput as c4, DeploymentDomainRemoveInput as c5, DeploymentDomainRemoveOutput as c6, DeploymentDomainRoutesAddInput as c7, DeploymentDomainRoutesAddOutput as c8, DeploymentDomainRoutesListInput as c9, DeploymentManagedServiceBackupListOutput as cA, DeploymentManagedServiceBackupInput as cB, DeploymentManagedServiceBackupOutput as cC, DeploymentManagedServiceConnectInfoInput as cD, DeploymentManagedServiceConnectInfoOutput as cE, DeploymentManagedServiceDeleteInput as cF, DeploymentManagedServiceDeleteOutput as cG, DeploymentManagedServiceGetInput as cH, DeploymentManagedServiceGetOutput as cI, DeploymentManagedServiceListInput as cJ, DeploymentManagedServiceListOutput as cK, DeploymentManagedServiceLogsInput as cL, DeploymentManagedServiceLogsOutput as cM, DeploymentManagedServiceProvisionInput as cN, DeploymentManagedServiceProvisionOutput as cO, DeploymentManagedServiceReconcileInput as cP, DeploymentManagedServiceReconcileOutput as cQ, DeploymentManagedServiceResizeInput as cR, DeploymentManagedServiceResizeOutput as cS, DeploymentManagedServiceRestoreInput as cT, DeploymentManagedServiceRestoreOutput as cU, DeploymentManagedServiceStartInput as cV, DeploymentManagedServiceStartOutput as cW, DeploymentManagedServiceStopInput as cX, DeploymentManagedServiceStopOutput as cY, DeploymentManagedServiceTypesInput as cZ, DeploymentManagedServiceTypesOutput as c_, DeploymentDomainRoutesListOutput as ca, DeploymentDomainRoutesRemoveInput as cb, DeploymentDomainRoutesRemoveOutput as cc, DeploymentDomainRoutesUpdateInput as cd, DeploymentDomainRoutesUpdateOutput as ce, DeploymentDomainVerifyInput as cf, DeploymentDomainVerifyOutput as cg, DeploymentEnvironmentCreateInput as ch, DeploymentEnvironmentCreateOutput as ci, DeploymentEnvironmentDeleteInput as cj, DeploymentEnvironmentDeleteOutput as ck, DeploymentEnvironmentForkInput as cl, DeploymentEnvironmentForkOutput as cm, DeploymentEnvironmentGetInput as cn, DeploymentEnvironmentGetOutput as co, DeploymentEnvironmentListInput as cp, DeploymentEnvironmentListOutput as cq, DeploymentEnvironmentReconcileInput as cr, DeploymentEnvironmentReconcileOutput as cs, DeploymentEnvironmentUpdateInput as ct, DeploymentEnvironmentUpdateOutput as cu, DeploymentEventsListByEnvironmentInput as cv, DeploymentEventsListByEnvironmentOutput as cw, DeploymentEventsListByServiceInput as cx, DeploymentEventsListByServiceOutput as cy, DeploymentManagedServiceBackupListInput as cz, BrainBackupRestoreOutput as d, DeploymentVcsConnectionListOutput as d$, DeploymentMetricsGetOutput as d0, DeploymentPreviewEnvironmentCreateInput as d1, DeploymentPreviewEnvironmentCreateOutput as d2, DeploymentPreviewEnvironmentDeleteInput as d3, DeploymentPreviewEnvironmentDeleteOutput as d4, DeploymentPreviewEnvironmentListInput as d5, DeploymentPreviewEnvironmentListOutput as d6, DeploymentPreviewPolicyGetInput as d7, DeploymentPreviewPolicyGetOutput as d8, DeploymentPreviewPolicySetInput as d9, DeploymentSshKeyDeleteInput as dA, DeploymentSshKeyDeleteOutput as dB, DeploymentSshKeyListInput as dC, DeploymentSshKeyListOutput as dD, DeploymentSshKeyRegisterInput as dE, DeploymentSshKeyRegisterOutput as dF, DeploymentVariableListEnvInput as dG, DeploymentVariableListEnvOutput as dH, DeploymentVariableListProductInput as dI, DeploymentVariableListProductOutput as dJ, DeploymentVariableListInput as dK, DeploymentVariableListOutput as dL, DeploymentVariableSetEnvInput as dM, DeploymentVariableSetEnvOutput as dN, DeploymentVariableSetInput as dO, DeploymentVariableSetOutput as dP, DeploymentVariableSetProductInput as dQ, DeploymentVariableSetProductOutput as dR, DeploymentVariableUnsetEnvInput as dS, DeploymentVariableUnsetEnvOutput as dT, DeploymentVariableUnsetInput as dU, DeploymentVariableUnsetOutput as dV, DeploymentVariableUnsetProductInput as dW, DeploymentVariableUnsetProductOutput as dX, DeploymentVcsBranchListInput as dY, DeploymentVcsBranchListOutput as dZ, DeploymentVcsConnectionListInput as d_, DeploymentPreviewPolicySetOutput as da, DeploymentServiceCreateInput as db, DeploymentServiceCreateOutput as dc, DeploymentServiceDeleteInput as dd, DeploymentServiceDeleteOutput as de, DeploymentServiceExecInput as df, DeploymentServiceExecOutput as dg, DeploymentServiceGetInput as dh, DeploymentServiceGetOutput as di, DeploymentServiceListInput as dj, DeploymentServiceListOutput as dk, DeploymentServiceLogsInput as dl, DeploymentServiceLogsOutput as dm, DeploymentServiceRedeployInput as dn, DeploymentServiceRedeployOutput as dp, DeploymentServiceRestartInput as dq, DeploymentServiceRestartOutput as dr, DeploymentServiceRollbackInput as ds, DeploymentServiceRollbackOutput as dt, DeploymentServiceScaleInput as du, DeploymentServiceScaleOutput as dv, DeploymentServiceUpdateInput as dw, DeploymentServiceUpdateOutput as dx, DeploymentSshCommandInput as dy, DeploymentSshCommandOutput as dz, BrainBackupStatusInput as e, MailDomainGetOutput as e$, DeploymentVcsRepoListInput as e0, DeploymentVcsRepoListOutput as e1, DeploymentVolumeCreateInput as e2, DeploymentVolumeCreateOutput as e3, DeploymentVolumeDeleteInput as e4, DeploymentVolumeDeleteOutput as e5, DeploymentVolumeDetachInput as e6, DeploymentVolumeDetachOutput as e7, DeploymentVolumeGetInput as e8, DeploymentVolumeGetOutput as e9, MailBroadcastGetInput as eA, MailBroadcastGetOutput as eB, MailBroadcastListInput as eC, MailBroadcastListOutput as eD, MailBroadcastQueueInput as eE, MailBroadcastQueueOutput as eF, MailBroadcastStatsInput as eG, MailBroadcastStatsOutput as eH, MailBroadcastUpdateInput as eI, MailBroadcastUpdateOutput as eJ, MailContactCreateInput as eK, MailContactCreateOutput as eL, MailContactDeleteInput as eM, MailContactDeleteOutput as eN, MailContactGetInput as eO, MailContactGetOutput as eP, MailContactListInput as eQ, MailContactListOutput as eR, MailContactUpdateInput as eS, MailContactUpdateOutput as eT, MailDomainAllowedListInput as eU, MailDomainAllowedListOutput as eV, MailDomainCreateInput as eW, MailDomainCreateOutput as eX, MailDomainDeleteInput as eY, MailDomainDeleteOutput as eZ, MailDomainGetInput as e_, DeploymentVolumeListInput as ea, DeploymentVolumeListOutput as eb, DeploymentVolumeResizeInput as ec, DeploymentVolumeResizeOutput as ed, MailApikeyCreateInput as ee, MailApikeyCreateOutput as ef, MailApikeyDeleteInput as eg, MailApikeyDeleteOutput as eh, MailApikeyListInput as ei, MailApikeyListOutput as ej, MailAudienceCreateInput as ek, MailAudienceCreateOutput as el, MailAudienceDeleteInput as em, MailAudienceDeleteOutput as en, MailAudienceGetInput as eo, MailAudienceGetOutput as ep, MailAudienceListInput as eq, MailAudienceListOutput as er, MailAudienceUpdateInput as es, MailAudienceUpdateOutput as et, MailBroadcastCancelInput as eu, MailBroadcastCancelOutput as ev, MailBroadcastCreateInput as ew, MailBroadcastCreateOutput as ex, MailBroadcastDeleteInput as ey, MailBroadcastDeleteOutput as ez, BrainBackupStatusOutput as f, OrganizationConnectorsApproveRequestOutput as f$, MailDomainListInput as f0, MailDomainListOutput as f1, MailDomainUpdateInput as f2, MailDomainUpdateOutput as f3, MailDomainVerifyInput as f4, MailDomainVerifyOutput as f5, MailEmailCancelInput as f6, MailEmailCancelOutput as f7, MailEmailGetInput as f8, MailEmailSendBatchInput as f9, MailTemplateUpdateOutput as fA, MailUsageGetInput as fB, MailUsageGetOutput as fC, MailWebhookCreateInput as fD, MailWebhookCreateOutput as fE, MailWebhookDeleteInput as fF, MailWebhookDeleteOutput as fG, MailWebhookDeliveriesListInput as fH, MailWebhookDeliveriesListOutput as fI, MailWebhookGetInput as fJ, MailWebhookGetOutput as fK, MailWebhookListInput as fL, MailWebhookListOutput as fM, MailWebhookUpdateInput as fN, MailWebhookUpdateOutput as fO, MailEmailGetOutput as fP, OrganizationAuthMeInput as fQ, OrganizationAuthMeOutput as fR, OrganizationBindingsListInput as fS, OrganizationBindingsListOutput as fT, OrganizationClickupInstallInput as fU, OrganizationClickupInstallOutput as fV, OrganizationClickupListInstallationsInput as fW, OrganizationClickupListInstallationsOutput as fX, OrganizationCloudflareInstallInput as fY, OrganizationCloudflareInstallOutput as fZ, OrganizationConnectorsApproveRequestInput as f_, MailEmailSendBatchOutput as fa, MailEmailSendInput as fb, MailEmailSendOutput as fc, MailEmailUpdateInput as fd, MailEmailUpdateOutput as fe, MailReputationGetInput as ff, MailReputationGetOutput as fg, MailStatsGetInput as fh, MailStatsGetOutput as fi, MailSuppressionAddInput as fj, MailSuppressionAddOutput as fk, MailSuppressionListInput as fl, MailSuppressionListOutput as fm, MailSuppressionRemoveInput as fn, MailSuppressionRemoveOutput as fo, MailTemplateCreateInput as fp, MailTemplateCreateOutput as fq, MailTemplateDeleteInput as fr, MailTemplateDeleteOutput as fs, MailTemplateGetInput as ft, MailTemplateGetOutput as fu, MailTemplateListInput as fv, MailTemplateListOutput as fw, MailTemplatePublishInput as fx, MailTemplatePublishOutput as fy, MailTemplateUpdateInput as fz, BrainBackupsListInput as g, OrganizationMemberRemoveOutput as g$, OrganizationConnectorsAttachInput as g0, OrganizationConnectorsAttachOutput as g1, OrganizationConnectorsDeleteInput as g2, OrganizationConnectorsDeleteOutput as g3, OrganizationConnectorsDenyRequestInput as g4, OrganizationConnectorsDenyRequestOutput as g5, OrganizationConnectorsDetachInput as g6, OrganizationConnectorsDetachOutput as g7, OrganizationConnectorsListAttachmentsInput as g8, OrganizationConnectorsListAttachmentsOutput as g9, OrganizationExtensionsListInput as gA, OrganizationExtensionsListOutput as gB, OrganizationExtensionsUninstallInput as gC, OrganizationExtensionsUninstallOutput as gD, OrganizationFeedbackSubmitInput as gE, OrganizationFeedbackSubmitOutput as gF, OrganizationGdriveInstallInput as gG, OrganizationGdriveInstallOutput as gH, OrganizationGithubInstallInput as gI, OrganizationGithubInstallOutput as gJ, OrganizationGithubListInstallationsInput as gK, OrganizationGithubListInstallationsOutput as gL, OrganizationGoogleadsInstallInput as gM, OrganizationGoogleadsInstallOutput as gN, OrganizationListInput as gO, OrganizationListOutput as gP, OrganizationMemberAcceptInviteInput as gQ, OrganizationMemberAcceptInviteOutput as gR, OrganizationMemberInviteInput as gS, OrganizationMemberInviteOutput as gT, OrganizationMemberListInvitationsInput as gU, OrganizationMemberListInvitationsOutput as gV, OrganizationMemberListProductAccessInput as gW, OrganizationMemberListProductAccessOutput as gX, OrganizationMemberListInput as gY, OrganizationMemberListOutput as gZ, OrganizationMemberRemoveInput as g_, OrganizationConnectorsListAvailableInput as ga, OrganizationConnectorsListAvailableOutput as gb, OrganizationConnectorsListOrgInput as gc, OrganizationConnectorsListOrgOutput as gd, OrganizationConnectorsListInput as ge, OrganizationConnectorsListOutput as gf, OrganizationConnectorsListRequestsInput as gg, OrganizationConnectorsListRequestsOutput as gh, OrganizationConnectorsRemoveInput as gi, OrganizationConnectorsRemoveOutput as gj, OrganizationConnectorsRequestInput as gk, OrganizationConnectorsRequestOutput as gl, OrganizationCreateInput as gm, OrganizationCreateOutput as gn, OrganizationDomainsAddInput as go, OrganizationDomainsAddOutput as gp, OrganizationDomainsGetInput as gq, OrganizationDomainsGetOutput as gr, OrganizationDomainsListInput as gs, OrganizationDomainsListOutput as gt, OrganizationDomainsRemoveInput as gu, OrganizationDomainsRemoveOutput as gv, OrganizationExtensionsInstallInput as gw, OrganizationExtensionsInstallOutput as gx, OrganizationExtensionsListInstalledInput as gy, OrganizationExtensionsListInstalledOutput as gz, BrainBackupsListOutput as h, RealtimeNamespaceGetOutput as h$, OrganizationMemberRevokeInvitationInput as h0, OrganizationMemberRevokeInvitationOutput as h1, OrganizationMemberSetRoleInput as h2, OrganizationMemberSetRoleOutput as h3, OrganizationMemberShareProductInput as h4, OrganizationMemberShareProductOutput as h5, OrganizationMemberUnshareProductInput as h6, OrganizationMemberUnshareProductOutput as h7, OrganizationMembersAssignRoleInput as h8, OrganizationMembersAssignRoleOutput as h9, OrganizationRolesListInput as hA, OrganizationRolesListOutput as hB, OrganizationRolesUpdateInput as hC, OrganizationRolesUpdateOutput as hD, OrganizationSelectInput as hE, OrganizationSelectOutput as hF, RealtimeArchiveExportInput as hG, RealtimeArchiveExportOutput as hH, RealtimeArchiveExportStatusInput as hI, RealtimeArchiveExportStatusOutput as hJ, RealtimeArchiveGetInput as hK, RealtimeArchiveGetOutput as hL, RealtimeGrantCreateInput as hM, RealtimeGrantCreateOutput as hN, RealtimeGrantListInput as hO, RealtimeGrantListOutput as hP, RealtimeGrantRevokeInput as hQ, RealtimeGrantRevokeOutput as hR, RealtimeHistoryGetInput as hS, RealtimeHistoryGetOutput as hT, RealtimeMessagesPublishInput as hU, RealtimeMessagesPublishOutput as hV, RealtimeNamespaceCreateInput as hW, RealtimeNamespaceCreateOutput as hX, RealtimeNamespaceDeleteInput as hY, RealtimeNamespaceDeleteOutput as hZ, RealtimeNamespaceGetInput as h_, OrganizationPermissionCatalogInput as ha, OrganizationPermissionCatalogOutput as hb, OrganizationProductAcceptInvitationInput as hc, OrganizationProductAcceptInvitationOutput as hd, OrganizationProductCreateInput as he, OrganizationProductCreateOutput as hf, OrganizationProductInviteInput as hg, OrganizationProductInviteOutput as hh, OrganizationProductListInvitationsInput as hi, OrganizationProductListInvitationsOutput as hj, OrganizationProductListMembersInput as hk, OrganizationProductListMembersOutput as hl, OrganizationProductListInput as hm, OrganizationProductListOutput as hn, OrganizationProductListRolesInput as ho, OrganizationProductListRolesOutput as hp, OrganizationProductRevokeInvitationInput as hq, OrganizationProductRevokeInvitationOutput as hr, OrganizationProductSelectInput as hs, OrganizationProductSelectOutput as ht, OrganizationRolesCreateInput as hu, OrganizationRolesCreateOutput as hv, OrganizationRolesDeleteInput as hw, OrganizationRolesDeleteOutput as hx, OrganizationRolesGetInput as hy, OrganizationRolesGetOutput as hz, BrainClickupChannelsListInput as i, TrackingGoogleadsFeedbackConfigGetOutput as i$, RealtimeNamespaceListInput as i0, RealtimeNamespaceListOutput as i1, RealtimeNamespaceUpdateInput as i2, RealtimeNamespaceUpdateOutput as i3, RealtimePresenceEnterInput as i4, RealtimePresenceEnterOutput as i5, RealtimePresenceGetInput as i6, RealtimePresenceGetOutput as i7, RealtimePresenceLeaveInput as i8, RealtimePresenceLeaveOutput as i9, TrackingApiKeysListInput as iA, TrackingApiKeysListOutput as iB, TrackingApiKeysRevokeInput as iC, TrackingApiKeysRevokeOutput as iD, TrackingApiKeysRotateInput as iE, TrackingApiKeysRotateOutput as iF, TrackingDomainsCreateInput as iG, TrackingDomainsCreateOutput as iH, TrackingDomainsDeleteInput as iI, TrackingDomainsDeleteOutput as iJ, TrackingDomainsGetInput as iK, TrackingDomainsGetOutput as iL, TrackingDomainsListInput as iM, TrackingDomainsListOutput as iN, TrackingDomainsVerifyInput as iO, TrackingDomainsVerifyOutput as iP, TrackingEventNamesArchiveInput as iQ, TrackingEventNamesArchiveOutput as iR, TrackingEventNamesListInput as iS, TrackingEventNamesListOutput as iT, TrackingEventNamesUnarchiveInput as iU, TrackingEventNamesUnarchiveOutput as iV, TrackingGoogleadsConnectionStatusInput as iW, TrackingGoogleadsConnectionStatusOutput as iX, TrackingGoogleadsConversionActionsInput as iY, TrackingGoogleadsConversionActionsOutput as iZ, TrackingGoogleadsFeedbackConfigGetInput as i_, RealtimePresenceStatsInput as ia, RealtimePresenceStatsOutput as ib, RealtimePresenceUpdateInput as ic, RealtimePresenceUpdateOutput as id, RealtimeStatusGetInput as ie, RealtimeStatusGetOutput as ig, RealtimeTokensCreateInput as ih, RealtimeTokensCreateOutput as ii, RealtimeWebhookCreateInput as ij, RealtimeWebhookCreateOutput as ik, RealtimeWebhookDeleteInput as il, RealtimeWebhookDeleteOutput as im, RealtimeWebhookDeliveriesListInput as io, RealtimeWebhookDeliveriesListOutput as ip, RealtimeWebhookGetInput as iq, RealtimeWebhookGetOutput as ir, RealtimeWebhookListInput as is, RealtimeWebhookListOutput as it, RealtimeWebhookSecretRotateInput as iu, RealtimeWebhookSecretRotateOutput as iv, RealtimeWebhookUpdateInput as iw, RealtimeWebhookUpdateOutput as ix, TrackingApiKeysCreateInput as iy, TrackingApiKeysCreateOutput as iz, BrainClickupChannelsListOutput as j, TrackingGoogleadsFeedbackConfigSetInput as j0, TrackingGoogleadsFeedbackConfigSetOutput as j1, TrackingGoogleadsFeedbackRunInput as j2, TrackingGoogleadsFeedbackRunOutput as j3, TrackingGoogleadsFeedbackStatusInput as j4, TrackingGoogleadsFeedbackStatusOutput as j5, TrackingGoogleadsFeedbackUploadsInput as j6, TrackingGoogleadsFeedbackUploadsOutput as j7, TrackingGoogleadsRoasReportInput as j8, TrackingGoogleadsRoasReportOutput as j9, TrackingProfilesGetInput as jA, TrackingProfilesGetOutput as jB, TrackingProfilesListInput as jC, TrackingProfilesListOutput as jD, TrackingReportsAttributedJourneyInput as jE, TrackingReportsAttributedJourneyOutput as jF, TrackingReportsRevenueBySourceInput as jG, TrackingReportsRevenueBySourceOutput as jH, TrackingReportsSourcePeopleInput as jI, TrackingReportsSourcePeopleOutput as jJ, TrackingSnippetsGetInput as jK, TrackingSnippetsGetOutput as jL, WaitlistConfigGetInput as jM, WaitlistConfigGetOutput as jN, WaitlistConfigUpsertInput as jO, WaitlistConfigUpsertOutput as jP, WaitlistEmbedGetInput as jQ, WaitlistEmbedGetOutput as jR, WaitlistInvitesSendInput as jS, WaitlistInvitesSendOutput as jT, WaitlistSignupsEraseInput as jU, WaitlistSignupsEraseOutput as jV, WaitlistSignupsFunnelInput as jW, WaitlistSignupsFunnelOutput as jX, WaitlistSignupsListInput as jY, WaitlistSignupsListOutput as jZ, TrackingGoogleadsSyncNowInput as ja, TrackingGoogleadsSyncNowOutput as jb, TrackingGoogleadsTrackingHealthInput as jc, TrackingGoogleadsTrackingHealthOutput as jd, TrackingGoogleadsUsVsPlatformInput as je, TrackingGoogleadsUsVsPlatformOutput as jf, TrackingIdentityHealthInput as jg, TrackingIdentityHealthOutput as jh, TrackingInstallDomainsCreateInput as ji, TrackingInstallDomainsCreateOutput as jj, TrackingInstallDomainsDeleteInput as jk, TrackingInstallDomainsDeleteOutput as jl, TrackingInstallDomainsListInput as jm, TrackingInstallDomainsListOutput as jn, TrackingLinkDomainsCreateInput as jo, TrackingLinkDomainsCreateOutput as jp, TrackingLinkDomainsDeleteInput as jq, TrackingLinkDomainsDeleteOutput as jr, TrackingLinkDomainsListInput as js, TrackingLinkDomainsListOutput as jt, TrackingLiveEventsListInput as ju, TrackingLiveEventsListOutput as jv, TrackingProfilesDeleteInput as jw, TrackingProfilesDeleteOutput as jx, TrackingProfilesExportInput as jy, TrackingProfilesExportOutput as jz, BrainClickupConnectionsListInput as k, BrainClickupConnectionsListOutput as l, BrainClickupListsListInput as m, BrainClickupListsListOutput as n, BrainClickupSpacesListInput as o, BrainClickupSpacesListOutput as p, BrainCognitionDigestInput as q, BrainCognitionDigestOutput as r, BrainCognitionStatusInput as s, BrainCognitionStatusOutput as t, BrainCognitionSweepInput as u, BrainCognitionSweepOutput as v, BrainConnectorBranchesListInput as w, BrainConnectorBranchesListOutput as x, BrainConnectorConnectionsListInput as y, BrainConnectorConnectionsListOutput as z };
|
|
15943
|
+
export type { BrainGdriveConnectionsListInput as $, AnalyticsQueryRunInput as A, BrainBackupCreateInput as B, BrainConnectorReposListInput as C, BrainConnectorReposListOutput as D, BrainDaemonBatchStatusInput as E, BrainDaemonBatchStatusOutput as F, GeneratedClient as G, BrainDaemonCreateInput as H, BrainDaemonCreateOutput as I, BrainDaemonGetInput as J, BrainDaemonGetOutput as K, BrainDaemonReingestInput as L, BrainDaemonReingestOutput as M, BrainDaemonRemoveInput as N, BrainDaemonRemoveOutput as O, BrainDaemonRunItemsInput as P, BrainDaemonRunItemsOutput as Q, BrainDaemonRunInput as R, BrainDaemonRunOutput as S, BrainDaemonRunsInput as T, BrainDaemonRunsOutput as U, BrainDaemonStatusInput as V, BrainDaemonStatusOutput as W, BrainDaemonUpdateInput as X, BrainDaemonUpdateOutput as Y, BrainDaemonsListInput as Z, BrainDaemonsListOutput as _, AnalyticsQueryRunOutput as a, DeploymentAlertUpdateInput as a$, BrainGdriveConnectionsListOutput as a0, BrainKnowledgeNeighborhoodInput as a1, BrainKnowledgeNeighborhoodOutput as a2, BrainKnowledgeRelationsInput as a3, BrainKnowledgeRelationsOutput as a4, BrainKnowledgeSearchInput as a5, BrainKnowledgeSearchOutput as a6, BrainMemoryAddInput as a7, BrainMemoryAddOutput as a8, BrainMemoryDeleteInput as a9, ConsentDashboardDecisionsListOutput as aA, ConsentDashboardEmbedSnippetGetInput as aB, ConsentDashboardEmbedSnippetGetOutput as aC, ConsentDashboardStatsGetInput as aD, ConsentDashboardStatsGetOutput as aE, ConsentEmbedGetInput as aF, ConsentEmbedGetOutput as aG, ConsentProvidersCreateInput as aH, ConsentProvidersCreateOutput as aI, ConsentProvidersDeleteInput as aJ, ConsentProvidersDeleteOutput as aK, ConsentProvidersListInput as aL, ConsentProvidersListOutput as aM, ConsentProvidersUpdateInput as aN, ConsentProvidersUpdateOutput as aO, ConsentRecordsExportInput as aP, ConsentRecordsExportOutput as aQ, ConsentStatsGetInput as aR, ConsentStatsGetOutput as aS, DeploymentAlertCreateInput as aT, DeploymentAlertCreateOutput as aU, DeploymentAlertDeleteInput as aV, DeploymentAlertDeleteOutput as aW, DeploymentAlertEventsListInput as aX, DeploymentAlertEventsListOutput as aY, DeploymentAlertListInput as aZ, DeploymentAlertListOutput as a_, BrainMemoryDeleteOutput as aa, BrainMemoryGetInput as ab, BrainMemoryGetOutput as ac, BrainMemoryListInput as ad, BrainMemoryListOutput as ae, BrainMemorySearchInput as af, BrainMemorySearchOutput as ag, BrainMemoryStatsInput as ah, BrainMemoryStatsOutput as ai, BrainMemoryUpdateInput as aj, BrainMemoryUpdateOutput as ak, BrainProductSharedMemoryResetInput as al, BrainProductSharedMemoryResetOutput as am, BrainRestoreStatusInput as an, BrainRestoreStatusOutput as ao, ConsentConfigCookieDomainUpsertInput as ap, ConsentConfigCookieDomainUpsertOutput as aq, ConsentConfigCustomizationUpsertInput as ar, ConsentConfigCustomizationUpsertOutput as as, ConsentConfigFloatingIconUpsertInput as at, ConsentConfigFloatingIconUpsertOutput as au, ConsentConfigThemeUpsertInput as av, ConsentConfigThemeUpsertOutput as aw, ConsentDashboardConfigGetInput as ax, ConsentDashboardConfigGetOutput as ay, ConsentDashboardDecisionsListInput as az, BrainBackupCreateOutput as b, DeploymentDomainRedirectWwwInput as b$, DeploymentAlertUpdateOutput as b0, DeploymentAnalyticsQueryInput as b1, DeploymentAnalyticsQueryOutput as b2, DeploymentAuditListInput as b3, DeploymentAuditListOutput as b4, DeploymentBuildGetInput as b5, DeploymentBuildGetOutput as b6, DeploymentBuildListInput as b7, DeploymentBuildListOutput as b8, DeploymentBuildLogsInput as b9, DeploymentCloudSqlInstanceDeleteOutput as bA, DeploymentCloudSqlInstanceGetInput as bB, DeploymentCloudSqlInstanceGetOutput as bC, DeploymentCloudSqlInstanceListInput as bD, DeploymentCloudSqlInstanceListOutput as bE, DeploymentCloudSqlInstanceResizeInput as bF, DeploymentCloudSqlInstanceResizeOutput as bG, DeploymentCloudSqlInstanceRestoreInput as bH, DeploymentCloudSqlInstanceRestoreOutput as bI, DeploymentCloudSqlLogsInput as bJ, DeploymentCloudSqlLogsOutput as bK, DeploymentDeploymentCancelInput as bL, DeploymentDeploymentCancelOutput as bM, DeploymentDeploymentGetInput as bN, DeploymentDeploymentGetOutput as bO, DeploymentDeploymentListInput as bP, DeploymentDeploymentListOutput as bQ, DeploymentDomainAddInput as bR, DeploymentDomainAddOutput as bS, DeploymentDomainAllowedListInput as bT, DeploymentDomainAllowedListOutput as bU, DeploymentDomainGetInput as bV, DeploymentDomainGetOutput as bW, DeploymentDomainListByServiceInput as bX, DeploymentDomainListByServiceOutput as bY, DeploymentDomainListInput as bZ, DeploymentDomainListOutput as b_, DeploymentBuildLogsOutput as ba, DeploymentCanvasGetInput as bb, DeploymentCanvasGetOutput as bc, DeploymentCanvasMoveNodeInput as bd, DeploymentCanvasMoveNodeOutput as be, DeploymentCloudSqlBackfillLogFlagsInput as bf, DeploymentCloudSqlBackfillLogFlagsOutput as bg, DeploymentCloudSqlDatabaseAttachInput as bh, DeploymentCloudSqlDatabaseAttachOutput as bi, DeploymentCloudSqlDatabaseCreateInput as bj, DeploymentCloudSqlDatabaseCreateOutput as bk, DeploymentCloudSqlDatabaseDeleteInput as bl, DeploymentCloudSqlDatabaseDeleteOutput as bm, DeploymentCloudSqlDatabaseDetachInput as bn, DeploymentCloudSqlDatabaseDetachOutput as bo, DeploymentCloudSqlDatabaseGetInput as bp, DeploymentCloudSqlDatabaseGetOutput as bq, DeploymentCloudSqlDatabaseListInput as br, DeploymentCloudSqlDatabaseListOutput as bs, DeploymentCloudSqlInstanceBackupListInput as bt, DeploymentCloudSqlInstanceBackupListOutput as bu, DeploymentCloudSqlInstanceBackupInput as bv, DeploymentCloudSqlInstanceBackupOutput as bw, DeploymentCloudSqlInstanceCreateInput as bx, DeploymentCloudSqlInstanceCreateOutput as by, DeploymentCloudSqlInstanceDeleteInput as bz, BrainBackupRestoreInput as c, DeploymentPreviewEnvironmentDeleteInput as c$, DeploymentDomainRedirectWwwOutput as c0, DeploymentDomainRemoveInput as c1, DeploymentDomainRemoveOutput as c2, DeploymentDomainRoutesAddInput as c3, DeploymentDomainRoutesAddOutput as c4, DeploymentDomainRoutesListInput as c5, DeploymentDomainRoutesListOutput as c6, DeploymentDomainRoutesRemoveInput as c7, DeploymentDomainRoutesRemoveOutput as c8, DeploymentDomainRoutesUpdateInput as c9, DeploymentManagedServiceConnectInfoOutput as cA, DeploymentManagedServiceDeleteInput as cB, DeploymentManagedServiceDeleteOutput as cC, DeploymentManagedServiceGetInput as cD, DeploymentManagedServiceGetOutput as cE, DeploymentManagedServiceListInput as cF, DeploymentManagedServiceListOutput as cG, DeploymentManagedServiceLogsInput as cH, DeploymentManagedServiceLogsOutput as cI, DeploymentManagedServiceProvisionInput as cJ, DeploymentManagedServiceProvisionOutput as cK, DeploymentManagedServiceReconcileInput as cL, DeploymentManagedServiceReconcileOutput as cM, DeploymentManagedServiceResizeInput as cN, DeploymentManagedServiceResizeOutput as cO, DeploymentManagedServiceRestoreInput as cP, DeploymentManagedServiceRestoreOutput as cQ, DeploymentManagedServiceStartInput as cR, DeploymentManagedServiceStartOutput as cS, DeploymentManagedServiceStopInput as cT, DeploymentManagedServiceStopOutput as cU, DeploymentManagedServiceTypesInput as cV, DeploymentManagedServiceTypesOutput as cW, DeploymentMetricsGetInput as cX, DeploymentMetricsGetOutput as cY, DeploymentPreviewEnvironmentCreateInput as cZ, DeploymentPreviewEnvironmentCreateOutput as c_, DeploymentDomainRoutesUpdateOutput as ca, DeploymentDomainVerifyInput as cb, DeploymentDomainVerifyOutput as cc, DeploymentEnvironmentCreateInput as cd, DeploymentEnvironmentCreateOutput as ce, DeploymentEnvironmentDeleteInput as cf, DeploymentEnvironmentDeleteOutput as cg, DeploymentEnvironmentForkInput as ch, DeploymentEnvironmentForkOutput as ci, DeploymentEnvironmentGetInput as cj, DeploymentEnvironmentGetOutput as ck, DeploymentEnvironmentListInput as cl, DeploymentEnvironmentListOutput as cm, DeploymentEnvironmentReconcileInput as cn, DeploymentEnvironmentReconcileOutput as co, DeploymentEnvironmentUpdateInput as cp, DeploymentEnvironmentUpdateOutput as cq, DeploymentEventsListByEnvironmentInput as cr, DeploymentEventsListByEnvironmentOutput as cs, DeploymentEventsListByServiceInput as ct, DeploymentEventsListByServiceOutput as cu, DeploymentManagedServiceBackupListInput as cv, DeploymentManagedServiceBackupListOutput as cw, DeploymentManagedServiceBackupInput as cx, DeploymentManagedServiceBackupOutput as cy, DeploymentManagedServiceConnectInfoInput as cz, BrainBackupRestoreOutput as d, DeploymentVcsRepoListOutput as d$, DeploymentPreviewEnvironmentDeleteOutput as d0, DeploymentPreviewEnvironmentListInput as d1, DeploymentPreviewEnvironmentListOutput as d2, DeploymentPreviewPolicyGetInput as d3, DeploymentPreviewPolicyGetOutput as d4, DeploymentPreviewPolicySetInput as d5, DeploymentPreviewPolicySetOutput as d6, DeploymentServiceCreateInput as d7, DeploymentServiceCreateOutput as d8, DeploymentServiceDeleteInput as d9, DeploymentSshKeyListInput as dA, DeploymentSshKeyListOutput as dB, DeploymentSshKeyRegisterInput as dC, DeploymentSshKeyRegisterOutput as dD, DeploymentVariableListEnvInput as dE, DeploymentVariableListEnvOutput as dF, DeploymentVariableListProductInput as dG, DeploymentVariableListProductOutput as dH, DeploymentVariableListInput as dI, DeploymentVariableListOutput as dJ, DeploymentVariableSetEnvInput as dK, DeploymentVariableSetEnvOutput as dL, DeploymentVariableSetInput as dM, DeploymentVariableSetOutput as dN, DeploymentVariableSetProductInput as dO, DeploymentVariableSetProductOutput as dP, DeploymentVariableUnsetEnvInput as dQ, DeploymentVariableUnsetEnvOutput as dR, DeploymentVariableUnsetInput as dS, DeploymentVariableUnsetOutput as dT, DeploymentVariableUnsetProductInput as dU, DeploymentVariableUnsetProductOutput as dV, DeploymentVcsBranchListInput as dW, DeploymentVcsBranchListOutput as dX, DeploymentVcsConnectionListInput as dY, DeploymentVcsConnectionListOutput as dZ, DeploymentVcsRepoListInput as d_, DeploymentServiceDeleteOutput as da, DeploymentServiceExecInput as db, DeploymentServiceExecOutput as dc, DeploymentServiceGetInput as dd, DeploymentServiceGetOutput as de, DeploymentServiceListInput as df, DeploymentServiceListOutput as dg, DeploymentServiceLogsInput as dh, DeploymentServiceLogsOutput as di, DeploymentServiceRedeployInput as dj, DeploymentServiceRedeployOutput as dk, DeploymentServiceRestartInput as dl, DeploymentServiceRestartOutput as dm, DeploymentServiceRollbackInput as dn, DeploymentServiceRollbackOutput as dp, DeploymentServiceScaleInput as dq, DeploymentServiceScaleOutput as dr, DeploymentServiceUpdateInput as ds, DeploymentServiceUpdateOutput as dt, DeploymentServiceWakeInput as du, DeploymentServiceWakeOutput as dv, DeploymentSshCommandInput as dw, DeploymentSshCommandOutput as dx, DeploymentSshKeyDeleteInput as dy, DeploymentSshKeyDeleteOutput as dz, BrainBackupStatusInput as e, MailDomainListOutput as e$, DeploymentVolumeCreateInput as e0, DeploymentVolumeCreateOutput as e1, DeploymentVolumeDeleteInput as e2, DeploymentVolumeDeleteOutput as e3, DeploymentVolumeDetachInput as e4, DeploymentVolumeDetachOutput as e5, DeploymentVolumeGetInput as e6, DeploymentVolumeGetOutput as e7, DeploymentVolumeListInput as e8, DeploymentVolumeListOutput as e9, MailBroadcastListInput as eA, MailBroadcastListOutput as eB, MailBroadcastQueueInput as eC, MailBroadcastQueueOutput as eD, MailBroadcastStatsInput as eE, MailBroadcastStatsOutput as eF, MailBroadcastUpdateInput as eG, MailBroadcastUpdateOutput as eH, MailContactCreateInput as eI, MailContactCreateOutput as eJ, MailContactDeleteInput as eK, MailContactDeleteOutput as eL, MailContactGetInput as eM, MailContactGetOutput as eN, MailContactListInput as eO, MailContactListOutput as eP, MailContactUpdateInput as eQ, MailContactUpdateOutput as eR, MailDomainAllowedListInput as eS, MailDomainAllowedListOutput as eT, MailDomainCreateInput as eU, MailDomainCreateOutput as eV, MailDomainDeleteInput as eW, MailDomainDeleteOutput as eX, MailDomainGetInput as eY, MailDomainGetOutput as eZ, MailDomainListInput as e_, DeploymentVolumeResizeInput as ea, DeploymentVolumeResizeOutput as eb, MailApikeyCreateInput as ec, MailApikeyCreateOutput as ed, MailApikeyDeleteInput as ee, MailApikeyDeleteOutput as ef, MailApikeyListInput as eg, MailApikeyListOutput as eh, MailAudienceCreateInput as ei, MailAudienceCreateOutput as ej, MailAudienceDeleteInput as ek, MailAudienceDeleteOutput as el, MailAudienceGetInput as em, MailAudienceGetOutput as en, MailAudienceListInput as eo, MailAudienceListOutput as ep, MailAudienceUpdateInput as eq, MailAudienceUpdateOutput as er, MailBroadcastCancelInput as es, MailBroadcastCancelOutput as et, MailBroadcastCreateInput as eu, MailBroadcastCreateOutput as ev, MailBroadcastDeleteInput as ew, MailBroadcastDeleteOutput as ex, MailBroadcastGetInput as ey, MailBroadcastGetOutput as ez, BrainBackupStatusOutput as f, OrganizationConnectorsAttachOutput as f$, MailDomainUpdateInput as f0, MailDomainUpdateOutput as f1, MailDomainVerifyInput as f2, MailDomainVerifyOutput as f3, MailEmailCancelInput as f4, MailEmailCancelOutput as f5, MailEmailGetInput as f6, MailEmailSendBatchInput as f7, MailEmailSendBatchOutput as f8, MailEmailSendInput as f9, MailUsageGetOutput as fA, MailWebhookCreateInput as fB, MailWebhookCreateOutput as fC, MailWebhookDeleteInput as fD, MailWebhookDeleteOutput as fE, MailWebhookDeliveriesListInput as fF, MailWebhookDeliveriesListOutput as fG, MailWebhookGetInput as fH, MailWebhookGetOutput as fI, MailWebhookListInput as fJ, MailWebhookListOutput as fK, MailWebhookUpdateInput as fL, MailWebhookUpdateOutput as fM, MailEmailGetOutput as fN, OrganizationAuthMeInput as fO, OrganizationAuthMeOutput as fP, OrganizationBindingsListInput as fQ, OrganizationBindingsListOutput as fR, OrganizationClickupInstallInput as fS, OrganizationClickupInstallOutput as fT, OrganizationClickupListInstallationsInput as fU, OrganizationClickupListInstallationsOutput as fV, OrganizationCloudflareInstallInput as fW, OrganizationCloudflareInstallOutput as fX, OrganizationConnectorsApproveRequestInput as fY, OrganizationConnectorsApproveRequestOutput as fZ, OrganizationConnectorsAttachInput as f_, MailEmailSendOutput as fa, MailEmailUpdateInput as fb, MailEmailUpdateOutput as fc, MailReputationGetInput as fd, MailReputationGetOutput as fe, MailStatsGetInput as ff, MailStatsGetOutput as fg, MailSuppressionAddInput as fh, MailSuppressionAddOutput as fi, MailSuppressionListInput as fj, MailSuppressionListOutput as fk, MailSuppressionRemoveInput as fl, MailSuppressionRemoveOutput as fm, MailTemplateCreateInput as fn, MailTemplateCreateOutput as fo, MailTemplateDeleteInput as fp, MailTemplateDeleteOutput as fq, MailTemplateGetInput as fr, MailTemplateGetOutput as fs, MailTemplateListInput as ft, MailTemplateListOutput as fu, MailTemplatePublishInput as fv, MailTemplatePublishOutput as fw, MailTemplateUpdateInput as fx, MailTemplateUpdateOutput as fy, MailUsageGetInput as fz, BrainBackupsListInput as g, OrganizationMemberRevokeInvitationOutput as g$, OrganizationConnectorsDeleteInput as g0, OrganizationConnectorsDeleteOutput as g1, OrganizationConnectorsDenyRequestInput as g2, OrganizationConnectorsDenyRequestOutput as g3, OrganizationConnectorsDetachInput as g4, OrganizationConnectorsDetachOutput as g5, OrganizationConnectorsListAttachmentsInput as g6, OrganizationConnectorsListAttachmentsOutput as g7, OrganizationConnectorsListAvailableInput as g8, OrganizationConnectorsListAvailableOutput as g9, OrganizationExtensionsUninstallInput as gA, OrganizationExtensionsUninstallOutput as gB, OrganizationFeedbackSubmitInput as gC, OrganizationFeedbackSubmitOutput as gD, OrganizationGdriveInstallInput as gE, OrganizationGdriveInstallOutput as gF, OrganizationGithubInstallInput as gG, OrganizationGithubInstallOutput as gH, OrganizationGithubListInstallationsInput as gI, OrganizationGithubListInstallationsOutput as gJ, OrganizationGoogleadsInstallInput as gK, OrganizationGoogleadsInstallOutput as gL, OrganizationListInput as gM, OrganizationListOutput as gN, OrganizationMemberAcceptInviteInput as gO, OrganizationMemberAcceptInviteOutput as gP, OrganizationMemberInviteInput as gQ, OrganizationMemberInviteOutput as gR, OrganizationMemberListInvitationsInput as gS, OrganizationMemberListInvitationsOutput as gT, OrganizationMemberListProductAccessInput as gU, OrganizationMemberListProductAccessOutput as gV, OrganizationMemberListInput as gW, OrganizationMemberListOutput as gX, OrganizationMemberRemoveInput as gY, OrganizationMemberRemoveOutput as gZ, OrganizationMemberRevokeInvitationInput as g_, OrganizationConnectorsListOrgInput as ga, OrganizationConnectorsListOrgOutput as gb, OrganizationConnectorsListInput as gc, OrganizationConnectorsListOutput as gd, OrganizationConnectorsListRequestsInput as ge, OrganizationConnectorsListRequestsOutput as gf, OrganizationConnectorsRemoveInput as gg, OrganizationConnectorsRemoveOutput as gh, OrganizationConnectorsRequestInput as gi, OrganizationConnectorsRequestOutput as gj, OrganizationCreateInput as gk, OrganizationCreateOutput as gl, OrganizationDomainsAddInput as gm, OrganizationDomainsAddOutput as gn, OrganizationDomainsGetInput as go, OrganizationDomainsGetOutput as gp, OrganizationDomainsListInput as gq, OrganizationDomainsListOutput as gr, OrganizationDomainsRemoveInput as gs, OrganizationDomainsRemoveOutput as gt, OrganizationExtensionsInstallInput as gu, OrganizationExtensionsInstallOutput as gv, OrganizationExtensionsListInstalledInput as gw, OrganizationExtensionsListInstalledOutput as gx, OrganizationExtensionsListInput as gy, OrganizationExtensionsListOutput as gz, BrainBackupsListOutput as h, PlaygroundWebhookGetLastOutput as h$, OrganizationMemberSetRoleInput as h0, OrganizationMemberSetRoleOutput as h1, OrganizationMemberShareProductInput as h2, OrganizationMemberShareProductOutput as h3, OrganizationMemberUnshareProductInput as h4, OrganizationMemberUnshareProductOutput as h5, OrganizationMembersAssignRoleInput as h6, OrganizationMembersAssignRoleOutput as h7, OrganizationPermissionCatalogInput as h8, OrganizationPermissionCatalogOutput as h9, OrganizationRolesUpdateInput as hA, OrganizationRolesUpdateOutput as hB, OrganizationSelectInput as hC, OrganizationSelectOutput as hD, PlaygroundAnalyticsOverviewInput as hE, PlaygroundAnalyticsOverviewOutput as hF, PlaygroundBillingEntitlementsInput as hG, PlaygroundBillingEntitlementsOutput as hH, PlaygroundBillingRecordUsageInput as hI, PlaygroundBillingRecordUsageOutput as hJ, PlaygroundClickupCreateTaskInput as hK, PlaygroundClickupCreateTaskOutput as hL, PlaygroundClickupGetLastWebhookInput as hM, PlaygroundClickupGetLastWebhookOutput as hN, PlaygroundClickupGetOverviewInput as hO, PlaygroundClickupGetOverviewOutput as hP, PlaygroundGdriveGetLastChangeInput as hQ, PlaygroundGdriveGetLastChangeOutput as hR, PlaygroundGdriveReadFileInput as hS, PlaygroundGdriveReadFileOutput as hT, PlaygroundGoogleadsReadCustomerInput as hU, PlaygroundGoogleadsReadCustomerOutput as hV, PlaygroundLifecycleGetStateInput as hW, PlaygroundLifecycleGetStateOutput as hX, PlaygroundLifecycleListEventsInput as hY, PlaygroundLifecycleListEventsOutput as hZ, PlaygroundWebhookGetLastInput as h_, OrganizationProductAcceptInvitationInput as ha, OrganizationProductAcceptInvitationOutput as hb, OrganizationProductCreateInput as hc, OrganizationProductCreateOutput as hd, OrganizationProductInviteInput as he, OrganizationProductInviteOutput as hf, OrganizationProductListInvitationsInput as hg, OrganizationProductListInvitationsOutput as hh, OrganizationProductListMembersInput as hi, OrganizationProductListMembersOutput as hj, OrganizationProductListInput as hk, OrganizationProductListOutput as hl, OrganizationProductListRolesInput as hm, OrganizationProductListRolesOutput as hn, OrganizationProductRevokeInvitationInput as ho, OrganizationProductRevokeInvitationOutput as hp, OrganizationProductSelectInput as hq, OrganizationProductSelectOutput as hr, OrganizationRolesCreateInput as hs, OrganizationRolesCreateOutput as ht, OrganizationRolesDeleteInput as hu, OrganizationRolesDeleteOutput as hv, OrganizationRolesGetInput as hw, OrganizationRolesGetOutput as hx, OrganizationRolesListInput as hy, OrganizationRolesListOutput as hz, BrainClickupChannelsListInput as i, TrackingApiKeysRotateOutput as i$, RealtimeArchiveExportInput as i0, RealtimeArchiveExportOutput as i1, RealtimeArchiveExportStatusInput as i2, RealtimeArchiveExportStatusOutput as i3, RealtimeArchiveGetInput as i4, RealtimeArchiveGetOutput as i5, RealtimeGrantCreateInput as i6, RealtimeGrantCreateOutput as i7, RealtimeGrantListInput as i8, RealtimeGrantListOutput as i9, RealtimePresenceUpdateInput as iA, RealtimePresenceUpdateOutput as iB, RealtimeStatusGetInput as iC, RealtimeStatusGetOutput as iD, RealtimeTokensCreateInput as iE, RealtimeTokensCreateOutput as iF, RealtimeWebhookCreateInput as iG, RealtimeWebhookCreateOutput as iH, RealtimeWebhookDeleteInput as iI, RealtimeWebhookDeleteOutput as iJ, RealtimeWebhookDeliveriesListInput as iK, RealtimeWebhookDeliveriesListOutput as iL, RealtimeWebhookGetInput as iM, RealtimeWebhookGetOutput as iN, RealtimeWebhookListInput as iO, RealtimeWebhookListOutput as iP, RealtimeWebhookSecretRotateInput as iQ, RealtimeWebhookSecretRotateOutput as iR, RealtimeWebhookUpdateInput as iS, RealtimeWebhookUpdateOutput as iT, TrackingApiKeysCreateInput as iU, TrackingApiKeysCreateOutput as iV, TrackingApiKeysListInput as iW, TrackingApiKeysListOutput as iX, TrackingApiKeysRevokeInput as iY, TrackingApiKeysRevokeOutput as iZ, TrackingApiKeysRotateInput as i_, RealtimeGrantRevokeInput as ia, RealtimeGrantRevokeOutput as ib, RealtimeHistoryGetInput as ic, RealtimeHistoryGetOutput as id, RealtimeMessagesPublishInput as ie, RealtimeMessagesPublishOutput as ig, RealtimeNamespaceCreateInput as ih, RealtimeNamespaceCreateOutput as ii, RealtimeNamespaceDeleteInput as ij, RealtimeNamespaceDeleteOutput as ik, RealtimeNamespaceGetInput as il, RealtimeNamespaceGetOutput as im, RealtimeNamespaceListInput as io, RealtimeNamespaceListOutput as ip, RealtimeNamespaceUpdateInput as iq, RealtimeNamespaceUpdateOutput as ir, RealtimePresenceEnterInput as is, RealtimePresenceEnterOutput as it, RealtimePresenceGetInput as iu, RealtimePresenceGetOutput as iv, RealtimePresenceLeaveInput as iw, RealtimePresenceLeaveOutput as ix, RealtimePresenceStatsInput as iy, RealtimePresenceStatsOutput as iz, BrainClickupChannelsListOutput as j, TrackingReportsAttributedJourneyOutput as j$, TrackingDomainsCreateInput as j0, TrackingDomainsCreateOutput as j1, TrackingDomainsDeleteInput as j2, TrackingDomainsDeleteOutput as j3, TrackingDomainsGetInput as j4, TrackingDomainsGetOutput as j5, TrackingDomainsListInput as j6, TrackingDomainsListOutput as j7, TrackingDomainsVerifyInput as j8, TrackingDomainsVerifyOutput as j9, TrackingGoogleadsUsVsPlatformInput as jA, TrackingGoogleadsUsVsPlatformOutput as jB, TrackingIdentityHealthInput as jC, TrackingIdentityHealthOutput as jD, TrackingInstallDomainsCreateInput as jE, TrackingInstallDomainsCreateOutput as jF, TrackingInstallDomainsDeleteInput as jG, TrackingInstallDomainsDeleteOutput as jH, TrackingInstallDomainsListInput as jI, TrackingInstallDomainsListOutput as jJ, TrackingLinkDomainsCreateInput as jK, TrackingLinkDomainsCreateOutput as jL, TrackingLinkDomainsDeleteInput as jM, TrackingLinkDomainsDeleteOutput as jN, TrackingLinkDomainsListInput as jO, TrackingLinkDomainsListOutput as jP, TrackingLiveEventsListInput as jQ, TrackingLiveEventsListOutput as jR, TrackingProfilesDeleteInput as jS, TrackingProfilesDeleteOutput as jT, TrackingProfilesExportInput as jU, TrackingProfilesExportOutput as jV, TrackingProfilesGetInput as jW, TrackingProfilesGetOutput as jX, TrackingProfilesListInput as jY, TrackingProfilesListOutput as jZ, TrackingReportsAttributedJourneyInput as j_, TrackingEventNamesArchiveInput as ja, TrackingEventNamesArchiveOutput as jb, TrackingEventNamesListInput as jc, TrackingEventNamesListOutput as jd, TrackingEventNamesUnarchiveInput as je, TrackingEventNamesUnarchiveOutput as jf, TrackingGoogleadsConnectionStatusInput as jg, TrackingGoogleadsConnectionStatusOutput as jh, TrackingGoogleadsConversionActionsInput as ji, TrackingGoogleadsConversionActionsOutput as jj, TrackingGoogleadsFeedbackConfigGetInput as jk, TrackingGoogleadsFeedbackConfigGetOutput as jl, TrackingGoogleadsFeedbackConfigSetInput as jm, TrackingGoogleadsFeedbackConfigSetOutput as jn, TrackingGoogleadsFeedbackRunInput as jo, TrackingGoogleadsFeedbackRunOutput as jp, TrackingGoogleadsFeedbackStatusInput as jq, TrackingGoogleadsFeedbackStatusOutput as jr, TrackingGoogleadsFeedbackUploadsInput as js, TrackingGoogleadsFeedbackUploadsOutput as jt, TrackingGoogleadsRoasReportInput as ju, TrackingGoogleadsRoasReportOutput as jv, TrackingGoogleadsSyncNowInput as jw, TrackingGoogleadsSyncNowOutput as jx, TrackingGoogleadsTrackingHealthInput as jy, TrackingGoogleadsTrackingHealthOutput as jz, BrainClickupConnectionsListInput as k, TrackingReportsRevenueBySourceInput as k0, TrackingReportsRevenueBySourceOutput as k1, TrackingReportsSourcePeopleInput as k2, TrackingReportsSourcePeopleOutput as k3, TrackingSnippetsGetInput as k4, TrackingSnippetsGetOutput as k5, WaitlistConfigGetInput as k6, WaitlistConfigGetOutput as k7, WaitlistConfigUpsertInput as k8, WaitlistConfigUpsertOutput as k9, WaitlistEmbedGetInput as ka, WaitlistEmbedGetOutput as kb, WaitlistInvitesSendInput as kc, WaitlistInvitesSendOutput as kd, WaitlistSignupsEraseInput as ke, WaitlistSignupsEraseOutput as kf, WaitlistSignupsFunnelInput as kg, WaitlistSignupsFunnelOutput as kh, WaitlistSignupsListInput as ki, WaitlistSignupsListOutput as kj, BrainClickupConnectionsListOutput as l, BrainClickupListsListInput as m, BrainClickupListsListOutput as n, BrainClickupSpacesListInput as o, BrainClickupSpacesListOutput as p, BrainCognitionDigestInput as q, BrainCognitionDigestOutput as r, BrainCognitionStatusInput as s, BrainCognitionStatusOutput as t, BrainCognitionSweepInput as u, BrainCognitionSweepOutput as v, BrainConnectorBranchesListInput as w, BrainConnectorBranchesListOutput as x, BrainConnectorConnectionsListInput as y, BrainConnectorConnectionsListOutput as z };
|