@lessly/sdk-app 6.2.0 → 7.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/brain/index.cjs +10 -0
- package/dist/brain/index.cjs.map +1 -1
- package/dist/brain/index.d.cts +10 -2
- package/dist/brain/index.d.ts +10 -2
- package/dist/brain/index.js +9 -1
- package/dist/brain/index.js.map +1 -1
- package/dist/{client.gen-Q9n-n5S8.d.cts → client.gen-oPZGjxpS.d.cts} +249 -2801
- package/dist/{client.gen-Q9n-n5S8.d.ts → client.gen-oPZGjxpS.d.ts} +249 -2801
- package/dist/consent/index.d.cts +1 -1
- package/dist/consent/index.d.ts +1 -1
- package/dist/index.cjs +151 -1879
- 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 +151 -1879
- 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/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 +2 -17
- package/src/gen/bindings.gen.ts +151 -1879
- package/src/gen/brain/index.ts +1 -1
- package/src/gen/brain/queryOptions.gen.ts +14 -0
- package/src/gen/client.gen.ts +8 -450
- package/src/gen/manifest.gen.ts +1 -1
- package/src/gen/types.gen.ts +249 -2841
- package/dist/analytics/index.cjs +0 -11
- package/dist/analytics/index.cjs.map +0 -1
- package/dist/analytics/index.d.cts +0 -8
- package/dist/analytics/index.d.ts +0 -8
- package/dist/analytics/index.js +0 -9
- package/dist/analytics/index.js.map +0 -1
- package/dist/deployment/index.cjs +0 -531
- package/dist/deployment/index.cjs.map +0 -1
- package/dist/deployment/index.d.cts +0 -424
- package/dist/deployment/index.d.ts +0 -424
- package/dist/deployment/index.js +0 -425
- package/dist/deployment/index.js.map +0 -1
- package/dist/playground/index.cjs +0 -66
- package/dist/playground/index.cjs.map +0 -1
- package/dist/playground/index.d.cts +0 -52
- package/dist/playground/index.d.ts +0 -52
- package/dist/playground/index.js +0 -53
- package/dist/playground/index.js.map +0 -1
- package/src/gen/analytics/index.ts +0 -3
- package/src/gen/analytics/queryOptions.gen.ts +0 -11
- package/src/gen/deployment/index.ts +0 -3
- package/src/gen/deployment/queryOptions.gen.ts +0 -681
- package/src/gen/playground/index.ts +0 -3
- package/src/gen/playground/queryOptions.gen.ts +0 -86
|
@@ -1,18 +1,3 @@
|
|
|
1
|
-
interface AnalyticsQueryRunInput {
|
|
2
|
-
/**
|
|
3
|
-
* Natural-language analytics question
|
|
4
|
-
*/
|
|
5
|
-
q: string;
|
|
6
|
-
}
|
|
7
|
-
interface AnalyticsQueryRunOutput {
|
|
8
|
-
sql: string;
|
|
9
|
-
rows: {
|
|
10
|
-
[k: string]: unknown;
|
|
11
|
-
}[];
|
|
12
|
-
answer: string;
|
|
13
|
-
truncated: boolean;
|
|
14
|
-
explanation: string;
|
|
15
|
-
}
|
|
16
1
|
interface BrainBackupCreateInput {
|
|
17
2
|
}
|
|
18
3
|
interface BrainBackupCreateOutput {
|
|
@@ -46,15 +31,9 @@ interface BrainBackupStatusInput {
|
|
|
46
31
|
type BrainBackupStatusOutput = ({
|
|
47
32
|
id: string;
|
|
48
33
|
error: (string | null);
|
|
49
|
-
|
|
50
|
-
* 'running' | 'completed' | 'failed'
|
|
51
|
-
*/
|
|
52
|
-
status: string;
|
|
34
|
+
status: ("running" | "completed" | "failed");
|
|
53
35
|
gcsPath: string;
|
|
54
|
-
|
|
55
|
-
* 'scheduled' | 'manual' | 'pre-restore'
|
|
56
|
-
*/
|
|
57
|
-
trigger: string;
|
|
36
|
+
trigger: ("scheduled" | "manual" | "pre-restore");
|
|
58
37
|
createdAt: string;
|
|
59
38
|
edgeCount: (number | null);
|
|
60
39
|
nodeCount: (number | null);
|
|
@@ -70,15 +49,9 @@ interface BrainBackupsListInput {
|
|
|
70
49
|
type BrainBackupsListOutput = {
|
|
71
50
|
id: string;
|
|
72
51
|
error: (string | null);
|
|
73
|
-
|
|
74
|
-
* 'running' | 'completed' | 'failed'
|
|
75
|
-
*/
|
|
76
|
-
status: string;
|
|
52
|
+
status: ("running" | "completed" | "failed");
|
|
77
53
|
gcsPath: string;
|
|
78
|
-
|
|
79
|
-
* 'scheduled' | 'manual' | 'pre-restore'
|
|
80
|
-
*/
|
|
81
|
-
trigger: string;
|
|
54
|
+
trigger: ("scheduled" | "manual" | "pre-restore");
|
|
82
55
|
createdAt: string;
|
|
83
56
|
edgeCount: (number | null);
|
|
84
57
|
nodeCount: (number | null);
|
|
@@ -483,6 +456,103 @@ type BrainGdriveConnectionsListOutput = {
|
|
|
483
456
|
mimeType: string;
|
|
484
457
|
}[];
|
|
485
458
|
}[];
|
|
459
|
+
interface BrainKnowledgeEntityMemoriesInput {
|
|
460
|
+
/**
|
|
461
|
+
* Max memories (default 50)
|
|
462
|
+
*/
|
|
463
|
+
limit?: number;
|
|
464
|
+
/**
|
|
465
|
+
* Read scope; 'both' (default) unions shared + your private
|
|
466
|
+
*/
|
|
467
|
+
scope?: ("shared" | "private" | "both");
|
|
468
|
+
/**
|
|
469
|
+
* Pagination offset
|
|
470
|
+
*/
|
|
471
|
+
offset?: number;
|
|
472
|
+
/**
|
|
473
|
+
* Entity id, name, or alias to fetch backing memories for
|
|
474
|
+
*/
|
|
475
|
+
entity_ref: string;
|
|
476
|
+
}
|
|
477
|
+
interface BrainKnowledgeEntityMemoriesOutput {
|
|
478
|
+
total: number;
|
|
479
|
+
entity: ({
|
|
480
|
+
score?: number;
|
|
481
|
+
aliases: string[];
|
|
482
|
+
entity_id: string;
|
|
483
|
+
description: (string | null);
|
|
484
|
+
entity_type: string;
|
|
485
|
+
display_name: string;
|
|
486
|
+
canonical_name: string;
|
|
487
|
+
evidence_count: number;
|
|
488
|
+
} | null);
|
|
489
|
+
memories: {
|
|
490
|
+
/**
|
|
491
|
+
* Consumer-facing label derived from the layer; 'unknown' for an unrecognised layer
|
|
492
|
+
*/
|
|
493
|
+
kind: ("schema" | "intention" | "identity" | "basic" | "fact" | "summary" | "knowledge" | "raw" | "unknown");
|
|
494
|
+
tags: string[];
|
|
495
|
+
/**
|
|
496
|
+
* Engine memory layer (l0_basic_info…l7_intention)
|
|
497
|
+
*/
|
|
498
|
+
layer: ("l6_schema" | "l7_intention" | "l4_identity" | "l0_basic_info" | "l2_fact" | "l3_summary" | "l5_knowledge" | "l1_raw");
|
|
499
|
+
custom: {
|
|
500
|
+
[k: string]: unknown;
|
|
501
|
+
};
|
|
502
|
+
status: string;
|
|
503
|
+
content: string;
|
|
504
|
+
user_id: string;
|
|
505
|
+
agent_id: string;
|
|
506
|
+
memory_at: (number | null);
|
|
507
|
+
memory_id: string;
|
|
508
|
+
speculate: (string | null);
|
|
509
|
+
session_id: string;
|
|
510
|
+
gmt_created: number;
|
|
511
|
+
/**
|
|
512
|
+
* Source authority (highest→lowest): policy > official > team > informal
|
|
513
|
+
*/
|
|
514
|
+
source_authority: ("policy" | "official" | "team" | "informal");
|
|
515
|
+
source_raw_memory_id: (string | null);
|
|
516
|
+
}[];
|
|
517
|
+
elapsed_ms: number;
|
|
518
|
+
request_id: string;
|
|
519
|
+
}
|
|
520
|
+
interface BrainKnowledgeGraphInput {
|
|
521
|
+
/**
|
|
522
|
+
* 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
|
|
523
|
+
*/
|
|
524
|
+
limit?: number;
|
|
525
|
+
/**
|
|
526
|
+
* Read scope; 'both' (default) unions shared + your private
|
|
527
|
+
*/
|
|
528
|
+
scope?: ("shared" | "private" | "both");
|
|
529
|
+
}
|
|
530
|
+
interface BrainKnowledgeGraphOutput {
|
|
531
|
+
edges: {
|
|
532
|
+
reason: (string | null);
|
|
533
|
+
source: string;
|
|
534
|
+
target: string;
|
|
535
|
+
symmetric: boolean;
|
|
536
|
+
relation_type: string;
|
|
537
|
+
}[];
|
|
538
|
+
nodes: {
|
|
539
|
+
id: string;
|
|
540
|
+
degree: number;
|
|
541
|
+
aliases: string[];
|
|
542
|
+
description: (string | null);
|
|
543
|
+
entity_type: string;
|
|
544
|
+
display_name: string;
|
|
545
|
+
canonical_name: string;
|
|
546
|
+
evidence_count: number;
|
|
547
|
+
}[];
|
|
548
|
+
totals: {
|
|
549
|
+
edgeCount: number;
|
|
550
|
+
nodeCount: number;
|
|
551
|
+
};
|
|
552
|
+
truncated: boolean;
|
|
553
|
+
elapsed_ms: number;
|
|
554
|
+
request_id: string;
|
|
555
|
+
}
|
|
486
556
|
interface BrainKnowledgeNeighborhoodInput {
|
|
487
557
|
/**
|
|
488
558
|
* Hops to expand (engine clamps to 3)
|
|
@@ -840,10 +910,7 @@ interface BrainRestoreStatusInput {
|
|
|
840
910
|
}
|
|
841
911
|
type BrainRestoreStatusOutput = ({
|
|
842
912
|
error: (string | null);
|
|
843
|
-
|
|
844
|
-
* 'pending' | 'wiped' | 'importing' | 'completed' | 'failed'
|
|
845
|
-
*/
|
|
846
|
-
status: string;
|
|
913
|
+
status: ("pending" | "wiped" | "importing" | "completed" | "failed");
|
|
847
914
|
edgeCount: (number | null);
|
|
848
915
|
nodeCount: (number | null);
|
|
849
916
|
productId: string;
|
|
@@ -1042,2386 +1109,162 @@ interface ConsentProvidersCreateOutput {
|
|
|
1042
1109
|
isSystem?: boolean;
|
|
1043
1110
|
createdAt: string;
|
|
1044
1111
|
updatedAt: string;
|
|
1045
|
-
catalogKey?: (string | null);
|
|
1046
|
-
orderIndex: number;
|
|
1047
|
-
privacyUrl: (string | null);
|
|
1048
|
-
description: string;
|
|
1049
|
-
}
|
|
1050
|
-
interface ConsentProvidersDeleteInput {
|
|
1051
|
-
/**
|
|
1052
|
-
* Provider id
|
|
1053
|
-
*/
|
|
1054
|
-
id: string;
|
|
1055
|
-
}
|
|
1056
|
-
interface ConsentProvidersDeleteOutput {
|
|
1057
|
-
id: string;
|
|
1058
|
-
deleted: true;
|
|
1059
|
-
}
|
|
1060
|
-
interface ConsentProvidersListInput {
|
|
1061
|
-
}
|
|
1062
|
-
type ConsentProvidersListOutput = {
|
|
1063
|
-
id: string;
|
|
1064
|
-
name: string;
|
|
1065
|
-
hosts: string[];
|
|
1066
|
-
cookies: {
|
|
1067
|
-
id: string;
|
|
1068
|
-
name: string;
|
|
1069
|
-
type: ("http_cookie" | "local_storage" | "session_storage");
|
|
1070
|
-
purpose: string;
|
|
1071
|
-
storageDuration: string;
|
|
1072
|
-
}[];
|
|
1073
|
-
category: ("necessary" | "preferences" | "statistics" | "marketing");
|
|
1074
|
-
isSystem?: boolean;
|
|
1075
|
-
createdAt: string;
|
|
1076
|
-
updatedAt: string;
|
|
1077
|
-
catalogKey?: (string | null);
|
|
1078
|
-
orderIndex: number;
|
|
1079
|
-
privacyUrl: (string | null);
|
|
1080
|
-
description: string;
|
|
1081
|
-
}[];
|
|
1082
|
-
interface ConsentProvidersUpdateInput {
|
|
1083
|
-
/**
|
|
1084
|
-
* Provider id
|
|
1085
|
-
*/
|
|
1086
|
-
id: string;
|
|
1087
|
-
name?: string;
|
|
1088
|
-
/**
|
|
1089
|
-
* If provided, REPLACES the hosts list. Omit to leave unchanged.
|
|
1090
|
-
*
|
|
1091
|
-
* @maxItems 50
|
|
1092
|
-
*/
|
|
1093
|
-
hosts?: string[];
|
|
1094
|
-
/**
|
|
1095
|
-
* If provided, REPLACES the whole cookies set for this provider. Omit to leave unchanged.
|
|
1096
|
-
*
|
|
1097
|
-
* @maxItems 200
|
|
1098
|
-
*/
|
|
1099
|
-
cookies?: {
|
|
1100
|
-
/**
|
|
1101
|
-
* Cookie/storage key name, e.g. "_ga"
|
|
1102
|
-
*/
|
|
1103
|
-
name: string;
|
|
1104
|
-
/**
|
|
1105
|
-
* Storage mechanism — matches CHECK constraint on consent_cookies.type
|
|
1106
|
-
*/
|
|
1107
|
-
type: ("http_cookie" | "local_storage" | "session_storage");
|
|
1108
|
-
/**
|
|
1109
|
-
* Human-readable description of why the cookie is set
|
|
1110
|
-
*/
|
|
1111
|
-
purpose?: string;
|
|
1112
|
-
/**
|
|
1113
|
-
* Duration like "2 years", "session", "30 days"
|
|
1114
|
-
*/
|
|
1115
|
-
storageDuration?: string;
|
|
1116
|
-
}[];
|
|
1117
|
-
/**
|
|
1118
|
-
* Consent category bucket — matches CHECK constraint on consent_providers.category
|
|
1119
|
-
*/
|
|
1120
|
-
category?: ("necessary" | "preferences" | "statistics" | "marketing");
|
|
1121
|
-
orderIndex?: number;
|
|
1122
|
-
/**
|
|
1123
|
-
* null clears the field, undefined leaves it unchanged
|
|
1124
|
-
*/
|
|
1125
|
-
privacyUrl?: (string | null);
|
|
1126
|
-
/**
|
|
1127
|
-
* Pass empty string to clear; undefined leaves unchanged
|
|
1128
|
-
*/
|
|
1129
|
-
description?: string;
|
|
1130
|
-
}
|
|
1131
|
-
interface ConsentProvidersUpdateOutput {
|
|
1132
|
-
id: string;
|
|
1133
|
-
name: string;
|
|
1134
|
-
hosts: string[];
|
|
1135
|
-
cookies: {
|
|
1136
|
-
id: string;
|
|
1137
|
-
name: string;
|
|
1138
|
-
type: ("http_cookie" | "local_storage" | "session_storage");
|
|
1139
|
-
purpose: string;
|
|
1140
|
-
storageDuration: string;
|
|
1141
|
-
}[];
|
|
1142
|
-
category: ("necessary" | "preferences" | "statistics" | "marketing");
|
|
1143
|
-
isSystem?: boolean;
|
|
1144
|
-
createdAt: string;
|
|
1145
|
-
updatedAt: string;
|
|
1146
|
-
catalogKey?: (string | null);
|
|
1147
|
-
orderIndex: number;
|
|
1148
|
-
privacyUrl: (string | null);
|
|
1149
|
-
description: string;
|
|
1150
|
-
}
|
|
1151
|
-
interface ConsentRecordsExportInput {
|
|
1152
|
-
/**
|
|
1153
|
-
* Inclusive upper bound for created_at, ISO-8601. Example: "2026-01-01T00:00:00Z". Omit for "up to now".
|
|
1154
|
-
*/
|
|
1155
|
-
to?: string;
|
|
1156
|
-
/**
|
|
1157
|
-
* Inclusive lower bound for created_at (server clock), ISO-8601. Example: "2025-01-01T00:00:00Z". Omit for "from the beginning".
|
|
1158
|
-
*/
|
|
1159
|
-
from?: string;
|
|
1160
|
-
/**
|
|
1161
|
-
* Maximum rows to return inline. Default 1000, hard cap 10000. If more rows match, the response sets truncated=true and includes download_url for the full dataset via HTTP.
|
|
1162
|
-
*/
|
|
1163
|
-
limit?: number;
|
|
1164
|
-
/**
|
|
1165
|
-
* DSAR (Art. 15) lookup: a visitor-presented record_id (the UUID from their consent cookie). When set, the export is filtered to that visitor's full decision chain (transitive closure over replaces_id), scoped to the current product. Omit for a product-wide admin export.
|
|
1166
|
-
*/
|
|
1167
|
-
record_id?: string;
|
|
1168
|
-
}
|
|
1169
|
-
interface ConsentRecordsExportOutput {
|
|
1170
|
-
csv: string;
|
|
1171
|
-
filters: {
|
|
1172
|
-
to: (string | null);
|
|
1173
|
-
from: (string | null);
|
|
1174
|
-
limit: number;
|
|
1175
|
-
};
|
|
1176
|
-
truncated: boolean;
|
|
1177
|
-
total_count: number;
|
|
1178
|
-
download_url?: string;
|
|
1179
|
-
returned_count: number;
|
|
1180
|
-
}
|
|
1181
|
-
interface ConsentStatsGetInput {
|
|
1182
|
-
/**
|
|
1183
|
-
* Time window for aggregation in days, e.g. "30d". Omit to use the server default (30d). Maximum: 365d.
|
|
1184
|
-
*/
|
|
1185
|
-
range?: string;
|
|
1186
|
-
}
|
|
1187
|
-
interface ConsentStatsGetOutput {
|
|
1188
|
-
range: {
|
|
1189
|
-
to: string;
|
|
1190
|
-
from: string;
|
|
1191
|
-
};
|
|
1192
|
-
total: number;
|
|
1193
|
-
custom_pct: number;
|
|
1194
|
-
by_category: {
|
|
1195
|
-
marketing_pct: number;
|
|
1196
|
-
statistics_pct: number;
|
|
1197
|
-
preferences_pct: number;
|
|
1198
|
-
};
|
|
1199
|
-
deny_all_pct: number;
|
|
1200
|
-
accept_all_pct: number;
|
|
1201
|
-
}
|
|
1202
|
-
interface DeploymentAlertCreateInput {
|
|
1203
|
-
metric: ("cpu" | "memory" | "net_in" | "net_out" | "disk");
|
|
1204
|
-
enabled?: boolean;
|
|
1205
|
-
targetId: string;
|
|
1206
|
-
threshold: number;
|
|
1207
|
-
comparator: ("gt" | "lt");
|
|
1208
|
-
targetKind: ("service" | "managed-service");
|
|
1209
|
-
}
|
|
1210
|
-
interface DeploymentAlertCreateOutput {
|
|
1211
|
-
id: string;
|
|
1212
|
-
state: ("ok" | "firing");
|
|
1213
|
-
metric: ("cpu" | "memory" | "net_in" | "net_out" | "disk");
|
|
1214
|
-
enabled: boolean;
|
|
1215
|
-
targetId: string;
|
|
1216
|
-
createdAt: string;
|
|
1217
|
-
productId: string;
|
|
1218
|
-
threshold: number;
|
|
1219
|
-
updatedAt: string;
|
|
1220
|
-
comparator: ("gt" | "lt");
|
|
1221
|
-
targetKind: ("service" | "managed-service");
|
|
1222
|
-
environmentId: string;
|
|
1223
|
-
lastEvaluatedAt: (string | null);
|
|
1224
|
-
lastStateChangeAt: (string | null);
|
|
1225
|
-
}
|
|
1226
|
-
interface DeploymentAlertDeleteInput {
|
|
1227
|
-
id: string;
|
|
1228
|
-
}
|
|
1229
|
-
interface DeploymentAlertDeleteOutput {
|
|
1230
|
-
deleted: boolean;
|
|
1231
|
-
}
|
|
1232
|
-
interface DeploymentAlertEventsListInput {
|
|
1233
|
-
limit?: number;
|
|
1234
|
-
environmentId: string;
|
|
1235
|
-
}
|
|
1236
|
-
type DeploymentAlertEventsListOutput = {
|
|
1237
|
-
id: string;
|
|
1238
|
-
type: ("firing" | "resolved");
|
|
1239
|
-
value: number;
|
|
1240
|
-
metric: ("cpu" | "memory" | "net_in" | "net_out" | "disk");
|
|
1241
|
-
ruleId: string;
|
|
1242
|
-
targetId: string;
|
|
1243
|
-
createdAt: string;
|
|
1244
|
-
productId: string;
|
|
1245
|
-
threshold: number;
|
|
1246
|
-
targetKind: ("service" | "managed-service");
|
|
1247
|
-
}[];
|
|
1248
|
-
interface DeploymentAlertListInput {
|
|
1249
|
-
environmentId: string;
|
|
1250
|
-
}
|
|
1251
|
-
type DeploymentAlertListOutput = {
|
|
1252
|
-
id: string;
|
|
1253
|
-
state: ("ok" | "firing");
|
|
1254
|
-
metric: ("cpu" | "memory" | "net_in" | "net_out" | "disk");
|
|
1255
|
-
enabled: boolean;
|
|
1256
|
-
targetId: string;
|
|
1257
|
-
createdAt: string;
|
|
1258
|
-
productId: string;
|
|
1259
|
-
threshold: number;
|
|
1260
|
-
updatedAt: string;
|
|
1261
|
-
comparator: ("gt" | "lt");
|
|
1262
|
-
targetKind: ("service" | "managed-service");
|
|
1263
|
-
environmentId: string;
|
|
1264
|
-
lastEvaluatedAt: (string | null);
|
|
1265
|
-
lastStateChangeAt: (string | null);
|
|
1266
|
-
}[];
|
|
1267
|
-
interface DeploymentAlertUpdateInput {
|
|
1268
|
-
id: string;
|
|
1269
|
-
enabled?: boolean;
|
|
1270
|
-
threshold?: number;
|
|
1271
|
-
comparator?: ("gt" | "lt");
|
|
1272
|
-
}
|
|
1273
|
-
interface DeploymentAlertUpdateOutput {
|
|
1274
|
-
id: string;
|
|
1275
|
-
state: ("ok" | "firing");
|
|
1276
|
-
metric: ("cpu" | "memory" | "net_in" | "net_out" | "disk");
|
|
1277
|
-
enabled: boolean;
|
|
1278
|
-
targetId: string;
|
|
1279
|
-
createdAt: string;
|
|
1280
|
-
productId: string;
|
|
1281
|
-
threshold: number;
|
|
1282
|
-
updatedAt: string;
|
|
1283
|
-
comparator: ("gt" | "lt");
|
|
1284
|
-
targetKind: ("service" | "managed-service");
|
|
1285
|
-
environmentId: string;
|
|
1286
|
-
lastEvaluatedAt: (string | null);
|
|
1287
|
-
lastStateChangeAt: (string | null);
|
|
1288
|
-
}
|
|
1289
|
-
interface DeploymentAnalyticsQueryInput {
|
|
1290
|
-
q: string;
|
|
1291
|
-
}
|
|
1292
|
-
interface DeploymentAnalyticsQueryOutput {
|
|
1293
|
-
sql: string;
|
|
1294
|
-
rows: {
|
|
1295
|
-
[k: string]: unknown;
|
|
1296
|
-
}[];
|
|
1297
|
-
answer: string;
|
|
1298
|
-
truncated: boolean;
|
|
1299
|
-
explanation: string;
|
|
1300
|
-
}
|
|
1301
|
-
interface DeploymentAuditListInput {
|
|
1302
|
-
limit?: number;
|
|
1303
|
-
action?: string;
|
|
1304
|
-
actorId?: string;
|
|
1305
|
-
serviceId?: string;
|
|
1306
|
-
entityType?: ("variable" | "domain" | "service" | "environment" | "deployment" | "managed_service" | "volume" | "cloud-sql-instance" | "cloud-sql-database" | "cloud-sql-attachment" | "ssh_key" | "ssh_session");
|
|
1307
|
-
environmentId: string;
|
|
1308
|
-
}
|
|
1309
|
-
type DeploymentAuditListOutput = {
|
|
1310
|
-
id: string;
|
|
1311
|
-
action: string;
|
|
1312
|
-
actorId: string;
|
|
1313
|
-
entityId: (string | null);
|
|
1314
|
-
metadata: {
|
|
1315
|
-
[k: string]: unknown;
|
|
1316
|
-
};
|
|
1317
|
-
createdAt: string;
|
|
1318
|
-
productId: string;
|
|
1319
|
-
serviceId: (string | null);
|
|
1320
|
-
actorEmail: string;
|
|
1321
|
-
entityType: ("variable" | "domain" | "service" | "environment" | "deployment" | "managed_service" | "volume" | "cloud-sql-instance" | "cloud-sql-database" | "cloud-sql-attachment" | "ssh_key" | "ssh_session");
|
|
1322
|
-
environmentId: (string | null);
|
|
1323
|
-
}[];
|
|
1324
|
-
interface DeploymentBuildGetInput {
|
|
1325
|
-
id: string;
|
|
1326
|
-
}
|
|
1327
|
-
interface DeploymentBuildGetOutput {
|
|
1328
|
-
id: string;
|
|
1329
|
-
status: ("Initializing" | "Building" | "Deploying" | "Active" | "Replaced" | "Crashed" | "Completed" | "Failed" | "Removed");
|
|
1330
|
-
builtAt: (string | null);
|
|
1331
|
-
imageRef: (string | null);
|
|
1332
|
-
commitSha: (string | null);
|
|
1333
|
-
createdAt: string;
|
|
1334
|
-
serviceId: string;
|
|
1335
|
-
startedAt: (string | null);
|
|
1336
|
-
finishedAt: (string | null);
|
|
1337
|
-
cloudBuildId: (string | null);
|
|
1338
|
-
lastErrorMessage: (string | null);
|
|
1339
|
-
}
|
|
1340
|
-
interface DeploymentBuildListInput {
|
|
1341
|
-
serviceId: string;
|
|
1342
|
-
}
|
|
1343
|
-
type DeploymentBuildListOutput = {
|
|
1344
|
-
id: string;
|
|
1345
|
-
status: ("Initializing" | "Building" | "Deploying" | "Active" | "Replaced" | "Crashed" | "Completed" | "Failed" | "Removed");
|
|
1346
|
-
builtAt: (string | null);
|
|
1347
|
-
imageRef: (string | null);
|
|
1348
|
-
commitSha: (string | null);
|
|
1349
|
-
createdAt: string;
|
|
1350
|
-
serviceId: string;
|
|
1351
|
-
startedAt: (string | null);
|
|
1352
|
-
finishedAt: (string | null);
|
|
1353
|
-
cloudBuildId: (string | null);
|
|
1354
|
-
lastErrorMessage: (string | null);
|
|
1355
|
-
}[];
|
|
1356
|
-
interface DeploymentBuildLogsInput {
|
|
1357
|
-
tail?: number;
|
|
1358
|
-
since?: string;
|
|
1359
|
-
serviceId: string;
|
|
1360
|
-
deploymentId: string;
|
|
1361
|
-
}
|
|
1362
|
-
interface DeploymentBuildLogsOutput {
|
|
1363
|
-
lines: {
|
|
1364
|
-
ts: string;
|
|
1365
|
-
text: string;
|
|
1366
|
-
}[];
|
|
1367
|
-
cursor: (string | null);
|
|
1368
|
-
complete: boolean;
|
|
1369
|
-
}
|
|
1370
|
-
interface DeploymentCanvasGetInput {
|
|
1371
|
-
environmentId: string;
|
|
1372
|
-
}
|
|
1373
|
-
interface DeploymentCanvasGetOutput {
|
|
1374
|
-
edges: {
|
|
1375
|
-
id: string;
|
|
1376
|
-
kind: ("cloud-sql" | "reference" | "host");
|
|
1377
|
-
label: string;
|
|
1378
|
-
toKind: ("service" | "managed-service" | "cloud-sql");
|
|
1379
|
-
fromKind: "service";
|
|
1380
|
-
toNodeId: string;
|
|
1381
|
-
fromNodeId: string;
|
|
1382
|
-
}[];
|
|
1383
|
-
nodes: {
|
|
1384
|
-
x: number;
|
|
1385
|
-
y: number;
|
|
1386
|
-
id: string;
|
|
1387
|
-
width: (number | null);
|
|
1388
|
-
height: (number | null);
|
|
1389
|
-
nodeId: string;
|
|
1390
|
-
nodeKind: ("service" | "volume" | "managed-service" | "cloud-sql");
|
|
1391
|
-
createdAt: string;
|
|
1392
|
-
updatedAt: string;
|
|
1393
|
-
}[];
|
|
1394
|
-
services: {
|
|
1395
|
-
id: string;
|
|
1396
|
-
name: string;
|
|
1397
|
-
slug: string;
|
|
1398
|
-
probes: {
|
|
1399
|
-
liveness?: DeploymentCanvasGetOutputReadiness;
|
|
1400
|
-
readiness?: DeploymentCanvasGetOutputReadiness;
|
|
1401
|
-
};
|
|
1402
|
-
source: ({
|
|
1403
|
-
url?: string;
|
|
1404
|
-
path?: string;
|
|
1405
|
-
type: "git";
|
|
1406
|
-
branch: string;
|
|
1407
|
-
connectorId?: string;
|
|
1408
|
-
repoFullName?: string;
|
|
1409
|
-
} | {
|
|
1410
|
-
tag: string;
|
|
1411
|
-
type: "image";
|
|
1412
|
-
registry: string;
|
|
1413
|
-
} | {
|
|
1414
|
-
spa?: boolean;
|
|
1415
|
-
repo?: {
|
|
1416
|
-
url?: string;
|
|
1417
|
-
path?: string;
|
|
1418
|
-
branch: string;
|
|
1419
|
-
connectorId?: string;
|
|
1420
|
-
repoFullName?: string;
|
|
1421
|
-
};
|
|
1422
|
-
type: "static";
|
|
1423
|
-
build?: {
|
|
1424
|
-
command?: string;
|
|
1425
|
-
outputDir?: string;
|
|
1426
|
-
};
|
|
1427
|
-
});
|
|
1428
|
-
replicas: number;
|
|
1429
|
-
createdAt: string;
|
|
1430
|
-
dependsOn: string[];
|
|
1431
|
-
resources?: {
|
|
1432
|
-
limits?: {
|
|
1433
|
-
cpu?: string;
|
|
1434
|
-
memory?: string;
|
|
1435
|
-
};
|
|
1436
|
-
};
|
|
1437
|
-
updatedAt: string;
|
|
1438
|
-
containerPort: number;
|
|
1439
|
-
environmentId: string;
|
|
1440
|
-
lastReplicasRunning: number;
|
|
1441
|
-
}[];
|
|
1442
|
-
environmentId: string;
|
|
1443
|
-
}
|
|
1444
|
-
interface DeploymentCanvasGetOutputReadiness {
|
|
1445
|
-
path: string;
|
|
1446
|
-
port?: number;
|
|
1447
|
-
periodSeconds?: number;
|
|
1448
|
-
timeoutSeconds?: number;
|
|
1449
|
-
failureThreshold?: number;
|
|
1450
|
-
successThreshold?: number;
|
|
1451
|
-
initialDelaySeconds?: number;
|
|
1452
|
-
}
|
|
1453
|
-
interface DeploymentCanvasMoveNodeInput {
|
|
1454
|
-
x?: number;
|
|
1455
|
-
y?: number;
|
|
1456
|
-
width?: number;
|
|
1457
|
-
height?: number;
|
|
1458
|
-
nodeId: string;
|
|
1459
|
-
environmentId: string;
|
|
1460
|
-
}
|
|
1461
|
-
interface DeploymentCanvasMoveNodeOutput {
|
|
1462
|
-
x: number;
|
|
1463
|
-
y: number;
|
|
1464
|
-
id: string;
|
|
1465
|
-
width: (number | null);
|
|
1466
|
-
height: (number | null);
|
|
1467
|
-
nodeId: string;
|
|
1468
|
-
nodeKind: ("service" | "volume" | "managed-service" | "cloud-sql");
|
|
1469
|
-
createdAt: string;
|
|
1470
|
-
updatedAt: string;
|
|
1471
|
-
}
|
|
1472
|
-
interface DeploymentCloudSqlBackfillLogFlagsInput {
|
|
1473
|
-
instanceId?: string;
|
|
1474
|
-
}
|
|
1475
|
-
interface DeploymentCloudSqlBackfillLogFlagsOutput {
|
|
1476
|
-
failed: {
|
|
1477
|
-
id: string;
|
|
1478
|
-
name: string;
|
|
1479
|
-
error: string;
|
|
1480
|
-
}[];
|
|
1481
|
-
patched: number;
|
|
1482
|
-
scanned: number;
|
|
1483
|
-
skippedNoDrift: number;
|
|
1484
|
-
restartRequired: {
|
|
1485
|
-
id: string;
|
|
1486
|
-
name: string;
|
|
1487
|
-
flags: string[];
|
|
1488
|
-
}[];
|
|
1489
|
-
skippedNotReady: number;
|
|
1490
|
-
skippedRestartRequired: number;
|
|
1491
|
-
}
|
|
1492
|
-
interface DeploymentCloudSqlDatabaseAttachInput {
|
|
1493
|
-
serviceId: string;
|
|
1494
|
-
databaseId: string;
|
|
1495
|
-
environmentId: string;
|
|
1496
|
-
}
|
|
1497
|
-
interface DeploymentCloudSqlDatabaseAttachOutput {
|
|
1498
|
-
id: string;
|
|
1499
|
-
status: string;
|
|
1500
|
-
serviceId: string;
|
|
1501
|
-
databaseId: string;
|
|
1502
|
-
environmentId: string;
|
|
1503
|
-
}
|
|
1504
|
-
interface DeploymentCloudSqlDatabaseCreateInput {
|
|
1505
|
-
label?: string;
|
|
1506
|
-
instanceId: string;
|
|
1507
|
-
}
|
|
1508
|
-
interface DeploymentCloudSqlDatabaseCreateOutput {
|
|
1509
|
-
id: string;
|
|
1510
|
-
dbName: string;
|
|
1511
|
-
status: string;
|
|
1512
|
-
roleName: string;
|
|
1513
|
-
createdAt: string;
|
|
1514
|
-
productId: string;
|
|
1515
|
-
updatedAt: string;
|
|
1516
|
-
instanceId: string;
|
|
1517
|
-
lastErrorMessage: (string | null);
|
|
1518
|
-
}
|
|
1519
|
-
interface DeploymentCloudSqlDatabaseDeleteInput {
|
|
1520
|
-
databaseId: string;
|
|
1521
|
-
}
|
|
1522
|
-
interface DeploymentCloudSqlDatabaseDeleteOutput {
|
|
1523
|
-
[k: string]: unknown;
|
|
1524
|
-
}
|
|
1525
|
-
interface DeploymentCloudSqlDatabaseDetachInput {
|
|
1526
|
-
attachmentId: string;
|
|
1527
|
-
}
|
|
1528
|
-
interface DeploymentCloudSqlDatabaseDetachOutput {
|
|
1529
|
-
[k: string]: unknown;
|
|
1530
|
-
}
|
|
1531
|
-
interface DeploymentCloudSqlDatabaseGetInput {
|
|
1532
|
-
databaseId: string;
|
|
1533
|
-
}
|
|
1534
|
-
interface DeploymentCloudSqlDatabaseGetOutput {
|
|
1535
|
-
id: string;
|
|
1536
|
-
dbName: string;
|
|
1537
|
-
status: string;
|
|
1538
|
-
roleName: string;
|
|
1539
|
-
createdAt: string;
|
|
1540
|
-
productId: string;
|
|
1541
|
-
updatedAt: string;
|
|
1542
|
-
instanceId: string;
|
|
1543
|
-
lastErrorMessage: (string | null);
|
|
1544
|
-
}
|
|
1545
|
-
interface DeploymentCloudSqlDatabaseListInput {
|
|
1546
|
-
instanceId: string;
|
|
1547
|
-
}
|
|
1548
|
-
type DeploymentCloudSqlDatabaseListOutput = {
|
|
1549
|
-
id: string;
|
|
1550
|
-
dbName: string;
|
|
1551
|
-
status: string;
|
|
1552
|
-
roleName: string;
|
|
1553
|
-
createdAt: string;
|
|
1554
|
-
productId: string;
|
|
1555
|
-
updatedAt: string;
|
|
1556
|
-
instanceId: string;
|
|
1557
|
-
lastErrorMessage: (string | null);
|
|
1558
|
-
}[];
|
|
1559
|
-
interface DeploymentCloudSqlInstanceBackupInput {
|
|
1560
|
-
instanceId: string;
|
|
1561
|
-
}
|
|
1562
|
-
interface DeploymentCloudSqlInstanceBackupOutput {
|
|
1563
|
-
id: string;
|
|
1564
|
-
name: string;
|
|
1565
|
-
tier: string;
|
|
1566
|
-
label: string;
|
|
1567
|
-
region: string;
|
|
1568
|
-
status: string;
|
|
1569
|
-
createdAt: string;
|
|
1570
|
-
pgVersion: string;
|
|
1571
|
-
privateIp: (string | null);
|
|
1572
|
-
productId: string;
|
|
1573
|
-
updatedAt: string;
|
|
1574
|
-
pitrEnabled: boolean;
|
|
1575
|
-
backupsEnabled: boolean;
|
|
1576
|
-
connectionName: (string | null);
|
|
1577
|
-
lastErrorMessage: (string | null);
|
|
1578
|
-
}
|
|
1579
|
-
interface DeploymentCloudSqlInstanceBackupListInput {
|
|
1580
|
-
instanceId: string;
|
|
1581
|
-
}
|
|
1582
|
-
type DeploymentCloudSqlInstanceBackupListOutput = {
|
|
1583
|
-
id: string;
|
|
1584
|
-
type: string;
|
|
1585
|
-
error: (string | null);
|
|
1586
|
-
status: string;
|
|
1587
|
-
endTime: (string | null);
|
|
1588
|
-
startTime: (string | null);
|
|
1589
|
-
description: (string | null);
|
|
1590
|
-
}[];
|
|
1591
|
-
interface DeploymentCloudSqlInstanceCreateInput {
|
|
1592
|
-
tier?: ("db-custom-1-3840" | "db-custom-2-7680" | "db-custom-4-15360");
|
|
1593
|
-
label: string;
|
|
1594
|
-
pgVersion?: ("16" | "17" | "18");
|
|
1595
|
-
}
|
|
1596
|
-
interface DeploymentCloudSqlInstanceCreateOutput {
|
|
1597
|
-
id: string;
|
|
1598
|
-
name: string;
|
|
1599
|
-
tier: string;
|
|
1600
|
-
label: string;
|
|
1601
|
-
region: string;
|
|
1602
|
-
status: string;
|
|
1603
|
-
createdAt: string;
|
|
1604
|
-
pgVersion: string;
|
|
1605
|
-
privateIp: (string | null);
|
|
1606
|
-
productId: string;
|
|
1607
|
-
updatedAt: string;
|
|
1608
|
-
pitrEnabled: boolean;
|
|
1609
|
-
backupsEnabled: boolean;
|
|
1610
|
-
connectionName: (string | null);
|
|
1611
|
-
lastErrorMessage: (string | null);
|
|
1612
|
-
}
|
|
1613
|
-
interface DeploymentCloudSqlInstanceDeleteInput {
|
|
1614
|
-
instanceId: string;
|
|
1615
|
-
}
|
|
1616
|
-
interface DeploymentCloudSqlInstanceDeleteOutput {
|
|
1617
|
-
[k: string]: unknown;
|
|
1618
|
-
}
|
|
1619
|
-
interface DeploymentCloudSqlInstanceGetInput {
|
|
1620
|
-
instanceId: string;
|
|
1621
|
-
}
|
|
1622
|
-
interface DeploymentCloudSqlInstanceGetOutput {
|
|
1623
|
-
id: string;
|
|
1624
|
-
name: string;
|
|
1625
|
-
tier: string;
|
|
1626
|
-
label: string;
|
|
1627
|
-
region: string;
|
|
1628
|
-
status: string;
|
|
1629
|
-
createdAt: string;
|
|
1630
|
-
pgVersion: string;
|
|
1631
|
-
privateIp: (string | null);
|
|
1632
|
-
productId: string;
|
|
1633
|
-
updatedAt: string;
|
|
1634
|
-
pitrEnabled: boolean;
|
|
1635
|
-
backupsEnabled: boolean;
|
|
1636
|
-
connectionName: (string | null);
|
|
1637
|
-
lastErrorMessage: (string | null);
|
|
1638
|
-
}
|
|
1639
|
-
interface DeploymentCloudSqlInstanceListInput {
|
|
1640
|
-
}
|
|
1641
|
-
type DeploymentCloudSqlInstanceListOutput = {
|
|
1642
|
-
id: string;
|
|
1643
|
-
name: string;
|
|
1644
|
-
tier: string;
|
|
1645
|
-
label: string;
|
|
1646
|
-
region: string;
|
|
1647
|
-
status: string;
|
|
1648
|
-
createdAt: string;
|
|
1649
|
-
pgVersion: string;
|
|
1650
|
-
privateIp: (string | null);
|
|
1651
|
-
productId: string;
|
|
1652
|
-
updatedAt: string;
|
|
1653
|
-
pitrEnabled: boolean;
|
|
1654
|
-
backupsEnabled: boolean;
|
|
1655
|
-
connectionName: (string | null);
|
|
1656
|
-
lastErrorMessage: (string | null);
|
|
1657
|
-
}[];
|
|
1658
|
-
interface DeploymentCloudSqlInstanceResizeInput {
|
|
1659
|
-
tier: ("db-custom-1-3840" | "db-custom-2-7680" | "db-custom-4-15360");
|
|
1660
|
-
instanceId: string;
|
|
1661
|
-
}
|
|
1662
|
-
interface DeploymentCloudSqlInstanceResizeOutput {
|
|
1663
|
-
id: string;
|
|
1664
|
-
name: string;
|
|
1665
|
-
tier: string;
|
|
1666
|
-
label: string;
|
|
1667
|
-
region: string;
|
|
1668
|
-
status: string;
|
|
1669
|
-
createdAt: string;
|
|
1670
|
-
pgVersion: string;
|
|
1671
|
-
privateIp: (string | null);
|
|
1672
|
-
productId: string;
|
|
1673
|
-
updatedAt: string;
|
|
1674
|
-
pitrEnabled: boolean;
|
|
1675
|
-
backupsEnabled: boolean;
|
|
1676
|
-
connectionName: (string | null);
|
|
1677
|
-
lastErrorMessage: (string | null);
|
|
1678
|
-
}
|
|
1679
|
-
interface DeploymentCloudSqlInstanceRestoreInput {
|
|
1680
|
-
instanceId: string;
|
|
1681
|
-
backupRunId: string;
|
|
1682
|
-
}
|
|
1683
|
-
interface DeploymentCloudSqlInstanceRestoreOutput {
|
|
1684
|
-
id: string;
|
|
1685
|
-
name: string;
|
|
1686
|
-
tier: string;
|
|
1687
|
-
label: string;
|
|
1688
|
-
region: string;
|
|
1689
|
-
status: string;
|
|
1690
|
-
createdAt: string;
|
|
1691
|
-
pgVersion: string;
|
|
1692
|
-
privateIp: (string | null);
|
|
1693
|
-
productId: string;
|
|
1694
|
-
updatedAt: string;
|
|
1695
|
-
pitrEnabled: boolean;
|
|
1696
|
-
backupsEnabled: boolean;
|
|
1697
|
-
connectionName: (string | null);
|
|
1698
|
-
lastErrorMessage: (string | null);
|
|
1699
|
-
}
|
|
1700
|
-
interface DeploymentCloudSqlLogsInput {
|
|
1701
|
-
tail?: number;
|
|
1702
|
-
instanceId: string;
|
|
1703
|
-
}
|
|
1704
|
-
interface DeploymentCloudSqlLogsOutput {
|
|
1705
|
-
lines: string[];
|
|
1706
|
-
}
|
|
1707
|
-
interface DeploymentDeploymentCancelInput {
|
|
1708
|
-
serviceId: string;
|
|
1709
|
-
deploymentId: string;
|
|
1710
|
-
}
|
|
1711
|
-
interface DeploymentDeploymentCancelOutput {
|
|
1712
|
-
id: string;
|
|
1713
|
-
status: ("Initializing" | "Building" | "Deploying" | "Active" | "Replaced" | "Crashed" | "Completed" | "Failed" | "Removed");
|
|
1714
|
-
builtAt: (string | null);
|
|
1715
|
-
imageRef: (string | null);
|
|
1716
|
-
commitSha: (string | null);
|
|
1717
|
-
createdAt: string;
|
|
1718
|
-
serviceId: string;
|
|
1719
|
-
startedAt: (string | null);
|
|
1720
|
-
updatedAt: string;
|
|
1721
|
-
deployedAt: (string | null);
|
|
1722
|
-
finishedAt: (string | null);
|
|
1723
|
-
cloudBuildId: (string | null);
|
|
1724
|
-
configSnapshot: {
|
|
1725
|
-
source?: unknown;
|
|
1726
|
-
variables: {
|
|
1727
|
-
key: string;
|
|
1728
|
-
value: string;
|
|
1729
|
-
}[];
|
|
1730
|
-
};
|
|
1731
|
-
lastErrorMessage: (string | null);
|
|
1732
|
-
rolledBackFromDeploymentId: (string | null);
|
|
1733
|
-
}
|
|
1734
|
-
interface DeploymentDeploymentGetInput {
|
|
1735
|
-
id: string;
|
|
1736
|
-
}
|
|
1737
|
-
interface DeploymentDeploymentGetOutput {
|
|
1738
|
-
id: string;
|
|
1739
|
-
status: ("Initializing" | "Building" | "Deploying" | "Active" | "Replaced" | "Crashed" | "Completed" | "Failed" | "Removed");
|
|
1740
|
-
builtAt: (string | null);
|
|
1741
|
-
imageRef: (string | null);
|
|
1742
|
-
commitSha: (string | null);
|
|
1743
|
-
createdAt: string;
|
|
1744
|
-
serviceId: string;
|
|
1745
|
-
startedAt: (string | null);
|
|
1746
|
-
updatedAt: string;
|
|
1747
|
-
deployedAt: (string | null);
|
|
1748
|
-
finishedAt: (string | null);
|
|
1749
|
-
cloudBuildId: (string | null);
|
|
1750
|
-
configSnapshot: {
|
|
1751
|
-
source?: unknown;
|
|
1752
|
-
variables: {
|
|
1753
|
-
key: string;
|
|
1754
|
-
value: string;
|
|
1755
|
-
}[];
|
|
1756
|
-
};
|
|
1757
|
-
lastErrorMessage: (string | null);
|
|
1758
|
-
rolledBackFromDeploymentId: (string | null);
|
|
1759
|
-
}
|
|
1760
|
-
interface DeploymentDeploymentListInput {
|
|
1761
|
-
serviceId: string;
|
|
1762
|
-
}
|
|
1763
|
-
type DeploymentDeploymentListOutput = {
|
|
1764
|
-
id: string;
|
|
1765
|
-
status: ("Initializing" | "Building" | "Deploying" | "Active" | "Replaced" | "Crashed" | "Completed" | "Failed" | "Removed");
|
|
1766
|
-
builtAt: (string | null);
|
|
1767
|
-
imageRef: (string | null);
|
|
1768
|
-
commitSha: (string | null);
|
|
1769
|
-
createdAt: string;
|
|
1770
|
-
serviceId: string;
|
|
1771
|
-
startedAt: (string | null);
|
|
1772
|
-
updatedAt: string;
|
|
1773
|
-
deployedAt: (string | null);
|
|
1774
|
-
finishedAt: (string | null);
|
|
1775
|
-
cloudBuildId: (string | null);
|
|
1776
|
-
configSnapshot: {
|
|
1777
|
-
source?: unknown;
|
|
1778
|
-
variables: {
|
|
1779
|
-
key: string;
|
|
1780
|
-
value: string;
|
|
1781
|
-
}[];
|
|
1782
|
-
};
|
|
1783
|
-
lastErrorMessage: (string | null);
|
|
1784
|
-
rolledBackFromDeploymentId: (string | null);
|
|
1785
|
-
}[];
|
|
1786
|
-
interface DeploymentDomainAddInput {
|
|
1787
|
-
hostname: string;
|
|
1788
|
-
pathPrefix?: string;
|
|
1789
|
-
redirectWww?: boolean;
|
|
1790
|
-
environmentId: string;
|
|
1791
|
-
defaultServiceId: string;
|
|
1792
|
-
}
|
|
1793
|
-
interface DeploymentDomainAddOutput {
|
|
1794
|
-
id: string;
|
|
1795
|
-
kind: ("auto" | "custom");
|
|
1796
|
-
routes: {
|
|
1797
|
-
id: string;
|
|
1798
|
-
domainId: string;
|
|
1799
|
-
priority: number;
|
|
1800
|
-
createdAt: string;
|
|
1801
|
-
isDefault: boolean;
|
|
1802
|
-
serviceId: string;
|
|
1803
|
-
updatedAt: string;
|
|
1804
|
-
pathPrefix: string;
|
|
1805
|
-
}[];
|
|
1806
|
-
hostname: string;
|
|
1807
|
-
createdAt: string;
|
|
1808
|
-
tlsStatus: ("none" | "pending" | "issuing" | "active" | "failed");
|
|
1809
|
-
updatedAt: string;
|
|
1810
|
-
lastProbeAt: (string | null);
|
|
1811
|
-
redirectWww: boolean;
|
|
1812
|
-
environmentId: string;
|
|
1813
|
-
routingStatus: ("provisioning" | "propagating" | "active" | "failed");
|
|
1814
|
-
lastProbeError: (string | null);
|
|
1815
|
-
dnsInstructions: ({
|
|
1816
|
-
txt: {
|
|
1817
|
-
name: string;
|
|
1818
|
-
value: string;
|
|
1819
|
-
};
|
|
1820
|
-
routing: DeploymentDomainAddOutputItems[];
|
|
1821
|
-
acmeChallenge?: DeploymentDomainAddOutputItems;
|
|
1822
|
-
} | null);
|
|
1823
|
-
routingRecordType: ("A" | "CNAME");
|
|
1824
|
-
verificationToken: (string | null);
|
|
1825
|
-
verificationStatus: ("pending_dns" | "verified" | "dns_failed");
|
|
1826
|
-
lastVerificationError: (({
|
|
1827
|
-
code: (string | null);
|
|
1828
|
-
reason: "transient";
|
|
1829
|
-
checkedAt: string;
|
|
1830
|
-
} | {
|
|
1831
|
-
txt?: {
|
|
1832
|
-
got: string[];
|
|
1833
|
-
want: string;
|
|
1834
|
-
};
|
|
1835
|
-
host?: {
|
|
1836
|
-
got: string[];
|
|
1837
|
-
want: string[];
|
|
1838
|
-
};
|
|
1839
|
-
reason: "mismatch";
|
|
1840
|
-
checkedAt: string;
|
|
1841
|
-
}) | null);
|
|
1842
|
-
lastVerificationCheckAt: (string | null);
|
|
1843
|
-
tlsCertificateExpiresAt: (string | null);
|
|
1844
|
-
}
|
|
1845
|
-
interface DeploymentDomainAddOutputItems {
|
|
1846
|
-
name: string;
|
|
1847
|
-
value: string;
|
|
1848
|
-
recordType: ("A" | "CNAME" | "ALIAS");
|
|
1849
|
-
}
|
|
1850
|
-
interface DeploymentDomainAllowedListInput {
|
|
1851
|
-
}
|
|
1852
|
-
interface DeploymentDomainAllowedListOutput {
|
|
1853
|
-
domains: {
|
|
1854
|
-
mode: ("external" | "managed");
|
|
1855
|
-
domain: string;
|
|
1856
|
-
domainId: string;
|
|
1857
|
-
}[];
|
|
1858
|
-
}
|
|
1859
|
-
interface DeploymentDomainGetInput {
|
|
1860
|
-
id: string;
|
|
1861
|
-
}
|
|
1862
|
-
interface DeploymentDomainGetOutput {
|
|
1863
|
-
id: string;
|
|
1864
|
-
kind: ("auto" | "custom");
|
|
1865
|
-
hostname: string;
|
|
1866
|
-
createdAt: string;
|
|
1867
|
-
tlsStatus: ("none" | "pending" | "issuing" | "active" | "failed");
|
|
1868
|
-
updatedAt: string;
|
|
1869
|
-
lastProbeAt: (string | null);
|
|
1870
|
-
redirectWww: boolean;
|
|
1871
|
-
environmentId: string;
|
|
1872
|
-
routingStatus: ("provisioning" | "propagating" | "active" | "failed");
|
|
1873
|
-
lastProbeError: (string | null);
|
|
1874
|
-
dnsInstructions: ({
|
|
1875
|
-
txt: {
|
|
1876
|
-
name: string;
|
|
1877
|
-
value: string;
|
|
1878
|
-
};
|
|
1879
|
-
routing: DeploymentDomainGetOutputItems[];
|
|
1880
|
-
acmeChallenge?: DeploymentDomainGetOutputItems;
|
|
1881
|
-
} | null);
|
|
1882
|
-
routingRecordType: ("A" | "CNAME");
|
|
1883
|
-
verificationToken: (string | null);
|
|
1884
|
-
verificationStatus: ("pending_dns" | "verified" | "dns_failed");
|
|
1885
|
-
lastVerificationError: (({
|
|
1886
|
-
code: (string | null);
|
|
1887
|
-
reason: "transient";
|
|
1888
|
-
checkedAt: string;
|
|
1889
|
-
} | {
|
|
1890
|
-
txt?: {
|
|
1891
|
-
got: string[];
|
|
1892
|
-
want: string;
|
|
1893
|
-
};
|
|
1894
|
-
host?: {
|
|
1895
|
-
got: string[];
|
|
1896
|
-
want: string[];
|
|
1897
|
-
};
|
|
1898
|
-
reason: "mismatch";
|
|
1899
|
-
checkedAt: string;
|
|
1900
|
-
}) | null);
|
|
1901
|
-
lastVerificationCheckAt: (string | null);
|
|
1902
|
-
tlsCertificateExpiresAt: (string | null);
|
|
1903
|
-
}
|
|
1904
|
-
interface DeploymentDomainGetOutputItems {
|
|
1905
|
-
name: string;
|
|
1906
|
-
value: string;
|
|
1907
|
-
recordType: ("A" | "CNAME" | "ALIAS");
|
|
1908
|
-
}
|
|
1909
|
-
interface DeploymentDomainListInput {
|
|
1910
|
-
environmentId: string;
|
|
1911
|
-
}
|
|
1912
|
-
type DeploymentDomainListOutput = {
|
|
1913
|
-
id: string;
|
|
1914
|
-
kind: ("auto" | "custom");
|
|
1915
|
-
hostname: string;
|
|
1916
|
-
createdAt: string;
|
|
1917
|
-
tlsStatus: ("none" | "pending" | "issuing" | "active" | "failed");
|
|
1918
|
-
updatedAt: string;
|
|
1919
|
-
lastProbeAt: (string | null);
|
|
1920
|
-
redirectWww: boolean;
|
|
1921
|
-
environmentId: string;
|
|
1922
|
-
routingStatus: ("provisioning" | "propagating" | "active" | "failed");
|
|
1923
|
-
lastProbeError: (string | null);
|
|
1924
|
-
dnsInstructions: ({
|
|
1925
|
-
txt: {
|
|
1926
|
-
name: string;
|
|
1927
|
-
value: string;
|
|
1928
|
-
};
|
|
1929
|
-
routing: DeploymentDomainListOutputItems[];
|
|
1930
|
-
acmeChallenge?: DeploymentDomainListOutputItems;
|
|
1931
|
-
} | null);
|
|
1932
|
-
routingRecordType: ("A" | "CNAME");
|
|
1933
|
-
verificationToken: (string | null);
|
|
1934
|
-
verificationStatus: ("pending_dns" | "verified" | "dns_failed");
|
|
1935
|
-
lastVerificationError: (({
|
|
1936
|
-
code: (string | null);
|
|
1937
|
-
reason: "transient";
|
|
1938
|
-
checkedAt: string;
|
|
1939
|
-
} | {
|
|
1940
|
-
txt?: {
|
|
1941
|
-
got: string[];
|
|
1942
|
-
want: string;
|
|
1943
|
-
};
|
|
1944
|
-
host?: {
|
|
1945
|
-
got: string[];
|
|
1946
|
-
want: string[];
|
|
1947
|
-
};
|
|
1948
|
-
reason: "mismatch";
|
|
1949
|
-
checkedAt: string;
|
|
1950
|
-
}) | null);
|
|
1951
|
-
lastVerificationCheckAt: (string | null);
|
|
1952
|
-
tlsCertificateExpiresAt: (string | null);
|
|
1953
|
-
}[];
|
|
1954
|
-
interface DeploymentDomainListOutputItems {
|
|
1955
|
-
name: string;
|
|
1956
|
-
value: string;
|
|
1957
|
-
recordType: ("A" | "CNAME" | "ALIAS");
|
|
1958
|
-
}
|
|
1959
|
-
interface DeploymentDomainListByServiceInput {
|
|
1960
|
-
serviceId: string;
|
|
1961
|
-
}
|
|
1962
|
-
type DeploymentDomainListByServiceOutput = {
|
|
1963
|
-
id: string;
|
|
1964
|
-
kind: ("auto" | "custom");
|
|
1965
|
-
hostname: string;
|
|
1966
|
-
createdAt: string;
|
|
1967
|
-
tlsStatus: ("none" | "pending" | "issuing" | "active" | "failed");
|
|
1968
|
-
updatedAt: string;
|
|
1969
|
-
lastProbeAt: (string | null);
|
|
1970
|
-
redirectWww: boolean;
|
|
1971
|
-
environmentId: string;
|
|
1972
|
-
routingStatus: ("provisioning" | "propagating" | "active" | "failed");
|
|
1973
|
-
lastProbeError: (string | null);
|
|
1974
|
-
dnsInstructions: ({
|
|
1975
|
-
txt: {
|
|
1976
|
-
name: string;
|
|
1977
|
-
value: string;
|
|
1978
|
-
};
|
|
1979
|
-
routing: DeploymentDomainListByServiceOutputItems[];
|
|
1980
|
-
acmeChallenge?: DeploymentDomainListByServiceOutputItems;
|
|
1981
|
-
} | null);
|
|
1982
|
-
routingRecordType: ("A" | "CNAME");
|
|
1983
|
-
verificationToken: (string | null);
|
|
1984
|
-
verificationStatus: ("pending_dns" | "verified" | "dns_failed");
|
|
1985
|
-
lastVerificationError: (({
|
|
1986
|
-
code: (string | null);
|
|
1987
|
-
reason: "transient";
|
|
1988
|
-
checkedAt: string;
|
|
1989
|
-
} | {
|
|
1990
|
-
txt?: {
|
|
1991
|
-
got: string[];
|
|
1992
|
-
want: string;
|
|
1993
|
-
};
|
|
1994
|
-
host?: {
|
|
1995
|
-
got: string[];
|
|
1996
|
-
want: string[];
|
|
1997
|
-
};
|
|
1998
|
-
reason: "mismatch";
|
|
1999
|
-
checkedAt: string;
|
|
2000
|
-
}) | null);
|
|
2001
|
-
lastVerificationCheckAt: (string | null);
|
|
2002
|
-
tlsCertificateExpiresAt: (string | null);
|
|
2003
|
-
}[];
|
|
2004
|
-
interface DeploymentDomainListByServiceOutputItems {
|
|
2005
|
-
name: string;
|
|
2006
|
-
value: string;
|
|
2007
|
-
recordType: ("A" | "CNAME" | "ALIAS");
|
|
2008
|
-
}
|
|
2009
|
-
interface DeploymentDomainRedirectWwwInput {
|
|
2010
|
-
id: string;
|
|
2011
|
-
enabled: boolean;
|
|
2012
|
-
}
|
|
2013
|
-
interface DeploymentDomainRedirectWwwOutput {
|
|
2014
|
-
id: string;
|
|
2015
|
-
kind: ("auto" | "custom");
|
|
2016
|
-
hostname: string;
|
|
2017
|
-
createdAt: string;
|
|
2018
|
-
tlsStatus: ("none" | "pending" | "issuing" | "active" | "failed");
|
|
2019
|
-
updatedAt: string;
|
|
2020
|
-
lastProbeAt: (string | null);
|
|
2021
|
-
redirectWww: boolean;
|
|
2022
|
-
environmentId: string;
|
|
2023
|
-
routingStatus: ("provisioning" | "propagating" | "active" | "failed");
|
|
2024
|
-
lastProbeError: (string | null);
|
|
2025
|
-
dnsInstructions: ({
|
|
2026
|
-
txt: {
|
|
2027
|
-
name: string;
|
|
2028
|
-
value: string;
|
|
2029
|
-
};
|
|
2030
|
-
routing: DeploymentDomainRedirectWwwOutputItems[];
|
|
2031
|
-
acmeChallenge?: DeploymentDomainRedirectWwwOutputItems;
|
|
2032
|
-
} | null);
|
|
2033
|
-
routingRecordType: ("A" | "CNAME");
|
|
2034
|
-
verificationToken: (string | null);
|
|
2035
|
-
verificationStatus: ("pending_dns" | "verified" | "dns_failed");
|
|
2036
|
-
lastVerificationError: (({
|
|
2037
|
-
code: (string | null);
|
|
2038
|
-
reason: "transient";
|
|
2039
|
-
checkedAt: string;
|
|
2040
|
-
} | {
|
|
2041
|
-
txt?: {
|
|
2042
|
-
got: string[];
|
|
2043
|
-
want: string;
|
|
2044
|
-
};
|
|
2045
|
-
host?: {
|
|
2046
|
-
got: string[];
|
|
2047
|
-
want: string[];
|
|
2048
|
-
};
|
|
2049
|
-
reason: "mismatch";
|
|
2050
|
-
checkedAt: string;
|
|
2051
|
-
}) | null);
|
|
2052
|
-
lastVerificationCheckAt: (string | null);
|
|
2053
|
-
tlsCertificateExpiresAt: (string | null);
|
|
2054
|
-
}
|
|
2055
|
-
interface DeploymentDomainRedirectWwwOutputItems {
|
|
2056
|
-
name: string;
|
|
2057
|
-
value: string;
|
|
2058
|
-
recordType: ("A" | "CNAME" | "ALIAS");
|
|
2059
|
-
}
|
|
2060
|
-
interface DeploymentDomainRemoveInput {
|
|
2061
|
-
id: string;
|
|
2062
|
-
}
|
|
2063
|
-
interface DeploymentDomainRemoveOutput {
|
|
2064
|
-
[k: string]: unknown;
|
|
2065
|
-
}
|
|
2066
|
-
interface DeploymentDomainRoutesAddInput {
|
|
2067
|
-
domainId: string;
|
|
2068
|
-
priority?: number;
|
|
2069
|
-
isDefault?: boolean;
|
|
2070
|
-
serviceId: string;
|
|
2071
|
-
pathPrefix: string;
|
|
2072
|
-
}
|
|
2073
|
-
interface DeploymentDomainRoutesAddOutput {
|
|
2074
|
-
id: string;
|
|
2075
|
-
domainId: string;
|
|
2076
|
-
priority: number;
|
|
2077
|
-
createdAt: string;
|
|
2078
|
-
isDefault: boolean;
|
|
2079
|
-
serviceId: string;
|
|
2080
|
-
updatedAt: string;
|
|
2081
|
-
pathPrefix: string;
|
|
2082
|
-
}
|
|
2083
|
-
interface DeploymentDomainRoutesListInput {
|
|
2084
|
-
domainId: string;
|
|
2085
|
-
}
|
|
2086
|
-
type DeploymentDomainRoutesListOutput = {
|
|
2087
|
-
id: string;
|
|
2088
|
-
domainId: string;
|
|
2089
|
-
priority: number;
|
|
2090
|
-
createdAt: string;
|
|
2091
|
-
isDefault: boolean;
|
|
2092
|
-
serviceId: string;
|
|
2093
|
-
updatedAt: string;
|
|
2094
|
-
pathPrefix: string;
|
|
2095
|
-
}[];
|
|
2096
|
-
interface DeploymentDomainRoutesRemoveInput {
|
|
2097
|
-
routeId: string;
|
|
2098
|
-
domainId: string;
|
|
2099
|
-
}
|
|
2100
|
-
interface DeploymentDomainRoutesRemoveOutput {
|
|
2101
|
-
[k: string]: unknown;
|
|
2102
|
-
}
|
|
2103
|
-
interface DeploymentDomainRoutesUpdateInput {
|
|
2104
|
-
routeId: string;
|
|
2105
|
-
domainId: string;
|
|
2106
|
-
priority?: number;
|
|
2107
|
-
serviceId?: string;
|
|
2108
|
-
pathPrefix?: string;
|
|
2109
|
-
}
|
|
2110
|
-
interface DeploymentDomainRoutesUpdateOutput {
|
|
2111
|
-
id: string;
|
|
2112
|
-
domainId: string;
|
|
2113
|
-
priority: number;
|
|
2114
|
-
createdAt: string;
|
|
2115
|
-
isDefault: boolean;
|
|
2116
|
-
serviceId: string;
|
|
2117
|
-
updatedAt: string;
|
|
2118
|
-
pathPrefix: string;
|
|
2119
|
-
}
|
|
2120
|
-
interface DeploymentDomainVerifyInput {
|
|
2121
|
-
id: string;
|
|
2122
|
-
}
|
|
2123
|
-
interface DeploymentDomainVerifyOutput {
|
|
2124
|
-
id: string;
|
|
2125
|
-
kind: ("auto" | "custom");
|
|
2126
|
-
hostname: string;
|
|
2127
|
-
createdAt: string;
|
|
2128
|
-
tlsStatus: ("none" | "pending" | "issuing" | "active" | "failed");
|
|
2129
|
-
updatedAt: string;
|
|
2130
|
-
lastProbeAt: (string | null);
|
|
2131
|
-
redirectWww: boolean;
|
|
2132
|
-
environmentId: string;
|
|
2133
|
-
routingStatus: ("provisioning" | "propagating" | "active" | "failed");
|
|
2134
|
-
lastProbeError: (string | null);
|
|
2135
|
-
dnsInstructions: ({
|
|
2136
|
-
txt: {
|
|
2137
|
-
name: string;
|
|
2138
|
-
value: string;
|
|
2139
|
-
};
|
|
2140
|
-
routing: DeploymentDomainVerifyOutputItems[];
|
|
2141
|
-
acmeChallenge?: DeploymentDomainVerifyOutputItems;
|
|
2142
|
-
} | null);
|
|
2143
|
-
routingRecordType: ("A" | "CNAME");
|
|
2144
|
-
verificationToken: (string | null);
|
|
2145
|
-
verificationStatus: ("pending_dns" | "verified" | "dns_failed");
|
|
2146
|
-
lastVerificationError: (({
|
|
2147
|
-
code: (string | null);
|
|
2148
|
-
reason: "transient";
|
|
2149
|
-
checkedAt: string;
|
|
2150
|
-
} | {
|
|
2151
|
-
txt?: {
|
|
2152
|
-
got: string[];
|
|
2153
|
-
want: string;
|
|
2154
|
-
};
|
|
2155
|
-
host?: {
|
|
2156
|
-
got: string[];
|
|
2157
|
-
want: string[];
|
|
2158
|
-
};
|
|
2159
|
-
reason: "mismatch";
|
|
2160
|
-
checkedAt: string;
|
|
2161
|
-
}) | null);
|
|
2162
|
-
lastVerificationCheckAt: (string | null);
|
|
2163
|
-
tlsCertificateExpiresAt: (string | null);
|
|
2164
|
-
}
|
|
2165
|
-
interface DeploymentDomainVerifyOutputItems {
|
|
2166
|
-
name: string;
|
|
2167
|
-
value: string;
|
|
2168
|
-
recordType: ("A" | "CNAME" | "ALIAS");
|
|
2169
|
-
}
|
|
2170
|
-
interface DeploymentEnvironmentCreateInput {
|
|
2171
|
-
name: string;
|
|
2172
|
-
slug?: string;
|
|
2173
|
-
}
|
|
2174
|
-
interface DeploymentEnvironmentCreateOutput {
|
|
2175
|
-
id: string;
|
|
2176
|
-
name: string;
|
|
2177
|
-
slug: string;
|
|
2178
|
-
type: ("persistent" | "pr-preview");
|
|
2179
|
-
status: ("provisioning" | "ready" | "provisioning_failed" | "deprovisioning" | "deprovisioning_failed");
|
|
2180
|
-
prBranch: (string | null);
|
|
2181
|
-
prNumber: (number | null);
|
|
2182
|
-
createdAt: string;
|
|
2183
|
-
expiresAt: (string | null);
|
|
2184
|
-
updatedAt: string;
|
|
2185
|
-
isProduction: boolean;
|
|
2186
|
-
lastErrorMessage: (string | null);
|
|
2187
|
-
baseEnvironmentId: (string | null);
|
|
2188
|
-
}
|
|
2189
|
-
interface DeploymentEnvironmentDeleteInput {
|
|
2190
|
-
id: string;
|
|
2191
|
-
}
|
|
2192
|
-
interface DeploymentEnvironmentDeleteOutput {
|
|
2193
|
-
[k: string]: unknown;
|
|
2194
|
-
}
|
|
2195
|
-
interface DeploymentEnvironmentForkInput {
|
|
2196
|
-
name: string;
|
|
2197
|
-
slug?: string;
|
|
2198
|
-
baseEnvironmentId: string;
|
|
2199
|
-
}
|
|
2200
|
-
interface DeploymentEnvironmentForkOutput {
|
|
2201
|
-
id: string;
|
|
2202
|
-
name: string;
|
|
2203
|
-
slug: string;
|
|
2204
|
-
type: ("persistent" | "pr-preview");
|
|
2205
|
-
status: ("provisioning" | "ready" | "provisioning_failed" | "deprovisioning" | "deprovisioning_failed");
|
|
2206
|
-
prBranch: (string | null);
|
|
2207
|
-
prNumber: (number | null);
|
|
2208
|
-
createdAt: string;
|
|
2209
|
-
expiresAt: (string | null);
|
|
2210
|
-
updatedAt: string;
|
|
2211
|
-
isProduction: boolean;
|
|
2212
|
-
lastErrorMessage: (string | null);
|
|
2213
|
-
baseEnvironmentId: (string | null);
|
|
2214
|
-
}
|
|
2215
|
-
interface DeploymentEnvironmentGetInput {
|
|
2216
|
-
id: string;
|
|
2217
|
-
}
|
|
2218
|
-
interface DeploymentEnvironmentGetOutput {
|
|
2219
|
-
id: string;
|
|
2220
|
-
name: string;
|
|
2221
|
-
slug: string;
|
|
2222
|
-
type: ("persistent" | "pr-preview");
|
|
2223
|
-
status: ("provisioning" | "ready" | "provisioning_failed" | "deprovisioning" | "deprovisioning_failed");
|
|
2224
|
-
prBranch: (string | null);
|
|
2225
|
-
prNumber: (number | null);
|
|
2226
|
-
createdAt: string;
|
|
2227
|
-
expiresAt: (string | null);
|
|
2228
|
-
updatedAt: string;
|
|
2229
|
-
isProduction: boolean;
|
|
2230
|
-
lastErrorMessage: (string | null);
|
|
2231
|
-
baseEnvironmentId: (string | null);
|
|
2232
|
-
}
|
|
2233
|
-
interface DeploymentEnvironmentListInput {
|
|
2234
|
-
type?: ("persistent" | "pr-preview");
|
|
2235
|
-
}
|
|
2236
|
-
type DeploymentEnvironmentListOutput = {
|
|
2237
|
-
id: string;
|
|
2238
|
-
name: string;
|
|
2239
|
-
slug: string;
|
|
2240
|
-
type: ("persistent" | "pr-preview");
|
|
2241
|
-
status: ("provisioning" | "ready" | "provisioning_failed" | "deprovisioning" | "deprovisioning_failed");
|
|
2242
|
-
prBranch: (string | null);
|
|
2243
|
-
prNumber: (number | null);
|
|
2244
|
-
createdAt: string;
|
|
2245
|
-
expiresAt: (string | null);
|
|
2246
|
-
updatedAt: string;
|
|
2247
|
-
isProduction: boolean;
|
|
2248
|
-
lastErrorMessage: (string | null);
|
|
2249
|
-
baseEnvironmentId: (string | null);
|
|
2250
|
-
}[];
|
|
2251
|
-
interface DeploymentEnvironmentReconcileInput {
|
|
2252
|
-
id: string;
|
|
2253
|
-
force?: boolean;
|
|
2254
|
-
}
|
|
2255
|
-
interface DeploymentEnvironmentReconcileOutput {
|
|
2256
|
-
id: string;
|
|
2257
|
-
name: string;
|
|
2258
|
-
slug: string;
|
|
2259
|
-
type: ("persistent" | "pr-preview");
|
|
2260
|
-
status: ("provisioning" | "ready" | "provisioning_failed" | "deprovisioning" | "deprovisioning_failed");
|
|
2261
|
-
prBranch: (string | null);
|
|
2262
|
-
prNumber: (number | null);
|
|
2263
|
-
createdAt: string;
|
|
2264
|
-
expiresAt: (string | null);
|
|
2265
|
-
updatedAt: string;
|
|
2266
|
-
isProduction: boolean;
|
|
2267
|
-
lastErrorMessage: (string | null);
|
|
2268
|
-
baseEnvironmentId: (string | null);
|
|
2269
|
-
}
|
|
2270
|
-
interface DeploymentEnvironmentUpdateInput {
|
|
2271
|
-
id: string;
|
|
2272
|
-
name?: string;
|
|
2273
|
-
}
|
|
2274
|
-
interface DeploymentEnvironmentUpdateOutput {
|
|
2275
|
-
id: string;
|
|
2276
|
-
name: string;
|
|
2277
|
-
slug: string;
|
|
2278
|
-
type: ("persistent" | "pr-preview");
|
|
2279
|
-
status: ("provisioning" | "ready" | "provisioning_failed" | "deprovisioning" | "deprovisioning_failed");
|
|
2280
|
-
prBranch: (string | null);
|
|
2281
|
-
prNumber: (number | null);
|
|
2282
|
-
createdAt: string;
|
|
2283
|
-
expiresAt: (string | null);
|
|
2284
|
-
updatedAt: string;
|
|
2285
|
-
isProduction: boolean;
|
|
2286
|
-
lastErrorMessage: (string | null);
|
|
2287
|
-
baseEnvironmentId: (string | null);
|
|
2288
|
-
}
|
|
2289
|
-
interface DeploymentEventsListByEnvironmentInput {
|
|
2290
|
-
type?: ("deployment.queued" | "deployment.build.started" | "deployment.build.succeeded" | "deployment.build.failed" | "deployment.deploying" | "deployment.healthcheck.passed" | "deployment.healthcheck.failed" | "deployment.healthy" | "deployment.failed" | "deployment.replaced" | "deployment.release.started" | "deployment.release.log" | "deployment.release.succeeded" | "deployment.release.failed" | "replica.restarted" | "service.scaled" | "service.restarted" | "domain.verified" | "domain.tls.issued" | "domain.tls.failed" | "domain.routing.active" | "domain.routing.failed" | "domain.removed" | "domain.governance.mirror-failed");
|
|
2291
|
-
limit?: number;
|
|
2292
|
-
since?: string;
|
|
2293
|
-
until?: string;
|
|
2294
|
-
environmentId: string;
|
|
2295
|
-
}
|
|
2296
|
-
type DeploymentEventsListByEnvironmentOutput = {
|
|
2297
|
-
id: string;
|
|
2298
|
-
type: ("deployment.queued" | "deployment.build.started" | "deployment.build.succeeded" | "deployment.build.failed" | "deployment.deploying" | "deployment.healthcheck.passed" | "deployment.healthcheck.failed" | "deployment.healthy" | "deployment.failed" | "deployment.replaced" | "deployment.release.started" | "deployment.release.log" | "deployment.release.succeeded" | "deployment.release.failed" | "replica.restarted" | "service.scaled" | "service.restarted" | "domain.verified" | "domain.tls.issued" | "domain.tls.failed" | "domain.routing.active" | "domain.routing.failed" | "domain.removed" | "domain.governance.mirror-failed");
|
|
2299
|
-
payload: {
|
|
2300
|
-
[k: string]: unknown;
|
|
2301
|
-
};
|
|
2302
|
-
domainId: (string | null);
|
|
2303
|
-
createdAt: string;
|
|
2304
|
-
productId: string;
|
|
2305
|
-
serviceId: (string | null);
|
|
2306
|
-
deploymentId: (string | null);
|
|
2307
|
-
environmentId: (string | null);
|
|
2308
|
-
}[];
|
|
2309
|
-
interface DeploymentEventsListByServiceInput {
|
|
2310
|
-
type?: ("deployment.queued" | "deployment.build.started" | "deployment.build.succeeded" | "deployment.build.failed" | "deployment.deploying" | "deployment.healthcheck.passed" | "deployment.healthcheck.failed" | "deployment.healthy" | "deployment.failed" | "deployment.replaced" | "deployment.release.started" | "deployment.release.log" | "deployment.release.succeeded" | "deployment.release.failed" | "replica.restarted" | "service.scaled" | "service.restarted" | "domain.verified" | "domain.tls.issued" | "domain.tls.failed" | "domain.routing.active" | "domain.routing.failed" | "domain.removed" | "domain.governance.mirror-failed");
|
|
2311
|
-
limit?: number;
|
|
2312
|
-
since?: string;
|
|
2313
|
-
until?: string;
|
|
2314
|
-
serviceId: string;
|
|
2315
|
-
deploymentId?: string;
|
|
2316
|
-
}
|
|
2317
|
-
type DeploymentEventsListByServiceOutput = {
|
|
2318
|
-
id: string;
|
|
2319
|
-
type: ("deployment.queued" | "deployment.build.started" | "deployment.build.succeeded" | "deployment.build.failed" | "deployment.deploying" | "deployment.healthcheck.passed" | "deployment.healthcheck.failed" | "deployment.healthy" | "deployment.failed" | "deployment.replaced" | "deployment.release.started" | "deployment.release.log" | "deployment.release.succeeded" | "deployment.release.failed" | "replica.restarted" | "service.scaled" | "service.restarted" | "domain.verified" | "domain.tls.issued" | "domain.tls.failed" | "domain.routing.active" | "domain.routing.failed" | "domain.removed" | "domain.governance.mirror-failed");
|
|
2320
|
-
payload: {
|
|
2321
|
-
[k: string]: unknown;
|
|
2322
|
-
};
|
|
2323
|
-
domainId: (string | null);
|
|
2324
|
-
createdAt: string;
|
|
2325
|
-
productId: string;
|
|
2326
|
-
serviceId: (string | null);
|
|
2327
|
-
deploymentId: (string | null);
|
|
2328
|
-
environmentId: (string | null);
|
|
2329
|
-
}[];
|
|
2330
|
-
interface DeploymentManagedServiceBackupInput {
|
|
2331
|
-
id: string;
|
|
2332
|
-
}
|
|
2333
|
-
interface DeploymentManagedServiceBackupOutput {
|
|
2334
|
-
id: string;
|
|
2335
|
-
name: string;
|
|
2336
|
-
slug: string;
|
|
2337
|
-
engine: ("postgres" | "redis" | "mysql" | "mongodb");
|
|
2338
|
-
status: string;
|
|
2339
|
-
version: string;
|
|
2340
|
-
createdAt: string;
|
|
2341
|
-
productId: string;
|
|
2342
|
-
updatedAt: string;
|
|
2343
|
-
storageGiB: number;
|
|
2344
|
-
databaseName: (string | null);
|
|
2345
|
-
environmentId: string;
|
|
2346
|
-
lastErrorMessage: (string | null);
|
|
2347
|
-
}
|
|
2348
|
-
interface DeploymentManagedServiceBackupListInput {
|
|
2349
|
-
id: string;
|
|
2350
|
-
}
|
|
2351
|
-
type DeploymentManagedServiceBackupListOutput = {
|
|
2352
|
-
name: string;
|
|
2353
|
-
pvcName: string;
|
|
2354
|
-
createdAt: string;
|
|
2355
|
-
readyToUse: boolean;
|
|
2356
|
-
restoreSize: (string | null);
|
|
2357
|
-
}[];
|
|
2358
|
-
interface DeploymentManagedServiceConnectInfoInput {
|
|
2359
|
-
id: string;
|
|
2360
|
-
}
|
|
2361
|
-
interface DeploymentManagedServiceConnectInfoOutput {
|
|
2362
|
-
id: string;
|
|
2363
|
-
slug: string;
|
|
2364
|
-
vars: {
|
|
2365
|
-
key: string;
|
|
2366
|
-
isSecret: boolean;
|
|
2367
|
-
refSyntax: string;
|
|
2368
|
-
}[];
|
|
2369
|
-
engine: ("postgres" | "redis" | "mysql" | "mongodb");
|
|
2370
|
-
}
|
|
2371
|
-
interface DeploymentManagedServiceDeleteInput {
|
|
2372
|
-
id: string;
|
|
2373
|
-
}
|
|
2374
|
-
interface DeploymentManagedServiceDeleteOutput {
|
|
2375
|
-
id: string;
|
|
2376
|
-
name: string;
|
|
2377
|
-
slug: string;
|
|
2378
|
-
engine: ("postgres" | "redis" | "mysql" | "mongodb");
|
|
2379
|
-
status: string;
|
|
2380
|
-
version: string;
|
|
2381
|
-
createdAt: string;
|
|
2382
|
-
productId: string;
|
|
2383
|
-
updatedAt: string;
|
|
2384
|
-
storageGiB: number;
|
|
2385
|
-
databaseName: (string | null);
|
|
2386
|
-
environmentId: string;
|
|
2387
|
-
lastErrorMessage: (string | null);
|
|
2388
|
-
}
|
|
2389
|
-
interface DeploymentManagedServiceGetInput {
|
|
2390
|
-
id: string;
|
|
2391
|
-
}
|
|
2392
|
-
interface DeploymentManagedServiceGetOutput {
|
|
2393
|
-
id: string;
|
|
2394
|
-
name: string;
|
|
2395
|
-
slug: string;
|
|
2396
|
-
engine: ("postgres" | "redis" | "mysql" | "mongodb");
|
|
2397
|
-
status: string;
|
|
2398
|
-
version: string;
|
|
2399
|
-
createdAt: string;
|
|
2400
|
-
productId: string;
|
|
2401
|
-
updatedAt: string;
|
|
2402
|
-
storageGiB: number;
|
|
2403
|
-
databaseName: (string | null);
|
|
2404
|
-
environmentId: string;
|
|
2405
|
-
lastErrorMessage: (string | null);
|
|
2406
|
-
}
|
|
2407
|
-
interface DeploymentManagedServiceListInput {
|
|
2408
|
-
environmentId: string;
|
|
2409
|
-
}
|
|
2410
|
-
type DeploymentManagedServiceListOutput = {
|
|
2411
|
-
id: string;
|
|
2412
|
-
name: string;
|
|
2413
|
-
slug: string;
|
|
2414
|
-
engine: ("postgres" | "redis" | "mysql" | "mongodb");
|
|
2415
|
-
status: string;
|
|
2416
|
-
version: string;
|
|
2417
|
-
createdAt: string;
|
|
2418
|
-
productId: string;
|
|
2419
|
-
updatedAt: string;
|
|
2420
|
-
storageGiB: number;
|
|
2421
|
-
databaseName: (string | null);
|
|
2422
|
-
environmentId: string;
|
|
2423
|
-
lastErrorMessage: (string | null);
|
|
2424
|
-
}[];
|
|
2425
|
-
interface DeploymentManagedServiceLogsInput {
|
|
2426
|
-
id: string;
|
|
2427
|
-
tail?: number;
|
|
2428
|
-
}
|
|
2429
|
-
interface DeploymentManagedServiceLogsOutput {
|
|
2430
|
-
lines: string[];
|
|
2431
|
-
}
|
|
2432
|
-
interface DeploymentManagedServiceProvisionInput {
|
|
2433
|
-
name: string;
|
|
2434
|
-
slug?: string;
|
|
2435
|
-
engine: ("postgres" | "redis" | "mysql" | "mongodb");
|
|
2436
|
-
version?: string;
|
|
2437
|
-
storageGiB?: number;
|
|
2438
|
-
databaseName?: string;
|
|
2439
|
-
environmentId: string;
|
|
2440
|
-
}
|
|
2441
|
-
interface DeploymentManagedServiceProvisionOutput {
|
|
2442
|
-
id: string;
|
|
2443
|
-
name: string;
|
|
2444
|
-
slug: string;
|
|
2445
|
-
engine: ("postgres" | "redis" | "mysql" | "mongodb");
|
|
2446
|
-
status: string;
|
|
2447
|
-
version: string;
|
|
2448
|
-
createdAt: string;
|
|
2449
|
-
productId: string;
|
|
2450
|
-
updatedAt: string;
|
|
2451
|
-
storageGiB: number;
|
|
2452
|
-
databaseName: (string | null);
|
|
2453
|
-
environmentId: string;
|
|
2454
|
-
lastErrorMessage: (string | null);
|
|
2455
|
-
}
|
|
2456
|
-
interface DeploymentManagedServiceReconcileInput {
|
|
2457
|
-
id: string;
|
|
2458
|
-
}
|
|
2459
|
-
interface DeploymentManagedServiceReconcileOutput {
|
|
2460
|
-
id: string;
|
|
2461
|
-
name: string;
|
|
2462
|
-
slug: string;
|
|
2463
|
-
engine: ("postgres" | "redis" | "mysql" | "mongodb");
|
|
2464
|
-
status: string;
|
|
2465
|
-
version: string;
|
|
2466
|
-
createdAt: string;
|
|
2467
|
-
productId: string;
|
|
2468
|
-
updatedAt: string;
|
|
2469
|
-
storageGiB: number;
|
|
2470
|
-
databaseName: (string | null);
|
|
2471
|
-
environmentId: string;
|
|
2472
|
-
lastErrorMessage: (string | null);
|
|
2473
|
-
}
|
|
2474
|
-
interface DeploymentManagedServiceResizeInput {
|
|
2475
|
-
id: string;
|
|
2476
|
-
storageGiB: number;
|
|
2477
|
-
}
|
|
2478
|
-
interface DeploymentManagedServiceResizeOutput {
|
|
2479
|
-
id: string;
|
|
2480
|
-
name: string;
|
|
2481
|
-
slug: string;
|
|
2482
|
-
engine: ("postgres" | "redis" | "mysql" | "mongodb");
|
|
2483
|
-
status: string;
|
|
2484
|
-
version: string;
|
|
2485
|
-
createdAt: string;
|
|
2486
|
-
productId: string;
|
|
2487
|
-
updatedAt: string;
|
|
2488
|
-
storageGiB: number;
|
|
2489
|
-
databaseName: (string | null);
|
|
2490
|
-
environmentId: string;
|
|
2491
|
-
lastErrorMessage: (string | null);
|
|
2492
|
-
}
|
|
2493
|
-
interface DeploymentManagedServiceRestoreInput {
|
|
2494
|
-
id: string;
|
|
2495
|
-
snapshotName: string;
|
|
2496
|
-
}
|
|
2497
|
-
interface DeploymentManagedServiceRestoreOutput {
|
|
2498
|
-
id: string;
|
|
2499
|
-
name: string;
|
|
2500
|
-
slug: string;
|
|
2501
|
-
engine: ("postgres" | "redis" | "mysql" | "mongodb");
|
|
2502
|
-
status: string;
|
|
2503
|
-
version: string;
|
|
2504
|
-
createdAt: string;
|
|
2505
|
-
productId: string;
|
|
2506
|
-
updatedAt: string;
|
|
2507
|
-
storageGiB: number;
|
|
2508
|
-
databaseName: (string | null);
|
|
2509
|
-
environmentId: string;
|
|
2510
|
-
lastErrorMessage: (string | null);
|
|
2511
|
-
}
|
|
2512
|
-
interface DeploymentManagedServiceStartInput {
|
|
2513
|
-
id: string;
|
|
2514
|
-
}
|
|
2515
|
-
interface DeploymentManagedServiceStartOutput {
|
|
2516
|
-
id: string;
|
|
2517
|
-
name: string;
|
|
2518
|
-
slug: string;
|
|
2519
|
-
engine: ("postgres" | "redis" | "mysql" | "mongodb");
|
|
2520
|
-
status: string;
|
|
2521
|
-
version: string;
|
|
2522
|
-
createdAt: string;
|
|
2523
|
-
productId: string;
|
|
2524
|
-
updatedAt: string;
|
|
2525
|
-
storageGiB: number;
|
|
2526
|
-
databaseName: (string | null);
|
|
2527
|
-
environmentId: string;
|
|
2528
|
-
lastErrorMessage: (string | null);
|
|
2529
|
-
}
|
|
2530
|
-
interface DeploymentManagedServiceStopInput {
|
|
2531
|
-
id: string;
|
|
2532
|
-
}
|
|
2533
|
-
interface DeploymentManagedServiceStopOutput {
|
|
2534
|
-
id: string;
|
|
2535
|
-
name: string;
|
|
2536
|
-
slug: string;
|
|
2537
|
-
engine: ("postgres" | "redis" | "mysql" | "mongodb");
|
|
2538
|
-
status: string;
|
|
2539
|
-
version: string;
|
|
2540
|
-
createdAt: string;
|
|
2541
|
-
productId: string;
|
|
2542
|
-
updatedAt: string;
|
|
2543
|
-
storageGiB: number;
|
|
2544
|
-
databaseName: (string | null);
|
|
2545
|
-
environmentId: string;
|
|
2546
|
-
lastErrorMessage: (string | null);
|
|
2547
|
-
}
|
|
2548
|
-
interface DeploymentManagedServiceTypesInput {
|
|
2549
|
-
}
|
|
2550
|
-
interface DeploymentManagedServiceTypesOutput {
|
|
2551
|
-
engines: {
|
|
2552
|
-
engine: ("postgres" | "redis" | "mysql" | "mongodb");
|
|
2553
|
-
versions: string[];
|
|
2554
|
-
displayName: string;
|
|
2555
|
-
defaultVersion: string;
|
|
2556
|
-
managedVarKeys: string[];
|
|
2557
|
-
}[];
|
|
2558
|
-
}
|
|
2559
|
-
interface DeploymentMetricsGetInput {
|
|
2560
|
-
window?: ("15m" | "1h" | "6h" | "24h" | "7d");
|
|
2561
|
-
targetId: string;
|
|
2562
|
-
targetKind: ("service" | "managed-service");
|
|
2563
|
-
}
|
|
2564
|
-
interface DeploymentMetricsGetOutput {
|
|
2565
|
-
series: {
|
|
2566
|
-
unit: ("cores" | "bytes" | "bytes_per_s" | "requests_per_s" | "milliseconds" | "percent");
|
|
2567
|
-
metric: ("cpu" | "memory" | "net_in" | "net_out" | "disk" | "rps" | "p50" | "p95" | "p99" | "error_rate");
|
|
2568
|
-
points: {
|
|
2569
|
-
t: number;
|
|
2570
|
-
v: number;
|
|
2571
|
-
}[];
|
|
2572
|
-
}[];
|
|
2573
|
-
window: ("15m" | "1h" | "6h" | "24h" | "7d");
|
|
2574
|
-
capacity: {
|
|
2575
|
-
cpuCores: (number | null);
|
|
2576
|
-
memoryBytes: (number | null);
|
|
2577
|
-
};
|
|
2578
|
-
targetId: string;
|
|
2579
|
-
targetKind: ("service" | "managed-service");
|
|
2580
|
-
stepSeconds: number;
|
|
2581
|
-
}
|
|
2582
|
-
interface DeploymentPreviewEnvironmentCreateInput {
|
|
2583
|
-
prBranch?: string;
|
|
2584
|
-
prNumber: number;
|
|
2585
|
-
baseEnvironmentId: string;
|
|
2586
|
-
}
|
|
2587
|
-
interface DeploymentPreviewEnvironmentCreateOutput {
|
|
2588
|
-
id: string;
|
|
2589
|
-
name: string;
|
|
2590
|
-
slug: string;
|
|
2591
|
-
type: ("persistent" | "pr-preview");
|
|
2592
|
-
status: ("provisioning" | "ready" | "provisioning_failed" | "deprovisioning" | "deprovisioning_failed");
|
|
2593
|
-
prBranch: (string | null);
|
|
2594
|
-
prNumber: (number | null);
|
|
2595
|
-
createdAt: string;
|
|
2596
|
-
expiresAt: (string | null);
|
|
2597
|
-
updatedAt: string;
|
|
2598
|
-
isProduction: boolean;
|
|
2599
|
-
lastErrorMessage: (string | null);
|
|
2600
|
-
baseEnvironmentId: (string | null);
|
|
2601
|
-
}
|
|
2602
|
-
interface DeploymentPreviewEnvironmentDeleteInput {
|
|
2603
|
-
id: string;
|
|
2604
|
-
}
|
|
2605
|
-
interface DeploymentPreviewEnvironmentDeleteOutput {
|
|
2606
|
-
[k: string]: unknown;
|
|
2607
|
-
}
|
|
2608
|
-
interface DeploymentPreviewEnvironmentListInput {
|
|
2609
|
-
}
|
|
2610
|
-
type DeploymentPreviewEnvironmentListOutput = {
|
|
2611
|
-
id: string;
|
|
2612
|
-
name: string;
|
|
2613
|
-
slug: string;
|
|
2614
|
-
type: ("persistent" | "pr-preview");
|
|
2615
|
-
status: ("provisioning" | "ready" | "provisioning_failed" | "deprovisioning" | "deprovisioning_failed");
|
|
2616
|
-
prBranch: (string | null);
|
|
2617
|
-
prNumber: (number | null);
|
|
2618
|
-
createdAt: string;
|
|
2619
|
-
expiresAt: (string | null);
|
|
2620
|
-
updatedAt: string;
|
|
2621
|
-
isProduction: boolean;
|
|
2622
|
-
lastErrorMessage: (string | null);
|
|
2623
|
-
baseEnvironmentId: (string | null);
|
|
2624
|
-
}[];
|
|
2625
|
-
interface DeploymentPreviewPolicyGetInput {
|
|
2626
|
-
baseEnvironmentId: string;
|
|
2627
|
-
}
|
|
2628
|
-
interface DeploymentPreviewPolicyGetOutput {
|
|
2629
|
-
id: string;
|
|
2630
|
-
enabled: boolean;
|
|
2631
|
-
ttlHours: number;
|
|
2632
|
-
createdAt: string;
|
|
2633
|
-
updatedAt: string;
|
|
2634
|
-
maxPreviews: number;
|
|
2635
|
-
baseEnvironmentId: string;
|
|
2636
|
-
}
|
|
2637
|
-
interface DeploymentPreviewPolicySetInput {
|
|
2638
|
-
enabled?: boolean;
|
|
2639
|
-
ttlHours?: number;
|
|
2640
|
-
maxPreviews?: number;
|
|
2641
|
-
baseEnvironmentId: string;
|
|
2642
|
-
}
|
|
2643
|
-
interface DeploymentPreviewPolicySetOutput {
|
|
2644
|
-
id: string;
|
|
2645
|
-
enabled: boolean;
|
|
2646
|
-
ttlHours: number;
|
|
2647
|
-
createdAt: string;
|
|
2648
|
-
updatedAt: string;
|
|
2649
|
-
maxPreviews: number;
|
|
2650
|
-
baseEnvironmentId: string;
|
|
2651
|
-
}
|
|
2652
|
-
interface DeploymentServiceCreateInput {
|
|
2653
|
-
name: string;
|
|
2654
|
-
slug?: string;
|
|
2655
|
-
canvas?: {
|
|
2656
|
-
x: number;
|
|
2657
|
-
y: number;
|
|
2658
|
-
};
|
|
2659
|
-
probes?: {
|
|
2660
|
-
liveness?: DeploymentServiceCreateInputReadiness;
|
|
2661
|
-
readiness?: DeploymentServiceCreateInputReadiness;
|
|
2662
|
-
};
|
|
2663
|
-
source: ({
|
|
2664
|
-
url?: string;
|
|
2665
|
-
path?: string;
|
|
2666
|
-
type: "git";
|
|
2667
|
-
branch: string;
|
|
2668
|
-
connectorId?: string;
|
|
2669
|
-
repoFullName?: string;
|
|
2670
|
-
} | {
|
|
2671
|
-
tag: string;
|
|
2672
|
-
type: "image";
|
|
2673
|
-
registry: string;
|
|
2674
|
-
} | {
|
|
2675
|
-
spa?: boolean;
|
|
2676
|
-
repo?: {
|
|
2677
|
-
url?: string;
|
|
2678
|
-
path?: string;
|
|
2679
|
-
branch: string;
|
|
2680
|
-
connectorId?: string;
|
|
2681
|
-
repoFullName?: string;
|
|
2682
|
-
};
|
|
2683
|
-
type: "static";
|
|
2684
|
-
build?: {
|
|
2685
|
-
command?: string;
|
|
2686
|
-
outputDir?: string;
|
|
2687
|
-
};
|
|
2688
|
-
});
|
|
2689
|
-
replicas?: number;
|
|
2690
|
-
resources?: {
|
|
2691
|
-
limits?: {
|
|
2692
|
-
cpu?: string;
|
|
2693
|
-
memory?: string;
|
|
2694
|
-
};
|
|
2695
|
-
};
|
|
2696
|
-
containerPort?: number;
|
|
2697
|
-
environmentId: string;
|
|
2698
|
-
}
|
|
2699
|
-
interface DeploymentServiceCreateInputReadiness {
|
|
2700
|
-
path: string;
|
|
2701
|
-
port?: number;
|
|
2702
|
-
periodSeconds?: number;
|
|
2703
|
-
timeoutSeconds?: number;
|
|
2704
|
-
failureThreshold?: number;
|
|
2705
|
-
successThreshold?: number;
|
|
2706
|
-
initialDelaySeconds?: number;
|
|
2707
|
-
}
|
|
2708
|
-
interface DeploymentServiceCreateOutput {
|
|
2709
|
-
id: string;
|
|
2710
|
-
name: string;
|
|
2711
|
-
slug: string;
|
|
2712
|
-
probes: {
|
|
2713
|
-
liveness?: DeploymentServiceCreateOutputReadiness;
|
|
2714
|
-
readiness?: DeploymentServiceCreateOutputReadiness;
|
|
2715
|
-
};
|
|
2716
|
-
source: ({
|
|
2717
|
-
url?: string;
|
|
2718
|
-
path?: string;
|
|
2719
|
-
type: "git";
|
|
2720
|
-
branch: string;
|
|
2721
|
-
connectorId?: string;
|
|
2722
|
-
repoFullName?: string;
|
|
2723
|
-
} | {
|
|
2724
|
-
tag: string;
|
|
2725
|
-
type: "image";
|
|
2726
|
-
registry: string;
|
|
2727
|
-
} | {
|
|
2728
|
-
spa?: boolean;
|
|
2729
|
-
repo?: {
|
|
2730
|
-
url?: string;
|
|
2731
|
-
path?: string;
|
|
2732
|
-
branch: string;
|
|
2733
|
-
connectorId?: string;
|
|
2734
|
-
repoFullName?: string;
|
|
2735
|
-
};
|
|
2736
|
-
type: "static";
|
|
2737
|
-
build?: {
|
|
2738
|
-
command?: string;
|
|
2739
|
-
outputDir?: string;
|
|
2740
|
-
};
|
|
2741
|
-
});
|
|
2742
|
-
replicas: number;
|
|
2743
|
-
createdAt: string;
|
|
2744
|
-
dependsOn: string[];
|
|
2745
|
-
resources?: {
|
|
2746
|
-
limits?: {
|
|
2747
|
-
cpu?: string;
|
|
2748
|
-
memory?: string;
|
|
2749
|
-
};
|
|
2750
|
-
};
|
|
2751
|
-
updatedAt: string;
|
|
2752
|
-
containerPort: number;
|
|
2753
|
-
environmentId: string;
|
|
2754
|
-
lastReplicasRunning: number;
|
|
2755
|
-
}
|
|
2756
|
-
interface DeploymentServiceCreateOutputReadiness {
|
|
2757
|
-
path: string;
|
|
2758
|
-
port?: number;
|
|
2759
|
-
periodSeconds?: number;
|
|
2760
|
-
timeoutSeconds?: number;
|
|
2761
|
-
failureThreshold?: number;
|
|
2762
|
-
successThreshold?: number;
|
|
2763
|
-
initialDelaySeconds?: number;
|
|
2764
|
-
}
|
|
2765
|
-
interface DeploymentServiceDeleteInput {
|
|
2766
|
-
id: string;
|
|
2767
|
-
}
|
|
2768
|
-
interface DeploymentServiceDeleteOutput {
|
|
2769
|
-
[k: string]: unknown;
|
|
2770
|
-
}
|
|
2771
|
-
interface DeploymentServiceExecInput {
|
|
2772
|
-
mode?: ("exec" | "job");
|
|
2773
|
-
command: string;
|
|
2774
|
-
serviceId: string;
|
|
2775
|
-
timeoutSec?: number;
|
|
2776
|
-
}
|
|
2777
|
-
interface DeploymentServiceExecOutput {
|
|
2778
|
-
mode: ("exec" | "job");
|
|
2779
|
-
output: string;
|
|
2780
|
-
stderr: string;
|
|
2781
|
-
stdout: string;
|
|
2782
|
-
target: ({
|
|
2783
|
-
kind: "pod";
|
|
2784
|
-
podName: string;
|
|
2785
|
-
container: string;
|
|
2786
|
-
} | {
|
|
2787
|
-
kind: "job";
|
|
2788
|
-
jobName: string;
|
|
2789
|
-
});
|
|
2790
|
-
exitCode: number;
|
|
2791
|
-
timedOut: boolean;
|
|
2792
|
-
truncated: boolean;
|
|
2793
|
-
}
|
|
2794
|
-
interface DeploymentServiceGetInput {
|
|
2795
|
-
id: string;
|
|
2796
|
-
}
|
|
2797
|
-
interface DeploymentServiceGetOutput {
|
|
2798
|
-
id: string;
|
|
2799
|
-
name: string;
|
|
2800
|
-
slug: string;
|
|
2801
|
-
probes: {
|
|
2802
|
-
liveness?: DeploymentServiceGetOutputReadiness;
|
|
2803
|
-
readiness?: DeploymentServiceGetOutputReadiness;
|
|
2804
|
-
};
|
|
2805
|
-
source: ({
|
|
2806
|
-
url?: string;
|
|
2807
|
-
path?: string;
|
|
2808
|
-
type: "git";
|
|
2809
|
-
branch: string;
|
|
2810
|
-
connectorId?: string;
|
|
2811
|
-
repoFullName?: string;
|
|
2812
|
-
} | {
|
|
2813
|
-
tag: string;
|
|
2814
|
-
type: "image";
|
|
2815
|
-
registry: string;
|
|
2816
|
-
} | {
|
|
2817
|
-
spa?: boolean;
|
|
2818
|
-
repo?: {
|
|
2819
|
-
url?: string;
|
|
2820
|
-
path?: string;
|
|
2821
|
-
branch: string;
|
|
2822
|
-
connectorId?: string;
|
|
2823
|
-
repoFullName?: string;
|
|
2824
|
-
};
|
|
2825
|
-
type: "static";
|
|
2826
|
-
build?: {
|
|
2827
|
-
command?: string;
|
|
2828
|
-
outputDir?: string;
|
|
2829
|
-
};
|
|
2830
|
-
});
|
|
2831
|
-
replicas: number;
|
|
2832
|
-
createdAt: string;
|
|
2833
|
-
dependsOn: string[];
|
|
2834
|
-
resources?: {
|
|
2835
|
-
limits?: {
|
|
2836
|
-
cpu?: string;
|
|
2837
|
-
memory?: string;
|
|
2838
|
-
};
|
|
2839
|
-
};
|
|
2840
|
-
updatedAt: string;
|
|
2841
|
-
containerPort: number;
|
|
2842
|
-
environmentId: string;
|
|
2843
|
-
lastReplicasRunning: number;
|
|
2844
|
-
}
|
|
2845
|
-
interface DeploymentServiceGetOutputReadiness {
|
|
2846
|
-
path: string;
|
|
2847
|
-
port?: number;
|
|
2848
|
-
periodSeconds?: number;
|
|
2849
|
-
timeoutSeconds?: number;
|
|
2850
|
-
failureThreshold?: number;
|
|
2851
|
-
successThreshold?: number;
|
|
2852
|
-
initialDelaySeconds?: number;
|
|
2853
|
-
}
|
|
2854
|
-
interface DeploymentServiceListInput {
|
|
2855
|
-
environmentId: string;
|
|
2856
|
-
}
|
|
2857
|
-
type DeploymentServiceListOutput = {
|
|
2858
|
-
id: string;
|
|
2859
|
-
name: string;
|
|
2860
|
-
slug: string;
|
|
2861
|
-
probes: {
|
|
2862
|
-
liveness?: DeploymentServiceListOutputReadiness;
|
|
2863
|
-
readiness?: DeploymentServiceListOutputReadiness;
|
|
2864
|
-
};
|
|
2865
|
-
source: ({
|
|
2866
|
-
url?: string;
|
|
2867
|
-
path?: string;
|
|
2868
|
-
type: "git";
|
|
2869
|
-
branch: string;
|
|
2870
|
-
connectorId?: string;
|
|
2871
|
-
repoFullName?: string;
|
|
2872
|
-
} | {
|
|
2873
|
-
tag: string;
|
|
2874
|
-
type: "image";
|
|
2875
|
-
registry: string;
|
|
2876
|
-
} | {
|
|
2877
|
-
spa?: boolean;
|
|
2878
|
-
repo?: {
|
|
2879
|
-
url?: string;
|
|
2880
|
-
path?: string;
|
|
2881
|
-
branch: string;
|
|
2882
|
-
connectorId?: string;
|
|
2883
|
-
repoFullName?: string;
|
|
2884
|
-
};
|
|
2885
|
-
type: "static";
|
|
2886
|
-
build?: {
|
|
2887
|
-
command?: string;
|
|
2888
|
-
outputDir?: string;
|
|
2889
|
-
};
|
|
2890
|
-
});
|
|
2891
|
-
replicas: number;
|
|
2892
|
-
createdAt: string;
|
|
2893
|
-
dependsOn: string[];
|
|
2894
|
-
resources?: {
|
|
2895
|
-
limits?: {
|
|
2896
|
-
cpu?: string;
|
|
2897
|
-
memory?: string;
|
|
2898
|
-
};
|
|
2899
|
-
};
|
|
2900
|
-
updatedAt: string;
|
|
2901
|
-
containerPort: number;
|
|
2902
|
-
environmentId: string;
|
|
2903
|
-
lastReplicasRunning: number;
|
|
2904
|
-
}[];
|
|
2905
|
-
interface DeploymentServiceListOutputReadiness {
|
|
2906
|
-
path: string;
|
|
2907
|
-
port?: number;
|
|
2908
|
-
periodSeconds?: number;
|
|
2909
|
-
timeoutSeconds?: number;
|
|
2910
|
-
failureThreshold?: number;
|
|
2911
|
-
successThreshold?: number;
|
|
2912
|
-
initialDelaySeconds?: number;
|
|
2913
|
-
}
|
|
2914
|
-
interface DeploymentServiceLogsInput {
|
|
2915
|
-
tail?: number;
|
|
2916
|
-
serviceId: string;
|
|
2917
|
-
}
|
|
2918
|
-
interface DeploymentServiceLogsOutput {
|
|
2919
|
-
lines: string[];
|
|
2920
|
-
}
|
|
2921
|
-
interface DeploymentServiceRedeployInput {
|
|
2922
|
-
serviceId: string;
|
|
2923
|
-
}
|
|
2924
|
-
interface DeploymentServiceRedeployOutput {
|
|
2925
|
-
id: string;
|
|
2926
|
-
status: ("Initializing" | "Building" | "Deploying" | "Active" | "Replaced" | "Crashed" | "Completed" | "Failed" | "Removed");
|
|
2927
|
-
builtAt: (string | null);
|
|
2928
|
-
imageRef: (string | null);
|
|
2929
|
-
commitSha: (string | null);
|
|
2930
|
-
createdAt: string;
|
|
2931
|
-
serviceId: string;
|
|
2932
|
-
startedAt: (string | null);
|
|
2933
|
-
updatedAt: string;
|
|
2934
|
-
deployedAt: (string | null);
|
|
2935
|
-
finishedAt: (string | null);
|
|
2936
|
-
cloudBuildId: (string | null);
|
|
2937
|
-
configSnapshot: {
|
|
2938
|
-
source?: unknown;
|
|
2939
|
-
variables: {
|
|
2940
|
-
key: string;
|
|
2941
|
-
value: string;
|
|
2942
|
-
}[];
|
|
2943
|
-
};
|
|
2944
|
-
lastErrorMessage: (string | null);
|
|
2945
|
-
rolledBackFromDeploymentId: (string | null);
|
|
2946
|
-
}
|
|
2947
|
-
interface DeploymentServiceRestartInput {
|
|
2948
|
-
id: string;
|
|
2949
|
-
}
|
|
2950
|
-
interface DeploymentServiceRestartOutput {
|
|
2951
|
-
[k: string]: unknown;
|
|
2952
|
-
}
|
|
2953
|
-
interface DeploymentServiceRollbackInput {
|
|
2954
|
-
serviceId: string;
|
|
2955
|
-
deploymentId: string;
|
|
2956
|
-
}
|
|
2957
|
-
interface DeploymentServiceRollbackOutput {
|
|
2958
|
-
id: string;
|
|
2959
|
-
status: ("Initializing" | "Building" | "Deploying" | "Active" | "Replaced" | "Crashed" | "Completed" | "Failed" | "Removed");
|
|
2960
|
-
builtAt: (string | null);
|
|
2961
|
-
imageRef: (string | null);
|
|
2962
|
-
commitSha: (string | null);
|
|
2963
|
-
createdAt: string;
|
|
2964
|
-
serviceId: string;
|
|
2965
|
-
startedAt: (string | null);
|
|
2966
|
-
updatedAt: string;
|
|
2967
|
-
deployedAt: (string | null);
|
|
2968
|
-
finishedAt: (string | null);
|
|
2969
|
-
cloudBuildId: (string | null);
|
|
2970
|
-
configSnapshot: {
|
|
2971
|
-
source?: unknown;
|
|
2972
|
-
variables: {
|
|
2973
|
-
key: string;
|
|
2974
|
-
value: string;
|
|
2975
|
-
}[];
|
|
2976
|
-
};
|
|
2977
|
-
lastErrorMessage: (string | null);
|
|
2978
|
-
rolledBackFromDeploymentId: (string | null);
|
|
2979
|
-
}
|
|
2980
|
-
interface DeploymentServiceScaleInput {
|
|
2981
|
-
id: string;
|
|
2982
|
-
replicas: number;
|
|
2983
|
-
}
|
|
2984
|
-
interface DeploymentServiceScaleOutput {
|
|
2985
|
-
id: string;
|
|
2986
|
-
name: string;
|
|
2987
|
-
slug: string;
|
|
2988
|
-
probes: {
|
|
2989
|
-
liveness?: DeploymentServiceScaleOutputReadiness;
|
|
2990
|
-
readiness?: DeploymentServiceScaleOutputReadiness;
|
|
2991
|
-
};
|
|
2992
|
-
source: ({
|
|
2993
|
-
url?: string;
|
|
2994
|
-
path?: string;
|
|
2995
|
-
type: "git";
|
|
2996
|
-
branch: string;
|
|
2997
|
-
connectorId?: string;
|
|
2998
|
-
repoFullName?: string;
|
|
2999
|
-
} | {
|
|
3000
|
-
tag: string;
|
|
3001
|
-
type: "image";
|
|
3002
|
-
registry: string;
|
|
3003
|
-
} | {
|
|
3004
|
-
spa?: boolean;
|
|
3005
|
-
repo?: {
|
|
3006
|
-
url?: string;
|
|
3007
|
-
path?: string;
|
|
3008
|
-
branch: string;
|
|
3009
|
-
connectorId?: string;
|
|
3010
|
-
repoFullName?: string;
|
|
3011
|
-
};
|
|
3012
|
-
type: "static";
|
|
3013
|
-
build?: {
|
|
3014
|
-
command?: string;
|
|
3015
|
-
outputDir?: string;
|
|
3016
|
-
};
|
|
3017
|
-
});
|
|
3018
|
-
replicas: number;
|
|
3019
|
-
createdAt: string;
|
|
3020
|
-
dependsOn: string[];
|
|
3021
|
-
resources?: {
|
|
3022
|
-
limits?: {
|
|
3023
|
-
cpu?: string;
|
|
3024
|
-
memory?: string;
|
|
3025
|
-
};
|
|
3026
|
-
};
|
|
3027
|
-
updatedAt: string;
|
|
3028
|
-
containerPort: number;
|
|
3029
|
-
environmentId: string;
|
|
3030
|
-
lastReplicasRunning: number;
|
|
3031
|
-
}
|
|
3032
|
-
interface DeploymentServiceScaleOutputReadiness {
|
|
3033
|
-
path: string;
|
|
3034
|
-
port?: number;
|
|
3035
|
-
periodSeconds?: number;
|
|
3036
|
-
timeoutSeconds?: number;
|
|
3037
|
-
failureThreshold?: number;
|
|
3038
|
-
successThreshold?: number;
|
|
3039
|
-
initialDelaySeconds?: number;
|
|
3040
|
-
}
|
|
3041
|
-
interface DeploymentServiceUpdateInput {
|
|
3042
|
-
id: string;
|
|
3043
|
-
name?: string;
|
|
3044
|
-
probes?: {
|
|
3045
|
-
liveness?: DeploymentServiceUpdateInputReadiness;
|
|
3046
|
-
readiness?: DeploymentServiceUpdateInputReadiness;
|
|
3047
|
-
};
|
|
3048
|
-
source?: ({
|
|
3049
|
-
url?: string;
|
|
3050
|
-
path?: string;
|
|
3051
|
-
type: "git";
|
|
3052
|
-
branch: string;
|
|
3053
|
-
connectorId?: string;
|
|
3054
|
-
repoFullName?: string;
|
|
3055
|
-
} | {
|
|
3056
|
-
tag: string;
|
|
3057
|
-
type: "image";
|
|
3058
|
-
registry: string;
|
|
3059
|
-
} | {
|
|
3060
|
-
spa?: boolean;
|
|
3061
|
-
repo?: {
|
|
3062
|
-
url?: string;
|
|
3063
|
-
path?: string;
|
|
3064
|
-
branch: string;
|
|
3065
|
-
connectorId?: string;
|
|
3066
|
-
repoFullName?: string;
|
|
3067
|
-
};
|
|
3068
|
-
type: "static";
|
|
3069
|
-
build?: {
|
|
3070
|
-
command?: string;
|
|
3071
|
-
outputDir?: string;
|
|
3072
|
-
};
|
|
3073
|
-
});
|
|
3074
|
-
replicas?: number;
|
|
3075
|
-
resources?: {
|
|
3076
|
-
limits?: {
|
|
3077
|
-
cpu?: string;
|
|
3078
|
-
memory?: string;
|
|
3079
|
-
};
|
|
3080
|
-
};
|
|
3081
|
-
containerPort?: number;
|
|
3082
|
-
}
|
|
3083
|
-
interface DeploymentServiceUpdateInputReadiness {
|
|
3084
|
-
path: string;
|
|
3085
|
-
port?: number;
|
|
3086
|
-
periodSeconds?: number;
|
|
3087
|
-
timeoutSeconds?: number;
|
|
3088
|
-
failureThreshold?: number;
|
|
3089
|
-
successThreshold?: number;
|
|
3090
|
-
initialDelaySeconds?: number;
|
|
3091
|
-
}
|
|
3092
|
-
interface DeploymentServiceUpdateOutput {
|
|
3093
|
-
id: string;
|
|
3094
|
-
name: string;
|
|
3095
|
-
slug: string;
|
|
3096
|
-
probes: {
|
|
3097
|
-
liveness?: DeploymentServiceUpdateOutputReadiness;
|
|
3098
|
-
readiness?: DeploymentServiceUpdateOutputReadiness;
|
|
3099
|
-
};
|
|
3100
|
-
source: ({
|
|
3101
|
-
url?: string;
|
|
3102
|
-
path?: string;
|
|
3103
|
-
type: "git";
|
|
3104
|
-
branch: string;
|
|
3105
|
-
connectorId?: string;
|
|
3106
|
-
repoFullName?: string;
|
|
3107
|
-
} | {
|
|
3108
|
-
tag: string;
|
|
3109
|
-
type: "image";
|
|
3110
|
-
registry: string;
|
|
3111
|
-
} | {
|
|
3112
|
-
spa?: boolean;
|
|
3113
|
-
repo?: {
|
|
3114
|
-
url?: string;
|
|
3115
|
-
path?: string;
|
|
3116
|
-
branch: string;
|
|
3117
|
-
connectorId?: string;
|
|
3118
|
-
repoFullName?: string;
|
|
3119
|
-
};
|
|
3120
|
-
type: "static";
|
|
3121
|
-
build?: {
|
|
3122
|
-
command?: string;
|
|
3123
|
-
outputDir?: string;
|
|
3124
|
-
};
|
|
3125
|
-
});
|
|
3126
|
-
replicas: number;
|
|
3127
|
-
createdAt: string;
|
|
3128
|
-
dependsOn: string[];
|
|
3129
|
-
resources?: {
|
|
3130
|
-
limits?: {
|
|
3131
|
-
cpu?: string;
|
|
3132
|
-
memory?: string;
|
|
3133
|
-
};
|
|
3134
|
-
};
|
|
3135
|
-
updatedAt: string;
|
|
3136
|
-
containerPort: number;
|
|
3137
|
-
environmentId: string;
|
|
3138
|
-
lastReplicasRunning: number;
|
|
3139
|
-
}
|
|
3140
|
-
interface DeploymentServiceUpdateOutputReadiness {
|
|
3141
|
-
path: string;
|
|
3142
|
-
port?: number;
|
|
3143
|
-
periodSeconds?: number;
|
|
3144
|
-
timeoutSeconds?: number;
|
|
3145
|
-
failureThreshold?: number;
|
|
3146
|
-
successThreshold?: number;
|
|
3147
|
-
initialDelaySeconds?: number;
|
|
3148
|
-
}
|
|
3149
|
-
interface DeploymentSshCommandInput {
|
|
3150
|
-
serviceId: string;
|
|
3151
|
-
}
|
|
3152
|
-
interface DeploymentSshCommandOutput {
|
|
3153
|
-
host: string;
|
|
3154
|
-
command: string;
|
|
3155
|
-
username: string;
|
|
3156
|
-
}
|
|
3157
|
-
interface DeploymentSshKeyDeleteInput {
|
|
3158
|
-
id: string;
|
|
3159
|
-
}
|
|
3160
|
-
interface DeploymentSshKeyDeleteOutput {
|
|
3161
|
-
deleted: boolean;
|
|
3162
|
-
}
|
|
3163
|
-
interface DeploymentSshKeyListInput {
|
|
3164
|
-
}
|
|
3165
|
-
type DeploymentSshKeyListOutput = {
|
|
3166
|
-
id: string;
|
|
3167
|
-
algo: string;
|
|
3168
|
-
name: string;
|
|
3169
|
-
scope: ("workspace" | "personal");
|
|
3170
|
-
createdAt: string;
|
|
3171
|
-
productId: string;
|
|
3172
|
-
lastUsedAt: (string | null);
|
|
3173
|
-
ownerIdentityId: string;
|
|
3174
|
-
fingerprintSha256: string;
|
|
3175
|
-
}[];
|
|
3176
|
-
interface DeploymentSshKeyRegisterInput {
|
|
3177
|
-
/**
|
|
3178
|
-
* Human label for the key, e.g. "my-laptop"
|
|
3179
|
-
*/
|
|
3180
|
-
name: string;
|
|
3181
|
-
/**
|
|
3182
|
-
* OpenSSH public key line (ssh-ed25519 / ssh-rsa ...)
|
|
3183
|
-
*/
|
|
3184
|
-
publicKey: string;
|
|
3185
|
-
}
|
|
3186
|
-
interface DeploymentSshKeyRegisterOutput {
|
|
3187
|
-
id: string;
|
|
3188
|
-
algo: string;
|
|
3189
|
-
name: string;
|
|
3190
|
-
scope: ("workspace" | "personal");
|
|
3191
|
-
createdAt: string;
|
|
3192
|
-
productId: string;
|
|
3193
|
-
lastUsedAt: (string | null);
|
|
3194
|
-
ownerIdentityId: string;
|
|
3195
|
-
fingerprintSha256: string;
|
|
3196
|
-
}
|
|
3197
|
-
interface DeploymentVariableListInput {
|
|
3198
|
-
serviceId: string;
|
|
3199
|
-
}
|
|
3200
|
-
type DeploymentVariableListOutput = {
|
|
3201
|
-
id: string;
|
|
3202
|
-
key: string;
|
|
3203
|
-
scope: ("service" | "environment" | "product");
|
|
3204
|
-
value: (string | null);
|
|
3205
|
-
isSecret: boolean;
|
|
3206
|
-
createdAt: string;
|
|
3207
|
-
serviceId: (string | null);
|
|
3208
|
-
updatedAt: string;
|
|
3209
|
-
environmentId: (string | null);
|
|
3210
|
-
}[];
|
|
3211
|
-
interface DeploymentVariableListEnvInput {
|
|
3212
|
-
environmentId: string;
|
|
3213
|
-
}
|
|
3214
|
-
type DeploymentVariableListEnvOutput = {
|
|
3215
|
-
id: string;
|
|
3216
|
-
key: string;
|
|
3217
|
-
scope: ("service" | "environment" | "product");
|
|
3218
|
-
value: (string | null);
|
|
3219
|
-
isSecret: boolean;
|
|
3220
|
-
createdAt: string;
|
|
3221
|
-
serviceId: (string | null);
|
|
3222
|
-
updatedAt: string;
|
|
3223
|
-
environmentId: (string | null);
|
|
3224
|
-
}[];
|
|
3225
|
-
interface DeploymentVariableListProductInput {
|
|
3226
|
-
}
|
|
3227
|
-
type DeploymentVariableListProductOutput = {
|
|
3228
|
-
id: string;
|
|
3229
|
-
key: string;
|
|
3230
|
-
scope: ("service" | "environment" | "product");
|
|
3231
|
-
value: (string | null);
|
|
3232
|
-
isSecret: boolean;
|
|
3233
|
-
createdAt: string;
|
|
3234
|
-
serviceId: (string | null);
|
|
3235
|
-
updatedAt: string;
|
|
3236
|
-
environmentId: (string | null);
|
|
3237
|
-
}[];
|
|
3238
|
-
interface DeploymentVariableSetInput {
|
|
3239
|
-
key: string;
|
|
3240
|
-
value: string;
|
|
3241
|
-
isSecret?: boolean;
|
|
3242
|
-
serviceId: string;
|
|
3243
|
-
}
|
|
3244
|
-
interface DeploymentVariableSetOutput {
|
|
3245
|
-
id: string;
|
|
3246
|
-
key: string;
|
|
3247
|
-
scope: ("service" | "environment" | "product");
|
|
3248
|
-
value: (string | null);
|
|
3249
|
-
isSecret: boolean;
|
|
3250
|
-
createdAt: string;
|
|
3251
|
-
serviceId: (string | null);
|
|
3252
|
-
updatedAt: string;
|
|
3253
|
-
environmentId: (string | null);
|
|
3254
|
-
}
|
|
3255
|
-
interface DeploymentVariableSetEnvInput {
|
|
3256
|
-
key: string;
|
|
3257
|
-
value: string;
|
|
3258
|
-
isSecret?: boolean;
|
|
3259
|
-
environmentId: string;
|
|
3260
|
-
}
|
|
3261
|
-
interface DeploymentVariableSetEnvOutput {
|
|
3262
|
-
id: string;
|
|
3263
|
-
key: string;
|
|
3264
|
-
scope: ("service" | "environment" | "product");
|
|
3265
|
-
value: (string | null);
|
|
3266
|
-
isSecret: boolean;
|
|
3267
|
-
createdAt: string;
|
|
3268
|
-
serviceId: (string | null);
|
|
3269
|
-
updatedAt: string;
|
|
3270
|
-
environmentId: (string | null);
|
|
3271
|
-
}
|
|
3272
|
-
interface DeploymentVariableSetProductInput {
|
|
3273
|
-
key: string;
|
|
3274
|
-
value: string;
|
|
3275
|
-
isSecret?: boolean;
|
|
3276
|
-
}
|
|
3277
|
-
interface DeploymentVariableSetProductOutput {
|
|
3278
|
-
id: string;
|
|
3279
|
-
key: string;
|
|
3280
|
-
scope: ("service" | "environment" | "product");
|
|
3281
|
-
value: (string | null);
|
|
3282
|
-
isSecret: boolean;
|
|
3283
|
-
createdAt: string;
|
|
3284
|
-
serviceId: (string | null);
|
|
3285
|
-
updatedAt: string;
|
|
3286
|
-
environmentId: (string | null);
|
|
3287
|
-
}
|
|
3288
|
-
interface DeploymentVariableUnsetInput {
|
|
3289
|
-
key: string;
|
|
3290
|
-
serviceId: string;
|
|
3291
|
-
}
|
|
3292
|
-
interface DeploymentVariableUnsetOutput {
|
|
3293
|
-
[k: string]: unknown;
|
|
3294
|
-
}
|
|
3295
|
-
interface DeploymentVariableUnsetEnvInput {
|
|
3296
|
-
key: string;
|
|
3297
|
-
environmentId: string;
|
|
3298
|
-
}
|
|
3299
|
-
interface DeploymentVariableUnsetEnvOutput {
|
|
3300
|
-
[k: string]: unknown;
|
|
3301
|
-
}
|
|
3302
|
-
interface DeploymentVariableUnsetProductInput {
|
|
3303
|
-
key: string;
|
|
3304
|
-
}
|
|
3305
|
-
interface DeploymentVariableUnsetProductOutput {
|
|
3306
|
-
[k: string]: unknown;
|
|
3307
|
-
}
|
|
3308
|
-
interface DeploymentVcsBranchListInput {
|
|
3309
|
-
connectorId: string;
|
|
3310
|
-
repoFullName: string;
|
|
3311
|
-
}
|
|
3312
|
-
type DeploymentVcsBranchListOutput = {
|
|
3313
|
-
name: string;
|
|
3314
|
-
commitSha: string;
|
|
3315
|
-
}[];
|
|
3316
|
-
interface DeploymentVcsConnectionListInput {
|
|
3317
|
-
}
|
|
3318
|
-
type DeploymentVcsConnectionListOutput = {
|
|
3319
|
-
status: string;
|
|
3320
|
-
connectorId: string;
|
|
3321
|
-
accountLogin: string;
|
|
3322
|
-
installationId: string;
|
|
3323
|
-
}[];
|
|
3324
|
-
interface DeploymentVcsRepoListInput {
|
|
3325
|
-
page?: number;
|
|
3326
|
-
search?: string;
|
|
3327
|
-
connectorId: string;
|
|
3328
|
-
}
|
|
3329
|
-
type DeploymentVcsRepoListOutput = {
|
|
3330
|
-
private: boolean;
|
|
3331
|
-
fullName: string;
|
|
3332
|
-
defaultBranch: string;
|
|
3333
|
-
}[];
|
|
3334
|
-
interface DeploymentVolumeCreateInput {
|
|
3335
|
-
name: string;
|
|
3336
|
-
slug?: string;
|
|
3337
|
-
sizeGb: number;
|
|
3338
|
-
mountPath: string;
|
|
3339
|
-
environmentId: string;
|
|
3340
|
-
attachedServiceId?: string;
|
|
3341
|
-
}
|
|
3342
|
-
interface DeploymentVolumeCreateOutput {
|
|
3343
|
-
id: string;
|
|
3344
|
-
name: string;
|
|
3345
|
-
slug: string;
|
|
3346
|
-
sizeGb: number;
|
|
3347
|
-
status: ("provisioning" | "ready" | "detached" | "failed");
|
|
3348
|
-
createdAt: string;
|
|
3349
|
-
mountPath: string;
|
|
3350
|
-
updatedAt: string;
|
|
3351
|
-
environmentId: string;
|
|
3352
|
-
lastErrorMessage: (string | null);
|
|
3353
|
-
attachedServiceId: (string | null);
|
|
3354
|
-
}
|
|
3355
|
-
interface DeploymentVolumeDeleteInput {
|
|
3356
|
-
id: string;
|
|
3357
|
-
}
|
|
3358
|
-
interface DeploymentVolumeDeleteOutput {
|
|
3359
|
-
[k: string]: unknown;
|
|
3360
|
-
}
|
|
3361
|
-
interface DeploymentVolumeDetachInput {
|
|
3362
|
-
id: string;
|
|
3363
|
-
}
|
|
3364
|
-
interface DeploymentVolumeDetachOutput {
|
|
3365
|
-
id: string;
|
|
3366
|
-
name: string;
|
|
3367
|
-
slug: string;
|
|
3368
|
-
sizeGb: number;
|
|
3369
|
-
status: ("provisioning" | "ready" | "detached" | "failed");
|
|
3370
|
-
createdAt: string;
|
|
3371
|
-
mountPath: string;
|
|
3372
|
-
updatedAt: string;
|
|
3373
|
-
environmentId: string;
|
|
3374
|
-
lastErrorMessage: (string | null);
|
|
3375
|
-
attachedServiceId: (string | null);
|
|
1112
|
+
catalogKey?: (string | null);
|
|
1113
|
+
orderIndex: number;
|
|
1114
|
+
privacyUrl: (string | null);
|
|
1115
|
+
description: string;
|
|
3376
1116
|
}
|
|
3377
|
-
interface
|
|
1117
|
+
interface ConsentProvidersDeleteInput {
|
|
1118
|
+
/**
|
|
1119
|
+
* Provider id
|
|
1120
|
+
*/
|
|
3378
1121
|
id: string;
|
|
3379
1122
|
}
|
|
3380
|
-
interface
|
|
1123
|
+
interface ConsentProvidersDeleteOutput {
|
|
3381
1124
|
id: string;
|
|
3382
|
-
|
|
3383
|
-
slug: string;
|
|
3384
|
-
sizeGb: number;
|
|
3385
|
-
status: ("provisioning" | "ready" | "detached" | "failed");
|
|
3386
|
-
createdAt: string;
|
|
3387
|
-
mountPath: string;
|
|
3388
|
-
updatedAt: string;
|
|
3389
|
-
environmentId: string;
|
|
3390
|
-
lastErrorMessage: (string | null);
|
|
3391
|
-
attachedServiceId: (string | null);
|
|
1125
|
+
deleted: true;
|
|
3392
1126
|
}
|
|
3393
|
-
interface
|
|
3394
|
-
environmentId: string;
|
|
1127
|
+
interface ConsentProvidersListInput {
|
|
3395
1128
|
}
|
|
3396
|
-
type
|
|
1129
|
+
type ConsentProvidersListOutput = {
|
|
3397
1130
|
id: string;
|
|
3398
1131
|
name: string;
|
|
3399
|
-
|
|
3400
|
-
|
|
3401
|
-
|
|
1132
|
+
hosts: string[];
|
|
1133
|
+
cookies: {
|
|
1134
|
+
id: string;
|
|
1135
|
+
name: string;
|
|
1136
|
+
type: ("http_cookie" | "local_storage" | "session_storage");
|
|
1137
|
+
purpose: string;
|
|
1138
|
+
storageDuration: string;
|
|
1139
|
+
}[];
|
|
1140
|
+
category: ("necessary" | "preferences" | "statistics" | "marketing");
|
|
1141
|
+
isSystem?: boolean;
|
|
3402
1142
|
createdAt: string;
|
|
3403
|
-
mountPath: string;
|
|
3404
1143
|
updatedAt: string;
|
|
3405
|
-
|
|
3406
|
-
|
|
3407
|
-
|
|
1144
|
+
catalogKey?: (string | null);
|
|
1145
|
+
orderIndex: number;
|
|
1146
|
+
privacyUrl: (string | null);
|
|
1147
|
+
description: string;
|
|
3408
1148
|
}[];
|
|
3409
|
-
interface
|
|
1149
|
+
interface ConsentProvidersUpdateInput {
|
|
1150
|
+
/**
|
|
1151
|
+
* Provider id
|
|
1152
|
+
*/
|
|
3410
1153
|
id: string;
|
|
3411
|
-
|
|
1154
|
+
name?: string;
|
|
1155
|
+
/**
|
|
1156
|
+
* If provided, REPLACES the hosts list. Omit to leave unchanged.
|
|
1157
|
+
*
|
|
1158
|
+
* @maxItems 50
|
|
1159
|
+
*/
|
|
1160
|
+
hosts?: string[];
|
|
1161
|
+
/**
|
|
1162
|
+
* If provided, REPLACES the whole cookies set for this provider. Omit to leave unchanged.
|
|
1163
|
+
*
|
|
1164
|
+
* @maxItems 200
|
|
1165
|
+
*/
|
|
1166
|
+
cookies?: {
|
|
1167
|
+
/**
|
|
1168
|
+
* Cookie/storage key name, e.g. "_ga"
|
|
1169
|
+
*/
|
|
1170
|
+
name: string;
|
|
1171
|
+
/**
|
|
1172
|
+
* Storage mechanism — matches CHECK constraint on consent_cookies.type
|
|
1173
|
+
*/
|
|
1174
|
+
type: ("http_cookie" | "local_storage" | "session_storage");
|
|
1175
|
+
/**
|
|
1176
|
+
* Human-readable description of why the cookie is set
|
|
1177
|
+
*/
|
|
1178
|
+
purpose?: string;
|
|
1179
|
+
/**
|
|
1180
|
+
* Duration like "2 years", "session", "30 days"
|
|
1181
|
+
*/
|
|
1182
|
+
storageDuration?: string;
|
|
1183
|
+
}[];
|
|
1184
|
+
/**
|
|
1185
|
+
* Consent category bucket — matches CHECK constraint on consent_providers.category
|
|
1186
|
+
*/
|
|
1187
|
+
category?: ("necessary" | "preferences" | "statistics" | "marketing");
|
|
1188
|
+
orderIndex?: number;
|
|
1189
|
+
/**
|
|
1190
|
+
* null clears the field, undefined leaves it unchanged
|
|
1191
|
+
*/
|
|
1192
|
+
privacyUrl?: (string | null);
|
|
1193
|
+
/**
|
|
1194
|
+
* Pass empty string to clear; undefined leaves unchanged
|
|
1195
|
+
*/
|
|
1196
|
+
description?: string;
|
|
3412
1197
|
}
|
|
3413
|
-
interface
|
|
1198
|
+
interface ConsentProvidersUpdateOutput {
|
|
3414
1199
|
id: string;
|
|
3415
1200
|
name: string;
|
|
3416
|
-
|
|
3417
|
-
|
|
3418
|
-
|
|
1201
|
+
hosts: string[];
|
|
1202
|
+
cookies: {
|
|
1203
|
+
id: string;
|
|
1204
|
+
name: string;
|
|
1205
|
+
type: ("http_cookie" | "local_storage" | "session_storage");
|
|
1206
|
+
purpose: string;
|
|
1207
|
+
storageDuration: string;
|
|
1208
|
+
}[];
|
|
1209
|
+
category: ("necessary" | "preferences" | "statistics" | "marketing");
|
|
1210
|
+
isSystem?: boolean;
|
|
3419
1211
|
createdAt: string;
|
|
3420
|
-
mountPath: string;
|
|
3421
1212
|
updatedAt: string;
|
|
3422
|
-
|
|
3423
|
-
|
|
3424
|
-
|
|
1213
|
+
catalogKey?: (string | null);
|
|
1214
|
+
orderIndex: number;
|
|
1215
|
+
privacyUrl: (string | null);
|
|
1216
|
+
description: string;
|
|
1217
|
+
}
|
|
1218
|
+
interface ConsentRecordsExportInput {
|
|
1219
|
+
/**
|
|
1220
|
+
* Inclusive upper bound for created_at, ISO-8601. Example: "2026-01-01T00:00:00Z". Omit for "up to now".
|
|
1221
|
+
*/
|
|
1222
|
+
to?: string;
|
|
1223
|
+
/**
|
|
1224
|
+
* Inclusive lower bound for created_at (server clock), ISO-8601. Example: "2025-01-01T00:00:00Z". Omit for "from the beginning".
|
|
1225
|
+
*/
|
|
1226
|
+
from?: string;
|
|
1227
|
+
/**
|
|
1228
|
+
* Maximum rows to return inline. Default 1000, hard cap 10000. If more rows match, the response sets truncated=true and includes download_url for the full dataset via HTTP.
|
|
1229
|
+
*/
|
|
1230
|
+
limit?: number;
|
|
1231
|
+
/**
|
|
1232
|
+
* DSAR (Art. 15) lookup: a visitor-presented record_id (the UUID from their consent cookie). When set, the export is filtered to that visitor's full decision chain (transitive closure over replaces_id), scoped to the current product. Omit for a product-wide admin export.
|
|
1233
|
+
*/
|
|
1234
|
+
record_id?: string;
|
|
1235
|
+
}
|
|
1236
|
+
interface ConsentRecordsExportOutput {
|
|
1237
|
+
csv: string;
|
|
1238
|
+
filters: {
|
|
1239
|
+
to: (string | null);
|
|
1240
|
+
from: (string | null);
|
|
1241
|
+
limit: number;
|
|
1242
|
+
};
|
|
1243
|
+
truncated: boolean;
|
|
1244
|
+
total_count: number;
|
|
1245
|
+
download_url?: string;
|
|
1246
|
+
returned_count: number;
|
|
1247
|
+
}
|
|
1248
|
+
interface ConsentStatsGetInput {
|
|
1249
|
+
/**
|
|
1250
|
+
* Time window for aggregation in days, e.g. "30d". Omit to use the server default (30d). Maximum: 365d.
|
|
1251
|
+
*/
|
|
1252
|
+
range?: string;
|
|
1253
|
+
}
|
|
1254
|
+
interface ConsentStatsGetOutput {
|
|
1255
|
+
range: {
|
|
1256
|
+
to: string;
|
|
1257
|
+
from: string;
|
|
1258
|
+
};
|
|
1259
|
+
total: number;
|
|
1260
|
+
custom_pct: number;
|
|
1261
|
+
by_category: {
|
|
1262
|
+
marketing_pct: number;
|
|
1263
|
+
statistics_pct: number;
|
|
1264
|
+
preferences_pct: number;
|
|
1265
|
+
};
|
|
1266
|
+
deny_all_pct: number;
|
|
1267
|
+
accept_all_pct: number;
|
|
3425
1268
|
}
|
|
3426
1269
|
interface MailApikeyCreateInput {
|
|
3427
1270
|
/**
|
|
@@ -12777,6 +10620,7 @@ interface OrganizationProductAcceptInvitationOutput {
|
|
|
12777
10620
|
name: string;
|
|
12778
10621
|
role: string;
|
|
12779
10622
|
slug: string;
|
|
10623
|
+
demoAt: (string | null);
|
|
12780
10624
|
status: string;
|
|
12781
10625
|
blockedAt: (string | null);
|
|
12782
10626
|
createdAt: string;
|
|
@@ -12792,6 +10636,7 @@ interface OrganizationProductCreateOutput {
|
|
|
12792
10636
|
name: string;
|
|
12793
10637
|
role: string;
|
|
12794
10638
|
slug: string;
|
|
10639
|
+
demoAt: (string | null);
|
|
12795
10640
|
status: string;
|
|
12796
10641
|
blockedAt: (string | null);
|
|
12797
10642
|
createdAt: string;
|
|
@@ -12818,6 +10663,7 @@ interface OrganizationProductListOutput {
|
|
|
12818
10663
|
name: string;
|
|
12819
10664
|
role: string;
|
|
12820
10665
|
slug: string;
|
|
10666
|
+
demoAt: (string | null);
|
|
12821
10667
|
status: string;
|
|
12822
10668
|
blockedAt: (string | null);
|
|
12823
10669
|
createdAt: string;
|
|
@@ -12964,194 +10810,6 @@ interface OrganizationSelectOutput {
|
|
|
12964
10810
|
};
|
|
12965
10811
|
activeProductId: (string | null);
|
|
12966
10812
|
}
|
|
12967
|
-
interface PlaygroundAnalyticsOverviewInput {
|
|
12968
|
-
/**
|
|
12969
|
-
* Max records per entity in recent[]; omit for the endpoint default
|
|
12970
|
-
*/
|
|
12971
|
-
limit?: number;
|
|
12972
|
-
}
|
|
12973
|
-
interface PlaygroundAnalyticsOverviewOutput {
|
|
12974
|
-
ok: boolean;
|
|
12975
|
-
minted: boolean;
|
|
12976
|
-
overview?: unknown;
|
|
12977
|
-
http_status: number;
|
|
12978
|
-
}
|
|
12979
|
-
interface PlaygroundBillingEntitlementsInput {
|
|
12980
|
-
}
|
|
12981
|
-
interface PlaygroundBillingEntitlementsOutput {
|
|
12982
|
-
ok: boolean;
|
|
12983
|
-
minted: boolean;
|
|
12984
|
-
http_status: number;
|
|
12985
|
-
entitlements?: unknown;
|
|
12986
|
-
}
|
|
12987
|
-
interface PlaygroundBillingRecordUsageInput {
|
|
12988
|
-
/**
|
|
12989
|
-
* Quantity of events to record against playground-events (SUM); defaults to 1
|
|
12990
|
-
*/
|
|
12991
|
-
value?: number;
|
|
12992
|
-
}
|
|
12993
|
-
interface PlaygroundBillingRecordUsageOutput {
|
|
12994
|
-
minted: boolean;
|
|
12995
|
-
accepted: (number | null);
|
|
12996
|
-
recorded: boolean;
|
|
12997
|
-
duplicates: (number | null);
|
|
12998
|
-
http_status: number;
|
|
12999
|
-
}
|
|
13000
|
-
interface PlaygroundClickupCreateTaskInput {
|
|
13001
|
-
/**
|
|
13002
|
-
* Task title; defaults to a fixture label
|
|
13003
|
-
*/
|
|
13004
|
-
name?: string;
|
|
13005
|
-
/**
|
|
13006
|
-
* ClickUp list id; falls back to CLICKUP_TEST_LIST_ID
|
|
13007
|
-
*/
|
|
13008
|
-
listId?: string;
|
|
13009
|
-
}
|
|
13010
|
-
interface PlaygroundClickupCreateTaskOutput {
|
|
13011
|
-
minted: boolean;
|
|
13012
|
-
task_id: (string | null);
|
|
13013
|
-
list_status: number;
|
|
13014
|
-
vend_status: number;
|
|
13015
|
-
clickup_status: number;
|
|
13016
|
-
installation_count: number;
|
|
13017
|
-
}
|
|
13018
|
-
interface PlaygroundClickupGetLastWebhookInput {
|
|
13019
|
-
}
|
|
13020
|
-
type PlaygroundClickupGetLastWebhookOutput = ({
|
|
13021
|
-
payload: string;
|
|
13022
|
-
event_id: string;
|
|
13023
|
-
provider: string;
|
|
13024
|
-
verified: boolean;
|
|
13025
|
-
product_id: string;
|
|
13026
|
-
occurred_at: string;
|
|
13027
|
-
connector_id: string;
|
|
13028
|
-
clickup_event: (string | null);
|
|
13029
|
-
receipt_count: number;
|
|
13030
|
-
} | {
|
|
13031
|
-
found: false;
|
|
13032
|
-
});
|
|
13033
|
-
interface PlaygroundClickupGetOverviewInput {
|
|
13034
|
-
}
|
|
13035
|
-
interface PlaygroundClickupGetOverviewOutput {
|
|
13036
|
-
team: ({
|
|
13037
|
-
teamId: string;
|
|
13038
|
-
teamName: string;
|
|
13039
|
-
} | null);
|
|
13040
|
-
lists: PlaygroundClickupGetOverviewOutputItems[];
|
|
13041
|
-
tasks: {
|
|
13042
|
-
id: string;
|
|
13043
|
-
name: string;
|
|
13044
|
-
status: (string | null);
|
|
13045
|
-
}[];
|
|
13046
|
-
minted: boolean;
|
|
13047
|
-
spaces: PlaygroundClickupGetOverviewOutputItems[];
|
|
13048
|
-
list_status: number;
|
|
13049
|
-
vend_status: number;
|
|
13050
|
-
lists_status: number;
|
|
13051
|
-
tasks_status: number;
|
|
13052
|
-
spaces_status: number;
|
|
13053
|
-
folders_status: number;
|
|
13054
|
-
installation_count: number;
|
|
13055
|
-
}
|
|
13056
|
-
interface PlaygroundClickupGetOverviewOutputItems {
|
|
13057
|
-
id: string;
|
|
13058
|
-
name: string;
|
|
13059
|
-
}
|
|
13060
|
-
interface PlaygroundGdriveGetLastChangeInput {
|
|
13061
|
-
}
|
|
13062
|
-
type PlaygroundGdriveGetLastChangeOutput = ({
|
|
13063
|
-
file_id: string;
|
|
13064
|
-
removed: boolean;
|
|
13065
|
-
file_name: (string | null);
|
|
13066
|
-
mime_type: (string | null);
|
|
13067
|
-
product_id: string;
|
|
13068
|
-
occurred_at: string;
|
|
13069
|
-
connector_id: string;
|
|
13070
|
-
resource_state: string;
|
|
13071
|
-
} | {
|
|
13072
|
-
found: false;
|
|
13073
|
-
});
|
|
13074
|
-
interface PlaygroundGdriveReadFileInput {
|
|
13075
|
-
/**
|
|
13076
|
-
* Drive file id; falls back to GDRIVE_TEST_FILE_ID, then the first picked file
|
|
13077
|
-
*/
|
|
13078
|
-
fileId?: string;
|
|
13079
|
-
}
|
|
13080
|
-
interface PlaygroundGdriveReadFileOutput {
|
|
13081
|
-
minted: boolean;
|
|
13082
|
-
file_id: (string | null);
|
|
13083
|
-
file_name: (string | null);
|
|
13084
|
-
mime_type: (string | null);
|
|
13085
|
-
file_count: number;
|
|
13086
|
-
get_status: number;
|
|
13087
|
-
list_status: number;
|
|
13088
|
-
vend_status: number;
|
|
13089
|
-
content_bytes: (number | null);
|
|
13090
|
-
}
|
|
13091
|
-
interface PlaygroundGoogleadsReadCustomerInput {
|
|
13092
|
-
}
|
|
13093
|
-
interface PlaygroundGoogleadsReadCustomerOutput {
|
|
13094
|
-
minted: boolean;
|
|
13095
|
-
vended: boolean;
|
|
13096
|
-
customer_id: (string | null);
|
|
13097
|
-
vend_status: number;
|
|
13098
|
-
result_count: number;
|
|
13099
|
-
search_status: number;
|
|
13100
|
-
login_customer_id: (string | null);
|
|
13101
|
-
}
|
|
13102
|
-
interface PlaygroundLifecycleGetStateInput {
|
|
13103
|
-
}
|
|
13104
|
-
interface PlaygroundLifecycleGetStateOutput {
|
|
13105
|
-
blocked: boolean;
|
|
13106
|
-
archived: boolean;
|
|
13107
|
-
productId: string;
|
|
13108
|
-
lastBlockTransition: ({
|
|
13109
|
-
eventId: string;
|
|
13110
|
-
eventName: string;
|
|
13111
|
-
productId: string;
|
|
13112
|
-
occurredAt: string;
|
|
13113
|
-
recordedAt: string;
|
|
13114
|
-
receiptCount: number;
|
|
13115
|
-
organizationId: string;
|
|
13116
|
-
cascadedFromOrg: boolean;
|
|
13117
|
-
} | null);
|
|
13118
|
-
lastArchiveTransition: ({
|
|
13119
|
-
eventId: string;
|
|
13120
|
-
eventName: string;
|
|
13121
|
-
productId: string;
|
|
13122
|
-
occurredAt: string;
|
|
13123
|
-
recordedAt: string;
|
|
13124
|
-
receiptCount: number;
|
|
13125
|
-
organizationId: string;
|
|
13126
|
-
cascadedFromOrg: boolean;
|
|
13127
|
-
} | null);
|
|
13128
|
-
}
|
|
13129
|
-
interface PlaygroundLifecycleListEventsInput {
|
|
13130
|
-
}
|
|
13131
|
-
type PlaygroundLifecycleListEventsOutput = {
|
|
13132
|
-
eventId: string;
|
|
13133
|
-
eventName: string;
|
|
13134
|
-
productId: string;
|
|
13135
|
-
occurredAt: string;
|
|
13136
|
-
recordedAt: string;
|
|
13137
|
-
receiptCount: number;
|
|
13138
|
-
organizationId: string;
|
|
13139
|
-
cascadedFromOrg: boolean;
|
|
13140
|
-
}[];
|
|
13141
|
-
interface PlaygroundWebhookGetLastInput {
|
|
13142
|
-
}
|
|
13143
|
-
type PlaygroundWebhookGetLastOutput = ({
|
|
13144
|
-
payload?: unknown;
|
|
13145
|
-
event_id: string;
|
|
13146
|
-
provider: string;
|
|
13147
|
-
verified: boolean;
|
|
13148
|
-
product_id: string;
|
|
13149
|
-
occurred_at: string;
|
|
13150
|
-
connector_id: string;
|
|
13151
|
-
delivery_count: number;
|
|
13152
|
-
} | {
|
|
13153
|
-
found: false;
|
|
13154
|
-
});
|
|
13155
10813
|
interface TrackingApiKeysCreateInput {
|
|
13156
10814
|
name: string;
|
|
13157
10815
|
}
|
|
@@ -14264,11 +11922,6 @@ interface WaitlistSignupsListOutput {
|
|
|
14264
11922
|
}
|
|
14265
11923
|
|
|
14266
11924
|
interface GeneratedClient {
|
|
14267
|
-
analytics: {
|
|
14268
|
-
query: {
|
|
14269
|
-
run(input: AnalyticsQueryRunInput): Promise<AnalyticsQueryRunOutput>;
|
|
14270
|
-
};
|
|
14271
|
-
};
|
|
14272
11925
|
brain: {
|
|
14273
11926
|
backup: {
|
|
14274
11927
|
create(input: BrainBackupCreateInput): Promise<BrainBackupCreateOutput>;
|
|
@@ -14327,10 +11980,14 @@ interface GeneratedClient {
|
|
|
14327
11980
|
list(input: BrainGdriveConnectionsListInput): Promise<BrainGdriveConnectionsListOutput>;
|
|
14328
11981
|
};
|
|
14329
11982
|
knowledge: {
|
|
11983
|
+
graph(input: BrainKnowledgeGraphInput): Promise<BrainKnowledgeGraphOutput>;
|
|
14330
11984
|
neighborhood(input: BrainKnowledgeNeighborhoodInput): Promise<BrainKnowledgeNeighborhoodOutput>;
|
|
14331
11985
|
relations(input: BrainKnowledgeRelationsInput): Promise<BrainKnowledgeRelationsOutput>;
|
|
14332
11986
|
search(input: BrainKnowledgeSearchInput): Promise<BrainKnowledgeSearchOutput>;
|
|
14333
11987
|
};
|
|
11988
|
+
'knowledge-entity': {
|
|
11989
|
+
memories(input: BrainKnowledgeEntityMemoriesInput): Promise<BrainKnowledgeEntityMemoriesOutput>;
|
|
11990
|
+
};
|
|
14334
11991
|
memory: {
|
|
14335
11992
|
add(input: BrainMemoryAddInput): Promise<BrainMemoryAddOutput>;
|
|
14336
11993
|
delete(input: BrainMemoryDeleteInput): Promise<BrainMemoryDeleteOutput>;
|
|
@@ -14388,187 +12045,6 @@ interface GeneratedClient {
|
|
|
14388
12045
|
get(input: ConsentStatsGetInput): Promise<ConsentStatsGetOutput>;
|
|
14389
12046
|
};
|
|
14390
12047
|
};
|
|
14391
|
-
deployment: {
|
|
14392
|
-
alert: {
|
|
14393
|
-
create(input: DeploymentAlertCreateInput): Promise<DeploymentAlertCreateOutput>;
|
|
14394
|
-
delete(input: DeploymentAlertDeleteInput): Promise<DeploymentAlertDeleteOutput>;
|
|
14395
|
-
list(input: DeploymentAlertListInput): Promise<DeploymentAlertListOutput>;
|
|
14396
|
-
update(input: DeploymentAlertUpdateInput): Promise<DeploymentAlertUpdateOutput>;
|
|
14397
|
-
};
|
|
14398
|
-
'alert-events': {
|
|
14399
|
-
list(input: DeploymentAlertEventsListInput): Promise<DeploymentAlertEventsListOutput>;
|
|
14400
|
-
};
|
|
14401
|
-
analytics: {
|
|
14402
|
-
query(input: DeploymentAnalyticsQueryInput): Promise<DeploymentAnalyticsQueryOutput>;
|
|
14403
|
-
};
|
|
14404
|
-
audit: {
|
|
14405
|
-
list(input: DeploymentAuditListInput): Promise<DeploymentAuditListOutput>;
|
|
14406
|
-
};
|
|
14407
|
-
build: {
|
|
14408
|
-
get(input: DeploymentBuildGetInput): Promise<DeploymentBuildGetOutput>;
|
|
14409
|
-
list(input: DeploymentBuildListInput): Promise<DeploymentBuildListOutput>;
|
|
14410
|
-
logs(input: DeploymentBuildLogsInput): Promise<DeploymentBuildLogsOutput>;
|
|
14411
|
-
};
|
|
14412
|
-
canvas: {
|
|
14413
|
-
get(input: DeploymentCanvasGetInput): Promise<DeploymentCanvasGetOutput>;
|
|
14414
|
-
};
|
|
14415
|
-
'canvas-move': {
|
|
14416
|
-
node(input: DeploymentCanvasMoveNodeInput): Promise<DeploymentCanvasMoveNodeOutput>;
|
|
14417
|
-
};
|
|
14418
|
-
'cloud-sql': {
|
|
14419
|
-
logs(input: DeploymentCloudSqlLogsInput): Promise<DeploymentCloudSqlLogsOutput>;
|
|
14420
|
-
};
|
|
14421
|
-
'cloud-sql-backfill-log': {
|
|
14422
|
-
flags(input: DeploymentCloudSqlBackfillLogFlagsInput): Promise<DeploymentCloudSqlBackfillLogFlagsOutput>;
|
|
14423
|
-
};
|
|
14424
|
-
'cloud-sql-database': {
|
|
14425
|
-
attach(input: DeploymentCloudSqlDatabaseAttachInput): Promise<DeploymentCloudSqlDatabaseAttachOutput>;
|
|
14426
|
-
create(input: DeploymentCloudSqlDatabaseCreateInput): Promise<DeploymentCloudSqlDatabaseCreateOutput>;
|
|
14427
|
-
delete(input: DeploymentCloudSqlDatabaseDeleteInput): Promise<DeploymentCloudSqlDatabaseDeleteOutput>;
|
|
14428
|
-
detach(input: DeploymentCloudSqlDatabaseDetachInput): Promise<DeploymentCloudSqlDatabaseDetachOutput>;
|
|
14429
|
-
get(input: DeploymentCloudSqlDatabaseGetInput): Promise<DeploymentCloudSqlDatabaseGetOutput>;
|
|
14430
|
-
list(input: DeploymentCloudSqlDatabaseListInput): Promise<DeploymentCloudSqlDatabaseListOutput>;
|
|
14431
|
-
};
|
|
14432
|
-
'cloud-sql-instance': {
|
|
14433
|
-
backup(input: DeploymentCloudSqlInstanceBackupInput): Promise<DeploymentCloudSqlInstanceBackupOutput>;
|
|
14434
|
-
create(input: DeploymentCloudSqlInstanceCreateInput): Promise<DeploymentCloudSqlInstanceCreateOutput>;
|
|
14435
|
-
delete(input: DeploymentCloudSqlInstanceDeleteInput): Promise<DeploymentCloudSqlInstanceDeleteOutput>;
|
|
14436
|
-
get(input: DeploymentCloudSqlInstanceGetInput): Promise<DeploymentCloudSqlInstanceGetOutput>;
|
|
14437
|
-
list(input: DeploymentCloudSqlInstanceListInput): Promise<DeploymentCloudSqlInstanceListOutput>;
|
|
14438
|
-
resize(input: DeploymentCloudSqlInstanceResizeInput): Promise<DeploymentCloudSqlInstanceResizeOutput>;
|
|
14439
|
-
restore(input: DeploymentCloudSqlInstanceRestoreInput): Promise<DeploymentCloudSqlInstanceRestoreOutput>;
|
|
14440
|
-
};
|
|
14441
|
-
'cloud-sql-instance-backup': {
|
|
14442
|
-
list(input: DeploymentCloudSqlInstanceBackupListInput): Promise<DeploymentCloudSqlInstanceBackupListOutput>;
|
|
14443
|
-
};
|
|
14444
|
-
deployment: {
|
|
14445
|
-
cancel(input: DeploymentDeploymentCancelInput): Promise<DeploymentDeploymentCancelOutput>;
|
|
14446
|
-
get(input: DeploymentDeploymentGetInput): Promise<DeploymentDeploymentGetOutput>;
|
|
14447
|
-
list(input: DeploymentDeploymentListInput): Promise<DeploymentDeploymentListOutput>;
|
|
14448
|
-
};
|
|
14449
|
-
domain: {
|
|
14450
|
-
add(input: DeploymentDomainAddInput): Promise<DeploymentDomainAddOutput>;
|
|
14451
|
-
get(input: DeploymentDomainGetInput): Promise<DeploymentDomainGetOutput>;
|
|
14452
|
-
list(input: DeploymentDomainListInput): Promise<DeploymentDomainListOutput>;
|
|
14453
|
-
remove(input: DeploymentDomainRemoveInput): Promise<DeploymentDomainRemoveOutput>;
|
|
14454
|
-
verify(input: DeploymentDomainVerifyInput): Promise<DeploymentDomainVerifyOutput>;
|
|
14455
|
-
};
|
|
14456
|
-
'domain-allowed': {
|
|
14457
|
-
list(input: DeploymentDomainAllowedListInput): Promise<DeploymentDomainAllowedListOutput>;
|
|
14458
|
-
};
|
|
14459
|
-
'domain-list-by': {
|
|
14460
|
-
service(input: DeploymentDomainListByServiceInput): Promise<DeploymentDomainListByServiceOutput>;
|
|
14461
|
-
};
|
|
14462
|
-
'domain-redirect': {
|
|
14463
|
-
www(input: DeploymentDomainRedirectWwwInput): Promise<DeploymentDomainRedirectWwwOutput>;
|
|
14464
|
-
};
|
|
14465
|
-
'domain-routes': {
|
|
14466
|
-
add(input: DeploymentDomainRoutesAddInput): Promise<DeploymentDomainRoutesAddOutput>;
|
|
14467
|
-
list(input: DeploymentDomainRoutesListInput): Promise<DeploymentDomainRoutesListOutput>;
|
|
14468
|
-
remove(input: DeploymentDomainRoutesRemoveInput): Promise<DeploymentDomainRoutesRemoveOutput>;
|
|
14469
|
-
update(input: DeploymentDomainRoutesUpdateInput): Promise<DeploymentDomainRoutesUpdateOutput>;
|
|
14470
|
-
};
|
|
14471
|
-
environment: {
|
|
14472
|
-
create(input: DeploymentEnvironmentCreateInput): Promise<DeploymentEnvironmentCreateOutput>;
|
|
14473
|
-
delete(input: DeploymentEnvironmentDeleteInput): Promise<DeploymentEnvironmentDeleteOutput>;
|
|
14474
|
-
fork(input: DeploymentEnvironmentForkInput): Promise<DeploymentEnvironmentForkOutput>;
|
|
14475
|
-
get(input: DeploymentEnvironmentGetInput): Promise<DeploymentEnvironmentGetOutput>;
|
|
14476
|
-
list(input: DeploymentEnvironmentListInput): Promise<DeploymentEnvironmentListOutput>;
|
|
14477
|
-
reconcile(input: DeploymentEnvironmentReconcileInput): Promise<DeploymentEnvironmentReconcileOutput>;
|
|
14478
|
-
update(input: DeploymentEnvironmentUpdateInput): Promise<DeploymentEnvironmentUpdateOutput>;
|
|
14479
|
-
};
|
|
14480
|
-
'events-list-by': {
|
|
14481
|
-
environment(input: DeploymentEventsListByEnvironmentInput): Promise<DeploymentEventsListByEnvironmentOutput>;
|
|
14482
|
-
service(input: DeploymentEventsListByServiceInput): Promise<DeploymentEventsListByServiceOutput>;
|
|
14483
|
-
};
|
|
14484
|
-
'managed-service': {
|
|
14485
|
-
backup(input: DeploymentManagedServiceBackupInput): Promise<DeploymentManagedServiceBackupOutput>;
|
|
14486
|
-
delete(input: DeploymentManagedServiceDeleteInput): Promise<DeploymentManagedServiceDeleteOutput>;
|
|
14487
|
-
get(input: DeploymentManagedServiceGetInput): Promise<DeploymentManagedServiceGetOutput>;
|
|
14488
|
-
list(input: DeploymentManagedServiceListInput): Promise<DeploymentManagedServiceListOutput>;
|
|
14489
|
-
logs(input: DeploymentManagedServiceLogsInput): Promise<DeploymentManagedServiceLogsOutput>;
|
|
14490
|
-
provision(input: DeploymentManagedServiceProvisionInput): Promise<DeploymentManagedServiceProvisionOutput>;
|
|
14491
|
-
reconcile(input: DeploymentManagedServiceReconcileInput): Promise<DeploymentManagedServiceReconcileOutput>;
|
|
14492
|
-
resize(input: DeploymentManagedServiceResizeInput): Promise<DeploymentManagedServiceResizeOutput>;
|
|
14493
|
-
restore(input: DeploymentManagedServiceRestoreInput): Promise<DeploymentManagedServiceRestoreOutput>;
|
|
14494
|
-
start(input: DeploymentManagedServiceStartInput): Promise<DeploymentManagedServiceStartOutput>;
|
|
14495
|
-
stop(input: DeploymentManagedServiceStopInput): Promise<DeploymentManagedServiceStopOutput>;
|
|
14496
|
-
types(input: DeploymentManagedServiceTypesInput): Promise<DeploymentManagedServiceTypesOutput>;
|
|
14497
|
-
};
|
|
14498
|
-
'managed-service-backup': {
|
|
14499
|
-
list(input: DeploymentManagedServiceBackupListInput): Promise<DeploymentManagedServiceBackupListOutput>;
|
|
14500
|
-
};
|
|
14501
|
-
'managed-service-connect': {
|
|
14502
|
-
info(input: DeploymentManagedServiceConnectInfoInput): Promise<DeploymentManagedServiceConnectInfoOutput>;
|
|
14503
|
-
};
|
|
14504
|
-
metrics: {
|
|
14505
|
-
get(input: DeploymentMetricsGetInput): Promise<DeploymentMetricsGetOutput>;
|
|
14506
|
-
};
|
|
14507
|
-
'preview-environment': {
|
|
14508
|
-
create(input: DeploymentPreviewEnvironmentCreateInput): Promise<DeploymentPreviewEnvironmentCreateOutput>;
|
|
14509
|
-
delete(input: DeploymentPreviewEnvironmentDeleteInput): Promise<DeploymentPreviewEnvironmentDeleteOutput>;
|
|
14510
|
-
list(input: DeploymentPreviewEnvironmentListInput): Promise<DeploymentPreviewEnvironmentListOutput>;
|
|
14511
|
-
};
|
|
14512
|
-
'preview-policy': {
|
|
14513
|
-
get(input: DeploymentPreviewPolicyGetInput): Promise<DeploymentPreviewPolicyGetOutput>;
|
|
14514
|
-
set(input: DeploymentPreviewPolicySetInput): Promise<DeploymentPreviewPolicySetOutput>;
|
|
14515
|
-
};
|
|
14516
|
-
service: {
|
|
14517
|
-
create(input: DeploymentServiceCreateInput): Promise<DeploymentServiceCreateOutput>;
|
|
14518
|
-
delete(input: DeploymentServiceDeleteInput): Promise<DeploymentServiceDeleteOutput>;
|
|
14519
|
-
exec(input: DeploymentServiceExecInput): Promise<DeploymentServiceExecOutput>;
|
|
14520
|
-
get(input: DeploymentServiceGetInput): Promise<DeploymentServiceGetOutput>;
|
|
14521
|
-
list(input: DeploymentServiceListInput): Promise<DeploymentServiceListOutput>;
|
|
14522
|
-
logs(input: DeploymentServiceLogsInput): Promise<DeploymentServiceLogsOutput>;
|
|
14523
|
-
redeploy(input: DeploymentServiceRedeployInput): Promise<DeploymentServiceRedeployOutput>;
|
|
14524
|
-
restart(input: DeploymentServiceRestartInput): Promise<DeploymentServiceRestartOutput>;
|
|
14525
|
-
rollback(input: DeploymentServiceRollbackInput): Promise<DeploymentServiceRollbackOutput>;
|
|
14526
|
-
scale(input: DeploymentServiceScaleInput): Promise<DeploymentServiceScaleOutput>;
|
|
14527
|
-
update(input: DeploymentServiceUpdateInput): Promise<DeploymentServiceUpdateOutput>;
|
|
14528
|
-
};
|
|
14529
|
-
ssh: {
|
|
14530
|
-
command(input: DeploymentSshCommandInput): Promise<DeploymentSshCommandOutput>;
|
|
14531
|
-
};
|
|
14532
|
-
'ssh-key': {
|
|
14533
|
-
delete(input: DeploymentSshKeyDeleteInput): Promise<DeploymentSshKeyDeleteOutput>;
|
|
14534
|
-
list(input: DeploymentSshKeyListInput): Promise<DeploymentSshKeyListOutput>;
|
|
14535
|
-
register(input: DeploymentSshKeyRegisterInput): Promise<DeploymentSshKeyRegisterOutput>;
|
|
14536
|
-
};
|
|
14537
|
-
variable: {
|
|
14538
|
-
list(input: DeploymentVariableListInput): Promise<DeploymentVariableListOutput>;
|
|
14539
|
-
set(input: DeploymentVariableSetInput): Promise<DeploymentVariableSetOutput>;
|
|
14540
|
-
unset(input: DeploymentVariableUnsetInput): Promise<DeploymentVariableUnsetOutput>;
|
|
14541
|
-
};
|
|
14542
|
-
'variable-list': {
|
|
14543
|
-
env(input: DeploymentVariableListEnvInput): Promise<DeploymentVariableListEnvOutput>;
|
|
14544
|
-
product(input: DeploymentVariableListProductInput): Promise<DeploymentVariableListProductOutput>;
|
|
14545
|
-
};
|
|
14546
|
-
'variable-set': {
|
|
14547
|
-
env(input: DeploymentVariableSetEnvInput): Promise<DeploymentVariableSetEnvOutput>;
|
|
14548
|
-
product(input: DeploymentVariableSetProductInput): Promise<DeploymentVariableSetProductOutput>;
|
|
14549
|
-
};
|
|
14550
|
-
'variable-unset': {
|
|
14551
|
-
env(input: DeploymentVariableUnsetEnvInput): Promise<DeploymentVariableUnsetEnvOutput>;
|
|
14552
|
-
product(input: DeploymentVariableUnsetProductInput): Promise<DeploymentVariableUnsetProductOutput>;
|
|
14553
|
-
};
|
|
14554
|
-
'vcs-branch': {
|
|
14555
|
-
list(input: DeploymentVcsBranchListInput): Promise<DeploymentVcsBranchListOutput>;
|
|
14556
|
-
};
|
|
14557
|
-
'vcs-connection': {
|
|
14558
|
-
list(input: DeploymentVcsConnectionListInput): Promise<DeploymentVcsConnectionListOutput>;
|
|
14559
|
-
};
|
|
14560
|
-
'vcs-repo': {
|
|
14561
|
-
list(input: DeploymentVcsRepoListInput): Promise<DeploymentVcsRepoListOutput>;
|
|
14562
|
-
};
|
|
14563
|
-
volume: {
|
|
14564
|
-
create(input: DeploymentVolumeCreateInput): Promise<DeploymentVolumeCreateOutput>;
|
|
14565
|
-
delete(input: DeploymentVolumeDeleteInput): Promise<DeploymentVolumeDeleteOutput>;
|
|
14566
|
-
detach(input: DeploymentVolumeDetachInput): Promise<DeploymentVolumeDetachOutput>;
|
|
14567
|
-
get(input: DeploymentVolumeGetInput): Promise<DeploymentVolumeGetOutput>;
|
|
14568
|
-
list(input: DeploymentVolumeListInput): Promise<DeploymentVolumeListOutput>;
|
|
14569
|
-
resize(input: DeploymentVolumeResizeInput): Promise<DeploymentVolumeResizeOutput>;
|
|
14570
|
-
};
|
|
14571
|
-
};
|
|
14572
12048
|
mail: {
|
|
14573
12049
|
apikey: {
|
|
14574
12050
|
create(input: MailApikeyCreateInput): Promise<MailApikeyCreateOutput>;
|
|
@@ -14745,34 +12221,6 @@ interface GeneratedClient {
|
|
|
14745
12221
|
update(input: OrganizationRolesUpdateInput): Promise<OrganizationRolesUpdateOutput>;
|
|
14746
12222
|
};
|
|
14747
12223
|
};
|
|
14748
|
-
playground: {
|
|
14749
|
-
analytics: {
|
|
14750
|
-
overview(input: PlaygroundAnalyticsOverviewInput): Promise<PlaygroundAnalyticsOverviewOutput>;
|
|
14751
|
-
};
|
|
14752
|
-
billing: {
|
|
14753
|
-
entitlements(input: PlaygroundBillingEntitlementsInput): Promise<PlaygroundBillingEntitlementsOutput>;
|
|
14754
|
-
'record-usage'(input: PlaygroundBillingRecordUsageInput): Promise<PlaygroundBillingRecordUsageOutput>;
|
|
14755
|
-
};
|
|
14756
|
-
clickup: {
|
|
14757
|
-
'create-task'(input: PlaygroundClickupCreateTaskInput): Promise<PlaygroundClickupCreateTaskOutput>;
|
|
14758
|
-
'get-last-webhook'(input: PlaygroundClickupGetLastWebhookInput): Promise<PlaygroundClickupGetLastWebhookOutput>;
|
|
14759
|
-
'get-overview'(input: PlaygroundClickupGetOverviewInput): Promise<PlaygroundClickupGetOverviewOutput>;
|
|
14760
|
-
};
|
|
14761
|
-
gdrive: {
|
|
14762
|
-
'get-last-change'(input: PlaygroundGdriveGetLastChangeInput): Promise<PlaygroundGdriveGetLastChangeOutput>;
|
|
14763
|
-
'read-file'(input: PlaygroundGdriveReadFileInput): Promise<PlaygroundGdriveReadFileOutput>;
|
|
14764
|
-
};
|
|
14765
|
-
googleads: {
|
|
14766
|
-
'read-customer'(input: PlaygroundGoogleadsReadCustomerInput): Promise<PlaygroundGoogleadsReadCustomerOutput>;
|
|
14767
|
-
};
|
|
14768
|
-
lifecycle: {
|
|
14769
|
-
'get-state'(input: PlaygroundLifecycleGetStateInput): Promise<PlaygroundLifecycleGetStateOutput>;
|
|
14770
|
-
'list-events'(input: PlaygroundLifecycleListEventsInput): Promise<PlaygroundLifecycleListEventsOutput>;
|
|
14771
|
-
};
|
|
14772
|
-
webhook: {
|
|
14773
|
-
'get-last'(input: PlaygroundWebhookGetLastInput): Promise<PlaygroundWebhookGetLastOutput>;
|
|
14774
|
-
};
|
|
14775
|
-
};
|
|
14776
12224
|
tracking: {
|
|
14777
12225
|
'api-keys': {
|
|
14778
12226
|
create(input: TrackingApiKeysCreateInput): Promise<TrackingApiKeysCreateOutput>;
|
|
@@ -14873,4 +12321,4 @@ interface GeneratedClient {
|
|
|
14873
12321
|
};
|
|
14874
12322
|
}
|
|
14875
12323
|
|
|
14876
|
-
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, TrackingApiKeysCreateOutput 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, TrackingApiKeysCreateInput 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, TrackingProfilesDeleteOutput as i$, TrackingApiKeysListInput as i0, TrackingApiKeysListOutput as i1, TrackingApiKeysRevokeInput as i2, TrackingApiKeysRevokeOutput as i3, TrackingApiKeysRotateInput as i4, TrackingApiKeysRotateOutput as i5, TrackingDomainsCreateInput as i6, TrackingDomainsCreateOutput as i7, TrackingDomainsDeleteInput as i8, TrackingDomainsDeleteOutput as i9, TrackingGoogleadsFeedbackUploadsInput as iA, TrackingGoogleadsFeedbackUploadsOutput as iB, TrackingGoogleadsRoasReportInput as iC, TrackingGoogleadsRoasReportOutput as iD, TrackingGoogleadsSyncNowInput as iE, TrackingGoogleadsSyncNowOutput as iF, TrackingGoogleadsTrackingHealthInput as iG, TrackingGoogleadsTrackingHealthOutput as iH, TrackingGoogleadsUsVsPlatformInput as iI, TrackingGoogleadsUsVsPlatformOutput as iJ, TrackingIdentityHealthInput as iK, TrackingIdentityHealthOutput as iL, TrackingInstallDomainsCreateInput as iM, TrackingInstallDomainsCreateOutput as iN, TrackingInstallDomainsDeleteInput as iO, TrackingInstallDomainsDeleteOutput as iP, TrackingInstallDomainsListInput as iQ, TrackingInstallDomainsListOutput as iR, TrackingLinkDomainsCreateInput as iS, TrackingLinkDomainsCreateOutput as iT, TrackingLinkDomainsDeleteInput as iU, TrackingLinkDomainsDeleteOutput as iV, TrackingLinkDomainsListInput as iW, TrackingLinkDomainsListOutput as iX, TrackingLiveEventsListInput as iY, TrackingLiveEventsListOutput as iZ, TrackingProfilesDeleteInput as i_, TrackingDomainsGetInput as ia, TrackingDomainsGetOutput as ib, TrackingDomainsListInput as ic, TrackingDomainsListOutput as id, TrackingDomainsVerifyInput as ie, TrackingDomainsVerifyOutput as ig, TrackingEventNamesArchiveInput as ih, TrackingEventNamesArchiveOutput as ii, TrackingEventNamesListInput as ij, TrackingEventNamesListOutput as ik, TrackingEventNamesUnarchiveInput as il, TrackingEventNamesUnarchiveOutput as im, TrackingGoogleadsConnectionStatusInput as io, TrackingGoogleadsConnectionStatusOutput as ip, TrackingGoogleadsConversionActionsInput as iq, TrackingGoogleadsConversionActionsOutput as ir, TrackingGoogleadsFeedbackConfigGetInput as is, TrackingGoogleadsFeedbackConfigGetOutput as it, TrackingGoogleadsFeedbackConfigSetInput as iu, TrackingGoogleadsFeedbackConfigSetOutput as iv, TrackingGoogleadsFeedbackRunInput as iw, TrackingGoogleadsFeedbackRunOutput as ix, TrackingGoogleadsFeedbackStatusInput as iy, TrackingGoogleadsFeedbackStatusOutput as iz, BrainClickupChannelsListOutput as j, TrackingProfilesExportInput as j0, TrackingProfilesExportOutput as j1, TrackingProfilesGetInput as j2, TrackingProfilesGetOutput as j3, TrackingProfilesListInput as j4, TrackingProfilesListOutput as j5, TrackingReportsAttributedJourneyInput as j6, TrackingReportsAttributedJourneyOutput as j7, TrackingReportsRevenueBySourceInput as j8, TrackingReportsRevenueBySourceOutput as j9, TrackingReportsSourcePeopleInput as ja, TrackingReportsSourcePeopleOutput as jb, TrackingSnippetsGetInput as jc, TrackingSnippetsGetOutput as jd, WaitlistConfigGetInput as je, WaitlistConfigGetOutput as jf, WaitlistConfigUpsertInput as jg, WaitlistConfigUpsertOutput as jh, WaitlistEmbedGetInput as ji, WaitlistEmbedGetOutput as jj, WaitlistInvitesSendInput as jk, WaitlistInvitesSendOutput as jl, WaitlistSignupsEraseInput as jm, WaitlistSignupsEraseOutput as jn, WaitlistSignupsFunnelInput as jo, WaitlistSignupsFunnelOutput as jp, WaitlistSignupsListInput as jq, WaitlistSignupsListOutput as jr, 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 };
|
|
12324
|
+
export type { BrainKnowledgeEntityMemoriesInput as $, BrainConnectorReposListOutput as A, BrainBackupCreateInput as B, BrainDaemonBatchStatusInput as C, BrainDaemonBatchStatusOutput as D, BrainDaemonCreateInput as E, BrainDaemonCreateOutput as F, GeneratedClient as G, BrainDaemonGetInput as H, BrainDaemonGetOutput as I, BrainDaemonReingestInput as J, BrainDaemonReingestOutput as K, BrainDaemonRemoveInput as L, BrainDaemonRemoveOutput as M, BrainDaemonRunItemsInput as N, BrainDaemonRunItemsOutput as O, BrainDaemonRunInput as P, BrainDaemonRunOutput as Q, BrainDaemonRunsInput as R, BrainDaemonRunsOutput as S, BrainDaemonStatusInput as T, BrainDaemonStatusOutput as U, BrainDaemonUpdateInput as V, BrainDaemonUpdateOutput as W, BrainDaemonsListInput as X, BrainDaemonsListOutput as Y, BrainGdriveConnectionsListInput as Z, BrainGdriveConnectionsListOutput as _, BrainBackupCreateOutput as a, MailAudienceCreateInput as a$, BrainKnowledgeEntityMemoriesOutput as a0, BrainKnowledgeGraphInput as a1, BrainKnowledgeGraphOutput as a2, BrainKnowledgeNeighborhoodInput as a3, BrainKnowledgeNeighborhoodOutput as a4, BrainKnowledgeRelationsInput as a5, BrainKnowledgeRelationsOutput as a6, BrainKnowledgeSearchInput as a7, BrainKnowledgeSearchOutput as a8, BrainMemoryAddInput as a9, ConsentDashboardConfigGetOutput as aA, ConsentDashboardDecisionsListInput as aB, ConsentDashboardDecisionsListOutput as aC, ConsentDashboardEmbedSnippetGetInput as aD, ConsentDashboardEmbedSnippetGetOutput as aE, ConsentDashboardStatsGetInput as aF, ConsentDashboardStatsGetOutput as aG, ConsentEmbedGetInput as aH, ConsentEmbedGetOutput as aI, ConsentProvidersCreateInput as aJ, ConsentProvidersCreateOutput as aK, ConsentProvidersDeleteInput as aL, ConsentProvidersDeleteOutput as aM, ConsentProvidersListInput as aN, ConsentProvidersListOutput as aO, ConsentProvidersUpdateInput as aP, ConsentProvidersUpdateOutput as aQ, ConsentRecordsExportInput as aR, ConsentRecordsExportOutput as aS, ConsentStatsGetInput as aT, ConsentStatsGetOutput as aU, MailApikeyCreateInput as aV, MailApikeyCreateOutput as aW, MailApikeyDeleteInput as aX, MailApikeyDeleteOutput as aY, MailApikeyListInput as aZ, MailApikeyListOutput as a_, BrainMemoryAddOutput as aa, BrainMemoryDeleteInput as ab, BrainMemoryDeleteOutput as ac, BrainMemoryGetInput as ad, BrainMemoryGetOutput as ae, BrainMemoryListInput as af, BrainMemoryListOutput as ag, BrainMemorySearchInput as ah, BrainMemorySearchOutput as ai, BrainMemoryStatsInput as aj, BrainMemoryStatsOutput as ak, BrainMemoryUpdateInput as al, BrainMemoryUpdateOutput as am, BrainProductSharedMemoryResetInput as an, BrainProductSharedMemoryResetOutput as ao, BrainRestoreStatusInput as ap, BrainRestoreStatusOutput as aq, ConsentConfigCookieDomainUpsertInput as ar, ConsentConfigCookieDomainUpsertOutput as as, ConsentConfigCustomizationUpsertInput as at, ConsentConfigCustomizationUpsertOutput as au, ConsentConfigFloatingIconUpsertInput as av, ConsentConfigFloatingIconUpsertOutput as aw, ConsentConfigThemeUpsertInput as ax, ConsentConfigThemeUpsertOutput as ay, ConsentDashboardConfigGetInput as az, BrainBackupRestoreInput as b, MailSuppressionAddOutput as b$, MailAudienceCreateOutput as b0, MailAudienceDeleteInput as b1, MailAudienceDeleteOutput as b2, MailAudienceGetInput as b3, MailAudienceGetOutput as b4, MailAudienceListInput as b5, MailAudienceListOutput as b6, MailAudienceUpdateInput as b7, MailAudienceUpdateOutput as b8, MailBroadcastCancelInput as b9, MailDomainAllowedListOutput as bA, MailDomainCreateInput as bB, MailDomainCreateOutput as bC, MailDomainDeleteInput as bD, MailDomainDeleteOutput as bE, MailDomainGetInput as bF, MailDomainGetOutput as bG, MailDomainListInput as bH, MailDomainListOutput as bI, MailDomainUpdateInput as bJ, MailDomainUpdateOutput as bK, MailDomainVerifyInput as bL, MailDomainVerifyOutput as bM, MailEmailCancelInput as bN, MailEmailCancelOutput as bO, MailEmailGetInput as bP, MailEmailSendBatchInput as bQ, MailEmailSendBatchOutput as bR, MailEmailSendInput as bS, MailEmailSendOutput as bT, MailEmailUpdateInput as bU, MailEmailUpdateOutput as bV, MailReputationGetInput as bW, MailReputationGetOutput as bX, MailStatsGetInput as bY, MailStatsGetOutput as bZ, MailSuppressionAddInput as b_, MailBroadcastCancelOutput as ba, MailBroadcastCreateInput as bb, MailBroadcastCreateOutput as bc, MailBroadcastDeleteInput as bd, MailBroadcastDeleteOutput as be, MailBroadcastGetInput as bf, MailBroadcastGetOutput as bg, MailBroadcastListInput as bh, MailBroadcastListOutput as bi, MailBroadcastQueueInput as bj, MailBroadcastQueueOutput as bk, MailBroadcastStatsInput as bl, MailBroadcastStatsOutput as bm, MailBroadcastUpdateInput as bn, MailBroadcastUpdateOutput as bo, MailContactCreateInput as bp, MailContactCreateOutput as bq, MailContactDeleteInput as br, MailContactDeleteOutput as bs, MailContactGetInput as bt, MailContactGetOutput as bu, MailContactListInput as bv, MailContactListOutput as bw, MailContactUpdateInput as bx, MailContactUpdateOutput as by, MailDomainAllowedListInput as bz, BrainBackupRestoreOutput as c, OrganizationConnectorsRequestInput as c$, MailSuppressionListInput as c0, MailSuppressionListOutput as c1, MailSuppressionRemoveInput as c2, MailSuppressionRemoveOutput as c3, MailTemplateCreateInput as c4, MailTemplateCreateOutput as c5, MailTemplateDeleteInput as c6, MailTemplateDeleteOutput as c7, MailTemplateGetInput as c8, MailTemplateGetOutput as c9, OrganizationClickupInstallOutput as cA, OrganizationClickupListInstallationsInput as cB, OrganizationClickupListInstallationsOutput as cC, OrganizationCloudflareInstallInput as cD, OrganizationCloudflareInstallOutput as cE, OrganizationConnectorsApproveRequestInput as cF, OrganizationConnectorsApproveRequestOutput as cG, OrganizationConnectorsAttachInput as cH, OrganizationConnectorsAttachOutput as cI, OrganizationConnectorsDeleteInput as cJ, OrganizationConnectorsDeleteOutput as cK, OrganizationConnectorsDenyRequestInput as cL, OrganizationConnectorsDenyRequestOutput as cM, OrganizationConnectorsDetachInput as cN, OrganizationConnectorsDetachOutput as cO, OrganizationConnectorsListAttachmentsInput as cP, OrganizationConnectorsListAttachmentsOutput as cQ, OrganizationConnectorsListAvailableInput as cR, OrganizationConnectorsListAvailableOutput as cS, OrganizationConnectorsListOrgInput as cT, OrganizationConnectorsListOrgOutput as cU, OrganizationConnectorsListInput as cV, OrganizationConnectorsListOutput as cW, OrganizationConnectorsListRequestsInput as cX, OrganizationConnectorsListRequestsOutput as cY, OrganizationConnectorsRemoveInput as cZ, OrganizationConnectorsRemoveOutput as c_, MailTemplateListInput as ca, MailTemplateListOutput as cb, MailTemplatePublishInput as cc, MailTemplatePublishOutput as cd, MailTemplateUpdateInput as ce, MailTemplateUpdateOutput as cf, MailUsageGetInput as cg, MailUsageGetOutput as ch, MailWebhookCreateInput as ci, MailWebhookCreateOutput as cj, MailWebhookDeleteInput as ck, MailWebhookDeleteOutput as cl, MailWebhookDeliveriesListInput as cm, MailWebhookDeliveriesListOutput as cn, MailWebhookGetInput as co, MailWebhookGetOutput as cp, MailWebhookListInput as cq, MailWebhookListOutput as cr, MailWebhookUpdateInput as cs, MailWebhookUpdateOutput as ct, MailEmailGetOutput as cu, OrganizationAuthMeInput as cv, OrganizationAuthMeOutput as cw, OrganizationBindingsListInput as cx, OrganizationBindingsListOutput as cy, OrganizationClickupInstallInput as cz, BrainBackupStatusInput as d, OrganizationProductListInvitationsOutput as d$, OrganizationConnectorsRequestOutput as d0, OrganizationCreateInput as d1, OrganizationCreateOutput as d2, OrganizationDomainsAddInput as d3, OrganizationDomainsAddOutput as d4, OrganizationDomainsGetInput as d5, OrganizationDomainsGetOutput as d6, OrganizationDomainsListInput as d7, OrganizationDomainsListOutput as d8, OrganizationDomainsRemoveInput as d9, OrganizationMemberListInvitationsInput as dA, OrganizationMemberListInvitationsOutput as dB, OrganizationMemberListProductAccessInput as dC, OrganizationMemberListProductAccessOutput as dD, OrganizationMemberListInput as dE, OrganizationMemberListOutput as dF, OrganizationMemberRemoveInput as dG, OrganizationMemberRemoveOutput as dH, OrganizationMemberRevokeInvitationInput as dI, OrganizationMemberRevokeInvitationOutput as dJ, OrganizationMemberSetRoleInput as dK, OrganizationMemberSetRoleOutput as dL, OrganizationMemberShareProductInput as dM, OrganizationMemberShareProductOutput as dN, OrganizationMemberUnshareProductInput as dO, OrganizationMemberUnshareProductOutput as dP, OrganizationMembersAssignRoleInput as dQ, OrganizationMembersAssignRoleOutput as dR, OrganizationPermissionCatalogInput as dS, OrganizationPermissionCatalogOutput as dT, OrganizationProductAcceptInvitationInput as dU, OrganizationProductAcceptInvitationOutput as dV, OrganizationProductCreateInput as dW, OrganizationProductCreateOutput as dX, OrganizationProductInviteInput as dY, OrganizationProductInviteOutput as dZ, OrganizationProductListInvitationsInput as d_, OrganizationDomainsRemoveOutput as da, OrganizationExtensionsInstallInput as db, OrganizationExtensionsInstallOutput as dc, OrganizationExtensionsListInstalledInput as dd, OrganizationExtensionsListInstalledOutput as de, OrganizationExtensionsListInput as df, OrganizationExtensionsListOutput as dg, OrganizationExtensionsUninstallInput as dh, OrganizationExtensionsUninstallOutput as di, OrganizationFeedbackSubmitInput as dj, OrganizationFeedbackSubmitOutput as dk, OrganizationGdriveInstallInput as dl, OrganizationGdriveInstallOutput as dm, OrganizationGithubInstallInput as dn, OrganizationGithubInstallOutput as dp, OrganizationGithubListInstallationsInput as dq, OrganizationGithubListInstallationsOutput as dr, OrganizationGoogleadsInstallInput as ds, OrganizationGoogleadsInstallOutput as dt, OrganizationListInput as du, OrganizationListOutput as dv, OrganizationMemberAcceptInviteInput as dw, OrganizationMemberAcceptInviteOutput as dx, OrganizationMemberInviteInput as dy, OrganizationMemberInviteOutput as dz, BrainBackupStatusOutput as e, TrackingGoogleadsSyncNowOutput as e$, OrganizationProductListMembersInput as e0, OrganizationProductListMembersOutput as e1, OrganizationProductListInput as e2, OrganizationProductListOutput as e3, OrganizationProductListRolesInput as e4, OrganizationProductListRolesOutput as e5, OrganizationProductRevokeInvitationInput as e6, OrganizationProductRevokeInvitationOutput as e7, OrganizationProductSelectInput as e8, OrganizationProductSelectOutput as e9, TrackingDomainsListInput as eA, TrackingDomainsListOutput as eB, TrackingDomainsVerifyInput as eC, TrackingDomainsVerifyOutput as eD, TrackingEventNamesArchiveInput as eE, TrackingEventNamesArchiveOutput as eF, TrackingEventNamesListInput as eG, TrackingEventNamesListOutput as eH, TrackingEventNamesUnarchiveInput as eI, TrackingEventNamesUnarchiveOutput as eJ, TrackingGoogleadsConnectionStatusInput as eK, TrackingGoogleadsConnectionStatusOutput as eL, TrackingGoogleadsConversionActionsInput as eM, TrackingGoogleadsConversionActionsOutput as eN, TrackingGoogleadsFeedbackConfigGetInput as eO, TrackingGoogleadsFeedbackConfigGetOutput as eP, TrackingGoogleadsFeedbackConfigSetInput as eQ, TrackingGoogleadsFeedbackConfigSetOutput as eR, TrackingGoogleadsFeedbackRunInput as eS, TrackingGoogleadsFeedbackRunOutput as eT, TrackingGoogleadsFeedbackStatusInput as eU, TrackingGoogleadsFeedbackStatusOutput as eV, TrackingGoogleadsFeedbackUploadsInput as eW, TrackingGoogleadsFeedbackUploadsOutput as eX, TrackingGoogleadsRoasReportInput as eY, TrackingGoogleadsRoasReportOutput as eZ, TrackingGoogleadsSyncNowInput as e_, OrganizationRolesCreateInput as ea, OrganizationRolesCreateOutput as eb, OrganizationRolesDeleteInput as ec, OrganizationRolesDeleteOutput as ed, OrganizationRolesGetInput as ee, OrganizationRolesGetOutput as ef, OrganizationRolesListInput as eg, OrganizationRolesListOutput as eh, OrganizationRolesUpdateInput as ei, OrganizationRolesUpdateOutput as ej, OrganizationSelectInput as ek, OrganizationSelectOutput as el, TrackingApiKeysCreateInput as em, TrackingApiKeysCreateOutput as en, TrackingApiKeysListInput as eo, TrackingApiKeysListOutput as ep, TrackingApiKeysRevokeInput as eq, TrackingApiKeysRevokeOutput as er, TrackingApiKeysRotateInput as es, TrackingApiKeysRotateOutput as et, TrackingDomainsCreateInput as eu, TrackingDomainsCreateOutput as ev, TrackingDomainsDeleteInput as ew, TrackingDomainsDeleteOutput as ex, TrackingDomainsGetInput as ey, TrackingDomainsGetOutput as ez, BrainBackupsListInput as f, TrackingGoogleadsTrackingHealthInput as f0, TrackingGoogleadsTrackingHealthOutput as f1, TrackingGoogleadsUsVsPlatformInput as f2, TrackingGoogleadsUsVsPlatformOutput as f3, TrackingIdentityHealthInput as f4, TrackingIdentityHealthOutput as f5, TrackingInstallDomainsCreateInput as f6, TrackingInstallDomainsCreateOutput as f7, TrackingInstallDomainsDeleteInput as f8, TrackingInstallDomainsDeleteOutput as f9, WaitlistConfigGetInput as fA, WaitlistConfigGetOutput as fB, WaitlistConfigUpsertInput as fC, WaitlistConfigUpsertOutput as fD, WaitlistEmbedGetInput as fE, WaitlistEmbedGetOutput as fF, WaitlistInvitesSendInput as fG, WaitlistInvitesSendOutput as fH, WaitlistSignupsEraseInput as fI, WaitlistSignupsEraseOutput as fJ, WaitlistSignupsFunnelInput as fK, WaitlistSignupsFunnelOutput as fL, WaitlistSignupsListInput as fM, WaitlistSignupsListOutput as fN, TrackingInstallDomainsListInput as fa, TrackingInstallDomainsListOutput as fb, TrackingLinkDomainsCreateInput as fc, TrackingLinkDomainsCreateOutput as fd, TrackingLinkDomainsDeleteInput as fe, TrackingLinkDomainsDeleteOutput as ff, TrackingLinkDomainsListInput as fg, TrackingLinkDomainsListOutput as fh, TrackingLiveEventsListInput as fi, TrackingLiveEventsListOutput as fj, TrackingProfilesDeleteInput as fk, TrackingProfilesDeleteOutput as fl, TrackingProfilesExportInput as fm, TrackingProfilesExportOutput as fn, TrackingProfilesGetInput as fo, TrackingProfilesGetOutput as fp, TrackingProfilesListInput as fq, TrackingProfilesListOutput as fr, TrackingReportsAttributedJourneyInput as fs, TrackingReportsAttributedJourneyOutput as ft, TrackingReportsRevenueBySourceInput as fu, TrackingReportsRevenueBySourceOutput as fv, TrackingReportsSourcePeopleInput as fw, TrackingReportsSourcePeopleOutput as fx, TrackingSnippetsGetInput as fy, TrackingSnippetsGetOutput as fz, BrainBackupsListOutput as g, BrainClickupChannelsListInput as h, BrainClickupChannelsListOutput as i, BrainClickupConnectionsListInput as j, BrainClickupConnectionsListOutput as k, BrainClickupListsListInput as l, BrainClickupListsListOutput as m, BrainClickupSpacesListInput as n, BrainClickupSpacesListOutput as o, BrainCognitionDigestInput as p, BrainCognitionDigestOutput as q, BrainCognitionStatusInput as r, BrainCognitionStatusOutput as s, BrainCognitionSweepInput as t, BrainCognitionSweepOutput as u, BrainConnectorBranchesListInput as v, BrainConnectorBranchesListOutput as w, BrainConnectorConnectionsListInput as x, BrainConnectorConnectionsListOutput as y, BrainConnectorReposListInput as z };
|