@lessly/sdk-app 9.1.0 → 9.2.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-LEUVRZRQ.d.cts → client.gen-BLMudoVx.d.cts} +577 -107
- package/dist/{client.gen-LEUVRZRQ.d.ts → client.gen-BLMudoVx.d.ts} +577 -107
- package/dist/consent/index.d.cts +1 -1
- package/dist/consent/index.d.ts +1 -1
- package/dist/deployment/index.d.cts +1 -1
- package/dist/deployment/index.d.ts +1 -1
- package/dist/index.cjs +322 -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 +322 -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.cjs +66 -0
- package/dist/realtime/index.cjs.map +1 -0
- package/dist/realtime/index.d.cts +52 -0
- package/dist/realtime/index.d.ts +52 -0
- package/dist/realtime/index.js +53 -0
- package/dist/realtime/index.js.map +1 -0
- 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 +12 -2
- package/src/gen/bindings.gen.ts +322 -40
- package/src/gen/brain/index.ts +1 -1
- package/src/gen/brain/queryOptions.gen.ts +0 -14
- package/src/gen/client.gen.ts +102 -8
- 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/realtime/index.ts +3 -0
- package/src/gen/realtime/queryOptions.gen.ts +81 -0
- package/src/gen/types.gen.ts +580 -106
|
@@ -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;
|
|
@@ -13147,6 +13065,508 @@ interface OrganizationSelectOutput {
|
|
|
13147
13065
|
};
|
|
13148
13066
|
activeProductId: (string | null);
|
|
13149
13067
|
}
|
|
13068
|
+
interface PlaygroundAnalyticsOverviewInput {
|
|
13069
|
+
/**
|
|
13070
|
+
* Max records per entity in recent[]; omit for the endpoint default
|
|
13071
|
+
*/
|
|
13072
|
+
limit?: number;
|
|
13073
|
+
}
|
|
13074
|
+
interface PlaygroundAnalyticsOverviewOutput {
|
|
13075
|
+
ok: boolean;
|
|
13076
|
+
minted: boolean;
|
|
13077
|
+
overview?: unknown;
|
|
13078
|
+
http_status: number;
|
|
13079
|
+
}
|
|
13080
|
+
interface PlaygroundBillingEntitlementsInput {
|
|
13081
|
+
}
|
|
13082
|
+
interface PlaygroundBillingEntitlementsOutput {
|
|
13083
|
+
ok: boolean;
|
|
13084
|
+
minted: boolean;
|
|
13085
|
+
http_status: number;
|
|
13086
|
+
entitlements?: unknown;
|
|
13087
|
+
}
|
|
13088
|
+
interface PlaygroundBillingRecordUsageInput {
|
|
13089
|
+
/**
|
|
13090
|
+
* Quantity of events to record against playground-events (SUM); defaults to 1
|
|
13091
|
+
*/
|
|
13092
|
+
value?: number;
|
|
13093
|
+
}
|
|
13094
|
+
interface PlaygroundBillingRecordUsageOutput {
|
|
13095
|
+
minted: boolean;
|
|
13096
|
+
accepted: (number | null);
|
|
13097
|
+
recorded: boolean;
|
|
13098
|
+
duplicates: (number | null);
|
|
13099
|
+
http_status: number;
|
|
13100
|
+
}
|
|
13101
|
+
interface PlaygroundClickupCreateTaskInput {
|
|
13102
|
+
/**
|
|
13103
|
+
* Task title; defaults to a fixture label
|
|
13104
|
+
*/
|
|
13105
|
+
name?: string;
|
|
13106
|
+
/**
|
|
13107
|
+
* ClickUp list id; falls back to CLICKUP_TEST_LIST_ID
|
|
13108
|
+
*/
|
|
13109
|
+
listId?: string;
|
|
13110
|
+
}
|
|
13111
|
+
interface PlaygroundClickupCreateTaskOutput {
|
|
13112
|
+
minted: boolean;
|
|
13113
|
+
task_id: (string | null);
|
|
13114
|
+
list_status: number;
|
|
13115
|
+
vend_status: number;
|
|
13116
|
+
clickup_status: number;
|
|
13117
|
+
installation_count: number;
|
|
13118
|
+
}
|
|
13119
|
+
interface PlaygroundClickupGetLastWebhookInput {
|
|
13120
|
+
}
|
|
13121
|
+
type PlaygroundClickupGetLastWebhookOutput = ({
|
|
13122
|
+
payload: string;
|
|
13123
|
+
event_id: string;
|
|
13124
|
+
provider: string;
|
|
13125
|
+
verified: boolean;
|
|
13126
|
+
product_id: string;
|
|
13127
|
+
occurred_at: string;
|
|
13128
|
+
connector_id: string;
|
|
13129
|
+
clickup_event: (string | null);
|
|
13130
|
+
receipt_count: number;
|
|
13131
|
+
} | {
|
|
13132
|
+
found: false;
|
|
13133
|
+
});
|
|
13134
|
+
interface PlaygroundClickupGetOverviewInput {
|
|
13135
|
+
}
|
|
13136
|
+
interface PlaygroundClickupGetOverviewOutput {
|
|
13137
|
+
team: ({
|
|
13138
|
+
teamId: string;
|
|
13139
|
+
teamName: string;
|
|
13140
|
+
} | null);
|
|
13141
|
+
lists: PlaygroundClickupGetOverviewOutputItems[];
|
|
13142
|
+
tasks: {
|
|
13143
|
+
id: string;
|
|
13144
|
+
name: string;
|
|
13145
|
+
status: (string | null);
|
|
13146
|
+
}[];
|
|
13147
|
+
minted: boolean;
|
|
13148
|
+
spaces: PlaygroundClickupGetOverviewOutputItems[];
|
|
13149
|
+
list_status: number;
|
|
13150
|
+
vend_status: number;
|
|
13151
|
+
lists_status: number;
|
|
13152
|
+
tasks_status: number;
|
|
13153
|
+
spaces_status: number;
|
|
13154
|
+
folders_status: number;
|
|
13155
|
+
installation_count: number;
|
|
13156
|
+
}
|
|
13157
|
+
interface PlaygroundClickupGetOverviewOutputItems {
|
|
13158
|
+
id: string;
|
|
13159
|
+
name: string;
|
|
13160
|
+
}
|
|
13161
|
+
interface PlaygroundGdriveGetLastChangeInput {
|
|
13162
|
+
}
|
|
13163
|
+
type PlaygroundGdriveGetLastChangeOutput = ({
|
|
13164
|
+
file_id: string;
|
|
13165
|
+
removed: boolean;
|
|
13166
|
+
file_name: (string | null);
|
|
13167
|
+
mime_type: (string | null);
|
|
13168
|
+
product_id: string;
|
|
13169
|
+
occurred_at: string;
|
|
13170
|
+
connector_id: string;
|
|
13171
|
+
resource_state: string;
|
|
13172
|
+
} | {
|
|
13173
|
+
found: false;
|
|
13174
|
+
});
|
|
13175
|
+
interface PlaygroundGdriveReadFileInput {
|
|
13176
|
+
/**
|
|
13177
|
+
* Drive file id; falls back to GDRIVE_TEST_FILE_ID, then the first picked file
|
|
13178
|
+
*/
|
|
13179
|
+
fileId?: string;
|
|
13180
|
+
}
|
|
13181
|
+
interface PlaygroundGdriveReadFileOutput {
|
|
13182
|
+
minted: boolean;
|
|
13183
|
+
file_id: (string | null);
|
|
13184
|
+
file_name: (string | null);
|
|
13185
|
+
mime_type: (string | null);
|
|
13186
|
+
file_count: number;
|
|
13187
|
+
get_status: number;
|
|
13188
|
+
list_status: number;
|
|
13189
|
+
vend_status: number;
|
|
13190
|
+
content_bytes: (number | null);
|
|
13191
|
+
}
|
|
13192
|
+
interface PlaygroundGoogleadsReadCustomerInput {
|
|
13193
|
+
}
|
|
13194
|
+
interface PlaygroundGoogleadsReadCustomerOutput {
|
|
13195
|
+
minted: boolean;
|
|
13196
|
+
vended: boolean;
|
|
13197
|
+
customer_id: (string | null);
|
|
13198
|
+
vend_status: number;
|
|
13199
|
+
result_count: number;
|
|
13200
|
+
search_status: number;
|
|
13201
|
+
login_customer_id: (string | null);
|
|
13202
|
+
}
|
|
13203
|
+
interface PlaygroundLifecycleGetStateInput {
|
|
13204
|
+
}
|
|
13205
|
+
interface PlaygroundLifecycleGetStateOutput {
|
|
13206
|
+
blocked: boolean;
|
|
13207
|
+
archived: boolean;
|
|
13208
|
+
productId: string;
|
|
13209
|
+
lastBlockTransition: ({
|
|
13210
|
+
eventId: string;
|
|
13211
|
+
eventName: string;
|
|
13212
|
+
productId: string;
|
|
13213
|
+
occurredAt: string;
|
|
13214
|
+
recordedAt: string;
|
|
13215
|
+
receiptCount: number;
|
|
13216
|
+
organizationId: string;
|
|
13217
|
+
cascadedFromOrg: boolean;
|
|
13218
|
+
} | null);
|
|
13219
|
+
lastArchiveTransition: ({
|
|
13220
|
+
eventId: string;
|
|
13221
|
+
eventName: string;
|
|
13222
|
+
productId: string;
|
|
13223
|
+
occurredAt: string;
|
|
13224
|
+
recordedAt: string;
|
|
13225
|
+
receiptCount: number;
|
|
13226
|
+
organizationId: string;
|
|
13227
|
+
cascadedFromOrg: boolean;
|
|
13228
|
+
} | null);
|
|
13229
|
+
}
|
|
13230
|
+
interface PlaygroundLifecycleListEventsInput {
|
|
13231
|
+
}
|
|
13232
|
+
type PlaygroundLifecycleListEventsOutput = {
|
|
13233
|
+
eventId: string;
|
|
13234
|
+
eventName: string;
|
|
13235
|
+
productId: string;
|
|
13236
|
+
occurredAt: string;
|
|
13237
|
+
recordedAt: string;
|
|
13238
|
+
receiptCount: number;
|
|
13239
|
+
organizationId: string;
|
|
13240
|
+
cascadedFromOrg: boolean;
|
|
13241
|
+
}[];
|
|
13242
|
+
interface PlaygroundWebhookGetLastInput {
|
|
13243
|
+
}
|
|
13244
|
+
type PlaygroundWebhookGetLastOutput = ({
|
|
13245
|
+
payload?: unknown;
|
|
13246
|
+
event_id: string;
|
|
13247
|
+
provider: string;
|
|
13248
|
+
verified: boolean;
|
|
13249
|
+
product_id: string;
|
|
13250
|
+
occurred_at: string;
|
|
13251
|
+
connector_id: string;
|
|
13252
|
+
delivery_count: number;
|
|
13253
|
+
} | {
|
|
13254
|
+
found: false;
|
|
13255
|
+
});
|
|
13256
|
+
interface RealtimeGrantCreateInput {
|
|
13257
|
+
/**
|
|
13258
|
+
* Operations granted on matching channels
|
|
13259
|
+
*
|
|
13260
|
+
* @minItems 1
|
|
13261
|
+
*/
|
|
13262
|
+
ops: [("subscribe" | "publish" | "presence" | "history"), ...(("subscribe" | "publish" | "presence" | "history"))[]];
|
|
13263
|
+
/**
|
|
13264
|
+
* Channel pattern, e.g. "chat:*" ("*" matches exactly one segment)
|
|
13265
|
+
*/
|
|
13266
|
+
pattern: string;
|
|
13267
|
+
/**
|
|
13268
|
+
* Identity id the grant applies to, or "*" for every identity in the product
|
|
13269
|
+
*/
|
|
13270
|
+
subject: string;
|
|
13271
|
+
}
|
|
13272
|
+
interface RealtimeGrantCreateOutput {
|
|
13273
|
+
id: string;
|
|
13274
|
+
ops: ("subscribe" | "publish" | "presence" | "history")[];
|
|
13275
|
+
pattern: string;
|
|
13276
|
+
subject: string;
|
|
13277
|
+
createdAt: string;
|
|
13278
|
+
}
|
|
13279
|
+
interface RealtimeGrantListInput {
|
|
13280
|
+
/**
|
|
13281
|
+
* Filter grants by subject
|
|
13282
|
+
*/
|
|
13283
|
+
subject?: string;
|
|
13284
|
+
}
|
|
13285
|
+
interface RealtimeGrantListOutput {
|
|
13286
|
+
grants: {
|
|
13287
|
+
id: string;
|
|
13288
|
+
ops: ("subscribe" | "publish" | "presence" | "history")[];
|
|
13289
|
+
pattern: string;
|
|
13290
|
+
subject: string;
|
|
13291
|
+
createdAt: string;
|
|
13292
|
+
}[];
|
|
13293
|
+
}
|
|
13294
|
+
interface RealtimeGrantRevokeInput {
|
|
13295
|
+
/**
|
|
13296
|
+
* Grant id to revoke
|
|
13297
|
+
*/
|
|
13298
|
+
id: string;
|
|
13299
|
+
}
|
|
13300
|
+
interface RealtimeGrantRevokeOutput {
|
|
13301
|
+
revoked: true;
|
|
13302
|
+
}
|
|
13303
|
+
interface RealtimeHistoryGetInput {
|
|
13304
|
+
/**
|
|
13305
|
+
* Cursor: stream epoch the offset belongs to
|
|
13306
|
+
*/
|
|
13307
|
+
epoch?: string;
|
|
13308
|
+
/**
|
|
13309
|
+
* Window: return the last N entries
|
|
13310
|
+
*/
|
|
13311
|
+
last_n?: number;
|
|
13312
|
+
/**
|
|
13313
|
+
* Cursor: resume strictly after this offset (requires epoch)
|
|
13314
|
+
*/
|
|
13315
|
+
offset?: string;
|
|
13316
|
+
/**
|
|
13317
|
+
* Channel to read history from
|
|
13318
|
+
*/
|
|
13319
|
+
channel: string;
|
|
13320
|
+
/**
|
|
13321
|
+
* Window: return entries newer than now minus this many milliseconds
|
|
13322
|
+
*/
|
|
13323
|
+
last_ms?: number;
|
|
13324
|
+
}
|
|
13325
|
+
interface RealtimeHistoryGetOutput {
|
|
13326
|
+
/**
|
|
13327
|
+
* Current stream epoch, or null when the channel has no history yet
|
|
13328
|
+
*/
|
|
13329
|
+
epoch: (string | null);
|
|
13330
|
+
/**
|
|
13331
|
+
* Channel the history was read from
|
|
13332
|
+
*/
|
|
13333
|
+
channel: string;
|
|
13334
|
+
/**
|
|
13335
|
+
* Entries in stream order
|
|
13336
|
+
*/
|
|
13337
|
+
entries: {
|
|
13338
|
+
/**
|
|
13339
|
+
* Message id from the envelope
|
|
13340
|
+
*/
|
|
13341
|
+
id: string;
|
|
13342
|
+
/**
|
|
13343
|
+
* Publish timestamp (ms)
|
|
13344
|
+
*/
|
|
13345
|
+
ts: number;
|
|
13346
|
+
/**
|
|
13347
|
+
* Message payload
|
|
13348
|
+
*/
|
|
13349
|
+
data?: {
|
|
13350
|
+
[k: string]: unknown;
|
|
13351
|
+
};
|
|
13352
|
+
/**
|
|
13353
|
+
* Stream offset of the entry
|
|
13354
|
+
*/
|
|
13355
|
+
offset: string;
|
|
13356
|
+
}[];
|
|
13357
|
+
/**
|
|
13358
|
+
* false when the cursor epoch mismatches or entries aged out — client must resync
|
|
13359
|
+
*/
|
|
13360
|
+
recovered: boolean;
|
|
13361
|
+
}
|
|
13362
|
+
interface RealtimeMessagesPublishInput {
|
|
13363
|
+
/**
|
|
13364
|
+
* JSON payload delivered to channel subscribers
|
|
13365
|
+
*/
|
|
13366
|
+
data: {
|
|
13367
|
+
[k: string]: unknown;
|
|
13368
|
+
};
|
|
13369
|
+
/**
|
|
13370
|
+
* Channel to publish the message to
|
|
13371
|
+
*/
|
|
13372
|
+
channel: string;
|
|
13373
|
+
}
|
|
13374
|
+
interface RealtimeMessagesPublishOutput {
|
|
13375
|
+
/**
|
|
13376
|
+
* Stream epoch of the stored message (present when history is on)
|
|
13377
|
+
*/
|
|
13378
|
+
epoch?: string;
|
|
13379
|
+
/**
|
|
13380
|
+
* Stream offset of the stored message (present when history is on)
|
|
13381
|
+
*/
|
|
13382
|
+
offset?: string;
|
|
13383
|
+
/**
|
|
13384
|
+
* Channel the message was published to
|
|
13385
|
+
*/
|
|
13386
|
+
channel: string;
|
|
13387
|
+
/**
|
|
13388
|
+
* Publish acknowledged by the fan-out backend
|
|
13389
|
+
*/
|
|
13390
|
+
published: true;
|
|
13391
|
+
}
|
|
13392
|
+
interface RealtimeNamespaceCreateInput {
|
|
13393
|
+
/**
|
|
13394
|
+
* Namespace name (the part of a channel name before the first colon)
|
|
13395
|
+
*/
|
|
13396
|
+
name: string;
|
|
13397
|
+
/**
|
|
13398
|
+
* History retention policy for channels in this namespace
|
|
13399
|
+
*/
|
|
13400
|
+
history?: ("none" | "last-message" | "window");
|
|
13401
|
+
/**
|
|
13402
|
+
* Whether presence is enabled on channels in this namespace
|
|
13403
|
+
*/
|
|
13404
|
+
presence?: boolean;
|
|
13405
|
+
/**
|
|
13406
|
+
* public: any authenticated identity may subscribe without a grant
|
|
13407
|
+
*/
|
|
13408
|
+
visibility?: ("public" | "authorized");
|
|
13409
|
+
/**
|
|
13410
|
+
* Whether clients may publish events directly
|
|
13411
|
+
*/
|
|
13412
|
+
clientEvents?: boolean;
|
|
13413
|
+
/**
|
|
13414
|
+
* Whether only identified (non-anonymous) identities get capabilities
|
|
13415
|
+
*/
|
|
13416
|
+
identifiedOnly?: boolean;
|
|
13417
|
+
/**
|
|
13418
|
+
* Whether payloads must be end-to-end encrypted
|
|
13419
|
+
*/
|
|
13420
|
+
encryptionRequired?: boolean;
|
|
13421
|
+
/**
|
|
13422
|
+
* Retention window in seconds; required when history is "window"
|
|
13423
|
+
*/
|
|
13424
|
+
historyWindowSeconds?: number;
|
|
13425
|
+
}
|
|
13426
|
+
interface RealtimeNamespaceCreateOutput {
|
|
13427
|
+
id: string;
|
|
13428
|
+
name: string;
|
|
13429
|
+
history: ("none" | "last-message" | "window");
|
|
13430
|
+
presence: boolean;
|
|
13431
|
+
createdAt: string;
|
|
13432
|
+
updatedAt: string;
|
|
13433
|
+
visibility: ("public" | "authorized");
|
|
13434
|
+
clientEvents: boolean;
|
|
13435
|
+
identifiedOnly: boolean;
|
|
13436
|
+
encryptionRequired: boolean;
|
|
13437
|
+
historyWindowSeconds: (number | null);
|
|
13438
|
+
}
|
|
13439
|
+
interface RealtimeNamespaceDeleteInput {
|
|
13440
|
+
/**
|
|
13441
|
+
* Namespace name
|
|
13442
|
+
*/
|
|
13443
|
+
name: string;
|
|
13444
|
+
}
|
|
13445
|
+
interface RealtimeNamespaceDeleteOutput {
|
|
13446
|
+
deleted: true;
|
|
13447
|
+
}
|
|
13448
|
+
interface RealtimeNamespaceGetInput {
|
|
13449
|
+
/**
|
|
13450
|
+
* Namespace name
|
|
13451
|
+
*/
|
|
13452
|
+
name: string;
|
|
13453
|
+
}
|
|
13454
|
+
interface RealtimeNamespaceGetOutput {
|
|
13455
|
+
id: string;
|
|
13456
|
+
name: string;
|
|
13457
|
+
history: ("none" | "last-message" | "window");
|
|
13458
|
+
presence: boolean;
|
|
13459
|
+
createdAt: string;
|
|
13460
|
+
updatedAt: string;
|
|
13461
|
+
visibility: ("public" | "authorized");
|
|
13462
|
+
clientEvents: boolean;
|
|
13463
|
+
identifiedOnly: boolean;
|
|
13464
|
+
encryptionRequired: boolean;
|
|
13465
|
+
historyWindowSeconds: (number | null);
|
|
13466
|
+
}
|
|
13467
|
+
interface RealtimeNamespaceListInput {
|
|
13468
|
+
}
|
|
13469
|
+
interface RealtimeNamespaceListOutput {
|
|
13470
|
+
namespaces: {
|
|
13471
|
+
id: string;
|
|
13472
|
+
name: string;
|
|
13473
|
+
history: ("none" | "last-message" | "window");
|
|
13474
|
+
presence: boolean;
|
|
13475
|
+
createdAt: string;
|
|
13476
|
+
updatedAt: string;
|
|
13477
|
+
visibility: ("public" | "authorized");
|
|
13478
|
+
clientEvents: boolean;
|
|
13479
|
+
identifiedOnly: boolean;
|
|
13480
|
+
encryptionRequired: boolean;
|
|
13481
|
+
historyWindowSeconds: (number | null);
|
|
13482
|
+
}[];
|
|
13483
|
+
}
|
|
13484
|
+
interface RealtimeNamespaceUpdateInput {
|
|
13485
|
+
/**
|
|
13486
|
+
* Namespace name to update
|
|
13487
|
+
*/
|
|
13488
|
+
name: string;
|
|
13489
|
+
/**
|
|
13490
|
+
* History retention policy for channels in this namespace
|
|
13491
|
+
*/
|
|
13492
|
+
history?: ("none" | "last-message" | "window");
|
|
13493
|
+
/**
|
|
13494
|
+
* Whether presence is enabled on channels in this namespace
|
|
13495
|
+
*/
|
|
13496
|
+
presence?: boolean;
|
|
13497
|
+
/**
|
|
13498
|
+
* public: any authenticated identity may subscribe without a grant
|
|
13499
|
+
*/
|
|
13500
|
+
visibility?: ("public" | "authorized");
|
|
13501
|
+
/**
|
|
13502
|
+
* Whether clients may publish events directly
|
|
13503
|
+
*/
|
|
13504
|
+
clientEvents?: boolean;
|
|
13505
|
+
/**
|
|
13506
|
+
* Whether only identified (non-anonymous) identities get capabilities
|
|
13507
|
+
*/
|
|
13508
|
+
identifiedOnly?: boolean;
|
|
13509
|
+
/**
|
|
13510
|
+
* Whether payloads must be end-to-end encrypted
|
|
13511
|
+
*/
|
|
13512
|
+
encryptionRequired?: boolean;
|
|
13513
|
+
/**
|
|
13514
|
+
* Retention window in seconds; required when history is "window"
|
|
13515
|
+
*/
|
|
13516
|
+
historyWindowSeconds?: number;
|
|
13517
|
+
}
|
|
13518
|
+
interface RealtimeNamespaceUpdateOutput {
|
|
13519
|
+
id: string;
|
|
13520
|
+
name: string;
|
|
13521
|
+
history: ("none" | "last-message" | "window");
|
|
13522
|
+
presence: boolean;
|
|
13523
|
+
createdAt: string;
|
|
13524
|
+
updatedAt: string;
|
|
13525
|
+
visibility: ("public" | "authorized");
|
|
13526
|
+
clientEvents: boolean;
|
|
13527
|
+
identifiedOnly: boolean;
|
|
13528
|
+
encryptionRequired: boolean;
|
|
13529
|
+
historyWindowSeconds: (number | null);
|
|
13530
|
+
}
|
|
13531
|
+
interface RealtimeStatusGetInput {
|
|
13532
|
+
}
|
|
13533
|
+
interface RealtimeStatusGetOutput {
|
|
13534
|
+
/**
|
|
13535
|
+
* Redis fan-out connectivity
|
|
13536
|
+
*/
|
|
13537
|
+
redis: ("connected" | "disconnected" | "unconfigured");
|
|
13538
|
+
/**
|
|
13539
|
+
* API liveness marker
|
|
13540
|
+
*/
|
|
13541
|
+
service: "ok";
|
|
13542
|
+
/**
|
|
13543
|
+
* WebSocket URL of the realtime gateway
|
|
13544
|
+
*/
|
|
13545
|
+
gatewayUrl: string;
|
|
13546
|
+
/**
|
|
13547
|
+
* Whether the token signing key is present
|
|
13548
|
+
*/
|
|
13549
|
+
signingKeyConfigured: boolean;
|
|
13550
|
+
}
|
|
13551
|
+
interface RealtimeTokensCreateInput {
|
|
13552
|
+
/**
|
|
13553
|
+
* Concrete channels to filter the resolved capabilities to; omit to receive all capabilities the identity has
|
|
13554
|
+
*
|
|
13555
|
+
* @minItems 1
|
|
13556
|
+
* @maxItems 32
|
|
13557
|
+
*/
|
|
13558
|
+
channels?: [string, ...(string)[]];
|
|
13559
|
+
}
|
|
13560
|
+
interface RealtimeTokensCreateOutput {
|
|
13561
|
+
/**
|
|
13562
|
+
* Signed EdDSA capability JWT (60s TTL)
|
|
13563
|
+
*/
|
|
13564
|
+
token: string;
|
|
13565
|
+
/**
|
|
13566
|
+
* WebSocket URL of the realtime gateway to connect to
|
|
13567
|
+
*/
|
|
13568
|
+
gatewayUrl: string;
|
|
13569
|
+
}
|
|
13150
13570
|
interface TrackingApiKeysCreateInput {
|
|
13151
13571
|
name: string;
|
|
13152
13572
|
}
|
|
@@ -14322,14 +14742,10 @@ interface GeneratedClient {
|
|
|
14322
14742
|
list(input: BrainGdriveConnectionsListInput): Promise<BrainGdriveConnectionsListOutput>;
|
|
14323
14743
|
};
|
|
14324
14744
|
knowledge: {
|
|
14325
|
-
graph(input: BrainKnowledgeGraphInput): Promise<BrainKnowledgeGraphOutput>;
|
|
14326
14745
|
neighborhood(input: BrainKnowledgeNeighborhoodInput): Promise<BrainKnowledgeNeighborhoodOutput>;
|
|
14327
14746
|
relations(input: BrainKnowledgeRelationsInput): Promise<BrainKnowledgeRelationsOutput>;
|
|
14328
14747
|
search(input: BrainKnowledgeSearchInput): Promise<BrainKnowledgeSearchOutput>;
|
|
14329
14748
|
};
|
|
14330
|
-
'knowledge-entity': {
|
|
14331
|
-
memories(input: BrainKnowledgeEntityMemoriesInput): Promise<BrainKnowledgeEntityMemoriesOutput>;
|
|
14332
|
-
};
|
|
14333
14749
|
memory: {
|
|
14334
14750
|
add(input: BrainMemoryAddInput): Promise<BrainMemoryAddOutput>;
|
|
14335
14751
|
delete(input: BrainMemoryDeleteInput): Promise<BrainMemoryDeleteOutput>;
|
|
@@ -14744,6 +15160,60 @@ interface GeneratedClient {
|
|
|
14744
15160
|
update(input: OrganizationRolesUpdateInput): Promise<OrganizationRolesUpdateOutput>;
|
|
14745
15161
|
};
|
|
14746
15162
|
};
|
|
15163
|
+
playground: {
|
|
15164
|
+
analytics: {
|
|
15165
|
+
overview(input: PlaygroundAnalyticsOverviewInput): Promise<PlaygroundAnalyticsOverviewOutput>;
|
|
15166
|
+
};
|
|
15167
|
+
billing: {
|
|
15168
|
+
entitlements(input: PlaygroundBillingEntitlementsInput): Promise<PlaygroundBillingEntitlementsOutput>;
|
|
15169
|
+
'record-usage'(input: PlaygroundBillingRecordUsageInput): Promise<PlaygroundBillingRecordUsageOutput>;
|
|
15170
|
+
};
|
|
15171
|
+
clickup: {
|
|
15172
|
+
'create-task'(input: PlaygroundClickupCreateTaskInput): Promise<PlaygroundClickupCreateTaskOutput>;
|
|
15173
|
+
'get-last-webhook'(input: PlaygroundClickupGetLastWebhookInput): Promise<PlaygroundClickupGetLastWebhookOutput>;
|
|
15174
|
+
'get-overview'(input: PlaygroundClickupGetOverviewInput): Promise<PlaygroundClickupGetOverviewOutput>;
|
|
15175
|
+
};
|
|
15176
|
+
gdrive: {
|
|
15177
|
+
'get-last-change'(input: PlaygroundGdriveGetLastChangeInput): Promise<PlaygroundGdriveGetLastChangeOutput>;
|
|
15178
|
+
'read-file'(input: PlaygroundGdriveReadFileInput): Promise<PlaygroundGdriveReadFileOutput>;
|
|
15179
|
+
};
|
|
15180
|
+
googleads: {
|
|
15181
|
+
'read-customer'(input: PlaygroundGoogleadsReadCustomerInput): Promise<PlaygroundGoogleadsReadCustomerOutput>;
|
|
15182
|
+
};
|
|
15183
|
+
lifecycle: {
|
|
15184
|
+
'get-state'(input: PlaygroundLifecycleGetStateInput): Promise<PlaygroundLifecycleGetStateOutput>;
|
|
15185
|
+
'list-events'(input: PlaygroundLifecycleListEventsInput): Promise<PlaygroundLifecycleListEventsOutput>;
|
|
15186
|
+
};
|
|
15187
|
+
webhook: {
|
|
15188
|
+
'get-last'(input: PlaygroundWebhookGetLastInput): Promise<PlaygroundWebhookGetLastOutput>;
|
|
15189
|
+
};
|
|
15190
|
+
};
|
|
15191
|
+
realtime: {
|
|
15192
|
+
grant: {
|
|
15193
|
+
create(input: RealtimeGrantCreateInput): Promise<RealtimeGrantCreateOutput>;
|
|
15194
|
+
list(input: RealtimeGrantListInput): Promise<RealtimeGrantListOutput>;
|
|
15195
|
+
revoke(input: RealtimeGrantRevokeInput): Promise<RealtimeGrantRevokeOutput>;
|
|
15196
|
+
};
|
|
15197
|
+
history: {
|
|
15198
|
+
get(input: RealtimeHistoryGetInput): Promise<RealtimeHistoryGetOutput>;
|
|
15199
|
+
};
|
|
15200
|
+
messages: {
|
|
15201
|
+
publish(input: RealtimeMessagesPublishInput): Promise<RealtimeMessagesPublishOutput>;
|
|
15202
|
+
};
|
|
15203
|
+
namespace: {
|
|
15204
|
+
create(input: RealtimeNamespaceCreateInput): Promise<RealtimeNamespaceCreateOutput>;
|
|
15205
|
+
delete(input: RealtimeNamespaceDeleteInput): Promise<RealtimeNamespaceDeleteOutput>;
|
|
15206
|
+
get(input: RealtimeNamespaceGetInput): Promise<RealtimeNamespaceGetOutput>;
|
|
15207
|
+
list(input: RealtimeNamespaceListInput): Promise<RealtimeNamespaceListOutput>;
|
|
15208
|
+
update(input: RealtimeNamespaceUpdateInput): Promise<RealtimeNamespaceUpdateOutput>;
|
|
15209
|
+
};
|
|
15210
|
+
status: {
|
|
15211
|
+
get(input: RealtimeStatusGetInput): Promise<RealtimeStatusGetOutput>;
|
|
15212
|
+
};
|
|
15213
|
+
tokens: {
|
|
15214
|
+
create(input: RealtimeTokensCreateInput): Promise<RealtimeTokensCreateOutput>;
|
|
15215
|
+
};
|
|
15216
|
+
};
|
|
14747
15217
|
tracking: {
|
|
14748
15218
|
'api-keys': {
|
|
14749
15219
|
create(input: TrackingApiKeysCreateInput): Promise<TrackingApiKeysCreateOutput>;
|
|
@@ -14844,4 +15314,4 @@ interface GeneratedClient {
|
|
|
14844
15314
|
};
|
|
14845
15315
|
}
|
|
14846
15316
|
|
|
14847
|
-
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, TrackingEventNamesListOutput 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, TrackingApiKeysCreateInput as hG, TrackingApiKeysCreateOutput as hH, TrackingApiKeysListInput as hI, TrackingApiKeysListOutput as hJ, TrackingApiKeysRevokeInput as hK, TrackingApiKeysRevokeOutput as hL, TrackingApiKeysRotateInput as hM, TrackingApiKeysRotateOutput as hN, TrackingDomainsCreateInput as hO, TrackingDomainsCreateOutput as hP, TrackingDomainsDeleteInput as hQ, TrackingDomainsDeleteOutput as hR, TrackingDomainsGetInput as hS, TrackingDomainsGetOutput as hT, TrackingDomainsListInput as hU, TrackingDomainsListOutput as hV, TrackingDomainsVerifyInput as hW, TrackingDomainsVerifyOutput as hX, TrackingEventNamesArchiveInput as hY, TrackingEventNamesArchiveOutput as hZ, TrackingEventNamesListInput 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, WaitlistEmbedGetOutput as i$, TrackingEventNamesUnarchiveInput as i0, TrackingEventNamesUnarchiveOutput as i1, TrackingGoogleadsConnectionStatusInput as i2, TrackingGoogleadsConnectionStatusOutput as i3, TrackingGoogleadsConversionActionsInput as i4, TrackingGoogleadsConversionActionsOutput as i5, TrackingGoogleadsFeedbackConfigGetInput as i6, TrackingGoogleadsFeedbackConfigGetOutput as i7, TrackingGoogleadsFeedbackConfigSetInput as i8, TrackingGoogleadsFeedbackConfigSetOutput as i9, TrackingLinkDomainsDeleteInput as iA, TrackingLinkDomainsDeleteOutput as iB, TrackingLinkDomainsListInput as iC, TrackingLinkDomainsListOutput as iD, TrackingLiveEventsListInput as iE, TrackingLiveEventsListOutput as iF, TrackingProfilesDeleteInput as iG, TrackingProfilesDeleteOutput as iH, TrackingProfilesExportInput as iI, TrackingProfilesExportOutput as iJ, TrackingProfilesGetInput as iK, TrackingProfilesGetOutput as iL, TrackingProfilesListInput as iM, TrackingProfilesListOutput as iN, TrackingReportsAttributedJourneyInput as iO, TrackingReportsAttributedJourneyOutput as iP, TrackingReportsRevenueBySourceInput as iQ, TrackingReportsRevenueBySourceOutput as iR, TrackingReportsSourcePeopleInput as iS, TrackingReportsSourcePeopleOutput as iT, TrackingSnippetsGetInput as iU, TrackingSnippetsGetOutput as iV, WaitlistConfigGetInput as iW, WaitlistConfigGetOutput as iX, WaitlistConfigUpsertInput as iY, WaitlistConfigUpsertOutput as iZ, WaitlistEmbedGetInput as i_, TrackingGoogleadsFeedbackRunInput as ia, TrackingGoogleadsFeedbackRunOutput as ib, TrackingGoogleadsFeedbackStatusInput as ic, TrackingGoogleadsFeedbackStatusOutput as id, TrackingGoogleadsFeedbackUploadsInput as ie, TrackingGoogleadsFeedbackUploadsOutput as ig, TrackingGoogleadsRoasReportInput as ih, TrackingGoogleadsRoasReportOutput as ii, TrackingGoogleadsSyncNowInput as ij, TrackingGoogleadsSyncNowOutput as ik, TrackingGoogleadsTrackingHealthInput as il, TrackingGoogleadsTrackingHealthOutput as im, TrackingGoogleadsUsVsPlatformInput as io, TrackingGoogleadsUsVsPlatformOutput as ip, TrackingIdentityHealthInput as iq, TrackingIdentityHealthOutput as ir, TrackingInstallDomainsCreateInput as is, TrackingInstallDomainsCreateOutput as it, TrackingInstallDomainsDeleteInput as iu, TrackingInstallDomainsDeleteOutput as iv, TrackingInstallDomainsListInput as iw, TrackingInstallDomainsListOutput as ix, TrackingLinkDomainsCreateInput as iy, TrackingLinkDomainsCreateOutput as iz, BrainClickupChannelsListOutput as j, WaitlistInvitesSendInput as j0, WaitlistInvitesSendOutput as j1, WaitlistSignupsEraseInput as j2, WaitlistSignupsEraseOutput as j3, WaitlistSignupsFunnelInput as j4, WaitlistSignupsFunnelOutput as j5, WaitlistSignupsListInput as j6, WaitlistSignupsListOutput as j7, 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 };
|
|
15317
|
+
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, DeploymentVolumeCreateOutput 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, DeploymentSshKeyRegisterInput as dA, DeploymentSshKeyRegisterOutput as dB, DeploymentVariableListEnvInput as dC, DeploymentVariableListEnvOutput as dD, DeploymentVariableListProductInput as dE, DeploymentVariableListProductOutput as dF, DeploymentVariableListInput as dG, DeploymentVariableListOutput as dH, DeploymentVariableSetEnvInput as dI, DeploymentVariableSetEnvOutput as dJ, DeploymentVariableSetInput as dK, DeploymentVariableSetOutput as dL, DeploymentVariableSetProductInput as dM, DeploymentVariableSetProductOutput as dN, DeploymentVariableUnsetEnvInput as dO, DeploymentVariableUnsetEnvOutput as dP, DeploymentVariableUnsetInput as dQ, DeploymentVariableUnsetOutput as dR, DeploymentVariableUnsetProductInput as dS, DeploymentVariableUnsetProductOutput as dT, DeploymentVcsBranchListInput as dU, DeploymentVcsBranchListOutput as dV, DeploymentVcsConnectionListInput as dW, DeploymentVcsConnectionListOutput as dX, DeploymentVcsRepoListInput as dY, DeploymentVcsRepoListOutput as dZ, DeploymentVolumeCreateInput 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, DeploymentSshCommandInput as du, DeploymentSshCommandOutput as dv, DeploymentSshKeyDeleteInput as dw, DeploymentSshKeyDeleteOutput as dx, DeploymentSshKeyListInput as dy, DeploymentSshKeyListOutput as dz, BrainBackupStatusInput as e, MailDomainUpdateOutput as e$, DeploymentVolumeDeleteInput as e0, DeploymentVolumeDeleteOutput as e1, DeploymentVolumeDetachInput as e2, DeploymentVolumeDetachOutput as e3, DeploymentVolumeGetInput as e4, DeploymentVolumeGetOutput as e5, DeploymentVolumeListInput as e6, DeploymentVolumeListOutput as e7, DeploymentVolumeResizeInput as e8, DeploymentVolumeResizeOutput as e9, MailBroadcastQueueInput as eA, MailBroadcastQueueOutput as eB, MailBroadcastStatsInput as eC, MailBroadcastStatsOutput as eD, MailBroadcastUpdateInput as eE, MailBroadcastUpdateOutput as eF, MailContactCreateInput as eG, MailContactCreateOutput as eH, MailContactDeleteInput as eI, MailContactDeleteOutput as eJ, MailContactGetInput as eK, MailContactGetOutput as eL, MailContactListInput as eM, MailContactListOutput as eN, MailContactUpdateInput as eO, MailContactUpdateOutput as eP, MailDomainAllowedListInput as eQ, MailDomainAllowedListOutput as eR, MailDomainCreateInput as eS, MailDomainCreateOutput as eT, MailDomainDeleteInput as eU, MailDomainDeleteOutput as eV, MailDomainGetInput as eW, MailDomainGetOutput as eX, MailDomainListInput as eY, MailDomainListOutput as eZ, MailDomainUpdateInput as e_, MailApikeyCreateInput as ea, MailApikeyCreateOutput as eb, MailApikeyDeleteInput as ec, MailApikeyDeleteOutput as ed, MailApikeyListInput as ee, MailApikeyListOutput as ef, MailAudienceCreateInput as eg, MailAudienceCreateOutput as eh, MailAudienceDeleteInput as ei, MailAudienceDeleteOutput as ej, MailAudienceGetInput as ek, MailAudienceGetOutput as el, MailAudienceListInput as em, MailAudienceListOutput as en, MailAudienceUpdateInput as eo, MailAudienceUpdateOutput as ep, MailBroadcastCancelInput as eq, MailBroadcastCancelOutput as er, MailBroadcastCreateInput as es, MailBroadcastCreateOutput as et, MailBroadcastDeleteInput as eu, MailBroadcastDeleteOutput as ev, MailBroadcastGetInput as ew, MailBroadcastGetOutput as ex, MailBroadcastListInput as ey, MailBroadcastListOutput as ez, BrainBackupStatusOutput as f, OrganizationConnectorsDeleteOutput as f$, MailDomainVerifyInput as f0, MailDomainVerifyOutput as f1, MailEmailCancelInput as f2, MailEmailCancelOutput as f3, MailEmailGetInput as f4, MailEmailSendBatchInput as f5, MailEmailSendBatchOutput as f6, MailEmailSendInput as f7, MailEmailSendOutput as f8, MailEmailUpdateInput as f9, MailWebhookCreateOutput as fA, MailWebhookDeleteInput as fB, MailWebhookDeleteOutput as fC, MailWebhookDeliveriesListInput as fD, MailWebhookDeliveriesListOutput as fE, MailWebhookGetInput as fF, MailWebhookGetOutput as fG, MailWebhookListInput as fH, MailWebhookListOutput as fI, MailWebhookUpdateInput as fJ, MailWebhookUpdateOutput as fK, MailEmailGetOutput as fL, OrganizationAuthMeInput as fM, OrganizationAuthMeOutput as fN, OrganizationBindingsListInput as fO, OrganizationBindingsListOutput as fP, OrganizationClickupInstallInput as fQ, OrganizationClickupInstallOutput as fR, OrganizationClickupListInstallationsInput as fS, OrganizationClickupListInstallationsOutput as fT, OrganizationCloudflareInstallInput as fU, OrganizationCloudflareInstallOutput as fV, OrganizationConnectorsApproveRequestInput as fW, OrganizationConnectorsApproveRequestOutput as fX, OrganizationConnectorsAttachInput as fY, OrganizationConnectorsAttachOutput as fZ, OrganizationConnectorsDeleteInput as f_, MailEmailUpdateOutput as fa, MailReputationGetInput as fb, MailReputationGetOutput as fc, MailStatsGetInput as fd, MailStatsGetOutput as fe, MailSuppressionAddInput as ff, MailSuppressionAddOutput as fg, MailSuppressionListInput as fh, MailSuppressionListOutput as fi, MailSuppressionRemoveInput as fj, MailSuppressionRemoveOutput as fk, MailTemplateCreateInput as fl, MailTemplateCreateOutput as fm, MailTemplateDeleteInput as fn, MailTemplateDeleteOutput as fo, MailTemplateGetInput as fp, MailTemplateGetOutput as fq, MailTemplateListInput as fr, MailTemplateListOutput as fs, MailTemplatePublishInput as ft, MailTemplatePublishOutput as fu, MailTemplateUpdateInput as fv, MailTemplateUpdateOutput as fw, MailUsageGetInput as fx, MailUsageGetOutput as fy, MailWebhookCreateInput as fz, BrainBackupsListInput as g, OrganizationMemberSetRoleOutput as g$, OrganizationConnectorsDenyRequestInput as g0, OrganizationConnectorsDenyRequestOutput as g1, OrganizationConnectorsDetachInput as g2, OrganizationConnectorsDetachOutput as g3, OrganizationConnectorsListAttachmentsInput as g4, OrganizationConnectorsListAttachmentsOutput as g5, OrganizationConnectorsListAvailableInput as g6, OrganizationConnectorsListAvailableOutput as g7, OrganizationConnectorsListOrgInput as g8, OrganizationConnectorsListOrgOutput as g9, OrganizationFeedbackSubmitInput as gA, OrganizationFeedbackSubmitOutput as gB, OrganizationGdriveInstallInput as gC, OrganizationGdriveInstallOutput as gD, OrganizationGithubInstallInput as gE, OrganizationGithubInstallOutput as gF, OrganizationGithubListInstallationsInput as gG, OrganizationGithubListInstallationsOutput as gH, OrganizationGoogleadsInstallInput as gI, OrganizationGoogleadsInstallOutput as gJ, OrganizationListInput as gK, OrganizationListOutput as gL, OrganizationMemberAcceptInviteInput as gM, OrganizationMemberAcceptInviteOutput as gN, OrganizationMemberInviteInput as gO, OrganizationMemberInviteOutput as gP, OrganizationMemberListInvitationsInput as gQ, OrganizationMemberListInvitationsOutput as gR, OrganizationMemberListProductAccessInput as gS, OrganizationMemberListProductAccessOutput as gT, OrganizationMemberListInput as gU, OrganizationMemberListOutput as gV, OrganizationMemberRemoveInput as gW, OrganizationMemberRemoveOutput as gX, OrganizationMemberRevokeInvitationInput as gY, OrganizationMemberRevokeInvitationOutput as gZ, OrganizationMemberSetRoleInput as g_, OrganizationConnectorsListInput as ga, OrganizationConnectorsListOutput as gb, OrganizationConnectorsListRequestsInput as gc, OrganizationConnectorsListRequestsOutput as gd, OrganizationConnectorsRemoveInput as ge, OrganizationConnectorsRemoveOutput as gf, OrganizationConnectorsRequestInput as gg, OrganizationConnectorsRequestOutput as gh, OrganizationCreateInput as gi, OrganizationCreateOutput as gj, OrganizationDomainsAddInput as gk, OrganizationDomainsAddOutput as gl, OrganizationDomainsGetInput as gm, OrganizationDomainsGetOutput as gn, OrganizationDomainsListInput as go, OrganizationDomainsListOutput as gp, OrganizationDomainsRemoveInput as gq, OrganizationDomainsRemoveOutput as gr, OrganizationExtensionsInstallInput as gs, OrganizationExtensionsInstallOutput as gt, OrganizationExtensionsListInstalledInput as gu, OrganizationExtensionsListInstalledOutput as gv, OrganizationExtensionsListInput as gw, OrganizationExtensionsListOutput as gx, OrganizationExtensionsUninstallInput as gy, OrganizationExtensionsUninstallOutput as gz, BrainBackupsListOutput as h, RealtimeGrantCreateOutput as h$, OrganizationMemberShareProductInput as h0, OrganizationMemberShareProductOutput as h1, OrganizationMemberUnshareProductInput as h2, OrganizationMemberUnshareProductOutput as h3, OrganizationMembersAssignRoleInput as h4, OrganizationMembersAssignRoleOutput as h5, OrganizationPermissionCatalogInput as h6, OrganizationPermissionCatalogOutput as h7, OrganizationProductAcceptInvitationInput as h8, OrganizationProductAcceptInvitationOutput as h9, OrganizationSelectInput as hA, OrganizationSelectOutput as hB, PlaygroundAnalyticsOverviewInput as hC, PlaygroundAnalyticsOverviewOutput as hD, PlaygroundBillingEntitlementsInput as hE, PlaygroundBillingEntitlementsOutput as hF, PlaygroundBillingRecordUsageInput as hG, PlaygroundBillingRecordUsageOutput as hH, PlaygroundClickupCreateTaskInput as hI, PlaygroundClickupCreateTaskOutput as hJ, PlaygroundClickupGetLastWebhookInput as hK, PlaygroundClickupGetLastWebhookOutput as hL, PlaygroundClickupGetOverviewInput as hM, PlaygroundClickupGetOverviewOutput as hN, PlaygroundGdriveGetLastChangeInput as hO, PlaygroundGdriveGetLastChangeOutput as hP, PlaygroundGdriveReadFileInput as hQ, PlaygroundGdriveReadFileOutput as hR, PlaygroundGoogleadsReadCustomerInput as hS, PlaygroundGoogleadsReadCustomerOutput as hT, PlaygroundLifecycleGetStateInput as hU, PlaygroundLifecycleGetStateOutput as hV, PlaygroundLifecycleListEventsInput as hW, PlaygroundLifecycleListEventsOutput as hX, PlaygroundWebhookGetLastInput as hY, PlaygroundWebhookGetLastOutput as hZ, RealtimeGrantCreateInput as h_, OrganizationProductCreateInput as ha, OrganizationProductCreateOutput as hb, OrganizationProductInviteInput as hc, OrganizationProductInviteOutput as hd, OrganizationProductListInvitationsInput as he, OrganizationProductListInvitationsOutput as hf, OrganizationProductListMembersInput as hg, OrganizationProductListMembersOutput as hh, OrganizationProductListInput as hi, OrganizationProductListOutput as hj, OrganizationProductListRolesInput as hk, OrganizationProductListRolesOutput as hl, OrganizationProductRevokeInvitationInput as hm, OrganizationProductRevokeInvitationOutput as hn, OrganizationProductSelectInput as ho, OrganizationProductSelectOutput as hp, OrganizationRolesCreateInput as hq, OrganizationRolesCreateOutput as hr, OrganizationRolesDeleteInput as hs, OrganizationRolesDeleteOutput as ht, OrganizationRolesGetInput as hu, OrganizationRolesGetOutput as hv, OrganizationRolesListInput as hw, OrganizationRolesListOutput as hx, OrganizationRolesUpdateInput as hy, OrganizationRolesUpdateOutput as hz, BrainClickupChannelsListInput as i, TrackingGoogleadsRoasReportOutput as i$, RealtimeGrantListInput as i0, RealtimeGrantListOutput as i1, RealtimeGrantRevokeInput as i2, RealtimeGrantRevokeOutput as i3, RealtimeHistoryGetInput as i4, RealtimeHistoryGetOutput as i5, RealtimeMessagesPublishInput as i6, RealtimeMessagesPublishOutput as i7, RealtimeNamespaceCreateInput as i8, RealtimeNamespaceCreateOutput as i9, TrackingDomainsGetInput as iA, TrackingDomainsGetOutput as iB, TrackingDomainsListInput as iC, TrackingDomainsListOutput as iD, TrackingDomainsVerifyInput as iE, TrackingDomainsVerifyOutput as iF, TrackingEventNamesArchiveInput as iG, TrackingEventNamesArchiveOutput as iH, TrackingEventNamesListInput as iI, TrackingEventNamesListOutput as iJ, TrackingEventNamesUnarchiveInput as iK, TrackingEventNamesUnarchiveOutput as iL, TrackingGoogleadsConnectionStatusInput as iM, TrackingGoogleadsConnectionStatusOutput as iN, TrackingGoogleadsConversionActionsInput as iO, TrackingGoogleadsConversionActionsOutput as iP, TrackingGoogleadsFeedbackConfigGetInput as iQ, TrackingGoogleadsFeedbackConfigGetOutput as iR, TrackingGoogleadsFeedbackConfigSetInput as iS, TrackingGoogleadsFeedbackConfigSetOutput as iT, TrackingGoogleadsFeedbackRunInput as iU, TrackingGoogleadsFeedbackRunOutput as iV, TrackingGoogleadsFeedbackStatusInput as iW, TrackingGoogleadsFeedbackStatusOutput as iX, TrackingGoogleadsFeedbackUploadsInput as iY, TrackingGoogleadsFeedbackUploadsOutput as iZ, TrackingGoogleadsRoasReportInput as i_, RealtimeNamespaceDeleteInput as ia, RealtimeNamespaceDeleteOutput as ib, RealtimeNamespaceGetInput as ic, RealtimeNamespaceGetOutput as id, RealtimeNamespaceListInput as ie, RealtimeNamespaceListOutput as ig, RealtimeNamespaceUpdateInput as ih, RealtimeNamespaceUpdateOutput as ii, RealtimeStatusGetInput as ij, RealtimeStatusGetOutput as ik, RealtimeTokensCreateInput as il, RealtimeTokensCreateOutput as im, TrackingApiKeysCreateInput as io, TrackingApiKeysCreateOutput as ip, TrackingApiKeysListInput as iq, TrackingApiKeysListOutput as ir, TrackingApiKeysRevokeInput as is, TrackingApiKeysRevokeOutput as it, TrackingApiKeysRotateInput as iu, TrackingApiKeysRotateOutput as iv, TrackingDomainsCreateInput as iw, TrackingDomainsCreateOutput as ix, TrackingDomainsDeleteInput as iy, TrackingDomainsDeleteOutput as iz, BrainClickupChannelsListOutput as j, TrackingGoogleadsSyncNowInput as j0, TrackingGoogleadsSyncNowOutput as j1, TrackingGoogleadsTrackingHealthInput as j2, TrackingGoogleadsTrackingHealthOutput as j3, TrackingGoogleadsUsVsPlatformInput as j4, TrackingGoogleadsUsVsPlatformOutput as j5, TrackingIdentityHealthInput as j6, TrackingIdentityHealthOutput as j7, TrackingInstallDomainsCreateInput as j8, TrackingInstallDomainsCreateOutput as j9, TrackingSnippetsGetInput as jA, TrackingSnippetsGetOutput as jB, WaitlistConfigGetInput as jC, WaitlistConfigGetOutput as jD, WaitlistConfigUpsertInput as jE, WaitlistConfigUpsertOutput as jF, WaitlistEmbedGetInput as jG, WaitlistEmbedGetOutput as jH, WaitlistInvitesSendInput as jI, WaitlistInvitesSendOutput as jJ, WaitlistSignupsEraseInput as jK, WaitlistSignupsEraseOutput as jL, WaitlistSignupsFunnelInput as jM, WaitlistSignupsFunnelOutput as jN, WaitlistSignupsListInput as jO, WaitlistSignupsListOutput as jP, TrackingInstallDomainsDeleteInput as ja, TrackingInstallDomainsDeleteOutput as jb, TrackingInstallDomainsListInput as jc, TrackingInstallDomainsListOutput as jd, TrackingLinkDomainsCreateInput as je, TrackingLinkDomainsCreateOutput as jf, TrackingLinkDomainsDeleteInput as jg, TrackingLinkDomainsDeleteOutput as jh, TrackingLinkDomainsListInput as ji, TrackingLinkDomainsListOutput as jj, TrackingLiveEventsListInput as jk, TrackingLiveEventsListOutput as jl, TrackingProfilesDeleteInput as jm, TrackingProfilesDeleteOutput as jn, TrackingProfilesExportInput as jo, TrackingProfilesExportOutput as jp, TrackingProfilesGetInput as jq, TrackingProfilesGetOutput as jr, TrackingProfilesListInput as js, TrackingProfilesListOutput as jt, TrackingReportsAttributedJourneyInput as ju, TrackingReportsAttributedJourneyOutput as jv, TrackingReportsRevenueBySourceInput as jw, TrackingReportsRevenueBySourceOutput as jx, TrackingReportsSourcePeopleInput as jy, TrackingReportsSourcePeopleOutput 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 };
|