@lessly/sdk-app 42.1.0 → 43.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.
Files changed (44) hide show
  1. package/dist/analytics/index.d.cts +1 -1
  2. package/dist/analytics/index.d.ts +1 -1
  3. package/dist/brain/index.d.cts +1 -1
  4. package/dist/brain/index.d.ts +1 -1
  5. package/dist/{client.gen-BsYUM5lP.d.cts → client.gen-BE8VaNrU.d.cts} +259 -1
  6. package/dist/{client.gen-BsYUM5lP.d.ts → client.gen-BE8VaNrU.d.ts} +259 -1
  7. package/dist/consent/index.d.cts +1 -1
  8. package/dist/consent/index.d.ts +1 -1
  9. package/dist/deployment/index.d.cts +1 -1
  10. package/dist/deployment/index.d.ts +1 -1
  11. package/dist/index.cjs +49 -0
  12. package/dist/index.cjs.map +1 -1
  13. package/dist/index.d.cts +1 -1
  14. package/dist/index.d.ts +1 -1
  15. package/dist/index.js +49 -0
  16. package/dist/index.js.map +1 -1
  17. package/dist/mail/index.d.cts +2 -2
  18. package/dist/mail/index.d.ts +2 -2
  19. package/dist/observe/index.cjs +15 -0
  20. package/dist/observe/index.cjs.map +1 -1
  21. package/dist/observe/index.d.cts +14 -2
  22. package/dist/observe/index.d.ts +14 -2
  23. package/dist/observe/index.js +13 -1
  24. package/dist/observe/index.js.map +1 -1
  25. package/dist/organization/index.d.cts +1 -1
  26. package/dist/organization/index.d.ts +1 -1
  27. package/dist/playground/index.d.cts +1 -1
  28. package/dist/playground/index.d.ts +1 -1
  29. package/dist/realtime/index.d.cts +1 -1
  30. package/dist/realtime/index.d.ts +1 -1
  31. package/dist/support/index.d.cts +1 -1
  32. package/dist/support/index.d.ts +1 -1
  33. package/dist/tracking/index.d.cts +1 -1
  34. package/dist/tracking/index.d.ts +1 -1
  35. package/dist/users/index.d.cts +1 -1
  36. package/dist/users/index.d.ts +1 -1
  37. package/dist/waitlist/index.d.cts +1 -1
  38. package/dist/waitlist/index.d.ts +1 -1
  39. package/package.json +2 -2
  40. package/src/gen/bindings.gen.ts +49 -0
  41. package/src/gen/client.gen.ts +9 -0
  42. package/src/gen/observe/index.ts +1 -1
  43. package/src/gen/observe/queryOptions.gen.ts +21 -0
  44. package/src/gen/types.gen.ts +261 -0
