@primitivedotdev/sdk 1.3.0 → 1.5.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.
@@ -1,4 +1,4 @@
1
- import { m as ReceivedEmail } from "./errors-7E9sW9eX.js";
1
+ import { m as ReceivedEmail } from "./errors-DyuAXctD.js";
2
2
 
3
3
  //#region ../packages/api-core/src/api/core/auth.gen.d.ts
4
4
  type AuthToken = string | undefined;
@@ -811,6 +811,18 @@ type Account = {
811
811
  id: string;
812
812
  email: string;
813
813
  plan: string;
814
+ limits: PlanLimits;
815
+ /**
816
+ * Granted org entitlement keys (sorted). A headless caller reads its
817
+ * capabilities here — e.g. an emailless agent seeing only
818
+ * ["send_mail", "send_to_known_addresses"] knows it is reply-only.
819
+ *
820
+ */
821
+ entitlements: Array<string>;
822
+ /**
823
+ * The managed inbox FQDN to reply as, or null if the org has no managed inbox.
824
+ */
825
+ managed_inbox_address: string | null;
814
826
  created_at: string;
815
827
  onboarding_completed?: boolean;
816
828
  onboarding_step?: string | null;
@@ -3011,6 +3023,52 @@ type FunctionSecretWriteResult = {
3011
3023
  */
3012
3024
  created: boolean;
3013
3025
  };
3026
+ /**
3027
+ * One row from GET /org/secrets. Org secrets are always user-set
3028
+ * (there are no managed org secrets), so `created_at` /
3029
+ * `updated_at` are always present.
3030
+ *
3031
+ */
3032
+ type OrgSecretListItem = {
3033
+ key: string;
3034
+ created_at: string;
3035
+ updated_at: string;
3036
+ };
3037
+ /**
3038
+ * Body for POST /org/secrets.
3039
+ */
3040
+ type CreateOrgSecretInput = {
3041
+ /**
3042
+ * Uppercase letters, digits, and underscores. Must start with
3043
+ * a letter or underscore. System-managed keys are reserved.
3044
+ *
3045
+ */
3046
+ key: string;
3047
+ /**
3048
+ * Secret value, up to 4096 UTF-8 bytes. Encrypted at rest.
3049
+ * Never returned by any read endpoint.
3050
+ *
3051
+ */
3052
+ value: string;
3053
+ };
3054
+ /**
3055
+ * Body for PUT /org/secrets/{key}. Key comes from the path.
3056
+ */
3057
+ type SetOrgSecretInput = {
3058
+ value: string;
3059
+ };
3060
+ /**
3061
+ * Returned by POST and PUT org secret routes.
3062
+ */
3063
+ type OrgSecretWriteResult = {
3064
+ key: string;
3065
+ created_at: string;
3066
+ updated_at: string;
3067
+ /**
3068
+ * True if this call inserted a new row, false if it updated an existing one.
3069
+ */
3070
+ created: boolean;
3071
+ };
3014
3072
  /**
3015
3073
  * Resource UUID
3016
3074
  */
@@ -3834,6 +3892,27 @@ type ListEmailsData = {
3834
3892
  * Filter emails created on or before this timestamp
3835
3893
  */
3836
3894
  date_to?: string;
3895
+ /**
3896
+ * Forward-tail cursor. Returns rows that became visible AFTER this
3897
+ * cursor, oldest-first, so a caller can stream new inbound mail by
3898
+ * re-passing the cursor from each response. Mutually exclusive with
3899
+ * `cursor` (which pages history newest-first). Pass the `meta.cursor`
3900
+ * from the previous `since` response; an empty page means caught up.
3901
+ *
3902
+ */
3903
+ since?: string;
3904
+ /**
3905
+ * Long-poll: hold the request up to this many seconds waiting for new
3906
+ * mail past `since`, returning as soon as any arrives (or an empty
3907
+ * page when the wait elapses). Requires `since`. Omitted means no wait
3908
+ * (returns immediately); the server treats an absent value as 0. NOT
3909
+ * given an OpenAPI `default` on purpose: a default makes some
3910
+ * generators (e.g. openapi-python-client) send `wait=0` on every call,
3911
+ * which then fails the `wait` requires `since` check for plain history
3912
+ * listings.
3913
+ *
3914
+ */
3915
+ wait?: number;
3837
3916
  };
3838
3917
  url: '/emails';
3839
3918
  };
@@ -5505,6 +5584,132 @@ type SetFunctionSecretResponses = {
5505
5584
  };
5506
5585
  };
5507
5586
  type SetFunctionSecretResponse = SetFunctionSecretResponses[keyof SetFunctionSecretResponses];
