@lessly/sdk-app 9.1.0 → 10.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-LEUVRZRQ.d.cts → client.gen-XqieBmDz.d.cts} +1102 -223
- package/dist/{client.gen-LEUVRZRQ.d.ts → client.gen-XqieBmDz.d.ts} +1102 -223
- 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 +512 -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 +512 -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 +126 -0
- package/dist/realtime/index.cjs.map +1 -0
- package/dist/realtime/index.d.cts +100 -0
- package/dist/realtime/index.d.ts +100 -0
- package/dist/realtime/index.js +101 -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 +512 -40
- package/src/gen/brain/index.ts +1 -1
- package/src/gen/brain/queryOptions.gen.ts +0 -14
- package/src/gen/client.gen.ts +146 -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 +158 -0
- package/src/gen/types.gen.ts +994 -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,145 +13065,1036 @@ interface OrganizationSelectOutput {
|
|
|
13147
13065
|
};
|
|
13148
13066
|
activeProductId: (string | null);
|
|
13149
13067
|
}
|
|
13150
|
-
interface
|
|
13151
|
-
|
|
13068
|
+
interface PlaygroundAnalyticsOverviewInput {
|
|
13069
|
+
/**
|
|
13070
|
+
* Max records per entity in recent[]; omit for the endpoint default
|
|
13071
|
+
*/
|
|
13072
|
+
limit?: number;
|
|
13152
13073
|
}
|
|
13153
|
-
interface
|
|
13154
|
-
|
|
13155
|
-
|
|
13156
|
-
|
|
13157
|
-
|
|
13158
|
-
createdAt: string;
|
|
13074
|
+
interface PlaygroundAnalyticsOverviewOutput {
|
|
13075
|
+
ok: boolean;
|
|
13076
|
+
minted: boolean;
|
|
13077
|
+
overview?: unknown;
|
|
13078
|
+
http_status: number;
|
|
13159
13079
|
}
|
|
13160
|
-
interface
|
|
13080
|
+
interface PlaygroundBillingEntitlementsInput {
|
|
13161
13081
|
}
|
|
13162
|
-
|
|
13163
|
-
|
|
13164
|
-
|
|
13165
|
-
|
|
13166
|
-
|
|
13167
|
-
status: ("active" | "revoked");
|
|
13168
|
-
createdAt: string;
|
|
13169
|
-
revokedAt: (string | null);
|
|
13170
|
-
lastUsedAt: (string | null);
|
|
13171
|
-
}[];
|
|
13172
|
-
interface TrackingApiKeysRevokeInput {
|
|
13173
|
-
keyId: string;
|
|
13082
|
+
interface PlaygroundBillingEntitlementsOutput {
|
|
13083
|
+
ok: boolean;
|
|
13084
|
+
minted: boolean;
|
|
13085
|
+
http_status: number;
|
|
13086
|
+
entitlements?: unknown;
|
|
13174
13087
|
}
|
|
13175
|
-
interface
|
|
13176
|
-
|
|
13088
|
+
interface PlaygroundBillingRecordUsageInput {
|
|
13089
|
+
/**
|
|
13090
|
+
* Quantity of events to record against playground-events (SUM); defaults to 1
|
|
13091
|
+
*/
|
|
13092
|
+
value?: number;
|
|
13177
13093
|
}
|
|
13178
|
-
interface
|
|
13179
|
-
|
|
13094
|
+
interface PlaygroundBillingRecordUsageOutput {
|
|
13095
|
+
minted: boolean;
|
|
13096
|
+
accepted: (number | null);
|
|
13097
|
+
recorded: boolean;
|
|
13098
|
+
duplicates: (number | null);
|
|
13099
|
+
http_status: number;
|
|
13180
13100
|
}
|
|
13181
|
-
interface
|
|
13182
|
-
|
|
13183
|
-
|
|
13184
|
-
|
|
13185
|
-
|
|
13186
|
-
|
|
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;
|
|
13187
13110
|
}
|
|
13188
|
-
interface
|
|
13189
|
-
|
|
13190
|
-
|
|
13191
|
-
|
|
13192
|
-
|
|
13193
|
-
|
|
13194
|
-
|
|
13195
|
-
}[];
|
|
13196
|
-
domainId: string;
|
|
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;
|
|
13197
13118
|
}
|
|
13198
|
-
interface
|
|
13199
|
-
binding: {
|
|
13200
|
-
host: string;
|
|
13201
|
-
status: ("pending" | "active" | "failed");
|
|
13202
|
-
records: unknown[];
|
|
13203
|
-
domainId: string;
|
|
13204
|
-
bindingId: string;
|
|
13205
|
-
createdAt: string;
|
|
13206
|
-
productId: string;
|
|
13207
|
-
updatedAt: string;
|
|
13208
|
-
statusDetail: (string | null);
|
|
13209
|
-
ownerExtension: string;
|
|
13210
|
-
};
|
|
13211
|
-
instructions: string[];
|
|
13119
|
+
interface PlaygroundClickupGetLastWebhookInput {
|
|
13212
13120
|
}
|
|
13213
|
-
|
|
13214
|
-
|
|
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 {
|
|
13215
13135
|
}
|
|
13216
|
-
interface
|
|
13217
|
-
|
|
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;
|
|
13218
13160
|
}
|
|
13219
|
-
interface
|
|
13220
|
-
bindingId: string;
|
|
13161
|
+
interface PlaygroundGdriveGetLastChangeInput {
|
|
13221
13162
|
}
|
|
13222
|
-
|
|
13223
|
-
|
|
13224
|
-
|
|
13225
|
-
|
|
13226
|
-
|
|
13227
|
-
|
|
13228
|
-
|
|
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;
|
|
13229
13208
|
productId: string;
|
|
13230
|
-
|
|
13231
|
-
|
|
13232
|
-
|
|
13233
|
-
}
|
|
13234
|
-
interface TrackingDomainsListInput {
|
|
13235
|
-
}
|
|
13236
|
-
interface TrackingDomainsListOutput {
|
|
13237
|
-
domains: {
|
|
13238
|
-
mode: ("external" | "managed");
|
|
13239
|
-
domain: string;
|
|
13240
|
-
domainId: string;
|
|
13241
|
-
createdAt: string;
|
|
13242
|
-
extensionCount: number;
|
|
13243
|
-
}[];
|
|
13244
|
-
bindings: {
|
|
13245
|
-
host: string;
|
|
13246
|
-
status: ("pending" | "active" | "failed");
|
|
13247
|
-
records: unknown[];
|
|
13248
|
-
domainId: string;
|
|
13249
|
-
bindingId: string;
|
|
13250
|
-
createdAt: string;
|
|
13209
|
+
lastBlockTransition: ({
|
|
13210
|
+
eventId: string;
|
|
13211
|
+
eventName: string;
|
|
13251
13212
|
productId: string;
|
|
13252
|
-
|
|
13253
|
-
|
|
13254
|
-
|
|
13255
|
-
|
|
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);
|
|
13256
13229
|
}
|
|
13257
|
-
interface
|
|
13258
|
-
bindingId: string;
|
|
13230
|
+
interface PlaygroundLifecycleListEventsInput {
|
|
13259
13231
|
}
|
|
13260
|
-
|
|
13261
|
-
|
|
13262
|
-
|
|
13263
|
-
records: unknown[];
|
|
13264
|
-
domainId: string;
|
|
13265
|
-
bindingId: string;
|
|
13266
|
-
createdAt: string;
|
|
13232
|
+
type PlaygroundLifecycleListEventsOutput = {
|
|
13233
|
+
eventId: string;
|
|
13234
|
+
eventName: string;
|
|
13267
13235
|
productId: string;
|
|
13268
|
-
|
|
13269
|
-
|
|
13270
|
-
|
|
13236
|
+
occurredAt: string;
|
|
13237
|
+
recordedAt: string;
|
|
13238
|
+
receiptCount: number;
|
|
13239
|
+
organizationId: string;
|
|
13240
|
+
cascadedFromOrg: boolean;
|
|
13241
|
+
}[];
|
|
13242
|
+
interface PlaygroundWebhookGetLastInput {
|
|
13271
13243
|
}
|
|
13272
|
-
|
|
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 {
|
|
13273
13257
|
/**
|
|
13274
|
-
*
|
|
13258
|
+
* Operations granted on matching channels
|
|
13259
|
+
*
|
|
13260
|
+
* @minItems 1
|
|
13275
13261
|
*/
|
|
13276
|
-
|
|
13277
|
-
}
|
|
13278
|
-
interface TrackingEventNamesArchiveOutput {
|
|
13279
|
-
name: string;
|
|
13280
|
-
status: ("active" | "archived");
|
|
13281
|
-
}
|
|
13282
|
-
interface TrackingEventNamesListInput {
|
|
13262
|
+
ops: [("subscribe" | "publish" | "presence" | "history"), ...(("subscribe" | "publish" | "presence" | "history"))[]];
|
|
13283
13263
|
/**
|
|
13284
|
-
*
|
|
13264
|
+
* Channel pattern, e.g. "chat:*" ("*" matches exactly one segment)
|
|
13285
13265
|
*/
|
|
13286
|
-
|
|
13266
|
+
pattern: string;
|
|
13287
13267
|
/**
|
|
13288
|
-
*
|
|
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
|
+
* Store-and-link reference for payloads over the inline cap
|
|
13348
|
+
*/
|
|
13349
|
+
ref?: {
|
|
13350
|
+
/**
|
|
13351
|
+
* Stored body size in bytes
|
|
13352
|
+
*/
|
|
13353
|
+
size: number;
|
|
13354
|
+
/**
|
|
13355
|
+
* Object key in the product-scoped bucket
|
|
13356
|
+
*/
|
|
13357
|
+
bucket_key: string;
|
|
13358
|
+
/**
|
|
13359
|
+
* Stored content type
|
|
13360
|
+
*/
|
|
13361
|
+
content_type?: string;
|
|
13362
|
+
};
|
|
13363
|
+
/**
|
|
13364
|
+
* Inline payload (absent when ref is present)
|
|
13365
|
+
*/
|
|
13366
|
+
data?: {
|
|
13367
|
+
[k: string]: unknown;
|
|
13368
|
+
};
|
|
13369
|
+
/**
|
|
13370
|
+
* Stream offset of the entry
|
|
13371
|
+
*/
|
|
13372
|
+
offset: string;
|
|
13373
|
+
}[];
|
|
13374
|
+
/**
|
|
13375
|
+
* false when the cursor epoch mismatches or entries aged out — client must resync
|
|
13376
|
+
*/
|
|
13377
|
+
recovered: boolean;
|
|
13378
|
+
}
|
|
13379
|
+
interface RealtimeMessagesPublishInput {
|
|
13380
|
+
/**
|
|
13381
|
+
* JSON payload delivered to channel subscribers
|
|
13382
|
+
*/
|
|
13383
|
+
data: {
|
|
13384
|
+
[k: string]: unknown;
|
|
13385
|
+
};
|
|
13386
|
+
/**
|
|
13387
|
+
* Channel to publish the message to
|
|
13388
|
+
*/
|
|
13389
|
+
channel: string;
|
|
13390
|
+
}
|
|
13391
|
+
interface RealtimeMessagesPublishOutput {
|
|
13392
|
+
/**
|
|
13393
|
+
* Stream epoch of the stored message (present when history is on)
|
|
13394
|
+
*/
|
|
13395
|
+
epoch?: string;
|
|
13396
|
+
/**
|
|
13397
|
+
* Stream offset of the stored message (present when history is on)
|
|
13398
|
+
*/
|
|
13399
|
+
offset?: string;
|
|
13400
|
+
/**
|
|
13401
|
+
* Channel the message was published to
|
|
13402
|
+
*/
|
|
13403
|
+
channel: string;
|
|
13404
|
+
/**
|
|
13405
|
+
* Publish acknowledged by the fan-out backend
|
|
13406
|
+
*/
|
|
13407
|
+
published: true;
|
|
13408
|
+
}
|
|
13409
|
+
interface RealtimeNamespaceCreateInput {
|
|
13410
|
+
/**
|
|
13411
|
+
* Namespace name (the part of a channel name before the first colon)
|
|
13412
|
+
*/
|
|
13413
|
+
name: string;
|
|
13414
|
+
/**
|
|
13415
|
+
* History retention policy for channels in this namespace
|
|
13416
|
+
*/
|
|
13417
|
+
history?: ("none" | "last-message" | "window");
|
|
13418
|
+
/**
|
|
13419
|
+
* Whether presence is enabled on channels in this namespace
|
|
13420
|
+
*/
|
|
13421
|
+
presence?: boolean;
|
|
13422
|
+
/**
|
|
13423
|
+
* public: any authenticated identity may subscribe without a grant
|
|
13424
|
+
*/
|
|
13425
|
+
visibility?: ("public" | "authorized");
|
|
13426
|
+
/**
|
|
13427
|
+
* Whether clients may publish events directly
|
|
13428
|
+
*/
|
|
13429
|
+
clientEvents?: boolean;
|
|
13430
|
+
/**
|
|
13431
|
+
* Whether only identified (non-anonymous) identities get capabilities
|
|
13432
|
+
*/
|
|
13433
|
+
identifiedOnly?: boolean;
|
|
13434
|
+
/**
|
|
13435
|
+
* Whether payloads must be end-to-end encrypted
|
|
13436
|
+
*/
|
|
13437
|
+
encryptionRequired?: boolean;
|
|
13438
|
+
/**
|
|
13439
|
+
* Retention window in seconds; required when history is "window"
|
|
13440
|
+
*/
|
|
13441
|
+
historyWindowSeconds?: number;
|
|
13442
|
+
}
|
|
13443
|
+
interface RealtimeNamespaceCreateOutput {
|
|
13444
|
+
id: string;
|
|
13445
|
+
name: string;
|
|
13446
|
+
history: ("none" | "last-message" | "window");
|
|
13447
|
+
presence: boolean;
|
|
13448
|
+
createdAt: string;
|
|
13449
|
+
updatedAt: string;
|
|
13450
|
+
visibility: ("public" | "authorized");
|
|
13451
|
+
clientEvents: boolean;
|
|
13452
|
+
identifiedOnly: boolean;
|
|
13453
|
+
encryptionRequired: boolean;
|
|
13454
|
+
historyWindowSeconds: (number | null);
|
|
13455
|
+
}
|
|
13456
|
+
interface RealtimeNamespaceDeleteInput {
|
|
13457
|
+
/**
|
|
13458
|
+
* Namespace name
|
|
13459
|
+
*/
|
|
13460
|
+
name: string;
|
|
13461
|
+
}
|
|
13462
|
+
interface RealtimeNamespaceDeleteOutput {
|
|
13463
|
+
deleted: true;
|
|
13464
|
+
}
|
|
13465
|
+
interface RealtimeNamespaceGetInput {
|
|
13466
|
+
/**
|
|
13467
|
+
* Namespace name
|
|
13468
|
+
*/
|
|
13469
|
+
name: string;
|
|
13470
|
+
}
|
|
13471
|
+
interface RealtimeNamespaceGetOutput {
|
|
13472
|
+
id: string;
|
|
13473
|
+
name: string;
|
|
13474
|
+
history: ("none" | "last-message" | "window");
|
|
13475
|
+
presence: boolean;
|
|
13476
|
+
createdAt: string;
|
|
13477
|
+
updatedAt: string;
|
|
13478
|
+
visibility: ("public" | "authorized");
|
|
13479
|
+
clientEvents: boolean;
|
|
13480
|
+
identifiedOnly: boolean;
|
|
13481
|
+
encryptionRequired: boolean;
|
|
13482
|
+
historyWindowSeconds: (number | null);
|
|
13483
|
+
}
|
|
13484
|
+
interface RealtimeNamespaceListInput {
|
|
13485
|
+
}
|
|
13486
|
+
interface RealtimeNamespaceListOutput {
|
|
13487
|
+
namespaces: {
|
|
13488
|
+
id: string;
|
|
13489
|
+
name: string;
|
|
13490
|
+
history: ("none" | "last-message" | "window");
|
|
13491
|
+
presence: boolean;
|
|
13492
|
+
createdAt: string;
|
|
13493
|
+
updatedAt: string;
|
|
13494
|
+
visibility: ("public" | "authorized");
|
|
13495
|
+
clientEvents: boolean;
|
|
13496
|
+
identifiedOnly: boolean;
|
|
13497
|
+
encryptionRequired: boolean;
|
|
13498
|
+
historyWindowSeconds: (number | null);
|
|
13499
|
+
}[];
|
|
13500
|
+
}
|
|
13501
|
+
interface RealtimeNamespaceUpdateInput {
|
|
13502
|
+
/**
|
|
13503
|
+
* Namespace name to update
|
|
13504
|
+
*/
|
|
13505
|
+
name: string;
|
|
13506
|
+
/**
|
|
13507
|
+
* History retention policy for channels in this namespace
|
|
13508
|
+
*/
|
|
13509
|
+
history?: ("none" | "last-message" | "window");
|
|
13510
|
+
/**
|
|
13511
|
+
* Whether presence is enabled on channels in this namespace
|
|
13512
|
+
*/
|
|
13513
|
+
presence?: boolean;
|
|
13514
|
+
/**
|
|
13515
|
+
* public: any authenticated identity may subscribe without a grant
|
|
13516
|
+
*/
|
|
13517
|
+
visibility?: ("public" | "authorized");
|
|
13518
|
+
/**
|
|
13519
|
+
* Whether clients may publish events directly
|
|
13520
|
+
*/
|
|
13521
|
+
clientEvents?: boolean;
|
|
13522
|
+
/**
|
|
13523
|
+
* Whether only identified (non-anonymous) identities get capabilities
|
|
13524
|
+
*/
|
|
13525
|
+
identifiedOnly?: boolean;
|
|
13526
|
+
/**
|
|
13527
|
+
* Whether payloads must be end-to-end encrypted
|
|
13528
|
+
*/
|
|
13529
|
+
encryptionRequired?: boolean;
|
|
13530
|
+
/**
|
|
13531
|
+
* Retention window in seconds; required when history is "window"
|
|
13532
|
+
*/
|
|
13533
|
+
historyWindowSeconds?: number;
|
|
13534
|
+
}
|
|
13535
|
+
interface RealtimeNamespaceUpdateOutput {
|
|
13536
|
+
id: string;
|
|
13537
|
+
name: string;
|
|
13538
|
+
history: ("none" | "last-message" | "window");
|
|
13539
|
+
presence: boolean;
|
|
13540
|
+
createdAt: string;
|
|
13541
|
+
updatedAt: string;
|
|
13542
|
+
visibility: ("public" | "authorized");
|
|
13543
|
+
clientEvents: boolean;
|
|
13544
|
+
identifiedOnly: boolean;
|
|
13545
|
+
encryptionRequired: boolean;
|
|
13546
|
+
historyWindowSeconds: (number | null);
|
|
13547
|
+
}
|
|
13548
|
+
interface RealtimePresenceEnterInput {
|
|
13549
|
+
/**
|
|
13550
|
+
* Arbitrary JSON metadata for the member (<=10KB serialized)
|
|
13551
|
+
*/
|
|
13552
|
+
info?: {
|
|
13553
|
+
[k: string]: unknown;
|
|
13554
|
+
};
|
|
13555
|
+
/**
|
|
13556
|
+
* Channel name, "namespace:rest"
|
|
13557
|
+
*/
|
|
13558
|
+
channel: string;
|
|
13559
|
+
/**
|
|
13560
|
+
* Act for a synthetic member id instead of the caller identity (backend integrations)
|
|
13561
|
+
*/
|
|
13562
|
+
member_id?: string;
|
|
13563
|
+
/**
|
|
13564
|
+
* Presence entry TTL in seconds (1-3600)
|
|
13565
|
+
*/
|
|
13566
|
+
ttl_seconds?: number;
|
|
13567
|
+
}
|
|
13568
|
+
interface RealtimePresenceEnterOutput {
|
|
13569
|
+
/**
|
|
13570
|
+
* The entered/updated member
|
|
13571
|
+
*/
|
|
13572
|
+
member: {
|
|
13573
|
+
/**
|
|
13574
|
+
* Last update timestamp (ms epoch)
|
|
13575
|
+
*/
|
|
13576
|
+
ts: number;
|
|
13577
|
+
/**
|
|
13578
|
+
* Arbitrary JSON metadata for the member
|
|
13579
|
+
*/
|
|
13580
|
+
info?: {
|
|
13581
|
+
[k: string]: unknown;
|
|
13582
|
+
};
|
|
13583
|
+
/**
|
|
13584
|
+
* Member identity
|
|
13585
|
+
*/
|
|
13586
|
+
identity: string;
|
|
13587
|
+
/**
|
|
13588
|
+
* Number of live sockets for this identity
|
|
13589
|
+
*/
|
|
13590
|
+
connections: number;
|
|
13591
|
+
};
|
|
13592
|
+
/**
|
|
13593
|
+
* Channel name
|
|
13594
|
+
*/
|
|
13595
|
+
channel: string;
|
|
13596
|
+
}
|
|
13597
|
+
interface RealtimePresenceGetInput {
|
|
13598
|
+
/**
|
|
13599
|
+
* Channel name, "namespace:rest"
|
|
13600
|
+
*/
|
|
13601
|
+
channel: string;
|
|
13602
|
+
}
|
|
13603
|
+
interface RealtimePresenceGetOutput {
|
|
13604
|
+
/**
|
|
13605
|
+
* Channel name
|
|
13606
|
+
*/
|
|
13607
|
+
channel: string;
|
|
13608
|
+
/**
|
|
13609
|
+
* Current roster, deduplicated by identity
|
|
13610
|
+
*/
|
|
13611
|
+
members: {
|
|
13612
|
+
/**
|
|
13613
|
+
* Last update timestamp (ms epoch)
|
|
13614
|
+
*/
|
|
13615
|
+
ts: number;
|
|
13616
|
+
/**
|
|
13617
|
+
* Arbitrary JSON metadata for the member
|
|
13618
|
+
*/
|
|
13619
|
+
info?: {
|
|
13620
|
+
[k: string]: unknown;
|
|
13621
|
+
};
|
|
13622
|
+
/**
|
|
13623
|
+
* Member identity
|
|
13624
|
+
*/
|
|
13625
|
+
identity: string;
|
|
13626
|
+
/**
|
|
13627
|
+
* Number of live sockets for this identity
|
|
13628
|
+
*/
|
|
13629
|
+
connections: number;
|
|
13630
|
+
}[];
|
|
13631
|
+
}
|
|
13632
|
+
interface RealtimePresenceLeaveInput {
|
|
13633
|
+
/**
|
|
13634
|
+
* Channel name, "namespace:rest"
|
|
13635
|
+
*/
|
|
13636
|
+
channel: string;
|
|
13637
|
+
/**
|
|
13638
|
+
* Act for a synthetic member id instead of the caller identity (backend integrations)
|
|
13639
|
+
*/
|
|
13640
|
+
member_id?: string;
|
|
13641
|
+
}
|
|
13642
|
+
interface RealtimePresenceLeaveOutput {
|
|
13643
|
+
/**
|
|
13644
|
+
* Channel name
|
|
13645
|
+
*/
|
|
13646
|
+
channel: string;
|
|
13647
|
+
/**
|
|
13648
|
+
* Whether the member was removed
|
|
13649
|
+
*/
|
|
13650
|
+
removed: boolean;
|
|
13651
|
+
}
|
|
13652
|
+
interface RealtimePresenceStatsInput {
|
|
13653
|
+
/**
|
|
13654
|
+
* Channel name, "namespace:rest"
|
|
13655
|
+
*/
|
|
13656
|
+
channel: string;
|
|
13657
|
+
}
|
|
13658
|
+
interface RealtimePresenceStatsOutput {
|
|
13659
|
+
/**
|
|
13660
|
+
* Channel name
|
|
13661
|
+
*/
|
|
13662
|
+
channel: string;
|
|
13663
|
+
/**
|
|
13664
|
+
* Number of distinct identities present
|
|
13665
|
+
*/
|
|
13666
|
+
members: number;
|
|
13667
|
+
}
|
|
13668
|
+
interface RealtimePresenceUpdateInput {
|
|
13669
|
+
/**
|
|
13670
|
+
* Arbitrary JSON metadata for the member (<=10KB serialized)
|
|
13671
|
+
*/
|
|
13672
|
+
info?: {
|
|
13673
|
+
[k: string]: unknown;
|
|
13674
|
+
};
|
|
13675
|
+
/**
|
|
13676
|
+
* Channel name, "namespace:rest"
|
|
13677
|
+
*/
|
|
13678
|
+
channel: string;
|
|
13679
|
+
/**
|
|
13680
|
+
* Act for a synthetic member id instead of the caller identity (backend integrations)
|
|
13681
|
+
*/
|
|
13682
|
+
member_id?: string;
|
|
13683
|
+
/**
|
|
13684
|
+
* Presence entry TTL in seconds (1-3600)
|
|
13685
|
+
*/
|
|
13686
|
+
ttl_seconds?: number;
|
|
13687
|
+
}
|
|
13688
|
+
interface RealtimePresenceUpdateOutput {
|
|
13689
|
+
/**
|
|
13690
|
+
* The entered/updated member
|
|
13691
|
+
*/
|
|
13692
|
+
member: {
|
|
13693
|
+
/**
|
|
13694
|
+
* Last update timestamp (ms epoch)
|
|
13695
|
+
*/
|
|
13696
|
+
ts: number;
|
|
13697
|
+
/**
|
|
13698
|
+
* Arbitrary JSON metadata for the member
|
|
13699
|
+
*/
|
|
13700
|
+
info?: {
|
|
13701
|
+
[k: string]: unknown;
|
|
13702
|
+
};
|
|
13703
|
+
/**
|
|
13704
|
+
* Member identity
|
|
13705
|
+
*/
|
|
13706
|
+
identity: string;
|
|
13707
|
+
/**
|
|
13708
|
+
* Number of live sockets for this identity
|
|
13709
|
+
*/
|
|
13710
|
+
connections: number;
|
|
13711
|
+
};
|
|
13712
|
+
/**
|
|
13713
|
+
* Channel name
|
|
13714
|
+
*/
|
|
13715
|
+
channel: string;
|
|
13716
|
+
}
|
|
13717
|
+
interface RealtimeStatusGetInput {
|
|
13718
|
+
}
|
|
13719
|
+
interface RealtimeStatusGetOutput {
|
|
13720
|
+
/**
|
|
13721
|
+
* Redis fan-out connectivity
|
|
13722
|
+
*/
|
|
13723
|
+
redis: ("connected" | "disconnected" | "unconfigured");
|
|
13724
|
+
/**
|
|
13725
|
+
* API liveness marker
|
|
13726
|
+
*/
|
|
13727
|
+
service: "ok";
|
|
13728
|
+
/**
|
|
13729
|
+
* WebSocket URL of the realtime gateway
|
|
13730
|
+
*/
|
|
13731
|
+
gatewayUrl: string;
|
|
13732
|
+
/**
|
|
13733
|
+
* Whether the token signing key is present
|
|
13734
|
+
*/
|
|
13735
|
+
signingKeyConfigured: boolean;
|
|
13736
|
+
}
|
|
13737
|
+
interface RealtimeTokensCreateInput {
|
|
13738
|
+
/**
|
|
13739
|
+
* Concrete channels to filter the resolved capabilities to; omit to receive all capabilities the identity has
|
|
13740
|
+
*
|
|
13741
|
+
* @minItems 1
|
|
13742
|
+
* @maxItems 32
|
|
13743
|
+
*/
|
|
13744
|
+
channels?: [string, ...(string)[]];
|
|
13745
|
+
}
|
|
13746
|
+
interface RealtimeTokensCreateOutput {
|
|
13747
|
+
/**
|
|
13748
|
+
* Signed EdDSA capability JWT (60s TTL)
|
|
13749
|
+
*/
|
|
13750
|
+
token: string;
|
|
13751
|
+
/**
|
|
13752
|
+
* WebSocket URL of the realtime gateway to connect to
|
|
13753
|
+
*/
|
|
13754
|
+
gatewayUrl: string;
|
|
13755
|
+
}
|
|
13756
|
+
interface RealtimeWebhookCreateInput {
|
|
13757
|
+
/**
|
|
13758
|
+
* Endpoint that receives signed lifecycle POSTs (https in production)
|
|
13759
|
+
*/
|
|
13760
|
+
url: string;
|
|
13761
|
+
/**
|
|
13762
|
+
* Lifecycle event types this webhook receives
|
|
13763
|
+
*
|
|
13764
|
+
* @minItems 1
|
|
13765
|
+
*/
|
|
13766
|
+
events: [("channel.occupied" | "channel.vacated" | "presence.member-added" | "presence.member-removed"), ...(("channel.occupied" | "channel.vacated" | "presence.member-added" | "presence.member-removed"))[]];
|
|
13767
|
+
/**
|
|
13768
|
+
* Free-form note
|
|
13769
|
+
*/
|
|
13770
|
+
description?: string;
|
|
13771
|
+
}
|
|
13772
|
+
interface RealtimeWebhookCreateOutput {
|
|
13773
|
+
/**
|
|
13774
|
+
* Full signing secret — returned only once, at creation. Store it now.
|
|
13775
|
+
*/
|
|
13776
|
+
secret: string;
|
|
13777
|
+
webhook: {
|
|
13778
|
+
id: string;
|
|
13779
|
+
url: string;
|
|
13780
|
+
active: boolean;
|
|
13781
|
+
events: string[];
|
|
13782
|
+
/**
|
|
13783
|
+
* Secret metadata only — never the secret itself
|
|
13784
|
+
*/
|
|
13785
|
+
secrets: {
|
|
13786
|
+
/**
|
|
13787
|
+
* Visible secret prefix — matches the X-Realtime-Key header
|
|
13788
|
+
*/
|
|
13789
|
+
prefix: string;
|
|
13790
|
+
createdAt: string;
|
|
13791
|
+
/**
|
|
13792
|
+
* When this secret stops verifying; null = current signer
|
|
13793
|
+
*/
|
|
13794
|
+
expiresAt: (string | null);
|
|
13795
|
+
}[];
|
|
13796
|
+
createdAt: string;
|
|
13797
|
+
updatedAt: string;
|
|
13798
|
+
description: (string | null);
|
|
13799
|
+
};
|
|
13800
|
+
}
|
|
13801
|
+
interface RealtimeWebhookDeleteInput {
|
|
13802
|
+
/**
|
|
13803
|
+
* Webhook id
|
|
13804
|
+
*/
|
|
13805
|
+
webhookId: string;
|
|
13806
|
+
}
|
|
13807
|
+
interface RealtimeWebhookDeleteOutput {
|
|
13808
|
+
deleted: true;
|
|
13809
|
+
}
|
|
13810
|
+
interface RealtimeWebhookDeliveriesListInput {
|
|
13811
|
+
/**
|
|
13812
|
+
* Max deliveries to return (newest first)
|
|
13813
|
+
*/
|
|
13814
|
+
limit?: number;
|
|
13815
|
+
/**
|
|
13816
|
+
* Webhook id
|
|
13817
|
+
*/
|
|
13818
|
+
webhookId: string;
|
|
13819
|
+
}
|
|
13820
|
+
interface RealtimeWebhookDeliveriesListOutput {
|
|
13821
|
+
deliveries: {
|
|
13822
|
+
id: string;
|
|
13823
|
+
status: ("pending" | "succeeded" | "failed");
|
|
13824
|
+
/**
|
|
13825
|
+
* Source lifecycle event idempotencyKey
|
|
13826
|
+
*/
|
|
13827
|
+
eventId: string;
|
|
13828
|
+
attempts: number;
|
|
13829
|
+
createdAt: string;
|
|
13830
|
+
eventType: string;
|
|
13831
|
+
lastError: (string | null);
|
|
13832
|
+
lastAttemptAt: (string | null);
|
|
13833
|
+
responseStatus: (number | null);
|
|
13834
|
+
}[];
|
|
13835
|
+
}
|
|
13836
|
+
interface RealtimeWebhookGetInput {
|
|
13837
|
+
/**
|
|
13838
|
+
* Webhook id
|
|
13839
|
+
*/
|
|
13840
|
+
webhookId: string;
|
|
13841
|
+
}
|
|
13842
|
+
interface RealtimeWebhookGetOutput {
|
|
13843
|
+
id: string;
|
|
13844
|
+
url: string;
|
|
13845
|
+
active: boolean;
|
|
13846
|
+
events: string[];
|
|
13847
|
+
/**
|
|
13848
|
+
* Secret metadata only — never the secret itself
|
|
13849
|
+
*/
|
|
13850
|
+
secrets: {
|
|
13851
|
+
/**
|
|
13852
|
+
* Visible secret prefix — matches the X-Realtime-Key header
|
|
13853
|
+
*/
|
|
13854
|
+
prefix: string;
|
|
13855
|
+
createdAt: string;
|
|
13856
|
+
/**
|
|
13857
|
+
* When this secret stops verifying; null = current signer
|
|
13858
|
+
*/
|
|
13859
|
+
expiresAt: (string | null);
|
|
13860
|
+
}[];
|
|
13861
|
+
createdAt: string;
|
|
13862
|
+
updatedAt: string;
|
|
13863
|
+
description: (string | null);
|
|
13864
|
+
}
|
|
13865
|
+
interface RealtimeWebhookListInput {
|
|
13866
|
+
}
|
|
13867
|
+
interface RealtimeWebhookListOutput {
|
|
13868
|
+
webhooks: {
|
|
13869
|
+
id: string;
|
|
13870
|
+
url: string;
|
|
13871
|
+
active: boolean;
|
|
13872
|
+
events: string[];
|
|
13873
|
+
/**
|
|
13874
|
+
* Secret metadata only — never the secret itself
|
|
13875
|
+
*/
|
|
13876
|
+
secrets: {
|
|
13877
|
+
/**
|
|
13878
|
+
* Visible secret prefix — matches the X-Realtime-Key header
|
|
13879
|
+
*/
|
|
13880
|
+
prefix: string;
|
|
13881
|
+
createdAt: string;
|
|
13882
|
+
/**
|
|
13883
|
+
* When this secret stops verifying; null = current signer
|
|
13884
|
+
*/
|
|
13885
|
+
expiresAt: (string | null);
|
|
13886
|
+
}[];
|
|
13887
|
+
createdAt: string;
|
|
13888
|
+
updatedAt: string;
|
|
13889
|
+
description: (string | null);
|
|
13890
|
+
}[];
|
|
13891
|
+
}
|
|
13892
|
+
interface RealtimeWebhookSecretRotateInput {
|
|
13893
|
+
/**
|
|
13894
|
+
* Webhook id
|
|
13895
|
+
*/
|
|
13896
|
+
webhookId: string;
|
|
13897
|
+
}
|
|
13898
|
+
interface RealtimeWebhookSecretRotateOutput {
|
|
13899
|
+
/**
|
|
13900
|
+
* Visible prefix of the new secret (X-Realtime-Key)
|
|
13901
|
+
*/
|
|
13902
|
+
prefix: string;
|
|
13903
|
+
/**
|
|
13904
|
+
* New full signing secret — returned only once. Store it now.
|
|
13905
|
+
*/
|
|
13906
|
+
secret: string;
|
|
13907
|
+
/**
|
|
13908
|
+
* When the rotated-out secret stops verifying (grace window)
|
|
13909
|
+
*/
|
|
13910
|
+
previousExpiresAt: (string | null);
|
|
13911
|
+
}
|
|
13912
|
+
interface RealtimeWebhookUpdateInput {
|
|
13913
|
+
/**
|
|
13914
|
+
* Endpoint that receives signed lifecycle POSTs (https in production)
|
|
13915
|
+
*/
|
|
13916
|
+
url?: string;
|
|
13917
|
+
/**
|
|
13918
|
+
* Inactive webhooks receive no deliveries
|
|
13919
|
+
*/
|
|
13920
|
+
active?: boolean;
|
|
13921
|
+
/**
|
|
13922
|
+
* Lifecycle event types this webhook receives
|
|
13923
|
+
*
|
|
13924
|
+
* @minItems 1
|
|
13925
|
+
*/
|
|
13926
|
+
events?: [("channel.occupied" | "channel.vacated" | "presence.member-added" | "presence.member-removed"), ...(("channel.occupied" | "channel.vacated" | "presence.member-added" | "presence.member-removed"))[]];
|
|
13927
|
+
/**
|
|
13928
|
+
* Webhook id to update
|
|
13929
|
+
*/
|
|
13930
|
+
webhookId: string;
|
|
13931
|
+
/**
|
|
13932
|
+
* Free-form note
|
|
13933
|
+
*/
|
|
13934
|
+
description?: (string | null);
|
|
13935
|
+
}
|
|
13936
|
+
interface RealtimeWebhookUpdateOutput {
|
|
13937
|
+
id: string;
|
|
13938
|
+
url: string;
|
|
13939
|
+
active: boolean;
|
|
13940
|
+
events: string[];
|
|
13941
|
+
/**
|
|
13942
|
+
* Secret metadata only — never the secret itself
|
|
13943
|
+
*/
|
|
13944
|
+
secrets: {
|
|
13945
|
+
/**
|
|
13946
|
+
* Visible secret prefix — matches the X-Realtime-Key header
|
|
13947
|
+
*/
|
|
13948
|
+
prefix: string;
|
|
13949
|
+
createdAt: string;
|
|
13950
|
+
/**
|
|
13951
|
+
* When this secret stops verifying; null = current signer
|
|
13952
|
+
*/
|
|
13953
|
+
expiresAt: (string | null);
|
|
13954
|
+
}[];
|
|
13955
|
+
createdAt: string;
|
|
13956
|
+
updatedAt: string;
|
|
13957
|
+
description: (string | null);
|
|
13958
|
+
}
|
|
13959
|
+
interface TrackingApiKeysCreateInput {
|
|
13960
|
+
name: string;
|
|
13961
|
+
}
|
|
13962
|
+
interface TrackingApiKeysCreateOutput {
|
|
13963
|
+
name: string;
|
|
13964
|
+
keyId: string;
|
|
13965
|
+
last4: string;
|
|
13966
|
+
prefix: string;
|
|
13967
|
+
createdAt: string;
|
|
13968
|
+
}
|
|
13969
|
+
interface TrackingApiKeysListInput {
|
|
13970
|
+
}
|
|
13971
|
+
type TrackingApiKeysListOutput = {
|
|
13972
|
+
name: string;
|
|
13973
|
+
keyId: string;
|
|
13974
|
+
last4: string;
|
|
13975
|
+
prefix: string;
|
|
13976
|
+
status: ("active" | "revoked");
|
|
13977
|
+
createdAt: string;
|
|
13978
|
+
revokedAt: (string | null);
|
|
13979
|
+
lastUsedAt: (string | null);
|
|
13980
|
+
}[];
|
|
13981
|
+
interface TrackingApiKeysRevokeInput {
|
|
13982
|
+
keyId: string;
|
|
13983
|
+
}
|
|
13984
|
+
interface TrackingApiKeysRevokeOutput {
|
|
13985
|
+
ok: true;
|
|
13986
|
+
}
|
|
13987
|
+
interface TrackingApiKeysRotateInput {
|
|
13988
|
+
keyId: string;
|
|
13989
|
+
}
|
|
13990
|
+
interface TrackingApiKeysRotateOutput {
|
|
13991
|
+
name: string;
|
|
13992
|
+
keyId: string;
|
|
13993
|
+
last4: string;
|
|
13994
|
+
prefix: string;
|
|
13995
|
+
createdAt: string;
|
|
13996
|
+
}
|
|
13997
|
+
interface TrackingDomainsCreateInput {
|
|
13998
|
+
host?: string;
|
|
13999
|
+
records?: {
|
|
14000
|
+
ttl?: number;
|
|
14001
|
+
name?: string;
|
|
14002
|
+
target: string;
|
|
14003
|
+
recordType: string;
|
|
14004
|
+
}[];
|
|
14005
|
+
domainId: string;
|
|
14006
|
+
}
|
|
14007
|
+
interface TrackingDomainsCreateOutput {
|
|
14008
|
+
binding: {
|
|
14009
|
+
host: string;
|
|
14010
|
+
status: ("pending" | "active" | "failed");
|
|
14011
|
+
records: unknown[];
|
|
14012
|
+
domainId: string;
|
|
14013
|
+
bindingId: string;
|
|
14014
|
+
createdAt: string;
|
|
14015
|
+
productId: string;
|
|
14016
|
+
updatedAt: string;
|
|
14017
|
+
statusDetail: (string | null);
|
|
14018
|
+
ownerExtension: string;
|
|
14019
|
+
};
|
|
14020
|
+
instructions: string[];
|
|
14021
|
+
}
|
|
14022
|
+
interface TrackingDomainsDeleteInput {
|
|
14023
|
+
bindingId: string;
|
|
14024
|
+
}
|
|
14025
|
+
interface TrackingDomainsDeleteOutput {
|
|
14026
|
+
ok: true;
|
|
14027
|
+
}
|
|
14028
|
+
interface TrackingDomainsGetInput {
|
|
14029
|
+
bindingId: string;
|
|
14030
|
+
}
|
|
14031
|
+
interface TrackingDomainsGetOutput {
|
|
14032
|
+
host: string;
|
|
14033
|
+
status: ("pending" | "active" | "failed");
|
|
14034
|
+
records: unknown[];
|
|
14035
|
+
domainId: string;
|
|
14036
|
+
bindingId: string;
|
|
14037
|
+
createdAt: string;
|
|
14038
|
+
productId: string;
|
|
14039
|
+
updatedAt: string;
|
|
14040
|
+
statusDetail: (string | null);
|
|
14041
|
+
ownerExtension: string;
|
|
14042
|
+
}
|
|
14043
|
+
interface TrackingDomainsListInput {
|
|
14044
|
+
}
|
|
14045
|
+
interface TrackingDomainsListOutput {
|
|
14046
|
+
domains: {
|
|
14047
|
+
mode: ("external" | "managed");
|
|
14048
|
+
domain: string;
|
|
14049
|
+
domainId: string;
|
|
14050
|
+
createdAt: string;
|
|
14051
|
+
extensionCount: number;
|
|
14052
|
+
}[];
|
|
14053
|
+
bindings: {
|
|
14054
|
+
host: string;
|
|
14055
|
+
status: ("pending" | "active" | "failed");
|
|
14056
|
+
records: unknown[];
|
|
14057
|
+
domainId: string;
|
|
14058
|
+
bindingId: string;
|
|
14059
|
+
createdAt: string;
|
|
14060
|
+
productId: string;
|
|
14061
|
+
updatedAt: string;
|
|
14062
|
+
statusDetail: (string | null);
|
|
14063
|
+
ownerExtension: string;
|
|
14064
|
+
}[];
|
|
14065
|
+
}
|
|
14066
|
+
interface TrackingDomainsVerifyInput {
|
|
14067
|
+
bindingId: string;
|
|
14068
|
+
}
|
|
14069
|
+
interface TrackingDomainsVerifyOutput {
|
|
14070
|
+
host: string;
|
|
14071
|
+
status: ("pending" | "active" | "failed");
|
|
14072
|
+
records: unknown[];
|
|
14073
|
+
domainId: string;
|
|
14074
|
+
bindingId: string;
|
|
14075
|
+
createdAt: string;
|
|
14076
|
+
productId: string;
|
|
14077
|
+
updatedAt: string;
|
|
14078
|
+
statusDetail: (string | null);
|
|
14079
|
+
ownerExtension: string;
|
|
14080
|
+
}
|
|
14081
|
+
interface TrackingEventNamesArchiveInput {
|
|
14082
|
+
/**
|
|
14083
|
+
* The event name to archive/unarchive
|
|
14084
|
+
*/
|
|
14085
|
+
name: string;
|
|
14086
|
+
}
|
|
14087
|
+
interface TrackingEventNamesArchiveOutput {
|
|
14088
|
+
name: string;
|
|
14089
|
+
status: ("active" | "archived");
|
|
14090
|
+
}
|
|
14091
|
+
interface TrackingEventNamesListInput {
|
|
14092
|
+
/**
|
|
14093
|
+
* Sort column (default count)
|
|
14094
|
+
*/
|
|
14095
|
+
sort?: ("count" | "last_seen" | "first_seen" | "name");
|
|
14096
|
+
/**
|
|
14097
|
+
* Sort direction (default desc)
|
|
13289
14098
|
*/
|
|
13290
14099
|
order?: ("asc" | "desc");
|
|
13291
14100
|
/**
|
|
@@ -14322,14 +15131,10 @@ interface GeneratedClient {
|
|
|
14322
15131
|
list(input: BrainGdriveConnectionsListInput): Promise<BrainGdriveConnectionsListOutput>;
|
|
14323
15132
|
};
|
|
14324
15133
|
knowledge: {
|
|
14325
|
-
graph(input: BrainKnowledgeGraphInput): Promise<BrainKnowledgeGraphOutput>;
|
|
14326
15134
|
neighborhood(input: BrainKnowledgeNeighborhoodInput): Promise<BrainKnowledgeNeighborhoodOutput>;
|
|
14327
15135
|
relations(input: BrainKnowledgeRelationsInput): Promise<BrainKnowledgeRelationsOutput>;
|
|
14328
15136
|
search(input: BrainKnowledgeSearchInput): Promise<BrainKnowledgeSearchOutput>;
|
|
14329
15137
|
};
|
|
14330
|
-
'knowledge-entity': {
|
|
14331
|
-
memories(input: BrainKnowledgeEntityMemoriesInput): Promise<BrainKnowledgeEntityMemoriesOutput>;
|
|
14332
|
-
};
|
|
14333
15138
|
memory: {
|
|
14334
15139
|
add(input: BrainMemoryAddInput): Promise<BrainMemoryAddOutput>;
|
|
14335
15140
|
delete(input: BrainMemoryDeleteInput): Promise<BrainMemoryDeleteOutput>;
|
|
@@ -14744,6 +15549,80 @@ interface GeneratedClient {
|
|
|
14744
15549
|
update(input: OrganizationRolesUpdateInput): Promise<OrganizationRolesUpdateOutput>;
|
|
14745
15550
|
};
|
|
14746
15551
|
};
|
|
15552
|
+
playground: {
|
|
15553
|
+
analytics: {
|
|
15554
|
+
overview(input: PlaygroundAnalyticsOverviewInput): Promise<PlaygroundAnalyticsOverviewOutput>;
|
|
15555
|
+
};
|
|
15556
|
+
billing: {
|
|
15557
|
+
entitlements(input: PlaygroundBillingEntitlementsInput): Promise<PlaygroundBillingEntitlementsOutput>;
|
|
15558
|
+
'record-usage'(input: PlaygroundBillingRecordUsageInput): Promise<PlaygroundBillingRecordUsageOutput>;
|
|
15559
|
+
};
|
|
15560
|
+
clickup: {
|
|
15561
|
+
'create-task'(input: PlaygroundClickupCreateTaskInput): Promise<PlaygroundClickupCreateTaskOutput>;
|
|
15562
|
+
'get-last-webhook'(input: PlaygroundClickupGetLastWebhookInput): Promise<PlaygroundClickupGetLastWebhookOutput>;
|
|
15563
|
+
'get-overview'(input: PlaygroundClickupGetOverviewInput): Promise<PlaygroundClickupGetOverviewOutput>;
|
|
15564
|
+
};
|
|
15565
|
+
gdrive: {
|
|
15566
|
+
'get-last-change'(input: PlaygroundGdriveGetLastChangeInput): Promise<PlaygroundGdriveGetLastChangeOutput>;
|
|
15567
|
+
'read-file'(input: PlaygroundGdriveReadFileInput): Promise<PlaygroundGdriveReadFileOutput>;
|
|
15568
|
+
};
|
|
15569
|
+
googleads: {
|
|
15570
|
+
'read-customer'(input: PlaygroundGoogleadsReadCustomerInput): Promise<PlaygroundGoogleadsReadCustomerOutput>;
|
|
15571
|
+
};
|
|
15572
|
+
lifecycle: {
|
|
15573
|
+
'get-state'(input: PlaygroundLifecycleGetStateInput): Promise<PlaygroundLifecycleGetStateOutput>;
|
|
15574
|
+
'list-events'(input: PlaygroundLifecycleListEventsInput): Promise<PlaygroundLifecycleListEventsOutput>;
|
|
15575
|
+
};
|
|
15576
|
+
webhook: {
|
|
15577
|
+
'get-last'(input: PlaygroundWebhookGetLastInput): Promise<PlaygroundWebhookGetLastOutput>;
|
|
15578
|
+
};
|
|
15579
|
+
};
|
|
15580
|
+
realtime: {
|
|
15581
|
+
grant: {
|
|
15582
|
+
create(input: RealtimeGrantCreateInput): Promise<RealtimeGrantCreateOutput>;
|
|
15583
|
+
list(input: RealtimeGrantListInput): Promise<RealtimeGrantListOutput>;
|
|
15584
|
+
revoke(input: RealtimeGrantRevokeInput): Promise<RealtimeGrantRevokeOutput>;
|
|
15585
|
+
};
|
|
15586
|
+
history: {
|
|
15587
|
+
get(input: RealtimeHistoryGetInput): Promise<RealtimeHistoryGetOutput>;
|
|
15588
|
+
};
|
|
15589
|
+
messages: {
|
|
15590
|
+
publish(input: RealtimeMessagesPublishInput): Promise<RealtimeMessagesPublishOutput>;
|
|
15591
|
+
};
|
|
15592
|
+
namespace: {
|
|
15593
|
+
create(input: RealtimeNamespaceCreateInput): Promise<RealtimeNamespaceCreateOutput>;
|
|
15594
|
+
delete(input: RealtimeNamespaceDeleteInput): Promise<RealtimeNamespaceDeleteOutput>;
|
|
15595
|
+
get(input: RealtimeNamespaceGetInput): Promise<RealtimeNamespaceGetOutput>;
|
|
15596
|
+
list(input: RealtimeNamespaceListInput): Promise<RealtimeNamespaceListOutput>;
|
|
15597
|
+
update(input: RealtimeNamespaceUpdateInput): Promise<RealtimeNamespaceUpdateOutput>;
|
|
15598
|
+
};
|
|
15599
|
+
presence: {
|
|
15600
|
+
enter(input: RealtimePresenceEnterInput): Promise<RealtimePresenceEnterOutput>;
|
|
15601
|
+
get(input: RealtimePresenceGetInput): Promise<RealtimePresenceGetOutput>;
|
|
15602
|
+
leave(input: RealtimePresenceLeaveInput): Promise<RealtimePresenceLeaveOutput>;
|
|
15603
|
+
stats(input: RealtimePresenceStatsInput): Promise<RealtimePresenceStatsOutput>;
|
|
15604
|
+
update(input: RealtimePresenceUpdateInput): Promise<RealtimePresenceUpdateOutput>;
|
|
15605
|
+
};
|
|
15606
|
+
status: {
|
|
15607
|
+
get(input: RealtimeStatusGetInput): Promise<RealtimeStatusGetOutput>;
|
|
15608
|
+
};
|
|
15609
|
+
tokens: {
|
|
15610
|
+
create(input: RealtimeTokensCreateInput): Promise<RealtimeTokensCreateOutput>;
|
|
15611
|
+
};
|
|
15612
|
+
webhook: {
|
|
15613
|
+
create(input: RealtimeWebhookCreateInput): Promise<RealtimeWebhookCreateOutput>;
|
|
15614
|
+
delete(input: RealtimeWebhookDeleteInput): Promise<RealtimeWebhookDeleteOutput>;
|
|
15615
|
+
get(input: RealtimeWebhookGetInput): Promise<RealtimeWebhookGetOutput>;
|
|
15616
|
+
list(input: RealtimeWebhookListInput): Promise<RealtimeWebhookListOutput>;
|
|
15617
|
+
update(input: RealtimeWebhookUpdateInput): Promise<RealtimeWebhookUpdateOutput>;
|
|
15618
|
+
};
|
|
15619
|
+
'webhook-deliveries': {
|
|
15620
|
+
list(input: RealtimeWebhookDeliveriesListInput): Promise<RealtimeWebhookDeliveriesListOutput>;
|
|
15621
|
+
};
|
|
15622
|
+
'webhook-secret': {
|
|
15623
|
+
rotate(input: RealtimeWebhookSecretRotateInput): Promise<RealtimeWebhookSecretRotateOutput>;
|
|
15624
|
+
};
|
|
15625
|
+
};
|
|
14747
15626
|
tracking: {
|
|
14748
15627
|
'api-keys': {
|
|
14749
15628
|
create(input: TrackingApiKeysCreateInput): Promise<TrackingApiKeysCreateOutput>;
|
|
@@ -14844,4 +15723,4 @@ interface GeneratedClient {
|
|
|
14844
15723
|
};
|
|
14845
15724
|
}
|
|
14846
15725
|
|
|
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 };
|
|
15726
|
+
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, TrackingDomainsListOutput 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, RealtimeWebhookDeleteInput as iA, RealtimeWebhookDeleteOutput as iB, RealtimeWebhookDeliveriesListInput as iC, RealtimeWebhookDeliveriesListOutput as iD, RealtimeWebhookGetInput as iE, RealtimeWebhookGetOutput as iF, RealtimeWebhookListInput as iG, RealtimeWebhookListOutput as iH, RealtimeWebhookSecretRotateInput as iI, RealtimeWebhookSecretRotateOutput as iJ, RealtimeWebhookUpdateInput as iK, RealtimeWebhookUpdateOutput as iL, TrackingApiKeysCreateInput as iM, TrackingApiKeysCreateOutput as iN, TrackingApiKeysListInput as iO, TrackingApiKeysListOutput as iP, TrackingApiKeysRevokeInput as iQ, TrackingApiKeysRevokeOutput as iR, TrackingApiKeysRotateInput as iS, TrackingApiKeysRotateOutput as iT, TrackingDomainsCreateInput as iU, TrackingDomainsCreateOutput as iV, TrackingDomainsDeleteInput as iW, TrackingDomainsDeleteOutput as iX, TrackingDomainsGetInput as iY, TrackingDomainsGetOutput as iZ, TrackingDomainsListInput 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, RealtimePresenceEnterInput as ij, RealtimePresenceEnterOutput as ik, RealtimePresenceGetInput as il, RealtimePresenceGetOutput as im, RealtimePresenceLeaveInput as io, RealtimePresenceLeaveOutput as ip, RealtimePresenceStatsInput as iq, RealtimePresenceStatsOutput as ir, RealtimePresenceUpdateInput as is, RealtimePresenceUpdateOutput as it, RealtimeStatusGetInput as iu, RealtimeStatusGetOutput as iv, RealtimeTokensCreateInput as iw, RealtimeTokensCreateOutput as ix, RealtimeWebhookCreateInput as iy, RealtimeWebhookCreateOutput as iz, BrainClickupChannelsListOutput as j, WaitlistConfigGetOutput as j$, TrackingDomainsVerifyInput as j0, TrackingDomainsVerifyOutput as j1, TrackingEventNamesArchiveInput as j2, TrackingEventNamesArchiveOutput as j3, TrackingEventNamesListInput as j4, TrackingEventNamesListOutput as j5, TrackingEventNamesUnarchiveInput as j6, TrackingEventNamesUnarchiveOutput as j7, TrackingGoogleadsConnectionStatusInput as j8, TrackingGoogleadsConnectionStatusOutput as j9, TrackingInstallDomainsListInput as jA, TrackingInstallDomainsListOutput as jB, TrackingLinkDomainsCreateInput as jC, TrackingLinkDomainsCreateOutput as jD, TrackingLinkDomainsDeleteInput as jE, TrackingLinkDomainsDeleteOutput as jF, TrackingLinkDomainsListInput as jG, TrackingLinkDomainsListOutput as jH, TrackingLiveEventsListInput as jI, TrackingLiveEventsListOutput as jJ, TrackingProfilesDeleteInput as jK, TrackingProfilesDeleteOutput as jL, TrackingProfilesExportInput as jM, TrackingProfilesExportOutput as jN, TrackingProfilesGetInput as jO, TrackingProfilesGetOutput as jP, TrackingProfilesListInput as jQ, TrackingProfilesListOutput as jR, TrackingReportsAttributedJourneyInput as jS, TrackingReportsAttributedJourneyOutput as jT, TrackingReportsRevenueBySourceInput as jU, TrackingReportsRevenueBySourceOutput as jV, TrackingReportsSourcePeopleInput as jW, TrackingReportsSourcePeopleOutput as jX, TrackingSnippetsGetInput as jY, TrackingSnippetsGetOutput as jZ, WaitlistConfigGetInput as j_, TrackingGoogleadsConversionActionsInput as ja, TrackingGoogleadsConversionActionsOutput as jb, TrackingGoogleadsFeedbackConfigGetInput as jc, TrackingGoogleadsFeedbackConfigGetOutput as jd, TrackingGoogleadsFeedbackConfigSetInput as je, TrackingGoogleadsFeedbackConfigSetOutput as jf, TrackingGoogleadsFeedbackRunInput as jg, TrackingGoogleadsFeedbackRunOutput as jh, TrackingGoogleadsFeedbackStatusInput as ji, TrackingGoogleadsFeedbackStatusOutput as jj, TrackingGoogleadsFeedbackUploadsInput as jk, TrackingGoogleadsFeedbackUploadsOutput as jl, TrackingGoogleadsRoasReportInput as jm, TrackingGoogleadsRoasReportOutput as jn, TrackingGoogleadsSyncNowInput as jo, TrackingGoogleadsSyncNowOutput as jp, TrackingGoogleadsTrackingHealthInput as jq, TrackingGoogleadsTrackingHealthOutput as jr, TrackingGoogleadsUsVsPlatformInput as js, TrackingGoogleadsUsVsPlatformOutput as jt, TrackingIdentityHealthInput as ju, TrackingIdentityHealthOutput as jv, TrackingInstallDomainsCreateInput as jw, TrackingInstallDomainsCreateOutput as jx, TrackingInstallDomainsDeleteInput as jy, TrackingInstallDomainsDeleteOutput as jz, BrainClickupConnectionsListInput as k, WaitlistConfigUpsertInput as k0, WaitlistConfigUpsertOutput as k1, WaitlistEmbedGetInput as k2, WaitlistEmbedGetOutput as k3, WaitlistInvitesSendInput as k4, WaitlistInvitesSendOutput as k5, WaitlistSignupsEraseInput as k6, WaitlistSignupsEraseOutput as k7, WaitlistSignupsFunnelInput as k8, WaitlistSignupsFunnelOutput as k9, WaitlistSignupsListInput as ka, WaitlistSignupsListOutput as kb, 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 };
|