@lessly/sdk-app 36.3.0 → 38.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 (63) 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.cjs +0 -5
  4. package/dist/brain/index.cjs.map +1 -1
  5. package/dist/brain/index.d.cts +2 -6
  6. package/dist/brain/index.d.ts +2 -6
  7. package/dist/brain/index.js +1 -5
  8. package/dist/brain/index.js.map +1 -1
  9. package/dist/{client.gen-C6K8y7em.d.cts → client.gen-Bv2flLeO.d.cts} +2163 -248
  10. package/dist/{client.gen-C6K8y7em.d.ts → client.gen-Bv2flLeO.d.ts} +2163 -248
  11. package/dist/consent/index.d.cts +1 -1
  12. package/dist/consent/index.d.ts +1 -1
  13. package/dist/deployment/index.d.cts +1 -1
  14. package/dist/deployment/index.d.ts +1 -1
  15. package/dist/index.cjs +875 -217
  16. package/dist/index.cjs.map +1 -1
  17. package/dist/index.d.cts +1 -1
  18. package/dist/index.d.ts +1 -1
  19. package/dist/index.js +875 -217
  20. package/dist/index.js.map +1 -1
  21. package/dist/mail/index.d.cts +2 -2
  22. package/dist/mail/index.d.ts +2 -2
  23. package/dist/observe/index.cjs +156 -0
  24. package/dist/observe/index.cjs.map +1 -0
  25. package/dist/observe/index.d.cts +124 -0
  26. package/dist/observe/index.d.ts +124 -0
  27. package/dist/observe/index.js +125 -0
  28. package/dist/observe/index.js.map +1 -0
  29. package/dist/organization/index.cjs +33 -18
  30. package/dist/organization/index.cjs.map +1 -1
  31. package/dist/organization/index.d.cts +27 -15
  32. package/dist/organization/index.d.ts +27 -15
  33. package/dist/organization/index.js +27 -15
  34. package/dist/organization/index.js.map +1 -1
  35. package/dist/playground/index.cjs +66 -0
  36. package/dist/playground/index.cjs.map +1 -0
  37. package/dist/playground/index.d.cts +52 -0
  38. package/dist/playground/index.d.ts +52 -0
  39. package/dist/playground/index.js +53 -0
  40. package/dist/playground/index.js.map +1 -0
  41. package/dist/realtime/index.d.cts +1 -1
  42. package/dist/realtime/index.d.ts +1 -1
  43. package/dist/support/index.d.cts +1 -1
  44. package/dist/support/index.d.ts +1 -1
  45. package/dist/tracking/index.d.cts +1 -1
  46. package/dist/tracking/index.d.ts +1 -1
  47. package/dist/users/index.d.cts +1 -1
  48. package/dist/users/index.d.ts +1 -1
  49. package/dist/waitlist/index.d.cts +1 -1
  50. package/dist/waitlist/index.d.ts +1 -1
  51. package/package.json +12 -2
  52. package/src/gen/bindings.gen.ts +875 -217
  53. package/src/gen/brain/index.ts +1 -1
  54. package/src/gen/brain/queryOptions.gen.ts +0 -7
  55. package/src/gen/client.gen.ts +189 -17
  56. package/src/gen/manifest.gen.ts +1 -1
  57. package/src/gen/observe/index.ts +3 -0
  58. package/src/gen/observe/queryOptions.gen.ts +200 -0
  59. package/src/gen/organization/index.ts +1 -1
  60. package/src/gen/organization/queryOptions.gen.ts +41 -21
  61. package/src/gen/playground/index.ts +3 -0
  62. package/src/gen/playground/queryOptions.gen.ts +86 -0
  63. package/src/gen/types.gen.ts +2178 -248
@@ -935,96 +935,6 @@ type BrainRestoreStatusOutput = ({
935
935
  snapshotId: string;
936
936
  preRestoreSnapshotId: (string | null);
937
937
  } | null);
938
- interface BrainUsageReportInput {
939
- /**
940
- * How many UTC days of this product's ledger to return, ending today (default 30, max 90)
941
- */
942
- days?: number;
943
- }
944
- interface BrainUsageReportOutput {
945
- note: string;
946
- /**
947
- * Brain's own ledger, for THIS product only
948
- */
949
- product: {
950
- /**
951
- * Inclusive UTC end of the window (today), YYYY-MM-DD
952
- */
953
- to: string;
954
- /**
955
- * The window actually used, after clamping
956
- */
957
- days: number;
958
- /**
959
- * Inclusive UTC start of the window, YYYY-MM-DD
960
- */
961
- from: string;
962
- rows: {
963
- /**
964
- * 'sync' | 'batch'; '' when the push carried none
965
- */
966
- mode: string;
967
- /**
968
- * Manifest meter slug, e.g. llm-tokens
969
- */
970
- meter: string;
971
- /**
972
- * Model dimension; '' when the push carried none
973
- */
974
- model: string;
975
- /**
976
- * How many record() calls landed in this slice
977
- */
978
- events: number;
979
- /**
980
- * Tokens we metered for this slice, delivered or not
981
- */
982
- tokens: number;
983
- /**
984
- * Purpose dimension; '' when the push carried none
985
- */
986
- purpose: string;
987
- /**
988
- * UTC calendar day, YYYY-MM-DD
989
- */
990
- usage_date: string;
991
- /**
992
- * Of those events, how many billing did not accept
993
- */
994
- delivery_failed: number;
995
- }[];
996
- /**
997
- * The rows rolled up per meter across the whole window
998
- */
999
- totals: {
1000
- meter: string;
1001
- events: number;
1002
- tokens: number;
1003
- delivery_failed: number;
1004
- }[];
1005
- product_id: string;
1006
- };
1007
- /**
1008
- * The platform billing aggregate for the whole ORG; null if it could not be read
1009
- */
1010
- platform: ({
1011
- plan: string;
1012
- scope: "org";
1013
- meters: {
1014
- unit?: string;
1015
- used?: number;
1016
- limit?: (number | null);
1017
- remaining?: (number | null);
1018
- unlimited?: boolean;
1019
- meter_slug: string;
1020
- }[];
1021
- org_id: string;
1022
- } | null);
1023
- /**
1024
- * Why the platform aggregate is null; null when it was read successfully
1025
- */
1026
- platform_error: (string | null);
1027
- }
1028
938
  interface ConsentConfigCookieDomainUpsertInput {
1029
939
  cookieDomain: ("" | null | string);
1030
940
  }
@@ -12444,161 +12354,1813 @@ interface MailTemplateUpdateInput {
12444
12354
  }
12445
12355
  ];
12446
12356
  }
