@lessly/sdk-app 30.2.1 → 30.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/analytics/index.d.cts +1 -1
- package/dist/analytics/index.d.ts +1 -1
- package/dist/brain/index.d.cts +1 -1
- package/dist/brain/index.d.ts +1 -1
- package/dist/{client.gen-QlwjPsPF.d.cts → client.gen-BsUBUFNz.d.cts} +1506 -1
- package/dist/{client.gen-QlwjPsPF.d.ts → client.gen-BsUBUFNz.d.ts} +1506 -1
- package/dist/consent/index.d.cts +1 -1
- package/dist/consent/index.d.ts +1 -1
- package/dist/deployment/index.d.cts +1 -1
- package/dist/deployment/index.d.ts +1 -1
- package/dist/index.cjs +430 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +430 -0
- package/dist/index.js.map +1 -1
- package/dist/mail/index.d.cts +2 -2
- package/dist/mail/index.d.ts +2 -2
- package/dist/organization/index.d.cts +1 -1
- package/dist/organization/index.d.ts +1 -1
- package/dist/playground/index.d.cts +1 -1
- package/dist/playground/index.d.ts +1 -1
- package/dist/realtime/index.d.cts +1 -1
- package/dist/realtime/index.d.ts +1 -1
- package/dist/support/index.cjs +106 -0
- package/dist/support/index.cjs.map +1 -0
- package/dist/support/index.d.cts +84 -0
- package/dist/support/index.d.ts +84 -0
- package/dist/support/index.js +85 -0
- package/dist/support/index.js.map +1 -0
- package/dist/tracking/index.d.cts +1 -1
- package/dist/tracking/index.d.ts +1 -1
- package/dist/users/index.d.cts +1 -1
- package/dist/users/index.d.ts +1 -1
- package/dist/waitlist/index.d.cts +1 -1
- package/dist/waitlist/index.d.ts +1 -1
- package/package.json +7 -2
- package/src/gen/bindings.gen.ts +430 -0
- package/src/gen/client.gen.ts +76 -0
- package/src/gen/manifest.gen.ts +1 -1
- package/src/gen/support/index.ts +3 -0
- package/src/gen/support/queryOptions.gen.ts +131 -0
- package/src/gen/types.gen.ts +1510 -0
|
@@ -14417,6 +14417,1475 @@ interface RealtimeWebhookUpdateOutput {
|
|
|
14417
14417
|
updatedAt: string;
|
|
14418
14418
|
description: (string | null);
|
|
14419
14419
|
}
|
|
14420
|
+
interface SupportAgentCreateInput {
|
|
14421
|
+
/**
|
|
14422
|
+
* Job title shown under the name, e.g. "Support engineer"
|
|
14423
|
+
*/
|
|
14424
|
+
title?: string;
|
|
14425
|
+
/**
|
|
14426
|
+
* Absolute URL of the agent avatar image
|
|
14427
|
+
*/
|
|
14428
|
+
avatarUrl?: string;
|
|
14429
|
+
/**
|
|
14430
|
+
* Name the end user sees next to this agent replies
|
|
14431
|
+
*/
|
|
14432
|
+
displayName: string;
|
|
14433
|
+
/**
|
|
14434
|
+
* Lessly identity to bind this profile to, stored verbatim as an opaque string. It is never resolved, validated against the platform or enriched. Omit it for a bot or a backend profile. At most one agent per product may claim a given Lessly user
|
|
14435
|
+
*/
|
|
14436
|
+
lesslyUserId?: string;
|
|
14437
|
+
}
|
|
14438
|
+
interface SupportAgentCreateOutput {
|
|
14439
|
+
/**
|
|
14440
|
+
* Agent id
|
|
14441
|
+
*/
|
|
14442
|
+
id: string;
|
|
14443
|
+
/**
|
|
14444
|
+
* Job title shown under the name, or null if unset
|
|
14445
|
+
*/
|
|
14446
|
+
title: (string | null);
|
|
14447
|
+
/**
|
|
14448
|
+
* A deactivated agent keeps its history but can no longer be put on a thread
|
|
14449
|
+
*/
|
|
14450
|
+
isActive: boolean;
|
|
14451
|
+
/**
|
|
14452
|
+
* Avatar image URL, or null if unset
|
|
14453
|
+
*/
|
|
14454
|
+
avatarUrl: (string | null);
|
|
14455
|
+
/**
|
|
14456
|
+
* ISO-8601 creation timestamp
|
|
14457
|
+
*/
|
|
14458
|
+
createdAt: string;
|
|
14459
|
+
/**
|
|
14460
|
+
* ISO-8601 last-modification timestamp
|
|
14461
|
+
*/
|
|
14462
|
+
updatedAt: string;
|
|
14463
|
+
/**
|
|
14464
|
+
* Name shown next to the agent replies
|
|
14465
|
+
*/
|
|
14466
|
+
displayName: string;
|
|
14467
|
+
/**
|
|
14468
|
+
* Bound Lessly identity, stored verbatim and resolved by nobody. Null for an unbound profile — a bot or the client's own backend, which replies just like anyone else
|
|
14469
|
+
*/
|
|
14470
|
+
lesslyUserId: (string | null);
|
|
14471
|
+
}
|
|
14472
|
+
interface SupportAgentGetInput {
|
|
14473
|
+
/**
|
|
14474
|
+
* Agent id
|
|
14475
|
+
*/
|
|
14476
|
+
id: string;
|
|
14477
|
+
}
|
|
14478
|
+
interface SupportAgentGetOutput {
|
|
14479
|
+
/**
|
|
14480
|
+
* Agent id
|
|
14481
|
+
*/
|
|
14482
|
+
id: string;
|
|
14483
|
+
/**
|
|
14484
|
+
* Job title shown under the name, or null if unset
|
|
14485
|
+
*/
|
|
14486
|
+
title: (string | null);
|
|
14487
|
+
/**
|
|
14488
|
+
* A deactivated agent keeps its history but can no longer be put on a thread
|
|
14489
|
+
*/
|
|
14490
|
+
isActive: boolean;
|
|
14491
|
+
/**
|
|
14492
|
+
* Avatar image URL, or null if unset
|
|
14493
|
+
*/
|
|
14494
|
+
avatarUrl: (string | null);
|
|
14495
|
+
/**
|
|
14496
|
+
* ISO-8601 creation timestamp
|
|
14497
|
+
*/
|
|
14498
|
+
createdAt: string;
|
|
14499
|
+
/**
|
|
14500
|
+
* ISO-8601 last-modification timestamp
|
|
14501
|
+
*/
|
|
14502
|
+
updatedAt: string;
|
|
14503
|
+
/**
|
|
14504
|
+
* Name shown next to the agent replies
|
|
14505
|
+
*/
|
|
14506
|
+
displayName: string;
|
|
14507
|
+
/**
|
|
14508
|
+
* Bound Lessly identity, stored verbatim and resolved by nobody. Null for an unbound profile — a bot or the client's own backend, which replies just like anyone else
|
|
14509
|
+
*/
|
|
14510
|
+
lesslyUserId: (string | null);
|
|
14511
|
+
}
|
|
14512
|
+
interface SupportAgentListInput {
|
|
14513
|
+
/**
|
|
14514
|
+
* Also return deactivated agents (default false)
|
|
14515
|
+
*/
|
|
14516
|
+
includeInactive?: boolean;
|
|
14517
|
+
}
|
|
14518
|
+
interface SupportAgentListOutput {
|
|
14519
|
+
/**
|
|
14520
|
+
* The product support agents, by display name
|
|
14521
|
+
*/
|
|
14522
|
+
agents: {
|
|
14523
|
+
/**
|
|
14524
|
+
* Agent id
|
|
14525
|
+
*/
|
|
14526
|
+
id: string;
|
|
14527
|
+
/**
|
|
14528
|
+
* Job title shown under the name, or null if unset
|
|
14529
|
+
*/
|
|
14530
|
+
title: (string | null);
|
|
14531
|
+
/**
|
|
14532
|
+
* A deactivated agent keeps its history but can no longer be put on a thread
|
|
14533
|
+
*/
|
|
14534
|
+
isActive: boolean;
|
|
14535
|
+
/**
|
|
14536
|
+
* Avatar image URL, or null if unset
|
|
14537
|
+
*/
|
|
14538
|
+
avatarUrl: (string | null);
|
|
14539
|
+
/**
|
|
14540
|
+
* ISO-8601 creation timestamp
|
|
14541
|
+
*/
|
|
14542
|
+
createdAt: string;
|
|
14543
|
+
/**
|
|
14544
|
+
* ISO-8601 last-modification timestamp
|
|
14545
|
+
*/
|
|
14546
|
+
updatedAt: string;
|
|
14547
|
+
/**
|
|
14548
|
+
* Name shown next to the agent replies
|
|
14549
|
+
*/
|
|
14550
|
+
displayName: string;
|
|
14551
|
+
/**
|
|
14552
|
+
* Bound Lessly identity, stored verbatim and resolved by nobody. Null for an unbound profile — a bot or the client's own backend, which replies just like anyone else
|
|
14553
|
+
*/
|
|
14554
|
+
lesslyUserId: (string | null);
|
|
14555
|
+
}[];
|
|
14556
|
+
}
|
|
14557
|
+
interface SupportAgentUpdateInput {
|
|
14558
|
+
/**
|
|
14559
|
+
* Agent id
|
|
14560
|
+
*/
|
|
14561
|
+
id: string;
|
|
14562
|
+
/**
|
|
14563
|
+
* New job title, or null to clear it
|
|
14564
|
+
*/
|
|
14565
|
+
title?: (string | null);
|
|
14566
|
+
/**
|
|
14567
|
+
* Deactivate or reactivate. A deactivated agent keeps every message it wrote and every thread it already sits on, but cannot be assigned to another one
|
|
14568
|
+
*/
|
|
14569
|
+
isActive?: boolean;
|
|
14570
|
+
/**
|
|
14571
|
+
* New avatar URL, or null to clear it
|
|
14572
|
+
*/
|
|
14573
|
+
avatarUrl?: (string | null);
|
|
14574
|
+
/**
|
|
14575
|
+
* Name the end user sees next to this agent replies
|
|
14576
|
+
*/
|
|
14577
|
+
displayName?: string;
|
|
14578
|
+
/**
|
|
14579
|
+
* Lessly identity to bind, or null to unbind. Stored verbatim, resolved by nobody
|
|
14580
|
+
*/
|
|
14581
|
+
lesslyUserId?: (string | null);
|
|
14582
|
+
}
|
|
14583
|
+
interface SupportAgentUpdateOutput {
|
|
14584
|
+
/**
|
|
14585
|
+
* Agent id
|
|
14586
|
+
*/
|
|
14587
|
+
id: string;
|
|
14588
|
+
/**
|
|
14589
|
+
* Job title shown under the name, or null if unset
|
|
14590
|
+
*/
|
|
14591
|
+
title: (string | null);
|
|
14592
|
+
/**
|
|
14593
|
+
* A deactivated agent keeps its history but can no longer be put on a thread
|
|
14594
|
+
*/
|
|
14595
|
+
isActive: boolean;
|
|
14596
|
+
/**
|
|
14597
|
+
* Avatar image URL, or null if unset
|
|
14598
|
+
*/
|
|
14599
|
+
avatarUrl: (string | null);
|
|
14600
|
+
/**
|
|
14601
|
+
* ISO-8601 creation timestamp
|
|
14602
|
+
*/
|
|
14603
|
+
createdAt: string;
|
|
14604
|
+
/**
|
|
14605
|
+
* ISO-8601 last-modification timestamp
|
|
14606
|
+
*/
|
|
14607
|
+
updatedAt: string;
|
|
14608
|
+
/**
|
|
14609
|
+
* Name shown next to the agent replies
|
|
14610
|
+
*/
|
|
14611
|
+
displayName: string;
|
|
14612
|
+
/**
|
|
14613
|
+
* Bound Lessly identity, stored verbatim and resolved by nobody. Null for an unbound profile — a bot or the client's own backend, which replies just like anyone else
|
|
14614
|
+
*/
|
|
14615
|
+
lesslyUserId: (string | null);
|
|
14616
|
+
}
|
|
14617
|
+
interface SupportAttachmentCreateInput {
|
|
14618
|
+
/**
|
|
14619
|
+
* Display name of the file, e.g. "invoice.pdf". Only the base name is used for the storage key; any directory part is discarded
|
|
14620
|
+
*/
|
|
14621
|
+
fileName: string;
|
|
14622
|
+
/**
|
|
14623
|
+
* Thread the file belongs to. An attachment is created against a thread first and claimed by one of its messages later, when that message is posted
|
|
14624
|
+
*/
|
|
14625
|
+
threadId: string;
|
|
14626
|
+
/**
|
|
14627
|
+
* Size of the file in bytes, at most 26214400. Declared up front so an oversized upload is refused before a URL is issued; finalize checks the real size again
|
|
14628
|
+
*/
|
|
14629
|
+
sizeBytes: number;
|
|
14630
|
+
/**
|
|
14631
|
+
* MIME type of the file. The upload URL is signed for exactly this type, so the PUT must send the same Content-Type header or storage rejects it
|
|
14632
|
+
*/
|
|
14633
|
+
contentType: string;
|
|
14634
|
+
}
|
|
14635
|
+
interface SupportAttachmentCreateOutput {
|
|
14636
|
+
/**
|
|
14637
|
+
* Attachment id
|
|
14638
|
+
*/
|
|
14639
|
+
id: string;
|
|
14640
|
+
/**
|
|
14641
|
+
* pending: the row exists and an upload URL was issued, but no bytes have been confirmed. uploaded: finalize saw the object in storage. Only uploaded attachments can be attached to a message or downloaded
|
|
14642
|
+
*/
|
|
14643
|
+
status: ("pending" | "uploaded");
|
|
14644
|
+
/**
|
|
14645
|
+
* Display name of the file
|
|
14646
|
+
*/
|
|
14647
|
+
fileName: string;
|
|
14648
|
+
/**
|
|
14649
|
+
* Thread this attachment belongs to
|
|
14650
|
+
*/
|
|
14651
|
+
threadId: string;
|
|
14652
|
+
/**
|
|
14653
|
+
* ISO-8601 creation timestamp
|
|
14654
|
+
*/
|
|
14655
|
+
createdAt: string;
|
|
14656
|
+
/**
|
|
14657
|
+
* The message that carries this attachment, or null while nothing claims it yet
|
|
14658
|
+
*/
|
|
14659
|
+
messageId: (string | null);
|
|
14660
|
+
/**
|
|
14661
|
+
* Size in bytes: what the caller declared while the attachment is pending, what storage reported once it is uploaded
|
|
14662
|
+
*/
|
|
14663
|
+
sizeBytes: number;
|
|
14664
|
+
/**
|
|
14665
|
+
* Short-lived signed URL. PUT the file bytes here with the same Content-Type, then call support_attachment_finalize. The URL is a bearer credential for this one object
|
|
14666
|
+
*/
|
|
14667
|
+
uploadUrl: string;
|
|
14668
|
+
/**
|
|
14669
|
+
* ISO-8601 timestamp of the confirmed upload, or null while pending
|
|
14670
|
+
*/
|
|
14671
|
+
uploadedAt: (string | null);
|
|
14672
|
+
/**
|
|
14673
|
+
* MIME type declared when the attachment was created
|
|
14674
|
+
*/
|
|
14675
|
+
contentType: string;
|
|
14676
|
+
/**
|
|
14677
|
+
* ISO-8601 moment the upload URL stops working
|
|
14678
|
+
*/
|
|
14679
|
+
uploadExpiresAt: string;
|
|
14680
|
+
}
|
|
14681
|
+
interface SupportAttachmentFinalizeInput {
|
|
14682
|
+
/**
|
|
14683
|
+
* The attachment whose upload should be confirmed, as returned by the create call
|
|
14684
|
+
*/
|
|
14685
|
+
attachmentId: string;
|
|
14686
|
+
}
|
|
14687
|
+
interface SupportAttachmentFinalizeOutput {
|
|
14688
|
+
/**
|
|
14689
|
+
* Attachment id
|
|
14690
|
+
*/
|
|
14691
|
+
id: string;
|
|
14692
|
+
/**
|
|
14693
|
+
* pending: the row exists and an upload URL was issued, but no bytes have been confirmed. uploaded: finalize saw the object in storage. Only uploaded attachments can be attached to a message or downloaded
|
|
14694
|
+
*/
|
|
14695
|
+
status: ("pending" | "uploaded");
|
|
14696
|
+
/**
|
|
14697
|
+
* Display name of the file
|
|
14698
|
+
*/
|
|
14699
|
+
fileName: string;
|
|
14700
|
+
/**
|
|
14701
|
+
* Thread this attachment belongs to
|
|
14702
|
+
*/
|
|
14703
|
+
threadId: string;
|
|
14704
|
+
/**
|
|
14705
|
+
* ISO-8601 creation timestamp
|
|
14706
|
+
*/
|
|
14707
|
+
createdAt: string;
|
|
14708
|
+
/**
|
|
14709
|
+
* The message that carries this attachment, or null while nothing claims it yet
|
|
14710
|
+
*/
|
|
14711
|
+
messageId: (string | null);
|
|
14712
|
+
/**
|
|
14713
|
+
* Size in bytes: what the caller declared while the attachment is pending, what storage reported once it is uploaded
|
|
14714
|
+
*/
|
|
14715
|
+
sizeBytes: number;
|
|
14716
|
+
/**
|
|
14717
|
+
* ISO-8601 timestamp of the confirmed upload, or null while pending
|
|
14718
|
+
*/
|
|
14719
|
+
uploadedAt: (string | null);
|
|
14720
|
+
/**
|
|
14721
|
+
* MIME type declared when the attachment was created
|
|
14722
|
+
*/
|
|
14723
|
+
contentType: string;
|
|
14724
|
+
/**
|
|
14725
|
+
* Short-lived signed URL to read the uploaded file
|
|
14726
|
+
*/
|
|
14727
|
+
downloadUrl: string;
|
|
14728
|
+
}
|
|
14729
|
+
interface SupportLabelCreateInput {
|
|
14730
|
+
/**
|
|
14731
|
+
* Label name as the customer wants to see it. Unique within the product
|
|
14732
|
+
*/
|
|
14733
|
+
name: string;
|
|
14734
|
+
/**
|
|
14735
|
+
* Optional display colour as a six-digit hex string, e.g. #2563eb
|
|
14736
|
+
*/
|
|
14737
|
+
color?: string;
|
|
14738
|
+
}
|
|
14739
|
+
interface SupportLabelCreateOutput {
|
|
14740
|
+
/**
|
|
14741
|
+
* Label id
|
|
14742
|
+
*/
|
|
14743
|
+
id: string;
|
|
14744
|
+
/**
|
|
14745
|
+
* Label name, unique within the product
|
|
14746
|
+
*/
|
|
14747
|
+
name: string;
|
|
14748
|
+
/**
|
|
14749
|
+
* Display colour as a hex string, or null if uncoloured
|
|
14750
|
+
*/
|
|
14751
|
+
color: (string | null);
|
|
14752
|
+
/**
|
|
14753
|
+
* ISO-8601 creation timestamp
|
|
14754
|
+
*/
|
|
14755
|
+
createdAt: string;
|
|
14756
|
+
}
|
|
14757
|
+
interface SupportLabelListInput {
|
|
14758
|
+
}
|
|
14759
|
+
interface SupportLabelListOutput {
|
|
14760
|
+
/**
|
|
14761
|
+
* The product label dictionary, by name
|
|
14762
|
+
*/
|
|
14763
|
+
labels: {
|
|
14764
|
+
/**
|
|
14765
|
+
* Label id
|
|
14766
|
+
*/
|
|
14767
|
+
id: string;
|
|
14768
|
+
/**
|
|
14769
|
+
* Label name, unique within the product
|
|
14770
|
+
*/
|
|
14771
|
+
name: string;
|
|
14772
|
+
/**
|
|
14773
|
+
* Display colour as a hex string, or null if uncoloured
|
|
14774
|
+
*/
|
|
14775
|
+
color: (string | null);
|
|
14776
|
+
/**
|
|
14777
|
+
* ISO-8601 creation timestamp
|
|
14778
|
+
*/
|
|
14779
|
+
createdAt: string;
|
|
14780
|
+
}[];
|
|
14781
|
+
}
|
|
14782
|
+
interface SupportMessageCreateInput {
|
|
14783
|
+
/**
|
|
14784
|
+
* The message text, stored verbatim
|
|
14785
|
+
*/
|
|
14786
|
+
body: string;
|
|
14787
|
+
/**
|
|
14788
|
+
* Id of the thread this message belongs to
|
|
14789
|
+
*/
|
|
14790
|
+
threadId: string;
|
|
14791
|
+
/**
|
|
14792
|
+
* inbound: written by the external end user. outbound: written by support, going out to them
|
|
14793
|
+
*/
|
|
14794
|
+
direction: ("inbound" | "outbound");
|
|
14795
|
+
/**
|
|
14796
|
+
* Defaults to public when omitted. Internal notes are never shown to the end user
|
|
14797
|
+
*/
|
|
14798
|
+
visibility?: ("public" | "internal");
|
|
14799
|
+
/**
|
|
14800
|
+
* Files this message carries, created with support_attachment_create and confirmed with support_attachment_finalize beforehand. Each must be an uploaded attachment of the same thread that no other message already carries; otherwise the whole message is refused. At most 10 per message
|
|
14801
|
+
*
|
|
14802
|
+
* @maxItems 10
|
|
14803
|
+
*/
|
|
14804
|
+
attachmentIds?: [] | [string] | [string, string] | [string, string, string] | [string, string, string, string] | [string, string, string, string, string] | [string, string, string, string, string, string] | [string, string, string, string, string, string, string] | [string, string, string, string, string, string, string, string] | [string, string, string, string, string, string, string, string, string] | [string, string, string, string, string, string, string, string, string, string];
|
|
14805
|
+
/**
|
|
14806
|
+
* The support agent of this product who wrote the message. Set this exactly when the message comes from inside the support contour; leave authorExternalId empty. An agent of another product is reported as not found
|
|
14807
|
+
*/
|
|
14808
|
+
authorAgentId?: string;
|
|
14809
|
+
/**
|
|
14810
|
+
* Opaque identifier of the external end user in the client's own user base, stored verbatim. Set this exactly when the message comes from outside; leave authorAgentId empty
|
|
14811
|
+
*/
|
|
14812
|
+
authorExternalId?: string;
|
|
14813
|
+
}
|
|
14814
|
+
interface SupportMessageCreateOutput {
|
|
14815
|
+
/**
|
|
14816
|
+
* Message id
|
|
14817
|
+
*/
|
|
14818
|
+
id: string;
|
|
14819
|
+
/**
|
|
14820
|
+
* The message text, byte-identical to what was stored
|
|
14821
|
+
*/
|
|
14822
|
+
body: string;
|
|
14823
|
+
/**
|
|
14824
|
+
* Thread this message belongs to
|
|
14825
|
+
*/
|
|
14826
|
+
threadId: string;
|
|
14827
|
+
/**
|
|
14828
|
+
* ISO-8601 creation timestamp
|
|
14829
|
+
*/
|
|
14830
|
+
createdAt: string;
|
|
14831
|
+
/**
|
|
14832
|
+
* inbound: written by the external end user. outbound: written by support, going out to them
|
|
14833
|
+
*/
|
|
14834
|
+
direction: ("inbound" | "outbound");
|
|
14835
|
+
/**
|
|
14836
|
+
* public: part of the conversation the external end user sees. internal: a note between agents that never leaves the support contour
|
|
14837
|
+
*/
|
|
14838
|
+
visibility: ("public" | "internal");
|
|
14839
|
+
/**
|
|
14840
|
+
* Files this message carries, each with a freshly signed download URL. Empty when there are none. Attachments whose upload was never confirmed are never listed here
|
|
14841
|
+
*/
|
|
14842
|
+
attachments: {
|
|
14843
|
+
/**
|
|
14844
|
+
* Attachment id
|
|
14845
|
+
*/
|
|
14846
|
+
id: string;
|
|
14847
|
+
/**
|
|
14848
|
+
* Display name of the file
|
|
14849
|
+
*/
|
|
14850
|
+
fileName: string;
|
|
14851
|
+
/**
|
|
14852
|
+
* ISO-8601 timestamp of when the attachment was created
|
|
14853
|
+
*/
|
|
14854
|
+
createdAt: string;
|
|
14855
|
+
/**
|
|
14856
|
+
* Size in bytes as reported by storage
|
|
14857
|
+
*/
|
|
14858
|
+
sizeBytes: number;
|
|
14859
|
+
/**
|
|
14860
|
+
* MIME type of the file
|
|
14861
|
+
*/
|
|
14862
|
+
contentType: string;
|
|
14863
|
+
/**
|
|
14864
|
+
* Short-lived signed URL to read the file. Re-read the message to get a fresh one
|
|
14865
|
+
*/
|
|
14866
|
+
downloadUrl: string;
|
|
14867
|
+
}[];
|
|
14868
|
+
/**
|
|
14869
|
+
* The agent author, or null when the external end user wrote the message
|
|
14870
|
+
*/
|
|
14871
|
+
authorAgentId: (string | null);
|
|
14872
|
+
/**
|
|
14873
|
+
* The external author, or null when an agent wrote the message
|
|
14874
|
+
*/
|
|
14875
|
+
authorExternalId: (string | null);
|
|
14876
|
+
}
|
|
14877
|
+
interface SupportMessageListInput {
|
|
14878
|
+
/**
|
|
14879
|
+
* Page size, 1..100 (default 50)
|
|
14880
|
+
*/
|
|
14881
|
+
limit?: number;
|
|
14882
|
+
/**
|
|
14883
|
+
* Number of messages to skip
|
|
14884
|
+
*/
|
|
14885
|
+
offset?: number;
|
|
14886
|
+
/**
|
|
14887
|
+
* Thread whose messages to list. Messages exist only inside a thread
|
|
14888
|
+
*/
|
|
14889
|
+
threadId: string;
|
|
14890
|
+
/**
|
|
14891
|
+
* Only messages in this direction
|
|
14892
|
+
*/
|
|
14893
|
+
direction?: ("inbound" | "outbound");
|
|
14894
|
+
/**
|
|
14895
|
+
* Only messages with this visibility. Omit to get both public and internal
|
|
14896
|
+
*/
|
|
14897
|
+
visibility?: ("public" | "internal");
|
|
14898
|
+
}
|
|
14899
|
+
interface SupportMessageListOutput {
|
|
14900
|
+
/**
|
|
14901
|
+
* Page size that was applied
|
|
14902
|
+
*/
|
|
14903
|
+
limit: number;
|
|
14904
|
+
/**
|
|
14905
|
+
* Offset that was applied
|
|
14906
|
+
*/
|
|
14907
|
+
offset: number;
|
|
14908
|
+
/**
|
|
14909
|
+
* The requested page of messages, oldest first — the conversation reads forward
|
|
14910
|
+
*/
|
|
14911
|
+
messages: {
|
|
14912
|
+
/**
|
|
14913
|
+
* Message id
|
|
14914
|
+
*/
|
|
14915
|
+
id: string;
|
|
14916
|
+
/**
|
|
14917
|
+
* The message text, byte-identical to what was stored
|
|
14918
|
+
*/
|
|
14919
|
+
body: string;
|
|
14920
|
+
/**
|
|
14921
|
+
* Thread this message belongs to
|
|
14922
|
+
*/
|
|
14923
|
+
threadId: string;
|
|
14924
|
+
/**
|
|
14925
|
+
* ISO-8601 creation timestamp
|
|
14926
|
+
*/
|
|
14927
|
+
createdAt: string;
|
|
14928
|
+
/**
|
|
14929
|
+
* inbound: written by the external end user. outbound: written by support, going out to them
|
|
14930
|
+
*/
|
|
14931
|
+
direction: ("inbound" | "outbound");
|
|
14932
|
+
/**
|
|
14933
|
+
* public: part of the conversation the external end user sees. internal: a note between agents that never leaves the support contour
|
|
14934
|
+
*/
|
|
14935
|
+
visibility: ("public" | "internal");
|
|
14936
|
+
/**
|
|
14937
|
+
* Files this message carries, each with a freshly signed download URL. Empty when there are none. Attachments whose upload was never confirmed are never listed here
|
|
14938
|
+
*/
|
|
14939
|
+
attachments: {
|
|
14940
|
+
/**
|
|
14941
|
+
* Attachment id
|
|
14942
|
+
*/
|
|
14943
|
+
id: string;
|
|
14944
|
+
/**
|
|
14945
|
+
* Display name of the file
|
|
14946
|
+
*/
|
|
14947
|
+
fileName: string;
|
|
14948
|
+
/**
|
|
14949
|
+
* ISO-8601 timestamp of when the attachment was created
|
|
14950
|
+
*/
|
|
14951
|
+
createdAt: string;
|
|
14952
|
+
/**
|
|
14953
|
+
* Size in bytes as reported by storage
|
|
14954
|
+
*/
|
|
14955
|
+
sizeBytes: number;
|
|
14956
|
+
/**
|
|
14957
|
+
* MIME type of the file
|
|
14958
|
+
*/
|
|
14959
|
+
contentType: string;
|
|
14960
|
+
/**
|
|
14961
|
+
* Short-lived signed URL to read the file. Re-read the message to get a fresh one
|
|
14962
|
+
*/
|
|
14963
|
+
downloadUrl: string;
|
|
14964
|
+
}[];
|
|
14965
|
+
/**
|
|
14966
|
+
* The agent author, or null when the external end user wrote the message
|
|
14967
|
+
*/
|
|
14968
|
+
authorAgentId: (string | null);
|
|
14969
|
+
/**
|
|
14970
|
+
* The external author, or null when an agent wrote the message
|
|
14971
|
+
*/
|
|
14972
|
+
authorExternalId: (string | null);
|
|
14973
|
+
}[];
|
|
14974
|
+
}
|
|
14975
|
+
interface SupportStatusArchiveInput {
|
|
14976
|
+
/**
|
|
14977
|
+
* Status id
|
|
14978
|
+
*/
|
|
14979
|
+
id: string;
|
|
14980
|
+
/**
|
|
14981
|
+
* Live status every thread on the archived status moves to, in the same transaction
|
|
14982
|
+
*/
|
|
14983
|
+
targetStatusId: string;
|
|
14984
|
+
}
|
|
14985
|
+
interface SupportStatusArchiveOutput {
|
|
14986
|
+
/**
|
|
14987
|
+
* Status id
|
|
14988
|
+
*/
|
|
14989
|
+
id: string;
|
|
14990
|
+
/**
|
|
14991
|
+
* Status name, unique within the product
|
|
14992
|
+
*/
|
|
14993
|
+
name: string;
|
|
14994
|
+
/**
|
|
14995
|
+
* Display colour as a hex string
|
|
14996
|
+
*/
|
|
14997
|
+
color: string;
|
|
14998
|
+
/**
|
|
14999
|
+
* Sort order within the status dictionary
|
|
15000
|
+
*/
|
|
15001
|
+
order: number;
|
|
15002
|
+
/**
|
|
15003
|
+
* Archived statuses stay readable but are not offered as targets
|
|
15004
|
+
*/
|
|
15005
|
+
archived: boolean;
|
|
15006
|
+
/**
|
|
15007
|
+
* Lifecycle bucket the status belongs to
|
|
15008
|
+
*/
|
|
15009
|
+
category: ("open" | "pending" | "resolved" | "closed");
|
|
15010
|
+
}
|
|
15011
|
+
interface SupportStatusCreateInput {
|
|
15012
|
+
/**
|
|
15013
|
+
* Status name as the customer wants to see it. Unique within the product
|
|
15014
|
+
*/
|
|
15015
|
+
name: string;
|
|
15016
|
+
/**
|
|
15017
|
+
* Display colour as a six-digit hex string, e.g. #2563eb
|
|
15018
|
+
*/
|
|
15019
|
+
color: string;
|
|
15020
|
+
/**
|
|
15021
|
+
* Sort order within the status dictionary, lowest first
|
|
15022
|
+
*/
|
|
15023
|
+
order: number;
|
|
15024
|
+
/**
|
|
15025
|
+
* Lifecycle bucket the status belongs to. Automation and reporting read the category, never the name — so it cannot be changed once threads sit on the status
|
|
15026
|
+
*/
|
|
15027
|
+
category: ("open" | "pending" | "resolved" | "closed");
|
|
15028
|
+
}
|
|
15029
|
+
interface SupportStatusCreateOutput {
|
|
15030
|
+
/**
|
|
15031
|
+
* Status id
|
|
15032
|
+
*/
|
|
15033
|
+
id: string;
|
|
15034
|
+
/**
|
|
15035
|
+
* Status name, unique within the product
|
|
15036
|
+
*/
|
|
15037
|
+
name: string;
|
|
15038
|
+
/**
|
|
15039
|
+
* Display colour as a hex string
|
|
15040
|
+
*/
|
|
15041
|
+
color: string;
|
|
15042
|
+
/**
|
|
15043
|
+
* Sort order within the status dictionary
|
|
15044
|
+
*/
|
|
15045
|
+
order: number;
|
|
15046
|
+
/**
|
|
15047
|
+
* Archived statuses stay readable but are not offered as targets
|
|
15048
|
+
*/
|
|
15049
|
+
archived: boolean;
|
|
15050
|
+
/**
|
|
15051
|
+
* Lifecycle bucket the status belongs to
|
|
15052
|
+
*/
|
|
15053
|
+
category: ("open" | "pending" | "resolved" | "closed");
|
|
15054
|
+
}
|
|
15055
|
+
interface SupportStatusListInput {
|
|
15056
|
+
/**
|
|
15057
|
+
* Also return archived statuses (default false)
|
|
15058
|
+
*/
|
|
15059
|
+
includeArchived?: boolean;
|
|
15060
|
+
}
|
|
15061
|
+
interface SupportStatusListOutput {
|
|
15062
|
+
/**
|
|
15063
|
+
* The product status dictionary, in display order
|
|
15064
|
+
*/
|
|
15065
|
+
statuses: {
|
|
15066
|
+
/**
|
|
15067
|
+
* Status id
|
|
15068
|
+
*/
|
|
15069
|
+
id: string;
|
|
15070
|
+
/**
|
|
15071
|
+
* Status name, unique within the product
|
|
15072
|
+
*/
|
|
15073
|
+
name: string;
|
|
15074
|
+
/**
|
|
15075
|
+
* Display colour as a hex string
|
|
15076
|
+
*/
|
|
15077
|
+
color: string;
|
|
15078
|
+
/**
|
|
15079
|
+
* Sort order within the status dictionary
|
|
15080
|
+
*/
|
|
15081
|
+
order: number;
|
|
15082
|
+
/**
|
|
15083
|
+
* Archived statuses stay readable but are not offered as targets
|
|
15084
|
+
*/
|
|
15085
|
+
archived: boolean;
|
|
15086
|
+
/**
|
|
15087
|
+
* Lifecycle bucket the status belongs to
|
|
15088
|
+
*/
|
|
15089
|
+
category: ("open" | "pending" | "resolved" | "closed");
|
|
15090
|
+
}[];
|
|
15091
|
+
}
|
|
15092
|
+
interface SupportStatusUpdateInput {
|
|
15093
|
+
/**
|
|
15094
|
+
* Status id
|
|
15095
|
+
*/
|
|
15096
|
+
id: string;
|
|
15097
|
+
/**
|
|
15098
|
+
* Status name as the customer wants to see it. Unique within the product
|
|
15099
|
+
*/
|
|
15100
|
+
name?: string;
|
|
15101
|
+
/**
|
|
15102
|
+
* Display colour as a six-digit hex string, e.g. #2563eb
|
|
15103
|
+
*/
|
|
15104
|
+
color?: string;
|
|
15105
|
+
/**
|
|
15106
|
+
* Sort order within the status dictionary, lowest first
|
|
15107
|
+
*/
|
|
15108
|
+
order?: number;
|
|
15109
|
+
/**
|
|
15110
|
+
* New lifecycle bucket. Refused while any thread references the status
|
|
15111
|
+
*/
|
|
15112
|
+
category?: ("open" | "pending" | "resolved" | "closed");
|
|
15113
|
+
}
|
|
15114
|
+
interface SupportStatusUpdateOutput {
|
|
15115
|
+
/**
|
|
15116
|
+
* Status id
|
|
15117
|
+
*/
|
|
15118
|
+
id: string;
|
|
15119
|
+
/**
|
|
15120
|
+
* Status name, unique within the product
|
|
15121
|
+
*/
|
|
15122
|
+
name: string;
|
|
15123
|
+
/**
|
|
15124
|
+
* Display colour as a hex string
|
|
15125
|
+
*/
|
|
15126
|
+
color: string;
|
|
15127
|
+
/**
|
|
15128
|
+
* Sort order within the status dictionary
|
|
15129
|
+
*/
|
|
15130
|
+
order: number;
|
|
15131
|
+
/**
|
|
15132
|
+
* Archived statuses stay readable but are not offered as targets
|
|
15133
|
+
*/
|
|
15134
|
+
archived: boolean;
|
|
15135
|
+
/**
|
|
15136
|
+
* Lifecycle bucket the status belongs to
|
|
15137
|
+
*/
|
|
15138
|
+
category: ("open" | "pending" | "resolved" | "closed");
|
|
15139
|
+
}
|
|
15140
|
+
interface SupportThreadAssignInput {
|
|
15141
|
+
/**
|
|
15142
|
+
* Thread id
|
|
15143
|
+
*/
|
|
15144
|
+
id: string;
|
|
15145
|
+
/**
|
|
15146
|
+
* Support agent of this product to put on the thread, or null to return it to the unassigned queue. An agent of another product is reported as not found
|
|
15147
|
+
*/
|
|
15148
|
+
agentId: (string | null);
|
|
15149
|
+
}
|
|
15150
|
+
interface SupportThreadAssignOutput {
|
|
15151
|
+
/**
|
|
15152
|
+
* Thread id
|
|
15153
|
+
*/
|
|
15154
|
+
id: string;
|
|
15155
|
+
/**
|
|
15156
|
+
* ticket: the end user wants something fixed. feedback: unsolicited input
|
|
15157
|
+
*/
|
|
15158
|
+
type: ("ticket" | "feedback");
|
|
15159
|
+
/**
|
|
15160
|
+
* Thread subject
|
|
15161
|
+
*/
|
|
15162
|
+
title: string;
|
|
15163
|
+
/**
|
|
15164
|
+
* Every label on the thread, by name
|
|
15165
|
+
*/
|
|
15166
|
+
labels: {
|
|
15167
|
+
/**
|
|
15168
|
+
* Label id
|
|
15169
|
+
*/
|
|
15170
|
+
id: string;
|
|
15171
|
+
/**
|
|
15172
|
+
* Label name, unique within the product
|
|
15173
|
+
*/
|
|
15174
|
+
name: string;
|
|
15175
|
+
/**
|
|
15176
|
+
* Display colour as a hex string, or null if uncoloured
|
|
15177
|
+
*/
|
|
15178
|
+
color: (string | null);
|
|
15179
|
+
/**
|
|
15180
|
+
* ISO-8601 creation timestamp
|
|
15181
|
+
*/
|
|
15182
|
+
createdAt: string;
|
|
15183
|
+
}[];
|
|
15184
|
+
/**
|
|
15185
|
+
* The status itself, joined in at read time
|
|
15186
|
+
*/
|
|
15187
|
+
status: {
|
|
15188
|
+
/**
|
|
15189
|
+
* Status id
|
|
15190
|
+
*/
|
|
15191
|
+
id: string;
|
|
15192
|
+
/**
|
|
15193
|
+
* Status name, unique within the product
|
|
15194
|
+
*/
|
|
15195
|
+
name: string;
|
|
15196
|
+
/**
|
|
15197
|
+
* Display colour as a hex string
|
|
15198
|
+
*/
|
|
15199
|
+
color: string;
|
|
15200
|
+
/**
|
|
15201
|
+
* Sort order within the status dictionary
|
|
15202
|
+
*/
|
|
15203
|
+
order: number;
|
|
15204
|
+
/**
|
|
15205
|
+
* Archived statuses stay readable but are not offered as targets
|
|
15206
|
+
*/
|
|
15207
|
+
archived: boolean;
|
|
15208
|
+
/**
|
|
15209
|
+
* Lifecycle bucket the status belongs to
|
|
15210
|
+
*/
|
|
15211
|
+
category: ("open" | "pending" | "resolved" | "closed");
|
|
15212
|
+
};
|
|
15213
|
+
/**
|
|
15214
|
+
* Free-form client-owned JSON
|
|
15215
|
+
*/
|
|
15216
|
+
metadata: {
|
|
15217
|
+
[k: string]: unknown;
|
|
15218
|
+
};
|
|
15219
|
+
/**
|
|
15220
|
+
* Thread priority
|
|
15221
|
+
*/
|
|
15222
|
+
priority: ("low" | "normal" | "high" | "urgent");
|
|
15223
|
+
/**
|
|
15224
|
+
* Id of the status the thread sits on
|
|
15225
|
+
*/
|
|
15226
|
+
statusId: string;
|
|
15227
|
+
/**
|
|
15228
|
+
* ISO-8601 creation timestamp
|
|
15229
|
+
*/
|
|
15230
|
+
createdAt: string;
|
|
15231
|
+
/**
|
|
15232
|
+
* ISO-8601 last-modification timestamp
|
|
15233
|
+
*/
|
|
15234
|
+
updatedAt: string;
|
|
15235
|
+
/**
|
|
15236
|
+
* ISO-8601 timestamp of the last reply, or null while there are none
|
|
15237
|
+
*/
|
|
15238
|
+
lastReplyAt: (string | null);
|
|
15239
|
+
/**
|
|
15240
|
+
* Display name for the external author, if given
|
|
15241
|
+
*/
|
|
15242
|
+
authorDisplay: (string | null);
|
|
15243
|
+
/**
|
|
15244
|
+
* Assigned agent, or null while unassigned
|
|
15245
|
+
*/
|
|
15246
|
+
assignedAgentId: (string | null);
|
|
15247
|
+
/**
|
|
15248
|
+
* The external author, byte-identical to what was stored
|
|
15249
|
+
*/
|
|
15250
|
+
authorExternalId: string;
|
|
15251
|
+
}
|
|
15252
|
+
interface SupportThreadCreateInput {
|
|
15253
|
+
/**
|
|
15254
|
+
* ticket: the end user wants something fixed. feedback: unsolicited input
|
|
15255
|
+
*/
|
|
15256
|
+
type: ("ticket" | "feedback");
|
|
15257
|
+
/**
|
|
15258
|
+
* Short human-readable subject of the thread
|
|
15259
|
+
*/
|
|
15260
|
+
title: string;
|
|
15261
|
+
/**
|
|
15262
|
+
* Labels to put on the new thread
|
|
15263
|
+
*
|
|
15264
|
+
* @maxItems 50
|
|
15265
|
+
*/
|
|
15266
|
+
labelIds?: string[];
|
|
15267
|
+
/**
|
|
15268
|
+
* Free-form client-owned JSON attached to the thread
|
|
15269
|
+
*/
|
|
15270
|
+
metadata?: {
|
|
15271
|
+
[k: string]: unknown;
|
|
15272
|
+
};
|
|
15273
|
+
/**
|
|
15274
|
+
* Optional display name for the external author, as the client already knows it
|
|
15275
|
+
*/
|
|
15276
|
+
authorDisplay?: string;
|
|
15277
|
+
/**
|
|
15278
|
+
* Opaque identifier of the external end user in the client's own user base. Stored verbatim: never resolved, normalised or enriched, and it is not a Lessly identity
|
|
15279
|
+
*/
|
|
15280
|
+
authorExternalId: string;
|
|
15281
|
+
}
|
|
15282
|
+
interface SupportThreadCreateOutput {
|
|
15283
|
+
/**
|
|
15284
|
+
* Thread id
|
|
15285
|
+
*/
|
|
15286
|
+
id: string;
|
|
15287
|
+
/**
|
|
15288
|
+
* ticket: the end user wants something fixed. feedback: unsolicited input
|
|
15289
|
+
*/
|
|
15290
|
+
type: ("ticket" | "feedback");
|
|
15291
|
+
/**
|
|
15292
|
+
* Thread subject
|
|
15293
|
+
*/
|
|
15294
|
+
title: string;
|
|
15295
|
+
/**
|
|
15296
|
+
* Every label on the thread, by name
|
|
15297
|
+
*/
|
|
15298
|
+
labels: {
|
|
15299
|
+
/**
|
|
15300
|
+
* Label id
|
|
15301
|
+
*/
|
|
15302
|
+
id: string;
|
|
15303
|
+
/**
|
|
15304
|
+
* Label name, unique within the product
|
|
15305
|
+
*/
|
|
15306
|
+
name: string;
|
|
15307
|
+
/**
|
|
15308
|
+
* Display colour as a hex string, or null if uncoloured
|
|
15309
|
+
*/
|
|
15310
|
+
color: (string | null);
|
|
15311
|
+
/**
|
|
15312
|
+
* ISO-8601 creation timestamp
|
|
15313
|
+
*/
|
|
15314
|
+
createdAt: string;
|
|
15315
|
+
}[];
|
|
15316
|
+
/**
|
|
15317
|
+
* The status itself, joined in at read time
|
|
15318
|
+
*/
|
|
15319
|
+
status: {
|
|
15320
|
+
/**
|
|
15321
|
+
* Status id
|
|
15322
|
+
*/
|
|
15323
|
+
id: string;
|
|
15324
|
+
/**
|
|
15325
|
+
* Status name, unique within the product
|
|
15326
|
+
*/
|
|
15327
|
+
name: string;
|
|
15328
|
+
/**
|
|
15329
|
+
* Display colour as a hex string
|
|
15330
|
+
*/
|
|
15331
|
+
color: string;
|
|
15332
|
+
/**
|
|
15333
|
+
* Sort order within the status dictionary
|
|
15334
|
+
*/
|
|
15335
|
+
order: number;
|
|
15336
|
+
/**
|
|
15337
|
+
* Archived statuses stay readable but are not offered as targets
|
|
15338
|
+
*/
|
|
15339
|
+
archived: boolean;
|
|
15340
|
+
/**
|
|
15341
|
+
* Lifecycle bucket the status belongs to
|
|
15342
|
+
*/
|
|
15343
|
+
category: ("open" | "pending" | "resolved" | "closed");
|
|
15344
|
+
};
|
|
15345
|
+
/**
|
|
15346
|
+
* Free-form client-owned JSON
|
|
15347
|
+
*/
|
|
15348
|
+
metadata: {
|
|
15349
|
+
[k: string]: unknown;
|
|
15350
|
+
};
|
|
15351
|
+
/**
|
|
15352
|
+
* Thread priority
|
|
15353
|
+
*/
|
|
15354
|
+
priority: ("low" | "normal" | "high" | "urgent");
|
|
15355
|
+
/**
|
|
15356
|
+
* Id of the status the thread sits on
|
|
15357
|
+
*/
|
|
15358
|
+
statusId: string;
|
|
15359
|
+
/**
|
|
15360
|
+
* ISO-8601 creation timestamp
|
|
15361
|
+
*/
|
|
15362
|
+
createdAt: string;
|
|
15363
|
+
/**
|
|
15364
|
+
* ISO-8601 last-modification timestamp
|
|
15365
|
+
*/
|
|
15366
|
+
updatedAt: string;
|
|
15367
|
+
/**
|
|
15368
|
+
* ISO-8601 timestamp of the last reply, or null while there are none
|
|
15369
|
+
*/
|
|
15370
|
+
lastReplyAt: (string | null);
|
|
15371
|
+
/**
|
|
15372
|
+
* Display name for the external author, if given
|
|
15373
|
+
*/
|
|
15374
|
+
authorDisplay: (string | null);
|
|
15375
|
+
/**
|
|
15376
|
+
* Assigned agent, or null while unassigned
|
|
15377
|
+
*/
|
|
15378
|
+
assignedAgentId: (string | null);
|
|
15379
|
+
/**
|
|
15380
|
+
* The external author, byte-identical to what was stored
|
|
15381
|
+
*/
|
|
15382
|
+
authorExternalId: string;
|
|
15383
|
+
}
|
|
15384
|
+
interface SupportThreadGetInput {
|
|
15385
|
+
/**
|
|
15386
|
+
* Thread id
|
|
15387
|
+
*/
|
|
15388
|
+
id: string;
|
|
15389
|
+
}
|
|
15390
|
+
interface SupportThreadGetOutput {
|
|
15391
|
+
/**
|
|
15392
|
+
* Thread id
|
|
15393
|
+
*/
|
|
15394
|
+
id: string;
|
|
15395
|
+
/**
|
|
15396
|
+
* ticket: the end user wants something fixed. feedback: unsolicited input
|
|
15397
|
+
*/
|
|
15398
|
+
type: ("ticket" | "feedback");
|
|
15399
|
+
/**
|
|
15400
|
+
* Thread subject
|
|
15401
|
+
*/
|
|
15402
|
+
title: string;
|
|
15403
|
+
/**
|
|
15404
|
+
* Every label on the thread, by name
|
|
15405
|
+
*/
|
|
15406
|
+
labels: {
|
|
15407
|
+
/**
|
|
15408
|
+
* Label id
|
|
15409
|
+
*/
|
|
15410
|
+
id: string;
|
|
15411
|
+
/**
|
|
15412
|
+
* Label name, unique within the product
|
|
15413
|
+
*/
|
|
15414
|
+
name: string;
|
|
15415
|
+
/**
|
|
15416
|
+
* Display colour as a hex string, or null if uncoloured
|
|
15417
|
+
*/
|
|
15418
|
+
color: (string | null);
|
|
15419
|
+
/**
|
|
15420
|
+
* ISO-8601 creation timestamp
|
|
15421
|
+
*/
|
|
15422
|
+
createdAt: string;
|
|
15423
|
+
}[];
|
|
15424
|
+
/**
|
|
15425
|
+
* The status itself, joined in at read time
|
|
15426
|
+
*/
|
|
15427
|
+
status: {
|
|
15428
|
+
/**
|
|
15429
|
+
* Status id
|
|
15430
|
+
*/
|
|
15431
|
+
id: string;
|
|
15432
|
+
/**
|
|
15433
|
+
* Status name, unique within the product
|
|
15434
|
+
*/
|
|
15435
|
+
name: string;
|
|
15436
|
+
/**
|
|
15437
|
+
* Display colour as a hex string
|
|
15438
|
+
*/
|
|
15439
|
+
color: string;
|
|
15440
|
+
/**
|
|
15441
|
+
* Sort order within the status dictionary
|
|
15442
|
+
*/
|
|
15443
|
+
order: number;
|
|
15444
|
+
/**
|
|
15445
|
+
* Archived statuses stay readable but are not offered as targets
|
|
15446
|
+
*/
|
|
15447
|
+
archived: boolean;
|
|
15448
|
+
/**
|
|
15449
|
+
* Lifecycle bucket the status belongs to
|
|
15450
|
+
*/
|
|
15451
|
+
category: ("open" | "pending" | "resolved" | "closed");
|
|
15452
|
+
};
|
|
15453
|
+
/**
|
|
15454
|
+
* Free-form client-owned JSON
|
|
15455
|
+
*/
|
|
15456
|
+
metadata: {
|
|
15457
|
+
[k: string]: unknown;
|
|
15458
|
+
};
|
|
15459
|
+
/**
|
|
15460
|
+
* Thread priority
|
|
15461
|
+
*/
|
|
15462
|
+
priority: ("low" | "normal" | "high" | "urgent");
|
|
15463
|
+
/**
|
|
15464
|
+
* Id of the status the thread sits on
|
|
15465
|
+
*/
|
|
15466
|
+
statusId: string;
|
|
15467
|
+
/**
|
|
15468
|
+
* ISO-8601 creation timestamp
|
|
15469
|
+
*/
|
|
15470
|
+
createdAt: string;
|
|
15471
|
+
/**
|
|
15472
|
+
* ISO-8601 last-modification timestamp
|
|
15473
|
+
*/
|
|
15474
|
+
updatedAt: string;
|
|
15475
|
+
/**
|
|
15476
|
+
* ISO-8601 timestamp of the last reply, or null while there are none
|
|
15477
|
+
*/
|
|
15478
|
+
lastReplyAt: (string | null);
|
|
15479
|
+
/**
|
|
15480
|
+
* Display name for the external author, if given
|
|
15481
|
+
*/
|
|
15482
|
+
authorDisplay: (string | null);
|
|
15483
|
+
/**
|
|
15484
|
+
* Assigned agent, or null while unassigned
|
|
15485
|
+
*/
|
|
15486
|
+
assignedAgentId: (string | null);
|
|
15487
|
+
/**
|
|
15488
|
+
* The external author, byte-identical to what was stored
|
|
15489
|
+
*/
|
|
15490
|
+
authorExternalId: string;
|
|
15491
|
+
}
|
|
15492
|
+
interface SupportThreadListInput {
|
|
15493
|
+
/**
|
|
15494
|
+
* Only threads of this type
|
|
15495
|
+
*/
|
|
15496
|
+
type?: ("ticket" | "feedback");
|
|
15497
|
+
/**
|
|
15498
|
+
* Page size, 1..100 (default 25)
|
|
15499
|
+
*/
|
|
15500
|
+
limit?: number;
|
|
15501
|
+
/**
|
|
15502
|
+
* Number of threads to skip
|
|
15503
|
+
*/
|
|
15504
|
+
offset?: number;
|
|
15505
|
+
/**
|
|
15506
|
+
* Only threads whose status belongs to this category. Resolved through a join on the status dictionary — the category is never stored on the thread
|
|
15507
|
+
*/
|
|
15508
|
+
category?: ("open" | "pending" | "resolved" | "closed");
|
|
15509
|
+
/**
|
|
15510
|
+
* Only threads carrying ALL of these labels. Every other filter here narrows the result and so does this one: each additional label id makes the answer smaller, never bigger
|
|
15511
|
+
*/
|
|
15512
|
+
labelIds?: (string | string[]);
|
|
15513
|
+
/**
|
|
15514
|
+
* Only threads sitting on this exact status
|
|
15515
|
+
*/
|
|
15516
|
+
statusId?: string;
|
|
15517
|
+
/**
|
|
15518
|
+
* Only threads created at or before this ISO-8601 timestamp
|
|
15519
|
+
*/
|
|
15520
|
+
createdTo?: string;
|
|
15521
|
+
/**
|
|
15522
|
+
* Only threads created at or after this ISO-8601 timestamp
|
|
15523
|
+
*/
|
|
15524
|
+
createdFrom?: string;
|
|
15525
|
+
/**
|
|
15526
|
+
* Only threads assigned to this agent
|
|
15527
|
+
*/
|
|
15528
|
+
assignedAgentId?: string;
|
|
15529
|
+
/**
|
|
15530
|
+
* Only threads opened by this external author, matched verbatim
|
|
15531
|
+
*/
|
|
15532
|
+
authorExternalId?: string;
|
|
15533
|
+
}
|
|
15534
|
+
interface SupportThreadListOutput {
|
|
15535
|
+
/**
|
|
15536
|
+
* Page size that was applied
|
|
15537
|
+
*/
|
|
15538
|
+
limit: number;
|
|
15539
|
+
/**
|
|
15540
|
+
* Offset that was applied
|
|
15541
|
+
*/
|
|
15542
|
+
offset: number;
|
|
15543
|
+
/**
|
|
15544
|
+
* The requested page of threads, newest first
|
|
15545
|
+
*/
|
|
15546
|
+
threads: {
|
|
15547
|
+
/**
|
|
15548
|
+
* Thread id
|
|
15549
|
+
*/
|
|
15550
|
+
id: string;
|
|
15551
|
+
/**
|
|
15552
|
+
* ticket: the end user wants something fixed. feedback: unsolicited input
|
|
15553
|
+
*/
|
|
15554
|
+
type: ("ticket" | "feedback");
|
|
15555
|
+
/**
|
|
15556
|
+
* Thread subject
|
|
15557
|
+
*/
|
|
15558
|
+
title: string;
|
|
15559
|
+
/**
|
|
15560
|
+
* Every label on the thread, by name
|
|
15561
|
+
*/
|
|
15562
|
+
labels: {
|
|
15563
|
+
/**
|
|
15564
|
+
* Label id
|
|
15565
|
+
*/
|
|
15566
|
+
id: string;
|
|
15567
|
+
/**
|
|
15568
|
+
* Label name, unique within the product
|
|
15569
|
+
*/
|
|
15570
|
+
name: string;
|
|
15571
|
+
/**
|
|
15572
|
+
* Display colour as a hex string, or null if uncoloured
|
|
15573
|
+
*/
|
|
15574
|
+
color: (string | null);
|
|
15575
|
+
/**
|
|
15576
|
+
* ISO-8601 creation timestamp
|
|
15577
|
+
*/
|
|
15578
|
+
createdAt: string;
|
|
15579
|
+
}[];
|
|
15580
|
+
/**
|
|
15581
|
+
* The status itself, joined in at read time
|
|
15582
|
+
*/
|
|
15583
|
+
status: {
|
|
15584
|
+
/**
|
|
15585
|
+
* Status id
|
|
15586
|
+
*/
|
|
15587
|
+
id: string;
|
|
15588
|
+
/**
|
|
15589
|
+
* Status name, unique within the product
|
|
15590
|
+
*/
|
|
15591
|
+
name: string;
|
|
15592
|
+
/**
|
|
15593
|
+
* Display colour as a hex string
|
|
15594
|
+
*/
|
|
15595
|
+
color: string;
|
|
15596
|
+
/**
|
|
15597
|
+
* Sort order within the status dictionary
|
|
15598
|
+
*/
|
|
15599
|
+
order: number;
|
|
15600
|
+
/**
|
|
15601
|
+
* Archived statuses stay readable but are not offered as targets
|
|
15602
|
+
*/
|
|
15603
|
+
archived: boolean;
|
|
15604
|
+
/**
|
|
15605
|
+
* Lifecycle bucket the status belongs to
|
|
15606
|
+
*/
|
|
15607
|
+
category: ("open" | "pending" | "resolved" | "closed");
|
|
15608
|
+
};
|
|
15609
|
+
/**
|
|
15610
|
+
* Free-form client-owned JSON
|
|
15611
|
+
*/
|
|
15612
|
+
metadata: {
|
|
15613
|
+
[k: string]: unknown;
|
|
15614
|
+
};
|
|
15615
|
+
/**
|
|
15616
|
+
* Thread priority
|
|
15617
|
+
*/
|
|
15618
|
+
priority: ("low" | "normal" | "high" | "urgent");
|
|
15619
|
+
/**
|
|
15620
|
+
* Id of the status the thread sits on
|
|
15621
|
+
*/
|
|
15622
|
+
statusId: string;
|
|
15623
|
+
/**
|
|
15624
|
+
* ISO-8601 creation timestamp
|
|
15625
|
+
*/
|
|
15626
|
+
createdAt: string;
|
|
15627
|
+
/**
|
|
15628
|
+
* ISO-8601 last-modification timestamp
|
|
15629
|
+
*/
|
|
15630
|
+
updatedAt: string;
|
|
15631
|
+
/**
|
|
15632
|
+
* ISO-8601 timestamp of the last reply, or null while there are none
|
|
15633
|
+
*/
|
|
15634
|
+
lastReplyAt: (string | null);
|
|
15635
|
+
/**
|
|
15636
|
+
* Display name for the external author, if given
|
|
15637
|
+
*/
|
|
15638
|
+
authorDisplay: (string | null);
|
|
15639
|
+
/**
|
|
15640
|
+
* Assigned agent, or null while unassigned
|
|
15641
|
+
*/
|
|
15642
|
+
assignedAgentId: (string | null);
|
|
15643
|
+
/**
|
|
15644
|
+
* The external author, byte-identical to what was stored
|
|
15645
|
+
*/
|
|
15646
|
+
authorExternalId: string;
|
|
15647
|
+
}[];
|
|
15648
|
+
}
|
|
15649
|
+
interface SupportThreadStatusSetInput {
|
|
15650
|
+
/**
|
|
15651
|
+
* Thread id
|
|
15652
|
+
*/
|
|
15653
|
+
id: string;
|
|
15654
|
+
/**
|
|
15655
|
+
* Destination status of this product. Any status may follow any other — v1 has no transition rules. An archived status is refused
|
|
15656
|
+
*/
|
|
15657
|
+
statusId: string;
|
|
15658
|
+
}
|
|
15659
|
+
interface SupportThreadStatusSetOutput {
|
|
15660
|
+
/**
|
|
15661
|
+
* Thread id
|
|
15662
|
+
*/
|
|
15663
|
+
id: string;
|
|
15664
|
+
/**
|
|
15665
|
+
* ticket: the end user wants something fixed. feedback: unsolicited input
|
|
15666
|
+
*/
|
|
15667
|
+
type: ("ticket" | "feedback");
|
|
15668
|
+
/**
|
|
15669
|
+
* Thread subject
|
|
15670
|
+
*/
|
|
15671
|
+
title: string;
|
|
15672
|
+
/**
|
|
15673
|
+
* Every label on the thread, by name
|
|
15674
|
+
*/
|
|
15675
|
+
labels: {
|
|
15676
|
+
/**
|
|
15677
|
+
* Label id
|
|
15678
|
+
*/
|
|
15679
|
+
id: string;
|
|
15680
|
+
/**
|
|
15681
|
+
* Label name, unique within the product
|
|
15682
|
+
*/
|
|
15683
|
+
name: string;
|
|
15684
|
+
/**
|
|
15685
|
+
* Display colour as a hex string, or null if uncoloured
|
|
15686
|
+
*/
|
|
15687
|
+
color: (string | null);
|
|
15688
|
+
/**
|
|
15689
|
+
* ISO-8601 creation timestamp
|
|
15690
|
+
*/
|
|
15691
|
+
createdAt: string;
|
|
15692
|
+
}[];
|
|
15693
|
+
/**
|
|
15694
|
+
* The status itself, joined in at read time
|
|
15695
|
+
*/
|
|
15696
|
+
status: {
|
|
15697
|
+
/**
|
|
15698
|
+
* Status id
|
|
15699
|
+
*/
|
|
15700
|
+
id: string;
|
|
15701
|
+
/**
|
|
15702
|
+
* Status name, unique within the product
|
|
15703
|
+
*/
|
|
15704
|
+
name: string;
|
|
15705
|
+
/**
|
|
15706
|
+
* Display colour as a hex string
|
|
15707
|
+
*/
|
|
15708
|
+
color: string;
|
|
15709
|
+
/**
|
|
15710
|
+
* Sort order within the status dictionary
|
|
15711
|
+
*/
|
|
15712
|
+
order: number;
|
|
15713
|
+
/**
|
|
15714
|
+
* Archived statuses stay readable but are not offered as targets
|
|
15715
|
+
*/
|
|
15716
|
+
archived: boolean;
|
|
15717
|
+
/**
|
|
15718
|
+
* Lifecycle bucket the status belongs to
|
|
15719
|
+
*/
|
|
15720
|
+
category: ("open" | "pending" | "resolved" | "closed");
|
|
15721
|
+
};
|
|
15722
|
+
/**
|
|
15723
|
+
* Free-form client-owned JSON
|
|
15724
|
+
*/
|
|
15725
|
+
metadata: {
|
|
15726
|
+
[k: string]: unknown;
|
|
15727
|
+
};
|
|
15728
|
+
/**
|
|
15729
|
+
* Thread priority
|
|
15730
|
+
*/
|
|
15731
|
+
priority: ("low" | "normal" | "high" | "urgent");
|
|
15732
|
+
/**
|
|
15733
|
+
* Id of the status the thread sits on
|
|
15734
|
+
*/
|
|
15735
|
+
statusId: string;
|
|
15736
|
+
/**
|
|
15737
|
+
* ISO-8601 creation timestamp
|
|
15738
|
+
*/
|
|
15739
|
+
createdAt: string;
|
|
15740
|
+
/**
|
|
15741
|
+
* ISO-8601 last-modification timestamp
|
|
15742
|
+
*/
|
|
15743
|
+
updatedAt: string;
|
|
15744
|
+
/**
|
|
15745
|
+
* ISO-8601 timestamp of the last reply, or null while there are none
|
|
15746
|
+
*/
|
|
15747
|
+
lastReplyAt: (string | null);
|
|
15748
|
+
/**
|
|
15749
|
+
* Display name for the external author, if given
|
|
15750
|
+
*/
|
|
15751
|
+
authorDisplay: (string | null);
|
|
15752
|
+
/**
|
|
15753
|
+
* Assigned agent, or null while unassigned
|
|
15754
|
+
*/
|
|
15755
|
+
assignedAgentId: (string | null);
|
|
15756
|
+
/**
|
|
15757
|
+
* The external author, byte-identical to what was stored
|
|
15758
|
+
*/
|
|
15759
|
+
authorExternalId: string;
|
|
15760
|
+
}
|
|
15761
|
+
interface SupportThreadUpdateInput {
|
|
15762
|
+
/**
|
|
15763
|
+
* Thread id
|
|
15764
|
+
*/
|
|
15765
|
+
id: string;
|
|
15766
|
+
/**
|
|
15767
|
+
* New subject of the thread
|
|
15768
|
+
*/
|
|
15769
|
+
title?: string;
|
|
15770
|
+
/**
|
|
15771
|
+
* The complete new label set. Pass an empty array to remove every label
|
|
15772
|
+
*
|
|
15773
|
+
* @maxItems 50
|
|
15774
|
+
*/
|
|
15775
|
+
labelIds?: string[];
|
|
15776
|
+
/**
|
|
15777
|
+
* Replaces the whole client-owned metadata object
|
|
15778
|
+
*/
|
|
15779
|
+
metadata?: {
|
|
15780
|
+
[k: string]: unknown;
|
|
15781
|
+
};
|
|
15782
|
+
/**
|
|
15783
|
+
* New priority
|
|
15784
|
+
*/
|
|
15785
|
+
priority?: ("low" | "normal" | "high" | "urgent");
|
|
15786
|
+
}
|
|
15787
|
+
interface SupportThreadUpdateOutput {
|
|
15788
|
+
/**
|
|
15789
|
+
* Thread id
|
|
15790
|
+
*/
|
|
15791
|
+
id: string;
|
|
15792
|
+
/**
|
|
15793
|
+
* ticket: the end user wants something fixed. feedback: unsolicited input
|
|
15794
|
+
*/
|
|
15795
|
+
type: ("ticket" | "feedback");
|
|
15796
|
+
/**
|
|
15797
|
+
* Thread subject
|
|
15798
|
+
*/
|
|
15799
|
+
title: string;
|
|
15800
|
+
/**
|
|
15801
|
+
* Every label on the thread, by name
|
|
15802
|
+
*/
|
|
15803
|
+
labels: {
|
|
15804
|
+
/**
|
|
15805
|
+
* Label id
|
|
15806
|
+
*/
|
|
15807
|
+
id: string;
|
|
15808
|
+
/**
|
|
15809
|
+
* Label name, unique within the product
|
|
15810
|
+
*/
|
|
15811
|
+
name: string;
|
|
15812
|
+
/**
|
|
15813
|
+
* Display colour as a hex string, or null if uncoloured
|
|
15814
|
+
*/
|
|
15815
|
+
color: (string | null);
|
|
15816
|
+
/**
|
|
15817
|
+
* ISO-8601 creation timestamp
|
|
15818
|
+
*/
|
|
15819
|
+
createdAt: string;
|
|
15820
|
+
}[];
|
|
15821
|
+
/**
|
|
15822
|
+
* The status itself, joined in at read time
|
|
15823
|
+
*/
|
|
15824
|
+
status: {
|
|
15825
|
+
/**
|
|
15826
|
+
* Status id
|
|
15827
|
+
*/
|
|
15828
|
+
id: string;
|
|
15829
|
+
/**
|
|
15830
|
+
* Status name, unique within the product
|
|
15831
|
+
*/
|
|
15832
|
+
name: string;
|
|
15833
|
+
/**
|
|
15834
|
+
* Display colour as a hex string
|
|
15835
|
+
*/
|
|
15836
|
+
color: string;
|
|
15837
|
+
/**
|
|
15838
|
+
* Sort order within the status dictionary
|
|
15839
|
+
*/
|
|
15840
|
+
order: number;
|
|
15841
|
+
/**
|
|
15842
|
+
* Archived statuses stay readable but are not offered as targets
|
|
15843
|
+
*/
|
|
15844
|
+
archived: boolean;
|
|
15845
|
+
/**
|
|
15846
|
+
* Lifecycle bucket the status belongs to
|
|
15847
|
+
*/
|
|
15848
|
+
category: ("open" | "pending" | "resolved" | "closed");
|
|
15849
|
+
};
|
|
15850
|
+
/**
|
|
15851
|
+
* Free-form client-owned JSON
|
|
15852
|
+
*/
|
|
15853
|
+
metadata: {
|
|
15854
|
+
[k: string]: unknown;
|
|
15855
|
+
};
|
|
15856
|
+
/**
|
|
15857
|
+
* Thread priority
|
|
15858
|
+
*/
|
|
15859
|
+
priority: ("low" | "normal" | "high" | "urgent");
|
|
15860
|
+
/**
|
|
15861
|
+
* Id of the status the thread sits on
|
|
15862
|
+
*/
|
|
15863
|
+
statusId: string;
|
|
15864
|
+
/**
|
|
15865
|
+
* ISO-8601 creation timestamp
|
|
15866
|
+
*/
|
|
15867
|
+
createdAt: string;
|
|
15868
|
+
/**
|
|
15869
|
+
* ISO-8601 last-modification timestamp
|
|
15870
|
+
*/
|
|
15871
|
+
updatedAt: string;
|
|
15872
|
+
/**
|
|
15873
|
+
* ISO-8601 timestamp of the last reply, or null while there are none
|
|
15874
|
+
*/
|
|
15875
|
+
lastReplyAt: (string | null);
|
|
15876
|
+
/**
|
|
15877
|
+
* Display name for the external author, if given
|
|
15878
|
+
*/
|
|
15879
|
+
authorDisplay: (string | null);
|
|
15880
|
+
/**
|
|
15881
|
+
* Assigned agent, or null while unassigned
|
|
15882
|
+
*/
|
|
15883
|
+
assignedAgentId: (string | null);
|
|
15884
|
+
/**
|
|
15885
|
+
* The external author, byte-identical to what was stored
|
|
15886
|
+
*/
|
|
15887
|
+
authorExternalId: string;
|
|
15888
|
+
}
|
|
14420
15889
|
interface TrackingDomainsCreateInput {
|
|
14421
15890
|
host?: string;
|
|
14422
15891
|
records?: {
|
|
@@ -18601,6 +20070,42 @@ interface GeneratedClient {
|
|
|
18601
20070
|
rotate(input: RealtimeWebhookSecretRotateInput): Promise<RealtimeWebhookSecretRotateOutput>;
|
|
18602
20071
|
};
|
|
18603
20072
|
};
|
|
20073
|
+
support: {
|
|
20074
|
+
agent: {
|
|
20075
|
+
create(input: SupportAgentCreateInput): Promise<SupportAgentCreateOutput>;
|
|
20076
|
+
get(input: SupportAgentGetInput): Promise<SupportAgentGetOutput>;
|
|
20077
|
+
list(input: SupportAgentListInput): Promise<SupportAgentListOutput>;
|
|
20078
|
+
update(input: SupportAgentUpdateInput): Promise<SupportAgentUpdateOutput>;
|
|
20079
|
+
};
|
|
20080
|
+
attachment: {
|
|
20081
|
+
create(input: SupportAttachmentCreateInput): Promise<SupportAttachmentCreateOutput>;
|
|
20082
|
+
finalize(input: SupportAttachmentFinalizeInput): Promise<SupportAttachmentFinalizeOutput>;
|
|
20083
|
+
};
|
|
20084
|
+
label: {
|
|
20085
|
+
create(input: SupportLabelCreateInput): Promise<SupportLabelCreateOutput>;
|
|
20086
|
+
list(input: SupportLabelListInput): Promise<SupportLabelListOutput>;
|
|
20087
|
+
};
|
|
20088
|
+
message: {
|
|
20089
|
+
create(input: SupportMessageCreateInput): Promise<SupportMessageCreateOutput>;
|
|
20090
|
+
list(input: SupportMessageListInput): Promise<SupportMessageListOutput>;
|
|
20091
|
+
};
|
|
20092
|
+
status: {
|
|
20093
|
+
archive(input: SupportStatusArchiveInput): Promise<SupportStatusArchiveOutput>;
|
|
20094
|
+
create(input: SupportStatusCreateInput): Promise<SupportStatusCreateOutput>;
|
|
20095
|
+
list(input: SupportStatusListInput): Promise<SupportStatusListOutput>;
|
|
20096
|
+
update(input: SupportStatusUpdateInput): Promise<SupportStatusUpdateOutput>;
|
|
20097
|
+
};
|
|
20098
|
+
thread: {
|
|
20099
|
+
assign(input: SupportThreadAssignInput): Promise<SupportThreadAssignOutput>;
|
|
20100
|
+
create(input: SupportThreadCreateInput): Promise<SupportThreadCreateOutput>;
|
|
20101
|
+
get(input: SupportThreadGetInput): Promise<SupportThreadGetOutput>;
|
|
20102
|
+
list(input: SupportThreadListInput): Promise<SupportThreadListOutput>;
|
|
20103
|
+
update(input: SupportThreadUpdateInput): Promise<SupportThreadUpdateOutput>;
|
|
20104
|
+
};
|
|
20105
|
+
'thread-status': {
|
|
20106
|
+
set(input: SupportThreadStatusSetInput): Promise<SupportThreadStatusSetOutput>;
|
|
20107
|
+
};
|
|
20108
|
+
};
|
|
18604
20109
|
tracking: {
|
|
18605
20110
|
domains: {
|
|
18606
20111
|
create(input: TrackingDomainsCreateInput): Promise<TrackingDomainsCreateOutput>;
|
|
@@ -18772,4 +20277,4 @@ interface GeneratedClient {
|
|
|
18772
20277
|
};
|
|
18773
20278
|
}
|
|
18774
20279
|
|
|
18775
|
-
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, OrganizationBillingCapsClearOutput 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, OrganizationAuthMeInput as fU, OrganizationAuthMeOutput as fV, OrganizationBillingBudgetsGetInput as fW, OrganizationBillingBudgetsGetOutput as fX, OrganizationBillingBudgetsSetInput as fY, OrganizationBillingBudgetsSetOutput as fZ, OrganizationBillingCapsClearInput 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, OrganizationMemberListInvitationsOutput as g$, OrganizationBillingCapsSetInput as g0, OrganizationBillingCapsSetOutput as g1, OrganizationBindingsListInput as g2, OrganizationBindingsListOutput as g3, OrganizationClickupInstallInput as g4, OrganizationClickupInstallOutput as g5, OrganizationClickupListInstallationsInput as g6, OrganizationClickupListInstallationsOutput as g7, OrganizationCloudflareInstallInput as g8, OrganizationCloudflareInstallOutput as g9, OrganizationDomainsAddInput as gA, OrganizationDomainsAddOutput as gB, OrganizationDomainsGetInput as gC, OrganizationDomainsGetOutput as gD, OrganizationDomainsListInput as gE, OrganizationDomainsListOutput as gF, OrganizationDomainsRemoveInput as gG, OrganizationDomainsRemoveOutput as gH, OrganizationExtensionsListInstalledInput as gI, OrganizationExtensionsListInstalledOutput as gJ, OrganizationFeedbackSubmitInput as gK, OrganizationFeedbackSubmitOutput as gL, OrganizationGdriveInstallInput as gM, OrganizationGdriveInstallOutput as gN, OrganizationGithubInstallInput as gO, OrganizationGithubInstallOutput as gP, OrganizationGithubListInstallationsInput as gQ, OrganizationGithubListInstallationsOutput as gR, OrganizationGoogleadsInstallInput as gS, OrganizationGoogleadsInstallOutput as gT, OrganizationListInput as gU, OrganizationListOutput as gV, OrganizationMemberAcceptInviteInput as gW, OrganizationMemberAcceptInviteOutput as gX, OrganizationMemberInviteInput as gY, OrganizationMemberInviteOutput as gZ, OrganizationMemberListInvitationsInput as g_, OrganizationConnectorsApproveRequestInput as ga, OrganizationConnectorsApproveRequestOutput as gb, OrganizationConnectorsAttachInput as gc, OrganizationConnectorsAttachOutput as gd, OrganizationConnectorsDeleteInput as ge, OrganizationConnectorsDeleteOutput as gf, OrganizationConnectorsDenyRequestInput as gg, OrganizationConnectorsDenyRequestOutput as gh, OrganizationConnectorsDetachInput as gi, OrganizationConnectorsDetachOutput as gj, OrganizationConnectorsListAttachmentsInput as gk, OrganizationConnectorsListAttachmentsOutput as gl, OrganizationConnectorsListAvailableInput as gm, OrganizationConnectorsListAvailableOutput as gn, OrganizationConnectorsListOrgInput as go, OrganizationConnectorsListOrgOutput as gp, OrganizationConnectorsListInput as gq, OrganizationConnectorsListOutput as gr, OrganizationConnectorsListRequestsInput as gs, OrganizationConnectorsListRequestsOutput as gt, OrganizationConnectorsRemoveInput as gu, OrganizationConnectorsRemoveOutput as gv, OrganizationConnectorsRequestInput as gw, OrganizationConnectorsRequestOutput as gx, OrganizationCreateInput as gy, OrganizationCreateOutput as gz, BrainBackupsListOutput as h, PlaygroundAnalyticsOverviewOutput as h$, OrganizationMemberListProductAccessInput as h0, OrganizationMemberListProductAccessOutput as h1, OrganizationMemberListInput as h2, OrganizationMemberListOutput as h3, OrganizationMemberRemoveInput as h4, OrganizationMemberRemoveOutput as h5, OrganizationMemberRevokeInvitationInput as h6, OrganizationMemberRevokeInvitationOutput as h7, OrganizationMemberSetRoleInput as h8, OrganizationMemberSetRoleOutput as h9, OrganizationProductUpdateInput as hA, OrganizationProductUpdateOutput as hB, OrganizationPublicKeysCreateInput as hC, OrganizationPublicKeysCreateOutput as hD, OrganizationPublicKeysListInput as hE, OrganizationPublicKeysListOutput as hF, OrganizationPublicKeysRevokeInput as hG, OrganizationPublicKeysRevokeOutput as hH, OrganizationPublicKeysUpdateScopeInput as hI, OrganizationPublicKeysUpdateScopeOutput as hJ, OrganizationPublicRoutesListInput as hK, OrganizationPublicRoutesListOutput as hL, OrganizationRolesCreateInput as hM, OrganizationRolesCreateOutput as hN, OrganizationRolesDeleteInput as hO, OrganizationRolesDeleteOutput as hP, OrganizationRolesGetInput as hQ, OrganizationRolesGetOutput as hR, OrganizationRolesListInput as hS, OrganizationRolesListOutput as hT, OrganizationRolesUpdateInput as hU, OrganizationRolesUpdateOutput as hV, OrganizationSecurityMfaEnableInput as hW, OrganizationSecurityMfaEnableOutput as hX, OrganizationSelectInput as hY, OrganizationSelectOutput as hZ, PlaygroundAnalyticsOverviewInput as h_, OrganizationMemberShareProductInput as ha, OrganizationMemberShareProductOutput as hb, OrganizationMemberUnshareProductInput as hc, OrganizationMemberUnshareProductOutput as hd, OrganizationMembersAssignRoleInput as he, OrganizationMembersAssignRoleOutput as hf, OrganizationPermissionCatalogInput as hg, OrganizationPermissionCatalogOutput as hh, OrganizationProductAcceptInvitationInput as hi, OrganizationProductAcceptInvitationOutput as hj, OrganizationProductCreateInput as hk, OrganizationProductCreateOutput as hl, OrganizationProductInviteInput as hm, OrganizationProductInviteOutput as hn, OrganizationProductListInvitationsInput as ho, OrganizationProductListInvitationsOutput as hp, OrganizationProductListMembersInput as hq, OrganizationProductListMembersOutput as hr, OrganizationProductListInput as hs, OrganizationProductListOutput as ht, OrganizationProductListRolesInput as hu, OrganizationProductListRolesOutput as hv, OrganizationProductRevokeInvitationInput as hw, OrganizationProductRevokeInvitationOutput as hx, OrganizationProductSelectInput as hy, OrganizationProductSelectOutput as hz, BrainClickupChannelsListInput as i, RealtimeStatusGetOutput as i$, PlaygroundBillingEntitlementsInput as i0, PlaygroundBillingEntitlementsOutput as i1, PlaygroundBillingRecordUsageInput as i2, PlaygroundBillingRecordUsageOutput as i3, PlaygroundClickupCreateTaskInput as i4, PlaygroundClickupCreateTaskOutput as i5, PlaygroundClickupGetLastWebhookInput as i6, PlaygroundClickupGetLastWebhookOutput as i7, PlaygroundClickupGetOverviewInput as i8, PlaygroundClickupGetOverviewOutput as i9, RealtimeHistoryGetInput as iA, RealtimeHistoryGetOutput as iB, RealtimeMessagesPublishInput as iC, RealtimeMessagesPublishOutput as iD, RealtimeNamespaceCreateInput as iE, RealtimeNamespaceCreateOutput as iF, RealtimeNamespaceDeleteInput as iG, RealtimeNamespaceDeleteOutput as iH, RealtimeNamespaceGetInput as iI, RealtimeNamespaceGetOutput as iJ, RealtimeNamespaceListInput as iK, RealtimeNamespaceListOutput as iL, RealtimeNamespaceUpdateInput as iM, RealtimeNamespaceUpdateOutput as iN, RealtimePresenceEnterInput as iO, RealtimePresenceEnterOutput as iP, RealtimePresenceGetInput as iQ, RealtimePresenceGetOutput as iR, RealtimePresenceLeaveInput as iS, RealtimePresenceLeaveOutput as iT, RealtimePresenceStatsInput as iU, RealtimePresenceStatsOutput as iV, RealtimePresenceUpdateInput as iW, RealtimePresenceUpdateOutput as iX, RealtimePublicAccessStatusInput as iY, RealtimePublicAccessStatusOutput as iZ, RealtimeStatusGetInput as i_, PlaygroundGdriveGetLastChangeInput as ia, PlaygroundGdriveGetLastChangeOutput as ib, PlaygroundGdriveReadFileInput as ic, PlaygroundGdriveReadFileOutput as id, PlaygroundGoogleadsReadCustomerInput as ie, PlaygroundGoogleadsReadCustomerOutput as ig, PlaygroundLifecycleGetStateInput as ih, PlaygroundLifecycleGetStateOutput as ii, PlaygroundLifecycleListEventsInput as ij, PlaygroundLifecycleListEventsOutput as ik, PlaygroundWebhookGetLastInput as il, PlaygroundWebhookGetLastOutput as im, RealtimeArchiveExportInput as io, RealtimeArchiveExportOutput as ip, RealtimeArchiveExportStatusInput as iq, RealtimeArchiveExportStatusOutput as ir, RealtimeArchiveGetInput as is, RealtimeArchiveGetOutput as it, RealtimeGrantCreateInput as iu, RealtimeGrantCreateOutput as iv, RealtimeGrantListInput as iw, RealtimeGrantListOutput as ix, RealtimeGrantRevokeInput as iy, RealtimeGrantRevokeOutput as iz, BrainClickupChannelsListOutput as j, TrackingLinkDomainsCreateOutput as j$, RealtimeTokensCreateInput as j0, RealtimeTokensCreateOutput as j1, RealtimeWebhookCreateInput as j2, RealtimeWebhookCreateOutput as j3, RealtimeWebhookDeleteInput as j4, RealtimeWebhookDeleteOutput as j5, RealtimeWebhookDeliveriesListInput as j6, RealtimeWebhookDeliveriesListOutput as j7, RealtimeWebhookGetInput as j8, RealtimeWebhookGetOutput as j9, TrackingGoogleadsFeedbackConfigGetInput as jA, TrackingGoogleadsFeedbackConfigGetOutput as jB, TrackingGoogleadsFeedbackConfigSetInput as jC, TrackingGoogleadsFeedbackConfigSetOutput as jD, TrackingGoogleadsFeedbackRunInput as jE, TrackingGoogleadsFeedbackRunOutput as jF, TrackingGoogleadsFeedbackStatusInput as jG, TrackingGoogleadsFeedbackStatusOutput as jH, TrackingGoogleadsFeedbackUploadsInput as jI, TrackingGoogleadsFeedbackUploadsOutput as jJ, TrackingGoogleadsRoasReportInput as jK, TrackingGoogleadsRoasReportOutput as jL, TrackingGoogleadsSyncNowInput as jM, TrackingGoogleadsSyncNowOutput as jN, TrackingGoogleadsTrackingHealthInput as jO, TrackingGoogleadsTrackingHealthOutput as jP, TrackingGoogleadsUsVsPlatformInput as jQ, TrackingGoogleadsUsVsPlatformOutput as jR, TrackingIdentityHealthInput as jS, TrackingIdentityHealthOutput as jT, TrackingInstallDomainsCreateInput as jU, TrackingInstallDomainsCreateOutput as jV, TrackingInstallDomainsDeleteInput as jW, TrackingInstallDomainsDeleteOutput as jX, TrackingInstallDomainsListInput as jY, TrackingInstallDomainsListOutput as jZ, TrackingLinkDomainsCreateInput as j_, RealtimeWebhookListInput as ja, RealtimeWebhookListOutput as jb, RealtimeWebhookSecretRotateInput as jc, RealtimeWebhookSecretRotateOutput as jd, RealtimeWebhookUpdateInput as je, RealtimeWebhookUpdateOutput as jf, TrackingDomainsCreateInput as jg, TrackingDomainsCreateOutput as jh, TrackingDomainsDeleteInput as ji, TrackingDomainsDeleteOutput as jj, TrackingDomainsGetInput as jk, TrackingDomainsGetOutput as jl, TrackingDomainsListInput as jm, TrackingDomainsListOutput as jn, TrackingDomainsVerifyInput as jo, TrackingDomainsVerifyOutput as jp, TrackingEventNamesArchiveInput as jq, TrackingEventNamesArchiveOutput as jr, TrackingEventNamesListInput as js, TrackingEventNamesListOutput as jt, TrackingEventNamesUnarchiveInput as ju, TrackingEventNamesUnarchiveOutput as jv, TrackingGoogleadsConnectionStatusInput as jw, TrackingGoogleadsConnectionStatusOutput as jx, TrackingGoogleadsConversionActionsInput as jy, TrackingGoogleadsConversionActionsOutput as jz, BrainClickupConnectionsListInput as k, UsersUsersCreateOutput as k$, TrackingLinkDomainsDeleteInput as k0, TrackingLinkDomainsDeleteOutput as k1, TrackingLinkDomainsListInput as k2, TrackingLinkDomainsListOutput as k3, TrackingLiveEventsListInput as k4, TrackingLiveEventsListOutput as k5, TrackingProfilesDeleteInput as k6, TrackingProfilesDeleteOutput as k7, TrackingProfilesExportInput as k8, TrackingProfilesExportOutput as k9, UsersFactorsListInput as kA, UsersFactorsListOutput as kB, UsersFactorsResetInput as kC, UsersFactorsResetOutput as kD, UsersKeysListInput as kE, UsersKeysListOutput as kF, UsersKeysRevokeInput as kG, UsersKeysRevokeOutput as kH, UsersKeysRotateInput as kI, UsersKeysRotateOutput as kJ, UsersOpsRetentionGetInput as kK, UsersOpsRetentionGetOutput as kL, UsersOpsSloGetInput as kM, UsersOpsSloGetOutput as kN, UsersSessionsGetInput as kO, UsersSessionsGetOutput as kP, UsersSessionsImpersonateInput as kQ, UsersSessionsImpersonateOutput as kR, UsersSessionsListInput as kS, UsersSessionsListOutput as kT, UsersSessionsRevokeInput as kU, UsersSessionsRevokeOutput as kV, UsersStatsGetInput as kW, UsersStatsGetOutput as kX, UsersUsersBanInput as kY, UsersUsersBanOutput as kZ, UsersUsersCreateInput as k_, TrackingProfilesGetInput as ka, TrackingProfilesGetOutput as kb, TrackingProfilesListInput as kc, TrackingProfilesListOutput as kd, TrackingReportsAttributedJourneyInput as ke, TrackingReportsAttributedJourneyOutput as kf, TrackingReportsEventVolumeInput as kg, TrackingReportsEventVolumeOutput as kh, TrackingReportsRevenueBySourceInput as ki, TrackingReportsRevenueBySourceOutput as kj, TrackingReportsSourcePeopleInput as kk, TrackingReportsSourcePeopleOutput as kl, TrackingSnippetsGetInput as km, TrackingSnippetsGetOutput as kn, UsersApikeysCreateInput as ko, UsersApikeysCreateOutput as kp, UsersApikeysListInput as kq, UsersApikeysListOutput as kr, UsersApikeysRevokeInput as ks, UsersApikeysRevokeOutput as kt, UsersAuditListInput as ku, UsersAuditListOutput as kv, UsersConfigGetInput as kw, UsersConfigGetOutput as kx, UsersConfigUpsertInput as ky, UsersConfigUpsertOutput as kz, BrainClickupConnectionsListOutput as l, UsersUsersDeleteInput as l0, UsersUsersDeleteOutput as l1, UsersUsersEraseInput as l2, UsersUsersEraseOutput as l3, UsersUsersExportInput as l4, UsersUsersExportOutput as l5, UsersUsersGetInput as l6, UsersUsersGetOutput as l7, UsersUsersImportInput as l8, UsersUsersImportOutput as l9, UsersWebhooksGetInput as lA, UsersWebhooksGetOutput as lB, UsersWebhooksListInput as lC, UsersWebhooksListOutput as lD, UsersWebhooksRotateSecretInput as lE, UsersWebhooksRotateSecretOutput as lF, UsersWebhooksUpdateInput as lG, UsersWebhooksUpdateOutput as lH, WaitlistConfigGetInput as lI, WaitlistConfigGetOutput as lJ, WaitlistConfigUpsertInput as lK, WaitlistConfigUpsertOutput as lL, WaitlistEmbedGetInput as lM, WaitlistEmbedGetOutput as lN, WaitlistInvitesSendInput as lO, WaitlistInvitesSendOutput as lP, WaitlistSignupsEraseInput as lQ, WaitlistSignupsEraseOutput as lR, WaitlistSignupsFunnelInput as lS, WaitlistSignupsFunnelOutput as lT, WaitlistSignupsListInput as lU, WaitlistSignupsListOutput as lV, UsersUsersInviteInput as la, UsersUsersInviteOutput as lb, UsersUsersListInput as lc, UsersUsersListOutput as ld, UsersUsersSetPrimaryIdentifierInput as le, UsersUsersSetPrimaryIdentifierOutput as lf, UsersUsersUnbanInput as lg, UsersUsersUnbanOutput as lh, UsersUsersUpdateInput as li, UsersUsersUpdateOutput as lj, UsersWaitlistEraseInput as lk, UsersWaitlistEraseOutput as ll, UsersWaitlistFunnelInput as lm, UsersWaitlistFunnelOutput as ln, UsersWaitlistImportInput as lo, UsersWaitlistImportOutput as lp, UsersWaitlistInviteInput as lq, UsersWaitlistInviteOutput as lr, UsersWaitlistListInput as ls, UsersWaitlistListOutput as lt, UsersWebhooksCreateInput as lu, UsersWebhooksCreateOutput as lv, UsersWebhooksDeleteInput as lw, UsersWebhooksDeleteOutput as lx, UsersWebhooksDeliveriesListInput as ly, UsersWebhooksDeliveriesListOutput as lz, BrainClickupListsListInput as m, BrainClickupListsListOutput as n, BrainClickupSpacesListInput as o, BrainClickupSpacesListOutput as p, BrainCognitionDigestInput as q, BrainCognitionDigestOutput as r, BrainCognitionStatusInput as s, BrainCognitionStatusOutput as t, BrainCognitionSweepInput as u, BrainCognitionSweepOutput as v, BrainConnectorBranchesListInput as w, BrainConnectorBranchesListOutput as x, BrainConnectorConnectionsListInput as y, BrainConnectorConnectionsListOutput as z };
|
|
20280
|
+
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, OrganizationBillingCapsClearOutput 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, OrganizationAuthMeInput as fU, OrganizationAuthMeOutput as fV, OrganizationBillingBudgetsGetInput as fW, OrganizationBillingBudgetsGetOutput as fX, OrganizationBillingBudgetsSetInput as fY, OrganizationBillingBudgetsSetOutput as fZ, OrganizationBillingCapsClearInput 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, OrganizationMemberListInvitationsOutput as g$, OrganizationBillingCapsSetInput as g0, OrganizationBillingCapsSetOutput as g1, OrganizationBindingsListInput as g2, OrganizationBindingsListOutput as g3, OrganizationClickupInstallInput as g4, OrganizationClickupInstallOutput as g5, OrganizationClickupListInstallationsInput as g6, OrganizationClickupListInstallationsOutput as g7, OrganizationCloudflareInstallInput as g8, OrganizationCloudflareInstallOutput as g9, OrganizationDomainsAddInput as gA, OrganizationDomainsAddOutput as gB, OrganizationDomainsGetInput as gC, OrganizationDomainsGetOutput as gD, OrganizationDomainsListInput as gE, OrganizationDomainsListOutput as gF, OrganizationDomainsRemoveInput as gG, OrganizationDomainsRemoveOutput as gH, OrganizationExtensionsListInstalledInput as gI, OrganizationExtensionsListInstalledOutput as gJ, OrganizationFeedbackSubmitInput as gK, OrganizationFeedbackSubmitOutput as gL, OrganizationGdriveInstallInput as gM, OrganizationGdriveInstallOutput as gN, OrganizationGithubInstallInput as gO, OrganizationGithubInstallOutput as gP, OrganizationGithubListInstallationsInput as gQ, OrganizationGithubListInstallationsOutput as gR, OrganizationGoogleadsInstallInput as gS, OrganizationGoogleadsInstallOutput as gT, OrganizationListInput as gU, OrganizationListOutput as gV, OrganizationMemberAcceptInviteInput as gW, OrganizationMemberAcceptInviteOutput as gX, OrganizationMemberInviteInput as gY, OrganizationMemberInviteOutput as gZ, OrganizationMemberListInvitationsInput as g_, OrganizationConnectorsApproveRequestInput as ga, OrganizationConnectorsApproveRequestOutput as gb, OrganizationConnectorsAttachInput as gc, OrganizationConnectorsAttachOutput as gd, OrganizationConnectorsDeleteInput as ge, OrganizationConnectorsDeleteOutput as gf, OrganizationConnectorsDenyRequestInput as gg, OrganizationConnectorsDenyRequestOutput as gh, OrganizationConnectorsDetachInput as gi, OrganizationConnectorsDetachOutput as gj, OrganizationConnectorsListAttachmentsInput as gk, OrganizationConnectorsListAttachmentsOutput as gl, OrganizationConnectorsListAvailableInput as gm, OrganizationConnectorsListAvailableOutput as gn, OrganizationConnectorsListOrgInput as go, OrganizationConnectorsListOrgOutput as gp, OrganizationConnectorsListInput as gq, OrganizationConnectorsListOutput as gr, OrganizationConnectorsListRequestsInput as gs, OrganizationConnectorsListRequestsOutput as gt, OrganizationConnectorsRemoveInput as gu, OrganizationConnectorsRemoveOutput as gv, OrganizationConnectorsRequestInput as gw, OrganizationConnectorsRequestOutput as gx, OrganizationCreateInput as gy, OrganizationCreateOutput as gz, BrainBackupsListOutput as h, PlaygroundAnalyticsOverviewOutput as h$, OrganizationMemberListProductAccessInput as h0, OrganizationMemberListProductAccessOutput as h1, OrganizationMemberListInput as h2, OrganizationMemberListOutput as h3, OrganizationMemberRemoveInput as h4, OrganizationMemberRemoveOutput as h5, OrganizationMemberRevokeInvitationInput as h6, OrganizationMemberRevokeInvitationOutput as h7, OrganizationMemberSetRoleInput as h8, OrganizationMemberSetRoleOutput as h9, OrganizationProductUpdateInput as hA, OrganizationProductUpdateOutput as hB, OrganizationPublicKeysCreateInput as hC, OrganizationPublicKeysCreateOutput as hD, OrganizationPublicKeysListInput as hE, OrganizationPublicKeysListOutput as hF, OrganizationPublicKeysRevokeInput as hG, OrganizationPublicKeysRevokeOutput as hH, OrganizationPublicKeysUpdateScopeInput as hI, OrganizationPublicKeysUpdateScopeOutput as hJ, OrganizationPublicRoutesListInput as hK, OrganizationPublicRoutesListOutput as hL, OrganizationRolesCreateInput as hM, OrganizationRolesCreateOutput as hN, OrganizationRolesDeleteInput as hO, OrganizationRolesDeleteOutput as hP, OrganizationRolesGetInput as hQ, OrganizationRolesGetOutput as hR, OrganizationRolesListInput as hS, OrganizationRolesListOutput as hT, OrganizationRolesUpdateInput as hU, OrganizationRolesUpdateOutput as hV, OrganizationSecurityMfaEnableInput as hW, OrganizationSecurityMfaEnableOutput as hX, OrganizationSelectInput as hY, OrganizationSelectOutput as hZ, PlaygroundAnalyticsOverviewInput as h_, OrganizationMemberShareProductInput as ha, OrganizationMemberShareProductOutput as hb, OrganizationMemberUnshareProductInput as hc, OrganizationMemberUnshareProductOutput as hd, OrganizationMembersAssignRoleInput as he, OrganizationMembersAssignRoleOutput as hf, OrganizationPermissionCatalogInput as hg, OrganizationPermissionCatalogOutput as hh, OrganizationProductAcceptInvitationInput as hi, OrganizationProductAcceptInvitationOutput as hj, OrganizationProductCreateInput as hk, OrganizationProductCreateOutput as hl, OrganizationProductInviteInput as hm, OrganizationProductInviteOutput as hn, OrganizationProductListInvitationsInput as ho, OrganizationProductListInvitationsOutput as hp, OrganizationProductListMembersInput as hq, OrganizationProductListMembersOutput as hr, OrganizationProductListInput as hs, OrganizationProductListOutput as ht, OrganizationProductListRolesInput as hu, OrganizationProductListRolesOutput as hv, OrganizationProductRevokeInvitationInput as hw, OrganizationProductRevokeInvitationOutput as hx, OrganizationProductSelectInput as hy, OrganizationProductSelectOutput as hz, BrainClickupChannelsListInput as i, RealtimeStatusGetOutput as i$, PlaygroundBillingEntitlementsInput as i0, PlaygroundBillingEntitlementsOutput as i1, PlaygroundBillingRecordUsageInput as i2, PlaygroundBillingRecordUsageOutput as i3, PlaygroundClickupCreateTaskInput as i4, PlaygroundClickupCreateTaskOutput as i5, PlaygroundClickupGetLastWebhookInput as i6, PlaygroundClickupGetLastWebhookOutput as i7, PlaygroundClickupGetOverviewInput as i8, PlaygroundClickupGetOverviewOutput as i9, RealtimeHistoryGetInput as iA, RealtimeHistoryGetOutput as iB, RealtimeMessagesPublishInput as iC, RealtimeMessagesPublishOutput as iD, RealtimeNamespaceCreateInput as iE, RealtimeNamespaceCreateOutput as iF, RealtimeNamespaceDeleteInput as iG, RealtimeNamespaceDeleteOutput as iH, RealtimeNamespaceGetInput as iI, RealtimeNamespaceGetOutput as iJ, RealtimeNamespaceListInput as iK, RealtimeNamespaceListOutput as iL, RealtimeNamespaceUpdateInput as iM, RealtimeNamespaceUpdateOutput as iN, RealtimePresenceEnterInput as iO, RealtimePresenceEnterOutput as iP, RealtimePresenceGetInput as iQ, RealtimePresenceGetOutput as iR, RealtimePresenceLeaveInput as iS, RealtimePresenceLeaveOutput as iT, RealtimePresenceStatsInput as iU, RealtimePresenceStatsOutput as iV, RealtimePresenceUpdateInput as iW, RealtimePresenceUpdateOutput as iX, RealtimePublicAccessStatusInput as iY, RealtimePublicAccessStatusOutput as iZ, RealtimeStatusGetInput as i_, PlaygroundGdriveGetLastChangeInput as ia, PlaygroundGdriveGetLastChangeOutput as ib, PlaygroundGdriveReadFileInput as ic, PlaygroundGdriveReadFileOutput as id, PlaygroundGoogleadsReadCustomerInput as ie, PlaygroundGoogleadsReadCustomerOutput as ig, PlaygroundLifecycleGetStateInput as ih, PlaygroundLifecycleGetStateOutput as ii, PlaygroundLifecycleListEventsInput as ij, PlaygroundLifecycleListEventsOutput as ik, PlaygroundWebhookGetLastInput as il, PlaygroundWebhookGetLastOutput as im, RealtimeArchiveExportInput as io, RealtimeArchiveExportOutput as ip, RealtimeArchiveExportStatusInput as iq, RealtimeArchiveExportStatusOutput as ir, RealtimeArchiveGetInput as is, RealtimeArchiveGetOutput as it, RealtimeGrantCreateInput as iu, RealtimeGrantCreateOutput as iv, RealtimeGrantListInput as iw, RealtimeGrantListOutput as ix, RealtimeGrantRevokeInput as iy, RealtimeGrantRevokeOutput as iz, BrainClickupChannelsListOutput as j, TrackingDomainsListOutput as j$, RealtimeTokensCreateInput as j0, RealtimeTokensCreateOutput as j1, RealtimeWebhookCreateInput as j2, RealtimeWebhookCreateOutput as j3, RealtimeWebhookDeleteInput as j4, RealtimeWebhookDeleteOutput as j5, RealtimeWebhookDeliveriesListInput as j6, RealtimeWebhookDeliveriesListOutput as j7, RealtimeWebhookGetInput as j8, RealtimeWebhookGetOutput as j9, SupportStatusArchiveInput as jA, SupportStatusArchiveOutput as jB, SupportStatusCreateInput as jC, SupportStatusCreateOutput as jD, SupportStatusListInput as jE, SupportStatusListOutput as jF, SupportStatusUpdateInput as jG, SupportStatusUpdateOutput as jH, SupportThreadAssignInput as jI, SupportThreadAssignOutput as jJ, SupportThreadCreateInput as jK, SupportThreadCreateOutput as jL, SupportThreadGetInput as jM, SupportThreadGetOutput as jN, SupportThreadListInput as jO, SupportThreadListOutput as jP, SupportThreadStatusSetInput as jQ, SupportThreadStatusSetOutput as jR, SupportThreadUpdateInput as jS, SupportThreadUpdateOutput as jT, TrackingDomainsCreateInput as jU, TrackingDomainsCreateOutput as jV, TrackingDomainsDeleteInput as jW, TrackingDomainsDeleteOutput as jX, TrackingDomainsGetInput as jY, TrackingDomainsGetOutput as jZ, TrackingDomainsListInput as j_, RealtimeWebhookListInput as ja, RealtimeWebhookListOutput as jb, RealtimeWebhookSecretRotateInput as jc, RealtimeWebhookSecretRotateOutput as jd, RealtimeWebhookUpdateInput as je, RealtimeWebhookUpdateOutput as jf, SupportAgentCreateInput as jg, SupportAgentCreateOutput as jh, SupportAgentGetInput as ji, SupportAgentGetOutput as jj, SupportAgentListInput as jk, SupportAgentListOutput as jl, SupportAgentUpdateInput as jm, SupportAgentUpdateOutput as jn, SupportAttachmentCreateInput as jo, SupportAttachmentCreateOutput as jp, SupportAttachmentFinalizeInput as jq, SupportAttachmentFinalizeOutput as jr, SupportLabelCreateInput as js, SupportLabelCreateOutput as jt, SupportLabelListInput as ju, SupportLabelListOutput as jv, SupportMessageCreateInput as jw, SupportMessageCreateOutput as jx, SupportMessageListInput as jy, SupportMessageListOutput as jz, BrainClickupConnectionsListInput as k, TrackingSnippetsGetOutput as k$, TrackingDomainsVerifyInput as k0, TrackingDomainsVerifyOutput as k1, TrackingEventNamesArchiveInput as k2, TrackingEventNamesArchiveOutput as k3, TrackingEventNamesListInput as k4, TrackingEventNamesListOutput as k5, TrackingEventNamesUnarchiveInput as k6, TrackingEventNamesUnarchiveOutput as k7, TrackingGoogleadsConnectionStatusInput as k8, TrackingGoogleadsConnectionStatusOutput as k9, TrackingInstallDomainsListInput as kA, TrackingInstallDomainsListOutput as kB, TrackingLinkDomainsCreateInput as kC, TrackingLinkDomainsCreateOutput as kD, TrackingLinkDomainsDeleteInput as kE, TrackingLinkDomainsDeleteOutput as kF, TrackingLinkDomainsListInput as kG, TrackingLinkDomainsListOutput as kH, TrackingLiveEventsListInput as kI, TrackingLiveEventsListOutput as kJ, TrackingProfilesDeleteInput as kK, TrackingProfilesDeleteOutput as kL, TrackingProfilesExportInput as kM, TrackingProfilesExportOutput as kN, TrackingProfilesGetInput as kO, TrackingProfilesGetOutput as kP, TrackingProfilesListInput as kQ, TrackingProfilesListOutput as kR, TrackingReportsAttributedJourneyInput as kS, TrackingReportsAttributedJourneyOutput as kT, TrackingReportsEventVolumeInput as kU, TrackingReportsEventVolumeOutput as kV, TrackingReportsRevenueBySourceInput as kW, TrackingReportsRevenueBySourceOutput as kX, TrackingReportsSourcePeopleInput as kY, TrackingReportsSourcePeopleOutput as kZ, TrackingSnippetsGetInput as k_, TrackingGoogleadsConversionActionsInput as ka, TrackingGoogleadsConversionActionsOutput as kb, TrackingGoogleadsFeedbackConfigGetInput as kc, TrackingGoogleadsFeedbackConfigGetOutput as kd, TrackingGoogleadsFeedbackConfigSetInput as ke, TrackingGoogleadsFeedbackConfigSetOutput as kf, TrackingGoogleadsFeedbackRunInput as kg, TrackingGoogleadsFeedbackRunOutput as kh, TrackingGoogleadsFeedbackStatusInput as ki, TrackingGoogleadsFeedbackStatusOutput as kj, TrackingGoogleadsFeedbackUploadsInput as kk, TrackingGoogleadsFeedbackUploadsOutput as kl, TrackingGoogleadsRoasReportInput as km, TrackingGoogleadsRoasReportOutput as kn, TrackingGoogleadsSyncNowInput as ko, TrackingGoogleadsSyncNowOutput as kp, TrackingGoogleadsTrackingHealthInput as kq, TrackingGoogleadsTrackingHealthOutput as kr, TrackingGoogleadsUsVsPlatformInput as ks, TrackingGoogleadsUsVsPlatformOutput as kt, TrackingIdentityHealthInput as ku, TrackingIdentityHealthOutput as kv, TrackingInstallDomainsCreateInput as kw, TrackingInstallDomainsCreateOutput as kx, TrackingInstallDomainsDeleteInput as ky, TrackingInstallDomainsDeleteOutput as kz, BrainClickupConnectionsListOutput as l, UsersWaitlistFunnelOutput as l$, UsersApikeysCreateInput as l0, UsersApikeysCreateOutput as l1, UsersApikeysListInput as l2, UsersApikeysListOutput as l3, UsersApikeysRevokeInput as l4, UsersApikeysRevokeOutput as l5, UsersAuditListInput as l6, UsersAuditListOutput as l7, UsersConfigGetInput as l8, UsersConfigGetOutput as l9, UsersUsersBanInput as lA, UsersUsersBanOutput as lB, UsersUsersCreateInput as lC, UsersUsersCreateOutput as lD, UsersUsersDeleteInput as lE, UsersUsersDeleteOutput as lF, UsersUsersEraseInput as lG, UsersUsersEraseOutput as lH, UsersUsersExportInput as lI, UsersUsersExportOutput as lJ, UsersUsersGetInput as lK, UsersUsersGetOutput as lL, UsersUsersImportInput as lM, UsersUsersImportOutput as lN, UsersUsersInviteInput as lO, UsersUsersInviteOutput as lP, UsersUsersListInput as lQ, UsersUsersListOutput as lR, UsersUsersSetPrimaryIdentifierInput as lS, UsersUsersSetPrimaryIdentifierOutput as lT, UsersUsersUnbanInput as lU, UsersUsersUnbanOutput as lV, UsersUsersUpdateInput as lW, UsersUsersUpdateOutput as lX, UsersWaitlistEraseInput as lY, UsersWaitlistEraseOutput as lZ, UsersWaitlistFunnelInput as l_, UsersConfigUpsertInput as la, UsersConfigUpsertOutput as lb, UsersFactorsListInput as lc, UsersFactorsListOutput as ld, UsersFactorsResetInput as le, UsersFactorsResetOutput as lf, UsersKeysListInput as lg, UsersKeysListOutput as lh, UsersKeysRevokeInput as li, UsersKeysRevokeOutput as lj, UsersKeysRotateInput as lk, UsersKeysRotateOutput as ll, UsersOpsRetentionGetInput as lm, UsersOpsRetentionGetOutput as ln, UsersOpsSloGetInput as lo, UsersOpsSloGetOutput as lp, UsersSessionsGetInput as lq, UsersSessionsGetOutput as lr, UsersSessionsImpersonateInput as ls, UsersSessionsImpersonateOutput as lt, UsersSessionsListInput as lu, UsersSessionsListOutput as lv, UsersSessionsRevokeInput as lw, UsersSessionsRevokeOutput as lx, UsersStatsGetInput as ly, UsersStatsGetOutput as lz, BrainClickupListsListInput as m, UsersWaitlistImportInput as m0, UsersWaitlistImportOutput as m1, UsersWaitlistInviteInput as m2, UsersWaitlistInviteOutput as m3, UsersWaitlistListInput as m4, UsersWaitlistListOutput as m5, UsersWebhooksCreateInput as m6, UsersWebhooksCreateOutput as m7, UsersWebhooksDeleteInput as m8, UsersWebhooksDeleteOutput as m9, UsersWebhooksDeliveriesListInput as ma, UsersWebhooksDeliveriesListOutput as mb, UsersWebhooksGetInput as mc, UsersWebhooksGetOutput as md, UsersWebhooksListInput as me, UsersWebhooksListOutput as mf, UsersWebhooksRotateSecretInput as mg, UsersWebhooksRotateSecretOutput as mh, UsersWebhooksUpdateInput as mi, UsersWebhooksUpdateOutput as mj, WaitlistConfigGetInput as mk, WaitlistConfigGetOutput as ml, WaitlistConfigUpsertInput as mm, WaitlistConfigUpsertOutput as mn, WaitlistEmbedGetInput as mo, WaitlistEmbedGetOutput as mp, WaitlistInvitesSendInput as mq, WaitlistInvitesSendOutput as mr, WaitlistSignupsEraseInput as ms, WaitlistSignupsEraseOutput as mt, WaitlistSignupsFunnelInput as mu, WaitlistSignupsFunnelOutput as mv, WaitlistSignupsListInput as mw, WaitlistSignupsListOutput as mx, 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 };
|