@@ -12972,6 +12972,10 @@ interface ObserveIssuesArchiveOutput {
12972
12972
  * Where the error appears to come from, or null
12973
12973
  */
12974
12974
  culprit: (string | null);
12975
+ /**
12976
+ * Service the most recent event came from, or null if none was reported
12977
+ */
12978
+ service: (string | null);
12975
12979
  /**
12976
12980
  * Who owns the issue, or null if unassigned
12977
12981
  */
@@ -13004,6 +13008,14 @@ interface ObserveIssuesArchiveOutput {
13004
13008
  * Stable grouping hash the issue is keyed on
13005
13009
  */
13006
13010
  fingerprint: string;
13011
+ /**
13012
+ * Identifier of the most recent event that landed on the issue, or null for issues rolled up before this was recorded
13013
+ */
13014
+ lastEventId: (string | null);
13015
+ /**
13016
+ * Release the most recent event was reported from, or null if none was reported
13017
+ */
13018
+ lastRelease: (string | null);
13007
13019
  /**
13008
13020
  * ISO 8601 timestamp of the last regression, or null if it never regressed
13009
13021
  */
@@ -13048,6 +13060,10 @@ interface ObserveIssuesAssignOutput {
13048
13060
  * Where the error appears to come from, or null
13049
13061
  */
13050
13062
  culprit: (string | null);
13063
+ /**
13064
+ * Service the most recent event came from, or null if none was reported
13065
+ */
13066
+ service: (string | null);
13051
13067
  /**
13052
13068
  * Who owns the issue, or null if unassigned
13053
13069
  */
@@ -13080,6 +13096,14 @@ interface ObserveIssuesAssignOutput {
13080
13096
  * Stable grouping hash the issue is keyed on
13081
13097
  */
13082
13098
  fingerprint: string;
13099
+ /**
13100
+ * Identifier of the most recent event that landed on the issue, or null for issues rolled up before this was recorded
13101
+ */
13102
+ lastEventId: (string | null);
13103
+ /**
13104
+ * Release the most recent event was reported from, or null if none was reported
13105
+ */
13106
+ lastRelease: (string | null);
13083
13107
  /**
13084
13108
  * ISO 8601 timestamp of the last regression, or null if it never regressed
13085
13109
  */
@@ -13097,6 +13121,160 @@ interface ObserveIssuesAssignOutput {
13097
13121
  */
13098
13122
  groupingVersion: string;
13099
13123
  }
13124
+ interface ObserveIssuesEventInput {
13125
+ /**
13126
+ * Identifier of the issue
13127
+ */
13128
+ id: string;
13129
+ /**
13130
+ * Which event to read; omit to read the most recent one. Must be an event of this issue
13131
+ */
13132
+ eventId?: string;
13133
+ }
13134
+ interface ObserveIssuesEventOutput {
13135
+ /**
13136
+ * The event, or null when the issue has no event id or the event is no longer stored — events live 30 days and an issue outlives them. Neither case is an error
13137
+ */
13138
+ event: ({
13139
+ /**
13140
+ * Distribution of the release. Sentry-source events only
13141
+ */
13142
+ dist: (string | null);
13143
+ /**
13144
+ * Tags the emitter attached; empty when it attached none
13145
+ */
13146
+ tags: {
13147
+ [k: string]: string;
13148
+ };
13149
+ /**
13150
+ * Severity the emitter reported. Always null for an OTel event
13151
+ */
13152
+ level: (string | null);
13153
+ /**
13154
+ * Span the event belongs to, or null when untraced
13155
+ */
13156
+ spanId: (string | null);
13157
+ /**
13158
+ * Release the event was reported from. Always null for an OTel event — a span carries no release
13159
+ */
13160
+ release: (string | null);
13161
+ /**
13162
+ * SDK that reported the event. Always null for an OTel event: a span names its instrumentation scope, which is not the SDK
13163
+ */
13164
+ sdkName: (string | null);
13165
+ /**
13166
+ * Service the event came from, or null
13167
+ */
13168
+ service: (string | null);
13169
+ /**
13170
+ * Trace the event belongs to, or null when untraced
13171
+ */
13172
+ traceId: (string | null);
13173
+ /**
13174
+ * Full URL of the span, from url.full or the legacy http.url. Null when the span carries neither
13175
+ */
13176
+ urlFull: (string | null);
13177
+ /**
13178
+ * The event contexts exactly as stored, unparsed. Sentry-source events only, null for OTel
13179
+ */
13180
+ contexts: (string | null);
13181
+ /**
13182
+ * Platform the emitter reported. Always null for an OTel event
13183
+ */
13184
+ platform: (string | null);
13185
+ /**
13186
+ * Name of the span the exception happened in. OTel-source events only
13187
+ */
13188
+ spanName: (string | null);
13189
+ /**
13190
+ * Matched route template of the span, from http.route. Null when the span carries none
13191
+ */
13192
+ httpRoute: (string | null);
13193
+ /**
13194
+ * Attributes of that span. OTel-source events only, null for Sentry
13195
+ */
13196
+ attributes: ({
13197
+ [k: string]: string;
13198
+ } | null);
13199
+ /**
13200
+ * HTTP method of the span, from http.request.method or the legacy http.method. Null when the span carries neither
13201
+ */
13202
+ httpMethod: (string | null);
13203
+ /**
13204
+ * ISO 8601 timestamp of the event. For an OTel event this is the exception itself, not the start of the span it happened in
13205
+ */
13206
+ occurredAt: string;
13207
+ /**
13208
+ * Version of that SDK, or null
13209
+ */
13210
+ sdkVersion: (string | null);
13211
+ /**
13212
+ * The breadcrumb trail exactly as stored, unparsed. Sentry-source events only, null for OTel
13213
+ */
13214
+ breadcrumbs: (string | null);
13215
+ /**
13216
+ * Environment the event was reported in, or null
13217
+ */
13218
+ environment: (string | null);
13219
+ /**
13220
+ * Address the span was talking to, from server.address or the legacy net.peer.name. Null when the span carries neither
13221
+ */
13222
+ serverAddress: (string | null);
13223
+ /**
13224
+ * Response status of the span, from http.response.status_code or the legacy http.status_code. Null when the span carries neither or the value is not a number
13225
+ */
13226
+ httpStatusCode: (number | null);
13227
+ } | null);
13228
+ /**
13229
+ * Which store the event id addresses, derived from its shape. Null when there is no event id
13230
+ */
13231
+ source: (("sentry" | "otel") | null);
13232
+ /**
13233
+ * Identifier of the event that was read, or null when the issue has recorded no event id yet
13234
+ */
13235
+ eventId: (string | null);
13236
+ /**
13237
+ * Identifier of the issue the event belongs to
13238
+ */
13239
+ issueId: string;
13240
+ }
13241
+ interface ObserveIssuesEventsInput {
13242
+ /**
13243
+ * Identifier of the issue
13244
+ */
13245
+ id: string;
13246
+ /**
13247
+ * How many events to return, newest first. 1-100, default 50
13248
+ */
13249
+ limit?: number;
13250
+ /**
13251
+ * The nextCursor of the previous page; omit for the first page
13252
+ */
13253
+ cursor?: string;
13254
+ }
13255
+ interface ObserveIssuesEventsOutput {
13256
+ /**
13257
+ * The events, newest first
13258
+ */
13259
+ rows: {
13260
+ /**
13261
+ * Which store the event id addresses
13262
+ */
13263
+ source: ("sentry" | "otel");
13264
+ /**
13265
+ * Identifier of the event; pass it to observe_issues_event to open it
13266
+ */
13267
+ eventId: string;
13268
+ /**
13269
+ * ISO 8601 timestamp of the event
13270
+ */
13271
+ occurredAt: string;
13272
+ }[];
13273
+ /**
13274
+ * Pass back as cursor for the next page; null when the last page was reached
13275
+ */
13276
+ nextCursor: (string | null);
13277
+ }
13100
13278
  interface ObserveIssuesGetInput {
13101
13279
  /**
13102
13280
  * Identifier of the issue
@@ -13162,6 +13340,10 @@ interface ObserveIssuesGetOutput {
13162
13340
  * Where the error appears to come from, or null
13163
13341
  */
13164
13342
  culprit: (string | null);
13343
+ /**
13344
+ * Service the most recent event came from, or null if none was reported
13345
+ */
13346
+ service: (string | null);
13165
13347
  /**
13166
13348
  * Who owns the issue, or null if unassigned
13167
13349
  */
@@ -13194,6 +13376,14 @@ interface ObserveIssuesGetOutput {
13194
13376
  * Stable grouping hash the issue is keyed on
13195
13377
  */
13196
13378
  fingerprint: string;
13379
+ /**
13380
+ * Identifier of the most recent event that landed on the issue, or null for issues rolled up before this was recorded
13381
+ */
13382
+ lastEventId: (string | null);
13383
+ /**
13384
+ * Release the most recent event was reported from, or null if none was reported
13385
+ */
13386
+ lastRelease: (string | null);
13197
13387
  /**
13198
13388
  * ISO 8601 timestamp of the last regression, or null if it never regressed
13199
13389
  */
@@ -13211,6 +13401,47 @@ interface ObserveIssuesGetOutput {
13211
13401
  */
13212
13402
  groupingVersion: string;
13213
13403
  }
13404
+ interface ObserveIssuesHistogramInput {
13405
+ /**
13406
+ * Identifier of the issue
13407
+ */
13408
+ id: string;
13409
+ /**
13410
+ * How far back to count, e.g. "1h", "24h", "7d". Up to 30d, default "24h"
13411
+ */
13412
+ window?: string;
13413
+ }
13414
+ interface ObserveIssuesHistogramOutput {
13415
+ /**
13416
+ * ISO 8601 end of the last bucket, exclusive
13417
+ */
13418
+ to: string;
13419
+ /**
13420
+ * ISO 8601 start of the first bucket
13421
+ */
13422
+ from: string;
13423
+ /**
13424
+ * The window that was counted, e.g. "24h"
13425
+ */
13426
+ window: string;
13427
+ /**
13428
+ * Every bucket of the window, oldest first. Quiet buckets are zeros, never gaps
13429
+ */
13430
+ buckets: {
13431
+ /**
13432
+ * How many events landed on the issue inside it; zero is a real answer
13433
+ */
13434
+ count: number;
13435
+ /**
13436
+ * ISO 8601 start of the bucket
13437
+ */
13438
+ bucket: string;
13439
+ }[];
13440
+ /**
13441
+ * Width of one bucket in seconds, derived from the window
13442
+ */
13443
+ bucketSeconds: number;
13444
+ }
13214
13445
  interface ObserveIssuesListInput {
13215
13446
  /**
13216
13447
  * How many issues to return, most recently seen first. 1-200, default 50
@@ -13242,6 +13473,10 @@ type ObserveIssuesListOutput = {
13242
13473
  * Where the error appears to come from, or null
13243
13474
  */
13244
13475
  culprit: (string | null);
13476
+ /**
13477
+ * Service the most recent event came from, or null if none was reported
13478
+ */
13479
+ service: (string | null);
13245
13480
  /**
13246
13481
  * Who owns the issue, or null if unassigned
13247
13482
  */
@@ -13274,6 +13509,14 @@ type ObserveIssuesListOutput = {
13274
13509
  * Stable grouping hash the issue is keyed on
13275
13510
  */
13276
13511
  fingerprint: string;
13512
+ /**
13513
+ * Identifier of the most recent event that landed on the issue, or null for issues rolled up before this was recorded
13514
+ */
13515
+ lastEventId: (string | null);
13516
+ /**
13517
+ * Release the most recent event was reported from, or null if none was reported
13518
+ */
13519
+ lastRelease: (string | null);
13277
13520
  /**
13278
13521
  * ISO 8601 timestamp of the last regression, or null if it never regressed
13279
13522
  */
@@ -13314,6 +13557,10 @@ interface ObserveIssuesResolveOutput {
13314
13557
  * Where the error appears to come from, or null
13315
13558
  */
13316
13559
  culprit: (string | null);
13560
+ /**
13561
+ * Service the most recent event came from, or null if none was reported
13562
+ */
13563
+ service: (string | null);
13317
13564
  /**
13318
13565
  * Who owns the issue, or null if unassigned
13319
13566
  */
@@ -13346,6 +13593,14 @@ interface ObserveIssuesResolveOutput {
13346
13593
  * Stable grouping hash the issue is keyed on
13347
13594
  */
13348
13595
  fingerprint: string;
13596
+ /**
13597
+ * Identifier of the most recent event that landed on the issue, or null for issues rolled up before this was recorded
13598
+ */
13599
+ lastEventId: (string | null);
13600
+ /**
13601
+ * Release the most recent event was reported from, or null if none was reported
13602
+ */
13603
+ lastRelease: (string | null);
13349
13604
  /**
13350
13605
  * ISO 8601 timestamp of the last regression, or null if it never regressed
13351
13606
  */
@@ -41870,7 +42125,10 @@ interface GeneratedClient {
41870
42125
  issues: {
41871
42126
  archive(input: ObserveIssuesArchiveInput): Promise<ObserveIssuesArchiveOutput>;
41872
42127
  assign(input: ObserveIssuesAssignInput): Promise<ObserveIssuesAssignOutput>;
42128
+ event(input: ObserveIssuesEventInput): Promise<ObserveIssuesEventOutput>;
42129
+ events(input: ObserveIssuesEventsInput): Promise<ObserveIssuesEventsOutput>;
41873
42130
  get(input: ObserveIssuesGetInput): Promise<ObserveIssuesGetOutput>;
42131
+ histogram(input: ObserveIssuesHistogramInput): Promise<ObserveIssuesHistogramOutput>;
41874
42132
  list(input: ObserveIssuesListInput): Promise<ObserveIssuesListOutput>;
41875
42133
  resolve(input: ObserveIssuesResolveInput): Promise<ObserveIssuesResolveOutput>;
41876
42134
  };
@@ -42357,4 +42615,4 @@ interface GeneratedClient {
42357
42615
  };
42358
42616
  }
42359
42617
 
42360
- export type { BrainGdriveConnectionsListInput as $, AnalyticsQueryRunInput as A, BrainBackupCreateInput as B, BrainConnectorReposListInput as C, BrainConnectorReposListOutput as D, BrainDaemonBatchStatusInput as E, BrainDaemonBatchStatusOutput as F, GeneratedClient as G, BrainDaemonCreateInput as H, BrainDaemonCreateOutput as I, BrainDaemonGetInput as J, BrainDaemonGetOutput as K, BrainDaemonReingestInput as L, BrainDaemonReingestOutput as M, BrainDaemonRemoveInput as N, BrainDaemonRemoveOutput as O, BrainDaemonRunItemsInput as P, BrainDaemonRunItemsOutput as Q, BrainDaemonRunInput as R, BrainDaemonRunOutput as S, BrainDaemonRunsInput as T, BrainDaemonRunsOutput as U, BrainDaemonStatusInput as V, BrainDaemonStatusOutput as W, BrainDaemonUpdateInput as X, BrainDaemonUpdateOutput as Y, BrainDaemonsListInput as Z, BrainDaemonsListOutput as _, AnalyticsQueryRunOutput as a, DeploymentAlertEventsListInput as a$, BrainGdriveConnectionsListOutput as a0, BrainKnowledgeEntityMemoriesInput as a1, BrainKnowledgeEntityMemoriesOutput as a2, BrainKnowledgeGraphInput as a3, BrainKnowledgeGraphOutput as a4, BrainKnowledgeNeighborhoodInput as a5, BrainKnowledgeNeighborhoodOutput as a6, BrainKnowledgeRelationsInput as a7, BrainKnowledgeRelationsOutput as a8, BrainKnowledgeSearchInput as a9, ConsentConfigThemeUpsertOutput as aA, ConsentDashboardConfigGetInput as aB, ConsentDashboardConfigGetOutput as aC, ConsentDashboardDecisionsListInput as aD, ConsentDashboardDecisionsListOutput as aE, ConsentDashboardEmbedSnippetGetInput as aF, ConsentDashboardEmbedSnippetGetOutput as aG, ConsentDashboardStatsGetInput as aH, ConsentDashboardStatsGetOutput as aI, ConsentEmbedGetInput as aJ, ConsentEmbedGetOutput as aK, ConsentProvidersCreateInput as aL, ConsentProvidersCreateOutput as aM, ConsentProvidersDeleteInput as aN, ConsentProvidersDeleteOutput as aO, ConsentProvidersListInput as aP, ConsentProvidersListOutput as aQ, ConsentProvidersUpdateInput as aR, ConsentProvidersUpdateOutput as aS, ConsentRecordsExportInput as aT, ConsentRecordsExportOutput as aU, ConsentStatsGetInput as aV, ConsentStatsGetOutput as aW, DeploymentAlertCreateInput as aX, DeploymentAlertCreateOutput as aY, DeploymentAlertDeleteInput as aZ, DeploymentAlertDeleteOutput as a_, BrainKnowledgeSearchOutput as aa, BrainMemoryAddInput as ab, BrainMemoryAddOutput as ac, BrainMemoryDeleteInput as ad, BrainMemoryDeleteOutput as ae, BrainMemoryGetInput as af, BrainMemoryGetOutput as ag, BrainMemoryListInput as ah, BrainMemoryListOutput as ai, BrainMemorySearchInput as aj, BrainMemorySearchOutput as ak, BrainMemoryStatsInput as al, BrainMemoryStatsOutput as am, BrainMemoryUpdateInput as an, BrainMemoryUpdateOutput as ao, BrainProductSharedMemoryResetInput as ap, BrainProductSharedMemoryResetOutput as aq, BrainRestoreStatusInput as ar, BrainRestoreStatusOutput as as, ConsentConfigCookieDomainUpsertInput as at, ConsentConfigCookieDomainUpsertOutput as au, ConsentConfigCustomizationUpsertInput as av, ConsentConfigCustomizationUpsertOutput as aw, ConsentConfigFloatingIconUpsertInput as ax, ConsentConfigFloatingIconUpsertOutput as ay, ConsentConfigThemeUpsertInput as az, BrainBackupCreateOutput as b, DeploymentDomainListByServiceInput as b$, DeploymentAlertEventsListOutput as b0, DeploymentAlertListInput as b1, DeploymentAlertListOutput as b2, DeploymentAlertUpdateInput as b3, DeploymentAlertUpdateOutput as b4, DeploymentAnalyticsQueryInput as b5, DeploymentAnalyticsQueryOutput as b6, DeploymentAuditListInput as b7, DeploymentAuditListOutput as b8, DeploymentBuildGetInput as b9, DeploymentCloudSqlInstanceBackupOutput as bA, DeploymentCloudSqlInstanceCreateInput as bB, DeploymentCloudSqlInstanceCreateOutput as bC, DeploymentCloudSqlInstanceDeleteInput as bD, DeploymentCloudSqlInstanceDeleteOutput as bE, DeploymentCloudSqlInstanceGetInput as bF, DeploymentCloudSqlInstanceGetOutput as bG, DeploymentCloudSqlInstanceListInput as bH, DeploymentCloudSqlInstanceListOutput as bI, DeploymentCloudSqlInstanceResizeInput as bJ, DeploymentCloudSqlInstanceResizeOutput as bK, DeploymentCloudSqlInstanceRestoreInput as bL, DeploymentCloudSqlInstanceRestoreOutput as bM, DeploymentCloudSqlLogsInput as bN, DeploymentCloudSqlLogsOutput as bO, DeploymentDeploymentCancelInput as bP, DeploymentDeploymentCancelOutput as bQ, DeploymentDeploymentGetInput as bR, DeploymentDeploymentGetOutput as bS, DeploymentDeploymentListInput as bT, DeploymentDeploymentListOutput as bU, DeploymentDomainAddInput as bV, DeploymentDomainAddOutput as bW, DeploymentDomainAllowedListInput as bX, DeploymentDomainAllowedListOutput as bY, DeploymentDomainGetInput as bZ, DeploymentDomainGetOutput as b_, DeploymentBuildGetOutput as ba, DeploymentBuildListInput as bb, DeploymentBuildListOutput as bc, DeploymentBuildLogsInput as bd, DeploymentBuildLogsOutput as be, DeploymentCanvasGetInput as bf, DeploymentCanvasGetOutput as bg, DeploymentCanvasMoveNodeInput as bh, DeploymentCanvasMoveNodeOutput as bi, DeploymentCloudSqlBackfillLogFlagsInput as bj, DeploymentCloudSqlBackfillLogFlagsOutput as bk, DeploymentCloudSqlDatabaseAttachInput as bl, DeploymentCloudSqlDatabaseAttachOutput as bm, DeploymentCloudSqlDatabaseCreateInput as bn, DeploymentCloudSqlDatabaseCreateOutput as bo, DeploymentCloudSqlDatabaseDeleteInput as bp, DeploymentCloudSqlDatabaseDeleteOutput as bq, DeploymentCloudSqlDatabaseDetachInput as br, DeploymentCloudSqlDatabaseDetachOutput as bs, DeploymentCloudSqlDatabaseGetInput as bt, DeploymentCloudSqlDatabaseGetOutput as bu, DeploymentCloudSqlDatabaseListInput as bv, DeploymentCloudSqlDatabaseListOutput as bw, DeploymentCloudSqlInstanceBackupListInput as bx, DeploymentCloudSqlInstanceBackupListOutput as by, DeploymentCloudSqlInstanceBackupInput as bz, BrainBackupRestoreInput as c, DeploymentMetricsGetInput as c$, DeploymentDomainListByServiceOutput as c0, DeploymentDomainListInput as c1, DeploymentDomainListOutput as c2, DeploymentDomainRedirectWwwInput as c3, DeploymentDomainRedirectWwwOutput as c4, DeploymentDomainRemoveInput as c5, DeploymentDomainRemoveOutput as c6, DeploymentDomainRoutesAddInput as c7, DeploymentDomainRoutesAddOutput as c8, DeploymentDomainRoutesListInput as c9, DeploymentManagedServiceBackupListOutput as cA, DeploymentManagedServiceBackupInput as cB, DeploymentManagedServiceBackupOutput as cC, DeploymentManagedServiceConnectInfoInput as cD, DeploymentManagedServiceConnectInfoOutput as cE, DeploymentManagedServiceDeleteInput as cF, DeploymentManagedServiceDeleteOutput as cG, DeploymentManagedServiceGetInput as cH, DeploymentManagedServiceGetOutput as cI, DeploymentManagedServiceListInput as cJ, DeploymentManagedServiceListOutput as cK, DeploymentManagedServiceLogsInput as cL, DeploymentManagedServiceLogsOutput as cM, DeploymentManagedServiceProvisionInput as cN, DeploymentManagedServiceProvisionOutput as cO, DeploymentManagedServiceReconcileInput as cP, DeploymentManagedServiceReconcileOutput as cQ, DeploymentManagedServiceResizeInput as cR, DeploymentManagedServiceResizeOutput as cS, DeploymentManagedServiceRestoreInput as cT, DeploymentManagedServiceRestoreOutput as cU, DeploymentManagedServiceStartInput as cV, DeploymentManagedServiceStartOutput as cW, DeploymentManagedServiceStopInput as cX, DeploymentManagedServiceStopOutput as cY, DeploymentManagedServiceTypesInput as cZ, DeploymentManagedServiceTypesOutput as c_, DeploymentDomainRoutesListOutput as ca, DeploymentDomainRoutesRemoveInput as cb, DeploymentDomainRoutesRemoveOutput as cc, DeploymentDomainRoutesUpdateInput as cd, DeploymentDomainRoutesUpdateOutput as ce, DeploymentDomainVerifyInput as cf, DeploymentDomainVerifyOutput as cg, DeploymentEnvironmentCreateInput as ch, DeploymentEnvironmentCreateOutput as ci, DeploymentEnvironmentDeleteInput as cj, DeploymentEnvironmentDeleteOutput as ck, DeploymentEnvironmentForkInput as cl, DeploymentEnvironmentForkOutput as cm, DeploymentEnvironmentGetInput as cn, DeploymentEnvironmentGetOutput as co, DeploymentEnvironmentListInput as cp, DeploymentEnvironmentListOutput as cq, DeploymentEnvironmentReconcileInput as cr, DeploymentEnvironmentReconcileOutput as cs, DeploymentEnvironmentUpdateInput as ct, DeploymentEnvironmentUpdateOutput as cu, DeploymentEventsListByEnvironmentInput as cv, DeploymentEventsListByEnvironmentOutput as cw, DeploymentEventsListByServiceInput as cx, DeploymentEventsListByServiceOutput as cy, DeploymentManagedServiceBackupListInput as cz, BrainBackupRestoreOutput as d, DeploymentVariableUnsetProductOutput as d$, DeploymentMetricsGetOutput as d0, DeploymentPreviewEnvironmentCreateInput as d1, DeploymentPreviewEnvironmentCreateOutput as d2, DeploymentPreviewEnvironmentDeleteInput as d3, DeploymentPreviewEnvironmentDeleteOutput as d4, DeploymentPreviewEnvironmentListInput as d5, DeploymentPreviewEnvironmentListOutput as d6, DeploymentPreviewPolicyGetInput as d7, DeploymentPreviewPolicyGetOutput as d8, DeploymentPreviewPolicySetInput as d9, DeploymentSshCommandInput as dA, DeploymentSshCommandOutput as dB, DeploymentSshKeyDeleteInput as dC, DeploymentSshKeyDeleteOutput as dD, DeploymentSshKeyListInput as dE, DeploymentSshKeyListOutput as dF, DeploymentSshKeyRegisterInput as dG, DeploymentSshKeyRegisterOutput as dH, DeploymentSuspensionGetInput as dI, DeploymentSuspensionGetOutput as dJ, DeploymentVariableListEnvInput as dK, DeploymentVariableListEnvOutput as dL, DeploymentVariableListProductInput as dM, DeploymentVariableListProductOutput as dN, DeploymentVariableListInput as dO, DeploymentVariableListOutput as dP, DeploymentVariableSetEnvInput as dQ, DeploymentVariableSetEnvOutput as dR, DeploymentVariableSetInput as dS, DeploymentVariableSetOutput as dT, DeploymentVariableSetProductInput as dU, DeploymentVariableSetProductOutput as dV, DeploymentVariableUnsetEnvInput as dW, DeploymentVariableUnsetEnvOutput as dX, DeploymentVariableUnsetInput as dY, DeploymentVariableUnsetOutput as dZ, DeploymentVariableUnsetProductInput as d_, DeploymentPreviewPolicySetOutput as da, DeploymentServiceCreateInput as db, DeploymentServiceCreateOutput as dc, DeploymentServiceDeleteInput as dd, DeploymentServiceDeleteOutput as de, DeploymentServiceExecInput as df, DeploymentServiceExecOutput as dg, DeploymentServiceGetInput as dh, DeploymentServiceGetOutput as di, DeploymentServiceListInput as dj, DeploymentServiceListOutput as dk, DeploymentServiceLogsInput as dl, DeploymentServiceLogsOutput as dm, DeploymentServiceRedeployInput as dn, DeploymentServiceRedeployOutput as dp, DeploymentServiceRestartInput as dq, DeploymentServiceRestartOutput as dr, DeploymentServiceRollbackInput as ds, DeploymentServiceRollbackOutput as dt, DeploymentServiceScaleInput as du, DeploymentServiceScaleOutput as dv, DeploymentServiceUpdateInput as dw, DeploymentServiceUpdateOutput as dx, DeploymentServiceWakeInput as dy, DeploymentServiceWakeOutput as dz, BrainBackupStatusInput as e, MailDomainCreateOutput as e$, DeploymentVcsBranchListInput as e0, DeploymentVcsBranchListOutput as e1, DeploymentVcsConnectionListInput as e2, DeploymentVcsConnectionListOutput as e3, DeploymentVcsRepoListInput as e4, DeploymentVcsRepoListOutput as e5, DeploymentVolumeCreateInput as e6, DeploymentVolumeCreateOutput as e7, DeploymentVolumeDeleteInput as e8, DeploymentVolumeDeleteOutput as e9, MailBroadcastCreateInput as eA, MailBroadcastCreateOutput as eB, MailBroadcastDeleteInput as eC, MailBroadcastDeleteOutput as eD, MailBroadcastGetInput as eE, MailBroadcastGetOutput as eF, MailBroadcastListInput as eG, MailBroadcastListOutput as eH, MailBroadcastQueueInput as eI, MailBroadcastQueueOutput as eJ, MailBroadcastStatsInput as eK, MailBroadcastStatsOutput as eL, MailBroadcastUpdateInput as eM, MailBroadcastUpdateOutput as eN, MailContactCreateInput as eO, MailContactCreateOutput as eP, MailContactDeleteInput as eQ, MailContactDeleteOutput as eR, MailContactGetInput as eS, MailContactGetOutput as eT, MailContactListInput as eU, MailContactListOutput as eV, MailContactUpdateInput as eW, MailContactUpdateOutput as eX, MailDomainAllowedListInput as eY, MailDomainAllowedListOutput as eZ, MailDomainCreateInput as e_, DeploymentVolumeDetachInput as ea, DeploymentVolumeDetachOutput as eb, DeploymentVolumeGetInput as ec, DeploymentVolumeGetOutput as ed, DeploymentVolumeListInput as ee, DeploymentVolumeListOutput as ef, DeploymentVolumeResizeInput as eg, DeploymentVolumeResizeOutput as eh, MailApikeyCreateInput as ei, MailApikeyCreateOutput as ej, MailApikeyDeleteInput as ek, MailApikeyDeleteOutput as el, MailApikeyListInput as em, MailApikeyListOutput as en, MailAudienceCreateInput as eo, MailAudienceCreateOutput as ep, MailAudienceDeleteInput as eq, MailAudienceDeleteOutput as er, MailAudienceGetInput as es, MailAudienceGetOutput as et, MailAudienceListInput as eu, MailAudienceListOutput as ev, MailAudienceUpdateInput as ew, MailAudienceUpdateOutput as ex, MailBroadcastCancelInput as ey, MailBroadcastCancelOutput as ez, BrainBackupStatusOutput as f, ObserveAlertsGetOutput as f$, MailDomainDeleteInput as f0, MailDomainDeleteOutput as f1, MailDomainGetInput as f2, MailDomainGetOutput as f3, MailDomainListInput as f4, MailDomainListOutput as f5, MailDomainUpdateInput as f6, MailDomainUpdateOutput as f7, MailDomainVerifyInput as f8, MailDomainVerifyOutput as f9, MailTemplateListOutput as fA, MailTemplatePublishInput as fB, MailTemplatePublishOutput as fC, MailTemplateUpdateInput as fD, MailTemplateUpdateOutput as fE, MailUsageGetInput as fF, MailUsageGetOutput as fG, MailWebhookCreateInput as fH, MailWebhookCreateOutput as fI, MailWebhookDeleteInput as fJ, MailWebhookDeleteOutput as fK, MailWebhookDeliveriesListInput as fL, MailWebhookDeliveriesListOutput as fM, MailWebhookGetInput as fN, MailWebhookGetOutput as fO, MailWebhookListInput as fP, MailWebhookListOutput as fQ, MailWebhookUpdateInput as fR, MailWebhookUpdateOutput as fS, MailEmailGetOutput as fT, ObserveAlertsCreateInput as fU, ObserveAlertsCreateOutput as fV, ObserveAlertsDeleteInput as fW, ObserveAlertsDeleteOutput as fX, ObserveAlertsEventsListInput as fY, ObserveAlertsEventsListOutput as fZ, ObserveAlertsGetInput as f_, MailEmailCancelInput as fa, MailEmailCancelOutput as fb, MailEmailGetInput as fc, MailEmailSendBatchInput as fd, MailEmailSendBatchOutput as fe, MailEmailSendInput as ff, MailEmailSendOutput as fg, MailEmailUpdateInput as fh, MailEmailUpdateOutput as fi, MailReputationGetInput as fj, MailReputationGetOutput as fk, MailStatsGetInput as fl, MailStatsGetOutput as fm, MailSuppressionAddInput as fn, MailSuppressionAddOutput as fo, MailSuppressionListInput as fp, MailSuppressionListOutput as fq, MailSuppressionRemoveInput as fr, MailSuppressionRemoveOutput as fs, MailTemplateCreateInput as ft, MailTemplateCreateOutput as fu, MailTemplateDeleteInput as fv, MailTemplateDeleteOutput as fw, MailTemplateGetInput as fx, MailTemplateGetOutput as fy, MailTemplateListInput as fz, BrainBackupsListInput as g, OrganizationBillingCapsClearOutput as g$, ObserveAlertsListInput as g0, ObserveAlertsListOutput as g1, ObserveAlertsUpdateInput as g2, ObserveAlertsUpdateOutput as g3, ObserveArtifactsDeleteInput as g4, ObserveArtifactsDeleteOutput as g5, ObserveArtifactsListInput as g6, ObserveArtifactsListOutput as g7, ObserveArtifactsResolveInput as g8, ObserveArtifactsResolveOutput as g9, ObserveTracesGetInput as gA, ObserveTracesGetOutput as gB, ObserveTracesSearchInput as gC, ObserveTracesSearchOutput as gD, ObserveWebhooksCreateInput as gE, ObserveWebhooksCreateOutput as gF, ObserveWebhooksDeleteInput as gG, ObserveWebhooksDeleteOutput as gH, ObserveWebhooksDeliveriesListInput as gI, ObserveWebhooksDeliveriesListOutput as gJ, ObserveWebhooksGetInput as gK, ObserveWebhooksGetOutput as gL, ObserveWebhooksListInput as gM, ObserveWebhooksListOutput as gN, ObserveWebhooksRedeliverInput as gO, ObserveWebhooksRedeliverOutput as gP, ObserveWebhooksRotateSecretInput as gQ, ObserveWebhooksRotateSecretOutput as gR, ObserveWebhooksUpdateInput as gS, ObserveWebhooksUpdateOutput as gT, OrganizationAuthMeInput as gU, OrganizationAuthMeOutput as gV, OrganizationBillingBudgetsGetInput as gW, OrganizationBillingBudgetsGetOutput as gX, OrganizationBillingBudgetsSetInput as gY, OrganizationBillingBudgetsSetOutput as gZ, OrganizationBillingCapsClearInput as g_, ObserveIssuesArchiveInput as ga, ObserveIssuesArchiveOutput as gb, ObserveIssuesAssignInput as gc, ObserveIssuesAssignOutput as gd, ObserveIssuesGetInput as ge, ObserveIssuesGetOutput as gf, ObserveIssuesListInput as gg, ObserveIssuesListOutput as gh, ObserveIssuesResolveInput as gi, ObserveIssuesResolveOutput as gj, ObserveKeysCreateInput as gk, ObserveKeysCreateOutput as gl, ObserveKeysListInput as gm, ObserveKeysListOutput as gn, ObserveKeysRevokeInput as go, ObserveKeysRevokeOutput as gp, ObserveLogsFacetsInput as gq, ObserveLogsFacetsOutput as gr, ObserveLogsSearchInput as gs, ObserveLogsSearchOutput as gt, ObserveLogsTailInput as gu, ObserveLogsTailOutput as gv, ObserveMetricsListInput as gw, ObserveMetricsListOutput as gx, ObserveMetricsQueryInput as gy, ObserveMetricsQueryOutput as gz, BrainBackupsListOutput as h, OrganizationMemberInviteOutput as h$, OrganizationBillingCapsSetInput as h0, OrganizationBillingCapsSetOutput as h1, OrganizationBindingsListInput as h2, OrganizationBindingsListOutput as h3, OrganizationClickupInstallInput as h4, OrganizationClickupInstallOutput as h5, OrganizationClickupListInstallationsInput as h6, OrganizationClickupListInstallationsOutput as h7, OrganizationCloudflareInstallInput as h8, OrganizationCloudflareInstallOutput as h9, OrganizationDomainsAddInput as hA, OrganizationDomainsAddOutput as hB, OrganizationDomainsGetInput as hC, OrganizationDomainsGetOutput as hD, OrganizationDomainsListInput as hE, OrganizationDomainsListOutput as hF, OrganizationDomainsRemoveInput as hG, OrganizationDomainsRemoveOutput as hH, OrganizationDomainsSetModeInput as hI, OrganizationDomainsSetModeOutput as hJ, OrganizationExtensionsListInstalledInput as hK, OrganizationExtensionsListInstalledOutput as hL, OrganizationFeedbackSubmitInput as hM, OrganizationFeedbackSubmitOutput as hN, OrganizationGdriveInstallInput as hO, OrganizationGdriveInstallOutput as hP, OrganizationGithubInstallInput as hQ, OrganizationGithubInstallOutput as hR, OrganizationGithubListInstallationsInput as hS, OrganizationGithubListInstallationsOutput as hT, OrganizationGoogleadsInstallInput as hU, OrganizationGoogleadsInstallOutput as hV, OrganizationListInput as hW, OrganizationListOutput as hX, OrganizationMemberAcceptInviteInput as hY, OrganizationMemberAcceptInviteOutput as hZ, OrganizationMemberInviteInput as h_, OrganizationConnectorsApproveRequestInput as ha, OrganizationConnectorsApproveRequestOutput as hb, OrganizationConnectorsAttachInput as hc, OrganizationConnectorsAttachOutput as hd, OrganizationConnectorsDeleteInput as he, OrganizationConnectorsDeleteOutput as hf, OrganizationConnectorsDenyRequestInput as hg, OrganizationConnectorsDenyRequestOutput as hh, OrganizationConnectorsDetachInput as hi, OrganizationConnectorsDetachOutput as hj, OrganizationConnectorsListAttachmentsInput as hk, OrganizationConnectorsListAttachmentsOutput as hl, OrganizationConnectorsListAvailableInput as hm, OrganizationConnectorsListAvailableOutput as hn, OrganizationConnectorsListOrgInput as ho, OrganizationConnectorsListOrgOutput as hp, OrganizationConnectorsListInput as hq, OrganizationConnectorsListOutput as hr, OrganizationConnectorsListRequestsInput as hs, OrganizationConnectorsListRequestsOutput as ht, OrganizationConnectorsRemoveInput as hu, OrganizationConnectorsRemoveOutput as hv, OrganizationConnectorsRequestInput as hw, OrganizationConnectorsRequestOutput as hx, OrganizationCreateInput as hy, OrganizationCreateOutput as hz, BrainClickupChannelsListInput as i, OrganizationSelectOutput as i$, OrganizationMemberListInvitationsInput as i0, OrganizationMemberListInvitationsOutput as i1, OrganizationMemberListProductAccessInput as i2, OrganizationMemberListProductAccessOutput as i3, OrganizationMemberListInput as i4, OrganizationMemberListOutput as i5, OrganizationMemberRemoveInput as i6, OrganizationMemberRemoveOutput as i7, OrganizationMemberRevokeInvitationInput as i8, OrganizationMemberRevokeInvitationOutput as i9, OrganizationProductSetAccessInput as iA, OrganizationProductSetAccessOutput as iB, OrganizationProductUpdateInput as iC, OrganizationProductUpdateOutput as iD, OrganizationPublicKeysCreateInput as iE, OrganizationPublicKeysCreateOutput as iF, OrganizationPublicKeysListInput as iG, OrganizationPublicKeysListOutput as iH, OrganizationPublicKeysRevokeInput as iI, OrganizationPublicKeysRevokeOutput as iJ, OrganizationPublicKeysUpdateScopeInput as iK, OrganizationPublicKeysUpdateScopeOutput as iL, OrganizationPublicRoutesListInput as iM, OrganizationPublicRoutesListOutput as iN, OrganizationRolesCreateInput as iO, OrganizationRolesCreateOutput as iP, OrganizationRolesDeleteInput as iQ, OrganizationRolesDeleteOutput as iR, OrganizationRolesGetInput as iS, OrganizationRolesGetOutput as iT, OrganizationRolesListInput as iU, OrganizationRolesListOutput as iV, OrganizationRolesUpdateInput as iW, OrganizationRolesUpdateOutput as iX, OrganizationSecurityMfaEnableInput as iY, OrganizationSecurityMfaEnableOutput as iZ, OrganizationSelectInput as i_, OrganizationMemberSetRoleInput as ia, OrganizationMemberSetRoleOutput as ib, OrganizationMemberShareProductInput as ic, OrganizationMemberShareProductOutput as id, OrganizationMemberUnshareProductInput as ie, OrganizationMemberUnshareProductOutput as ig, OrganizationMembersAssignRoleInput as ih, OrganizationMembersAssignRoleOutput as ii, OrganizationPermissionCatalogInput as ij, OrganizationPermissionCatalogOutput as ik, OrganizationProductCreateInput as il, OrganizationProductCreateOutput as im, OrganizationProductListAccessInput as io, OrganizationProductListAccessOutput as ip, OrganizationProductListMembersInput as iq, OrganizationProductListMembersOutput as ir, OrganizationProductListInput as is, OrganizationProductListOutput as it, OrganizationProductListRolesInput as iu, OrganizationProductListRolesOutput as iv, OrganizationProductRevokeAccessInput as iw, OrganizationProductRevokeAccessOutput as ix, OrganizationProductSelectInput as iy, OrganizationProductSelectOutput as iz, BrainClickupChannelsListOutput as j, RealtimePresenceLeaveOutput as j$, OrganizationSupportThreadCreateInput as j0, OrganizationSupportThreadCreateOutput as j1, OrganizationSupportThreadGetInput as j2, OrganizationSupportThreadGetOutput as j3, OrganizationSupportThreadReplyInput as j4, OrganizationSupportThreadReplyOutput as j5, OrganizationSupportThreadsListInput as j6, OrganizationSupportThreadsListOutput as j7, PlaygroundAnalyticsOverviewInput as j8, PlaygroundAnalyticsOverviewOutput as j9, RealtimeArchiveGetInput as jA, RealtimeArchiveGetOutput as jB, RealtimeGrantCreateInput as jC, RealtimeGrantCreateOutput as jD, RealtimeGrantListInput as jE, RealtimeGrantListOutput as jF, RealtimeGrantRevokeInput as jG, RealtimeGrantRevokeOutput as jH, RealtimeHistoryGetInput as jI, RealtimeHistoryGetOutput as jJ, RealtimeMessagesPublishInput as jK, RealtimeMessagesPublishOutput as jL, RealtimeNamespaceCreateInput as jM, RealtimeNamespaceCreateOutput as jN, RealtimeNamespaceDeleteInput as jO, RealtimeNamespaceDeleteOutput as jP, RealtimeNamespaceGetInput as jQ, RealtimeNamespaceGetOutput as jR, RealtimeNamespaceListInput as jS, RealtimeNamespaceListOutput as jT, RealtimeNamespaceUpdateInput as jU, RealtimeNamespaceUpdateOutput as jV, RealtimePresenceEnterInput as jW, RealtimePresenceEnterOutput as jX, RealtimePresenceGetInput as jY, RealtimePresenceGetOutput as jZ, RealtimePresenceLeaveInput as j_, PlaygroundBillingEntitlementsInput as ja, PlaygroundBillingEntitlementsOutput as jb, PlaygroundBillingRecordUsageInput as jc, PlaygroundBillingRecordUsageOutput as jd, PlaygroundClickupCreateTaskInput as je, PlaygroundClickupCreateTaskOutput as jf, PlaygroundClickupGetLastWebhookInput as jg, PlaygroundClickupGetLastWebhookOutput as jh, PlaygroundClickupGetOverviewInput as ji, PlaygroundClickupGetOverviewOutput as jj, PlaygroundGdriveGetLastChangeInput as jk, PlaygroundGdriveGetLastChangeOutput as jl, PlaygroundGdriveReadFileInput as jm, PlaygroundGdriveReadFileOutput as jn, PlaygroundGoogleadsReadCustomerInput as jo, PlaygroundGoogleadsReadCustomerOutput as jp, PlaygroundLifecycleGetStateInput as jq, PlaygroundLifecycleGetStateOutput as jr, PlaygroundLifecycleListEventsInput as js, PlaygroundLifecycleListEventsOutput as jt, PlaygroundWebhookGetLastInput as ju, PlaygroundWebhookGetLastOutput as jv, RealtimeArchiveExportInput as jw, RealtimeArchiveExportOutput as jx, RealtimeArchiveExportStatusInput as jy, RealtimeArchiveExportStatusOutput as jz, BrainClickupConnectionsListInput as k, SupportStatusCreateOutput as k$, RealtimePresenceStatsInput as k0, RealtimePresenceStatsOutput as k1, RealtimePresenceUpdateInput as k2, RealtimePresenceUpdateOutput as k3, RealtimePublicAccessStatusInput as k4, RealtimePublicAccessStatusOutput as k5, RealtimeStatusGetInput as k6, RealtimeStatusGetOutput as k7, RealtimeTokensCreateInput as k8, RealtimeTokensCreateOutput as k9, SupportLabelCreateInput as kA, SupportLabelCreateOutput as kB, SupportLabelListInput as kC, SupportLabelListOutput as kD, SupportMessageCreateInput as kE, SupportMessageCreateOutput as kF, SupportMessageListInput as kG, SupportMessageListOutput as kH, SupportResponseEscalateInput as kI, SupportResponseEscalateOutput as kJ, SupportResponseGetInput as kK, SupportResponseGetOutput as kL, SupportResponseListInput as kM, SupportResponseListOutput as kN, SupportRuleCreateInput as kO, SupportRuleCreateOutput as kP, SupportRuleDeleteInput as kQ, SupportRuleDeleteOutput as kR, SupportRuleGetInput as kS, SupportRuleGetOutput as kT, SupportRuleListInput as kU, SupportRuleListOutput as kV, SupportRuleUpdateInput as kW, SupportRuleUpdateOutput as kX, SupportStatusArchiveInput as kY, SupportStatusArchiveOutput as kZ, SupportStatusCreateInput as k_, RealtimeWebhookCreateInput as ka, RealtimeWebhookCreateOutput as kb, RealtimeWebhookDeleteInput as kc, RealtimeWebhookDeleteOutput as kd, RealtimeWebhookDeliveriesListInput as ke, RealtimeWebhookDeliveriesListOutput as kf, RealtimeWebhookGetInput as kg, RealtimeWebhookGetOutput as kh, RealtimeWebhookListInput as ki, RealtimeWebhookListOutput as kj, RealtimeWebhookSecretRotateInput as kk, RealtimeWebhookSecretRotateOutput as kl, RealtimeWebhookUpdateInput as km, RealtimeWebhookUpdateOutput as kn, SupportAgentCreateInput as ko, SupportAgentCreateOutput as kp, SupportAgentGetInput as kq, SupportAgentGetOutput as kr, SupportAgentListInput as ks, SupportAgentListOutput as kt, SupportAgentUpdateInput as ku, SupportAgentUpdateOutput as kv, SupportAttachmentCreateInput as kw, SupportAttachmentCreateOutput as kx, SupportAttachmentFinalizeInput as ky, SupportAttachmentFinalizeOutput as kz, BrainClickupConnectionsListOutput as l, TrackingEventNamesUnarchiveOutput as l$, SupportStatusListInput as l0, SupportStatusListOutput as l1, SupportStatusUpdateInput as l2, SupportStatusUpdateOutput as l3, SupportSurveyArchiveInput as l4, SupportSurveyArchiveOutput as l5, SupportSurveyCreateInput as l6, SupportSurveyCreateOutput as l7, SupportSurveyGetInput as l8, SupportSurveyGetOutput as l9, SupportWebhookDeliveriesListInput as lA, SupportWebhookDeliveriesListOutput as lB, SupportWebhookGetInput as lC, SupportWebhookGetOutput as lD, SupportWebhookListInput as lE, SupportWebhookListOutput as lF, SupportWebhookRedeliverInput as lG, SupportWebhookRedeliverOutput as lH, SupportWebhookRotateSecretInput as lI, SupportWebhookRotateSecretOutput as lJ, SupportWebhookUpdateInput as lK, SupportWebhookUpdateOutput as lL, TrackingDomainsCreateInput as lM, TrackingDomainsCreateOutput as lN, TrackingDomainsDeleteInput as lO, TrackingDomainsDeleteOutput as lP, TrackingDomainsGetInput as lQ, TrackingDomainsGetOutput as lR, TrackingDomainsListInput as lS, TrackingDomainsListOutput as lT, TrackingDomainsVerifyInput as lU, TrackingDomainsVerifyOutput as lV, TrackingEventNamesArchiveInput as lW, TrackingEventNamesArchiveOutput as lX, TrackingEventNamesListInput as lY, TrackingEventNamesListOutput as lZ, TrackingEventNamesUnarchiveInput as l_, SupportSurveyListInput as la, SupportSurveyListOutput as lb, SupportSurveyPublishInput as lc, SupportSurveyPublishOutput as ld, SupportSurveyStatsInput as le, SupportSurveyStatsOutput as lf, SupportSurveyUnpublishInput as lg, SupportSurveyUnpublishOutput as lh, SupportSurveyUpdateInput as li, SupportSurveyUpdateOutput as lj, SupportThreadAssignInput as lk, SupportThreadAssignOutput as ll, SupportThreadCreateInput as lm, SupportThreadCreateOutput as ln, SupportThreadGetInput as lo, SupportThreadGetOutput as lp, SupportThreadListInput as lq, SupportThreadListOutput as lr, SupportThreadStatusSetInput as ls, SupportThreadStatusSetOutput as lt, SupportThreadUpdateInput as lu, SupportThreadUpdateOutput as lv, SupportWebhookCreateInput as lw, SupportWebhookCreateOutput as lx, SupportWebhookDeleteInput as ly, SupportWebhookDeleteOutput as lz, BrainClickupListsListInput as m, UsersAuditListOutput as m$, TrackingGoogleadsConnectionStatusInput as m0, TrackingGoogleadsConnectionStatusOutput as m1, TrackingGoogleadsConversionActionsInput as m2, TrackingGoogleadsConversionActionsOutput as m3, TrackingGoogleadsFeedbackConfigGetInput as m4, TrackingGoogleadsFeedbackConfigGetOutput as m5, TrackingGoogleadsFeedbackConfigSetInput as m6, TrackingGoogleadsFeedbackConfigSetOutput as m7, TrackingGoogleadsFeedbackRunInput as m8, TrackingGoogleadsFeedbackRunOutput as m9, TrackingLiveEventsListInput as mA, TrackingLiveEventsListOutput as mB, TrackingProfilesDeleteInput as mC, TrackingProfilesDeleteOutput as mD, TrackingProfilesExportInput as mE, TrackingProfilesExportOutput as mF, TrackingProfilesGetInput as mG, TrackingProfilesGetOutput as mH, TrackingProfilesListInput as mI, TrackingProfilesListOutput as mJ, TrackingReportsAttributedJourneyInput as mK, TrackingReportsAttributedJourneyOutput as mL, TrackingReportsEventVolumeInput as mM, TrackingReportsEventVolumeOutput as mN, TrackingReportsRevenueBySourceInput as mO, TrackingReportsRevenueBySourceOutput as mP, TrackingReportsSourcePeopleInput as mQ, TrackingReportsSourcePeopleOutput as mR, TrackingSnippetsGetInput as mS, TrackingSnippetsGetOutput as mT, UsersApikeysCreateInput as mU, UsersApikeysCreateOutput as mV, UsersApikeysListInput as mW, UsersApikeysListOutput as mX, UsersApikeysRevokeInput as mY, UsersApikeysRevokeOutput as mZ, UsersAuditListInput as m_, TrackingGoogleadsFeedbackStatusInput as ma, TrackingGoogleadsFeedbackStatusOutput as mb, TrackingGoogleadsFeedbackUploadsInput as mc, TrackingGoogleadsFeedbackUploadsOutput as md, TrackingGoogleadsRoasReportInput as me, TrackingGoogleadsRoasReportOutput as mf, TrackingGoogleadsSyncNowInput as mg, TrackingGoogleadsSyncNowOutput as mh, TrackingGoogleadsTrackingHealthInput as mi, TrackingGoogleadsTrackingHealthOutput as mj, TrackingGoogleadsUsVsPlatformInput as mk, TrackingGoogleadsUsVsPlatformOutput as ml, TrackingIdentityHealthInput as mm, TrackingIdentityHealthOutput as mn, TrackingInstallDomainsCreateInput as mo, TrackingInstallDomainsCreateOutput as mp, TrackingInstallDomainsDeleteInput as mq, TrackingInstallDomainsDeleteOutput as mr, TrackingInstallDomainsListInput as ms, TrackingInstallDomainsListOutput as mt, TrackingLinkDomainsCreateInput as mu, TrackingLinkDomainsCreateOutput as mv, TrackingLinkDomainsDeleteInput as mw, TrackingLinkDomainsDeleteOutput as mx, TrackingLinkDomainsListInput as my, TrackingLinkDomainsListOutput as mz, BrainClickupListsListOutput as n, UsersWaitlistInviteOutput as n$, UsersConfigGetInput as n0, UsersConfigGetOutput as n1, UsersConfigUpsertInput as n2, UsersConfigUpsertOutput as n3, UsersFactorsListInput as n4, UsersFactorsListOutput as n5, UsersFactorsResetInput as n6, UsersFactorsResetOutput as n7, UsersKeysListInput as n8, UsersKeysListOutput as n9, UsersUsersDeleteInput as nA, UsersUsersDeleteOutput as nB, UsersUsersEraseInput as nC, UsersUsersEraseOutput as nD, UsersUsersExportInput as nE, UsersUsersExportOutput as nF, UsersUsersGetInput as nG, UsersUsersGetOutput as nH, UsersUsersImportInput as nI, UsersUsersImportOutput as nJ, UsersUsersInviteInput as nK, UsersUsersInviteOutput as nL, UsersUsersListInput as nM, UsersUsersListOutput as nN, UsersUsersSetPrimaryIdentifierInput as nO, UsersUsersSetPrimaryIdentifierOutput as nP, UsersUsersUnbanInput as nQ, UsersUsersUnbanOutput as nR, UsersUsersUpdateInput as nS, UsersUsersUpdateOutput as nT, UsersWaitlistEraseInput as nU, UsersWaitlistEraseOutput as nV, UsersWaitlistFunnelInput as nW, UsersWaitlistFunnelOutput as nX, UsersWaitlistImportInput as nY, UsersWaitlistImportOutput as nZ, UsersWaitlistInviteInput as n_, UsersKeysRevokeInput as na, UsersKeysRevokeOutput as nb, UsersKeysRotateInput as nc, UsersKeysRotateOutput as nd, UsersOpsRetentionGetInput as ne, UsersOpsRetentionGetOutput as nf, UsersOpsSloGetInput as ng, UsersOpsSloGetOutput as nh, UsersPasskeysListInput as ni, UsersPasskeysListOutput as nj, UsersPasskeysRevokeInput as nk, UsersPasskeysRevokeOutput as nl, UsersSessionsGetInput as nm, UsersSessionsGetOutput as nn, UsersSessionsImpersonateInput as no, UsersSessionsImpersonateOutput as np, UsersSessionsListInput as nq, UsersSessionsListOutput as nr, UsersSessionsRevokeInput as ns, UsersSessionsRevokeOutput as nt, UsersStatsGetInput as nu, UsersStatsGetOutput as nv, UsersUsersBanInput as nw, UsersUsersBanOutput as nx, UsersUsersCreateInput as ny, UsersUsersCreateOutput as nz, BrainClickupSpacesListInput as o, UsersWaitlistListInput as o0, UsersWaitlistListOutput as o1, UsersWebhooksCreateInput as o2, UsersWebhooksCreateOutput as o3, UsersWebhooksDeleteInput as o4, UsersWebhooksDeleteOutput as o5, UsersWebhooksDeliveriesListInput as o6, UsersWebhooksDeliveriesListOutput as o7, UsersWebhooksGetInput as o8, UsersWebhooksGetOutput as o9, UsersWebhooksListInput as oa, UsersWebhooksListOutput as ob, UsersWebhooksRotateSecretInput as oc, UsersWebhooksRotateSecretOutput as od, UsersWebhooksUpdateInput as oe, UsersWebhooksUpdateOutput as of, WaitlistConfigGetInput as og, WaitlistConfigGetOutput as oh, WaitlistConfigUpsertInput as oi, WaitlistConfigUpsertOutput as oj, WaitlistEmbedGetInput as ok, WaitlistEmbedGetOutput as ol, WaitlistInvitesSendInput as om, WaitlistInvitesSendOutput as on, WaitlistSignupsEraseInput as oo, WaitlistSignupsEraseOutput as op, WaitlistSignupsFunnelInput as oq, WaitlistSignupsFunnelOutput as or, WaitlistSignupsListInput as os, WaitlistSignupsListOutput as ot, 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 };
42618
+ export type { BrainGdriveConnectionsListInput as $, AnalyticsQueryRunInput as A, BrainBackupCreateInput as B, BrainConnectorReposListInput as C, BrainConnectorReposListOutput as D, BrainDaemonBatchStatusInput as E, BrainDaemonBatchStatusOutput as F, GeneratedClient as G, BrainDaemonCreateInput as H, BrainDaemonCreateOutput as I, BrainDaemonGetInput as J, BrainDaemonGetOutput as K, BrainDaemonReingestInput as L, BrainDaemonReingestOutput as M, BrainDaemonRemoveInput as N, BrainDaemonRemoveOutput as O, BrainDaemonRunItemsInput as P, BrainDaemonRunItemsOutput as Q, BrainDaemonRunInput as R, BrainDaemonRunOutput as S, BrainDaemonRunsInput as T, BrainDaemonRunsOutput as U, BrainDaemonStatusInput as V, BrainDaemonStatusOutput as W, BrainDaemonUpdateInput as X, BrainDaemonUpdateOutput as Y, BrainDaemonsListInput as Z, BrainDaemonsListOutput as _, AnalyticsQueryRunOutput as a, DeploymentAlertEventsListInput as a$, BrainGdriveConnectionsListOutput as a0, BrainKnowledgeEntityMemoriesInput as a1, BrainKnowledgeEntityMemoriesOutput as a2, BrainKnowledgeGraphInput as a3, BrainKnowledgeGraphOutput as a4, BrainKnowledgeNeighborhoodInput as a5, BrainKnowledgeNeighborhoodOutput as a6, BrainKnowledgeRelationsInput as a7, BrainKnowledgeRelationsOutput as a8, BrainKnowledgeSearchInput as a9, ConsentConfigThemeUpsertOutput as aA, ConsentDashboardConfigGetInput as aB, ConsentDashboardConfigGetOutput as aC, ConsentDashboardDecisionsListInput as aD, ConsentDashboardDecisionsListOutput as aE, ConsentDashboardEmbedSnippetGetInput as aF, ConsentDashboardEmbedSnippetGetOutput as aG, ConsentDashboardStatsGetInput as aH, ConsentDashboardStatsGetOutput as aI, ConsentEmbedGetInput as aJ, ConsentEmbedGetOutput as aK, ConsentProvidersCreateInput as aL, ConsentProvidersCreateOutput as aM, ConsentProvidersDeleteInput as aN, ConsentProvidersDeleteOutput as aO, ConsentProvidersListInput as aP, ConsentProvidersListOutput as aQ, ConsentProvidersUpdateInput as aR, ConsentProvidersUpdateOutput as aS, ConsentRecordsExportInput as aT, ConsentRecordsExportOutput as aU, ConsentStatsGetInput as aV, ConsentStatsGetOutput as aW, DeploymentAlertCreateInput as aX, DeploymentAlertCreateOutput as aY, DeploymentAlertDeleteInput as aZ, DeploymentAlertDeleteOutput as a_, BrainKnowledgeSearchOutput as aa, BrainMemoryAddInput as ab, BrainMemoryAddOutput as ac, BrainMemoryDeleteInput as ad, BrainMemoryDeleteOutput as ae, BrainMemoryGetInput as af, BrainMemoryGetOutput as ag, BrainMemoryListInput as ah, BrainMemoryListOutput as ai, BrainMemorySearchInput as aj, BrainMemorySearchOutput as ak, BrainMemoryStatsInput as al, BrainMemoryStatsOutput as am, BrainMemoryUpdateInput as an, BrainMemoryUpdateOutput as ao, BrainProductSharedMemoryResetInput as ap, BrainProductSharedMemoryResetOutput as aq, BrainRestoreStatusInput as ar, BrainRestoreStatusOutput as as, ConsentConfigCookieDomainUpsertInput as at, ConsentConfigCookieDomainUpsertOutput as au, ConsentConfigCustomizationUpsertInput as av, ConsentConfigCustomizationUpsertOutput as aw, ConsentConfigFloatingIconUpsertInput as ax, ConsentConfigFloatingIconUpsertOutput as ay, ConsentConfigThemeUpsertInput as az, BrainBackupCreateOutput as b, DeploymentDomainListByServiceInput as b$, DeploymentAlertEventsListOutput as b0, DeploymentAlertListInput as b1, DeploymentAlertListOutput as b2, DeploymentAlertUpdateInput as b3, DeploymentAlertUpdateOutput as b4, DeploymentAnalyticsQueryInput as b5, DeploymentAnalyticsQueryOutput as b6, DeploymentAuditListInput as b7, DeploymentAuditListOutput as b8, DeploymentBuildGetInput as b9, DeploymentCloudSqlInstanceBackupOutput as bA, DeploymentCloudSqlInstanceCreateInput as bB, DeploymentCloudSqlInstanceCreateOutput as bC, DeploymentCloudSqlInstanceDeleteInput as bD, DeploymentCloudSqlInstanceDeleteOutput as bE, DeploymentCloudSqlInstanceGetInput as bF, DeploymentCloudSqlInstanceGetOutput as bG, DeploymentCloudSqlInstanceListInput as bH, DeploymentCloudSqlInstanceListOutput as bI, DeploymentCloudSqlInstanceResizeInput as bJ, DeploymentCloudSqlInstanceResizeOutput as bK, DeploymentCloudSqlInstanceRestoreInput as bL, DeploymentCloudSqlInstanceRestoreOutput as bM, DeploymentCloudSqlLogsInput as bN, DeploymentCloudSqlLogsOutput as bO, DeploymentDeploymentCancelInput as bP, DeploymentDeploymentCancelOutput as bQ, DeploymentDeploymentGetInput as bR, DeploymentDeploymentGetOutput as bS, DeploymentDeploymentListInput as bT, DeploymentDeploymentListOutput as bU, DeploymentDomainAddInput as bV, DeploymentDomainAddOutput as bW, DeploymentDomainAllowedListInput as bX, DeploymentDomainAllowedListOutput as bY, DeploymentDomainGetInput as bZ, DeploymentDomainGetOutput as b_, DeploymentBuildGetOutput as ba, DeploymentBuildListInput as bb, DeploymentBuildListOutput as bc, DeploymentBuildLogsInput as bd, DeploymentBuildLogsOutput as be, DeploymentCanvasGetInput as bf, DeploymentCanvasGetOutput as bg, DeploymentCanvasMoveNodeInput as bh, DeploymentCanvasMoveNodeOutput as bi, DeploymentCloudSqlBackfillLogFlagsInput as bj, DeploymentCloudSqlBackfillLogFlagsOutput as bk, DeploymentCloudSqlDatabaseAttachInput as bl, DeploymentCloudSqlDatabaseAttachOutput as bm, DeploymentCloudSqlDatabaseCreateInput as bn, DeploymentCloudSqlDatabaseCreateOutput as bo, DeploymentCloudSqlDatabaseDeleteInput as bp, DeploymentCloudSqlDatabaseDeleteOutput as bq, DeploymentCloudSqlDatabaseDetachInput as br, DeploymentCloudSqlDatabaseDetachOutput as bs, DeploymentCloudSqlDatabaseGetInput as bt, DeploymentCloudSqlDatabaseGetOutput as bu, DeploymentCloudSqlDatabaseListInput as bv, DeploymentCloudSqlDatabaseListOutput as bw, DeploymentCloudSqlInstanceBackupListInput as bx, DeploymentCloudSqlInstanceBackupListOutput as by, DeploymentCloudSqlInstanceBackupInput as bz, BrainBackupRestoreInput as c, DeploymentMetricsGetInput as c$, DeploymentDomainListByServiceOutput as c0, DeploymentDomainListInput as c1, DeploymentDomainListOutput as c2, DeploymentDomainRedirectWwwInput as c3, DeploymentDomainRedirectWwwOutput as c4, DeploymentDomainRemoveInput as c5, DeploymentDomainRemoveOutput as c6, DeploymentDomainRoutesAddInput as c7, DeploymentDomainRoutesAddOutput as c8, DeploymentDomainRoutesListInput as c9, DeploymentManagedServiceBackupListOutput as cA, DeploymentManagedServiceBackupInput as cB, DeploymentManagedServiceBackupOutput as cC, DeploymentManagedServiceConnectInfoInput as cD, DeploymentManagedServiceConnectInfoOutput as cE, DeploymentManagedServiceDeleteInput as cF, DeploymentManagedServiceDeleteOutput as cG, DeploymentManagedServiceGetInput as cH, DeploymentManagedServiceGetOutput as cI, DeploymentManagedServiceListInput as cJ, DeploymentManagedServiceListOutput as cK, DeploymentManagedServiceLogsInput as cL, DeploymentManagedServiceLogsOutput as cM, DeploymentManagedServiceProvisionInput as cN, DeploymentManagedServiceProvisionOutput as cO, DeploymentManagedServiceReconcileInput as cP, DeploymentManagedServiceReconcileOutput as cQ, DeploymentManagedServiceResizeInput as cR, DeploymentManagedServiceResizeOutput as cS, DeploymentManagedServiceRestoreInput as cT, DeploymentManagedServiceRestoreOutput as cU, DeploymentManagedServiceStartInput as cV, DeploymentManagedServiceStartOutput as cW, DeploymentManagedServiceStopInput as cX, DeploymentManagedServiceStopOutput as cY, DeploymentManagedServiceTypesInput as cZ, DeploymentManagedServiceTypesOutput as c_, DeploymentDomainRoutesListOutput as ca, DeploymentDomainRoutesRemoveInput as cb, DeploymentDomainRoutesRemoveOutput as cc, DeploymentDomainRoutesUpdateInput as cd, DeploymentDomainRoutesUpdateOutput as ce, DeploymentDomainVerifyInput as cf, DeploymentDomainVerifyOutput as cg, DeploymentEnvironmentCreateInput as ch, DeploymentEnvironmentCreateOutput as ci, DeploymentEnvironmentDeleteInput as cj, DeploymentEnvironmentDeleteOutput as ck, DeploymentEnvironmentForkInput as cl, DeploymentEnvironmentForkOutput as cm, DeploymentEnvironmentGetInput as cn, DeploymentEnvironmentGetOutput as co, DeploymentEnvironmentListInput as cp, DeploymentEnvironmentListOutput as cq, DeploymentEnvironmentReconcileInput as cr, DeploymentEnvironmentReconcileOutput as cs, DeploymentEnvironmentUpdateInput as ct, DeploymentEnvironmentUpdateOutput as cu, DeploymentEventsListByEnvironmentInput as cv, DeploymentEventsListByEnvironmentOutput as cw, DeploymentEventsListByServiceInput as cx, DeploymentEventsListByServiceOutput as cy, DeploymentManagedServiceBackupListInput as cz, BrainBackupRestoreOutput as d, DeploymentVariableUnsetProductOutput as d$, DeploymentMetricsGetOutput as d0, DeploymentPreviewEnvironmentCreateInput as d1, DeploymentPreviewEnvironmentCreateOutput as d2, DeploymentPreviewEnvironmentDeleteInput as d3, DeploymentPreviewEnvironmentDeleteOutput as d4, DeploymentPreviewEnvironmentListInput as d5, DeploymentPreviewEnvironmentListOutput as d6, DeploymentPreviewPolicyGetInput as d7, DeploymentPreviewPolicyGetOutput as d8, DeploymentPreviewPolicySetInput as d9, DeploymentSshCommandInput as dA, DeploymentSshCommandOutput as dB, DeploymentSshKeyDeleteInput as dC, DeploymentSshKeyDeleteOutput as dD, DeploymentSshKeyListInput as dE, DeploymentSshKeyListOutput as dF, DeploymentSshKeyRegisterInput as dG, DeploymentSshKeyRegisterOutput as dH, DeploymentSuspensionGetInput as dI, DeploymentSuspensionGetOutput as dJ, DeploymentVariableListEnvInput as dK, DeploymentVariableListEnvOutput as dL, DeploymentVariableListProductInput as dM, DeploymentVariableListProductOutput as dN, DeploymentVariableListInput as dO, DeploymentVariableListOutput as dP, DeploymentVariableSetEnvInput as dQ, DeploymentVariableSetEnvOutput as dR, DeploymentVariableSetInput as dS, DeploymentVariableSetOutput as dT, DeploymentVariableSetProductInput as dU, DeploymentVariableSetProductOutput as dV, DeploymentVariableUnsetEnvInput as dW, DeploymentVariableUnsetEnvOutput as dX, DeploymentVariableUnsetInput as dY, DeploymentVariableUnsetOutput as dZ, DeploymentVariableUnsetProductInput as d_, DeploymentPreviewPolicySetOutput as da, DeploymentServiceCreateInput as db, DeploymentServiceCreateOutput as dc, DeploymentServiceDeleteInput as dd, DeploymentServiceDeleteOutput as de, DeploymentServiceExecInput as df, DeploymentServiceExecOutput as dg, DeploymentServiceGetInput as dh, DeploymentServiceGetOutput as di, DeploymentServiceListInput as dj, DeploymentServiceListOutput as dk, DeploymentServiceLogsInput as dl, DeploymentServiceLogsOutput as dm, DeploymentServiceRedeployInput as dn, DeploymentServiceRedeployOutput as dp, DeploymentServiceRestartInput as dq, DeploymentServiceRestartOutput as dr, DeploymentServiceRollbackInput as ds, DeploymentServiceRollbackOutput as dt, DeploymentServiceScaleInput as du, DeploymentServiceScaleOutput as dv, DeploymentServiceUpdateInput as dw, DeploymentServiceUpdateOutput as dx, DeploymentServiceWakeInput as dy, DeploymentServiceWakeOutput as dz, BrainBackupStatusInput as e, MailDomainCreateOutput as e$, DeploymentVcsBranchListInput as e0, DeploymentVcsBranchListOutput as e1, DeploymentVcsConnectionListInput as e2, DeploymentVcsConnectionListOutput as e3, DeploymentVcsRepoListInput as e4, DeploymentVcsRepoListOutput as e5, DeploymentVolumeCreateInput as e6, DeploymentVolumeCreateOutput as e7, DeploymentVolumeDeleteInput as e8, DeploymentVolumeDeleteOutput as e9, MailBroadcastCreateInput as eA, MailBroadcastCreateOutput as eB, MailBroadcastDeleteInput as eC, MailBroadcastDeleteOutput as eD, MailBroadcastGetInput as eE, MailBroadcastGetOutput as eF, MailBroadcastListInput as eG, MailBroadcastListOutput as eH, MailBroadcastQueueInput as eI, MailBroadcastQueueOutput as eJ, MailBroadcastStatsInput as eK, MailBroadcastStatsOutput as eL, MailBroadcastUpdateInput as eM, MailBroadcastUpdateOutput as eN, MailContactCreateInput as eO, MailContactCreateOutput as eP, MailContactDeleteInput as eQ, MailContactDeleteOutput as eR, MailContactGetInput as eS, MailContactGetOutput as eT, MailContactListInput as eU, MailContactListOutput as eV, MailContactUpdateInput as eW, MailContactUpdateOutput as eX, MailDomainAllowedListInput as eY, MailDomainAllowedListOutput as eZ, MailDomainCreateInput as e_, DeploymentVolumeDetachInput as ea, DeploymentVolumeDetachOutput as eb, DeploymentVolumeGetInput as ec, DeploymentVolumeGetOutput as ed, DeploymentVolumeListInput as ee, DeploymentVolumeListOutput as ef, DeploymentVolumeResizeInput as eg, DeploymentVolumeResizeOutput as eh, MailApikeyCreateInput as ei, MailApikeyCreateOutput as ej, MailApikeyDeleteInput as ek, MailApikeyDeleteOutput as el, MailApikeyListInput as em, MailApikeyListOutput as en, MailAudienceCreateInput as eo, MailAudienceCreateOutput as ep, MailAudienceDeleteInput as eq, MailAudienceDeleteOutput as er, MailAudienceGetInput as es, MailAudienceGetOutput as et, MailAudienceListInput as eu, MailAudienceListOutput as ev, MailAudienceUpdateInput as ew, MailAudienceUpdateOutput as ex, MailBroadcastCancelInput as ey, MailBroadcastCancelOutput as ez, BrainBackupStatusOutput as f, ObserveAlertsGetOutput as f$, MailDomainDeleteInput as f0, MailDomainDeleteOutput as f1, MailDomainGetInput as f2, MailDomainGetOutput as f3, MailDomainListInput as f4, MailDomainListOutput as f5, MailDomainUpdateInput as f6, MailDomainUpdateOutput as f7, MailDomainVerifyInput as f8, MailDomainVerifyOutput as f9, MailTemplateListOutput as fA, MailTemplatePublishInput as fB, MailTemplatePublishOutput as fC, MailTemplateUpdateInput as fD, MailTemplateUpdateOutput as fE, MailUsageGetInput as fF, MailUsageGetOutput as fG, MailWebhookCreateInput as fH, MailWebhookCreateOutput as fI, MailWebhookDeleteInput as fJ, MailWebhookDeleteOutput as fK, MailWebhookDeliveriesListInput as fL, MailWebhookDeliveriesListOutput as fM, MailWebhookGetInput as fN, MailWebhookGetOutput as fO, MailWebhookListInput as fP, MailWebhookListOutput as fQ, MailWebhookUpdateInput as fR, MailWebhookUpdateOutput as fS, MailEmailGetOutput as fT, ObserveAlertsCreateInput as fU, ObserveAlertsCreateOutput as fV, ObserveAlertsDeleteInput as fW, ObserveAlertsDeleteOutput as fX, ObserveAlertsEventsListInput as fY, ObserveAlertsEventsListOutput as fZ, ObserveAlertsGetInput as f_, MailEmailCancelInput as fa, MailEmailCancelOutput as fb, MailEmailGetInput as fc, MailEmailSendBatchInput as fd, MailEmailSendBatchOutput as fe, MailEmailSendInput as ff, MailEmailSendOutput as fg, MailEmailUpdateInput as fh, MailEmailUpdateOutput as fi, MailReputationGetInput as fj, MailReputationGetOutput as fk, MailStatsGetInput as fl, MailStatsGetOutput as fm, MailSuppressionAddInput as fn, MailSuppressionAddOutput as fo, MailSuppressionListInput as fp, MailSuppressionListOutput as fq, MailSuppressionRemoveInput as fr, MailSuppressionRemoveOutput as fs, MailTemplateCreateInput as ft, MailTemplateCreateOutput as fu, MailTemplateDeleteInput as fv, MailTemplateDeleteOutput as fw, MailTemplateGetInput as fx, MailTemplateGetOutput as fy, MailTemplateListInput as fz, BrainBackupsListInput as g, OrganizationAuthMeOutput as g$, ObserveAlertsListInput as g0, ObserveAlertsListOutput as g1, ObserveAlertsUpdateInput as g2, ObserveAlertsUpdateOutput as g3, ObserveArtifactsDeleteInput as g4, ObserveArtifactsDeleteOutput as g5, ObserveArtifactsListInput as g6, ObserveArtifactsListOutput as g7, ObserveArtifactsResolveInput as g8, ObserveArtifactsResolveOutput as g9, ObserveLogsTailInput as gA, ObserveLogsTailOutput as gB, ObserveMetricsListInput as gC, ObserveMetricsListOutput as gD, ObserveMetricsQueryInput as gE, ObserveMetricsQueryOutput as gF, ObserveTracesGetInput as gG, ObserveTracesGetOutput as gH, ObserveTracesSearchInput as gI, ObserveTracesSearchOutput as gJ, ObserveWebhooksCreateInput as gK, ObserveWebhooksCreateOutput as gL, ObserveWebhooksDeleteInput as gM, ObserveWebhooksDeleteOutput as gN, ObserveWebhooksDeliveriesListInput as gO, ObserveWebhooksDeliveriesListOutput as gP, ObserveWebhooksGetInput as gQ, ObserveWebhooksGetOutput as gR, ObserveWebhooksListInput as gS, ObserveWebhooksListOutput as gT, ObserveWebhooksRedeliverInput as gU, ObserveWebhooksRedeliverOutput as gV, ObserveWebhooksRotateSecretInput as gW, ObserveWebhooksRotateSecretOutput as gX, ObserveWebhooksUpdateInput as gY, ObserveWebhooksUpdateOutput as gZ, OrganizationAuthMeInput as g_, ObserveIssuesArchiveInput as ga, ObserveIssuesArchiveOutput as gb, ObserveIssuesAssignInput as gc, ObserveIssuesAssignOutput as gd, ObserveIssuesEventInput as ge, ObserveIssuesEventOutput as gf, ObserveIssuesEventsInput as gg, ObserveIssuesEventsOutput as gh, ObserveIssuesGetInput as gi, ObserveIssuesGetOutput as gj, ObserveIssuesHistogramInput as gk, ObserveIssuesHistogramOutput as gl, ObserveIssuesListInput as gm, ObserveIssuesListOutput as gn, ObserveIssuesResolveInput as go, ObserveIssuesResolveOutput as gp, ObserveKeysCreateInput as gq, ObserveKeysCreateOutput as gr, ObserveKeysListInput as gs, ObserveKeysListOutput as gt, ObserveKeysRevokeInput as gu, ObserveKeysRevokeOutput as gv, ObserveLogsFacetsInput as gw, ObserveLogsFacetsOutput as gx, ObserveLogsSearchInput as gy, ObserveLogsSearchOutput as gz, BrainBackupsListOutput as h, OrganizationGoogleadsInstallOutput as h$, OrganizationBillingBudgetsGetInput as h0, OrganizationBillingBudgetsGetOutput as h1, OrganizationBillingBudgetsSetInput as h2, OrganizationBillingBudgetsSetOutput as h3, OrganizationBillingCapsClearInput as h4, OrganizationBillingCapsClearOutput as h5, OrganizationBillingCapsSetInput as h6, OrganizationBillingCapsSetOutput as h7, OrganizationBindingsListInput as h8, OrganizationBindingsListOutput as h9, OrganizationConnectorsRemoveInput as hA, OrganizationConnectorsRemoveOutput as hB, OrganizationConnectorsRequestInput as hC, OrganizationConnectorsRequestOutput as hD, OrganizationCreateInput as hE, OrganizationCreateOutput as hF, OrganizationDomainsAddInput as hG, OrganizationDomainsAddOutput as hH, OrganizationDomainsGetInput as hI, OrganizationDomainsGetOutput as hJ, OrganizationDomainsListInput as hK, OrganizationDomainsListOutput as hL, OrganizationDomainsRemoveInput as hM, OrganizationDomainsRemoveOutput as hN, OrganizationDomainsSetModeInput as hO, OrganizationDomainsSetModeOutput as hP, OrganizationExtensionsListInstalledInput as hQ, OrganizationExtensionsListInstalledOutput as hR, OrganizationFeedbackSubmitInput as hS, OrganizationFeedbackSubmitOutput as hT, OrganizationGdriveInstallInput as hU, OrganizationGdriveInstallOutput as hV, OrganizationGithubInstallInput as hW, OrganizationGithubInstallOutput as hX, OrganizationGithubListInstallationsInput as hY, OrganizationGithubListInstallationsOutput as hZ, OrganizationGoogleadsInstallInput as h_, OrganizationClickupInstallInput as ha, OrganizationClickupInstallOutput as hb, OrganizationClickupListInstallationsInput as hc, OrganizationClickupListInstallationsOutput as hd, OrganizationCloudflareInstallInput as he, OrganizationCloudflareInstallOutput as hf, OrganizationConnectorsApproveRequestInput as hg, OrganizationConnectorsApproveRequestOutput as hh, OrganizationConnectorsAttachInput as hi, OrganizationConnectorsAttachOutput as hj, OrganizationConnectorsDeleteInput as hk, OrganizationConnectorsDeleteOutput as hl, OrganizationConnectorsDenyRequestInput as hm, OrganizationConnectorsDenyRequestOutput as hn, OrganizationConnectorsDetachInput as ho, OrganizationConnectorsDetachOutput as hp, OrganizationConnectorsListAttachmentsInput as hq, OrganizationConnectorsListAttachmentsOutput as hr, OrganizationConnectorsListAvailableInput as hs, OrganizationConnectorsListAvailableOutput as ht, OrganizationConnectorsListOrgInput as hu, OrganizationConnectorsListOrgOutput as hv, OrganizationConnectorsListInput as hw, OrganizationConnectorsListOutput as hx, OrganizationConnectorsListRequestsInput as hy, OrganizationConnectorsListRequestsOutput as hz, BrainClickupChannelsListInput as i, OrganizationRolesListOutput as i$, OrganizationListInput as i0, OrganizationListOutput as i1, OrganizationMemberAcceptInviteInput as i2, OrganizationMemberAcceptInviteOutput as i3, OrganizationMemberInviteInput as i4, OrganizationMemberInviteOutput as i5, OrganizationMemberListInvitationsInput as i6, OrganizationMemberListInvitationsOutput as i7, OrganizationMemberListProductAccessInput as i8, OrganizationMemberListProductAccessOutput as i9, OrganizationProductListRolesInput as iA, OrganizationProductListRolesOutput as iB, OrganizationProductRevokeAccessInput as iC, OrganizationProductRevokeAccessOutput as iD, OrganizationProductSelectInput as iE, OrganizationProductSelectOutput as iF, OrganizationProductSetAccessInput as iG, OrganizationProductSetAccessOutput as iH, OrganizationProductUpdateInput as iI, OrganizationProductUpdateOutput as iJ, OrganizationPublicKeysCreateInput as iK, OrganizationPublicKeysCreateOutput as iL, OrganizationPublicKeysListInput as iM, OrganizationPublicKeysListOutput as iN, OrganizationPublicKeysRevokeInput as iO, OrganizationPublicKeysRevokeOutput as iP, OrganizationPublicKeysUpdateScopeInput as iQ, OrganizationPublicKeysUpdateScopeOutput as iR, OrganizationPublicRoutesListInput as iS, OrganizationPublicRoutesListOutput as iT, OrganizationRolesCreateInput as iU, OrganizationRolesCreateOutput as iV, OrganizationRolesDeleteInput as iW, OrganizationRolesDeleteOutput as iX, OrganizationRolesGetInput as iY, OrganizationRolesGetOutput as iZ, OrganizationRolesListInput as i_, OrganizationMemberListInput as ia, OrganizationMemberListOutput as ib, OrganizationMemberRemoveInput as ic, OrganizationMemberRemoveOutput as id, OrganizationMemberRevokeInvitationInput as ie, OrganizationMemberRevokeInvitationOutput as ig, OrganizationMemberSetRoleInput as ih, OrganizationMemberSetRoleOutput as ii, OrganizationMemberShareProductInput as ij, OrganizationMemberShareProductOutput as ik, OrganizationMemberUnshareProductInput as il, OrganizationMemberUnshareProductOutput as im, OrganizationMembersAssignRoleInput as io, OrganizationMembersAssignRoleOutput as ip, OrganizationPermissionCatalogInput as iq, OrganizationPermissionCatalogOutput as ir, OrganizationProductCreateInput as is, OrganizationProductCreateOutput as it, OrganizationProductListAccessInput as iu, OrganizationProductListAccessOutput as iv, OrganizationProductListMembersInput as iw, OrganizationProductListMembersOutput as ix, OrganizationProductListInput as iy, OrganizationProductListOutput as iz, BrainClickupChannelsListOutput as j, RealtimeNamespaceUpdateOutput as j$, OrganizationRolesUpdateInput as j0, OrganizationRolesUpdateOutput as j1, OrganizationSecurityMfaEnableInput as j2, OrganizationSecurityMfaEnableOutput as j3, OrganizationSelectInput as j4, OrganizationSelectOutput as j5, OrganizationSupportThreadCreateInput as j6, OrganizationSupportThreadCreateOutput as j7, OrganizationSupportThreadGetInput as j8, OrganizationSupportThreadGetOutput as j9, PlaygroundWebhookGetLastInput as jA, PlaygroundWebhookGetLastOutput as jB, RealtimeArchiveExportInput as jC, RealtimeArchiveExportOutput as jD, RealtimeArchiveExportStatusInput as jE, RealtimeArchiveExportStatusOutput as jF, RealtimeArchiveGetInput as jG, RealtimeArchiveGetOutput as jH, RealtimeGrantCreateInput as jI, RealtimeGrantCreateOutput as jJ, RealtimeGrantListInput as jK, RealtimeGrantListOutput as jL, RealtimeGrantRevokeInput as jM, RealtimeGrantRevokeOutput as jN, RealtimeHistoryGetInput as jO, RealtimeHistoryGetOutput as jP, RealtimeMessagesPublishInput as jQ, RealtimeMessagesPublishOutput as jR, RealtimeNamespaceCreateInput as jS, RealtimeNamespaceCreateOutput as jT, RealtimeNamespaceDeleteInput as jU, RealtimeNamespaceDeleteOutput as jV, RealtimeNamespaceGetInput as jW, RealtimeNamespaceGetOutput as jX, RealtimeNamespaceListInput as jY, RealtimeNamespaceListOutput as jZ, RealtimeNamespaceUpdateInput as j_, OrganizationSupportThreadReplyInput as ja, OrganizationSupportThreadReplyOutput as jb, OrganizationSupportThreadsListInput as jc, OrganizationSupportThreadsListOutput as jd, PlaygroundAnalyticsOverviewInput as je, PlaygroundAnalyticsOverviewOutput as jf, PlaygroundBillingEntitlementsInput as jg, PlaygroundBillingEntitlementsOutput as jh, PlaygroundBillingRecordUsageInput as ji, PlaygroundBillingRecordUsageOutput as jj, PlaygroundClickupCreateTaskInput as jk, PlaygroundClickupCreateTaskOutput as jl, PlaygroundClickupGetLastWebhookInput as jm, PlaygroundClickupGetLastWebhookOutput as jn, PlaygroundClickupGetOverviewInput as jo, PlaygroundClickupGetOverviewOutput as jp, PlaygroundGdriveGetLastChangeInput as jq, PlaygroundGdriveGetLastChangeOutput as jr, PlaygroundGdriveReadFileInput as js, PlaygroundGdriveReadFileOutput as jt, PlaygroundGoogleadsReadCustomerInput as ju, PlaygroundGoogleadsReadCustomerOutput as jv, PlaygroundLifecycleGetStateInput as jw, PlaygroundLifecycleGetStateOutput as jx, PlaygroundLifecycleListEventsInput as jy, PlaygroundLifecycleListEventsOutput as jz, BrainClickupConnectionsListInput as k, SupportRuleListOutput as k$, RealtimePresenceEnterInput as k0, RealtimePresenceEnterOutput as k1, RealtimePresenceGetInput as k2, RealtimePresenceGetOutput as k3, RealtimePresenceLeaveInput as k4, RealtimePresenceLeaveOutput as k5, RealtimePresenceStatsInput as k6, RealtimePresenceStatsOutput as k7, RealtimePresenceUpdateInput as k8, RealtimePresenceUpdateOutput as k9, SupportAgentUpdateInput as kA, SupportAgentUpdateOutput as kB, SupportAttachmentCreateInput as kC, SupportAttachmentCreateOutput as kD, SupportAttachmentFinalizeInput as kE, SupportAttachmentFinalizeOutput as kF, SupportLabelCreateInput as kG, SupportLabelCreateOutput as kH, SupportLabelListInput as kI, SupportLabelListOutput as kJ, SupportMessageCreateInput as kK, SupportMessageCreateOutput as kL, SupportMessageListInput as kM, SupportMessageListOutput as kN, SupportResponseEscalateInput as kO, SupportResponseEscalateOutput as kP, SupportResponseGetInput as kQ, SupportResponseGetOutput as kR, SupportResponseListInput as kS, SupportResponseListOutput as kT, SupportRuleCreateInput as kU, SupportRuleCreateOutput as kV, SupportRuleDeleteInput as kW, SupportRuleDeleteOutput as kX, SupportRuleGetInput as kY, SupportRuleGetOutput as kZ, SupportRuleListInput as k_, RealtimePublicAccessStatusInput as ka, RealtimePublicAccessStatusOutput as kb, RealtimeStatusGetInput as kc, RealtimeStatusGetOutput as kd, RealtimeTokensCreateInput as ke, RealtimeTokensCreateOutput as kf, RealtimeWebhookCreateInput as kg, RealtimeWebhookCreateOutput as kh, RealtimeWebhookDeleteInput as ki, RealtimeWebhookDeleteOutput as kj, RealtimeWebhookDeliveriesListInput as kk, RealtimeWebhookDeliveriesListOutput as kl, RealtimeWebhookGetInput as km, RealtimeWebhookGetOutput as kn, RealtimeWebhookListInput as ko, RealtimeWebhookListOutput as kp, RealtimeWebhookSecretRotateInput as kq, RealtimeWebhookSecretRotateOutput as kr, RealtimeWebhookUpdateInput as ks, RealtimeWebhookUpdateOutput as kt, SupportAgentCreateInput as ku, SupportAgentCreateOutput as kv, SupportAgentGetInput as kw, SupportAgentGetOutput as kx, SupportAgentListInput as ky, SupportAgentListOutput as kz, BrainClickupConnectionsListOutput as l, TrackingDomainsVerifyOutput as l$, SupportRuleUpdateInput as l0, SupportRuleUpdateOutput as l1, SupportStatusArchiveInput as l2, SupportStatusArchiveOutput as l3, SupportStatusCreateInput as l4, SupportStatusCreateOutput as l5, SupportStatusListInput as l6, SupportStatusListOutput as l7, SupportStatusUpdateInput as l8, SupportStatusUpdateOutput as l9, SupportThreadUpdateInput as lA, SupportThreadUpdateOutput as lB, SupportWebhookCreateInput as lC, SupportWebhookCreateOutput as lD, SupportWebhookDeleteInput as lE, SupportWebhookDeleteOutput as lF, SupportWebhookDeliveriesListInput as lG, SupportWebhookDeliveriesListOutput as lH, SupportWebhookGetInput as lI, SupportWebhookGetOutput as lJ, SupportWebhookListInput as lK, SupportWebhookListOutput as lL, SupportWebhookRedeliverInput as lM, SupportWebhookRedeliverOutput as lN, SupportWebhookRotateSecretInput as lO, SupportWebhookRotateSecretOutput as lP, SupportWebhookUpdateInput as lQ, SupportWebhookUpdateOutput as lR, TrackingDomainsCreateInput as lS, TrackingDomainsCreateOutput as lT, TrackingDomainsDeleteInput as lU, TrackingDomainsDeleteOutput as lV, TrackingDomainsGetInput as lW, TrackingDomainsGetOutput as lX, TrackingDomainsListInput as lY, TrackingDomainsListOutput as lZ, TrackingDomainsVerifyInput as l_, SupportSurveyArchiveInput as la, SupportSurveyArchiveOutput as lb, SupportSurveyCreateInput as lc, SupportSurveyCreateOutput as ld, SupportSurveyGetInput as le, SupportSurveyGetOutput as lf, SupportSurveyListInput as lg, SupportSurveyListOutput as lh, SupportSurveyPublishInput as li, SupportSurveyPublishOutput as lj, SupportSurveyStatsInput as lk, SupportSurveyStatsOutput as ll, SupportSurveyUnpublishInput as lm, SupportSurveyUnpublishOutput as ln, SupportSurveyUpdateInput as lo, SupportSurveyUpdateOutput as lp, SupportThreadAssignInput as lq, SupportThreadAssignOutput as lr, SupportThreadCreateInput as ls, SupportThreadCreateOutput as lt, SupportThreadGetInput as lu, SupportThreadGetOutput as lv, SupportThreadListInput as lw, SupportThreadListOutput as lx, SupportThreadStatusSetInput as ly, SupportThreadStatusSetOutput as lz, BrainClickupListsListInput as m, UsersApikeysCreateOutput as m$, TrackingEventNamesArchiveInput as m0, TrackingEventNamesArchiveOutput as m1, TrackingEventNamesListInput as m2, TrackingEventNamesListOutput as m3, TrackingEventNamesUnarchiveInput as m4, TrackingEventNamesUnarchiveOutput as m5, TrackingGoogleadsConnectionStatusInput as m6, TrackingGoogleadsConnectionStatusOutput as m7, TrackingGoogleadsConversionActionsInput as m8, TrackingGoogleadsConversionActionsOutput as m9, TrackingLinkDomainsCreateInput as mA, TrackingLinkDomainsCreateOutput as mB, TrackingLinkDomainsDeleteInput as mC, TrackingLinkDomainsDeleteOutput as mD, TrackingLinkDomainsListInput as mE, TrackingLinkDomainsListOutput as mF, TrackingLiveEventsListInput as mG, TrackingLiveEventsListOutput as mH, TrackingProfilesDeleteInput as mI, TrackingProfilesDeleteOutput as mJ, TrackingProfilesExportInput as mK, TrackingProfilesExportOutput as mL, TrackingProfilesGetInput as mM, TrackingProfilesGetOutput as mN, TrackingProfilesListInput as mO, TrackingProfilesListOutput as mP, TrackingReportsAttributedJourneyInput as mQ, TrackingReportsAttributedJourneyOutput as mR, TrackingReportsEventVolumeInput as mS, TrackingReportsEventVolumeOutput as mT, TrackingReportsRevenueBySourceInput as mU, TrackingReportsRevenueBySourceOutput as mV, TrackingReportsSourcePeopleInput as mW, TrackingReportsSourcePeopleOutput as mX, TrackingSnippetsGetInput as mY, TrackingSnippetsGetOutput as mZ, UsersApikeysCreateInput as m_, TrackingGoogleadsFeedbackConfigGetInput as ma, TrackingGoogleadsFeedbackConfigGetOutput as mb, TrackingGoogleadsFeedbackConfigSetInput as mc, TrackingGoogleadsFeedbackConfigSetOutput as md, TrackingGoogleadsFeedbackRunInput as me, TrackingGoogleadsFeedbackRunOutput as mf, TrackingGoogleadsFeedbackStatusInput as mg, TrackingGoogleadsFeedbackStatusOutput as mh, TrackingGoogleadsFeedbackUploadsInput as mi, TrackingGoogleadsFeedbackUploadsOutput as mj, TrackingGoogleadsRoasReportInput as mk, TrackingGoogleadsRoasReportOutput as ml, TrackingGoogleadsSyncNowInput as mm, TrackingGoogleadsSyncNowOutput as mn, TrackingGoogleadsTrackingHealthInput as mo, TrackingGoogleadsTrackingHealthOutput as mp, TrackingGoogleadsUsVsPlatformInput as mq, TrackingGoogleadsUsVsPlatformOutput as mr, TrackingIdentityHealthInput as ms, TrackingIdentityHealthOutput as mt, TrackingInstallDomainsCreateInput as mu, TrackingInstallDomainsCreateOutput as mv, TrackingInstallDomainsDeleteInput as mw, TrackingInstallDomainsDeleteOutput as mx, TrackingInstallDomainsListInput as my, TrackingInstallDomainsListOutput as mz, BrainClickupListsListOutput as n, UsersWaitlistEraseOutput as n$, UsersApikeysListInput as n0, UsersApikeysListOutput as n1, UsersApikeysRevokeInput as n2, UsersApikeysRevokeOutput as n3, UsersAuditListInput as n4, UsersAuditListOutput as n5, UsersConfigGetInput as n6, UsersConfigGetOutput as n7, UsersConfigUpsertInput as n8, UsersConfigUpsertOutput as n9, UsersStatsGetInput as nA, UsersStatsGetOutput as nB, UsersUsersBanInput as nC, UsersUsersBanOutput as nD, UsersUsersCreateInput as nE, UsersUsersCreateOutput as nF, UsersUsersDeleteInput as nG, UsersUsersDeleteOutput as nH, UsersUsersEraseInput as nI, UsersUsersEraseOutput as nJ, UsersUsersExportInput as nK, UsersUsersExportOutput as nL, UsersUsersGetInput as nM, UsersUsersGetOutput as nN, UsersUsersImportInput as nO, UsersUsersImportOutput as nP, UsersUsersInviteInput as nQ, UsersUsersInviteOutput as nR, UsersUsersListInput as nS, UsersUsersListOutput as nT, UsersUsersSetPrimaryIdentifierInput as nU, UsersUsersSetPrimaryIdentifierOutput as nV, UsersUsersUnbanInput as nW, UsersUsersUnbanOutput as nX, UsersUsersUpdateInput as nY, UsersUsersUpdateOutput as nZ, UsersWaitlistEraseInput as n_, UsersFactorsListInput as na, UsersFactorsListOutput as nb, UsersFactorsResetInput as nc, UsersFactorsResetOutput as nd, UsersKeysListInput as ne, UsersKeysListOutput as nf, UsersKeysRevokeInput as ng, UsersKeysRevokeOutput as nh, UsersKeysRotateInput as ni, UsersKeysRotateOutput as nj, UsersOpsRetentionGetInput as nk, UsersOpsRetentionGetOutput as nl, UsersOpsSloGetInput as nm, UsersOpsSloGetOutput as nn, UsersPasskeysListInput as no, UsersPasskeysListOutput as np, UsersPasskeysRevokeInput as nq, UsersPasskeysRevokeOutput as nr, UsersSessionsGetInput as ns, UsersSessionsGetOutput as nt, UsersSessionsImpersonateInput as nu, UsersSessionsImpersonateOutput as nv, UsersSessionsListInput as nw, UsersSessionsListOutput as nx, UsersSessionsRevokeInput as ny, UsersSessionsRevokeOutput as nz, BrainClickupSpacesListInput as o, UsersWaitlistFunnelInput as o0, UsersWaitlistFunnelOutput as o1, UsersWaitlistImportInput as o2, UsersWaitlistImportOutput as o3, UsersWaitlistInviteInput as o4, UsersWaitlistInviteOutput as o5, UsersWaitlistListInput as o6, UsersWaitlistListOutput as o7, UsersWebhooksCreateInput as o8, UsersWebhooksCreateOutput as o9, UsersWebhooksDeleteInput as oa, UsersWebhooksDeleteOutput as ob, UsersWebhooksDeliveriesListInput as oc, UsersWebhooksDeliveriesListOutput as od, UsersWebhooksGetInput as oe, UsersWebhooksGetOutput as of, UsersWebhooksListInput as og, UsersWebhooksListOutput as oh, UsersWebhooksRotateSecretInput as oi, UsersWebhooksRotateSecretOutput as oj, UsersWebhooksUpdateInput as ok, UsersWebhooksUpdateOutput as ol, WaitlistConfigGetInput as om, WaitlistConfigGetOutput as on, WaitlistConfigUpsertInput as oo, WaitlistConfigUpsertOutput as op, WaitlistEmbedGetInput as oq, WaitlistEmbedGetOutput as or, WaitlistInvitesSendInput as os, WaitlistInvitesSendOutput as ot, WaitlistSignupsEraseInput as ou, WaitlistSignupsEraseOutput as ov, WaitlistSignupsFunnelInput as ow, WaitlistSignupsFunnelOutput as ox, WaitlistSignupsListInput as oy, WaitlistSignupsListOutput as oz, 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 };
@@ -1,4 +1,4 @@
1
- import { G as GeneratedClient, at as ConsentConfigCookieDomainUpsertInput, au as ConsentConfigCookieDomainUpsertOutput, av as ConsentConfigCustomizationUpsertInput, aw as ConsentConfigCustomizationUpsertOutput, ax as ConsentConfigFloatingIconUpsertInput, ay as ConsentConfigFloatingIconUpsertOutput, az as ConsentConfigThemeUpsertInput, aA as ConsentConfigThemeUpsertOutput, aB as ConsentDashboardConfigGetInput, aC as ConsentDashboardConfigGetOutput, aD as ConsentDashboardDecisionsListInput, aE as ConsentDashboardDecisionsListOutput, aF as ConsentDashboardEmbedSnippetGetInput, aG as ConsentDashboardEmbedSnippetGetOutput, aH as ConsentDashboardStatsGetInput, aI as ConsentDashboardStatsGetOutput, aJ as ConsentEmbedGetInput, aK as ConsentEmbedGetOutput, aL as ConsentProvidersCreateInput, aM as ConsentProvidersCreateOutput, aN as ConsentProvidersDeleteInput, aO as ConsentProvidersDeleteOutput, aP as ConsentProvidersListInput, aQ as ConsentProvidersListOutput, aR as ConsentProvidersUpdateInput, aS as ConsentProvidersUpdateOutput, aT as ConsentRecordsExportInput, aU as ConsentRecordsExportOutput, aV as ConsentStatsGetInput, aW as ConsentStatsGetOutput } from '../client.gen-BsYUM5lP.cjs';
1
+ import { G as GeneratedClient, at as ConsentConfigCookieDomainUpsertInput, au as ConsentConfigCookieDomainUpsertOutput, av as ConsentConfigCustomizationUpsertInput, aw as ConsentConfigCustomizationUpsertOutput, ax as ConsentConfigFloatingIconUpsertInput, ay as ConsentConfigFloatingIconUpsertOutput, az as ConsentConfigThemeUpsertInput, aA as ConsentConfigThemeUpsertOutput, aB as ConsentDashboardConfigGetInput, aC as ConsentDashboardConfigGetOutput, aD as ConsentDashboardDecisionsListInput, aE as ConsentDashboardDecisionsListOutput, aF as ConsentDashboardEmbedSnippetGetInput, aG as ConsentDashboardEmbedSnippetGetOutput, aH as ConsentDashboardStatsGetInput, aI as ConsentDashboardStatsGetOutput, aJ as ConsentEmbedGetInput, aK as ConsentEmbedGetOutput, aL as ConsentProvidersCreateInput, aM as ConsentProvidersCreateOutput, aN as ConsentProvidersDeleteInput, aO as ConsentProvidersDeleteOutput, aP as ConsentProvidersListInput, aQ as ConsentProvidersListOutput, aR as ConsentProvidersUpdateInput, aS as ConsentProvidersUpdateOutput, aT as ConsentRecordsExportInput, aU as ConsentRecordsExportOutput, aV as ConsentStatsGetInput, aW as ConsentStatsGetOutput } from '../client.gen-BE8VaNrU.cjs';
2
2
 
3
3
  declare const consentConfigCookieDomainUpsertMutationOptions: (sdk: GeneratedClient) => {
4
4
  mutationKey: string[];
@@ -1,4 +1,4 @@
1
- import { G as GeneratedClient, at as ConsentConfigCookieDomainUpsertInput, au as ConsentConfigCookieDomainUpsertOutput, av as ConsentConfigCustomizationUpsertInput, aw as ConsentConfigCustomizationUpsertOutput, ax as ConsentConfigFloatingIconUpsertInput, ay as ConsentConfigFloatingIconUpsertOutput, az as ConsentConfigThemeUpsertInput, aA as ConsentConfigThemeUpsertOutput, aB as ConsentDashboardConfigGetInput, aC as ConsentDashboardConfigGetOutput, aD as ConsentDashboardDecisionsListInput, aE as ConsentDashboardDecisionsListOutput, aF as ConsentDashboardEmbedSnippetGetInput, aG as ConsentDashboardEmbedSnippetGetOutput, aH as ConsentDashboardStatsGetInput, aI as ConsentDashboardStatsGetOutput, aJ as ConsentEmbedGetInput, aK as ConsentEmbedGetOutput, aL as ConsentProvidersCreateInput, aM as ConsentProvidersCreateOutput, aN as ConsentProvidersDeleteInput, aO as ConsentProvidersDeleteOutput, aP as ConsentProvidersListInput, aQ as ConsentProvidersListOutput, aR as ConsentProvidersUpdateInput, aS as ConsentProvidersUpdateOutput, aT as ConsentRecordsExportInput, aU as ConsentRecordsExportOutput, aV as ConsentStatsGetInput, aW as ConsentStatsGetOutput } from '../client.gen-BsYUM5lP.js';
1
+ import { G as GeneratedClient, at as ConsentConfigCookieDomainUpsertInput, au as ConsentConfigCookieDomainUpsertOutput, av as ConsentConfigCustomizationUpsertInput, aw as ConsentConfigCustomizationUpsertOutput, ax as ConsentConfigFloatingIconUpsertInput, ay as ConsentConfigFloatingIconUpsertOutput, az as ConsentConfigThemeUpsertInput, aA as ConsentConfigThemeUpsertOutput, aB as ConsentDashboardConfigGetInput, aC as ConsentDashboardConfigGetOutput, aD as ConsentDashboardDecisionsListInput, aE as ConsentDashboardDecisionsListOutput, aF as ConsentDashboardEmbedSnippetGetInput, aG as ConsentDashboardEmbedSnippetGetOutput, aH as ConsentDashboardStatsGetInput, aI as ConsentDashboardStatsGetOutput, aJ as ConsentEmbedGetInput, aK as ConsentEmbedGetOutput, aL as ConsentProvidersCreateInput, aM as ConsentProvidersCreateOutput, aN as ConsentProvidersDeleteInput, aO as ConsentProvidersDeleteOutput, aP as ConsentProvidersListInput, aQ as ConsentProvidersListOutput, aR as ConsentProvidersUpdateInput, aS as ConsentProvidersUpdateOutput, aT as ConsentRecordsExportInput, aU as ConsentRecordsExportOutput, aV as ConsentStatsGetInput, aW as ConsentStatsGetOutput } from '../client.gen-BE8VaNrU.js';
2
2
 
3
3
  declare const consentConfigCookieDomainUpsertMutationOptions: (sdk: GeneratedClient) => {
4
4
  mutationKey: string[];
@@ -1,4 +1,4 @@
1
- import { G as GeneratedClient, aX as DeploymentAlertCreateInput, aY as DeploymentAlertCreateOutput, aZ as DeploymentAlertDeleteInput, a_ as DeploymentAlertDeleteOutput, a$ as DeploymentAlertEventsListInput, b0 as DeploymentAlertEventsListOutput, b1 as DeploymentAlertListInput, b2 as DeploymentAlertListOutput, b3 as DeploymentAlertUpdateInput, b4 as DeploymentAlertUpdateOutput, b5 as DeploymentAnalyticsQueryInput, b6 as DeploymentAnalyticsQueryOutput, b7 as DeploymentAuditListInput, b8 as DeploymentAuditListOutput, b9 as DeploymentBuildGetInput, ba as DeploymentBuildGetOutput, bb as DeploymentBuildListInput, bc as DeploymentBuildListOutput, bd as DeploymentBuildLogsInput, be as DeploymentBuildLogsOutput, bf as DeploymentCanvasGetInput, bg as DeploymentCanvasGetOutput, bh as DeploymentCanvasMoveNodeInput, bi as DeploymentCanvasMoveNodeOutput, bj as DeploymentCloudSqlBackfillLogFlagsInput, bk as DeploymentCloudSqlBackfillLogFlagsOutput, bl as DeploymentCloudSqlDatabaseAttachInput, bm as DeploymentCloudSqlDatabaseAttachOutput, bn as DeploymentCloudSqlDatabaseCreateInput, bo as DeploymentCloudSqlDatabaseCreateOutput, bp as DeploymentCloudSqlDatabaseDeleteInput, bq as DeploymentCloudSqlDatabaseDeleteOutput, br as DeploymentCloudSqlDatabaseDetachInput, bs as DeploymentCloudSqlDatabaseDetachOutput, bt as DeploymentCloudSqlDatabaseGetInput, bu as DeploymentCloudSqlDatabaseGetOutput, bv as DeploymentCloudSqlDatabaseListInput, bw as DeploymentCloudSqlDatabaseListOutput, bx as DeploymentCloudSqlInstanceBackupListInput, by as DeploymentCloudSqlInstanceBackupListOutput, bz as DeploymentCloudSqlInstanceBackupInput, bA as DeploymentCloudSqlInstanceBackupOutput, bB as DeploymentCloudSqlInstanceCreateInput, bC as DeploymentCloudSqlInstanceCreateOutput, bD as DeploymentCloudSqlInstanceDeleteInput, bE as DeploymentCloudSqlInstanceDeleteOutput, bF as DeploymentCloudSqlInstanceGetInput, bG as DeploymentCloudSqlInstanceGetOutput, bH as DeploymentCloudSqlInstanceListInput, bI as DeploymentCloudSqlInstanceListOutput, bJ as DeploymentCloudSqlInstanceResizeInput, bK as DeploymentCloudSqlInstanceResizeOutput, bL as DeploymentCloudSqlInstanceRestoreInput, bM as DeploymentCloudSqlInstanceRestoreOutput, bN as DeploymentCloudSqlLogsInput, bO as DeploymentCloudSqlLogsOutput, bP as DeploymentDeploymentCancelInput, bQ as DeploymentDeploymentCancelOutput, bR as DeploymentDeploymentGetInput, bS as DeploymentDeploymentGetOutput, bT as DeploymentDeploymentListInput, bU as DeploymentDeploymentListOutput, bV as DeploymentDomainAddInput, bW as DeploymentDomainAddOutput, bX as DeploymentDomainAllowedListInput, bY as DeploymentDomainAllowedListOutput, bZ as DeploymentDomainGetInput, b_ as DeploymentDomainGetOutput, b$ as DeploymentDomainListByServiceInput, c0 as DeploymentDomainListByServiceOutput, c1 as DeploymentDomainListInput, c2 as DeploymentDomainListOutput, c3 as DeploymentDomainRedirectWwwInput, c4 as DeploymentDomainRedirectWwwOutput, c5 as DeploymentDomainRemoveInput, c6 as DeploymentDomainRemoveOutput, c7 as DeploymentDomainRoutesAddInput, c8 as DeploymentDomainRoutesAddOutput, c9 as DeploymentDomainRoutesListInput, ca as DeploymentDomainRoutesListOutput, cb as DeploymentDomainRoutesRemoveInput, cc as DeploymentDomainRoutesRemoveOutput, cd as DeploymentDomainRoutesUpdateInput, ce as DeploymentDomainRoutesUpdateOutput, cf as DeploymentDomainVerifyInput, cg as DeploymentDomainVerifyOutput, ch as DeploymentEnvironmentCreateInput, ci as DeploymentEnvironmentCreateOutput, cj as DeploymentEnvironmentDeleteInput, ck as DeploymentEnvironmentDeleteOutput, cl as DeploymentEnvironmentForkInput, cm as DeploymentEnvironmentForkOutput, cn as DeploymentEnvironmentGetInput, co as DeploymentEnvironmentGetOutput, cp as DeploymentEnvironmentListInput, cq as DeploymentEnvironmentListOutput, cr as DeploymentEnvironmentReconcileInput, cs as DeploymentEnvironmentReconcileOutput, ct as DeploymentEnvironmentUpdateInput, cu as DeploymentEnvironmentUpdateOutput, cv as DeploymentEventsListByEnvironmentInput, cw as DeploymentEventsListByEnvironmentOutput, cx as DeploymentEventsListByServiceInput, cy as DeploymentEventsListByServiceOutput, cz as DeploymentManagedServiceBackupListInput, cA as DeploymentManagedServiceBackupListOutput, cB as DeploymentManagedServiceBackupInput, cC as DeploymentManagedServiceBackupOutput, cD as DeploymentManagedServiceConnectInfoInput, cE as DeploymentManagedServiceConnectInfoOutput, cF as DeploymentManagedServiceDeleteInput, cG as DeploymentManagedServiceDeleteOutput, cH as DeploymentManagedServiceGetInput, cI as DeploymentManagedServiceGetOutput, cJ as DeploymentManagedServiceListInput, cK as DeploymentManagedServiceListOutput, cL as DeploymentManagedServiceLogsInput, cM as DeploymentManagedServiceLogsOutput, cN as DeploymentManagedServiceProvisionInput, cO as DeploymentManagedServiceProvisionOutput, cP as DeploymentManagedServiceReconcileInput, cQ as DeploymentManagedServiceReconcileOutput, cR as DeploymentManagedServiceResizeInput, cS as DeploymentManagedServiceResizeOutput, cT as DeploymentManagedServiceRestoreInput, cU as DeploymentManagedServiceRestoreOutput, cV as DeploymentManagedServiceStartInput, cW as DeploymentManagedServiceStartOutput, cX as DeploymentManagedServiceStopInput, cY as DeploymentManagedServiceStopOutput, cZ as DeploymentManagedServiceTypesInput, c_ as DeploymentManagedServiceTypesOutput, c$ as DeploymentMetricsGetInput, d0 as DeploymentMetricsGetOutput, d1 as DeploymentPreviewEnvironmentCreateInput, d2 as DeploymentPreviewEnvironmentCreateOutput, d3 as DeploymentPreviewEnvironmentDeleteInput, d4 as DeploymentPreviewEnvironmentDeleteOutput, d5 as DeploymentPreviewEnvironmentListInput, d6 as DeploymentPreviewEnvironmentListOutput, d7 as DeploymentPreviewPolicyGetInput, d8 as DeploymentPreviewPolicyGetOutput, d9 as DeploymentPreviewPolicySetInput, da as DeploymentPreviewPolicySetOutput, db as DeploymentServiceCreateInput, dc as DeploymentServiceCreateOutput, dd as DeploymentServiceDeleteInput, de as DeploymentServiceDeleteOutput, df as DeploymentServiceExecInput, dg as DeploymentServiceExecOutput, dh as DeploymentServiceGetInput, di as DeploymentServiceGetOutput, dj as DeploymentServiceListInput, dk as DeploymentServiceListOutput, dl as DeploymentServiceLogsInput, dm as DeploymentServiceLogsOutput, dn as DeploymentServiceRedeployInput, dp as DeploymentServiceRedeployOutput, dq as DeploymentServiceRestartInput, dr as DeploymentServiceRestartOutput, ds as DeploymentServiceRollbackInput, dt as DeploymentServiceRollbackOutput, du as DeploymentServiceScaleInput, dv as DeploymentServiceScaleOutput, dw as DeploymentServiceUpdateInput, dx as DeploymentServiceUpdateOutput, dy as DeploymentServiceWakeInput, dz as DeploymentServiceWakeOutput, dA as DeploymentSshCommandInput, dB as DeploymentSshCommandOutput, dC as DeploymentSshKeyDeleteInput, dD as DeploymentSshKeyDeleteOutput, dE as DeploymentSshKeyListInput, dF as DeploymentSshKeyListOutput, dG as DeploymentSshKeyRegisterInput, dH as DeploymentSshKeyRegisterOutput, dI as DeploymentSuspensionGetInput, dJ as DeploymentSuspensionGetOutput, dK as DeploymentVariableListEnvInput, dL as DeploymentVariableListEnvOutput, dM as DeploymentVariableListProductInput, dN as DeploymentVariableListProductOutput, dO as DeploymentVariableListInput, dP as DeploymentVariableListOutput, dQ as DeploymentVariableSetEnvInput, dR as DeploymentVariableSetEnvOutput, dS as DeploymentVariableSetInput, dT as DeploymentVariableSetOutput, dU as DeploymentVariableSetProductInput, dV as DeploymentVariableSetProductOutput, dW as DeploymentVariableUnsetEnvInput, dX as DeploymentVariableUnsetEnvOutput, dY as DeploymentVariableUnsetInput, dZ as DeploymentVariableUnsetOutput, d_ as DeploymentVariableUnsetProductInput, d$ as DeploymentVariableUnsetProductOutput, e0 as DeploymentVcsBranchListInput, e1 as DeploymentVcsBranchListOutput, e2 as DeploymentVcsConnectionListInput, e3 as DeploymentVcsConnectionListOutput, e4 as DeploymentVcsRepoListInput, e5 as DeploymentVcsRepoListOutput, e6 as DeploymentVolumeCreateInput, e7 as DeploymentVolumeCreateOutput, e8 as DeploymentVolumeDeleteInput, e9 as DeploymentVolumeDeleteOutput, ea as DeploymentVolumeDetachInput, eb as DeploymentVolumeDetachOutput, ec as DeploymentVolumeGetInput, ed as DeploymentVolumeGetOutput, ee as DeploymentVolumeListInput, ef as DeploymentVolumeListOutput, eg as DeploymentVolumeResizeInput, eh as DeploymentVolumeResizeOutput } from '../client.gen-BsYUM5lP.cjs';
1
+ import { G as GeneratedClient, aX as DeploymentAlertCreateInput, aY as DeploymentAlertCreateOutput, aZ as DeploymentAlertDeleteInput, a_ as DeploymentAlertDeleteOutput, a$ as DeploymentAlertEventsListInput, b0 as DeploymentAlertEventsListOutput, b1 as DeploymentAlertListInput, b2 as DeploymentAlertListOutput, b3 as DeploymentAlertUpdateInput, b4 as DeploymentAlertUpdateOutput, b5 as DeploymentAnalyticsQueryInput, b6 as DeploymentAnalyticsQueryOutput, b7 as DeploymentAuditListInput, b8 as DeploymentAuditListOutput, b9 as DeploymentBuildGetInput, ba as DeploymentBuildGetOutput, bb as DeploymentBuildListInput, bc as DeploymentBuildListOutput, bd as DeploymentBuildLogsInput, be as DeploymentBuildLogsOutput, bf as DeploymentCanvasGetInput, bg as DeploymentCanvasGetOutput, bh as DeploymentCanvasMoveNodeInput, bi as DeploymentCanvasMoveNodeOutput, bj as DeploymentCloudSqlBackfillLogFlagsInput, bk as DeploymentCloudSqlBackfillLogFlagsOutput, bl as DeploymentCloudSqlDatabaseAttachInput, bm as DeploymentCloudSqlDatabaseAttachOutput, bn as DeploymentCloudSqlDatabaseCreateInput, bo as DeploymentCloudSqlDatabaseCreateOutput, bp as DeploymentCloudSqlDatabaseDeleteInput, bq as DeploymentCloudSqlDatabaseDeleteOutput, br as DeploymentCloudSqlDatabaseDetachInput, bs as DeploymentCloudSqlDatabaseDetachOutput, bt as DeploymentCloudSqlDatabaseGetInput, bu as DeploymentCloudSqlDatabaseGetOutput, bv as DeploymentCloudSqlDatabaseListInput, bw as DeploymentCloudSqlDatabaseListOutput, bx as DeploymentCloudSqlInstanceBackupListInput, by as DeploymentCloudSqlInstanceBackupListOutput, bz as DeploymentCloudSqlInstanceBackupInput, bA as DeploymentCloudSqlInstanceBackupOutput, bB as DeploymentCloudSqlInstanceCreateInput, bC as DeploymentCloudSqlInstanceCreateOutput, bD as DeploymentCloudSqlInstanceDeleteInput, bE as DeploymentCloudSqlInstanceDeleteOutput, bF as DeploymentCloudSqlInstanceGetInput, bG as DeploymentCloudSqlInstanceGetOutput, bH as DeploymentCloudSqlInstanceListInput, bI as DeploymentCloudSqlInstanceListOutput, bJ as DeploymentCloudSqlInstanceResizeInput, bK as DeploymentCloudSqlInstanceResizeOutput, bL as DeploymentCloudSqlInstanceRestoreInput, bM as DeploymentCloudSqlInstanceRestoreOutput, bN as DeploymentCloudSqlLogsInput, bO as DeploymentCloudSqlLogsOutput, bP as DeploymentDeploymentCancelInput, bQ as DeploymentDeploymentCancelOutput, bR as DeploymentDeploymentGetInput, bS as DeploymentDeploymentGetOutput, bT as DeploymentDeploymentListInput, bU as DeploymentDeploymentListOutput, bV as DeploymentDomainAddInput, bW as DeploymentDomainAddOutput, bX as DeploymentDomainAllowedListInput, bY as DeploymentDomainAllowedListOutput, bZ as DeploymentDomainGetInput, b_ as DeploymentDomainGetOutput, b$ as DeploymentDomainListByServiceInput, c0 as DeploymentDomainListByServiceOutput, c1 as DeploymentDomainListInput, c2 as DeploymentDomainListOutput, c3 as DeploymentDomainRedirectWwwInput, c4 as DeploymentDomainRedirectWwwOutput, c5 as DeploymentDomainRemoveInput, c6 as DeploymentDomainRemoveOutput, c7 as DeploymentDomainRoutesAddInput, c8 as DeploymentDomainRoutesAddOutput, c9 as DeploymentDomainRoutesListInput, ca as DeploymentDomainRoutesListOutput, cb as DeploymentDomainRoutesRemoveInput, cc as DeploymentDomainRoutesRemoveOutput, cd as DeploymentDomainRoutesUpdateInput, ce as DeploymentDomainRoutesUpdateOutput, cf as DeploymentDomainVerifyInput, cg as DeploymentDomainVerifyOutput, ch as DeploymentEnvironmentCreateInput, ci as DeploymentEnvironmentCreateOutput, cj as DeploymentEnvironmentDeleteInput, ck as DeploymentEnvironmentDeleteOutput, cl as DeploymentEnvironmentForkInput, cm as DeploymentEnvironmentForkOutput, cn as DeploymentEnvironmentGetInput, co as DeploymentEnvironmentGetOutput, cp as DeploymentEnvironmentListInput, cq as DeploymentEnvironmentListOutput, cr as DeploymentEnvironmentReconcileInput, cs as DeploymentEnvironmentReconcileOutput, ct as DeploymentEnvironmentUpdateInput, cu as DeploymentEnvironmentUpdateOutput, cv as DeploymentEventsListByEnvironmentInput, cw as DeploymentEventsListByEnvironmentOutput, cx as DeploymentEventsListByServiceInput, cy as DeploymentEventsListByServiceOutput, cz as DeploymentManagedServiceBackupListInput, cA as DeploymentManagedServiceBackupListOutput, cB as DeploymentManagedServiceBackupInput, cC as DeploymentManagedServiceBackupOutput, cD as DeploymentManagedServiceConnectInfoInput, cE as DeploymentManagedServiceConnectInfoOutput, cF as DeploymentManagedServiceDeleteInput, cG as DeploymentManagedServiceDeleteOutput, cH as DeploymentManagedServiceGetInput, cI as DeploymentManagedServiceGetOutput, cJ as DeploymentManagedServiceListInput, cK as DeploymentManagedServiceListOutput, cL as DeploymentManagedServiceLogsInput, cM as DeploymentManagedServiceLogsOutput, cN as DeploymentManagedServiceProvisionInput, cO as DeploymentManagedServiceProvisionOutput, cP as DeploymentManagedServiceReconcileInput, cQ as DeploymentManagedServiceReconcileOutput, cR as DeploymentManagedServiceResizeInput, cS as DeploymentManagedServiceResizeOutput, cT as DeploymentManagedServiceRestoreInput, cU as DeploymentManagedServiceRestoreOutput, cV as DeploymentManagedServiceStartInput, cW as DeploymentManagedServiceStartOutput, cX as DeploymentManagedServiceStopInput, cY as DeploymentManagedServiceStopOutput, cZ as DeploymentManagedServiceTypesInput, c_ as DeploymentManagedServiceTypesOutput, c$ as DeploymentMetricsGetInput, d0 as DeploymentMetricsGetOutput, d1 as DeploymentPreviewEnvironmentCreateInput, d2 as DeploymentPreviewEnvironmentCreateOutput, d3 as DeploymentPreviewEnvironmentDeleteInput, d4 as DeploymentPreviewEnvironmentDeleteOutput, d5 as DeploymentPreviewEnvironmentListInput, d6 as DeploymentPreviewEnvironmentListOutput, d7 as DeploymentPreviewPolicyGetInput, d8 as DeploymentPreviewPolicyGetOutput, d9 as DeploymentPreviewPolicySetInput, da as DeploymentPreviewPolicySetOutput, db as DeploymentServiceCreateInput, dc as DeploymentServiceCreateOutput, dd as DeploymentServiceDeleteInput, de as DeploymentServiceDeleteOutput, df as DeploymentServiceExecInput, dg as DeploymentServiceExecOutput, dh as DeploymentServiceGetInput, di as DeploymentServiceGetOutput, dj as DeploymentServiceListInput, dk as DeploymentServiceListOutput, dl as DeploymentServiceLogsInput, dm as DeploymentServiceLogsOutput, dn as DeploymentServiceRedeployInput, dp as DeploymentServiceRedeployOutput, dq as DeploymentServiceRestartInput, dr as DeploymentServiceRestartOutput, ds as DeploymentServiceRollbackInput, dt as DeploymentServiceRollbackOutput, du as DeploymentServiceScaleInput, dv as DeploymentServiceScaleOutput, dw as DeploymentServiceUpdateInput, dx as DeploymentServiceUpdateOutput, dy as DeploymentServiceWakeInput, dz as DeploymentServiceWakeOutput, dA as DeploymentSshCommandInput, dB as DeploymentSshCommandOutput, dC as DeploymentSshKeyDeleteInput, dD as DeploymentSshKeyDeleteOutput, dE as DeploymentSshKeyListInput, dF as DeploymentSshKeyListOutput, dG as DeploymentSshKeyRegisterInput, dH as DeploymentSshKeyRegisterOutput, dI as DeploymentSuspensionGetInput, dJ as DeploymentSuspensionGetOutput, dK as DeploymentVariableListEnvInput, dL as DeploymentVariableListEnvOutput, dM as DeploymentVariableListProductInput, dN as DeploymentVariableListProductOutput, dO as DeploymentVariableListInput, dP as DeploymentVariableListOutput, dQ as DeploymentVariableSetEnvInput, dR as DeploymentVariableSetEnvOutput, dS as DeploymentVariableSetInput, dT as DeploymentVariableSetOutput, dU as DeploymentVariableSetProductInput, dV as DeploymentVariableSetProductOutput, dW as DeploymentVariableUnsetEnvInput, dX as DeploymentVariableUnsetEnvOutput, dY as DeploymentVariableUnsetInput, dZ as DeploymentVariableUnsetOutput, d_ as DeploymentVariableUnsetProductInput, d$ as DeploymentVariableUnsetProductOutput, e0 as DeploymentVcsBranchListInput, e1 as DeploymentVcsBranchListOutput, e2 as DeploymentVcsConnectionListInput, e3 as DeploymentVcsConnectionListOutput, e4 as DeploymentVcsRepoListInput, e5 as DeploymentVcsRepoListOutput, e6 as DeploymentVolumeCreateInput, e7 as DeploymentVolumeCreateOutput, e8 as DeploymentVolumeDeleteInput, e9 as DeploymentVolumeDeleteOutput, ea as DeploymentVolumeDetachInput, eb as DeploymentVolumeDetachOutput, ec as DeploymentVolumeGetInput, ed as DeploymentVolumeGetOutput, ee as DeploymentVolumeListInput, ef as DeploymentVolumeListOutput, eg as DeploymentVolumeResizeInput, eh as DeploymentVolumeResizeOutput } from '../client.gen-BE8VaNrU.cjs';
2
2
 
3
3
  declare const deploymentAlertCreateMutationOptions: (sdk: GeneratedClient) => {
4
4
  mutationKey: string[];
@@ -1,4 +1,4 @@
1
- import { G as GeneratedClient, aX as DeploymentAlertCreateInput, aY as DeploymentAlertCreateOutput, aZ as DeploymentAlertDeleteInput, a_ as DeploymentAlertDeleteOutput, a$ as DeploymentAlertEventsListInput, b0 as DeploymentAlertEventsListOutput, b1 as DeploymentAlertListInput, b2 as DeploymentAlertListOutput, b3 as DeploymentAlertUpdateInput, b4 as DeploymentAlertUpdateOutput, b5 as DeploymentAnalyticsQueryInput, b6 as DeploymentAnalyticsQueryOutput, b7 as DeploymentAuditListInput, b8 as DeploymentAuditListOutput, b9 as DeploymentBuildGetInput, ba as DeploymentBuildGetOutput, bb as DeploymentBuildListInput, bc as DeploymentBuildListOutput, bd as DeploymentBuildLogsInput, be as DeploymentBuildLogsOutput, bf as DeploymentCanvasGetInput, bg as DeploymentCanvasGetOutput, bh as DeploymentCanvasMoveNodeInput, bi as DeploymentCanvasMoveNodeOutput, bj as DeploymentCloudSqlBackfillLogFlagsInput, bk as DeploymentCloudSqlBackfillLogFlagsOutput, bl as DeploymentCloudSqlDatabaseAttachInput, bm as DeploymentCloudSqlDatabaseAttachOutput, bn as DeploymentCloudSqlDatabaseCreateInput, bo as DeploymentCloudSqlDatabaseCreateOutput, bp as DeploymentCloudSqlDatabaseDeleteInput, bq as DeploymentCloudSqlDatabaseDeleteOutput, br as DeploymentCloudSqlDatabaseDetachInput, bs as DeploymentCloudSqlDatabaseDetachOutput, bt as DeploymentCloudSqlDatabaseGetInput, bu as DeploymentCloudSqlDatabaseGetOutput, bv as DeploymentCloudSqlDatabaseListInput, bw as DeploymentCloudSqlDatabaseListOutput, bx as DeploymentCloudSqlInstanceBackupListInput, by as DeploymentCloudSqlInstanceBackupListOutput, bz as DeploymentCloudSqlInstanceBackupInput, bA as DeploymentCloudSqlInstanceBackupOutput, bB as DeploymentCloudSqlInstanceCreateInput, bC as DeploymentCloudSqlInstanceCreateOutput, bD as DeploymentCloudSqlInstanceDeleteInput, bE as DeploymentCloudSqlInstanceDeleteOutput, bF as DeploymentCloudSqlInstanceGetInput, bG as DeploymentCloudSqlInstanceGetOutput, bH as DeploymentCloudSqlInstanceListInput, bI as DeploymentCloudSqlInstanceListOutput, bJ as DeploymentCloudSqlInstanceResizeInput, bK as DeploymentCloudSqlInstanceResizeOutput, bL as DeploymentCloudSqlInstanceRestoreInput, bM as DeploymentCloudSqlInstanceRestoreOutput, bN as DeploymentCloudSqlLogsInput, bO as DeploymentCloudSqlLogsOutput, bP as DeploymentDeploymentCancelInput, bQ as DeploymentDeploymentCancelOutput, bR as DeploymentDeploymentGetInput, bS as DeploymentDeploymentGetOutput, bT as DeploymentDeploymentListInput, bU as DeploymentDeploymentListOutput, bV as DeploymentDomainAddInput, bW as DeploymentDomainAddOutput, bX as DeploymentDomainAllowedListInput, bY as DeploymentDomainAllowedListOutput, bZ as DeploymentDomainGetInput, b_ as DeploymentDomainGetOutput, b$ as DeploymentDomainListByServiceInput, c0 as DeploymentDomainListByServiceOutput, c1 as DeploymentDomainListInput, c2 as DeploymentDomainListOutput, c3 as DeploymentDomainRedirectWwwInput, c4 as DeploymentDomainRedirectWwwOutput, c5 as DeploymentDomainRemoveInput, c6 as DeploymentDomainRemoveOutput, c7 as DeploymentDomainRoutesAddInput, c8 as DeploymentDomainRoutesAddOutput, c9 as DeploymentDomainRoutesListInput, ca as DeploymentDomainRoutesListOutput, cb as DeploymentDomainRoutesRemoveInput, cc as DeploymentDomainRoutesRemoveOutput, cd as DeploymentDomainRoutesUpdateInput, ce as DeploymentDomainRoutesUpdateOutput, cf as DeploymentDomainVerifyInput, cg as DeploymentDomainVerifyOutput, ch as DeploymentEnvironmentCreateInput, ci as DeploymentEnvironmentCreateOutput, cj as DeploymentEnvironmentDeleteInput, ck as DeploymentEnvironmentDeleteOutput, cl as DeploymentEnvironmentForkInput, cm as DeploymentEnvironmentForkOutput, cn as DeploymentEnvironmentGetInput, co as DeploymentEnvironmentGetOutput, cp as DeploymentEnvironmentListInput, cq as DeploymentEnvironmentListOutput, cr as DeploymentEnvironmentReconcileInput, cs as DeploymentEnvironmentReconcileOutput, ct as DeploymentEnvironmentUpdateInput, cu as DeploymentEnvironmentUpdateOutput, cv as DeploymentEventsListByEnvironmentInput, cw as DeploymentEventsListByEnvironmentOutput, cx as DeploymentEventsListByServiceInput, cy as DeploymentEventsListByServiceOutput, cz as DeploymentManagedServiceBackupListInput, cA as DeploymentManagedServiceBackupListOutput, cB as DeploymentManagedServiceBackupInput, cC as DeploymentManagedServiceBackupOutput, cD as DeploymentManagedServiceConnectInfoInput, cE as DeploymentManagedServiceConnectInfoOutput, cF as DeploymentManagedServiceDeleteInput, cG as DeploymentManagedServiceDeleteOutput, cH as DeploymentManagedServiceGetInput, cI as DeploymentManagedServiceGetOutput, cJ as DeploymentManagedServiceListInput, cK as DeploymentManagedServiceListOutput, cL as DeploymentManagedServiceLogsInput, cM as DeploymentManagedServiceLogsOutput, cN as DeploymentManagedServiceProvisionInput, cO as DeploymentManagedServiceProvisionOutput, cP as DeploymentManagedServiceReconcileInput, cQ as DeploymentManagedServiceReconcileOutput, cR as DeploymentManagedServiceResizeInput, cS as DeploymentManagedServiceResizeOutput, cT as DeploymentManagedServiceRestoreInput, cU as DeploymentManagedServiceRestoreOutput, cV as DeploymentManagedServiceStartInput, cW as DeploymentManagedServiceStartOutput, cX as DeploymentManagedServiceStopInput, cY as DeploymentManagedServiceStopOutput, cZ as DeploymentManagedServiceTypesInput, c_ as DeploymentManagedServiceTypesOutput, c$ as DeploymentMetricsGetInput, d0 as DeploymentMetricsGetOutput, d1 as DeploymentPreviewEnvironmentCreateInput, d2 as DeploymentPreviewEnvironmentCreateOutput, d3 as DeploymentPreviewEnvironmentDeleteInput, d4 as DeploymentPreviewEnvironmentDeleteOutput, d5 as DeploymentPreviewEnvironmentListInput, d6 as DeploymentPreviewEnvironmentListOutput, d7 as DeploymentPreviewPolicyGetInput, d8 as DeploymentPreviewPolicyGetOutput, d9 as DeploymentPreviewPolicySetInput, da as DeploymentPreviewPolicySetOutput, db as DeploymentServiceCreateInput, dc as DeploymentServiceCreateOutput, dd as DeploymentServiceDeleteInput, de as DeploymentServiceDeleteOutput, df as DeploymentServiceExecInput, dg as DeploymentServiceExecOutput, dh as DeploymentServiceGetInput, di as DeploymentServiceGetOutput, dj as DeploymentServiceListInput, dk as DeploymentServiceListOutput, dl as DeploymentServiceLogsInput, dm as DeploymentServiceLogsOutput, dn as DeploymentServiceRedeployInput, dp as DeploymentServiceRedeployOutput, dq as DeploymentServiceRestartInput, dr as DeploymentServiceRestartOutput, ds as DeploymentServiceRollbackInput, dt as DeploymentServiceRollbackOutput, du as DeploymentServiceScaleInput, dv as DeploymentServiceScaleOutput, dw as DeploymentServiceUpdateInput, dx as DeploymentServiceUpdateOutput, dy as DeploymentServiceWakeInput, dz as DeploymentServiceWakeOutput, dA as DeploymentSshCommandInput, dB as DeploymentSshCommandOutput, dC as DeploymentSshKeyDeleteInput, dD as DeploymentSshKeyDeleteOutput, dE as DeploymentSshKeyListInput, dF as DeploymentSshKeyListOutput, dG as DeploymentSshKeyRegisterInput, dH as DeploymentSshKeyRegisterOutput, dI as DeploymentSuspensionGetInput, dJ as DeploymentSuspensionGetOutput, dK as DeploymentVariableListEnvInput, dL as DeploymentVariableListEnvOutput, dM as DeploymentVariableListProductInput, dN as DeploymentVariableListProductOutput, dO as DeploymentVariableListInput, dP as DeploymentVariableListOutput, dQ as DeploymentVariableSetEnvInput, dR as DeploymentVariableSetEnvOutput, dS as DeploymentVariableSetInput, dT as DeploymentVariableSetOutput, dU as DeploymentVariableSetProductInput, dV as DeploymentVariableSetProductOutput, dW as DeploymentVariableUnsetEnvInput, dX as DeploymentVariableUnsetEnvOutput, dY as DeploymentVariableUnsetInput, dZ as DeploymentVariableUnsetOutput, d_ as DeploymentVariableUnsetProductInput, d$ as DeploymentVariableUnsetProductOutput, e0 as DeploymentVcsBranchListInput, e1 as DeploymentVcsBranchListOutput, e2 as DeploymentVcsConnectionListInput, e3 as DeploymentVcsConnectionListOutput, e4 as DeploymentVcsRepoListInput, e5 as DeploymentVcsRepoListOutput, e6 as DeploymentVolumeCreateInput, e7 as DeploymentVolumeCreateOutput, e8 as DeploymentVolumeDeleteInput, e9 as DeploymentVolumeDeleteOutput, ea as DeploymentVolumeDetachInput, eb as DeploymentVolumeDetachOutput, ec as DeploymentVolumeGetInput, ed as DeploymentVolumeGetOutput, ee as DeploymentVolumeListInput, ef as DeploymentVolumeListOutput, eg as DeploymentVolumeResizeInput, eh as DeploymentVolumeResizeOutput } from '../client.gen-BsYUM5lP.js';
1
+ import { G as GeneratedClient, aX as DeploymentAlertCreateInput, aY as DeploymentAlertCreateOutput, aZ as DeploymentAlertDeleteInput, a_ as DeploymentAlertDeleteOutput, a$ as DeploymentAlertEventsListInput, b0 as DeploymentAlertEventsListOutput, b1 as DeploymentAlertListInput, b2 as DeploymentAlertListOutput, b3 as DeploymentAlertUpdateInput, b4 as DeploymentAlertUpdateOutput, b5 as DeploymentAnalyticsQueryInput, b6 as DeploymentAnalyticsQueryOutput, b7 as DeploymentAuditListInput, b8 as DeploymentAuditListOutput, b9 as DeploymentBuildGetInput, ba as DeploymentBuildGetOutput, bb as DeploymentBuildListInput, bc as DeploymentBuildListOutput, bd as DeploymentBuildLogsInput, be as DeploymentBuildLogsOutput, bf as DeploymentCanvasGetInput, bg as DeploymentCanvasGetOutput, bh as DeploymentCanvasMoveNodeInput, bi as DeploymentCanvasMoveNodeOutput, bj as DeploymentCloudSqlBackfillLogFlagsInput, bk as DeploymentCloudSqlBackfillLogFlagsOutput, bl as DeploymentCloudSqlDatabaseAttachInput, bm as DeploymentCloudSqlDatabaseAttachOutput, bn as DeploymentCloudSqlDatabaseCreateInput, bo as DeploymentCloudSqlDatabaseCreateOutput, bp as DeploymentCloudSqlDatabaseDeleteInput, bq as DeploymentCloudSqlDatabaseDeleteOutput, br as DeploymentCloudSqlDatabaseDetachInput, bs as DeploymentCloudSqlDatabaseDetachOutput, bt as DeploymentCloudSqlDatabaseGetInput, bu as DeploymentCloudSqlDatabaseGetOutput, bv as DeploymentCloudSqlDatabaseListInput, bw as DeploymentCloudSqlDatabaseListOutput, bx as DeploymentCloudSqlInstanceBackupListInput, by as DeploymentCloudSqlInstanceBackupListOutput, bz as DeploymentCloudSqlInstanceBackupInput, bA as DeploymentCloudSqlInstanceBackupOutput, bB as DeploymentCloudSqlInstanceCreateInput, bC as DeploymentCloudSqlInstanceCreateOutput, bD as DeploymentCloudSqlInstanceDeleteInput, bE as DeploymentCloudSqlInstanceDeleteOutput, bF as DeploymentCloudSqlInstanceGetInput, bG as DeploymentCloudSqlInstanceGetOutput, bH as DeploymentCloudSqlInstanceListInput, bI as DeploymentCloudSqlInstanceListOutput, bJ as DeploymentCloudSqlInstanceResizeInput, bK as DeploymentCloudSqlInstanceResizeOutput, bL as DeploymentCloudSqlInstanceRestoreInput, bM as DeploymentCloudSqlInstanceRestoreOutput, bN as DeploymentCloudSqlLogsInput, bO as DeploymentCloudSqlLogsOutput, bP as DeploymentDeploymentCancelInput, bQ as DeploymentDeploymentCancelOutput, bR as DeploymentDeploymentGetInput, bS as DeploymentDeploymentGetOutput, bT as DeploymentDeploymentListInput, bU as DeploymentDeploymentListOutput, bV as DeploymentDomainAddInput, bW as DeploymentDomainAddOutput, bX as DeploymentDomainAllowedListInput, bY as DeploymentDomainAllowedListOutput, bZ as DeploymentDomainGetInput, b_ as DeploymentDomainGetOutput, b$ as DeploymentDomainListByServiceInput, c0 as DeploymentDomainListByServiceOutput, c1 as DeploymentDomainListInput, c2 as DeploymentDomainListOutput, c3 as DeploymentDomainRedirectWwwInput, c4 as DeploymentDomainRedirectWwwOutput, c5 as DeploymentDomainRemoveInput, c6 as DeploymentDomainRemoveOutput, c7 as DeploymentDomainRoutesAddInput, c8 as DeploymentDomainRoutesAddOutput, c9 as DeploymentDomainRoutesListInput, ca as DeploymentDomainRoutesListOutput, cb as DeploymentDomainRoutesRemoveInput, cc as DeploymentDomainRoutesRemoveOutput, cd as DeploymentDomainRoutesUpdateInput, ce as DeploymentDomainRoutesUpdateOutput, cf as DeploymentDomainVerifyInput, cg as DeploymentDomainVerifyOutput, ch as DeploymentEnvironmentCreateInput, ci as DeploymentEnvironmentCreateOutput, cj as DeploymentEnvironmentDeleteInput, ck as DeploymentEnvironmentDeleteOutput, cl as DeploymentEnvironmentForkInput, cm as DeploymentEnvironmentForkOutput, cn as DeploymentEnvironmentGetInput, co as DeploymentEnvironmentGetOutput, cp as DeploymentEnvironmentListInput, cq as DeploymentEnvironmentListOutput, cr as DeploymentEnvironmentReconcileInput, cs as DeploymentEnvironmentReconcileOutput, ct as DeploymentEnvironmentUpdateInput, cu as DeploymentEnvironmentUpdateOutput, cv as DeploymentEventsListByEnvironmentInput, cw as DeploymentEventsListByEnvironmentOutput, cx as DeploymentEventsListByServiceInput, cy as DeploymentEventsListByServiceOutput, cz as DeploymentManagedServiceBackupListInput, cA as DeploymentManagedServiceBackupListOutput, cB as DeploymentManagedServiceBackupInput, cC as DeploymentManagedServiceBackupOutput, cD as DeploymentManagedServiceConnectInfoInput, cE as DeploymentManagedServiceConnectInfoOutput, cF as DeploymentManagedServiceDeleteInput, cG as DeploymentManagedServiceDeleteOutput, cH as DeploymentManagedServiceGetInput, cI as DeploymentManagedServiceGetOutput, cJ as DeploymentManagedServiceListInput, cK as DeploymentManagedServiceListOutput, cL as DeploymentManagedServiceLogsInput, cM as DeploymentManagedServiceLogsOutput, cN as DeploymentManagedServiceProvisionInput, cO as DeploymentManagedServiceProvisionOutput, cP as DeploymentManagedServiceReconcileInput, cQ as DeploymentManagedServiceReconcileOutput, cR as DeploymentManagedServiceResizeInput, cS as DeploymentManagedServiceResizeOutput, cT as DeploymentManagedServiceRestoreInput, cU as DeploymentManagedServiceRestoreOutput, cV as DeploymentManagedServiceStartInput, cW as DeploymentManagedServiceStartOutput, cX as DeploymentManagedServiceStopInput, cY as DeploymentManagedServiceStopOutput, cZ as DeploymentManagedServiceTypesInput, c_ as DeploymentManagedServiceTypesOutput, c$ as DeploymentMetricsGetInput, d0 as DeploymentMetricsGetOutput, d1 as DeploymentPreviewEnvironmentCreateInput, d2 as DeploymentPreviewEnvironmentCreateOutput, d3 as DeploymentPreviewEnvironmentDeleteInput, d4 as DeploymentPreviewEnvironmentDeleteOutput, d5 as DeploymentPreviewEnvironmentListInput, d6 as DeploymentPreviewEnvironmentListOutput, d7 as DeploymentPreviewPolicyGetInput, d8 as DeploymentPreviewPolicyGetOutput, d9 as DeploymentPreviewPolicySetInput, da as DeploymentPreviewPolicySetOutput, db as DeploymentServiceCreateInput, dc as DeploymentServiceCreateOutput, dd as DeploymentServiceDeleteInput, de as DeploymentServiceDeleteOutput, df as DeploymentServiceExecInput, dg as DeploymentServiceExecOutput, dh as DeploymentServiceGetInput, di as DeploymentServiceGetOutput, dj as DeploymentServiceListInput, dk as DeploymentServiceListOutput, dl as DeploymentServiceLogsInput, dm as DeploymentServiceLogsOutput, dn as DeploymentServiceRedeployInput, dp as DeploymentServiceRedeployOutput, dq as DeploymentServiceRestartInput, dr as DeploymentServiceRestartOutput, ds as DeploymentServiceRollbackInput, dt as DeploymentServiceRollbackOutput, du as DeploymentServiceScaleInput, dv as DeploymentServiceScaleOutput, dw as DeploymentServiceUpdateInput, dx as DeploymentServiceUpdateOutput, dy as DeploymentServiceWakeInput, dz as DeploymentServiceWakeOutput, dA as DeploymentSshCommandInput, dB as DeploymentSshCommandOutput, dC as DeploymentSshKeyDeleteInput, dD as DeploymentSshKeyDeleteOutput, dE as DeploymentSshKeyListInput, dF as DeploymentSshKeyListOutput, dG as DeploymentSshKeyRegisterInput, dH as DeploymentSshKeyRegisterOutput, dI as DeploymentSuspensionGetInput, dJ as DeploymentSuspensionGetOutput, dK as DeploymentVariableListEnvInput, dL as DeploymentVariableListEnvOutput, dM as DeploymentVariableListProductInput, dN as DeploymentVariableListProductOutput, dO as DeploymentVariableListInput, dP as DeploymentVariableListOutput, dQ as DeploymentVariableSetEnvInput, dR as DeploymentVariableSetEnvOutput, dS as DeploymentVariableSetInput, dT as DeploymentVariableSetOutput, dU as DeploymentVariableSetProductInput, dV as DeploymentVariableSetProductOutput, dW as DeploymentVariableUnsetEnvInput, dX as DeploymentVariableUnsetEnvOutput, dY as DeploymentVariableUnsetInput, dZ as DeploymentVariableUnsetOutput, d_ as DeploymentVariableUnsetProductInput, d$ as DeploymentVariableUnsetProductOutput, e0 as DeploymentVcsBranchListInput, e1 as DeploymentVcsBranchListOutput, e2 as DeploymentVcsConnectionListInput, e3 as DeploymentVcsConnectionListOutput, e4 as DeploymentVcsRepoListInput, e5 as DeploymentVcsRepoListOutput, e6 as DeploymentVolumeCreateInput, e7 as DeploymentVolumeCreateOutput, e8 as DeploymentVolumeDeleteInput, e9 as DeploymentVolumeDeleteOutput, ea as DeploymentVolumeDetachInput, eb as DeploymentVolumeDetachOutput, ec as DeploymentVolumeGetInput, ed as DeploymentVolumeGetOutput, ee as DeploymentVolumeListInput, ef as DeploymentVolumeListOutput, eg as DeploymentVolumeResizeInput, eh as DeploymentVolumeResizeOutput } from '../client.gen-BE8VaNrU.js';
2
2
 
3
3
  declare const deploymentAlertCreateMutationOptions: (sdk: GeneratedClient) => {
4
4
  mutationKey: string[];