12447
- interface MailTemplateUpdateOutput {
12448
- id: string;
12449
- html: string;
12450
- name: string;
12451
- text: (string | null);
12452
- status: string;
12453
- subject: string;
12454
- createdAt: string;
12455
- updatedAt: string;
12456
- variables: {
12457
- name: string;
12458
- type: string;
12459
- fallback?: string;
12460
- optional: boolean;
12357
+ interface MailTemplateUpdateOutput {
12358
+ id: string;
12359
+ html: string;
12360
+ name: string;
12361
+ text: (string | null);
12362
+ status: string;
12363
+ subject: string;
12364
+ createdAt: string;
12365
+ updatedAt: string;
12366
+ variables: {
12367
+ name: string;
12368
+ type: string;
12369
+ fallback?: string;
12370
+ optional: boolean;
12371
+ }[];
12372
+ }
12373
+ interface MailUsageGetInput {
12374
+ }
12375
+ interface MailUsageGetOutput {
12376
+ emails: {
12377
+ day: MailUsageGetOutputDay;
12378
+ month: MailUsageGetOutputDay;
12379
+ blocked: boolean;
12380
+ hard_cap: number;
12381
+ };
12382
+ period: {
12383
+ day: string;
12384
+ month: string;
12385
+ };
12386
+ contacts: {
12387
+ count: number;
12388
+ };
12389
+ }
12390
+ interface MailUsageGetOutputDay {
12391
+ used: number;
12392
+ limit: number;
12393
+ remaining: number;
12394
+ }
12395
+ interface MailWebhookCreateInput {
12396
+ /**
12397
+ * HTTPS URL that signed events are POSTed to
12398
+ */
12399
+ url: string;
12400
+ /**
12401
+ * Optional human label
12402
+ */
12403
+ description?: string;
12404
+ /**
12405
+ * Event types to deliver. One or more of: email.delivered, email.bounced, email.complained, email.suppressed, email.opened, email.clicked
12406
+ *
12407
+ * @minItems 1
12408
+ */
12409
+ enabled_events: [("email.delivered" | "email.bounced" | "email.complained" | "email.suppressed" | "email.opened" | "email.clicked"), ...(("email.delivered" | "email.bounced" | "email.complained" | "email.suppressed" | "email.opened" | "email.clicked"))[]];
12410
+ }
12411
+ interface MailWebhookCreateOutput {
12412
+ id: string;
12413
+ url: string;
12414
+ secret: string;
12415
+ enabled: boolean;
12416
+ created_at: string;
12417
+ updated_at: string;
12418
+ description: (string | null);
12419
+ enabled_events: string[];
12420
+ }
12421
+ interface MailWebhookDeleteInput {
12422
+ /**
12423
+ * Webhook endpoint id
12424
+ */
12425
+ id: string;
12426
+ }
12427
+ interface MailWebhookDeleteOutput {
12428
+ id: string;
12429
+ deleted: boolean;
12430
+ }
12431
+ interface MailWebhookDeliveriesListInput {
12432
+ /**
12433
+ * Webhook endpoint id
12434
+ */
12435
+ id: string;
12436
+ /**
12437
+ * Max items (1-100, default 50)
12438
+ */
12439
+ limit?: number;
12440
+ }
12441
+ type MailWebhookDeliveriesListOutput = {
12442
+ id: string;
12443
+ status: string;
12444
+ attempts: number;
12445
+ event_id: string;
12446
+ created_at: string;
12447
+ event_type: string;
12448
+ last_error: (string | null);
12449
+ updated_at: string;
12450
+ endpoint_id: string;
12451
+ last_attempt_at: (string | null);
12452
+ response_status: (number | null);
12453
+ }[];
12454
+ interface MailWebhookGetInput {
12455
+ /**
12456
+ * Webhook endpoint id
12457
+ */
12458
+ id: string;
12459
+ }
12460
+ interface MailWebhookGetOutput {
12461
+ id: string;
12462
+ url: string;
12463
+ enabled: boolean;
12464
+ created_at: string;
12465
+ updated_at: string;
12466
+ description: (string | null);
12467
+ enabled_events: string[];
12468
+ }
12469
+ interface MailWebhookListInput {
12470
+ }
12471
+ type MailWebhookListOutput = {
12472
+ id: string;
12473
+ url: string;
12474
+ enabled: boolean;
12475
+ created_at: string;
12476
+ updated_at: string;
12477
+ description: (string | null);
12478
+ enabled_events: string[];
12479
+ }[];
12480
+ interface MailWebhookUpdateInput {
12481
+ /**
12482
+ * Webhook endpoint id
12483
+ */
12484
+ id: string;
12485
+ /**
12486
+ * HTTPS URL that signed events are POSTed to
12487
+ */
12488
+ url?: string;
12489
+ /**
12490
+ * Enable (true) or disable (false) delivery
12491
+ */
12492
+ enabled?: boolean;
12493
+ /**
12494
+ * Optional human label
12495
+ */
12496
+ description?: (string | null);
12497
+ /**
12498
+ * Event types to deliver. One or more of: email.delivered, email.bounced, email.complained, email.suppressed, email.opened, email.clicked
12499
+ *
12500
+ * @minItems 1
12501
+ */
12502
+ enabled_events?: [("email.delivered" | "email.bounced" | "email.complained" | "email.suppressed" | "email.opened" | "email.clicked"), ...(("email.delivered" | "email.bounced" | "email.complained" | "email.suppressed" | "email.opened" | "email.clicked"))[]];
12503
+ }
12504
+ interface MailWebhookUpdateOutput {
12505
+ id: string;
12506
+ url: string;
12507
+ enabled: boolean;
12508
+ created_at: string;
12509
+ updated_at: string;
12510
+ description: (string | null);
12511
+ enabled_events: string[];
12512
+ }
12513
+ interface ObserveAlertsCreateInput {
12514
+ /**
12515
+ * error_rate counts error events in the window; log_match counts log lines matching q
12516
+ */
12517
+ kind: ("error_rate" | "log_match");
12518
+ /**
12519
+ * What to call the rule, up to 200 characters
12520
+ */
12521
+ name: string;
12522
+ /**
12523
+ * false registers the rule without evaluating it
12524
+ */
12525
+ enabled?: boolean;
12526
+ /**
12527
+ * The kind’s parameters
12528
+ */
12529
+ condition: {
12530
+ /**
12531
+ * log_match only: the same Lucene expression observe_logs_search takes, e.g. level:error AND service:api
12532
+ */
12533
+ q?: string;
12534
+ /**
12535
+ * How far back each evaluation looks
12536
+ */
12537
+ window: ("5m" | "15m" | "1h");
12538
+ /**
12539
+ * How many matches in the window count as a problem. At least 1
12540
+ */
12541
+ threshold: number;
12542
+ };
12543
+ /**
12544
+ * How long after firing the rule stays quiet. Default 60, up to a week
12545
+ */
12546
+ throttleMinutes?: number;
12547
+ }
12548
+ interface ObserveAlertsCreateOutput {
12549
+ /**
12550
+ * Identifier of the rule
12551
+ */
12552
+ id: string;
12553
+ /**
12554
+ * What the rule measures
12555
+ */
12556
+ kind: ("error_rate" | "log_match");
12557
+ /**
12558
+ * Human name the rule was registered under
12559
+ */
12560
+ name: string;
12561
+ /**
12562
+ * firing means the condition is met right now
12563
+ */
12564
+ state: ("ok" | "firing");
12565
+ /**
12566
+ * Whether the evaluator measures it every minute
12567
+ */
12568
+ enabled: boolean;
12569
+ /**
12570
+ * The kind’s parameters: threshold and window, plus q for log_match
12571
+ */
12572
+ condition: {
12573
+ [k: string]: unknown;
12574
+ };
12575
+ /**
12576
+ * ISO 8601 creation timestamp
12577
+ */
12578
+ createdAt: string;
12579
+ /**
12580
+ * ISO 8601 timestamp of the last change
12581
+ */
12582
+ updatedAt: string;
12583
+ /**
12584
+ * ISO 8601 time it last fired, or null
12585
+ */
12586
+ lastFiredAt: (string | null);
12587
+ /**
12588
+ * How long after firing the rule stays quiet
12589
+ */
12590
+ throttleMinutes: number;
12591
+ }
12592
+ interface ObserveAlertsDeleteInput {
12593
+ /**
12594
+ * Identifier of the rule
12595
+ */
12596
+ id: string;
12597
+ }
12598
+ interface ObserveAlertsDeleteOutput {
12599
+ /**
12600
+ * Identifier of the removed rule
12601
+ */
12602
+ id: string;
12603
+ /**
12604
+ * Always true; the call fails otherwise
12605
+ */
12606
+ deleted: true;
12607
+ }
12608
+ interface ObserveAlertsEventsListInput {
12609
+ /**
12610
+ * Page size, 1..200
12611
+ */
12612
+ limit?: number;
12613
+ /**
12614
+ * Number of firings to skip
12615
+ */
12616
+ offset?: number;
12617
+ /**
12618
+ * Only firings of this rule
12619
+ */
12620
+ ruleId?: string;
12621
+ }
12622
+ type ObserveAlertsEventsListOutput = {
12623
+ /**
12624
+ * Identifier of the firing
12625
+ */
12626
+ id: string;
12627
+ /**
12628
+ * Rule that fired
12629
+ */
12630
+ ruleId: string;
12631
+ /**
12632
+ * ISO 8601 time the condition was first met
12633
+ */
12634
+ firedAt: string;
12635
+ /**
12636
+ * What the measure was when it fired
12637
+ */
12638
+ measured: number;
12639
+ /**
12640
+ * The condition as it stood then, not as the rule reads today
12641
+ */
12642
+ condition: {
12643
+ [k: string]: unknown;
12644
+ };
12645
+ /**
12646
+ * ISO 8601 time it cleared, or null while it is still firing
12647
+ */
12648
+ resolvedAt: (string | null);
12649
+ }[];
12650
+ interface ObserveAlertsGetInput {
12651
+ /**
12652
+ * Identifier of the rule
12653
+ */
12654
+ id: string;
12655
+ }
12656
+ interface ObserveAlertsGetOutput {
12657
+ /**
12658
+ * Identifier of the rule
12659
+ */
12660
+ id: string;
12661
+ /**
12662
+ * What the rule measures
12663
+ */
12664
+ kind: ("error_rate" | "log_match");
12665
+ /**
12666
+ * Human name the rule was registered under
12667
+ */
12668
+ name: string;
12669
+ /**
12670
+ * firing means the condition is met right now
12671
+ */
12672
+ state: ("ok" | "firing");
12673
+ /**
12674
+ * Whether the evaluator measures it every minute
12675
+ */
12676
+ enabled: boolean;
12677
+ /**
12678
+ * The kind’s parameters: threshold and window, plus q for log_match
12679
+ */
12680
+ condition: {
12681
+ [k: string]: unknown;
12682
+ };
12683
+ /**
12684
+ * ISO 8601 creation timestamp
12685
+ */
12686
+ createdAt: string;
12687
+ /**
12688
+ * ISO 8601 timestamp of the last change
12689
+ */
12690
+ updatedAt: string;
12691
+ /**
12692
+ * ISO 8601 time it last fired, or null
12693
+ */
12694
+ lastFiredAt: (string | null);
12695
+ /**
12696
+ * How long after firing the rule stays quiet
12697
+ */
12698
+ throttleMinutes: number;
12699
+ }
12700
+ interface ObserveAlertsListInput {
12701
+ }
12702
+ type ObserveAlertsListOutput = {
12703
+ /**
12704
+ * Identifier of the rule
12705
+ */
12706
+ id: string;
12707
+ /**
12708
+ * What the rule measures
12709
+ */
12710
+ kind: ("error_rate" | "log_match");
12711
+ /**
12712
+ * Human name the rule was registered under
12713
+ */
12714
+ name: string;
12715
+ /**
12716
+ * firing means the condition is met right now
12717
+ */
12718
+ state: ("ok" | "firing");
12719
+ /**
12720
+ * Whether the evaluator measures it every minute
12721
+ */
12722
+ enabled: boolean;
12723
+ /**
12724
+ * The kind’s parameters: threshold and window, plus q for log_match
12725
+ */
12726
+ condition: {
12727
+ [k: string]: unknown;
12728
+ };
12729
+ /**
12730
+ * ISO 8601 creation timestamp
12731
+ */
12732
+ createdAt: string;
12733
+ /**
12734
+ * ISO 8601 timestamp of the last change
12735
+ */
12736
+ updatedAt: string;
12737
+ /**
12738
+ * ISO 8601 time it last fired, or null
12739
+ */
12740
+ lastFiredAt: (string | null);
12741
+ /**
12742
+ * How long after firing the rule stays quiet
12743
+ */
12744
+ throttleMinutes: number;
12745
+ }[];
12746
+ interface ObserveAlertsUpdateInput {
12747
+ /**
12748
+ * Identifier of the rule to change
12749
+ */
12750
+ id: string;
12751
+ /**
12752
+ * New name for the rule
12753
+ */
12754
+ name?: string;
12755
+ /**
12756
+ * false stops evaluation and keeps the rule
12757
+ */
12758
+ enabled?: boolean;
12759
+ /**
12760
+ * The kind’s parameters
12761
+ */
12762
+ condition?: {
12763
+ /**
12764
+ * log_match only: the same Lucene expression observe_logs_search takes, e.g. level:error AND service:api
12765
+ */
12766
+ q?: string;
12767
+ /**
12768
+ * How far back each evaluation looks
12769
+ */
12770
+ window: ("5m" | "15m" | "1h");
12771
+ /**
12772
+ * How many matches in the window count as a problem. At least 1
12773
+ */
12774
+ threshold: number;
12775
+ };
12776
+ /**
12777
+ * New quiet period after a firing, in minutes
12778
+ */
12779
+ throttleMinutes?: number;
12780
+ }
12781
+ interface ObserveAlertsUpdateOutput {
12782
+ /**
12783
+ * Identifier of the rule
12784
+ */
12785
+ id: string;
12786
+ /**
12787
+ * What the rule measures
12788
+ */
12789
+ kind: ("error_rate" | "log_match");
12790
+ /**
12791
+ * Human name the rule was registered under
12792
+ */
12793
+ name: string;
12794
+ /**
12795
+ * firing means the condition is met right now
12796
+ */
12797
+ state: ("ok" | "firing");
12798
+ /**
12799
+ * Whether the evaluator measures it every minute
12800
+ */
12801
+ enabled: boolean;
12802
+ /**
12803
+ * The kind’s parameters: threshold and window, plus q for log_match
12804
+ */
12805
+ condition: {
12806
+ [k: string]: unknown;
12807
+ };
12808
+ /**
12809
+ * ISO 8601 creation timestamp
12810
+ */
12811
+ createdAt: string;
12812
+ /**
12813
+ * ISO 8601 timestamp of the last change
12814
+ */
12815
+ updatedAt: string;
12816
+ /**
12817
+ * ISO 8601 time it last fired, or null
12818
+ */
12819
+ lastFiredAt: (string | null);
12820
+ /**
12821
+ * How long after firing the rule stays quiet
12822
+ */
12823
+ throttleMinutes: number;
12824
+ }
12825
+ interface ObserveArtifactsDeleteInput {
12826
+ /**
12827
+ * Identifier of the artifact to delete. An artifact of another product is reported as not found
12828
+ */
12829
+ id: string;
12830
+ }
12831
+ interface ObserveArtifactsDeleteOutput {
12832
+ /**
12833
+ * Identifier of the stored artifact
12834
+ */
12835
+ id: string;
12836
+ /**
12837
+ * Whether this is the minified source or its map
12838
+ */
12839
+ kind: ("source" | "sourcemap");
12840
+ /**
12841
+ * Debug ID the build stamped into the file and its source map
12842
+ */
12843
+ debugId: string;
12844
+ /**
12845
+ * Size of the stored artifact in bytes
12846
+ */
12847
+ byteSize: number;
12848
+ /**
12849
+ * Name the file was uploaded under, e.g. "app.min.js.map"
12850
+ */
12851
+ fileName: string;
12852
+ /**
12853
+ * ISO 8601 timestamp of the upload
12854
+ */
12855
+ uploadedAt: string;
12856
+ }
12857
+ interface ObserveArtifactsListInput {
12858
+ /**
12859
+ * Maximum number of artifacts to return, 1..200 (default 50)
12860
+ */
12861
+ limit?: number;
12862
+ /**
12863
+ * Only return artifacts carrying this debug ID; omit to list all of them
12864
+ */
12865
+ debugId?: string;
12866
+ }
12867
+ type ObserveArtifactsListOutput = {
12868
+ /**
12869
+ * Identifier of the stored artifact
12870
+ */
12871
+ id: string;
12872
+ /**
12873
+ * Whether this is the minified source or its map
12874
+ */
12875
+ kind: ("source" | "sourcemap");
12876
+ /**
12877
+ * Debug ID the build stamped into the file and its source map
12878
+ */
12879
+ debugId: string;
12880
+ /**
12881
+ * Size of the stored artifact in bytes
12882
+ */
12883
+ byteSize: number;
12884
+ /**
12885
+ * Name the file was uploaded under, e.g. "app.min.js.map"
12886
+ */
12887
+ fileName: string;
12888
+ /**
12889
+ * ISO 8601 timestamp of the upload
12890
+ */
12891
+ uploadedAt: string;
12892
+ }[];
12893
+ interface ObserveArtifactsResolveInput {
12894
+ /**
12895
+ * Issue whose latest event should have its stack resolved. An issue of another product is reported as not found
12896
+ */
12897
+ issueId: string;
12898
+ }
12899
+ interface ObserveArtifactsResolveOutput {
12900
+ /**
12901
+ * The stack, resolved where a source map matched
12902
+ */
12903
+ frames: {
12904
+ /**
12905
+ * Column number, original when the frame resolved
12906
+ */
12907
+ colno?: number;
12908
+ /**
12909
+ * Whether the frame belongs to the application rather than a dependency
12910
+ */
12911
+ inApp?: boolean;
12912
+ /**
12913
+ * Line number, original when the frame resolved
12914
+ */
12915
+ lineno?: number;
12916
+ /**
12917
+ * Original file when the frame resolved, else the minified one
12918
+ */
12919
+ filename?: string;
12920
+ /**
12921
+ * Function name, original where the source map names one
12922
+ */
12923
+ function?: string;
12924
+ /**
12925
+ * False means no source map matched and the frame is exactly as it was recorded
12926
+ */
12927
+ resolved: boolean;
12928
+ }[];
12929
+ /**
12930
+ * Identifier of the event the stack was taken from
12931
+ */
12932
+ eventId: string;
12933
+ /**
12934
+ * The issue whose stack this is
12935
+ */
12936
+ issueId: string;
12937
+ }
12938
+ interface ObserveIssuesArchiveInput {
12939
+ /**
12940
+ * Identifier of the issue
12941
+ */
12942
+ id: string;
12943
+ }
12944
+ interface ObserveIssuesArchiveOutput {
12945
+ /**
12946
+ * Identifier of the issue
12947
+ */
12948
+ id: string;
12949
+ /**
12950
+ * Display title, set when the issue opened and never rewritten
12951
+ */
12952
+ title: string;
12953
+ /**
12954
+ * unresolved, resolved or archived
12955
+ */
12956
+ status: string;
12957
+ /**
12958
+ * Where the error appears to come from, or null
12959
+ */
12960
+ culprit: (string | null);
12961
+ /**
12962
+ * Who owns the issue, or null if unassigned
12963
+ */
12964
+ assignee: (string | null);
12965
+ /**
12966
+ * ISO 8601 timestamp of the most recent event
12967
+ */
12968
+ lastSeen: string;
12969
+ /**
12970
+ * ISO 8601 timestamp of the first event
12971
+ */
12972
+ firstSeen: string;
12973
+ /**
12974
+ * ISO 8601 archive timestamp, or null
12975
+ */
12976
+ archivedAt: (string | null);
12977
+ /**
12978
+ * How many events have landed on this issue
12979
+ */
12980
+ eventCount: number;
12981
+ /**
12982
+ * ISO 8601 resolution timestamp, or null
12983
+ */
12984
+ resolvedAt: (string | null);
12985
+ /**
12986
+ * Environment the issue was first seen in, or null
12987
+ */
12988
+ environment: (string | null);
12989
+ /**
12990
+ * Stable grouping hash the issue is keyed on
12991
+ */
12992
+ fingerprint: string;
12993
+ /**
12994
+ * ISO 8601 timestamp of the last regression, or null if it never regressed
12995
+ */
12996
+ regressedAt: (string | null);
12997
+ /**
12998
+ * Which rule of the ladder matched: explicit, stack, exception or message
12999
+ */
13000
+ groupingRule: string;
13001
+ /**
13002
+ * Exception class of the first event, or null
13003
+ */
13004
+ exceptionType: (string | null);
13005
+ /**
13006
+ * Grouping config version that produced the fingerprint; part of the issue identity
13007
+ */
13008
+ groupingVersion: string;
13009
+ }
13010
+ interface ObserveIssuesAssignInput {
13011
+ /**
13012
+ * Identifier of the issue
13013
+ */
13014
+ id: string;
13015
+ /**
13016
+ * Who should own the issue; null clears the assignment
13017
+ */
13018
+ assignee: (string | null);
13019
+ }
13020
+ interface ObserveIssuesAssignOutput {
13021
+ /**
13022
+ * Identifier of the issue
13023
+ */
13024
+ id: string;
13025
+ /**
13026
+ * Display title, set when the issue opened and never rewritten
13027
+ */
13028
+ title: string;
13029
+ /**
13030
+ * unresolved, resolved or archived
13031
+ */
13032
+ status: string;
13033
+ /**
13034
+ * Where the error appears to come from, or null
13035
+ */
13036
+ culprit: (string | null);
13037
+ /**
13038
+ * Who owns the issue, or null if unassigned
13039
+ */
13040
+ assignee: (string | null);
13041
+ /**
13042
+ * ISO 8601 timestamp of the most recent event
13043
+ */
13044
+ lastSeen: string;
13045
+ /**
13046
+ * ISO 8601 timestamp of the first event
13047
+ */
13048
+ firstSeen: string;
13049
+ /**
13050
+ * ISO 8601 archive timestamp, or null
13051
+ */
13052
+ archivedAt: (string | null);
13053
+ /**
13054
+ * How many events have landed on this issue
13055
+ */
13056
+ eventCount: number;
13057
+ /**
13058
+ * ISO 8601 resolution timestamp, or null
13059
+ */
13060
+ resolvedAt: (string | null);
13061
+ /**
13062
+ * Environment the issue was first seen in, or null
13063
+ */
13064
+ environment: (string | null);
13065
+ /**
13066
+ * Stable grouping hash the issue is keyed on
13067
+ */
13068
+ fingerprint: string;
13069
+ /**
13070
+ * ISO 8601 timestamp of the last regression, or null if it never regressed
13071
+ */
13072
+ regressedAt: (string | null);
13073
+ /**
13074
+ * Which rule of the ladder matched: explicit, stack, exception or message
13075
+ */
13076
+ groupingRule: string;
13077
+ /**
13078
+ * Exception class of the first event, or null
13079
+ */
13080
+ exceptionType: (string | null);
13081
+ /**
13082
+ * Grouping config version that produced the fingerprint; part of the issue identity
13083
+ */
13084
+ groupingVersion: string;
13085
+ }
13086
+ interface ObserveIssuesGetInput {
13087
+ /**
13088
+ * Identifier of the issue
13089
+ */
13090
+ id: string;
13091
+ }
13092
+ interface ObserveIssuesGetOutput {
13093
+ /**
13094
+ * Identifier of the issue
13095
+ */
13096
+ id: string;
13097
+ /**
13098
+ * Stack of the most recent event, or null when the issue has no events yet or the stack could not be read
13099
+ */
13100
+ stack: ({
13101
+ /**
13102
+ * The stack, resolved where a stored source map matched the frame
13103
+ */
13104
+ frames: {
13105
+ /**
13106
+ * Column number, original when the frame resolved
13107
+ */
13108
+ colno?: number;
13109
+ /**
13110
+ * Whether the frame belongs to the application rather than a dependency
13111
+ */
13112
+ inApp?: boolean;
13113
+ /**
13114
+ * Line number, original when the frame resolved
13115
+ */
13116
+ lineno?: number;
13117
+ /**
13118
+ * Original file when the frame resolved, else the minified one
13119
+ */
13120
+ filename?: string;
13121
+ /**
13122
+ * Function name, original where the source map names one
13123
+ */
13124
+ function?: string;
13125
+ /**
13126
+ * False means no source map matched and the frame is exactly as it was recorded
13127
+ */
13128
+ resolved: boolean;
13129
+ }[];
13130
+ /**
13131
+ * Identifier of the event the stack was taken from
13132
+ */
13133
+ eventId: string;
13134
+ /**
13135
+ * The stacktrace exactly as the emitter reported it, for events that carry one opaque string instead of frames (OTel span exceptions). Null for Sentry-source events, whose stack is in `frames`.
13136
+ */
13137
+ rawStacktrace: (string | null);
13138
+ } | null);
13139
+ /**
13140
+ * Display title, set when the issue opened and never rewritten
13141
+ */
13142
+ title: string;
13143
+ /**
13144
+ * unresolved, resolved or archived
13145
+ */
13146
+ status: string;
13147
+ /**
13148
+ * Where the error appears to come from, or null
13149
+ */
13150
+ culprit: (string | null);
13151
+ /**
13152
+ * Who owns the issue, or null if unassigned
13153
+ */
13154
+ assignee: (string | null);
13155
+ /**
13156
+ * ISO 8601 timestamp of the most recent event
13157
+ */
13158
+ lastSeen: string;
13159
+ /**
13160
+ * ISO 8601 timestamp of the first event
13161
+ */
13162
+ firstSeen: string;
13163
+ /**
13164
+ * ISO 8601 archive timestamp, or null
13165
+ */
13166
+ archivedAt: (string | null);
13167
+ /**
13168
+ * How many events have landed on this issue
13169
+ */
13170
+ eventCount: number;
13171
+ /**
13172
+ * ISO 8601 resolution timestamp, or null
13173
+ */
13174
+ resolvedAt: (string | null);
13175
+ /**
13176
+ * Environment the issue was first seen in, or null
13177
+ */
13178
+ environment: (string | null);
13179
+ /**
13180
+ * Stable grouping hash the issue is keyed on
13181
+ */
13182
+ fingerprint: string;
13183
+ /**
13184
+ * ISO 8601 timestamp of the last regression, or null if it never regressed
13185
+ */
13186
+ regressedAt: (string | null);
13187
+ /**
13188
+ * Which rule of the ladder matched: explicit, stack, exception or message
13189
+ */
13190
+ groupingRule: string;
13191
+ /**
13192
+ * Exception class of the first event, or null
13193
+ */
13194
+ exceptionType: (string | null);
13195
+ /**
13196
+ * Grouping config version that produced the fingerprint; part of the issue identity
13197
+ */
13198
+ groupingVersion: string;
13199
+ }
13200
+ interface ObserveIssuesListInput {
13201
+ /**
13202
+ * How many issues to return, most recently seen first. 1-200, default 50
13203
+ */
13204
+ limit?: number;
13205
+ /**
13206
+ * Only return issues in this state; omit to list every state
13207
+ */
13208
+ status?: ("unresolved" | "resolved" | "archived");
13209
+ /**
13210
+ * Only return issues owned by this assignee
13211
+ */
13212
+ assignee?: string;
13213
+ }
13214
+ type ObserveIssuesListOutput = {
13215
+ /**
13216
+ * Identifier of the issue
13217
+ */
13218
+ id: string;
13219
+ /**
13220
+ * Display title, set when the issue opened and never rewritten
13221
+ */
13222
+ title: string;
13223
+ /**
13224
+ * unresolved, resolved or archived
13225
+ */
13226
+ status: string;
13227
+ /**
13228
+ * Where the error appears to come from, or null
13229
+ */
13230
+ culprit: (string | null);
13231
+ /**
13232
+ * Who owns the issue, or null if unassigned
13233
+ */
13234
+ assignee: (string | null);
13235
+ /**
13236
+ * ISO 8601 timestamp of the most recent event
13237
+ */
13238
+ lastSeen: string;
13239
+ /**
13240
+ * ISO 8601 timestamp of the first event
13241
+ */
13242
+ firstSeen: string;
13243
+ /**
13244
+ * ISO 8601 archive timestamp, or null
13245
+ */
13246
+ archivedAt: (string | null);
13247
+ /**
13248
+ * How many events have landed on this issue
13249
+ */
13250
+ eventCount: number;
13251
+ /**
13252
+ * ISO 8601 resolution timestamp, or null
13253
+ */
13254
+ resolvedAt: (string | null);
13255
+ /**
13256
+ * Environment the issue was first seen in, or null
13257
+ */
13258
+ environment: (string | null);
13259
+ /**
13260
+ * Stable grouping hash the issue is keyed on
13261
+ */
13262
+ fingerprint: string;
13263
+ /**
13264
+ * ISO 8601 timestamp of the last regression, or null if it never regressed
13265
+ */
13266
+ regressedAt: (string | null);
13267
+ /**
13268
+ * Which rule of the ladder matched: explicit, stack, exception or message
13269
+ */
13270
+ groupingRule: string;
13271
+ /**
13272
+ * Exception class of the first event, or null
13273
+ */
13274
+ exceptionType: (string | null);
13275
+ /**
13276
+ * Grouping config version that produced the fingerprint; part of the issue identity
13277
+ */
13278
+ groupingVersion: string;
13279
+ }[];
13280
+ interface ObserveIssuesResolveInput {
13281
+ /**
13282
+ * Identifier of the issue
13283
+ */
13284
+ id: string;
13285
+ }
13286
+ interface ObserveIssuesResolveOutput {
13287
+ /**
13288
+ * Identifier of the issue
13289
+ */
13290
+ id: string;
13291
+ /**
13292
+ * Display title, set when the issue opened and never rewritten
13293
+ */
13294
+ title: string;
13295
+ /**
13296
+ * unresolved, resolved or archived
13297
+ */
13298
+ status: string;
13299
+ /**
13300
+ * Where the error appears to come from, or null
13301
+ */
13302
+ culprit: (string | null);
13303
+ /**
13304
+ * Who owns the issue, or null if unassigned
13305
+ */
13306
+ assignee: (string | null);
13307
+ /**
13308
+ * ISO 8601 timestamp of the most recent event
13309
+ */
13310
+ lastSeen: string;
13311
+ /**
13312
+ * ISO 8601 timestamp of the first event
13313
+ */
13314
+ firstSeen: string;
13315
+ /**
13316
+ * ISO 8601 archive timestamp, or null
13317
+ */
13318
+ archivedAt: (string | null);
13319
+ /**
13320
+ * How many events have landed on this issue
13321
+ */
13322
+ eventCount: number;
13323
+ /**
13324
+ * ISO 8601 resolution timestamp, or null
13325
+ */
13326
+ resolvedAt: (string | null);
13327
+ /**
13328
+ * Environment the issue was first seen in, or null
13329
+ */
13330
+ environment: (string | null);
13331
+ /**
13332
+ * Stable grouping hash the issue is keyed on
13333
+ */
13334
+ fingerprint: string;
13335
+ /**
13336
+ * ISO 8601 timestamp of the last regression, or null if it never regressed
13337
+ */
13338
+ regressedAt: (string | null);
13339
+ /**
13340
+ * Which rule of the ladder matched: explicit, stack, exception or message
13341
+ */
13342
+ groupingRule: string;
13343
+ /**
13344
+ * Exception class of the first event, or null
13345
+ */
13346
+ exceptionType: (string | null);
13347
+ /**
13348
+ * Grouping config version that produced the fingerprint; part of the issue identity
13349
+ */
13350
+ groupingVersion: string;
13351
+ }
13352
+ interface ObserveKeysCreateInput {
13353
+ /**
13354
+ * ingest (default) issues a Bearer OTLP token; dsn issues a public Sentry key returned as a full DSN
13355
+ */
13356
+ kind?: ("ingest" | "dsn");
13357
+ /**
13358
+ * Optional human label for the key, e.g. "ci" or "backend pods"
13359
+ */
13360
+ name?: string;
13361
+ /**
13362
+ * Environment this key sends telemetry for, e.g. "staging" or "production"
13363
+ */
13364
+ environment: string;
13365
+ }
13366
+ interface ObserveKeysCreateOutput {
13367
+ /**
13368
+ * Identifier of the ingest key
13369
+ */
13370
+ id: string;
13371
+ /**
13372
+ * The full DSN, for kind "dsn" — shown only here, store it now
13373
+ */
13374
+ dsn?: string;
13375
+ /**
13376
+ * ingest = Bearer OTLP key; dsn = public Sentry key that ships in client code
13377
+ */
13378
+ kind: ("ingest" | "dsn");
13379
+ /**
13380
+ * Human label given at creation, or null
13381
+ */
13382
+ name: (string | null);
13383
+ /**
13384
+ * The full ingest token, for kind "ingest" — shown only here, store it now
13385
+ */
13386
+ token?: string;
13387
+ /**
13388
+ * First characters of the token, shown for recognition
13389
+ */
13390
+ prefix: string;
13391
+ /**
13392
+ * ISO 8601 creation timestamp
13393
+ */
13394
+ createdAt: string;
13395
+ /**
13396
+ * ISO 8601 revocation timestamp, or null if active
13397
+ */
13398
+ revokedAt: (string | null);
13399
+ /**
13400
+ * Environment the key writes telemetry for
13401
+ */
13402
+ environment: string;
13403
+ }
13404
+ interface ObserveKeysListInput {
13405
+ /**
13406
+ * Only return keys of this environment; omit to list all of them
13407
+ */
13408
+ environment?: string;
13409
+ }
13410
+ type ObserveKeysListOutput = {
13411
+ /**
13412
+ * Identifier of the ingest key
13413
+ */
13414
+ id: string;
13415
+ /**
13416
+ * ingest = Bearer OTLP key; dsn = public Sentry key that ships in client code
13417
+ */
13418
+ kind: ("ingest" | "dsn");
13419
+ /**
13420
+ * Human label given at creation, or null
13421
+ */
13422
+ name: (string | null);
13423
+ /**
13424
+ * First characters of the token, shown for recognition
13425
+ */
13426
+ prefix: string;
13427
+ /**
13428
+ * ISO 8601 creation timestamp
13429
+ */
13430
+ createdAt: string;
13431
+ /**
13432
+ * ISO 8601 revocation timestamp, or null if active
13433
+ */
13434
+ revokedAt: (string | null);
13435
+ /**
13436
+ * Environment the key writes telemetry for
13437
+ */
13438
+ environment: string;
13439
+ }[];
13440
+ interface ObserveKeysRevokeInput {
13441
+ /**
13442
+ * Identifier of the ingest key to revoke
13443
+ */
13444
+ id: string;
13445
+ }
13446
+ interface ObserveKeysRevokeOutput {
13447
+ /**
13448
+ * Identifier of the revoked key
13449
+ */
13450
+ id: string;
13451
+ /**
13452
+ * ISO 8601 timestamp of the revocation
13453
+ */
13454
+ revokedAt: string;
13455
+ }
13456
+ interface ObserveLogsFacetsInput {
13457
+ /**
13458
+ * How far back to count, e.g. "1h", "24h", "7d". Up to 30d, default "24h"
13459
+ */
13460
+ window?: string;
13461
+ }
13462
+ interface ObserveLogsFacetsOutput {
13463
+ /**
13464
+ * Newest timestamp counted, ISO 8601
13465
+ */
13466
+ to: string;
13467
+ /**
13468
+ * Oldest timestamp counted, ISO 8601
13469
+ */
13470
+ from: string;
13471
+ /**
13472
+ * The window that was counted, e.g. "24h"
13473
+ */
13474
+ window: string;
13475
+ /**
13476
+ * Services, most frequent first
13477
+ */
13478
+ services: ObserveLogsFacetsOutputItems[];
13479
+ /**
13480
+ * Severities, most frequent first
13481
+ */
13482
+ severities: ObserveLogsFacetsOutputItems[];
13483
+ /**
13484
+ * Environments, most frequent first
13485
+ */
13486
+ environments: ObserveLogsFacetsOutputItems[];
13487
+ }
13488
+ interface ObserveLogsFacetsOutputItems {
13489
+ /**
13490
+ * How many lines carried it inside the window
13491
+ */
13492
+ count: number;
13493
+ /**
13494
+ * The value as the emitter wrote it
13495
+ */
13496
+ value: string;
13497
+ }
13498
+ interface ObserveLogsSearchInput {
13499
+ /**
13500
+ * Lucene-style expression, ANDed with the structured filters. `key:value` (service, environment, severity, trace_id, span_id, body; any other key matches an attribute), "quoted phrases", AND / OR / NOT in uppercase, parentheses. A bare word matches a whole word in the message body. Example: service:api AND NOT severity:INFO AND "connection refused"
13501
+ */
13502
+ q?: string;
13503
+ /**
13504
+ * Newest timestamp to include, ISO 8601
13505
+ */
13506
+ to?: string;
13507
+ /**
13508
+ * Oldest timestamp to include, ISO 8601
13509
+ */
13510
+ from?: string;
13511
+ /**
13512
+ * How many lines to return, 1-1000, default 100
13513
+ */
13514
+ limit?: number;
13515
+ /**
13516
+ * The nextCursor of the previous page; omit for the first page
13517
+ */
13518
+ cursor?: string;
13519
+ /**
13520
+ * Match the message body. A single word matches whole words and is indexed; anything longer is a case-insensitive substring match
13521
+ */
13522
+ search?: string;
13523
+ /**
13524
+ * Only lines of this service, e.g. "api"
13525
+ */
13526
+ service?: string;
13527
+ /**
13528
+ * Only lines of this trace
13529
+ */
13530
+ traceId?: string;
13531
+ /**
13532
+ * Only lines whose severity is one of these, e.g. ["ERROR", "FATAL"]
13533
+ *
13534
+ * @minItems 1
13535
+ */
13536
+ severityIn?: [string, ...(string)[]];
13537
+ /**
13538
+ * Only lines of this environment, e.g. "production"
13539
+ */
13540
+ environment?: string;
13541
+ }
13542
+ interface ObserveLogsSearchOutput {
13543
+ /**
13544
+ * The matching log lines, newest first
13545
+ */
13546
+ rows: {
13547
+ /**
13548
+ * The log message itself
13549
+ */
13550
+ body: string;
13551
+ /**
13552
+ * Span this line belongs to, empty when untraced
13553
+ */
13554
+ spanId: string;
13555
+ /**
13556
+ * Service that wrote the line
13557
+ */
13558
+ service: string;
13559
+ /**
13560
+ * Trace this line belongs to, empty when untraced
13561
+ */
13562
+ traceId: string;
13563
+ /**
13564
+ * ISO 8601 timestamp of the log line, millisecond precision
13565
+ */
13566
+ timestamp: string;
13567
+ /**
13568
+ * Attributes the emitter attached
13569
+ */
13570
+ attributes: {
13571
+ [k: string]: string;
13572
+ };
13573
+ /**
13574
+ * Environment the line was written in
13575
+ */
13576
+ environment: string;
13577
+ /**
13578
+ * Severity as the emitter named it, e.g. "ERROR"
13579
+ */
13580
+ severityText: string;
13581
+ /**
13582
+ * OpenTelemetry severity number, 1-24
13583
+ */
13584
+ severityNumber: number;
13585
+ }[];
13586
+ /**
13587
+ * Pass back as cursor for the next page; null when the last page was reached
13588
+ */
13589
+ nextCursor: (string | null);
13590
+ }
13591
+ interface ObserveLogsTailInput {
13592
+ /**
13593
+ * The nextCursor of the previous poll; omit to start at the newest lines
13594
+ */
13595
+ cursor?: string;
13596
+ /**
13597
+ * Only lines of this service
13598
+ */
13599
+ service?: string;
13600
+ /**
13601
+ * Only lines whose severity is one of these
13602
+ *
13603
+ * @minItems 1
13604
+ */
13605
+ severityIn?: [string, ...(string)[]];
13606
+ /**
13607
+ * Only lines of this environment
13608
+ */
13609
+ environment?: string;
13610
+ }
13611
+ interface ObserveLogsTailOutput {
13612
+ /**
13613
+ * The new log lines, oldest first
13614
+ */
13615
+ rows: {
13616
+ /**
13617
+ * The log message itself
13618
+ */
13619
+ body: string;
13620
+ /**
13621
+ * Span this line belongs to, empty when untraced
13622
+ */
13623
+ spanId: string;
13624
+ /**
13625
+ * Service that wrote the line
13626
+ */
13627
+ service: string;
13628
+ /**
13629
+ * Trace this line belongs to, empty when untraced
13630
+ */
13631
+ traceId: string;
13632
+ /**
13633
+ * ISO 8601 timestamp of the log line, millisecond precision
13634
+ */
13635
+ timestamp: string;
13636
+ /**
13637
+ * Attributes the emitter attached
13638
+ */
13639
+ attributes: {
13640
+ [k: string]: string;
13641
+ };
13642
+ /**
13643
+ * Environment the line was written in
13644
+ */
13645
+ environment: string;
13646
+ /**
13647
+ * Severity as the emitter named it, e.g. "ERROR"
13648
+ */
13649
+ severityText: string;
13650
+ /**
13651
+ * OpenTelemetry severity number, 1-24
13652
+ */
13653
+ severityNumber: number;
13654
+ }[];
13655
+ /**
13656
+ * Pass back as cursor on the next poll; null only while the product has no logs
13657
+ */
13658
+ nextCursor: (string | null);
13659
+ }
13660
+ interface ObserveTracesGetInput {
13661
+ /**
13662
+ * The trace to render, by its 32-character hex id
13663
+ */
13664
+ traceId: string;
13665
+ }
13666
+ interface ObserveTracesGetOutput {
13667
+ /**
13668
+ * Every span of the trace, oldest first; empty when the product has no such trace
13669
+ */
13670
+ spans: {
13671
+ /**
13672
+ * OTLP span kind: UNSPECIFIED, INTERNAL, SERVER, CLIENT, PRODUCER or CONSUMER
13673
+ */
13674
+ kind: string;
13675
+ /**
13676
+ * Span name, e.g. "GET /users"
13677
+ */
13678
+ name: string;
13679
+ /**
13680
+ * How many ancestors the span has inside this trace; the root is 0
13681
+ */
13682
+ depth: number;
13683
+ /**
13684
+ * Events recorded on the span, in the order they were sent
13685
+ */
13686
+ events: {
13687
+ /**
13688
+ * Event name as the emitter wrote it, e.g. "exception"
13689
+ */
13690
+ name: string;
13691
+ /**
13692
+ * When the event was recorded, ISO 8601
13693
+ */
13694
+ timestamp: string;
13695
+ /**
13696
+ * The event's own attributes, raw
13697
+ */
13698
+ attributes: {
13699
+ [k: string]: unknown;
13700
+ };
13701
+ }[];
13702
+ /**
13703
+ * The span id, 16 hex characters
13704
+ */
13705
+ spanId: string;
13706
+ /**
13707
+ * OTLP span status: UNSET, OK or ERROR
13708
+ */
13709
+ status: string;
13710
+ /**
13711
+ * When the span ended, ISO 8601, nanosecond precision
13712
+ */
13713
+ endTime: string;
13714
+ /**
13715
+ * Service that recorded the span
13716
+ */
13717
+ service: string;
13718
+ /**
13719
+ * When the span started, ISO 8601, nanosecond precision
13720
+ */
13721
+ startTime: string;
13722
+ /**
13723
+ * Attributes the emitter attached
13724
+ */
13725
+ attributes: {
13726
+ [k: string]: string;
13727
+ };
13728
+ /**
13729
+ * How long the span took, in milliseconds
13730
+ */
13731
+ durationMs: number;
13732
+ /**
13733
+ * Environment the span was recorded in
13734
+ */
13735
+ environment: string;
13736
+ /**
13737
+ * Parent span id; empty for the root or when the parent is not in this trace
13738
+ */
13739
+ parentSpanId: string;
13740
+ /**
13741
+ * Status message the emitter attached, empty when none
13742
+ */
13743
+ statusMessage: string;
13744
+ /**
13745
+ * Attributes of the emitting resource
13746
+ */
13747
+ resourceAttributes: {
13748
+ [k: string]: string;
13749
+ };
13750
+ }[];
13751
+ /**
13752
+ * The trace that was read
13753
+ */
13754
+ traceId: string;
13755
+ }
13756
+ interface ObserveTracesSearchInput {
13757
+ /**
13758
+ * Newest span start to include, ISO 8601
13759
+ */
13760
+ to?: string;
13761
+ /**
13762
+ * Oldest span start to include, ISO 8601
13763
+ */
13764
+ from?: string;
13765
+ /**
13766
+ * Only traces one of whose spans carries this exact span name, e.g. "GET /users"
13767
+ */
13768
+ name?: string;
13769
+ /**
13770
+ * How many traces to return, 1-1000, default 100
13771
+ */
13772
+ limit?: number;
13773
+ /**
13774
+ * The nextCursor of the previous page; omit for the first page
13775
+ */
13776
+ cursor?: string;
13777
+ /**
13778
+ * Only traces in this state: "error" when any span failed, "ok" when none did and at least one reported OK, "unset" when no span reported a status
13779
+ */
13780
+ status?: ("ok" | "error" | "unset");
13781
+ /**
13782
+ * Only traces one of whose spans belongs to this service, e.g. "api"
13783
+ */
13784
+ service?: string;
13785
+ /**
13786
+ * Only this trace, by its 32-character hex id
13787
+ */
13788
+ traceId?: string;
13789
+ /**
13790
+ * Only traces of this environment, e.g. "production"
13791
+ */
13792
+ environment?: string;
13793
+ /**
13794
+ * Only traces that took at most this many milliseconds end to end
13795
+ */
13796
+ maxDurationMs?: number;
13797
+ /**
13798
+ * Only traces that took at least this many milliseconds end to end
13799
+ */
13800
+ minDurationMs?: number;
13801
+ }
13802
+ interface ObserveTracesSearchOutput {
13803
+ /**
13804
+ * The matching traces, newest first
13805
+ */
13806
+ traces: {
13807
+ /**
13808
+ * The trace id, 32 hex characters
13809
+ */
13810
+ traceId: string;
13811
+ /**
13812
+ * True when at least one span failed
13813
+ */
13814
+ hasError: boolean;
13815
+ /**
13816
+ * Name of the root span — the one with no parent, or the earliest span
13817
+ */
13818
+ rootName: string;
13819
+ /**
13820
+ * How many spans the trace has
13821
+ */
13822
+ spanCount: number;
13823
+ /**
13824
+ * When the earliest span started, ISO 8601
13825
+ */
13826
+ startTime: string;
13827
+ /**
13828
+ * Earliest start to latest end, in milliseconds
13829
+ */
13830
+ durationMs: number;
13831
+ /**
13832
+ * How many of them reported an ERROR status
13833
+ */
13834
+ errorCount: number;
13835
+ /**
13836
+ * Environment the root span was recorded in
13837
+ */
13838
+ environment: string;
13839
+ /**
13840
+ * Service the root span belongs to
13841
+ */
13842
+ rootService: string;
12461
13843
  }[];
13844
+ /**
13845
+ * Pass back as cursor for the next page; null when the last page was reached
13846
+ */
13847
+ nextCursor: (string | null);
12462
13848
  }
12463
- interface MailUsageGetInput {
12464
- }
12465
- interface MailUsageGetOutput {
12466
- emails: {
12467
- day: MailUsageGetOutputDay;
12468
- month: MailUsageGetOutputDay;
12469
- blocked: boolean;
12470
- hard_cap: number;
12471
- };
12472
- period: {
12473
- day: string;
12474
- month: string;
12475
- };
12476
- contacts: {
12477
- count: number;
12478
- };
12479
- }
12480
- interface MailUsageGetOutputDay {
12481
- used: number;
12482
- limit: number;
12483
- remaining: number;
12484
- }
12485
- interface MailWebhookCreateInput {
13849
+ interface ObserveWebhooksCreateInput {
12486
13850
  /**
12487
- * HTTPS URL that signed events are POSTed to
13851
+ * HTTPS endpoint the event is POSTed to. Plain http:// is rejected
12488
13852
  */
12489
13853
  url: string;
12490
13854
  /**
12491
- * Optional human label
13855
+ * Free-form note about what this endpoint is for, up to 1000 characters
12492
13856
  */
12493
13857
  description?: string;
13858
+ }
13859
+ interface ObserveWebhooksCreateOutput {
12494
13860
  /**
12495
- * Event types to deliver. One or more of: email.delivered, email.bounced, email.complained, email.suppressed, email.opened, email.clicked
12496
- *
12497
- * @minItems 1
13861
+ * Identifier of the endpoint
12498
13862
  */
12499
- enabled_events: [("email.delivered" | "email.bounced" | "email.complained" | "email.suppressed" | "email.opened" | "email.clicked"), ...(("email.delivered" | "email.bounced" | "email.complained" | "email.suppressed" | "email.opened" | "email.clicked"))[]];
12500
- }
12501
- interface MailWebhookCreateOutput {
12502
13863
  id: string;
13864
+ /**
13865
+ * HTTPS endpoint events are POSTed to
13866
+ */
12503
13867
  url: string;
13868
+ /**
13869
+ * Whether deliveries are being attempted for it
13870
+ */
13871
+ active: boolean;
13872
+ /**
13873
+ * The signing secret — shown only here, store it now; it cannot be read back
13874
+ */
12504
13875
  secret: string;
12505
- enabled: boolean;
12506
- created_at: string;
12507
- updated_at: string;
13876
+ /**
13877
+ * ISO 8601 registration timestamp
13878
+ */
13879
+ createdAt: string;
13880
+ /**
13881
+ * ISO 8601 timestamp of the last change
13882
+ */
13883
+ updatedAt: string;
13884
+ /**
13885
+ * Free-form note given at registration, or null
13886
+ */
12508
13887
  description: (string | null);
12509
- enabled_events: string[];
12510
13888
  }
12511
- interface MailWebhookDeleteInput {
13889
+ interface ObserveWebhooksDeleteInput {
12512
13890
  /**
12513
- * Webhook endpoint id
13891
+ * Identifier of the endpoint
12514
13892
  */
12515
13893
  id: string;
12516
13894
  }
12517
- interface MailWebhookDeleteOutput {
12518
- id: string;
12519
- deleted: boolean;
12520
- }
12521
- interface MailWebhookDeliveriesListInput {
13895
+ interface ObserveWebhooksDeleteOutput {
12522
13896
  /**
12523
- * Webhook endpoint id
13897
+ * Identifier of the removed endpoint
12524
13898
  */
12525
13899
  id: string;
12526
13900
  /**
12527
- * Max items (1-100, default 50)
13901
+ * Always true; the call fails otherwise
13902
+ */
13903
+ deleted: true;
13904
+ }
13905
+ interface ObserveWebhooksDeliveriesListInput {
13906
+ /**
13907
+ * Page size, 1..200
12528
13908
  */
12529
13909
  limit?: number;
13910
+ /**
13911
+ * Number of deliveries to skip
13912
+ */
13913
+ offset?: number;
13914
+ /**
13915
+ * Only deliveries in this state
13916
+ */
13917
+ status?: ("pending" | "success" | "failed");
13918
+ /**
13919
+ * Only deliveries for this endpoint
13920
+ */
13921
+ webhookId?: string;
12530
13922
  }
12531
- type MailWebhookDeliveriesListOutput = {
13923
+ type ObserveWebhooksDeliveriesListOutput = {
13924
+ /**
13925
+ * Identifier of the delivery, also sent as the envelope id
13926
+ */
12532
13927
  id: string;
12533
- status: string;
12534
- attempts: number;
12535
- event_id: string;
12536
- created_at: string;
12537
- event_type: string;
12538
- last_error: (string | null);
12539
- updated_at: string;
12540
- endpoint_id: string;
12541
- last_attempt_at: (string | null);
12542
- response_status: (number | null);
13928
+ /**
13929
+ * pending means attempts remain; failed means the retry ladder is spent
13930
+ */
13931
+ status: ("pending" | "success" | "failed");
13932
+ /**
13933
+ * The event data that was sent, before snake_case conversion
13934
+ */
13935
+ payload?: {
13936
+ [k: string]: unknown;
13937
+ };
13938
+ /**
13939
+ * ISO 8601 time the delivery was opened
13940
+ */
13941
+ createdAt: string;
13942
+ /**
13943
+ * Event that was delivered, e.g. "observe/issue.created"
13944
+ */
13945
+ eventName: string;
13946
+ /**
13947
+ * Why the last attempt failed, or null
13948
+ */
13949
+ lastError: (string | null);
13950
+ /**
13951
+ * Endpoint the delivery is for
13952
+ */
13953
+ webhookId: string;
13954
+ /**
13955
+ * ISO 8601 time it succeeded, or null
13956
+ */
13957
+ deliveredAt: (string | null);
13958
+ /**
13959
+ * How many attempts have been made so far
13960
+ */
13961
+ attemptCount: number;
13962
+ /**
13963
+ * Identity of the source event, repeated on every attempt and on a redelivery
13964
+ */
13965
+ idempotencyKey: string;
13966
+ /**
13967
+ * HTTP status of the last attempt, or null
13968
+ */
13969
+ lastStatusCode: (number | null);
12543
13970
  }[];
12544
- interface MailWebhookGetInput {
13971
+ interface ObserveWebhooksGetInput {
12545
13972
  /**
12546
- * Webhook endpoint id
13973
+ * Identifier of the endpoint
12547
13974
  */
12548
13975
  id: string;
12549
13976
  }
12550
- interface MailWebhookGetOutput {
13977
+ interface ObserveWebhooksGetOutput {
13978
+ /**
13979
+ * Identifier of the endpoint
13980
+ */
12551
13981
  id: string;
13982
+ /**
13983
+ * HTTPS endpoint events are POSTed to
13984
+ */
12552
13985
  url: string;
12553
- enabled: boolean;
12554
- created_at: string;
12555
- updated_at: string;
13986
+ /**
13987
+ * Whether deliveries are being attempted for it
13988
+ */
13989
+ active: boolean;
13990
+ /**
13991
+ * ISO 8601 registration timestamp
13992
+ */
13993
+ createdAt: string;
13994
+ /**
13995
+ * ISO 8601 timestamp of the last change
13996
+ */
13997
+ updatedAt: string;
13998
+ /**
13999
+ * Free-form note given at registration, or null
14000
+ */
12556
14001
  description: (string | null);
12557
- enabled_events: string[];
12558
14002
  }
12559
- interface MailWebhookListInput {
14003
+ interface ObserveWebhooksListInput {
12560
14004
  }
12561
- type MailWebhookListOutput = {
14005
+ type ObserveWebhooksListOutput = {
14006
+ /**
14007
+ * Identifier of the endpoint
14008
+ */
12562
14009
  id: string;
14010
+ /**
14011
+ * HTTPS endpoint events are POSTed to
14012
+ */
12563
14013
  url: string;
12564
- enabled: boolean;
12565
- created_at: string;
12566
- updated_at: string;
14014
+ /**
14015
+ * Whether deliveries are being attempted for it
14016
+ */
14017
+ active: boolean;
14018
+ /**
14019
+ * ISO 8601 registration timestamp
14020
+ */
14021
+ createdAt: string;
14022
+ /**
14023
+ * ISO 8601 timestamp of the last change
14024
+ */
14025
+ updatedAt: string;
14026
+ /**
14027
+ * Free-form note given at registration, or null
14028
+ */
12567
14029
  description: (string | null);
12568
- enabled_events: string[];
12569
14030
  }[];
12570
- interface MailWebhookUpdateInput {
14031
+ interface ObserveWebhooksRedeliverInput {
12571
14032
  /**
12572
- * Webhook endpoint id
14033
+ * Identifier of the delivery to send again
12573
14034
  */
12574
14035
  id: string;
14036
+ }
14037
+ interface ObserveWebhooksRedeliverOutput {
12575
14038
  /**
12576
- * HTTPS URL that signed events are POSTed to
14039
+ * Identifier of the delivery, also sent as the envelope id
14040
+ */
14041
+ id: string;
14042
+ /**
14043
+ * pending means attempts remain; failed means the retry ladder is spent
14044
+ */
14045
+ status: ("pending" | "success" | "failed");
14046
+ /**
14047
+ * The event data that was sent, before snake_case conversion
14048
+ */
14049
+ payload?: {
14050
+ [k: string]: unknown;
14051
+ };
14052
+ /**
14053
+ * ISO 8601 time the delivery was opened
14054
+ */
14055
+ createdAt: string;
14056
+ /**
14057
+ * Event that was delivered, e.g. "observe/issue.created"
14058
+ */
14059
+ eventName: string;
14060
+ /**
14061
+ * Why the last attempt failed, or null
14062
+ */
14063
+ lastError: (string | null);
14064
+ /**
14065
+ * Endpoint the delivery is for
14066
+ */
14067
+ webhookId: string;
14068
+ /**
14069
+ * ISO 8601 time it succeeded, or null
14070
+ */
14071
+ deliveredAt: (string | null);
14072
+ /**
14073
+ * How many attempts have been made so far
14074
+ */
14075
+ attemptCount: number;
14076
+ /**
14077
+ * Identity of the source event, repeated on every attempt and on a redelivery
14078
+ */
14079
+ idempotencyKey: string;
14080
+ /**
14081
+ * HTTP status of the last attempt, or null
14082
+ */
14083
+ lastStatusCode: (number | null);
14084
+ }
14085
+ interface ObserveWebhooksRotateSecretInput {
14086
+ /**
14087
+ * Identifier of the endpoint
14088
+ */
14089
+ id: string;
14090
+ }
14091
+ interface ObserveWebhooksRotateSecretOutput {
14092
+ /**
14093
+ * Identifier of the endpoint
14094
+ */
14095
+ id: string;
14096
+ /**
14097
+ * HTTPS endpoint events are POSTed to
14098
+ */
14099
+ url: string;
14100
+ /**
14101
+ * Whether deliveries are being attempted for it
14102
+ */
14103
+ active: boolean;
14104
+ /**
14105
+ * The signing secret — shown only here, store it now; it cannot be read back
14106
+ */
14107
+ secret: string;
14108
+ /**
14109
+ * ISO 8601 registration timestamp
14110
+ */
14111
+ createdAt: string;
14112
+ /**
14113
+ * ISO 8601 timestamp of the last change
14114
+ */
14115
+ updatedAt: string;
14116
+ /**
14117
+ * Free-form note given at registration, or null
14118
+ */
14119
+ description: (string | null);
14120
+ }
14121
+ interface ObserveWebhooksUpdateInput {
14122
+ /**
14123
+ * Identifier of the endpoint to change
14124
+ */
14125
+ id: string;
14126
+ /**
14127
+ * New HTTPS endpoint. Plain http:// is rejected
12577
14128
  */
12578
14129
  url?: string;
12579
14130
  /**
12580
- * Enable (true) or disable (false) delivery
14131
+ * false keeps the registration and stops delivery; true resumes it
12581
14132
  */
12582
- enabled?: boolean;
14133
+ active?: boolean;
12583
14134
  /**
12584
- * Optional human label
14135
+ * New note, or null to clear it
12585
14136
  */
12586
14137
  description?: (string | null);
14138
+ }
14139
+ interface ObserveWebhooksUpdateOutput {
12587
14140
  /**
12588
- * Event types to deliver. One or more of: email.delivered, email.bounced, email.complained, email.suppressed, email.opened, email.clicked
12589
- *
12590
- * @minItems 1
14141
+ * Identifier of the endpoint
12591
14142
  */
12592
- enabled_events?: [("email.delivered" | "email.bounced" | "email.complained" | "email.suppressed" | "email.opened" | "email.clicked"), ...(("email.delivered" | "email.bounced" | "email.complained" | "email.suppressed" | "email.opened" | "email.clicked"))[]];
12593
- }
12594
- interface MailWebhookUpdateOutput {
12595
14143
  id: string;
14144
+ /**
14145
+ * HTTPS endpoint events are POSTed to
14146
+ */
12596
14147
  url: string;
12597
- enabled: boolean;
12598
- created_at: string;
12599
- updated_at: string;
14148
+ /**
14149
+ * Whether deliveries are being attempted for it
14150
+ */
14151
+ active: boolean;
14152
+ /**
14153
+ * ISO 8601 registration timestamp
14154
+ */
14155
+ createdAt: string;
14156
+ /**
14157
+ * ISO 8601 timestamp of the last change
14158
+ */
14159
+ updatedAt: string;
14160
+ /**
14161
+ * Free-form note given at registration, or null
14162
+ */
12600
14163
  description: (string | null);
12601
- enabled_events: string[];
12602
14164
  }
12603
14165
  interface OrganizationAuthMeInput {
12604
14166
  }
@@ -12914,8 +14476,9 @@ interface OrganizationFeedbackSubmitInput {
12914
14476
  details: string;
12915
14477
  }
12916
14478
  interface OrganizationFeedbackSubmitOutput {
12917
- url: string;
12918
- number: number;
14479
+ url: (string | null);
14480
+ number: (number | null);
14481
+ supportThreadId?: string;
12919
14482
  }
12920
14483
  interface OrganizationGdriveInstallInput {
12921
14484
  }
@@ -13154,23 +14717,6 @@ interface OrganizationPermissionCatalogOutput {
13154
14717
  display_name: string;
13155
14718
  }[];
13156
14719
  }
13157
- interface OrganizationProductAcceptInvitationInput {
13158
- token: string;
13159
- }
13160
- interface OrganizationProductAcceptInvitationOutput {
13161
- product: {
13162
- id: string;
13163
- name: string;
13164
- role: string;
13165
- slug: string;
13166
- demoAt: (string | null);
13167
- status: string;
13168
- blockedAt: (string | null);
13169
- createdAt: string;
13170
- archivedAt: (string | null);
13171
- organizationId: string;
13172
- };
13173
- }
13174
14720
  interface OrganizationProductCreateInput {
13175
14721
  name: string;
13176
14722
  region?: "eu";
@@ -13183,31 +14729,13 @@ interface OrganizationProductCreateOutput {
13183
14729
  slug: string;
13184
14730
  demoAt: (string | null);
13185
14731
  status: string;
14732
+ logoUrl: (string | null);
13186
14733
  blockedAt: (string | null);
13187
14734
  createdAt: string;
13188
14735
  archivedAt: (string | null);
14736
+ description: (string | null);
13189
14737
  organizationId: string;
13190
14738
  }
13191
- interface OrganizationProductInviteInput {
13192
- role?: ("admin" | "member" | "viewer");
13193
- email: string;
13194
- productId: string;
13195
- }
13196
- type OrganizationProductInviteOutput = ({
13197
- id: string;
13198
- role: string;
13199
- email: (string | null);
13200
- status: string;
13201
- outcome: "invited";
13202
- createdAt: string;
13203
- expiresAt: string;
13204
- } | {
13205
- role: string;
13206
- userId: string;
13207
- outcome: "added";
13208
- memberId: string;
13209
- productId: string;
13210
- });
13211
14739
  interface OrganizationProductListInput {
13212
14740
  }
13213
14741
  interface OrganizationProductListOutput {
@@ -13218,24 +14746,47 @@ interface OrganizationProductListOutput {
13218
14746
  slug: string;
13219
14747
  demoAt: (string | null);
13220
14748
  status: string;
14749
+ logoUrl: (string | null);
13221
14750
  blockedAt: (string | null);
13222
14751
  createdAt: string;
13223
14752
  archivedAt: (string | null);
14753
+ description: (string | null);
13224
14754
  organizationId: string;
13225
14755
  }[];
13226
14756
  }
13227
- interface OrganizationProductListInvitationsInput {
14757
+ interface OrganizationProductListAccessInput {
13228
14758
  productId: string;
13229
14759
  }
13230
- interface OrganizationProductListInvitationsOutput {
13231
- invitations: {
13232
- id: string;
14760
+ interface OrganizationProductListAccessOutput {
14761
+ members: {
13233
14762
  role: string;
13234
14763
  email: (string | null);
13235
- status: string;
13236
- createdAt: string;
13237
- expiresAt: string;
13238
- invitedByDisplayName: string;
14764
+ roleId: (string | null);
14765
+ userId: string;
14766
+ isCustom: boolean;
14767
+ roleName: (string | null);
14768
+ sourceRole: ({
14769
+ id: string;
14770
+ name: string;
14771
+ } | null);
14772
+ displayName: (string | null);
14773
+ }[];
14774
+ orgRoles: {
14775
+ id: string;
14776
+ name: string;
14777
+ description: (string | null);
14778
+ }[];
14779
+ canManage: boolean;
14780
+ inherited: {
14781
+ email: (string | null);
14782
+ userId: string;
14783
+ orgRole: ("owner" | "admin");
14784
+ displayName: (string | null);
14785
+ }[];
14786
+ candidates: {
14787
+ email: (string | null);
14788
+ userId: string;
14789
+ displayName: (string | null);
13239
14790
  }[];
13240
14791
  }
13241
14792
  interface OrganizationProductListMembersInput {
@@ -13269,12 +14820,12 @@ interface OrganizationProductListRolesOutput {
13269
14820
  productId: (string | null);
13270
14821
  }[];
13271
14822
  }
13272
- interface OrganizationProductRevokeInvitationInput {
14823
+ interface OrganizationProductRevokeAccessInput {
14824
+ userId: string;
13273
14825
  productId: string;
13274
- invitationId: string;
13275
14826
  }
13276
- interface OrganizationProductRevokeInvitationOutput {
13277
- message: string;
14827
+ interface OrganizationProductRevokeAccessOutput {
14828
+ [k: string]: unknown;
13278
14829
  }
13279
14830
  interface OrganizationProductSelectInput {
13280
14831
  productId: string;
@@ -13284,9 +14835,21 @@ interface OrganizationProductSelectOutput {
13284
14835
  name: string;
13285
14836
  slug: string;
13286
14837
  }
14838
+ interface OrganizationProductSetAccessInput {
14839
+ role?: ("admin" | "member" | "viewer");
14840
+ roleId?: string;
14841
+ userId: string;
14842
+ productId: string;
14843
+ }
14844
+ interface OrganizationProductSetAccessOutput {
14845
+ role: string;
14846
+ userId: string;
14847
+ productId: string;
14848
+ }
13287
14849
  interface OrganizationProductUpdateInput {
13288
- name: string;
14850
+ name?: string;
13289
14851
  productId: string;
14852
+ description?: (string | null);
13290
14853
  }
13291
14854
  interface OrganizationProductUpdateOutput {
13292
14855
  id: string;
@@ -13295,9 +14858,11 @@ interface OrganizationProductUpdateOutput {
13295
14858
  slug: string;
13296
14859
  demoAt: (string | null);
13297
14860
  status: string;
14861
+ logoUrl: (string | null);
13298
14862
  blockedAt: (string | null);
13299
14863
  createdAt: string;
13300
14864
  archivedAt: (string | null);
14865
+ description: (string | null);
13301
14866
  organizationId: string;
13302
14867
  }
13303
14868
  interface OrganizationPublicKeysCreateInput {
@@ -13482,6 +15047,272 @@ interface OrganizationSelectOutput {
13482
15047
  };
13483
15048
  activeProductId: (string | null);
13484
15049
  }
15050
+ interface OrganizationSupportThreadCreateInput {
15051
+ body: string;
15052
+ title: string;
15053
+ }
15054
+ interface OrganizationSupportThreadCreateOutput {
15055
+ id: string;
15056
+ title: string;
15057
+ status: string;
15058
+ category: ("open" | "pending" | "resolved" | "closed");
15059
+ messages: {
15060
+ id: string;
15061
+ body: string;
15062
+ author: {
15063
+ kind: ("user" | "agent");
15064
+ name: string;
15065
+ };
15066
+ createdAt: string;
15067
+ }[];
15068
+ createdAt: string;
15069
+ lastMessageAt: string;
15070
+ lastMessagePreview: (string | null);
15071
+ }
15072
+ interface OrganizationSupportThreadGetInput {
15073
+ id: string;
15074
+ }
15075
+ interface OrganizationSupportThreadGetOutput {
15076
+ id: string;
15077
+ title: string;
15078
+ status: string;
15079
+ category: ("open" | "pending" | "resolved" | "closed");
15080
+ messages: {
15081
+ id: string;
15082
+ body: string;
15083
+ author: {
15084
+ kind: ("user" | "agent");
15085
+ name: string;
15086
+ };
15087
+ createdAt: string;
15088
+ }[];
15089
+ createdAt: string;
15090
+ lastMessageAt: string;
15091
+ lastMessagePreview: (string | null);
15092
+ }
15093
+ interface OrganizationSupportThreadReplyInput {
15094
+ id: string;
15095
+ body: string;
15096
+ }
15097
+ interface OrganizationSupportThreadReplyOutput {
15098
+ id: string;
15099
+ title: string;
15100
+ status: string;
15101
+ category: ("open" | "pending" | "resolved" | "closed");
15102
+ messages: {
15103
+ id: string;
15104
+ body: string;
15105
+ author: {
15106
+ kind: ("user" | "agent");
15107
+ name: string;
15108
+ };
15109
+ createdAt: string;
15110
+ }[];
15111
+ createdAt: string;
15112
+ lastMessageAt: string;
15113
+ lastMessagePreview: (string | null);
15114
+ }
15115
+ interface OrganizationSupportThreadsListInput {
15116
+ }
15117
+ interface OrganizationSupportThreadsListOutput {
15118
+ threads: {
15119
+ id: string;
15120
+ title: string;
15121
+ status: string;
15122
+ category: ("open" | "pending" | "resolved" | "closed");
15123
+ createdAt: string;
15124
+ lastMessageAt: string;
15125
+ lastMessagePreview: (string | null);
15126
+ }[];
15127
+ }
15128
+ interface PlaygroundAnalyticsOverviewInput {
15129
+ /**
15130
+ * Max records per entity in recent[]; omit for the endpoint default
15131
+ */
15132
+ limit?: number;
15133
+ }
15134
+ interface PlaygroundAnalyticsOverviewOutput {
15135
+ ok: boolean;
15136
+ minted: boolean;
15137
+ overview?: unknown;
15138
+ http_status: number;
15139
+ }
15140
+ interface PlaygroundBillingEntitlementsInput {
15141
+ }
15142
+ interface PlaygroundBillingEntitlementsOutput {
15143
+ ok: boolean;
15144
+ minted: boolean;
15145
+ http_status: number;
15146
+ entitlements?: unknown;
15147
+ }
15148
+ interface PlaygroundBillingRecordUsageInput {
15149
+ /**
15150
+ * Quantity of events to record against playground-events (SUM); defaults to 1
15151
+ */
15152
+ value?: number;
15153
+ }
15154
+ interface PlaygroundBillingRecordUsageOutput {
15155
+ minted: boolean;
15156
+ accepted: (number | null);
15157
+ recorded: boolean;
15158
+ duplicates: (number | null);
15159
+ http_status: number;
15160
+ }
15161
+ interface PlaygroundClickupCreateTaskInput {
15162
+ /**
15163
+ * Task title; defaults to a fixture label
15164
+ */
15165
+ name?: string;
15166
+ /**
15167
+ * ClickUp list id; falls back to CLICKUP_TEST_LIST_ID
15168
+ */
15169
+ listId?: string;
15170
+ }
15171
+ interface PlaygroundClickupCreateTaskOutput {
15172
+ minted: boolean;
15173
+ task_id: (string | null);
15174
+ list_status: number;
15175
+ vend_status: number;
15176
+ clickup_status: number;
15177
+ installation_count: number;
15178
+ }
15179
+ interface PlaygroundClickupGetLastWebhookInput {
15180
+ }
15181
+ type PlaygroundClickupGetLastWebhookOutput = ({
15182
+ payload: string;
15183
+ event_id: string;
15184
+ provider: string;
15185
+ verified: boolean;
15186
+ product_id: string;
15187
+ occurred_at: string;
15188
+ connector_id: string;
15189
+ clickup_event: (string | null);
15190
+ receipt_count: number;
15191
+ } | {
15192
+ found: false;
15193
+ });
15194
+ interface PlaygroundClickupGetOverviewInput {
15195
+ }
15196
+ interface PlaygroundClickupGetOverviewOutput {
15197
+ team: ({
15198
+ teamId: string;
15199
+ teamName: string;
15200
+ } | null);
15201
+ lists: PlaygroundClickupGetOverviewOutputItems[];
15202
+ tasks: {
15203
+ id: string;
15204
+ name: string;
15205
+ status: (string | null);
15206
+ }[];
15207
+ minted: boolean;
15208
+ spaces: PlaygroundClickupGetOverviewOutputItems[];
15209
+ list_status: number;
15210
+ vend_status: number;
15211
+ lists_status: number;
15212
+ tasks_status: number;
15213
+ spaces_status: number;
15214
+ folders_status: number;
15215
+ installation_count: number;
15216
+ }
15217
+ interface PlaygroundClickupGetOverviewOutputItems {
15218
+ id: string;
15219
+ name: string;
15220
+ }
15221
+ interface PlaygroundGdriveGetLastChangeInput {
15222
+ }
15223
+ type PlaygroundGdriveGetLastChangeOutput = ({
15224
+ file_id: string;
15225
+ removed: boolean;
15226
+ file_name: (string | null);
15227
+ mime_type: (string | null);
15228
+ product_id: string;
15229
+ occurred_at: string;
15230
+ connector_id: string;
15231
+ resource_state: string;
15232
+ } | {
15233
+ found: false;
15234
+ });
15235
+ interface PlaygroundGdriveReadFileInput {
15236
+ /**
15237
+ * Drive file id; falls back to GDRIVE_TEST_FILE_ID, then the first picked file
15238
+ */
15239
+ fileId?: string;
15240
+ }
15241
+ interface PlaygroundGdriveReadFileOutput {
15242
+ minted: boolean;
15243
+ file_id: (string | null);
15244
+ file_name: (string | null);
15245
+ mime_type: (string | null);
15246
+ file_count: number;
15247
+ get_status: number;
15248
+ list_status: number;
15249
+ vend_status: number;
15250
+ content_bytes: (number | null);
15251
+ }
15252
+ interface PlaygroundGoogleadsReadCustomerInput {
15253
+ }
15254
+ interface PlaygroundGoogleadsReadCustomerOutput {
15255
+ minted: boolean;
15256
+ vended: boolean;
15257
+ customer_id: (string | null);
15258
+ vend_status: number;
15259
+ result_count: number;
15260
+ search_status: number;
15261
+ login_customer_id: (string | null);
15262
+ }
15263
+ interface PlaygroundLifecycleGetStateInput {
15264
+ }
15265
+ interface PlaygroundLifecycleGetStateOutput {
15266
+ blocked: boolean;
15267
+ archived: boolean;
15268
+ productId: string;
15269
+ lastBlockTransition: ({
15270
+ eventId: string;
15271
+ eventName: string;
15272
+ productId: string;
15273
+ occurredAt: string;
15274
+ recordedAt: string;
15275
+ receiptCount: number;
15276
+ organizationId: string;
15277
+ cascadedFromOrg: boolean;
15278
+ } | null);
15279
+ lastArchiveTransition: ({
15280
+ eventId: string;
15281
+ eventName: string;
15282
+ productId: string;
15283
+ occurredAt: string;
15284
+ recordedAt: string;
15285
+ receiptCount: number;
15286
+ organizationId: string;
15287
+ cascadedFromOrg: boolean;
15288
+ } | null);
15289
+ }
15290
+ interface PlaygroundLifecycleListEventsInput {
15291
+ }
15292
+ type PlaygroundLifecycleListEventsOutput = {
15293
+ eventId: string;
15294
+ eventName: string;
15295
+ productId: string;
15296
+ occurredAt: string;
15297
+ recordedAt: string;
15298
+ receiptCount: number;
15299
+ organizationId: string;
15300
+ cascadedFromOrg: boolean;
15301
+ }[];
15302
+ interface PlaygroundWebhookGetLastInput {
15303
+ }
15304
+ type PlaygroundWebhookGetLastOutput = ({
15305
+ payload?: unknown;
15306
+ event_id: string;
15307
+ provider: string;
15308
+ verified: boolean;
15309
+ product_id: string;
15310
+ occurred_at: string;
15311
+ connector_id: string;
15312
+ delivery_count: number;
15313
+ } | {
15314
+ found: false;
15315
+ });
13485
15316
  interface RealtimeArchiveExportInput {
13486
15317
  /**
13487
15318
  * Only entries with ts <= to_ts (epoch ms)
@@ -39428,9 +41259,6 @@ interface GeneratedClient {
39428
41259
  restore: {
39429
41260
  status(input: BrainRestoreStatusInput): Promise<BrainRestoreStatusOutput>;
39430
41261
  };
39431
- usage: {
39432
- report(input: BrainUsageReportInput): Promise<BrainUsageReportOutput>;
39433
- };
39434
41262
  };
39435
41263
  consent: {
39436
41264
  'config-cookie-domain': {
@@ -39741,6 +41569,58 @@ interface GeneratedClient {
39741
41569
  list(input: MailWebhookDeliveriesListInput): Promise<MailWebhookDeliveriesListOutput>;
39742
41570
  };
39743
41571
  };
41572
+ observe: {
41573
+ alerts: {
41574
+ create(input: ObserveAlertsCreateInput): Promise<ObserveAlertsCreateOutput>;
41575
+ delete(input: ObserveAlertsDeleteInput): Promise<ObserveAlertsDeleteOutput>;
41576
+ get(input: ObserveAlertsGetInput): Promise<ObserveAlertsGetOutput>;
41577
+ list(input: ObserveAlertsListInput): Promise<ObserveAlertsListOutput>;
41578
+ update(input: ObserveAlertsUpdateInput): Promise<ObserveAlertsUpdateOutput>;
41579
+ };
41580
+ 'alerts-events': {
41581
+ list(input: ObserveAlertsEventsListInput): Promise<ObserveAlertsEventsListOutput>;
41582
+ };
41583
+ artifacts: {
41584
+ delete(input: ObserveArtifactsDeleteInput): Promise<ObserveArtifactsDeleteOutput>;
41585
+ list(input: ObserveArtifactsListInput): Promise<ObserveArtifactsListOutput>;
41586
+ resolve(input: ObserveArtifactsResolveInput): Promise<ObserveArtifactsResolveOutput>;
41587
+ };
41588
+ issues: {
41589
+ archive(input: ObserveIssuesArchiveInput): Promise<ObserveIssuesArchiveOutput>;
41590
+ assign(input: ObserveIssuesAssignInput): Promise<ObserveIssuesAssignOutput>;
41591
+ get(input: ObserveIssuesGetInput): Promise<ObserveIssuesGetOutput>;
41592
+ list(input: ObserveIssuesListInput): Promise<ObserveIssuesListOutput>;
41593
+ resolve(input: ObserveIssuesResolveInput): Promise<ObserveIssuesResolveOutput>;
41594
+ };
41595
+ keys: {
41596
+ create(input: ObserveKeysCreateInput): Promise<ObserveKeysCreateOutput>;
41597
+ list(input: ObserveKeysListInput): Promise<ObserveKeysListOutput>;
41598
+ revoke(input: ObserveKeysRevokeInput): Promise<ObserveKeysRevokeOutput>;
41599
+ };
41600
+ logs: {
41601
+ facets(input: ObserveLogsFacetsInput): Promise<ObserveLogsFacetsOutput>;
41602
+ search(input: ObserveLogsSearchInput): Promise<ObserveLogsSearchOutput>;
41603
+ tail(input: ObserveLogsTailInput): Promise<ObserveLogsTailOutput>;
41604
+ };
41605
+ traces: {
41606
+ get(input: ObserveTracesGetInput): Promise<ObserveTracesGetOutput>;
41607
+ search(input: ObserveTracesSearchInput): Promise<ObserveTracesSearchOutput>;
41608
+ };
41609
+ webhooks: {
41610
+ create(input: ObserveWebhooksCreateInput): Promise<ObserveWebhooksCreateOutput>;
41611
+ delete(input: ObserveWebhooksDeleteInput): Promise<ObserveWebhooksDeleteOutput>;
41612
+ get(input: ObserveWebhooksGetInput): Promise<ObserveWebhooksGetOutput>;
41613
+ list(input: ObserveWebhooksListInput): Promise<ObserveWebhooksListOutput>;
41614
+ redeliver(input: ObserveWebhooksRedeliverInput): Promise<ObserveWebhooksRedeliverOutput>;
41615
+ update(input: ObserveWebhooksUpdateInput): Promise<ObserveWebhooksUpdateOutput>;
41616
+ };
41617
+ 'webhooks-deliveries': {
41618
+ list(input: ObserveWebhooksDeliveriesListInput): Promise<ObserveWebhooksDeliveriesListOutput>;
41619
+ };
41620
+ 'webhooks-rotate': {
41621
+ secret(input: ObserveWebhooksRotateSecretInput): Promise<ObserveWebhooksRotateSecretOutput>;
41622
+ };
41623
+ };
39744
41624
  organization: {
39745
41625
  create(input: OrganizationCreateInput): Promise<OrganizationCreateOutput>;
39746
41626
  list(input: OrganizationListInput): Promise<OrganizationListOutput>;
@@ -39822,15 +41702,14 @@ interface GeneratedClient {
39822
41702
  catalog(input: OrganizationPermissionCatalogInput): Promise<OrganizationPermissionCatalogOutput>;
39823
41703
  };
39824
41704
  product: {
39825
- 'accept-invitation'(input: OrganizationProductAcceptInvitationInput): Promise<OrganizationProductAcceptInvitationOutput>;
39826
41705
  create(input: OrganizationProductCreateInput): Promise<OrganizationProductCreateOutput>;
39827
- invite(input: OrganizationProductInviteInput): Promise<OrganizationProductInviteOutput>;
39828
41706
  list(input: OrganizationProductListInput): Promise<OrganizationProductListOutput>;
39829
- 'list-invitations'(input: OrganizationProductListInvitationsInput): Promise<OrganizationProductListInvitationsOutput>;
41707
+ 'list-access'(input: OrganizationProductListAccessInput): Promise<OrganizationProductListAccessOutput>;
39830
41708
  'list-members'(input: OrganizationProductListMembersInput): Promise<OrganizationProductListMembersOutput>;
39831
41709
  'list-roles'(input: OrganizationProductListRolesInput): Promise<OrganizationProductListRolesOutput>;
39832
- 'revoke-invitation'(input: OrganizationProductRevokeInvitationInput): Promise<OrganizationProductRevokeInvitationOutput>;
41710
+ 'revoke-access'(input: OrganizationProductRevokeAccessInput): Promise<OrganizationProductRevokeAccessOutput>;
39833
41711
  select(input: OrganizationProductSelectInput): Promise<OrganizationProductSelectOutput>;
41712
+ 'set-access'(input: OrganizationProductSetAccessInput): Promise<OrganizationProductSetAccessOutput>;
39834
41713
  update(input: OrganizationProductUpdateInput): Promise<OrganizationProductUpdateOutput>;
39835
41714
  };
39836
41715
  'public-keys': {
@@ -39852,6 +41731,42 @@ interface GeneratedClient {
39852
41731
  'security-mfa': {
39853
41732
  enable(input: OrganizationSecurityMfaEnableInput): Promise<OrganizationSecurityMfaEnableOutput>;
39854
41733
  };
41734
+ 'support-thread': {
41735
+ create(input: OrganizationSupportThreadCreateInput): Promise<OrganizationSupportThreadCreateOutput>;
41736
+ get(input: OrganizationSupportThreadGetInput): Promise<OrganizationSupportThreadGetOutput>;
41737
+ reply(input: OrganizationSupportThreadReplyInput): Promise<OrganizationSupportThreadReplyOutput>;
41738
+ };
41739
+ 'support-threads': {
41740
+ list(input: OrganizationSupportThreadsListInput): Promise<OrganizationSupportThreadsListOutput>;
41741
+ };
41742
+ };
41743
+ playground: {
41744
+ analytics: {
41745
+ overview(input: PlaygroundAnalyticsOverviewInput): Promise<PlaygroundAnalyticsOverviewOutput>;
41746
+ };
41747
+ billing: {
41748
+ entitlements(input: PlaygroundBillingEntitlementsInput): Promise<PlaygroundBillingEntitlementsOutput>;
41749
+ 'record-usage'(input: PlaygroundBillingRecordUsageInput): Promise<PlaygroundBillingRecordUsageOutput>;
41750
+ };
41751
+ clickup: {
41752
+ 'create-task'(input: PlaygroundClickupCreateTaskInput): Promise<PlaygroundClickupCreateTaskOutput>;
41753
+ 'get-last-webhook'(input: PlaygroundClickupGetLastWebhookInput): Promise<PlaygroundClickupGetLastWebhookOutput>;
41754
+ 'get-overview'(input: PlaygroundClickupGetOverviewInput): Promise<PlaygroundClickupGetOverviewOutput>;
41755
+ };
41756
+ gdrive: {
41757
+ 'get-last-change'(input: PlaygroundGdriveGetLastChangeInput): Promise<PlaygroundGdriveGetLastChangeOutput>;
41758
+ 'read-file'(input: PlaygroundGdriveReadFileInput): Promise<PlaygroundGdriveReadFileOutput>;
41759
+ };
41760
+ googleads: {
41761
+ 'read-customer'(input: PlaygroundGoogleadsReadCustomerInput): Promise<PlaygroundGoogleadsReadCustomerOutput>;
41762
+ };
41763
+ lifecycle: {
41764
+ 'get-state'(input: PlaygroundLifecycleGetStateInput): Promise<PlaygroundLifecycleGetStateOutput>;
41765
+ 'list-events'(input: PlaygroundLifecycleListEventsInput): Promise<PlaygroundLifecycleListEventsOutput>;
41766
+ };
41767
+ webhook: {
41768
+ 'get-last'(input: PlaygroundWebhookGetLastInput): Promise<PlaygroundWebhookGetLastOutput>;
41769
+ };
39855
41770
  };
39856
41771
  realtime: {
39857
41772
  archive: {
@@ -40152,4 +42067,4 @@ interface GeneratedClient {
40152
42067
  };
40153
42068
  }
40154
42069
 
40155
- 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, DeploymentAlertDeleteInput 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, ConsentConfigFloatingIconUpsertOutput as aA, ConsentConfigThemeUpsertInput as aB, ConsentConfigThemeUpsertOutput as aC, ConsentDashboardConfigGetInput as aD, ConsentDashboardConfigGetOutput as aE, ConsentDashboardDecisionsListInput as aF, ConsentDashboardDecisionsListOutput as aG, ConsentDashboardEmbedSnippetGetInput as aH, ConsentDashboardEmbedSnippetGetOutput as aI, ConsentDashboardStatsGetInput as aJ, ConsentDashboardStatsGetOutput as aK, ConsentEmbedGetInput as aL, ConsentEmbedGetOutput as aM, ConsentProvidersCreateInput as aN, ConsentProvidersCreateOutput as aO, ConsentProvidersDeleteInput as aP, ConsentProvidersDeleteOutput as aQ, ConsentProvidersListInput as aR, ConsentProvidersListOutput as aS, ConsentProvidersUpdateInput as aT, ConsentProvidersUpdateOutput as aU, ConsentRecordsExportInput as aV, ConsentRecordsExportOutput as aW, ConsentStatsGetInput as aX, ConsentStatsGetOutput as aY, DeploymentAlertCreateInput as aZ, DeploymentAlertCreateOutput 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, BrainUsageReportInput as at, BrainUsageReportOutput as au, ConsentConfigCookieDomainUpsertInput as av, ConsentConfigCookieDomainUpsertOutput as aw, ConsentConfigCustomizationUpsertInput as ax, ConsentConfigCustomizationUpsertOutput as ay, ConsentConfigFloatingIconUpsertInput as az, BrainBackupCreateOutput as b, DeploymentDomainGetInput as b$, DeploymentAlertDeleteOutput as b0, DeploymentAlertEventsListInput as b1, DeploymentAlertEventsListOutput as b2, DeploymentAlertListInput as b3, DeploymentAlertListOutput as b4, DeploymentAlertUpdateInput as b5, DeploymentAlertUpdateOutput as b6, DeploymentAnalyticsQueryInput as b7, DeploymentAnalyticsQueryOutput as b8, DeploymentAuditListInput as b9, DeploymentCloudSqlInstanceBackupListOutput as bA, DeploymentCloudSqlInstanceBackupInput as bB, DeploymentCloudSqlInstanceBackupOutput as bC, DeploymentCloudSqlInstanceCreateInput as bD, DeploymentCloudSqlInstanceCreateOutput as bE, DeploymentCloudSqlInstanceDeleteInput as bF, DeploymentCloudSqlInstanceDeleteOutput as bG, DeploymentCloudSqlInstanceGetInput as bH, DeploymentCloudSqlInstanceGetOutput as bI, DeploymentCloudSqlInstanceListInput as bJ, DeploymentCloudSqlInstanceListOutput as bK, DeploymentCloudSqlInstanceResizeInput as bL, DeploymentCloudSqlInstanceResizeOutput as bM, DeploymentCloudSqlInstanceRestoreInput as bN, DeploymentCloudSqlInstanceRestoreOutput as bO, DeploymentCloudSqlLogsInput as bP, DeploymentCloudSqlLogsOutput as bQ, DeploymentDeploymentCancelInput as bR, DeploymentDeploymentCancelOutput as bS, DeploymentDeploymentGetInput as bT, DeploymentDeploymentGetOutput as bU, DeploymentDeploymentListInput as bV, DeploymentDeploymentListOutput as bW, DeploymentDomainAddInput as bX, DeploymentDomainAddOutput as bY, DeploymentDomainAllowedListInput as bZ, DeploymentDomainAllowedListOutput as b_, DeploymentAuditListOutput as ba, DeploymentBuildGetInput as bb, DeploymentBuildGetOutput as bc, DeploymentBuildListInput as bd, DeploymentBuildListOutput as be, DeploymentBuildLogsInput as bf, DeploymentBuildLogsOutput as bg, DeploymentCanvasGetInput as bh, DeploymentCanvasGetOutput as bi, DeploymentCanvasMoveNodeInput as bj, DeploymentCanvasMoveNodeOutput as bk, DeploymentCloudSqlBackfillLogFlagsInput as bl, DeploymentCloudSqlBackfillLogFlagsOutput as bm, DeploymentCloudSqlDatabaseAttachInput as bn, DeploymentCloudSqlDatabaseAttachOutput as bo, DeploymentCloudSqlDatabaseCreateInput as bp, DeploymentCloudSqlDatabaseCreateOutput as bq, DeploymentCloudSqlDatabaseDeleteInput as br, DeploymentCloudSqlDatabaseDeleteOutput as bs, DeploymentCloudSqlDatabaseDetachInput as bt, DeploymentCloudSqlDatabaseDetachOutput as bu, DeploymentCloudSqlDatabaseGetInput as bv, DeploymentCloudSqlDatabaseGetOutput as bw, DeploymentCloudSqlDatabaseListInput as bx, DeploymentCloudSqlDatabaseListOutput as by, DeploymentCloudSqlInstanceBackupListInput as bz, BrainBackupRestoreInput as c, DeploymentManagedServiceTypesInput as c$, DeploymentDomainGetOutput as c0, DeploymentDomainListByServiceInput as c1, DeploymentDomainListByServiceOutput as c2, DeploymentDomainListInput as c3, DeploymentDomainListOutput as c4, DeploymentDomainRedirectWwwInput as c5, DeploymentDomainRedirectWwwOutput as c6, DeploymentDomainRemoveInput as c7, DeploymentDomainRemoveOutput as c8, DeploymentDomainRoutesAddInput as c9, DeploymentEventsListByServiceOutput as cA, DeploymentManagedServiceBackupListInput as cB, DeploymentManagedServiceBackupListOutput as cC, DeploymentManagedServiceBackupInput as cD, DeploymentManagedServiceBackupOutput as cE, DeploymentManagedServiceConnectInfoInput as cF, DeploymentManagedServiceConnectInfoOutput as cG, DeploymentManagedServiceDeleteInput as cH, DeploymentManagedServiceDeleteOutput as cI, DeploymentManagedServiceGetInput as cJ, DeploymentManagedServiceGetOutput as cK, DeploymentManagedServiceListInput as cL, DeploymentManagedServiceListOutput as cM, DeploymentManagedServiceLogsInput as cN, DeploymentManagedServiceLogsOutput as cO, DeploymentManagedServiceProvisionInput as cP, DeploymentManagedServiceProvisionOutput as cQ, DeploymentManagedServiceReconcileInput as cR, DeploymentManagedServiceReconcileOutput as cS, DeploymentManagedServiceResizeInput as cT, DeploymentManagedServiceResizeOutput as cU, DeploymentManagedServiceRestoreInput as cV, DeploymentManagedServiceRestoreOutput as cW, DeploymentManagedServiceStartInput as cX, DeploymentManagedServiceStartOutput as cY, DeploymentManagedServiceStopInput as cZ, DeploymentManagedServiceStopOutput as c_, DeploymentDomainRoutesAddOutput as ca, DeploymentDomainRoutesListInput as cb, DeploymentDomainRoutesListOutput as cc, DeploymentDomainRoutesRemoveInput as cd, DeploymentDomainRoutesRemoveOutput as ce, DeploymentDomainRoutesUpdateInput as cf, DeploymentDomainRoutesUpdateOutput as cg, DeploymentDomainVerifyInput as ch, DeploymentDomainVerifyOutput as ci, DeploymentEnvironmentCreateInput as cj, DeploymentEnvironmentCreateOutput as ck, DeploymentEnvironmentDeleteInput as cl, DeploymentEnvironmentDeleteOutput as cm, DeploymentEnvironmentForkInput as cn, DeploymentEnvironmentForkOutput as co, DeploymentEnvironmentGetInput as cp, DeploymentEnvironmentGetOutput as cq, DeploymentEnvironmentListInput as cr, DeploymentEnvironmentListOutput as cs, DeploymentEnvironmentReconcileInput as ct, DeploymentEnvironmentReconcileOutput as cu, DeploymentEnvironmentUpdateInput as cv, DeploymentEnvironmentUpdateOutput as cw, DeploymentEventsListByEnvironmentInput as cx, DeploymentEventsListByEnvironmentOutput as cy, DeploymentEventsListByServiceInput as cz, BrainBackupRestoreOutput as d, DeploymentVariableUnsetOutput as d$, DeploymentManagedServiceTypesOutput as d0, DeploymentMetricsGetInput as d1, DeploymentMetricsGetOutput as d2, DeploymentPreviewEnvironmentCreateInput as d3, DeploymentPreviewEnvironmentCreateOutput as d4, DeploymentPreviewEnvironmentDeleteInput as d5, DeploymentPreviewEnvironmentDeleteOutput as d6, DeploymentPreviewEnvironmentListInput as d7, DeploymentPreviewEnvironmentListOutput as d8, DeploymentPreviewPolicyGetInput as d9, DeploymentServiceWakeInput as dA, DeploymentServiceWakeOutput as dB, DeploymentSshCommandInput as dC, DeploymentSshCommandOutput as dD, DeploymentSshKeyDeleteInput as dE, DeploymentSshKeyDeleteOutput as dF, DeploymentSshKeyListInput as dG, DeploymentSshKeyListOutput as dH, DeploymentSshKeyRegisterInput as dI, DeploymentSshKeyRegisterOutput as dJ, DeploymentSuspensionGetInput as dK, DeploymentSuspensionGetOutput as dL, DeploymentVariableListEnvInput as dM, DeploymentVariableListEnvOutput as dN, DeploymentVariableListProductInput as dO, DeploymentVariableListProductOutput as dP, DeploymentVariableListInput as dQ, DeploymentVariableListOutput as dR, DeploymentVariableSetEnvInput as dS, DeploymentVariableSetEnvOutput as dT, DeploymentVariableSetInput as dU, DeploymentVariableSetOutput as dV, DeploymentVariableSetProductInput as dW, DeploymentVariableSetProductOutput as dX, DeploymentVariableUnsetEnvInput as dY, DeploymentVariableUnsetEnvOutput as dZ, DeploymentVariableUnsetInput as d_, DeploymentPreviewPolicyGetOutput as da, DeploymentPreviewPolicySetInput as db, DeploymentPreviewPolicySetOutput as dc, DeploymentServiceCreateInput as dd, DeploymentServiceCreateOutput as de, DeploymentServiceDeleteInput as df, DeploymentServiceDeleteOutput as dg, DeploymentServiceExecInput as dh, DeploymentServiceExecOutput as di, DeploymentServiceGetInput as dj, DeploymentServiceGetOutput as dk, DeploymentServiceListInput as dl, DeploymentServiceListOutput as dm, DeploymentServiceLogsInput as dn, DeploymentServiceLogsOutput as dp, DeploymentServiceRedeployInput as dq, DeploymentServiceRedeployOutput as dr, DeploymentServiceRestartInput as ds, DeploymentServiceRestartOutput as dt, DeploymentServiceRollbackInput as du, DeploymentServiceRollbackOutput as dv, DeploymentServiceScaleInput as dw, DeploymentServiceScaleOutput as dx, DeploymentServiceUpdateInput as dy, DeploymentServiceUpdateOutput as dz, BrainBackupStatusInput as e, MailDomainAllowedListOutput as e$, DeploymentVariableUnsetProductInput as e0, DeploymentVariableUnsetProductOutput as e1, DeploymentVcsBranchListInput as e2, DeploymentVcsBranchListOutput as e3, DeploymentVcsConnectionListInput as e4, DeploymentVcsConnectionListOutput as e5, DeploymentVcsRepoListInput as e6, DeploymentVcsRepoListOutput as e7, DeploymentVolumeCreateInput as e8, DeploymentVolumeCreateOutput as e9, MailBroadcastCancelInput as eA, MailBroadcastCancelOutput as eB, MailBroadcastCreateInput as eC, MailBroadcastCreateOutput as eD, MailBroadcastDeleteInput as eE, MailBroadcastDeleteOutput as eF, MailBroadcastGetInput as eG, MailBroadcastGetOutput as eH, MailBroadcastListInput as eI, MailBroadcastListOutput as eJ, MailBroadcastQueueInput as eK, MailBroadcastQueueOutput as eL, MailBroadcastStatsInput as eM, MailBroadcastStatsOutput as eN, MailBroadcastUpdateInput as eO, MailBroadcastUpdateOutput as eP, MailContactCreateInput as eQ, MailContactCreateOutput as eR, MailContactDeleteInput as eS, MailContactDeleteOutput as eT, MailContactGetInput as eU, MailContactGetOutput as eV, MailContactListInput as eW, MailContactListOutput as eX, MailContactUpdateInput as eY, MailContactUpdateOutput as eZ, MailDomainAllowedListInput as e_, DeploymentVolumeDeleteInput as ea, DeploymentVolumeDeleteOutput as eb, DeploymentVolumeDetachInput as ec, DeploymentVolumeDetachOutput as ed, DeploymentVolumeGetInput as ee, DeploymentVolumeGetOutput as ef, DeploymentVolumeListInput as eg, DeploymentVolumeListOutput as eh, DeploymentVolumeResizeInput as ei, DeploymentVolumeResizeOutput as ej, MailApikeyCreateInput as ek, MailApikeyCreateOutput as el, MailApikeyDeleteInput as em, MailApikeyDeleteOutput as en, MailApikeyListInput as eo, MailApikeyListOutput as ep, MailAudienceCreateInput as eq, MailAudienceCreateOutput as er, MailAudienceDeleteInput as es, MailAudienceDeleteOutput as et, MailAudienceGetInput as eu, MailAudienceGetOutput as ev, MailAudienceListInput as ew, MailAudienceListOutput as ex, MailAudienceUpdateInput as ey, MailAudienceUpdateOutput as ez, BrainBackupStatusOutput as f, OrganizationBillingBudgetsSetOutput as f$, MailDomainCreateInput as f0, MailDomainCreateOutput as f1, MailDomainDeleteInput as f2, MailDomainDeleteOutput as f3, MailDomainGetInput as f4, MailDomainGetOutput as f5, MailDomainListInput as f6, MailDomainListOutput as f7, MailDomainUpdateInput as f8, MailDomainUpdateOutput as f9, MailTemplateGetOutput as fA, MailTemplateListInput as fB, MailTemplateListOutput as fC, MailTemplatePublishInput as fD, MailTemplatePublishOutput as fE, MailTemplateUpdateInput as fF, MailTemplateUpdateOutput as fG, MailUsageGetInput as fH, MailUsageGetOutput as fI, MailWebhookCreateInput as fJ, MailWebhookCreateOutput as fK, MailWebhookDeleteInput as fL, MailWebhookDeleteOutput as fM, MailWebhookDeliveriesListInput as fN, MailWebhookDeliveriesListOutput as fO, MailWebhookGetInput as fP, MailWebhookGetOutput as fQ, MailWebhookListInput as fR, MailWebhookListOutput as fS, MailWebhookUpdateInput as fT, MailWebhookUpdateOutput as fU, MailEmailGetOutput as fV, OrganizationAuthMeInput as fW, OrganizationAuthMeOutput as fX, OrganizationBillingBudgetsGetInput as fY, OrganizationBillingBudgetsGetOutput as fZ, OrganizationBillingBudgetsSetInput as f_, MailDomainVerifyInput as fa, MailDomainVerifyOutput as fb, MailEmailCancelInput as fc, MailEmailCancelOutput as fd, MailEmailGetInput as fe, MailEmailSendBatchInput as ff, MailEmailSendBatchOutput as fg, MailEmailSendInput as fh, MailEmailSendOutput as fi, MailEmailUpdateInput as fj, MailEmailUpdateOutput as fk, MailReputationGetInput as fl, MailReputationGetOutput as fm, MailStatsGetInput as fn, MailStatsGetOutput as fo, MailSuppressionAddInput as fp, MailSuppressionAddOutput as fq, MailSuppressionListInput as fr, MailSuppressionListOutput as fs, MailSuppressionRemoveInput as ft, MailSuppressionRemoveOutput as fu, MailTemplateCreateInput as fv, MailTemplateCreateOutput as fw, MailTemplateDeleteInput as fx, MailTemplateDeleteOutput as fy, MailTemplateGetInput as fz, BrainBackupsListInput as g, OrganizationMemberAcceptInviteOutput as g$, OrganizationBillingCapsClearInput as g0, OrganizationBillingCapsClearOutput as g1, OrganizationBillingCapsSetInput as g2, OrganizationBillingCapsSetOutput as g3, OrganizationBindingsListInput as g4, OrganizationBindingsListOutput as g5, OrganizationClickupInstallInput as g6, OrganizationClickupInstallOutput as g7, OrganizationClickupListInstallationsInput as g8, OrganizationClickupListInstallationsOutput as g9, OrganizationCreateInput as gA, OrganizationCreateOutput as gB, OrganizationDomainsAddInput as gC, OrganizationDomainsAddOutput as gD, OrganizationDomainsGetInput as gE, OrganizationDomainsGetOutput as gF, OrganizationDomainsListInput as gG, OrganizationDomainsListOutput as gH, OrganizationDomainsRemoveInput as gI, OrganizationDomainsRemoveOutput as gJ, OrganizationDomainsSetModeInput as gK, OrganizationDomainsSetModeOutput as gL, OrganizationExtensionsListInstalledInput as gM, OrganizationExtensionsListInstalledOutput as gN, OrganizationFeedbackSubmitInput as gO, OrganizationFeedbackSubmitOutput as gP, OrganizationGdriveInstallInput as gQ, OrganizationGdriveInstallOutput as gR, OrganizationGithubInstallInput as gS, OrganizationGithubInstallOutput as gT, OrganizationGithubListInstallationsInput as gU, OrganizationGithubListInstallationsOutput as gV, OrganizationGoogleadsInstallInput as gW, OrganizationGoogleadsInstallOutput as gX, OrganizationListInput as gY, OrganizationListOutput as gZ, OrganizationMemberAcceptInviteInput as g_, OrganizationCloudflareInstallInput as ga, OrganizationCloudflareInstallOutput as gb, OrganizationConnectorsApproveRequestInput as gc, OrganizationConnectorsApproveRequestOutput as gd, OrganizationConnectorsAttachInput as ge, OrganizationConnectorsAttachOutput as gf, OrganizationConnectorsDeleteInput as gg, OrganizationConnectorsDeleteOutput as gh, OrganizationConnectorsDenyRequestInput as gi, OrganizationConnectorsDenyRequestOutput as gj, OrganizationConnectorsDetachInput as gk, OrganizationConnectorsDetachOutput as gl, OrganizationConnectorsListAttachmentsInput as gm, OrganizationConnectorsListAttachmentsOutput as gn, OrganizationConnectorsListAvailableInput as go, OrganizationConnectorsListAvailableOutput as gp, OrganizationConnectorsListOrgInput as gq, OrganizationConnectorsListOrgOutput as gr, OrganizationConnectorsListInput as gs, OrganizationConnectorsListOutput as gt, OrganizationConnectorsListRequestsInput as gu, OrganizationConnectorsListRequestsOutput as gv, OrganizationConnectorsRemoveInput as gw, OrganizationConnectorsRemoveOutput as gx, OrganizationConnectorsRequestInput as gy, OrganizationConnectorsRequestOutput as gz, BrainBackupsListOutput as h, OrganizationSecurityMfaEnableOutput as h$, OrganizationMemberInviteInput as h0, OrganizationMemberInviteOutput as h1, OrganizationMemberListInvitationsInput as h2, OrganizationMemberListInvitationsOutput as h3, OrganizationMemberListProductAccessInput as h4, OrganizationMemberListProductAccessOutput as h5, OrganizationMemberListInput as h6, OrganizationMemberListOutput as h7, OrganizationMemberRemoveInput as h8, OrganizationMemberRemoveOutput as h9, OrganizationProductRevokeInvitationInput as hA, OrganizationProductRevokeInvitationOutput as hB, OrganizationProductSelectInput as hC, OrganizationProductSelectOutput as hD, OrganizationProductUpdateInput as hE, OrganizationProductUpdateOutput as hF, OrganizationPublicKeysCreateInput as hG, OrganizationPublicKeysCreateOutput as hH, OrganizationPublicKeysListInput as hI, OrganizationPublicKeysListOutput as hJ, OrganizationPublicKeysRevokeInput as hK, OrganizationPublicKeysRevokeOutput as hL, OrganizationPublicKeysUpdateScopeInput as hM, OrganizationPublicKeysUpdateScopeOutput as hN, OrganizationPublicRoutesListInput as hO, OrganizationPublicRoutesListOutput as hP, OrganizationRolesCreateInput as hQ, OrganizationRolesCreateOutput as hR, OrganizationRolesDeleteInput as hS, OrganizationRolesDeleteOutput as hT, OrganizationRolesGetInput as hU, OrganizationRolesGetOutput as hV, OrganizationRolesListInput as hW, OrganizationRolesListOutput as hX, OrganizationRolesUpdateInput as hY, OrganizationRolesUpdateOutput as hZ, OrganizationSecurityMfaEnableInput as h_, OrganizationMemberRevokeInvitationInput as ha, OrganizationMemberRevokeInvitationOutput as hb, OrganizationMemberSetRoleInput as hc, OrganizationMemberSetRoleOutput as hd, OrganizationMemberShareProductInput as he, OrganizationMemberShareProductOutput as hf, OrganizationMemberUnshareProductInput as hg, OrganizationMemberUnshareProductOutput as hh, OrganizationMembersAssignRoleInput as hi, OrganizationMembersAssignRoleOutput as hj, OrganizationPermissionCatalogInput as hk, OrganizationPermissionCatalogOutput as hl, OrganizationProductAcceptInvitationInput as hm, OrganizationProductAcceptInvitationOutput as hn, OrganizationProductCreateInput as ho, OrganizationProductCreateOutput as hp, OrganizationProductInviteInput as hq, OrganizationProductInviteOutput as hr, OrganizationProductListInvitationsInput as hs, OrganizationProductListInvitationsOutput as ht, OrganizationProductListMembersInput as hu, OrganizationProductListMembersOutput as hv, OrganizationProductListInput as hw, OrganizationProductListOutput as hx, OrganizationProductListRolesInput as hy, OrganizationProductListRolesOutput as hz, BrainClickupChannelsListInput as i, SupportAgentGetOutput as i$, OrganizationSelectInput as i0, OrganizationSelectOutput as i1, RealtimeArchiveExportInput as i2, RealtimeArchiveExportOutput as i3, RealtimeArchiveExportStatusInput as i4, RealtimeArchiveExportStatusOutput as i5, RealtimeArchiveGetInput as i6, RealtimeArchiveGetOutput as i7, RealtimeGrantCreateInput as i8, RealtimeGrantCreateOutput as i9, RealtimePresenceStatsInput as iA, RealtimePresenceStatsOutput as iB, RealtimePresenceUpdateInput as iC, RealtimePresenceUpdateOutput as iD, RealtimePublicAccessStatusInput as iE, RealtimePublicAccessStatusOutput as iF, RealtimeStatusGetInput as iG, RealtimeStatusGetOutput as iH, RealtimeTokensCreateInput as iI, RealtimeTokensCreateOutput as iJ, RealtimeWebhookCreateInput as iK, RealtimeWebhookCreateOutput as iL, RealtimeWebhookDeleteInput as iM, RealtimeWebhookDeleteOutput as iN, RealtimeWebhookDeliveriesListInput as iO, RealtimeWebhookDeliveriesListOutput as iP, RealtimeWebhookGetInput as iQ, RealtimeWebhookGetOutput as iR, RealtimeWebhookListInput as iS, RealtimeWebhookListOutput as iT, RealtimeWebhookSecretRotateInput as iU, RealtimeWebhookSecretRotateOutput as iV, RealtimeWebhookUpdateInput as iW, RealtimeWebhookUpdateOutput as iX, SupportAgentCreateInput as iY, SupportAgentCreateOutput as iZ, SupportAgentGetInput as i_, RealtimeGrantListInput as ia, RealtimeGrantListOutput as ib, RealtimeGrantRevokeInput as ic, RealtimeGrantRevokeOutput as id, RealtimeHistoryGetInput as ie, RealtimeHistoryGetOutput as ig, RealtimeMessagesPublishInput as ih, RealtimeMessagesPublishOutput as ii, RealtimeNamespaceCreateInput as ij, RealtimeNamespaceCreateOutput as ik, RealtimeNamespaceDeleteInput as il, RealtimeNamespaceDeleteOutput as im, RealtimeNamespaceGetInput as io, RealtimeNamespaceGetOutput as ip, RealtimeNamespaceListInput as iq, RealtimeNamespaceListOutput as ir, RealtimeNamespaceUpdateInput as is, RealtimeNamespaceUpdateOutput as it, RealtimePresenceEnterInput as iu, RealtimePresenceEnterOutput as iv, RealtimePresenceGetInput as iw, RealtimePresenceGetOutput as ix, RealtimePresenceLeaveInput as iy, RealtimePresenceLeaveOutput as iz, BrainClickupChannelsListOutput as j, SupportThreadListOutput as j$, SupportAgentListInput as j0, SupportAgentListOutput as j1, SupportAgentUpdateInput as j2, SupportAgentUpdateOutput as j3, SupportAttachmentCreateInput as j4, SupportAttachmentCreateOutput as j5, SupportAttachmentFinalizeInput as j6, SupportAttachmentFinalizeOutput as j7, SupportLabelCreateInput as j8, SupportLabelCreateOutput as j9, SupportStatusListInput as jA, SupportStatusListOutput as jB, SupportStatusUpdateInput as jC, SupportStatusUpdateOutput as jD, SupportSurveyArchiveInput as jE, SupportSurveyArchiveOutput as jF, SupportSurveyCreateInput as jG, SupportSurveyCreateOutput as jH, SupportSurveyGetInput as jI, SupportSurveyGetOutput as jJ, SupportSurveyListInput as jK, SupportSurveyListOutput as jL, SupportSurveyPublishInput as jM, SupportSurveyPublishOutput as jN, SupportSurveyStatsInput as jO, SupportSurveyStatsOutput as jP, SupportSurveyUnpublishInput as jQ, SupportSurveyUnpublishOutput as jR, SupportSurveyUpdateInput as jS, SupportSurveyUpdateOutput as jT, SupportThreadAssignInput as jU, SupportThreadAssignOutput as jV, SupportThreadCreateInput as jW, SupportThreadCreateOutput as jX, SupportThreadGetInput as jY, SupportThreadGetOutput as jZ, SupportThreadListInput as j_, SupportLabelListInput as ja, SupportLabelListOutput as jb, SupportMessageCreateInput as jc, SupportMessageCreateOutput as jd, SupportMessageListInput as je, SupportMessageListOutput as jf, SupportResponseEscalateInput as jg, SupportResponseEscalateOutput as jh, SupportResponseGetInput as ji, SupportResponseGetOutput as jj, SupportResponseListInput as jk, SupportResponseListOutput as jl, SupportRuleCreateInput as jm, SupportRuleCreateOutput as jn, SupportRuleDeleteInput as jo, SupportRuleDeleteOutput as jp, SupportRuleGetInput as jq, SupportRuleGetOutput as jr, SupportRuleListInput as js, SupportRuleListOutput as jt, SupportRuleUpdateInput as ju, SupportRuleUpdateOutput as jv, SupportStatusArchiveInput as jw, SupportStatusArchiveOutput as jx, SupportStatusCreateInput as jy, SupportStatusCreateOutput as jz, BrainClickupConnectionsListInput as k, TrackingInstallDomainsDeleteOutput as k$, SupportThreadStatusSetInput as k0, SupportThreadStatusSetOutput as k1, SupportThreadUpdateInput as k2, SupportThreadUpdateOutput as k3, SupportWebhookCreateInput as k4, SupportWebhookCreateOutput as k5, SupportWebhookDeleteInput as k6, SupportWebhookDeleteOutput as k7, SupportWebhookDeliveriesListInput as k8, SupportWebhookDeliveriesListOutput as k9, TrackingGoogleadsConnectionStatusInput as kA, TrackingGoogleadsConnectionStatusOutput as kB, TrackingGoogleadsConversionActionsInput as kC, TrackingGoogleadsConversionActionsOutput as kD, TrackingGoogleadsFeedbackConfigGetInput as kE, TrackingGoogleadsFeedbackConfigGetOutput as kF, TrackingGoogleadsFeedbackConfigSetInput as kG, TrackingGoogleadsFeedbackConfigSetOutput as kH, TrackingGoogleadsFeedbackRunInput as kI, TrackingGoogleadsFeedbackRunOutput as kJ, TrackingGoogleadsFeedbackStatusInput as kK, TrackingGoogleadsFeedbackStatusOutput as kL, TrackingGoogleadsFeedbackUploadsInput as kM, TrackingGoogleadsFeedbackUploadsOutput as kN, TrackingGoogleadsRoasReportInput as kO, TrackingGoogleadsRoasReportOutput as kP, TrackingGoogleadsSyncNowInput as kQ, TrackingGoogleadsSyncNowOutput as kR, TrackingGoogleadsTrackingHealthInput as kS, TrackingGoogleadsTrackingHealthOutput as kT, TrackingGoogleadsUsVsPlatformInput as kU, TrackingGoogleadsUsVsPlatformOutput as kV, TrackingIdentityHealthInput as kW, TrackingIdentityHealthOutput as kX, TrackingInstallDomainsCreateInput as kY, TrackingInstallDomainsCreateOutput as kZ, TrackingInstallDomainsDeleteInput as k_, SupportWebhookGetInput as ka, SupportWebhookGetOutput as kb, SupportWebhookListInput as kc, SupportWebhookListOutput as kd, SupportWebhookRedeliverInput as ke, SupportWebhookRedeliverOutput as kf, SupportWebhookRotateSecretInput as kg, SupportWebhookRotateSecretOutput as kh, SupportWebhookUpdateInput as ki, SupportWebhookUpdateOutput as kj, TrackingDomainsCreateInput as kk, TrackingDomainsCreateOutput as kl, TrackingDomainsDeleteInput as km, TrackingDomainsDeleteOutput as kn, TrackingDomainsGetInput as ko, TrackingDomainsGetOutput as kp, TrackingDomainsListInput as kq, TrackingDomainsListOutput as kr, TrackingDomainsVerifyInput as ks, TrackingDomainsVerifyOutput as kt, TrackingEventNamesArchiveInput as ku, TrackingEventNamesArchiveOutput as kv, TrackingEventNamesListInput as kw, TrackingEventNamesListOutput as kx, TrackingEventNamesUnarchiveInput as ky, TrackingEventNamesUnarchiveOutput as kz, BrainClickupConnectionsListOutput as l, UsersStatsGetOutput as l$, TrackingInstallDomainsListInput as l0, TrackingInstallDomainsListOutput as l1, TrackingLinkDomainsCreateInput as l2, TrackingLinkDomainsCreateOutput as l3, TrackingLinkDomainsDeleteInput as l4, TrackingLinkDomainsDeleteOutput as l5, TrackingLinkDomainsListInput as l6, TrackingLinkDomainsListOutput as l7, TrackingLiveEventsListInput as l8, TrackingLiveEventsListOutput as l9, UsersConfigGetInput as lA, UsersConfigGetOutput as lB, UsersConfigUpsertInput as lC, UsersConfigUpsertOutput as lD, UsersFactorsListInput as lE, UsersFactorsListOutput as lF, UsersFactorsResetInput as lG, UsersFactorsResetOutput as lH, UsersKeysListInput as lI, UsersKeysListOutput as lJ, UsersKeysRevokeInput as lK, UsersKeysRevokeOutput as lL, UsersKeysRotateInput as lM, UsersKeysRotateOutput as lN, UsersOpsRetentionGetInput as lO, UsersOpsRetentionGetOutput as lP, UsersOpsSloGetInput as lQ, UsersOpsSloGetOutput as lR, UsersSessionsGetInput as lS, UsersSessionsGetOutput as lT, UsersSessionsImpersonateInput as lU, UsersSessionsImpersonateOutput as lV, UsersSessionsListInput as lW, UsersSessionsListOutput as lX, UsersSessionsRevokeInput as lY, UsersSessionsRevokeOutput as lZ, UsersStatsGetInput as l_, TrackingProfilesDeleteInput as la, TrackingProfilesDeleteOutput as lb, TrackingProfilesExportInput as lc, TrackingProfilesExportOutput as ld, TrackingProfilesGetInput as le, TrackingProfilesGetOutput as lf, TrackingProfilesListInput as lg, TrackingProfilesListOutput as lh, TrackingReportsAttributedJourneyInput as li, TrackingReportsAttributedJourneyOutput as lj, TrackingReportsEventVolumeInput as lk, TrackingReportsEventVolumeOutput as ll, TrackingReportsRevenueBySourceInput as lm, TrackingReportsRevenueBySourceOutput as ln, TrackingReportsSourcePeopleInput as lo, TrackingReportsSourcePeopleOutput as lp, TrackingSnippetsGetInput as lq, TrackingSnippetsGetOutput as lr, UsersApikeysCreateInput as ls, UsersApikeysCreateOutput as lt, UsersApikeysListInput as lu, UsersApikeysListOutput as lv, UsersApikeysRevokeInput as lw, UsersApikeysRevokeOutput as lx, UsersAuditListInput as ly, UsersAuditListOutput as lz, BrainClickupListsListInput as m, UsersUsersBanInput as m0, UsersUsersBanOutput as m1, UsersUsersCreateInput as m2, UsersUsersCreateOutput as m3, UsersUsersDeleteInput as m4, UsersUsersDeleteOutput as m5, UsersUsersEraseInput as m6, UsersUsersEraseOutput as m7, UsersUsersExportInput as m8, UsersUsersExportOutput as m9, UsersWebhooksDeleteInput as mA, UsersWebhooksDeleteOutput as mB, UsersWebhooksDeliveriesListInput as mC, UsersWebhooksDeliveriesListOutput as mD, UsersWebhooksGetInput as mE, UsersWebhooksGetOutput as mF, UsersWebhooksListInput as mG, UsersWebhooksListOutput as mH, UsersWebhooksRotateSecretInput as mI, UsersWebhooksRotateSecretOutput as mJ, UsersWebhooksUpdateInput as mK, UsersWebhooksUpdateOutput as mL, WaitlistConfigGetInput as mM, WaitlistConfigGetOutput as mN, WaitlistConfigUpsertInput as mO, WaitlistConfigUpsertOutput as mP, WaitlistEmbedGetInput as mQ, WaitlistEmbedGetOutput as mR, WaitlistInvitesSendInput as mS, WaitlistInvitesSendOutput as mT, WaitlistSignupsEraseInput as mU, WaitlistSignupsEraseOutput as mV, WaitlistSignupsFunnelInput as mW, WaitlistSignupsFunnelOutput as mX, WaitlistSignupsListInput as mY, WaitlistSignupsListOutput as mZ, UsersUsersGetInput as ma, UsersUsersGetOutput as mb, UsersUsersImportInput as mc, UsersUsersImportOutput as md, UsersUsersInviteInput as me, UsersUsersInviteOutput as mf, UsersUsersListInput as mg, UsersUsersListOutput as mh, UsersUsersSetPrimaryIdentifierInput as mi, UsersUsersSetPrimaryIdentifierOutput as mj, UsersUsersUnbanInput as mk, UsersUsersUnbanOutput as ml, UsersUsersUpdateInput as mm, UsersUsersUpdateOutput as mn, UsersWaitlistEraseInput as mo, UsersWaitlistEraseOutput as mp, UsersWaitlistFunnelInput as mq, UsersWaitlistFunnelOutput as mr, UsersWaitlistImportInput as ms, UsersWaitlistImportOutput as mt, UsersWaitlistInviteInput as mu, UsersWaitlistInviteOutput as mv, UsersWaitlistListInput as mw, UsersWaitlistListOutput as mx, UsersWebhooksCreateInput as my, UsersWebhooksCreateOutput as mz, BrainClickupListsListOutput as n, BrainClickupSpacesListInput as o, BrainClickupSpacesListOutput as p, BrainCognitionDigestInput as q, BrainCognitionDigestOutput as r, BrainCognitionStatusInput as s, BrainCognitionStatusOutput as t, BrainCognitionSweepInput as u, BrainCognitionSweepOutput as v, BrainConnectorBranchesListInput as w, BrainConnectorBranchesListOutput as x, BrainConnectorConnectionsListInput as y, BrainConnectorConnectionsListOutput as z };
42070
+ 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, OrganizationBindingsListOutput 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, ObserveWebhooksCreateInput as gA, ObserveWebhooksCreateOutput as gB, ObserveWebhooksDeleteInput as gC, ObserveWebhooksDeleteOutput as gD, ObserveWebhooksDeliveriesListInput as gE, ObserveWebhooksDeliveriesListOutput as gF, ObserveWebhooksGetInput as gG, ObserveWebhooksGetOutput as gH, ObserveWebhooksListInput as gI, ObserveWebhooksListOutput as gJ, ObserveWebhooksRedeliverInput as gK, ObserveWebhooksRedeliverOutput as gL, ObserveWebhooksRotateSecretInput as gM, ObserveWebhooksRotateSecretOutput as gN, ObserveWebhooksUpdateInput as gO, ObserveWebhooksUpdateOutput as gP, OrganizationAuthMeInput as gQ, OrganizationAuthMeOutput as gR, OrganizationBillingBudgetsGetInput as gS, OrganizationBillingBudgetsGetOutput as gT, OrganizationBillingBudgetsSetInput as gU, OrganizationBillingBudgetsSetOutput as gV, OrganizationBillingCapsClearInput as gW, OrganizationBillingCapsClearOutput as gX, OrganizationBillingCapsSetInput as gY, OrganizationBillingCapsSetOutput as gZ, OrganizationBindingsListInput 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, ObserveTracesGetInput as gw, ObserveTracesGetOutput as gx, ObserveTracesSearchInput as gy, ObserveTracesSearchOutput as gz, BrainBackupsListOutput as h, OrganizationMemberListProductAccessOutput as h$, OrganizationClickupInstallInput as h0, OrganizationClickupInstallOutput as h1, OrganizationClickupListInstallationsInput as h2, OrganizationClickupListInstallationsOutput as h3, OrganizationCloudflareInstallInput as h4, OrganizationCloudflareInstallOutput as h5, OrganizationConnectorsApproveRequestInput as h6, OrganizationConnectorsApproveRequestOutput as h7, OrganizationConnectorsAttachInput as h8, OrganizationConnectorsAttachOutput as h9, OrganizationDomainsListInput as hA, OrganizationDomainsListOutput as hB, OrganizationDomainsRemoveInput as hC, OrganizationDomainsRemoveOutput as hD, OrganizationDomainsSetModeInput as hE, OrganizationDomainsSetModeOutput as hF, OrganizationExtensionsListInstalledInput as hG, OrganizationExtensionsListInstalledOutput as hH, OrganizationFeedbackSubmitInput as hI, OrganizationFeedbackSubmitOutput as hJ, OrganizationGdriveInstallInput as hK, OrganizationGdriveInstallOutput as hL, OrganizationGithubInstallInput as hM, OrganizationGithubInstallOutput as hN, OrganizationGithubListInstallationsInput as hO, OrganizationGithubListInstallationsOutput as hP, OrganizationGoogleadsInstallInput as hQ, OrganizationGoogleadsInstallOutput as hR, OrganizationListInput as hS, OrganizationListOutput as hT, OrganizationMemberAcceptInviteInput as hU, OrganizationMemberAcceptInviteOutput as hV, OrganizationMemberInviteInput as hW, OrganizationMemberInviteOutput as hX, OrganizationMemberListInvitationsInput as hY, OrganizationMemberListInvitationsOutput as hZ, OrganizationMemberListProductAccessInput as h_, OrganizationConnectorsDeleteInput as ha, OrganizationConnectorsDeleteOutput as hb, OrganizationConnectorsDenyRequestInput as hc, OrganizationConnectorsDenyRequestOutput as hd, OrganizationConnectorsDetachInput as he, OrganizationConnectorsDetachOutput as hf, OrganizationConnectorsListAttachmentsInput as hg, OrganizationConnectorsListAttachmentsOutput as hh, OrganizationConnectorsListAvailableInput as hi, OrganizationConnectorsListAvailableOutput as hj, OrganizationConnectorsListOrgInput as hk, OrganizationConnectorsListOrgOutput as hl, OrganizationConnectorsListInput as hm, OrganizationConnectorsListOutput as hn, OrganizationConnectorsListRequestsInput as ho, OrganizationConnectorsListRequestsOutput as hp, OrganizationConnectorsRemoveInput as hq, OrganizationConnectorsRemoveOutput as hr, OrganizationConnectorsRequestInput as hs, OrganizationConnectorsRequestOutput as ht, OrganizationCreateInput as hu, OrganizationCreateOutput as hv, OrganizationDomainsAddInput as hw, OrganizationDomainsAddOutput as hx, OrganizationDomainsGetInput as hy, OrganizationDomainsGetOutput as hz, BrainClickupChannelsListInput as i, OrganizationSupportThreadGetOutput as i$, OrganizationMemberListInput as i0, OrganizationMemberListOutput as i1, OrganizationMemberRemoveInput as i2, OrganizationMemberRemoveOutput as i3, OrganizationMemberRevokeInvitationInput as i4, OrganizationMemberRevokeInvitationOutput as i5, OrganizationMemberSetRoleInput as i6, OrganizationMemberSetRoleOutput as i7, OrganizationMemberShareProductInput as i8, OrganizationMemberShareProductOutput as i9, OrganizationPublicKeysCreateInput as iA, OrganizationPublicKeysCreateOutput as iB, OrganizationPublicKeysListInput as iC, OrganizationPublicKeysListOutput as iD, OrganizationPublicKeysRevokeInput as iE, OrganizationPublicKeysRevokeOutput as iF, OrganizationPublicKeysUpdateScopeInput as iG, OrganizationPublicKeysUpdateScopeOutput as iH, OrganizationPublicRoutesListInput as iI, OrganizationPublicRoutesListOutput as iJ, OrganizationRolesCreateInput as iK, OrganizationRolesCreateOutput as iL, OrganizationRolesDeleteInput as iM, OrganizationRolesDeleteOutput as iN, OrganizationRolesGetInput as iO, OrganizationRolesGetOutput as iP, OrganizationRolesListInput as iQ, OrganizationRolesListOutput as iR, OrganizationRolesUpdateInput as iS, OrganizationRolesUpdateOutput as iT, OrganizationSecurityMfaEnableInput as iU, OrganizationSecurityMfaEnableOutput as iV, OrganizationSelectInput as iW, OrganizationSelectOutput as iX, OrganizationSupportThreadCreateInput as iY, OrganizationSupportThreadCreateOutput as iZ, OrganizationSupportThreadGetInput as i_, OrganizationMemberUnshareProductInput as ia, OrganizationMemberUnshareProductOutput as ib, OrganizationMembersAssignRoleInput as ic, OrganizationMembersAssignRoleOutput as id, OrganizationPermissionCatalogInput as ie, OrganizationPermissionCatalogOutput as ig, OrganizationProductCreateInput as ih, OrganizationProductCreateOutput as ii, OrganizationProductListAccessInput as ij, OrganizationProductListAccessOutput as ik, OrganizationProductListMembersInput as il, OrganizationProductListMembersOutput as im, OrganizationProductListInput as io, OrganizationProductListOutput as ip, OrganizationProductListRolesInput as iq, OrganizationProductListRolesOutput as ir, OrganizationProductRevokeAccessInput as is, OrganizationProductRevokeAccessOutput as it, OrganizationProductSelectInput as iu, OrganizationProductSelectOutput as iv, OrganizationProductSetAccessInput as iw, OrganizationProductSetAccessOutput as ix, OrganizationProductUpdateInput as iy, OrganizationProductUpdateOutput as iz, BrainClickupChannelsListOutput as j, RealtimePresenceUpdateOutput as j$, OrganizationSupportThreadReplyInput as j0, OrganizationSupportThreadReplyOutput as j1, OrganizationSupportThreadsListInput as j2, OrganizationSupportThreadsListOutput as j3, PlaygroundAnalyticsOverviewInput as j4, PlaygroundAnalyticsOverviewOutput as j5, PlaygroundBillingEntitlementsInput as j6, PlaygroundBillingEntitlementsOutput as j7, PlaygroundBillingRecordUsageInput as j8, PlaygroundBillingRecordUsageOutput as j9, RealtimeGrantListInput as jA, RealtimeGrantListOutput as jB, RealtimeGrantRevokeInput as jC, RealtimeGrantRevokeOutput as jD, RealtimeHistoryGetInput as jE, RealtimeHistoryGetOutput as jF, RealtimeMessagesPublishInput as jG, RealtimeMessagesPublishOutput as jH, RealtimeNamespaceCreateInput as jI, RealtimeNamespaceCreateOutput as jJ, RealtimeNamespaceDeleteInput as jK, RealtimeNamespaceDeleteOutput as jL, RealtimeNamespaceGetInput as jM, RealtimeNamespaceGetOutput as jN, RealtimeNamespaceListInput as jO, RealtimeNamespaceListOutput as jP, RealtimeNamespaceUpdateInput as jQ, RealtimeNamespaceUpdateOutput as jR, RealtimePresenceEnterInput as jS, RealtimePresenceEnterOutput as jT, RealtimePresenceGetInput as jU, RealtimePresenceGetOutput as jV, RealtimePresenceLeaveInput as jW, RealtimePresenceLeaveOutput as jX, RealtimePresenceStatsInput as jY, RealtimePresenceStatsOutput as jZ, RealtimePresenceUpdateInput as j_, PlaygroundClickupCreateTaskInput as ja, PlaygroundClickupCreateTaskOutput as jb, PlaygroundClickupGetLastWebhookInput as jc, PlaygroundClickupGetLastWebhookOutput as jd, PlaygroundClickupGetOverviewInput as je, PlaygroundClickupGetOverviewOutput as jf, PlaygroundGdriveGetLastChangeInput as jg, PlaygroundGdriveGetLastChangeOutput as jh, PlaygroundGdriveReadFileInput as ji, PlaygroundGdriveReadFileOutput as jj, PlaygroundGoogleadsReadCustomerInput as jk, PlaygroundGoogleadsReadCustomerOutput as jl, PlaygroundLifecycleGetStateInput as jm, PlaygroundLifecycleGetStateOutput as jn, PlaygroundLifecycleListEventsInput as jo, PlaygroundLifecycleListEventsOutput as jp, PlaygroundWebhookGetLastInput as jq, PlaygroundWebhookGetLastOutput as jr, RealtimeArchiveExportInput as js, RealtimeArchiveExportOutput as jt, RealtimeArchiveExportStatusInput as ju, RealtimeArchiveExportStatusOutput as jv, RealtimeArchiveGetInput as jw, RealtimeArchiveGetOutput as jx, RealtimeGrantCreateInput as jy, RealtimeGrantCreateOutput as jz, BrainClickupConnectionsListInput as k, SupportStatusUpdateOutput as k$, RealtimePublicAccessStatusInput as k0, RealtimePublicAccessStatusOutput as k1, RealtimeStatusGetInput as k2, RealtimeStatusGetOutput as k3, RealtimeTokensCreateInput as k4, RealtimeTokensCreateOutput as k5, RealtimeWebhookCreateInput as k6, RealtimeWebhookCreateOutput as k7, RealtimeWebhookDeleteInput as k8, RealtimeWebhookDeleteOutput as k9, SupportMessageCreateInput as kA, SupportMessageCreateOutput as kB, SupportMessageListInput as kC, SupportMessageListOutput as kD, SupportResponseEscalateInput as kE, SupportResponseEscalateOutput as kF, SupportResponseGetInput as kG, SupportResponseGetOutput as kH, SupportResponseListInput as kI, SupportResponseListOutput as kJ, SupportRuleCreateInput as kK, SupportRuleCreateOutput as kL, SupportRuleDeleteInput as kM, SupportRuleDeleteOutput as kN, SupportRuleGetInput as kO, SupportRuleGetOutput as kP, SupportRuleListInput as kQ, SupportRuleListOutput as kR, SupportRuleUpdateInput as kS, SupportRuleUpdateOutput as kT, SupportStatusArchiveInput as kU, SupportStatusArchiveOutput as kV, SupportStatusCreateInput as kW, SupportStatusCreateOutput as kX, SupportStatusListInput as kY, SupportStatusListOutput as kZ, SupportStatusUpdateInput as k_, RealtimeWebhookDeliveriesListInput as ka, RealtimeWebhookDeliveriesListOutput as kb, RealtimeWebhookGetInput as kc, RealtimeWebhookGetOutput as kd, RealtimeWebhookListInput as ke, RealtimeWebhookListOutput as kf, RealtimeWebhookSecretRotateInput as kg, RealtimeWebhookSecretRotateOutput as kh, RealtimeWebhookUpdateInput as ki, RealtimeWebhookUpdateOutput as kj, SupportAgentCreateInput as kk, SupportAgentCreateOutput as kl, SupportAgentGetInput as km, SupportAgentGetOutput as kn, SupportAgentListInput as ko, SupportAgentListOutput as kp, SupportAgentUpdateInput as kq, SupportAgentUpdateOutput as kr, SupportAttachmentCreateInput as ks, SupportAttachmentCreateOutput as kt, SupportAttachmentFinalizeInput as ku, SupportAttachmentFinalizeOutput as kv, SupportLabelCreateInput as kw, SupportLabelCreateOutput as kx, SupportLabelListInput as ky, SupportLabelListOutput as kz, BrainClickupConnectionsListOutput as l, TrackingGoogleadsConversionActionsOutput as l$, SupportSurveyArchiveInput as l0, SupportSurveyArchiveOutput as l1, SupportSurveyCreateInput as l2, SupportSurveyCreateOutput as l3, SupportSurveyGetInput as l4, SupportSurveyGetOutput as l5, SupportSurveyListInput as l6, SupportSurveyListOutput as l7, SupportSurveyPublishInput as l8, SupportSurveyPublishOutput as l9, SupportWebhookListInput as lA, SupportWebhookListOutput as lB, SupportWebhookRedeliverInput as lC, SupportWebhookRedeliverOutput as lD, SupportWebhookRotateSecretInput as lE, SupportWebhookRotateSecretOutput as lF, SupportWebhookUpdateInput as lG, SupportWebhookUpdateOutput as lH, TrackingDomainsCreateInput as lI, TrackingDomainsCreateOutput as lJ, TrackingDomainsDeleteInput as lK, TrackingDomainsDeleteOutput as lL, TrackingDomainsGetInput as lM, TrackingDomainsGetOutput as lN, TrackingDomainsListInput as lO, TrackingDomainsListOutput as lP, TrackingDomainsVerifyInput as lQ, TrackingDomainsVerifyOutput as lR, TrackingEventNamesArchiveInput as lS, TrackingEventNamesArchiveOutput as lT, TrackingEventNamesListInput as lU, TrackingEventNamesListOutput as lV, TrackingEventNamesUnarchiveInput as lW, TrackingEventNamesUnarchiveOutput as lX, TrackingGoogleadsConnectionStatusInput as lY, TrackingGoogleadsConnectionStatusOutput as lZ, TrackingGoogleadsConversionActionsInput as l_, SupportSurveyStatsInput as la, SupportSurveyStatsOutput as lb, SupportSurveyUnpublishInput as lc, SupportSurveyUnpublishOutput as ld, SupportSurveyUpdateInput as le, SupportSurveyUpdateOutput as lf, SupportThreadAssignInput as lg, SupportThreadAssignOutput as lh, SupportThreadCreateInput as li, SupportThreadCreateOutput as lj, SupportThreadGetInput as lk, SupportThreadGetOutput as ll, SupportThreadListInput as lm, SupportThreadListOutput as ln, SupportThreadStatusSetInput as lo, SupportThreadStatusSetOutput as lp, SupportThreadUpdateInput as lq, SupportThreadUpdateOutput as lr, SupportWebhookCreateInput as ls, SupportWebhookCreateOutput as lt, SupportWebhookDeleteInput as lu, SupportWebhookDeleteOutput as lv, SupportWebhookDeliveriesListInput as lw, SupportWebhookDeliveriesListOutput as lx, SupportWebhookGetInput as ly, SupportWebhookGetOutput as lz, BrainClickupListsListInput as m, UsersConfigUpsertOutput as m$, TrackingGoogleadsFeedbackConfigGetInput as m0, TrackingGoogleadsFeedbackConfigGetOutput as m1, TrackingGoogleadsFeedbackConfigSetInput as m2, TrackingGoogleadsFeedbackConfigSetOutput as m3, TrackingGoogleadsFeedbackRunInput as m4, TrackingGoogleadsFeedbackRunOutput as m5, TrackingGoogleadsFeedbackStatusInput as m6, TrackingGoogleadsFeedbackStatusOutput as m7, TrackingGoogleadsFeedbackUploadsInput as m8, TrackingGoogleadsFeedbackUploadsOutput as m9, TrackingProfilesExportInput as mA, TrackingProfilesExportOutput as mB, TrackingProfilesGetInput as mC, TrackingProfilesGetOutput as mD, TrackingProfilesListInput as mE, TrackingProfilesListOutput as mF, TrackingReportsAttributedJourneyInput as mG, TrackingReportsAttributedJourneyOutput as mH, TrackingReportsEventVolumeInput as mI, TrackingReportsEventVolumeOutput as mJ, TrackingReportsRevenueBySourceInput as mK, TrackingReportsRevenueBySourceOutput as mL, TrackingReportsSourcePeopleInput as mM, TrackingReportsSourcePeopleOutput as mN, TrackingSnippetsGetInput as mO, TrackingSnippetsGetOutput as mP, UsersApikeysCreateInput as mQ, UsersApikeysCreateOutput as mR, UsersApikeysListInput as mS, UsersApikeysListOutput as mT, UsersApikeysRevokeInput as mU, UsersApikeysRevokeOutput as mV, UsersAuditListInput as mW, UsersAuditListOutput as mX, UsersConfigGetInput as mY, UsersConfigGetOutput as mZ, UsersConfigUpsertInput as m_, TrackingGoogleadsRoasReportInput as ma, TrackingGoogleadsRoasReportOutput as mb, TrackingGoogleadsSyncNowInput as mc, TrackingGoogleadsSyncNowOutput as md, TrackingGoogleadsTrackingHealthInput as me, TrackingGoogleadsTrackingHealthOutput as mf, TrackingGoogleadsUsVsPlatformInput as mg, TrackingGoogleadsUsVsPlatformOutput as mh, TrackingIdentityHealthInput as mi, TrackingIdentityHealthOutput as mj, TrackingInstallDomainsCreateInput as mk, TrackingInstallDomainsCreateOutput as ml, TrackingInstallDomainsDeleteInput as mm, TrackingInstallDomainsDeleteOutput as mn, TrackingInstallDomainsListInput as mo, TrackingInstallDomainsListOutput as mp, TrackingLinkDomainsCreateInput as mq, TrackingLinkDomainsCreateOutput as mr, TrackingLinkDomainsDeleteInput as ms, TrackingLinkDomainsDeleteOutput as mt, TrackingLinkDomainsListInput as mu, TrackingLinkDomainsListOutput as mv, TrackingLiveEventsListInput as mw, TrackingLiveEventsListOutput as mx, TrackingProfilesDeleteInput as my, TrackingProfilesDeleteOutput as mz, BrainClickupListsListOutput as n, UsersWebhooksDeliveriesListOutput as n$, UsersFactorsListInput as n0, UsersFactorsListOutput as n1, UsersFactorsResetInput as n2, UsersFactorsResetOutput as n3, UsersKeysListInput as n4, UsersKeysListOutput as n5, UsersKeysRevokeInput as n6, UsersKeysRevokeOutput as n7, UsersKeysRotateInput as n8, UsersKeysRotateOutput as n9, UsersUsersImportInput as nA, UsersUsersImportOutput as nB, UsersUsersInviteInput as nC, UsersUsersInviteOutput as nD, UsersUsersListInput as nE, UsersUsersListOutput as nF, UsersUsersSetPrimaryIdentifierInput as nG, UsersUsersSetPrimaryIdentifierOutput as nH, UsersUsersUnbanInput as nI, UsersUsersUnbanOutput as nJ, UsersUsersUpdateInput as nK, UsersUsersUpdateOutput as nL, UsersWaitlistEraseInput as nM, UsersWaitlistEraseOutput as nN, UsersWaitlistFunnelInput as nO, UsersWaitlistFunnelOutput as nP, UsersWaitlistImportInput as nQ, UsersWaitlistImportOutput as nR, UsersWaitlistInviteInput as nS, UsersWaitlistInviteOutput as nT, UsersWaitlistListInput as nU, UsersWaitlistListOutput as nV, UsersWebhooksCreateInput as nW, UsersWebhooksCreateOutput as nX, UsersWebhooksDeleteInput as nY, UsersWebhooksDeleteOutput as nZ, UsersWebhooksDeliveriesListInput as n_, UsersOpsRetentionGetInput as na, UsersOpsRetentionGetOutput as nb, UsersOpsSloGetInput as nc, UsersOpsSloGetOutput as nd, UsersSessionsGetInput as ne, UsersSessionsGetOutput as nf, UsersSessionsImpersonateInput as ng, UsersSessionsImpersonateOutput as nh, UsersSessionsListInput as ni, UsersSessionsListOutput as nj, UsersSessionsRevokeInput as nk, UsersSessionsRevokeOutput as nl, UsersStatsGetInput as nm, UsersStatsGetOutput as nn, UsersUsersBanInput as no, UsersUsersBanOutput as np, UsersUsersCreateInput as nq, UsersUsersCreateOutput as nr, UsersUsersDeleteInput as ns, UsersUsersDeleteOutput as nt, UsersUsersEraseInput as nu, UsersUsersEraseOutput as nv, UsersUsersExportInput as nw, UsersUsersExportOutput as nx, UsersUsersGetInput as ny, UsersUsersGetOutput as nz, BrainClickupSpacesListInput as o, UsersWebhooksGetInput as o0, UsersWebhooksGetOutput as o1, UsersWebhooksListInput as o2, UsersWebhooksListOutput as o3, UsersWebhooksRotateSecretInput as o4, UsersWebhooksRotateSecretOutput as o5, UsersWebhooksUpdateInput as o6, UsersWebhooksUpdateOutput as o7, WaitlistConfigGetInput as o8, WaitlistConfigGetOutput as o9, WaitlistConfigUpsertInput as oa, WaitlistConfigUpsertOutput as ob, WaitlistEmbedGetInput as oc, WaitlistEmbedGetOutput as od, WaitlistInvitesSendInput as oe, WaitlistInvitesSendOutput as of, WaitlistSignupsEraseInput as og, WaitlistSignupsEraseOutput as oh, WaitlistSignupsFunnelInput as oi, WaitlistSignupsFunnelOutput as oj, WaitlistSignupsListInput as ok, WaitlistSignupsListOutput as ol, 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 };