5587
+ type ListOrgSecretsData = {
5588
+ body?: never;
5589
+ path?: never;
5590
+ query?: never;
5591
+ url: '/org/secrets';
5592
+ };
5593
+ type ListOrgSecretsErrors = {
5594
+ /**
5595
+ * Invalid or missing API key
5596
+ */
5597
+ 401: ErrorResponse;
5598
+ };
5599
+ type ListOrgSecretsError = ListOrgSecretsErrors[keyof ListOrgSecretsErrors];
5600
+ type ListOrgSecretsResponses = {
5601
+ /**
5602
+ * List of org secrets (metadata only, no values)
5603
+ */
5604
+ 200: SuccessEnvelope & {
5605
+ data?: {
5606
+ items: Array<OrgSecretListItem>;
5607
+ };
5608
+ };
5609
+ };
5610
+ type ListOrgSecretsResponse = ListOrgSecretsResponses[keyof ListOrgSecretsResponses];
5611
+ type CreateOrgSecretData = {
5612
+ body: CreateOrgSecretInput;
5613
+ path?: never;
5614
+ query?: never;
5615
+ url: '/org/secrets';
5616
+ };
5617
+ type CreateOrgSecretErrors = {
5618
+ /**
5619
+ * Invalid request parameters
5620
+ */
5621
+ 400: ErrorResponse;
5622
+ /**
5623
+ * Invalid or missing API key
5624
+ */
5625
+ 401: ErrorResponse;
5626
+ };
5627
+ type CreateOrgSecretError = CreateOrgSecretErrors[keyof CreateOrgSecretErrors];
5628
+ type CreateOrgSecretResponses = {
5629
+ /**
5630
+ * Secret updated
5631
+ */
5632
+ 200: SuccessEnvelope & {
5633
+ data?: OrgSecretWriteResult;
5634
+ };
5635
+ /**
5636
+ * Secret created
5637
+ */
5638
+ 201: SuccessEnvelope & {
5639
+ data?: OrgSecretWriteResult;
5640
+ };
5641
+ };
5642
+ type CreateOrgSecretResponse = CreateOrgSecretResponses[keyof CreateOrgSecretResponses];
5643
+ type DeleteOrgSecretData = {
5644
+ body?: never;
5645
+ path: {
5646
+ /**
5647
+ * Secret key. Must match `^[A-Z_][A-Z0-9_]*$`.
5648
+ */
5649
+ key: string;
5650
+ };
5651
+ query?: never;
5652
+ url: '/org/secrets/{key}';
5653
+ };
5654
+ type DeleteOrgSecretErrors = {
5655
+ /**
5656
+ * Invalid request parameters
5657
+ */
5658
+ 400: ErrorResponse;
5659
+ /**
5660
+ * Invalid or missing API key
5661
+ */
5662
+ 401: ErrorResponse;
5663
+ /**
5664
+ * Resource not found
5665
+ */
5666
+ 404: ErrorResponse;
5667
+ };
5668
+ type DeleteOrgSecretError = DeleteOrgSecretErrors[keyof DeleteOrgSecretErrors];
5669
+ type DeleteOrgSecretResponses = {
5670
+ /**
5671
+ * Secret deleted
5672
+ */
5673
+ 204: void;
5674
+ };
5675
+ type DeleteOrgSecretResponse = DeleteOrgSecretResponses[keyof DeleteOrgSecretResponses];
5676
+ type SetOrgSecretData = {
5677
+ body: SetOrgSecretInput;
5678
+ path: {
5679
+ /**
5680
+ * Secret key. Must match `^[A-Z_][A-Z0-9_]*$`.
5681
+ */
5682
+ key: string;
5683
+ };
5684
+ query?: never;
5685
+ url: '/org/secrets/{key}';
5686
+ };
5687
+ type SetOrgSecretErrors = {
5688
+ /**
5689
+ * Invalid request parameters
5690
+ */
5691
+ 400: ErrorResponse;
5692
+ /**
5693
+ * Invalid or missing API key
5694
+ */
5695
+ 401: ErrorResponse;
5696
+ };
5697
+ type SetOrgSecretError = SetOrgSecretErrors[keyof SetOrgSecretErrors];
5698
+ type SetOrgSecretResponses = {
5699
+ /**
5700
+ * Secret updated
5701
+ */
5702
+ 200: SuccessEnvelope & {
5703
+ data?: OrgSecretWriteResult;
5704
+ };
5705
+ /**
5706
+ * Secret created
5707
+ */
5708
+ 201: SuccessEnvelope & {
5709
+ data?: OrgSecretWriteResult;
5710
+ };
5711
+ };
5712
+ type SetOrgSecretResponse = SetOrgSecretResponses[keyof SetOrgSecretResponses];
5508
5713
  type ListFunctionLogsData = {
5509
5714
  body?: never;
5510
5715
  path: {
@@ -5566,7 +5771,7 @@ type ListFunctionLogsResponses = {
5566
5771
  };
5567
5772
  type ListFunctionLogsResponse = ListFunctionLogsResponses[keyof ListFunctionLogsResponses];
5568
5773
  declare namespace sdk_gen_d_exports {
5569
- export { Options, addDomain, cliLogout, createAgentAccount, createAgentClaimLink, createEndpoint, createFilter, createFunction, createFunctionSecret, deleteDomain, deleteEmail, deleteEndpoint, deleteFilter, deleteFunction, deleteFunctionSecret, discardEmailContent, downloadAttachments, downloadDomainZoneFile, downloadRawEmail, getAccount, getConversation, getEmail, getFunction, getFunctionRouting, getFunctionTestRunTrace, getInboxStatus, getOrgRoutingTopology, getSendPermissions, getSentEmail, getStorageStats, getThread, getWebhookSecret, listDeliveries, listDomains, listEmails, listEndpoints, listFilters, listFunctionLogs, listFunctionSecrets, listFunctions, listSentEmails, pollCliLogin, replayDelivery, replayEmailWebhooks, replyToEmail, resendAgentSignupVerification, resendCliSignupVerification, rotateWebhookSecret, searchEmails, semanticSearch, sendEmail, setFunctionRoute, setFunctionSecret, startAgentClaim, startAgentSignup, startCliLogin, startCliSignup, testEndpoint, testFunction, unsetFunctionRoute, updateAccount, updateDomain, updateEndpoint, updateFilter, updateFunction, verifyAgentClaim, verifyAgentSignup, verifyCliSignup, verifyDomain };
5774
+ export { Options, addDomain, cliLogout, createAgentAccount, createAgentClaimLink, createEndpoint, createFilter, createFunction, createFunctionSecret, createOrgSecret, deleteDomain, deleteEmail, deleteEndpoint, deleteFilter, deleteFunction, deleteFunctionSecret, deleteOrgSecret, discardEmailContent, downloadAttachments, downloadDomainZoneFile, downloadRawEmail, getAccount, getConversation, getEmail, getFunction, getFunctionRouting, getFunctionTestRunTrace, getInboxStatus, getOrgRoutingTopology, getSendPermissions, getSentEmail, getStorageStats, getThread, getWebhookSecret, listDeliveries, listDomains, listEmails, listEndpoints, listFilters, listFunctionLogs, listFunctionSecrets, listFunctions, listOrgSecrets, listSentEmails, pollCliLogin, replayDelivery, replayEmailWebhooks, replyToEmail, resendAgentSignupVerification, resendCliSignupVerification, rotateWebhookSecret, searchEmails, semanticSearch, sendEmail, setFunctionRoute, setFunctionSecret, setOrgSecret, startAgentClaim, startAgentSignup, startCliLogin, startCliSignup, testEndpoint, testFunction, unsetFunctionRoute, updateAccount, updateDomain, updateEndpoint, updateFilter, updateFunction, verifyAgentClaim, verifyAgentSignup, verifyCliSignup, verifyDomain };
5570
5775
  }
5571
5776
  type Options<TData extends TDataShape = TDataShape, ThrowOnError extends boolean = boolean, TResponse = unknown> = Options$1<TData, ThrowOnError, TResponse> & {
5572
5777
  /**
@@ -6247,10 +6452,12 @@ declare const listFunctions: <ThrowOnError extends boolean = false>(options?: Op
6247
6452
  * each delivery and forwards the `Primitive-Signature` header to
6248
6453
  * the handler. Verify the raw request body with
6249
6454
  * `PRIMITIVE_WEBHOOK_SECRET` before parsing JSON; after verification
6250
- * the request body parses to an `email.received` event (see
6251
- * `EmailReceivedEvent` and the Webhook payload section for the full
6252
- * schema). Code is bundled before being uploaded; ship a single
6253
- * self-contained file rather than relying on external imports.
6455
+ * the request body parses to a webhook event whose `event` field is
6456
+ * `email.received` for normal inbound mail, or a machine-mail type
6457
+ * (`email.bounced`, `email.tls_report`, `email.dmarc_report`,
6458
+ * `email.dmarc_failure`) for bounces and reports. Code is bundled
6459
+ * before being uploaded; ship a single self-contained file rather
6460
+ * than relying on external imports.
6254
6461
  *
6255
6462
  * **Code limits.** `code` is capped at 1 MiB UTF-8. `sourceMap`
6256
6463
  * (optional) is capped at 5 MiB UTF-8, stored with each deployment
@@ -6445,6 +6652,49 @@ declare const deleteFunctionSecret: <ThrowOnError extends boolean = false>(optio
6445
6652
  *
6446
6653
  */
6447
6654
  declare const setFunctionSecret: <ThrowOnError extends boolean = false>(options: Options<SetFunctionSecretData, ThrowOnError>) => RequestResult<SetFunctionSecretResponses, SetFunctionSecretErrors, ThrowOnError, "fields">;
6655
+ /**
6656
+ * List org-level (global) secrets
6657
+ *
6658
+ * Returns metadata for every org-level secret. Org secrets apply
6659
+ * to every function in the org and are read as `env.<KEY>` in
6660
+ * handlers. **Values are never returned.** Secret writes are
6661
+ * write-only. A function-level secret of the same name overrides
6662
+ * the org-level value for that function.
6663
+ *
6664
+ */
6665
+ declare const listOrgSecrets: <ThrowOnError extends boolean = false>(options?: Options<ListOrgSecretsData, ThrowOnError>) => RequestResult<ListOrgSecretsResponses, ListOrgSecretsErrors, ThrowOnError, "fields">;
6666
+ /**
6667
+ * Create or update an org secret
6668
+ *
6669
+ * Idempotent insert-or-update keyed on `(org_id, key)`. Returns
6670
+ * 201 the first time the key is set, 200 on subsequent updates.
6671
+ * Values are encrypted at rest. A changed value lands in a
6672
+ * function only on that function's next deploy.
6673
+ *
6674
+ * Keys must match `^[A-Z_][A-Z0-9_]*$` (uppercase letters,
6675
+ * digits, underscores; first character is a letter or
6676
+ * underscore). Values are at most 4096 UTF-8 bytes. System-
6677
+ * managed keys are reserved and rejected.
6678
+ *
6679
+ */
6680
+ declare const createOrgSecret: <ThrowOnError extends boolean = false>(options: Options<CreateOrgSecretData, ThrowOnError>) => RequestResult<CreateOrgSecretResponses, CreateOrgSecretErrors, ThrowOnError, "fields">;
6681
+ /**
6682
+ * Delete an org secret
6683
+ *
6684
+ * Removes the org secret. Functions keep the previous value until
6685
+ * each is redeployed. Returns 404 if the key did not exist.
6686
+ *
6687
+ */
6688
+ declare const deleteOrgSecret: <ThrowOnError extends boolean = false>(options: Options<DeleteOrgSecretData, ThrowOnError>) => RequestResult<DeleteOrgSecretResponses, DeleteOrgSecretErrors, ThrowOnError, "fields">;
6689
+ /**
6690
+ * Set an org secret by key
6691
+ *
6692
+ * Path-keyed companion to `POST /org/secrets`. Idempotent:
6693
+ * returns 201 the first time the key is set, 200 on subsequent
6694
+ * updates. Same validation and write-only guarantees as POST.
6695
+ *
6696
+ */
6697
+ declare const setOrgSecret: <ThrowOnError extends boolean = false>(options: Options<SetOrgSecretData, ThrowOnError>) => RequestResult<SetOrgSecretResponses, SetOrgSecretErrors, ThrowOnError, "fields">;
6448
6698
  /**
6449
6699
  * List a function's execution logs
6450
6700
  *
@@ -6661,6 +6911,12 @@ interface ForwardInput {
6661
6911
  interface SendResult {
6662
6912
  id: string;
6663
6913
  status: SendMailResult["status"];
6914
+ /**
6915
+ * The bare from-address actually written on the wire. Load-bearing on the
6916
+ * server-derived reply path, where `from` is derived from the inbound rather
6917
+ * than anything the caller passed.
6918
+ */
6919
+ from: string;
6664
6920
  queueId: string | null;
6665
6921
  accepted: string[];
6666
6922
  rejected: string[];
@@ -6727,9 +6983,86 @@ declare class AgentResource {
6727
6983
  */
6728
6984
  claimLink(input?: CreateAgentClaimLinkInput, options?: RequestOptions): Promise<AgentClaimLinkResult>;
6729
6985
  }
6986
+ /**
6987
+ * One inbound email from the forward tail, plus the cursor positioned just
6988
+ * after it and a bound `reply()`. Persist `cursor` after processing to resume
6989
+ * the stream exactly where you left off; the stream advances one email at a
6990
+ * time, so the cursor is per-email exact.
6991
+ */
6992
+ interface InboundEmail {
6993
+ id: string;
6994
+ messageId: string | null;
6995
+ /** SMTP envelope sender (return-path) of the inbound mail. */
6996
+ from: string;
6997
+ to: string;
6998
+ subject: string | null;
6999
+ status: EmailStatus;
7000
+ domain: string;
7001
+ spamScore: number | null;
7002
+ threadId: string | null;
7003
+ createdAt: string;
7004
+ receivedAt: string;
7005
+ /** Forward-tail cursor positioned just after this email (persist to resume). */
7006
+ cursor: string;
7007
+ /** Reply to this email. Reply-only agents may reply to senders that mailed them. */
7008
+ reply(input: ReplyInput, options?: RequestOptions): Promise<SendResult>;
7009
+ }
7010
+ interface InboxStreamOptions {
7011
+ /** Resume cursor. Omit to stream from the beginning (oldest-first) then tail. */
7012
+ since?: string;
7013
+ /** Per-request long-poll hold in seconds (1-30). Default 30. */
7014
+ waitSeconds?: number;
7015
+ /** Stop the stream when this fires. */
7016
+ signal?: AbortSignal;
7017
+ }
7018
+ interface WaitForNextOptions {
7019
+ since?: string;
7020
+ waitSeconds?: number;
7021
+ signal?: AbortSignal;
7022
+ }
7023
+ /**
7024
+ * Inbound mail, grouped under `client.inbox`. Wraps the GET /v1/emails forward
7025
+ * tail (`?since` + `?wait` long-poll) so an agent's receive loop is a single
7026
+ * `for await`, with the cursor advanced for you.
7027
+ */
7028
+ declare class InboxResource {
7029
+ private readonly client;
7030
+ constructor(client: PrimitiveApiClient["client"]);
7031
+ /**
7032
+ * Stream inbound emails as they arrive. Long-polls the forward tail, yielding
7033
+ * one email at a time and advancing the cursor. Resumes from `since` (omit to
7034
+ * start oldest-first); stops when `signal` aborts.
7035
+ *
7036
+ * for await (const email of client.inbox.stream()) {
7037
+ * await email.reply("got it");
7038
+ * }
7039
+ */
7040
+ stream(options?: InboxStreamOptions): AsyncGenerator<InboundEmail, void, void>;
7041
+ /**
7042
+ * Resolve with the next inbound email after `since`, or null if none arrives
7043
+ * within the wait window. One-shot form of `stream`; pass your current cursor
7044
+ * as `since` to wait for genuinely new mail.
7045
+ */
7046
+ waitForNext(options?: WaitForNextOptions): Promise<InboundEmail | null>;
7047
+ }
7048
+ /** Account introspection, grouped under `client.account`. */
7049
+ declare class AccountResource {
7050
+ private readonly client;
7051
+ constructor(client: PrimitiveApiClient["client"]);
7052
+ /**
7053
+ * The authenticated account: plan, limits, granted `entitlements` (e.g. an
7054
+ * emailless agent sees only reply-only keys), and `managed_inbox_address`
7055
+ * (the From address to reply as).
7056
+ */
7057
+ get(options?: RequestOptions): Promise<Account>;
7058
+ }
6730
7059
  declare class PrimitiveClient extends PrimitiveApiClient {
6731
7060
  /** Agent-account lifecycle operations (create, claim/upgrade). */
6732
7061
  readonly agent: AgentResource;
7062
+ /** Inbound mail: long-poll stream + waitForNext over the forward tail. */
7063
+ readonly inbox: InboxResource;
7064
+ /** Account introspection (plan, limits, entitlements, managed inbox). */
7065
+ readonly account: AccountResource;
6733
7066
  send(input: SendInput, options?: RequestOptions): Promise<SendResult>;
6734
7067
  /**
6735
7068
  * Semantic / hybrid / keyword search across received and sent mail.
@@ -6762,5 +7095,26 @@ declare class PrimitiveClient extends PrimitiveApiClient {
6762
7095
  }
6763
7096
  declare function createPrimitiveClient(options?: PrimitiveClientOptions): PrimitiveClient;
6764
7097
  declare function client(options?: PrimitiveClientOptions): PrimitiveClient;
7098
+ interface CreateAgentOptions extends CreateAgentAccountInput {
7099
+ /** Base URL + transport overrides for the returned client. */
7100
+ client?: PrimitiveClientOptions;
7101
+ }
7102
+ interface CreatedAgent {
7103
+ /** A PrimitiveClient already authenticated with the new agent's API key. */
7104
+ client: PrimitiveClient;
7105
+ /** The provisioned managed inbox FQDN (the address to receive + reply as). */
7106
+ address: string | null;
7107
+ /** The raw create-account result (api_key shown once, org_id, plan, limits). */
7108
+ account: AgentAccountResult;
7109
+ }
7110
+ /**
7111
+ * Zero-to-receiving in one call: create an emailless agent account (no auth)
7112
+ * and return a PrimitiveClient already wired with its one-time API key, plus
7113
+ * the provisioned managed inbox. From here `result.client.inbox.stream()` and
7114
+ * `result.client.send(...)` work immediately.
7115
+ *
7116
+ * const { client, address } = await createAgent({ terms_accepted: true });
7117
+ */
7118
+ declare function createAgent(options: CreateAgentOptions): Promise<CreatedAgent>;
6765
7119
  //#endregion
6766
- export { getThread as $, InboxStatusFunctionSummary as $a, StorageStats as $c, GetEmailResponses as $i, VerifyAgentClaimError as $l, Cursor as $n, PollCliLoginError as $o, DownloadRawEmailError as $r, SemanticSearchScoreBreakdown as $s, AgentSignupResendResult as $t, createFunction as A, GetSentEmailData as Aa, StartAgentClaimError as Ac, FunctionTestRunDeliveryEndpoint as Ai, UpdateDomainInput as Al, CreateEndpointErrors as An, ListFunctionLogsError as Ao, DeliveryStatus as Ar, ResendCliSignupVerificationResponse as As, updateAccount as At, ResponseStyle as Au, downloadDomainZoneFile as B, GetThreadData as Ba, StartAgentSignupResponses as Bc, GetAccountError as Bi, UpdateFilterError as Bl, CreateFunctionData as Bn, ListFunctionsError as Bo, DomainDnsRecord as Br, SearchEmailsError as Bs, AccountUpdated as Bt, createPrimitiveApiClient as C, GetOrgRoutingTopologyResponse as Ca, SetFunctionSecretData as Cc, FunctionRouteBody as Ci, UpdateAccountErrors as Cl, CreateAgentClaimLinkError as Cn, ListEnvelope as Co, DeleteFunctionResponse as Cr, ResendAgentSignupVerificationInput as Cs, startAgentClaim as Ct, Client as Cu, createAgentClaimLink as D, GetSendPermissionsErrors as Da, SetFunctionSecretResponse as Dc, FunctionSecretWriteResult as Di, UpdateDomainData as Dl, CreateAgentClaimLinkResponses as Dn, ListFiltersResponse as Do, DeleteFunctionSecretErrors as Dr, ResendCliSignupVerificationError as Ds, testEndpoint as Dt, Options$1 as Du, createAgentAccount as E, GetSendPermissionsError as Ea, SetFunctionSecretInput as Ec, FunctionSecretListItem as Ei, UpdateAccountResponses as El, CreateAgentClaimLinkResponse as En, ListFiltersErrors as Eo, DeleteFunctionSecretError as Er, ResendCliSignupVerificationData as Es, startCliSignup as Et, CreateClientConfig as Eu, deleteFilter as F, GetStorageStatsData as Fa, StartAgentSignupData as Fc, FunctionTestRunState as Fi, UpdateEndpointErrors as Fl, CreateFilterError as Fn, ListFunctionSecretsError as Fo, DiscardEmailContentErrors as Fr, RotateWebhookSecretErrors as Fs, verifyAgentClaim as Ft, getFunction as G, GetWebhookSecretData as Ga, StartCliLoginResponse as Gc, GetConversationError as Gi, UpdateFunctionData as Gl, CreateFunctionResponses as Gn, ListSentEmailsError as Go, DownloadAttachmentsResponse as Gr, SemanticSearchData as Gs, AddDomainResponse as Gt, getAccount as H, GetThreadErrors as Ha, StartCliLoginError as Hc, GetAccountResponse as Hi, UpdateFilterInput as Hl, CreateFunctionErrors as Hn, ListFunctionsResponse as Ho, DownloadAttachmentsData as Hr, SearchEmailsResponse as Hs, AddDomainError as Ht, deleteFunction as I, GetStorageStatsError as Ia, StartAgentSignupError as Ic, FunctionTestRunTrace as Ii, UpdateEndpointInput as Il, CreateFilterErrors as In, ListFunctionSecretsErrors as Io, DiscardEmailContentResponse as Ir, RotateWebhookSecretResponse as Is, verifyAgentSignup as It, getInboxStatus as J, GetWebhookSecretResponse as Ja, StartCliSignupError as Jc, GetConversationResponses as Ji, UpdateFunctionInput as Jl, CreateFunctionSecretError as Jn, ListSentEmailsResponses as Jo, DownloadDomainZoneFileError as Jr, SemanticSearchField as Js, AgentAccountUpgradeHint as Jt, getFunctionRouting as K, GetWebhookSecretError as Ka, StartCliLoginResponses as Kc, GetConversationErrors as Ki, UpdateFunctionError as Kl, CreateFunctionResult as Kn, ListSentEmailsErrors as Ko, DownloadAttachmentsResponses as Kr, SemanticSearchError as Ks, AddDomainResponses as Kt, deleteFunctionSecret as L, GetStorageStatsErrors as La, StartAgentSignupErrors as Lc, GateDenial as Li, UpdateEndpointResponse as Ll, CreateFilterInput as Ln, ListFunctionSecretsResponse as Lo, DiscardEmailContentResponses as Lr, RotateWebhookSecretResponses as Ls, verifyCliSignup as Lt, deleteDomain as M, GetSentEmailErrors as Ma, StartAgentClaimInput as Mc, FunctionTestRunOutboundRequest as Mi, UpdateDomainResponses as Ml, CreateEndpointResponse as Mn, ListFunctionLogsResponse as Mo, DiscardContentResult as Mr, ResourceId as Ms, updateEndpoint as Mt, Auth as Mu, deleteEmail as N, GetSentEmailResponse as Na, StartAgentClaimResponse as Nc, FunctionTestRunReply as Ni, UpdateEndpointData as Nl, CreateEndpointResponses as Nn, ListFunctionLogsResponses as No, DiscardEmailContentData as Nr, RotateWebhookSecretData as Ns, updateFilter as Nt, createEndpoint as O, GetSendPermissionsResponse as Oa, SetFunctionSecretResponses as Oc, FunctionTestRun as Oi, UpdateDomainError as Ol, CreateEndpointData as On, ListFiltersResponses as Oo, DeleteFunctionSecretResponse as Or, ResendCliSignupVerificationErrors as Os, testFunction as Ot, RequestOptions$2 as Ou, deleteEndpoint as P, GetSentEmailResponses as Pa, StartAgentClaimResponses as Pc, FunctionTestRunSend as Pi, UpdateEndpointError as Pl, CreateFilterData as Pn, ListFunctionSecretsData as Po, DiscardEmailContentError as Pr, RotateWebhookSecretError as Ps, updateFunction as Pt, getStorageStats as Q, InboxStatusEndpointSummary as Qa, StartCliSignupResponses as Qc, GetEmailResponse as Qi, VerifyAgentClaimData as Ql, CreateFunctionSecretResponses as Qn, PollCliLoginData as Qo, DownloadRawEmailData as Qr, SemanticSearchResult as Qs, AgentOrgRef as Qt, discardEmailContent as R, GetStorageStatsResponse as Ra, StartAgentSignupInput as Rc, GateFix as Ri, UpdateEndpointResponses as Rl, CreateFilterResponse as Rn, ListFunctionSecretsResponses as Ro, DkimSignature as Rr, RoutingTopology as Rs, verifyDomain as Rt, RequestOptions$1 as S, GetOrgRoutingTopologyErrors as Sa, SetFunctionRouteResponses as Sc, FunctionLogRow as Si, UpdateAccountError as Sl, CreateAgentClaimLinkData as Sn, ListEndpointsResponses as So, DeleteFunctionErrors as Sr, ResendAgentSignupVerificationErrors as Ss, setFunctionSecret as St, createClient as Su, cliLogout as T, GetSendPermissionsData as Ta, SetFunctionSecretErrors as Tc, FunctionRouting as Ti, UpdateAccountResponse as Tl, CreateAgentClaimLinkInput as Tn, ListFiltersError as To, DeleteFunctionSecretData as Tr, ResendAgentSignupVerificationResponses as Ts, startCliLogin as Tt, Config as Tu, getConversation as U, GetThreadResponse as Ua, StartCliLoginErrors as Uc, GetAccountResponses as Ui, UpdateFilterResponse as Ul, CreateFunctionInput as Un, ListFunctionsResponses as Uo, DownloadAttachmentsError as Ur, SearchEmailsResponses as Us, AddDomainErrors as Ut, downloadRawEmail as V, GetThreadError as Va, StartCliLoginData as Vc, GetAccountErrors as Vi, UpdateFilterErrors as Vl, CreateFunctionError as Vn, ListFunctionsErrors as Vo, DomainVerifyResult as Vr, SearchEmailsErrors as Vs, AddDomainData as Vt, getEmail as W, GetThreadResponses as Wa, StartCliLoginInput as Wc, GetConversationData as Wi, UpdateFilterResponses as Wl, CreateFunctionResponse as Wn, ListSentEmailsData as Wo, DownloadAttachmentsErrors as Wr, SemanticSearchCoverage as Ws, AddDomainInput as Wt, getSendPermissions as X, InboxStatus as Xa, StartCliSignupInput as Xc, GetEmailError as Xi, UpdateFunctionResponses as Xl, CreateFunctionSecretInput as Xn, ParsedEmailData as Xo, DownloadDomainZoneFileResponse as Xr, SemanticSearchMeta as Xs, AgentClaimResult as Xt, getOrgRoutingTopology as Y, GetWebhookSecretResponses as Ya, StartCliSignupErrors as Yc, GetEmailData as Yi, UpdateFunctionResponse as Yl, CreateFunctionSecretErrors as Yn, PaginationMeta as Yo, DownloadDomainZoneFileErrors as Yr, SemanticSearchInput as Ys, AgentClaimLinkResult as Yt, getSentEmail as Z, InboxStatusDomain as Za, StartCliSignupResponse as Zc, GetEmailErrors as Zi, VerifiedDomain as Zl, CreateFunctionSecretResponse as Zn, PlanLimits as Zo, DownloadDomainZoneFileResponses as Zr, SemanticSearchResponses as Zs, AgentClaimStartResult as Zt, DEFAULT_API_BASE_URL as _, GetInboxStatusErrors as _a, SentEmailSummary as _c, ErrorResponse as _i, UnsetFunctionRouteErrors as _l, CreateAgentAccountError as _n, ListEmailsResponses as _o, DeleteFilterErrors as _r, ReplyToEmailErrors as _s, sdk_gen_d_exports as _t, VerifyDomainError as _u, ReplyInput as a, GetFunctionRoutingData as aa, SendEmailResponses as ac, EmailAuth as ai, TestEndpointResponses as al, CliLogoutError as an, ListDeliveriesErrors as ao, DeleteEmailData as ar, ReplayDeliveryError as as, listFilters as at, VerifyAgentSignupError as au, PrimitiveApiError as b, GetOrgRoutingTopologyData as ba, SetFunctionRouteErrors as bc, FunctionDetail as bi, UnverifiedDomain as bl, CreateAgentAccountResponse as bn, ListEndpointsErrors as bo, DeleteFunctionData as br, ResendAgentSignupVerificationData as bs, sendEmail as bt, VerifyDomainResponses as bu, SendAttachment as c, GetFunctionRoutingResponse as ca, SendMailResult as cc, EmailSearchFacetBucket as ci, TestFunctionErrors as cl, CliLogoutResponse as cn, ListDomainsData as co, DeleteEmailResponse as cr, ReplayDeliveryResponses as cs, listFunctions as ct, VerifyAgentSignupResponse as cu, SendThreadInput as d, GetFunctionTestRunTraceError as da, SendPermissionManagedZone as dc, EmailSearchMeta as di, TestInvocationResult as dl, CliSignupResendResult as dn, ListDomainsResponse as do, DeleteEndpointError as dr, ReplayEmailWebhooksErrors as ds, replayDelivery as dt, VerifyCliSignupError as du, GetFunctionData as ea, SemanticSearchSnippet as ec, DownloadRawEmailErrors as ei, SuccessEnvelope as el, AgentSignupStartResult as en, InboxStatusNextAction as eo, DeleteDomainData as er, PollCliLoginErrors as es, getWebhookSecret as et, VerifyAgentClaimErrors as eu, client as f, GetFunctionTestRunTraceErrors as fa, SendPermissionRule as fc, EmailSearchResult as fi, TestResult as fl, CliSignupStartResult as fn, ListDomainsResponses as fo, DeleteEndpointErrors as fr, ReplayEmailWebhooksResponse as fs, replayEmailWebhooks as ft, VerifyCliSignupErrors as fu, verifyWebhookSignature as g, GetInboxStatusError as ga, SentEmailStatus as gc, Endpoint as gi, UnsetFunctionRouteError as gl, CreateAgentAccountData as gn, ListEmailsResponse as go, DeleteFilterError as gr, ReplyToEmailError as gs, rotateWebhookSecret as gt, VerifyDomainData as gu, VerifyOptions as h, GetInboxStatusData as ha, SentEmailDetail as hc, EmailWebhookStatus as hi, UnsetFunctionRouteData as hl, ConversationMessage as hn, ListEmailsErrors as ho, DeleteFilterData as hr, ReplyToEmailData as hs, resendCliSignupVerification as ht, VerifyCliSignupResponses as hu, PrimitiveClientOptions as i, GetFunctionResponses as ia, SendEmailResponse as ic, EmailAttachment as ii, TestEndpointResponse as il, CliLogoutData as in, ListDeliveriesError as io, DeleteDomainResponses as ir, ReplayDeliveryData as is, listEndpoints as it, VerifyAgentSignupData as iu, createFunctionSecret as j, GetSentEmailError as ja, StartAgentClaimErrors as jc, FunctionTestRunInboundEmail as ji, UpdateDomainResponse as jl, CreateEndpointInput as jn, ListFunctionLogsErrors as jo, DeliverySummary as jr, ResendCliSignupVerificationResponses as js, updateDomain as jt, createConfig as ju, createFilter as k, GetSendPermissionsResponses as ka, StartAgentClaimData as kc, FunctionTestRunDelivery as ki, UpdateDomainErrors as kl, CreateEndpointError as kn, ListFunctionLogsData as ko, DeleteFunctionSecretResponses as kr, ResendCliSignupVerificationInput as ks, unsetFunctionRoute as kt, RequestResult as ku, SendInput as l, GetFunctionRoutingResponses as la, SendPermissionAddress as lc, EmailSearchFacets as li, TestFunctionResponse as ll, CliLogoutResponses as ln, ListDomainsError as lo, DeleteEmailResponses as lr, ReplayEmailWebhooksData as ls, listSentEmails as lt, VerifyAgentSignupResponses as lu, PRIMITIVE_SIGNATURE_HEADER as m, GetFunctionTestRunTraceResponses as ma, SendPermissionsMeta as mc, EmailSummary as mi, ThreadMessage as ml, Conversation as mn, ListEmailsError as mo, DeleteEndpointResponses as mr, ReplayResult as ms, resendAgentSignupVerification as mt, VerifyCliSignupResponse as mu, ForwardInput as n, GetFunctionErrors as na, SendEmailError as nc, DownloadRawEmailResponses as ni, TestEndpointError as nl, CliLoginPollResult as nn, Limit as no, DeleteDomainErrors as nr, PollCliLoginResponse as ns, listDomains as nt, VerifyAgentClaimResponse as nu, RequestOptions as o, GetFunctionRoutingError as oa, SendMailAttachment as oc, EmailDetail as oi, TestFunctionData as ol, CliLogoutErrors as on, ListDeliveriesResponse as oo, DeleteEmailError as or, ReplayDeliveryErrors as os, listFunctionLogs as ot, VerifyAgentSignupErrors as ou, createPrimitiveClient as p, GetFunctionTestRunTraceResponse as pa, SendPermissionYourDomain as pc, EmailStatus as pi, Thread as pl, CliSignupVerifyResult as pn, ListEmailsData as po, DeleteEndpointResponse as pr, ReplayEmailWebhooksResponses as ps, replyToEmail as pt, VerifyCliSignupInput as pu, getFunctionTestRunTrace as q, GetWebhookSecretErrors as qa, StartCliSignupData as qc, GetConversationResponse as qi, UpdateFunctionErrors as ql, CreateFunctionSecretData as qn, ListSentEmailsResponse as qo, DownloadDomainZoneFileData as qr, SemanticSearchErrors as qs, AgentAccountResult as qt, PrimitiveClient as r, GetFunctionResponse as ra, SendEmailErrors as rc, EmailAddress as ri, TestEndpointErrors as rl, CliLoginStartResult as rn, ListDeliveriesData as ro, DeleteDomainResponse as rr, PollCliLoginResponses as rs, listEmails as rt, VerifyAgentClaimResponses as ru, SemanticSearchResponse as s, GetFunctionRoutingErrors as sa, SendMailInput as sc, EmailDetailReply as si, TestFunctionError as sl, CliLogoutInput as sn, ListDeliveriesResponses as so, DeleteEmailErrors as sr, ReplayDeliveryResponse as ss, listFunctionSecrets as st, VerifyAgentSignupInput as su, AgentResource as t, GetFunctionError as ta, SendEmailData as tc, DownloadRawEmailResponse as ti, TestEndpointData as tl, AgentSignupVerifyResult as tn, InboxStatusRecentEmailSummary as to, DeleteDomainError as tr, PollCliLoginInput as ts, listDeliveries as tt, VerifyAgentClaimInput as tu, SendResult as u, GetFunctionTestRunTraceData as ua, SendPermissionAnyRecipient as uc, EmailSearchHighlights as ui, TestFunctionResponses as ul, CliLogoutResult as un, ListDomainsErrors as uo, DeleteEndpointData as ur, ReplayEmailWebhooksError as us, pollCliLogin as ut, VerifyCliSignupData as uu, PrimitiveApiClient as v, GetInboxStatusResponse as va, SetFunctionRouteData as vc, Filter as vi, UnsetFunctionRouteResponse as vl, CreateAgentAccountErrors as vn, ListEndpointsData as vo, DeleteFilterResponse as vr, ReplyToEmailResponse as vs, searchEmails as vt, VerifyDomainErrors as vu, addDomain as w, GetOrgRoutingTopologyResponses as wa, SetFunctionSecretError as wc, FunctionRouteResult as wi, UpdateAccountInput as wl, CreateAgentClaimLinkErrors as wn, ListFiltersData as wo, DeleteFunctionResponses as wr, ResendAgentSignupVerificationResponse as ws, startAgentSignup as wt, ClientOptions as wu, PrimitiveApiErrorDetails as x, GetOrgRoutingTopologyError as xa, SetFunctionRouteResponse as xc, FunctionListItem as xi, UpdateAccountData as xl, CreateAgentAccountResponses as xn, ListEndpointsResponse as xo, DeleteFunctionError as xr, ResendAgentSignupVerificationError as xs, setFunctionRoute as xt, WebhookSecret as xu, PrimitiveApiClientOptions as y, GetInboxStatusResponses as ya, SetFunctionRouteError as yc, FunctionDeployStatus as yi, UnsetFunctionRouteResponses as yl, CreateAgentAccountInput as yn, ListEndpointsError as yo, DeleteFilterResponses as yr, ReplyToEmailResponses as ys, semanticSearch as yt, VerifyDomainResponse as yu, downloadAttachments as z, GetStorageStatsResponses as za, StartAgentSignupResponse as zc, GetAccountData as zi, UpdateFilterData as zl, CreateFilterResponses as zn, ListFunctionsData as zo, Domain as zr, SearchEmailsData as zs, Account as zt };
7120
+ export { getConversation as $, GetSentEmailData as $a, SetFunctionSecretData as $c, FunctionTestRunDeliveryEndpoint as $i, UnsetFunctionRouteErrors as $l, CreateFunctionError as $n, ListFunctionLogsError as $o, DeliveryStatus as $r, ResendAgentSignupVerificationInput as $s, AddDomainData as $t, VerifyDomainError as $u, RequestOptions$1 as A, GetFunctionRoutingErrors as Aa, SemanticSearchSnippet as Ac, EmailDetailReply as Ai, StartCliSignupError as Al, CreateAgentAccountErrors as An, ListDeliveriesResponses as Ao, DeleteEndpointErrors as Ar, PollCliLoginErrors as As, semanticSearch as At, UpdateFunctionInput as Au, createOrgSecret as B, GetInboxStatusErrors as Ba, SendPermissionAnyRecipient as Bc, ErrorResponse as Bi, TestEndpointResponse as Bl, CreateEndpointData as Bn, ListEmailsResponses as Bo, DeleteFunctionErrors as Br, ReplayEmailWebhooksError as Bs, testFunction as Bt, VerifyAgentSignupData as Bu, VerifyOptions as C, GetFunctionData as Ca, SemanticSearchErrors as Cc, DownloadRawEmailErrors as Ci, StartCliLoginData as Cl, CliSignupResendResult as Cn, InboxStatusNextAction as Co, DeleteEmailData as Cr, OrgSecretListItem as Cs, replayEmailWebhooks as Ct, UpdateFilterErrors as Cu, PrimitiveApiClientOptions as D, GetFunctionResponses as Da, SemanticSearchResponses as Dc, EmailAttachment as Di, StartCliLoginResponse as Dl, ConversationMessage as Dn, ListDeliveriesError as Do, DeleteEmailResponses as Dr, PlanLimits as Ds, rotateWebhookSecret as Dt, UpdateFunctionData as Du, PrimitiveApiClient as E, GetFunctionResponse as Ea, SemanticSearchMeta as Ec, EmailAddress as Ei, StartCliLoginInput as El, Conversation as En, ListDeliveriesData as Eo, DeleteEmailResponse as Er, ParsedEmailData as Es, resendCliSignupVerification as Et, UpdateFilterResponses as Eu, createAgentClaimLink as F, GetFunctionTestRunTraceErrors as Fa, SendEmailResponses as Fc, EmailSearchResult as Fi, StorageStats as Fl, CreateAgentClaimLinkError as Fn, ListDomainsResponses as Fo, DeleteFilterErrors as Fr, ReplayDeliveryError as Fs, startAgentClaim as Ft, VerifyAgentClaimError as Fu, deleteFunction as G, GetOrgRoutingTopologyErrors as Ga, SentEmailDetail as Gc, FunctionLogRow as Gi, TestFunctionResponse as Gl, CreateEndpointResponses as Gn, ListEndpointsResponses as Go, DeleteFunctionSecretErrors as Gr, ReplyToEmailData as Gs, updateFilter as Gt, VerifyAgentSignupResponses as Gu, deleteEmail as H, GetInboxStatusResponses as Ha, SendPermissionRule as Hc, FunctionDeployStatus as Hi, TestFunctionData as Hl, CreateEndpointErrors as Hn, ListEndpointsError as Ho, DeleteFunctionResponses as Hr, ReplayEmailWebhooksResponse as Hs, updateAccount as Ht, VerifyAgentSignupErrors as Hu, createEndpoint as I, GetFunctionTestRunTraceResponse as Ia, SendMailAttachment as Ic, EmailStatus as Ii, SuccessEnvelope as Il, CreateAgentClaimLinkErrors as In, ListEmailsData as Io, DeleteFilterResponse as Ir, ReplayDeliveryErrors as Is, startAgentSignup as It, VerifyAgentClaimErrors as Iu, discardEmailContent as J, GetSendPermissionsData as Ja, SetFunctionRouteData as Jc, FunctionRouting as Ji, TestResult as Jl, CreateFilterErrors as Jn, ListFiltersError as Jo, DeleteOrgSecretData as Jr, ReplyToEmailResponse as Js, verifyAgentSignup as Jt, VerifyCliSignupErrors as Ju, deleteFunctionSecret as K, GetOrgRoutingTopologyResponse as Ka, SentEmailStatus as Kc, FunctionRouteBody as Ki, TestFunctionResponses as Kl, CreateFilterData as Kn, ListEnvelope as Ko, DeleteFunctionSecretResponse as Kr, ReplyToEmailError as Ks, updateFunction as Kt, VerifyCliSignupData as Ku, createFilter as L, GetFunctionTestRunTraceResponses as La, SendMailInput as Lc, EmailSummary as Li, TestEndpointData as Ll, CreateAgentClaimLinkInput as Ln, ListEmailsError as Lo, DeleteFilterResponses as Lr, ReplayDeliveryResponse as Ls, startCliLogin as Lt, VerifyAgentClaimInput as Lu, addDomain as M, GetFunctionRoutingResponses as Ma, SendEmailError as Mc, EmailSearchFacets as Mi, StartCliSignupInput as Ml, CreateAgentAccountResponse as Mn, ListDomainsError as Mo, DeleteEndpointResponses as Mr, PollCliLoginResponse as Ms, setFunctionRoute as Mt, UpdateFunctionResponses as Mu, cliLogout as N, GetFunctionTestRunTraceData as Na, SendEmailErrors as Nc, EmailSearchHighlights as Ni, StartCliSignupResponse as Nl, CreateAgentAccountResponses as Nn, ListDomainsErrors as No, DeleteFilterData as Nr, PollCliLoginResponses as Ns, setFunctionSecret as Nt, VerifiedDomain as Nu, PrimitiveApiError as O, GetFunctionRoutingData as Oa, SemanticSearchResult as Oc, EmailAuth as Oi, StartCliLoginResponses as Ol, CreateAgentAccountData as On, ListDeliveriesErrors as Oo, DeleteEndpointData as Or, PollCliLoginData as Os, sdk_gen_d_exports as Ot, UpdateFunctionError as Ou, createAgentAccount as P, GetFunctionTestRunTraceError as Pa, SendEmailResponse as Pc, EmailSearchMeta as Pi, StartCliSignupResponses as Pl, CreateAgentClaimLinkData as Pn, ListDomainsResponse as Po, DeleteFilterError as Pr, ReplayDeliveryData as Ps, setOrgSecret as Pt, VerifyAgentClaimData as Pu, getAccount as Q, GetSendPermissionsResponses as Qa, SetFunctionRouteResponses as Qc, FunctionTestRunDelivery as Qi, UnsetFunctionRouteError as Ql, CreateFunctionData as Qn, ListFunctionLogsData as Qo, DeleteOrgSecretResponses as Qr, ResendAgentSignupVerificationErrors as Qs, AccountUpdated as Qt, VerifyDomainData as Qu, createFunction as R, GetInboxStatusData as Ra, SendMailResult as Rc, EmailWebhookStatus as Ri, TestEndpointError as Rl, CreateAgentClaimLinkResponse as Rn, ListEmailsErrors as Ro, DeleteFunctionData as Rr, ReplayDeliveryResponses as Rs, startCliSignup as Rt, VerifyAgentClaimResponse as Ru, PRIMITIVE_SIGNATURE_HEADER as S, GetEmailResponses as Sa, SemanticSearchError as Sc, DownloadRawEmailError as Si, StartAgentSignupResponses as Sl, CliLogoutResult as Sn, InboxStatusFunctionSummary as So, DeleteDomainResponses as Sr, ListSentEmailsResponses as Ss, replayDelivery as St, UpdateFilterError as Su, DEFAULT_API_BASE_URL as T, GetFunctionErrors as Ta, SemanticSearchInput as Tc, DownloadRawEmailResponses as Ti, StartCliLoginErrors as Tl, CliSignupVerifyResult as Tn, Limit as To, DeleteEmailErrors as Tr, PaginationMeta as Ts, resendAgentSignupVerification as Tt, UpdateFilterResponse as Tu, deleteEndpoint as U, GetOrgRoutingTopologyData as Ua, SendPermissionYourDomain as Uc, FunctionDetail as Ui, TestFunctionError as Ul, CreateEndpointInput as Un, ListEndpointsErrors as Uo, DeleteFunctionSecretData as Ur, ReplayEmailWebhooksResponses as Us, updateDomain as Ut, VerifyAgentSignupInput as Uu, deleteDomain as V, GetInboxStatusResponse as Va, SendPermissionManagedZone as Vc, Filter as Vi, TestEndpointResponses as Vl, CreateEndpointError as Vn, ListEndpointsData as Vo, DeleteFunctionResponse as Vr, ReplayEmailWebhooksErrors as Vs, unsetFunctionRoute as Vt, VerifyAgentSignupError as Vu, deleteFilter as W, GetOrgRoutingTopologyError as Wa, SendPermissionsMeta as Wc, FunctionListItem as Wi, TestFunctionErrors as Wl, CreateEndpointResponse as Wn, ListEndpointsResponse as Wo, DeleteFunctionSecretError as Wr, ReplayResult as Ws, updateEndpoint as Wt, VerifyAgentSignupResponse as Wu, downloadDomainZoneFile as X, GetSendPermissionsErrors as Xa, SetFunctionRouteErrors as Xc, FunctionSecretWriteResult as Xi, ThreadMessage as Xl, CreateFilterResponse as Xn, ListFiltersResponse as Xo, DeleteOrgSecretErrors as Xr, ResendAgentSignupVerificationData as Xs, verifyDomain as Xt, VerifyCliSignupResponse as Xu, downloadAttachments as Y, GetSendPermissionsError as Ya, SetFunctionRouteError as Yc, FunctionSecretListItem as Yi, Thread as Yl, CreateFilterInput as Yn, ListFiltersErrors as Yo, DeleteOrgSecretError as Yr, ReplyToEmailResponses as Ys, verifyCliSignup as Yt, VerifyCliSignupInput as Yu, downloadRawEmail as Z, GetSendPermissionsResponse as Za, SetFunctionRouteResponse as Zc, FunctionTestRun as Zi, UnsetFunctionRouteData as Zl, CreateFilterResponses as Zn, ListFiltersResponses as Zo, DeleteOrgSecretResponse as Zr, ResendAgentSignupVerificationError as Zs, Account as Zt, VerifyCliSignupResponses as Zu, SendThreadInput as _, GetConversationResponses as _a, SearchEmailsErrors as _c, DownloadDomainZoneFileError as _i, StartAgentSignupData as _l, CliLogoutError as _n, GetWebhookSecretResponse as _o, Cursor as _r, ListOrgSecretsResponses as _s, listFunctionSecrets as _t, UpdateEndpointErrors as _u, ForwardInput as a, FunctionTestRunTrace as aa, ResendCliSignupVerificationInput as ac, Client as ad, DiscardEmailContentResponse as ai, SetOrgSecretData as al, AgentAccountResult as an, GetStorageStatsError as ao, CreateFunctionSecretData as ar, ListFunctionSecretsErrors as as, getOrgRoutingTopology as at, UpdateAccountErrors as au, createAgent as b, GetEmailErrors as ba, SemanticSearchCoverage as bc, DownloadDomainZoneFileResponses as bi, StartAgentSignupInput as bl, CliLogoutResponse as bn, InboxStatusDomain as bo, DeleteDomainErrors as br, ListSentEmailsErrors as bs, listSentEmails as bt, UpdateEndpointResponses as bu, InboxStreamOptions as c, GetAccountData as ca, ResourceId as cc, CreateClientConfig as cd, Domain as ci, SetOrgSecretInput as cl, AgentClaimResult as cn, GetStorageStatsResponses as co, CreateFunctionSecretInput as cr, ListFunctionsData as cs, getStorageStats as ct, UpdateAccountResponses as cu, ReplyInput as d, GetAccountResponse as da, RotateWebhookSecretErrors as dc, RequestResult as dd, DownloadAttachmentsData as di, StartAgentClaimData as dl, AgentSignupResendResult as dn, GetThreadErrors as do, CreateOrgSecretData as dr, ListFunctionsResponse as ds, listDeliveries as dt, UpdateDomainErrors as du, FunctionTestRunInboundEmail as ea, ResendAgentSignupVerificationResponse as ec, VerifyDomainErrors as ed, DeliverySummary as ei, SetFunctionSecretError as el, AddDomainError as en, GetSentEmailError as eo, CreateFunctionErrors as er, ListFunctionLogsErrors as es, getEmail as et, UnsetFunctionRouteResponse as eu, RequestOptions as f, GetAccountResponses as fa, RotateWebhookSecretResponse as fc, ResponseStyle as fd, DownloadAttachmentsError as fi, StartAgentClaimError as fl, AgentSignupStartResult as fn, GetThreadResponse as fo, CreateOrgSecretError as fr, ListFunctionsResponses as fs, listDomains as ft, UpdateDomainInput as fu, SendResult as g, GetConversationResponse as ga, SearchEmailsError as gc, DownloadDomainZoneFileData as gi, StartAgentClaimResponses as gl, CliLogoutData as gn, GetWebhookSecretErrors as go, CreateOrgSecretResponses as gr, ListOrgSecretsResponse as gs, listFunctionLogs as gt, UpdateEndpointError as gu, SendInput as h, GetConversationErrors as ha, SearchEmailsData as hc, DownloadAttachmentsResponses as hi, StartAgentClaimResponse as hl, CliLoginStartResult as hn, GetWebhookSecretError as ho, CreateOrgSecretResponse as hr, ListOrgSecretsErrors as hs, listFilters as ht, UpdateEndpointData as hu, CreatedAgent as i, FunctionTestRunState as ia, ResendCliSignupVerificationErrors as ic, createClient as id, DiscardEmailContentErrors as ii, SetFunctionSecretResponses as il, AddDomainResponses as in, GetStorageStatsData as io, CreateFunctionResult as ir, ListFunctionSecretsError as is, getInboxStatus as it, UpdateAccountError as iu, createPrimitiveApiClient as j, GetFunctionRoutingResponse as ja, SendEmailData as jc, EmailSearchFacetBucket as ji, StartCliSignupErrors as jl, CreateAgentAccountInput as jn, ListDomainsData as jo, DeleteEndpointResponse as jr, PollCliLoginInput as js, sendEmail as jt, UpdateFunctionResponse as ju, PrimitiveApiErrorDetails as k, GetFunctionRoutingError as ka, SemanticSearchScoreBreakdown as kc, EmailDetail as ki, StartCliSignupData as kl, CreateAgentAccountError as kn, ListDeliveriesResponse as ko, DeleteEndpointError as kr, PollCliLoginError as ks, searchEmails as kt, UpdateFunctionErrors as ku, PrimitiveClient as l, GetAccountError as la, RotateWebhookSecretData as lc, Options$1 as ld, DomainDnsRecord as li, SetOrgSecretResponse as ll, AgentClaimStartResult as ln, GetThreadData as lo, CreateFunctionSecretResponse as lr, ListFunctionsError as ls, getThread as lt, UpdateDomainData as lu, SendAttachment as m, GetConversationError as ma, RoutingTopology as mc, Auth as md, DownloadAttachmentsResponse as mi, StartAgentClaimInput as ml, CliLoginPollResult as mn, GetWebhookSecretData as mo, CreateOrgSecretInput as mr, ListOrgSecretsError as ms, listEndpoints as mt, UpdateDomainResponses as mu, AgentResource as n, FunctionTestRunReply as na, ResendCliSignupVerificationData as nc, VerifyDomainResponses as nd, DiscardEmailContentData as ni, SetFunctionSecretInput as nl, AddDomainInput as nn, GetSentEmailResponse as no, CreateFunctionResponse as nr, ListFunctionLogsResponses as ns, getFunctionRouting as nt, UnverifiedDomain as nu, InboundEmail as o, GateDenial as oa, ResendCliSignupVerificationResponse as oc, ClientOptions as od, DiscardEmailContentResponses as oi, SetOrgSecretError as ol, AgentAccountUpgradeHint as on, GetStorageStatsErrors as oo, CreateFunctionSecretError as or, ListFunctionSecretsResponse as os, getSendPermissions as ot, UpdateAccountInput as ou, SemanticSearchResponse as p, GetConversationData as pa, RotateWebhookSecretResponses as pc, createConfig as pd, DownloadAttachmentsErrors as pi, StartAgentClaimErrors as pl, AgentSignupVerifyResult as pn, GetThreadResponses as po, CreateOrgSecretErrors as pr, ListOrgSecretsData as ps, listEmails as pt, UpdateDomainResponse as pu, deleteOrgSecret as q, GetOrgRoutingTopologyResponses as qa, SentEmailSummary as qc, FunctionRouteResult as qi, TestInvocationResult as ql, CreateFilterError as qn, ListFiltersData as qo, DeleteFunctionSecretResponses as qr, ReplyToEmailErrors as qs, verifyAgentClaim as qt, VerifyCliSignupError as qu, CreateAgentOptions as r, FunctionTestRunSend as ra, ResendCliSignupVerificationError as rc, WebhookSecret as rd, DiscardEmailContentError as ri, SetFunctionSecretResponse as rl, AddDomainResponse as rn, GetSentEmailResponses as ro, CreateFunctionResponses as rr, ListFunctionSecretsData as rs, getFunctionTestRunTrace as rt, UpdateAccountData as ru, InboxResource as s, GateFix as sa, ResendCliSignupVerificationResponses as sc, Config as sd, DkimSignature as si, SetOrgSecretErrors as sl, AgentClaimLinkResult as sn, GetStorageStatsResponse as so, CreateFunctionSecretErrors as sr, ListFunctionSecretsResponses as ss, getSentEmail as st, UpdateAccountResponse as su, AccountResource as t, FunctionTestRunOutboundRequest as ta, ResendAgentSignupVerificationResponses as tc, VerifyDomainResponse as td, DiscardContentResult as ti, SetFunctionSecretErrors as tl, AddDomainErrors as tn, GetSentEmailErrors as to, CreateFunctionInput as tr, ListFunctionLogsResponse as ts, getFunction as tt, UnsetFunctionRouteResponses as tu, PrimitiveClientOptions as u, GetAccountErrors as ua, RotateWebhookSecretError as uc, RequestOptions$2 as ud, DomainVerifyResult as ui, SetOrgSecretResponses as ul, AgentOrgRef as un, GetThreadError as uo, CreateFunctionSecretResponses as ur, ListFunctionsErrors as us, getWebhookSecret as ut, UpdateDomainError as uu, WaitForNextOptions as v, GetEmailData as va, SearchEmailsResponse as vc, DownloadDomainZoneFileErrors as vi, StartAgentSignupError as vl, CliLogoutErrors as vn, GetWebhookSecretResponses as vo, DeleteDomainData as vr, ListSentEmailsData as vs, listFunctions as vt, UpdateEndpointInput as vu, verifyWebhookSignature as w, GetFunctionError as wa, SemanticSearchField as wc, DownloadRawEmailResponse as wi, StartCliLoginError as wl, CliSignupStartResult as wn, InboxStatusRecentEmailSummary as wo, DeleteEmailError as wr, OrgSecretWriteResult as ws, replyToEmail as wt, UpdateFilterInput as wu, createPrimitiveClient as x, GetEmailResponse as xa, SemanticSearchData as xc, DownloadRawEmailData as xi, StartAgentSignupResponse as xl, CliLogoutResponses as xn, InboxStatusEndpointSummary as xo, DeleteDomainResponse as xr, ListSentEmailsResponse as xs, pollCliLogin as xt, UpdateFilterData as xu, client as y, GetEmailError as ya, SearchEmailsResponses as yc, DownloadDomainZoneFileResponse as yi, StartAgentSignupErrors as yl, CliLogoutInput as yn, InboxStatus as yo, DeleteDomainError as yr, ListSentEmailsError as ys, listOrgSecrets as yt, UpdateEndpointResponse as yu, createFunctionSecret as z, GetInboxStatusError as za, SendPermissionAddress as zc, Endpoint as zi, TestEndpointErrors as zl, CreateAgentClaimLinkResponses as zn, ListEmailsResponse as zo, DeleteFunctionError as zr, ReplayEmailWebhooksData as zs, testEndpoint as zt, VerifyAgentClaimResponses as zu };