@primitivedotdev/sdk 0.35.2 → 0.36.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/api/index.d.ts +2 -2
- package/dist/api/index.js +3 -3
- package/dist/{api-COmUIWhS.js → api-Cxq2cH8Q.js} +92 -10
- package/dist/{index-Imm1lbB_.d.ts → index-9uc511Ei.d.ts} +272 -8
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/openapi/index.js +1 -1
- package/dist/{operations.generated-CgJWP2sH.js → operations.generated-CsHewGFi.js} +574 -4
- package/package.json +1 -1
|
@@ -2610,6 +2610,93 @@ type TestInvocationResult = {
|
|
|
2610
2610
|
*/
|
|
2611
2611
|
trace_url: string;
|
|
2612
2612
|
};
|
|
2613
|
+
/**
|
|
2614
|
+
* A single route binding for a function. `domain` is null when the
|
|
2615
|
+
* binding is the org's fallback (any active domain without a scoped
|
|
2616
|
+
* binding); otherwise it carries the scoped domain. `rules` is
|
|
2617
|
+
* reserved for future routing predicates.
|
|
2618
|
+
*
|
|
2619
|
+
*/
|
|
2620
|
+
type FunctionRouting = {
|
|
2621
|
+
endpoint_id: string;
|
|
2622
|
+
enabled: boolean;
|
|
2623
|
+
domain: {
|
|
2624
|
+
id: string;
|
|
2625
|
+
name?: string | null;
|
|
2626
|
+
} | null;
|
|
2627
|
+
/**
|
|
2628
|
+
* Future routing predicates. Currently empty.
|
|
2629
|
+
*/
|
|
2630
|
+
rules: {
|
|
2631
|
+
[key: string]: unknown;
|
|
2632
|
+
};
|
|
2633
|
+
delivery_count?: number;
|
|
2634
|
+
success_count?: number;
|
|
2635
|
+
failure_count?: number;
|
|
2636
|
+
consecutive_fails?: number;
|
|
2637
|
+
last_delivery_at?: string | null;
|
|
2638
|
+
last_success_at?: string | null;
|
|
2639
|
+
last_failure_at?: string | null;
|
|
2640
|
+
};
|
|
2641
|
+
/**
|
|
2642
|
+
* Org-wide map of function routing: which domain points at which
|
|
2643
|
+
* function, the org's fallback binding (if any), and every
|
|
2644
|
+
* deployed function with no route currently bound.
|
|
2645
|
+
*
|
|
2646
|
+
*/
|
|
2647
|
+
type RoutingTopology = {
|
|
2648
|
+
domains: Array<{
|
|
2649
|
+
domain_id: string;
|
|
2650
|
+
domain: string;
|
|
2651
|
+
routed_function: {
|
|
2652
|
+
id: string;
|
|
2653
|
+
name: string;
|
|
2654
|
+
} | null;
|
|
2655
|
+
endpoint_enabled: boolean | null;
|
|
2656
|
+
}>;
|
|
2657
|
+
fallback_function: {
|
|
2658
|
+
id: string;
|
|
2659
|
+
name: string;
|
|
2660
|
+
} | null;
|
|
2661
|
+
fallback_enabled: boolean | null;
|
|
2662
|
+
unrouted_functions: Array<{
|
|
2663
|
+
id: string;
|
|
2664
|
+
name: string;
|
|
2665
|
+
}>;
|
|
2666
|
+
};
|
|
2667
|
+
/**
|
|
2668
|
+
* Target for a route binding. Either a specific verified domain
|
|
2669
|
+
* (scoped) or the org-wide fallback. Pass `takeover: true` to
|
|
2670
|
+
* deactivate any conflicting binding before installing this one.
|
|
2671
|
+
*
|
|
2672
|
+
*/
|
|
2673
|
+
type FunctionRouteBody = {
|
|
2674
|
+
target: {
|
|
2675
|
+
kind: 'domain';
|
|
2676
|
+
domainId: string;
|
|
2677
|
+
} | {
|
|
2678
|
+
kind: 'fallback';
|
|
2679
|
+
};
|
|
2680
|
+
/**
|
|
2681
|
+
* When true, deactivate any conflicting binding before installing this one.
|
|
2682
|
+
*/
|
|
2683
|
+
takeover?: boolean;
|
|
2684
|
+
};
|
|
2685
|
+
/**
|
|
2686
|
+
* On success, carries the new `routing`. On conflict, carries
|
|
2687
|
+
* `conflict` describing the binding holder so the caller can
|
|
2688
|
+
* re-issue with `takeover: true`.
|
|
2689
|
+
*
|
|
2690
|
+
*/
|
|
2691
|
+
type FunctionRouteResult = {
|
|
2692
|
+
routing?: FunctionRouting | unknown;
|
|
2693
|
+
conflict?: {
|
|
2694
|
+
kind: 'http' | 'function';
|
|
2695
|
+
functionId?: string | null;
|
|
2696
|
+
functionName?: string | null;
|
|
2697
|
+
url?: string | null;
|
|
2698
|
+
};
|
|
2699
|
+
};
|
|
2613
2700
|
/**
|
|
2614
2701
|
* High-level state for a function test run trace:
|
|
2615
2702
|
* - `send_failed`: the initial test email send failed.
|
|
@@ -4909,6 +4996,131 @@ type GetFunctionTestRunTraceResponses = {
|
|
|
4909
4996
|
};
|
|
4910
4997
|
};
|
|
4911
4998
|
type GetFunctionTestRunTraceResponse = GetFunctionTestRunTraceResponses[keyof GetFunctionTestRunTraceResponses];
|
|
4999
|
+
type GetOrgRoutingTopologyData = {
|
|
5000
|
+
body?: never;
|
|
5001
|
+
path?: never;
|
|
5002
|
+
query?: never;
|
|
5003
|
+
url: '/functions/routing-topology';
|
|
5004
|
+
};
|
|
5005
|
+
type GetOrgRoutingTopologyErrors = {
|
|
5006
|
+
/**
|
|
5007
|
+
* Invalid or missing API key
|
|
5008
|
+
*/
|
|
5009
|
+
401: ErrorResponse;
|
|
5010
|
+
/**
|
|
5011
|
+
* Authenticated caller lacks permission for the operation
|
|
5012
|
+
*/
|
|
5013
|
+
403: ErrorResponse;
|
|
5014
|
+
};
|
|
5015
|
+
type GetOrgRoutingTopologyError = GetOrgRoutingTopologyErrors[keyof GetOrgRoutingTopologyErrors];
|
|
5016
|
+
type GetOrgRoutingTopologyResponses = {
|
|
5017
|
+
/**
|
|
5018
|
+
* Routing topology
|
|
5019
|
+
*/
|
|
5020
|
+
200: SuccessEnvelope & {
|
|
5021
|
+
data?: RoutingTopology;
|
|
5022
|
+
};
|
|
5023
|
+
};
|
|
5024
|
+
type GetOrgRoutingTopologyResponse = GetOrgRoutingTopologyResponses[keyof GetOrgRoutingTopologyResponses];
|
|
5025
|
+
type GetFunctionRoutingData = {
|
|
5026
|
+
body?: never;
|
|
5027
|
+
path: {
|
|
5028
|
+
/**
|
|
5029
|
+
* Resource UUID
|
|
5030
|
+
*/
|
|
5031
|
+
id: string;
|
|
5032
|
+
};
|
|
5033
|
+
query?: never;
|
|
5034
|
+
url: '/functions/{id}/routing';
|
|
5035
|
+
};
|
|
5036
|
+
type GetFunctionRoutingErrors = {
|
|
5037
|
+
/**
|
|
5038
|
+
* Invalid or missing API key
|
|
5039
|
+
*/
|
|
5040
|
+
401: ErrorResponse;
|
|
5041
|
+
/**
|
|
5042
|
+
* Resource not found
|
|
5043
|
+
*/
|
|
5044
|
+
404: ErrorResponse;
|
|
5045
|
+
};
|
|
5046
|
+
type GetFunctionRoutingError = GetFunctionRoutingErrors[keyof GetFunctionRoutingErrors];
|
|
5047
|
+
type GetFunctionRoutingResponses = {
|
|
5048
|
+
/**
|
|
5049
|
+
* Function routing
|
|
5050
|
+
*/
|
|
5051
|
+
200: SuccessEnvelope & {
|
|
5052
|
+
data?: FunctionRouting | unknown;
|
|
5053
|
+
};
|
|
5054
|
+
};
|
|
5055
|
+
type GetFunctionRoutingResponse = GetFunctionRoutingResponses[keyof GetFunctionRoutingResponses];
|
|
5056
|
+
type UnsetFunctionRouteData = {
|
|
5057
|
+
body?: never;
|
|
5058
|
+
path: {
|
|
5059
|
+
/**
|
|
5060
|
+
* Resource UUID
|
|
5061
|
+
*/
|
|
5062
|
+
id: string;
|
|
5063
|
+
};
|
|
5064
|
+
query?: never;
|
|
5065
|
+
url: '/functions/{id}/route';
|
|
5066
|
+
};
|
|
5067
|
+
type UnsetFunctionRouteErrors = {
|
|
5068
|
+
/**
|
|
5069
|
+
* Invalid or missing API key
|
|
5070
|
+
*/
|
|
5071
|
+
401: ErrorResponse;
|
|
5072
|
+
/**
|
|
5073
|
+
* Resource not found
|
|
5074
|
+
*/
|
|
5075
|
+
404: ErrorResponse;
|
|
5076
|
+
};
|
|
5077
|
+
type UnsetFunctionRouteError = UnsetFunctionRouteErrors[keyof UnsetFunctionRouteErrors];
|
|
5078
|
+
type UnsetFunctionRouteResponses = {
|
|
5079
|
+
/**
|
|
5080
|
+
* Route unbound
|
|
5081
|
+
*/
|
|
5082
|
+
200: SuccessEnvelope & {
|
|
5083
|
+
data?: {
|
|
5084
|
+
unrouted: true;
|
|
5085
|
+
};
|
|
5086
|
+
};
|
|
5087
|
+
};
|
|
5088
|
+
type UnsetFunctionRouteResponse = UnsetFunctionRouteResponses[keyof UnsetFunctionRouteResponses];
|
|
5089
|
+
type SetFunctionRouteData = {
|
|
5090
|
+
body: FunctionRouteBody;
|
|
5091
|
+
path: {
|
|
5092
|
+
/**
|
|
5093
|
+
* Resource UUID
|
|
5094
|
+
*/
|
|
5095
|
+
id: string;
|
|
5096
|
+
};
|
|
5097
|
+
query?: never;
|
|
5098
|
+
url: '/functions/{id}/route';
|
|
5099
|
+
};
|
|
5100
|
+
type SetFunctionRouteErrors = {
|
|
5101
|
+
/**
|
|
5102
|
+
* Invalid request parameters
|
|
5103
|
+
*/
|
|
5104
|
+
400: ErrorResponse;
|
|
5105
|
+
/**
|
|
5106
|
+
* Invalid or missing API key
|
|
5107
|
+
*/
|
|
5108
|
+
401: ErrorResponse;
|
|
5109
|
+
/**
|
|
5110
|
+
* Resource not found
|
|
5111
|
+
*/
|
|
5112
|
+
404: ErrorResponse;
|
|
5113
|
+
};
|
|
5114
|
+
type SetFunctionRouteError = SetFunctionRouteErrors[keyof SetFunctionRouteErrors];
|
|
5115
|
+
type SetFunctionRouteResponses = {
|
|
5116
|
+
/**
|
|
5117
|
+
* Route bound, or conflict requiring takeover
|
|
5118
|
+
*/
|
|
5119
|
+
200: SuccessEnvelope & {
|
|
5120
|
+
data?: FunctionRouteResult;
|
|
5121
|
+
};
|
|
5122
|
+
};
|
|
5123
|
+
type SetFunctionRouteResponse = SetFunctionRouteResponses[keyof SetFunctionRouteResponses];
|
|
4912
5124
|
type ListFunctionSecretsData = {
|
|
4913
5125
|
body?: never;
|
|
4914
5126
|
path: {
|
|
@@ -5126,7 +5338,7 @@ type ListFunctionLogsResponses = {
|
|
|
5126
5338
|
};
|
|
5127
5339
|
type ListFunctionLogsResponse = ListFunctionLogsResponses[keyof ListFunctionLogsResponses];
|
|
5128
5340
|
declare namespace sdk_gen_d_exports {
|
|
5129
|
-
export { Options, addDomain, cliLogout, createEndpoint, createFilter, createFunction, createFunctionSecret, deleteDomain, deleteEmail, deleteEndpoint, deleteFilter, deleteFunction, deleteFunctionSecret, discardEmailContent, downloadAttachments, downloadDomainZoneFile, downloadRawEmail, getAccount, getConversation, getEmail, getFunction, getFunctionTestRunTrace, getInboxStatus, getSendPermissions, getSentEmail, getStorageStats, getThread, getWebhookSecret, listDeliveries, listDomains, listEmails, listEndpoints, listFilters, listFunctionLogs, listFunctionSecrets, listFunctions, listSentEmails, pollCliLogin, replayDelivery, replayEmailWebhooks, replyToEmail, resendAgentSignupVerification, resendCliSignupVerification, rotateWebhookSecret, searchEmails, semanticSearch, sendEmail, setFunctionSecret, startAgentSignup, startCliLogin, startCliSignup, testEndpoint, testFunction, updateAccount, updateDomain, updateEndpoint, updateFilter, updateFunction, verifyAgentSignup, verifyCliSignup, verifyDomain };
|
|
5341
|
+
export { Options, addDomain, cliLogout, 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, startAgentSignup, startCliLogin, startCliSignup, testEndpoint, testFunction, unsetFunctionRoute, updateAccount, updateDomain, updateEndpoint, updateFilter, updateFunction, verifyAgentSignup, verifyCliSignup, verifyDomain };
|
|
5130
5342
|
}
|
|
5131
5343
|
type Options<TData extends TDataShape = TDataShape, ThrowOnError extends boolean = boolean, TResponse = unknown> = Options$1<TData, ThrowOnError, TResponse> & {
|
|
5132
5344
|
/**
|
|
@@ -5763,11 +5975,13 @@ declare const listFunctions: <ThrowOnError extends boolean = false>(options?: Op
|
|
|
5763
5975
|
* attempt, and sent to the runtime so stack traces can resolve to
|
|
5764
5976
|
* original source files.
|
|
5765
5977
|
*
|
|
5766
|
-
* **
|
|
5767
|
-
*
|
|
5768
|
-
*
|
|
5769
|
-
*
|
|
5770
|
-
*
|
|
5978
|
+
* **Routing.** On successful deploy, the function code is live
|
|
5979
|
+
* in the runtime, but inbound mail will not reach it until at
|
|
5980
|
+
* least one route is bound. Routes are managed from the Primitive
|
|
5981
|
+
* dashboard. A `deploy_status` of `deployed` means the script is
|
|
5982
|
+
* installed, not that the function is receiving mail. The
|
|
5983
|
+
* internal runtime URL is not returned by the API and is not a
|
|
5984
|
+
* customer-facing integration surface.
|
|
5771
5985
|
*
|
|
5772
5986
|
* **Secrets.** New functions ship with the managed secrets
|
|
5773
5987
|
* (`PRIMITIVE_WEBHOOK_SECRET`, `PRIMITIVE_API_KEY`,
|
|
@@ -5781,7 +5995,7 @@ declare const createFunction: <ThrowOnError extends boolean = false>(options: Op
|
|
|
5781
5995
|
* Delete a function
|
|
5782
5996
|
*
|
|
5783
5997
|
* Soft-deletes the function row, removes the script from the edge
|
|
5784
|
-
* runtime, and deactivates
|
|
5998
|
+
* runtime, and deactivates any route bound to this function so no
|
|
5785
5999
|
* further inbound mail is delivered. Past deploy history,
|
|
5786
6000
|
* invocations, and logs are retained.
|
|
5787
6001
|
*
|
|
@@ -5854,6 +6068,48 @@ declare const testFunction: <ThrowOnError extends boolean = false>(options: Opti
|
|
|
5854
6068
|
*
|
|
5855
6069
|
*/
|
|
5856
6070
|
declare const getFunctionTestRunTrace: <ThrowOnError extends boolean = false>(options: Options<GetFunctionTestRunTraceData, ThrowOnError>) => RequestResult<GetFunctionTestRunTraceResponses, GetFunctionTestRunTraceErrors, ThrowOnError, "fields">;
|
|
6071
|
+
/**
|
|
6072
|
+
* Get the org's function routing topology
|
|
6073
|
+
*
|
|
6074
|
+
* Returns a single snapshot of how inbound mail is routed across
|
|
6075
|
+
* this org's active domains and functions: which active domain has
|
|
6076
|
+
* which function bound, the org's fallback function (if any), and
|
|
6077
|
+
* every deployed function with no route bound. Use this to answer
|
|
6078
|
+
* "which of my functions actually receive mail?" diagnostically.
|
|
6079
|
+
*
|
|
6080
|
+
*/
|
|
6081
|
+
declare const getOrgRoutingTopology: <ThrowOnError extends boolean = false>(options?: Options<GetOrgRoutingTopologyData, ThrowOnError>) => RequestResult<GetOrgRoutingTopologyResponses, GetOrgRoutingTopologyErrors, ThrowOnError, "fields">;
|
|
6082
|
+
/**
|
|
6083
|
+
* Get a function's current route binding
|
|
6084
|
+
*
|
|
6085
|
+
* Returns the endpoint binding for the function, or null when no
|
|
6086
|
+
* route is currently bound. The binding identifies whether the
|
|
6087
|
+
* function receives mail for a specific domain (scoped) or for any
|
|
6088
|
+
* active domain that has no scoped binding (fallback).
|
|
6089
|
+
*
|
|
6090
|
+
*/
|
|
6091
|
+
declare const getFunctionRouting: <ThrowOnError extends boolean = false>(options: Options<GetFunctionRoutingData, ThrowOnError>) => RequestResult<GetFunctionRoutingResponses, GetFunctionRoutingErrors, ThrowOnError, "fields">;
|
|
6092
|
+
/**
|
|
6093
|
+
* Unbind any route from a function
|
|
6094
|
+
*
|
|
6095
|
+
* Deactivates every active endpoint bound to this function. The
|
|
6096
|
+
* function stays deployed but stops receiving inbound mail. Safe
|
|
6097
|
+
* to call when no route is currently bound (no-op).
|
|
6098
|
+
*
|
|
6099
|
+
*/
|
|
6100
|
+
declare const unsetFunctionRoute: <ThrowOnError extends boolean = false>(options: Options<UnsetFunctionRouteData, ThrowOnError>) => RequestResult<UnsetFunctionRouteResponses, UnsetFunctionRouteErrors, ThrowOnError, "fields">;
|
|
6101
|
+
/**
|
|
6102
|
+
* Bind a route to a function
|
|
6103
|
+
*
|
|
6104
|
+
* Binds inbound mail to this function. The route target is either
|
|
6105
|
+
* a specific verified domain (scoped) or the org's fallback (any
|
|
6106
|
+
* active domain with no scoped binding). If another function is
|
|
6107
|
+
* already bound at the target, returns a `conflict` envelope
|
|
6108
|
+
* describing the holder; re-issue with `takeover: true` to
|
|
6109
|
+
* deactivate that prior binding and install this one.
|
|
6110
|
+
*
|
|
6111
|
+
*/
|
|
6112
|
+
declare const setFunctionRoute: <ThrowOnError extends boolean = false>(options: Options<SetFunctionRouteData, ThrowOnError>) => RequestResult<SetFunctionRouteResponses, SetFunctionRouteErrors, ThrowOnError, "fields">;
|
|
5857
6113
|
/**
|
|
5858
6114
|
* List a function's secrets
|
|
5859
6115
|
*
|
|
@@ -5958,6 +6214,14 @@ declare class PrimitiveApiError extends Error {
|
|
|
5958
6214
|
requestId?: string;
|
|
5959
6215
|
retryAfter?: number;
|
|
5960
6216
|
details?: PrimitiveApiErrorDetails;
|
|
6217
|
+
/**
|
|
6218
|
+
* The underlying error this wraps, when there is one (e.g. a
|
|
6219
|
+
* transport-level `fetch` rejection). Chained onto the standard
|
|
6220
|
+
* `Error.cause` so callers logging `err.cause` see the original
|
|
6221
|
+
* failure — including a network error's `code`/`errno`/`syscall`,
|
|
6222
|
+
* which a bare "fetch failed" message hides.
|
|
6223
|
+
*/
|
|
6224
|
+
cause?: unknown;
|
|
5961
6225
|
});
|
|
5962
6226
|
}
|
|
5963
6227
|
declare class PrimitiveApiClient {
|
|
@@ -6176,4 +6440,4 @@ declare class PrimitiveClient extends PrimitiveApiClient {
|
|
|
6176
6440
|
declare function createPrimitiveClient(options?: PrimitiveClientOptions): PrimitiveClient;
|
|
6177
6441
|
declare function client(options?: PrimitiveClientOptions): PrimitiveClient;
|
|
6178
6442
|
//#endregion
|
|
6179
|
-
export { listEndpoints as $, ListFunctionSecretsResponses as $a, VerifyAgentSignupResponse as $c, GetStorageStatsResponse as $i, DeleteFunctionSecretData as $n, SearchEmailsError as $o, FunctionTestRun as $r, StartCliSignupResponse as $s, CliSignupVerifyResult as $t, deleteEmail as A, ListEmailsErrors as Aa, UpdateEndpointData as Ac, GetFunctionTestRunTraceData as Ai, DeleteDomainErrors as An, ReplyToEmailError as Ao, DownloadRawEmailResponses as Ar, SentEmailSummary as As, Account as At, getConversation as B, ListFiltersError as Ba, UpdateFilterResponse as Bc, GetSendPermissionsData as Bi, DeleteEndpointErrors as Bn, ResendCliSignupVerificationData as Bo, EmailSearchResult as Br, StartAgentSignupInput as Bs, AgentSignupStartResult as Bt, addDomain as C, ListDomainsData as Ca, UpdateAccountResponses as Cc, GetEmailResponse as Ci, Auth as Cl, CreateFunctionSecretErrors as Cn, ReplayEmailWebhooksData as Co, DownloadDomainZoneFileErrors as Cr, SendPermissionAnyRecipient as Cs, updateDomain as Ct, createFunction as D, ListDomainsResponses as Da, UpdateDomainInput as Dc, GetFunctionErrors as Di, Cursor as Dn, ReplayEmailWebhooksResponses as Do, DownloadRawEmailError as Dr, SendPermissionsMeta as Ds, verifyAgentSignup as Dt, createFilter as E, ListDomainsResponse as Ea, UpdateDomainErrors as Ec, GetFunctionError as Ei, CreateFunctionSecretResponses as En, ReplayEmailWebhooksResponse as Eo, DownloadRawEmailData as Er, SendPermissionYourDomain as Es, updateFunction as Et, discardEmailContent as F, ListEndpointsErrors as Fa, UpdateEndpointResponses as Fc, GetInboxStatusData as Fi, DeleteEmailErrors as Fn, ResendAgentSignupVerificationError as Fo, EmailDetailReply as Fr, SetFunctionSecretResponse as Fs, AddDomainInput as Ft, getSendPermissions as G, ListFunctionLogsError as Ga, UpdateFunctionInput as Gc, GetSentEmailData as Gi, DeleteFilterErrors as Gn, ResendCliSignupVerificationResponses as Go, ErrorResponse as Gr, StartCliLoginErrors as Gs, CliLogoutError as Gt, getFunction as H, ListFiltersResponse as Ha, UpdateFunctionData as Hc, GetSendPermissionsErrors as Hi, DeleteEndpointResponses as Hn, ResendCliSignupVerificationErrors as Ho, EmailSummary as Hr, StartAgentSignupResponses as Hs, CliLoginPollResult as Ht, downloadAttachments as I, ListEndpointsResponse as Ia, UpdateFilterData as Ic, GetInboxStatusError as Ii, DeleteEmailResponse as In, ResendAgentSignupVerificationErrors as Io, EmailSearchFacetBucket as Ir, SetFunctionSecretResponses as Is, AddDomainResponse as It, getThread as J, ListFunctionLogsResponses as Ja, VerifiedDomain as Jc, GetSentEmailResponse as Ji, DeleteFunctionData as Jn, RotateWebhookSecretError as Jo, FunctionDetail as Jr, StartCliLoginResponses as Js, CliLogoutResponse as Jt, getSentEmail as K, ListFunctionLogsErrors as Ka, UpdateFunctionResponse as Kc, GetSentEmailError as Ki, DeleteFilterResponse as Kn, ResourceId as Ko, Filter as Kr, StartCliLoginInput as Ks, CliLogoutErrors as Kt, downloadDomainZoneFile as L, ListEndpointsResponses as La, UpdateFilterError as Lc, GetInboxStatusErrors as Li, DeleteEmailResponses as Ln, ResendAgentSignupVerificationInput as Lo, EmailSearchFacets as Lr, StartAgentSignupData as Ls, AddDomainResponses as Lt, deleteFilter as M, ListEmailsResponses as Ma, UpdateEndpointErrors as Mc, GetFunctionTestRunTraceErrors as Mi, DeleteDomainResponses as Mn, ReplyToEmailResponse as Mo, EmailAttachment as Mr, SetFunctionSecretError as Ms, AddDomainData as Mt, deleteFunction as N, ListEndpointsData as Na, UpdateEndpointInput as Nc, GetFunctionTestRunTraceResponse as Ni, DeleteEmailData as Nn, ReplyToEmailResponses as No, EmailAuth as Nr, SetFunctionSecretErrors as Ns, AddDomainError as Nt, createFunctionSecret as O, ListEmailsData as Oa, UpdateDomainResponse as Oc, GetFunctionResponse as Oi, DeleteDomainData as On, ReplayResult as Oo, DownloadRawEmailErrors as Or, SentEmailDetail as Os, verifyCliSignup as Ot, deleteFunctionSecret as P, ListEndpointsError as Pa, UpdateEndpointResponse as Pc, GetFunctionTestRunTraceResponses as Pi, DeleteEmailError as Pn, ResendAgentSignupVerificationData as Po, EmailDetail as Pr, SetFunctionSecretInput as Ps, AddDomainErrors as Pt, listEmails as Q, ListFunctionSecretsResponse as Qa, VerifyAgentSignupInput as Qc, GetStorageStatsErrors as Qi, DeleteFunctionResponses as Qn, SearchEmailsData as Qo, FunctionSecretWriteResult as Qr, StartCliSignupInput as Qs, CliSignupStartResult as Qt, downloadRawEmail as R, ListEnvelope as Ra, UpdateFilterErrors as Rc, GetInboxStatusResponse as Ri, DeleteEndpointData as Rn, ResendAgentSignupVerificationResponse as Ro, EmailSearchHighlights as Rr, StartAgentSignupError as Rs, AgentOrgRef as Rt, createPrimitiveApiClient as S, ListDeliveriesResponses as Sa, UpdateAccountResponse as Sc, GetEmailErrors as Si, createConfig as Sl, CreateFunctionSecretError as Sn, ReplayDeliveryResponses as So, DownloadDomainZoneFileError as Sr, SendPermissionAddress as Ss, updateAccount as St, createEndpoint as T, ListDomainsErrors as Ta, UpdateDomainError as Tc, GetFunctionData as Ti, CreateFunctionSecretResponse as Tn, ReplayEmailWebhooksErrors as To, DownloadDomainZoneFileResponses as Tr, SendPermissionRule as Ts, updateFilter as Tt, getFunctionTestRunTrace as U, ListFiltersResponses as Ua, UpdateFunctionError as Uc, GetSendPermissionsResponse as Ui, DeleteFilterData as Un, ResendCliSignupVerificationInput as Uo, EmailWebhookStatus as Ur, StartCliLoginData as Us, CliLoginStartResult as Ut, getEmail as V, ListFiltersErrors as Va, UpdateFilterResponses as Vc, GetSendPermissionsError as Vi, DeleteEndpointResponse as Vn, ResendCliSignupVerificationError as Vo, EmailStatus as Vr, StartAgentSignupResponse as Vs, AgentSignupVerifyResult as Vt, getInboxStatus as W, ListFunctionLogsData as Wa, UpdateFunctionErrors as Wc, GetSendPermissionsResponses as Wi, DeleteFilterError as Wn, ResendCliSignupVerificationResponse as Wo, Endpoint as Wr, StartCliLoginError as Ws, CliLogoutData as Wt, listDeliveries as X, ListFunctionSecretsError as Xa, VerifyAgentSignupError as Xc, GetStorageStatsData as Xi, DeleteFunctionErrors as Xn, RotateWebhookSecretResponse as Xo, FunctionLogRow as Xr, StartCliSignupError as Xs, CliLogoutResult as Xt, getWebhookSecret as Y, ListFunctionSecretsData as Ya, VerifyAgentSignupData as Yc, GetSentEmailResponses as Yi, DeleteFunctionError as Yn, RotateWebhookSecretErrors as Yo, FunctionListItem as Yr, StartCliSignupData as Ys, CliLogoutResponses as Yt, listDomains as Z, ListFunctionSecretsErrors as Za, VerifyAgentSignupErrors as Zc, GetStorageStatsError as Zi, DeleteFunctionResponse as Zn, RotateWebhookSecretResponses as Zo, FunctionSecretListItem as Zr, StartCliSignupErrors as Zs, CliSignupResendResult as Zt, PrimitiveApiClient as _, Limit as _a, UnverifiedDomain as _c, GetConversationErrors as _i, CreateClientConfig as _l, CreateFunctionInput as _n, PollCliLoginResponses as _o, DownloadAttachmentsError as _r, SendEmailResponse as _s, startAgentSignup as _t, RequestOptions as a, GetThreadResponses as aa, TestEndpointErrors as ac, FunctionTestRunSend as ai, VerifyCliSignupResponse as al, CreateEndpointInput as an, ListSentEmailsData as ao, DeliverySummary as ar, SemanticSearchError as as, pollCliLogin as at, PrimitiveApiErrorDetails as b, ListDeliveriesErrors as ba, UpdateAccountErrors as bc, GetEmailData as bi, RequestResult as bl, CreateFunctionResult as bn, ReplayDeliveryErrors as bo, DownloadAttachmentsResponses as br, SendMailInput as bs, testEndpoint as bt, SendInput as c, GetWebhookSecretErrors as ca, TestFunctionData as cc, GateDenial as ci, VerifyDomainError as cl, CreateFilterData as cn, ListSentEmailsResponse as co, DiscardEmailContentError as cr, SemanticSearchInput as cs, replyToEmail as ct, client as d, InboxStatus as da, TestFunctionResponse as dc, GetAccountError as di, VerifyDomainResponses as dl, CreateFilterInput as dn, ParsedEmailData as do, DiscardEmailContentResponses as dr, SemanticSearchResult as ds, rotateWebhookSecret as dt, GetStorageStatsResponses as ea, StartCliSignupResponses as ec, FunctionTestRunDelivery as ei, VerifyAgentSignupResponses as el, Conversation as en, ListFunctionsData as eo, DeleteFunctionSecretError as er, SearchEmailsErrors as es, listFilters as et, createPrimitiveClient as f, InboxStatusDomain as fa, TestFunctionResponses as fc, GetAccountErrors as fi, WebhookSecret as fl, CreateFilterResponse as fn, PollCliLoginData as fo, DkimSignature as fr, SemanticSearchScoreBreakdown as fs, sdk_gen_d_exports as ft, DEFAULT_API_BASE_URL as g, InboxStatusRecentEmailSummary as ga, ThreadMessage as gc, GetConversationError as gi, Config as gl, CreateFunctionErrors as gn, PollCliLoginResponse as go, DownloadAttachmentsData as gr, SendEmailErrors as gs, setFunctionSecret as gt, verifyWebhookSignature as h, InboxStatusNextAction as ha, Thread as hc, GetConversationData as hi, ClientOptions as hl, CreateFunctionError as hn, PollCliLoginInput as ho, DomainVerifyResult as hr, SendEmailError as hs, sendEmail as ht, ReplyInput as i, GetThreadResponse as ia, TestEndpointError as ic, FunctionTestRunReply as ii, VerifyCliSignupInput as il, CreateEndpointErrors as in, ListFunctionsResponses as io, DeliveryStatus as ir, SemanticSearchData as is, listSentEmails as it, deleteEndpoint as j, ListEmailsResponse as ja, UpdateEndpointError as jc, GetFunctionTestRunTraceError as ji, DeleteDomainResponse as jn, ReplyToEmailErrors as jo, EmailAddress as jr, SetFunctionSecretData as js, AccountUpdated as jt, deleteDomain as k, ListEmailsError as ka, UpdateDomainResponses as kc, GetFunctionResponses as ki, DeleteDomainError as kn, ReplyToEmailData as ko, DownloadRawEmailResponse as kr, SentEmailStatus as ks, verifyDomain as kt, SendResult as l, GetWebhookSecretResponse as la, TestFunctionError as lc, GateFix as li, VerifyDomainErrors as ll, CreateFilterError as ln, ListSentEmailsResponses as lo, DiscardEmailContentErrors as lr, SemanticSearchMeta as ls, resendAgentSignupVerification as lt, VerifyOptions as m, InboxStatusFunctionSummary as ma, TestResult as mc, GetAccountResponses as mi, Client as ml, CreateFunctionData as mn, PollCliLoginErrors as mo, DomainDnsRecord as mr, SendEmailData as ms, semanticSearch as mt, PrimitiveClient as n, GetThreadError as na, SuccessEnvelope as nc, FunctionTestRunInboundEmail as ni, VerifyCliSignupError as nl, CreateEndpointData as nn, ListFunctionsErrors as no, DeleteFunctionSecretResponse as nr, SearchEmailsResponses as ns, listFunctionSecrets as nt, SemanticSearchResponse as o, GetWebhookSecretData as oa, TestEndpointResponse as oc, FunctionTestRunState as oi, VerifyCliSignupResponses as ol, CreateEndpointResponse as on, ListSentEmailsError as oo, DiscardContentResult as or, SemanticSearchErrors as os, replayDelivery as ot, PRIMITIVE_SIGNATURE_HEADER as p, InboxStatusEndpointSummary as pa, TestInvocationResult as pc, GetAccountResponse as pi, createClient as pl, CreateFilterResponses as pn, PollCliLoginError as po, Domain as pr, SemanticSearchSnippet as ps, searchEmails as pt, getStorageStats as q, ListFunctionLogsResponse as qa, UpdateFunctionResponses as qc, GetSentEmailErrors as qi, DeleteFilterResponses as qn, RotateWebhookSecretData as qo, FunctionDeployStatus as qr, StartCliLoginResponse as qs, CliLogoutInput as qt, PrimitiveClientOptions as r, GetThreadErrors as ra, TestEndpointData as rc, FunctionTestRunOutboundRequest as ri, VerifyCliSignupErrors as rl, CreateEndpointError as rn, ListFunctionsResponse as ro, DeleteFunctionSecretResponses as rr, SemanticSearchCoverage as rs, listFunctions as rt, SendAttachment as s, GetWebhookSecretError as sa, TestEndpointResponses as sc, FunctionTestRunTrace as si, VerifyDomainData as sl, CreateEndpointResponses as sn, ListSentEmailsErrors as so, DiscardEmailContentData as sr, SemanticSearchField as ss, replayEmailWebhooks as st, ForwardInput as t, GetThreadData as ta, StorageStats as tc, FunctionTestRunDeliveryEndpoint as ti, VerifyCliSignupData as tl, ConversationMessage as tn, ListFunctionsError as to, DeleteFunctionSecretErrors as tr, SearchEmailsResponse as ts, listFunctionLogs as tt, SendThreadInput as u, GetWebhookSecretResponses as ua, TestFunctionErrors as uc, GetAccountData as ui, VerifyDomainResponse as ul, CreateFilterErrors as un, PaginationMeta as uo, DiscardEmailContentResponse as ur, SemanticSearchResponses as us, resendCliSignupVerification as ut, PrimitiveApiClientOptions as v, ListDeliveriesData as va, UpdateAccountData as vc, GetConversationResponse as vi, Options$1 as vl, CreateFunctionResponse as vn, ReplayDeliveryData as vo, DownloadAttachmentsErrors as vr, SendEmailResponses as vs, startCliLogin as vt, cliLogout as w, ListDomainsError as wa, UpdateDomainData as wc, GetEmailResponses as wi, CreateFunctionSecretInput as wn, ReplayEmailWebhooksError as wo, DownloadDomainZoneFileResponse as wr, SendPermissionManagedZone as ws, updateEndpoint as wt, RequestOptions$1 as x, ListDeliveriesResponse as xa, UpdateAccountInput as xc, GetEmailError as xi, ResponseStyle as xl, CreateFunctionSecretData as xn, ReplayDeliveryResponse as xo, DownloadDomainZoneFileData as xr, SendMailResult as xs, testFunction as xt, PrimitiveApiError as y, ListDeliveriesError as ya, UpdateAccountError as yc, GetConversationResponses as yi, RequestOptions$2 as yl, CreateFunctionResponses as yn, ReplayDeliveryError as yo, DownloadAttachmentsResponse as yr, SendMailAttachment as ys, startCliSignup as yt, getAccount as z, ListFiltersData as za, UpdateFilterInput as zc, GetInboxStatusResponses as zi, DeleteEndpointError as zn, ResendAgentSignupVerificationResponses as zo, EmailSearchMeta as zr, StartAgentSignupErrors as zs, AgentSignupResendResult as zt };
|
|
6443
|
+
export { listDomains as $, ListEndpointsResponse as $a, UpdateDomainError as $c, GetOrgRoutingTopologyError as $i, DeleteFunctionError as $n, ResendAgentSignupVerificationErrors as $o, FunctionListItem as $r, SetFunctionRouteResponses as $s, CliLogoutResponses as $t, deleteEmail as A, InboxStatusEndpointSummary as Aa, TestEndpointResponses as Ac, GetEmailResponse as Ai, VerifyCliSignupError as Al, CreateFunctionSecretResponses as An, PollCliLoginError as Ao, DownloadRawEmailData as Ar, SemanticSearchScoreBreakdown as As, updateFunction as At, getConversation as B, ListDomainsData as Ba, UnsetFunctionRouteData as Bc, GetFunctionRoutingResponse as Bi, WebhookSecret as Bl, DeleteEmailResponse as Bn, ReplayEmailWebhooksData as Bo, EmailSearchFacetBucket as Br, SendPermissionAddress as Bs, AddDomainResponse as Bt, addDomain as C, GetWebhookSecretData as Ca, StartCliSignupResponses as Cc, GetConversationError as Ci, VerifyAgentSignupData as Cl, CreateFunctionResponses as Cn, ListSentEmailsError as Co, DownloadAttachmentsResponse as Cr, SemanticSearchError as Cs, testEndpoint as Ct, createFunction as D, GetWebhookSecretResponses as Da, TestEndpointError as Dc, GetEmailData as Di, VerifyAgentSignupResponse as Dl, CreateFunctionSecretErrors as Dn, PaginationMeta as Do, DownloadDomainZoneFileErrors as Dr, SemanticSearchMeta as Ds, updateDomain as Dt, createFilter as E, GetWebhookSecretResponse as Ea, TestEndpointData as Ec, GetConversationResponses as Ei, VerifyAgentSignupInput as El, CreateFunctionSecretError as En, ListSentEmailsResponses as Eo, DownloadDomainZoneFileError as Er, SemanticSearchInput as Es, updateAccount as Et, discardEmailContent as F, ListDeliveriesData as Fa, TestFunctionResponses as Fc, GetFunctionResponse as Fi, VerifyDomainData as Fl, DeleteDomainResponse as Fn, ReplayDeliveryData as Fo, EmailAddress as Fr, SendEmailResponse as Fs, AccountUpdated as Ft, getInboxStatus as G, ListEmailsData as Ga, UnverifiedDomain as Gc, GetFunctionTestRunTraceResponse as Gi, CreateClientConfig as Gl, DeleteEndpointResponse as Gn, ReplayResult as Go, EmailStatus as Gr, SendPermissionsMeta as Gs, AgentSignupVerifyResult as Gt, getFunction as H, ListDomainsErrors as Ha, UnsetFunctionRouteErrors as Hc, GetFunctionTestRunTraceData as Hi, Client as Hl, DeleteEndpointData as Hn, ReplayEmailWebhooksErrors as Ho, EmailSearchHighlights as Hr, SendPermissionManagedZone as Hs, AgentOrgRef as Ht, downloadAttachments as I, ListDeliveriesError as Ia, TestInvocationResult as Ic, GetFunctionResponses as Ii, VerifyDomainError as Il, DeleteDomainResponses as In, ReplayDeliveryError as Io, EmailAttachment as Ir, SendEmailResponses as Is, AddDomainData as It, getSentEmail as J, ListEmailsResponse as Ja, UpdateAccountErrors as Jc, GetInboxStatusError as Ji, RequestResult as Jl, DeleteFilterError as Jn, ReplyToEmailErrors as Jo, Endpoint as Jr, SentEmailSummary as Js, CliLogoutData as Jt, getOrgRoutingTopology as K, ListEmailsError as Ka, UpdateAccountData as Kc, GetFunctionTestRunTraceResponses as Ki, Options$1 as Kl, DeleteEndpointResponses as Kn, ReplyToEmailData as Ko, EmailSummary as Kr, SentEmailDetail as Ks, CliLoginPollResult as Kt, downloadDomainZoneFile as L, ListDeliveriesErrors as La, TestResult as Lc, GetFunctionRoutingData as Li, VerifyDomainErrors as Ll, DeleteEmailData as Ln, ReplayDeliveryErrors as Lo, EmailAuth as Lr, SendMailAttachment as Ls, AddDomainError as Lt, deleteFilter as M, InboxStatusNextAction as Ma, TestFunctionError as Mc, GetFunctionData as Mi, VerifyCliSignupInput as Ml, DeleteDomainData as Mn, PollCliLoginInput as Mo, DownloadRawEmailErrors as Mr, SendEmailData as Ms, verifyCliSignup as Mt, deleteFunction as N, InboxStatusRecentEmailSummary as Na, TestFunctionErrors as Nc, GetFunctionError as Ni, VerifyCliSignupResponse as Nl, DeleteDomainError as Nn, PollCliLoginResponse as No, DownloadRawEmailResponse as Nr, SendEmailError as Ns, verifyDomain as Nt, createFunctionSecret as O, InboxStatus as Oa, TestEndpointErrors as Oc, GetEmailError as Oi, VerifyAgentSignupResponses as Ol, CreateFunctionSecretInput as On, ParsedEmailData as Oo, DownloadDomainZoneFileResponse as Or, SemanticSearchResponses as Os, updateEndpoint as Ot, deleteFunctionSecret as P, Limit as Pa, TestFunctionResponse as Pc, GetFunctionErrors as Pi, VerifyCliSignupResponses as Pl, DeleteDomainErrors as Pn, PollCliLoginResponses as Po, DownloadRawEmailResponses as Pr, SendEmailErrors as Ps, Account as Pt, listDeliveries as Q, ListEndpointsErrors as Qa, UpdateDomainData as Qc, GetOrgRoutingTopologyData as Qi, DeleteFunctionData as Qn, ResendAgentSignupVerificationError as Qo, FunctionDetail as Qr, SetFunctionRouteResponse as Qs, CliLogoutResponse as Qt, downloadRawEmail as R, ListDeliveriesResponse as Ra, Thread as Rc, GetFunctionRoutingError as Ri, VerifyDomainResponse as Rl, DeleteEmailError as Rn, ReplayDeliveryResponse as Ro, EmailDetail as Rr, SendMailInput as Rs, AddDomainErrors as Rt, createPrimitiveApiClient as S, GetThreadResponses as Sa, StartCliSignupResponse as Sc, GetConversationData as Si, VerifiedDomain as Sl, CreateFunctionResponse as Sn, ListSentEmailsData as So, DownloadAttachmentsErrors as Sr, SemanticSearchData as Ss, startCliSignup as St, createEndpoint as T, GetWebhookSecretErrors as Ta, SuccessEnvelope as Tc, GetConversationResponse as Ti, VerifyAgentSignupErrors as Tl, CreateFunctionSecretData as Tn, ListSentEmailsResponse as To, DownloadDomainZoneFileData as Tr, SemanticSearchField as Ts, unsetFunctionRoute as Tt, getFunctionRouting as U, ListDomainsResponse as Ua, UnsetFunctionRouteResponse as Uc, GetFunctionTestRunTraceError as Ui, ClientOptions as Ul, DeleteEndpointError as Un, ReplayEmailWebhooksResponse as Uo, EmailSearchMeta as Ur, SendPermissionRule as Us, AgentSignupResendResult as Ut, getEmail as V, ListDomainsError as Va, UnsetFunctionRouteError as Vc, GetFunctionRoutingResponses as Vi, createClient as Vl, DeleteEmailResponses as Vn, ReplayEmailWebhooksError as Vo, EmailSearchFacets as Vr, SendPermissionAnyRecipient as Vs, AddDomainResponses as Vt, getFunctionTestRunTrace as W, ListDomainsResponses as Wa, UnsetFunctionRouteResponses as Wc, GetFunctionTestRunTraceErrors as Wi, Config as Wl, DeleteEndpointErrors as Wn, ReplayEmailWebhooksResponses as Wo, EmailSearchResult as Wr, SendPermissionYourDomain as Ws, AgentSignupStartResult as Wt, getThread as X, ListEndpointsData as Xa, UpdateAccountResponse as Xc, GetInboxStatusResponse as Xi, createConfig as Xl, DeleteFilterResponse as Xn, ReplyToEmailResponses as Xo, Filter as Xr, SetFunctionRouteError as Xs, CliLogoutErrors as Xt, getStorageStats as Y, ListEmailsResponses as Ya, UpdateAccountInput as Yc, GetInboxStatusErrors as Yi, ResponseStyle as Yl, DeleteFilterErrors as Yn, ReplyToEmailResponse as Yo, ErrorResponse as Yr, SetFunctionRouteData as Ys, CliLogoutError as Yt, getWebhookSecret as Z, ListEndpointsError as Za, UpdateAccountResponses as Zc, GetInboxStatusResponses as Zi, Auth as Zl, DeleteFilterResponses as Zn, ResendAgentSignupVerificationData as Zo, FunctionDeployStatus as Zr, SetFunctionRouteErrors as Zs, CliLogoutInput as Zt, PrimitiveApiClient as _, GetStorageStatsResponses as _a, StartCliLoginResponses as _c, GetAccountData as _i, UpdateFunctionError as _l, CreateFilterResponses as _n, ListFunctionsData as _o, Domain as _r, SearchEmailsError as _s, sendEmail as _t, RequestOptions as a, GetSendPermissionsErrors as aa, SetFunctionSecretResponses as ac, FunctionSecretWriteResult as ai, UpdateEndpointError as al, ConversationMessage as an, ListFiltersResponse as ao, DeleteFunctionSecretErrors as ar, ResendCliSignupVerificationErrors as as, listFunctions as at, PrimitiveApiErrorDetails as b, GetThreadErrors as ba, StartCliSignupErrors as bc, GetAccountResponse as bi, UpdateFunctionResponse as bl, CreateFunctionErrors as bn, ListFunctionsResponse as bo, DownloadAttachmentsData as br, SearchEmailsResponses as bs, startAgentSignup as bt, SendInput as c, GetSentEmailData as ca, StartAgentSignupErrors as cc, FunctionTestRunDeliveryEndpoint as ci, UpdateEndpointResponse as cl, CreateEndpointErrors as cn, ListFunctionLogsError as co, DeliveryStatus as cr, ResendCliSignupVerificationResponses as cs, replayDelivery as ct, client as d, GetSentEmailResponse as da, StartAgentSignupResponses as dc, FunctionTestRunReply as di, UpdateFilterError as dl, CreateEndpointResponses as dn, ListFunctionLogsResponses as do, DiscardEmailContentData as dr, RotateWebhookSecretError as ds, resendAgentSignupVerification as dt, GetOrgRoutingTopologyErrors as ea, SetFunctionSecretData as ec, FunctionLogRow as ei, UpdateDomainErrors as el, CliLogoutResult as en, ListEndpointsResponses as eo, DeleteFunctionErrors as er, ResendAgentSignupVerificationInput as es, listEmails as et, createPrimitiveClient as f, GetSentEmailResponses as fa, StartCliLoginData as fc, FunctionTestRunSend as fi, UpdateFilterErrors as fl, CreateFilterData as fn, ListFunctionSecretsData as fo, DiscardEmailContentError as fr, RotateWebhookSecretErrors as fs, resendCliSignupVerification as ft, DEFAULT_API_BASE_URL as g, GetStorageStatsResponse as ga, StartCliLoginResponse as gc, GateFix as gi, UpdateFunctionData as gl, CreateFilterResponse as gn, ListFunctionSecretsResponses as go, DkimSignature as gr, SearchEmailsData as gs, semanticSearch as gt, verifyWebhookSignature as h, GetStorageStatsErrors as ha, StartCliLoginInput as hc, GateDenial as hi, UpdateFilterResponses as hl, CreateFilterInput as hn, ListFunctionSecretsResponse as ho, DiscardEmailContentResponses as hr, RoutingTopology as hs, searchEmails as ht, ReplyInput as i, GetSendPermissionsError as ia, SetFunctionSecretResponse as ic, FunctionSecretListItem as ii, UpdateEndpointData as il, Conversation as in, ListFiltersErrors as io, DeleteFunctionSecretError as ir, ResendCliSignupVerificationError as is, listFunctionSecrets as it, deleteEndpoint as j, InboxStatusFunctionSummary as ja, TestFunctionData as jc, GetEmailResponses as ji, VerifyCliSignupErrors as jl, Cursor as jn, PollCliLoginErrors as jo, DownloadRawEmailError as jr, SemanticSearchSnippet as js, verifyAgentSignup as jt, deleteDomain as k, InboxStatusDomain as ka, TestEndpointResponse as kc, GetEmailErrors as ki, VerifyCliSignupData as kl, CreateFunctionSecretResponse as kn, PollCliLoginData as ko, DownloadDomainZoneFileResponses as kr, SemanticSearchResult as ks, updateFilter as kt, SendResult as l, GetSentEmailError as la, StartAgentSignupInput as lc, FunctionTestRunInboundEmail as li, UpdateEndpointResponses as ll, CreateEndpointInput as ln, ListFunctionLogsErrors as lo, DeliverySummary as lr, ResourceId as ls, replayEmailWebhooks as lt, VerifyOptions as m, GetStorageStatsError as ma, StartCliLoginErrors as mc, FunctionTestRunTrace as mi, UpdateFilterResponse as ml, CreateFilterErrors as mn, ListFunctionSecretsErrors as mo, DiscardEmailContentResponse as mr, RotateWebhookSecretResponses as ms, sdk_gen_d_exports as mt, PrimitiveClient as n, GetOrgRoutingTopologyResponses as na, SetFunctionSecretErrors as nc, FunctionRouteResult as ni, UpdateDomainResponse as nl, CliSignupStartResult as nn, ListFiltersData as no, DeleteFunctionResponses as nr, ResendAgentSignupVerificationResponses as ns, listFilters as nt, SemanticSearchResponse as o, GetSendPermissionsResponse as oa, StartAgentSignupData as oc, FunctionTestRun as oi, UpdateEndpointErrors as ol, CreateEndpointData as on, ListFiltersResponses as oo, DeleteFunctionSecretResponse as or, ResendCliSignupVerificationInput as os, listSentEmails as ot, PRIMITIVE_SIGNATURE_HEADER as p, GetStorageStatsData as pa, StartCliLoginError as pc, FunctionTestRunState as pi, UpdateFilterInput as pl, CreateFilterError as pn, ListFunctionSecretsError as po, DiscardEmailContentErrors as pr, RotateWebhookSecretResponse as ps, rotateWebhookSecret as pt, getSendPermissions as q, ListEmailsErrors as qa, UpdateAccountError as qc, GetInboxStatusData as qi, RequestOptions$2 as ql, DeleteFilterData as qn, ReplyToEmailError as qo, EmailWebhookStatus as qr, SentEmailStatus as qs, CliLoginStartResult as qt, PrimitiveClientOptions as r, GetSendPermissionsData as ra, SetFunctionSecretInput as rc, FunctionRouting as ri, UpdateDomainResponses as rl, CliSignupVerifyResult as rn, ListFiltersError as ro, DeleteFunctionSecretData as rr, ResendCliSignupVerificationData as rs, listFunctionLogs as rt, SendAttachment as s, GetSendPermissionsResponses as sa, StartAgentSignupError as sc, FunctionTestRunDelivery as si, UpdateEndpointInput as sl, CreateEndpointError as sn, ListFunctionLogsData as so, DeleteFunctionSecretResponses as sr, ResendCliSignupVerificationResponse as ss, pollCliLogin as st, ForwardInput as t, GetOrgRoutingTopologyResponse as ta, SetFunctionSecretError as tc, FunctionRouteBody as ti, UpdateDomainInput as tl, CliSignupResendResult as tn, ListEnvelope as to, DeleteFunctionResponse as tr, ResendAgentSignupVerificationResponse as ts, listEndpoints as tt, SendThreadInput as u, GetSentEmailErrors as ua, StartAgentSignupResponse as uc, FunctionTestRunOutboundRequest as ui, UpdateFilterData as ul, CreateEndpointResponse as un, ListFunctionLogsResponse as uo, DiscardContentResult as ur, RotateWebhookSecretData as us, replyToEmail as ut, PrimitiveApiClientOptions as v, GetThreadData as va, StartCliSignupData as vc, GetAccountError as vi, UpdateFunctionErrors as vl, CreateFunctionData as vn, ListFunctionsError as vo, DomainDnsRecord as vr, SearchEmailsErrors as vs, setFunctionRoute as vt, cliLogout as w, GetWebhookSecretError as wa, StorageStats as wc, GetConversationErrors as wi, VerifyAgentSignupError as wl, CreateFunctionResult as wn, ListSentEmailsErrors as wo, DownloadAttachmentsResponses as wr, SemanticSearchErrors as ws, testFunction as wt, RequestOptions$1 as x, GetThreadResponse as xa, StartCliSignupInput as xc, GetAccountResponses as xi, UpdateFunctionResponses as xl, CreateFunctionInput as xn, ListFunctionsResponses as xo, DownloadAttachmentsError as xr, SemanticSearchCoverage as xs, startCliLogin as xt, PrimitiveApiError as y, GetThreadError as ya, StartCliSignupError as yc, GetAccountErrors as yi, UpdateFunctionInput as yl, CreateFunctionError as yn, ListFunctionsErrors as yo, DomainVerifyResult as yr, SearchEmailsResponse as ys, setFunctionSecret as yt, getAccount as z, ListDeliveriesResponses as za, ThreadMessage as zc, GetFunctionRoutingErrors as zi, VerifyDomainResponses as zl, DeleteEmailErrors as zn, ReplayDeliveryResponses as zo, EmailDetailReply as zr, SendMailResult as zs, AddDomainInput as zt };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { c as SendInput, d as client, f as createPrimitiveClient, i as ReplyInput, l as SendResult, n as PrimitiveClient, r as PrimitiveClientOptions, s as SendAttachment, t as ForwardInput, u as SendThreadInput, y as PrimitiveApiError } from "./index-
|
|
1
|
+
import { c as SendInput, d as client, f as createPrimitiveClient, i as ReplyInput, l as SendResult, n as PrimitiveClient, r as PrimitiveClientOptions, s as SendAttachment, t as ForwardInput, u as SendThreadInput, y as PrimitiveApiError } from "./index-9uc511Ei.js";
|
|
2
2
|
import { A as UnknownEvent, C as ParsedDataFailed, D as RawContentDownloadOnly, E as RawContent, M as WebhookAttachment, N as WebhookEvent, O as RawContentInline, S as ParsedDataComplete, T as ParsedStatus, _ as ForwardResultInline, a as DmarcPolicy, b as KnownWebhookEvent, c as EmailAnalysis, d as EventType, f as ForwardAnalysis, g as ForwardResultAttachmentSkipped, h as ForwardResultAttachmentAnalyzed, i as DkimSignature, j as ValidateEmailAuthResult, k as SpfResult, l as EmailAuth, m as ForwardResult, n as AuthVerdict, o as DmarcResult, p as ForwardOriginalSender, r as DkimResult, s as EmailAddress, t as AuthConfidence, u as EmailReceivedEvent, v as ForwardVerdict, w as ParsedError, x as ParsedData, y as ForwardVerification } from "./types-yNU-Oiea.js";
|
|
3
3
|
import { _ as buildForwardSubject, a as RawEmailDecodeErrorCode, b as normalizeReceivedEmail, c as WebhookPayloadError, d as WebhookValidationErrorCode, f as WebhookVerificationError, g as ReceivedEmailThread, h as ReceivedEmailAddress, i as RawEmailDecodeError, l as WebhookPayloadErrorCode, m as ReceivedEmail, n as PrimitiveWebhookError, o as VERIFICATION_ERRORS, p as WebhookVerificationErrorCode, r as RAW_EMAIL_ERRORS, s as WebhookErrorCode, t as PAYLOAD_ERRORS, u as WebhookValidationError, v as buildReplySubject, x as parseHeaderAddress, y as formatAddress } from "./errors-7E9sW9eX.js";
|
|
4
4
|
import { A as VerifyOptions, C as signStandardWebhooksPayload, D as PRIMITIVE_CONFIRMED_HEADER, E as LEGACY_SIGNATURE_HEADER, F as VerifyDownloadTokenResult, I as generateDownloadToken, L as verifyDownloadToken, M as verifyWebhookSignature, N as GenerateDownloadTokenOptions, O as PRIMITIVE_SIGNATURE_HEADER, P as VerifyDownloadTokenOptions, R as safeValidateEmailReceivedEvent, S as StandardWebhooksVerifyOptions, T as LEGACY_CONFIRMED_HEADER, _ as emailReceivedEventJsonSchema, a as confirmedHeaders, b as STANDARD_WEBHOOK_TIMESTAMP_HEADER, c as handleWebhook, d as isRawIncluded, f as parseWebhookEvent, g as validateEmailAuth, h as WEBHOOK_VERSION, i as WebhookHeaders, j as signWebhookPayload, k as SignResult, l as isDownloadExpired, m as verifyRawEmailDownload, n as HandleWebhookOptions, o as decodeRawEmail, p as receive, r as ReceiveRequestOptions, s as getDownloadTimeRemaining, t as DecodeRawEmailOptions, u as isEmailReceivedEvent, v as STANDARD_WEBHOOK_ID_HEADER, w as verifyStandardWebhooksSignature, x as StandardWebhooksSignResult, y as STANDARD_WEBHOOK_SIGNATURE_HEADER, z as validateEmailReceivedEvent } from "./index-DR978rq5.js";
|
package/dist/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { c as PrimitiveApiError, n as client, r as createPrimitiveClient, t as PrimitiveClient } from "./api-
|
|
1
|
+
import { c as PrimitiveApiError, n as client, r as createPrimitiveClient, t as PrimitiveClient } from "./api-Cxq2cH8Q.js";
|
|
2
2
|
import { a as VERIFICATION_ERRORS, c as WebhookVerificationError, d as formatAddress, f as normalizeReceivedEmail, i as RawEmailDecodeError, l as buildForwardSubject, n as PrimitiveWebhookError, o as WebhookPayloadError, p as parseHeaderAddress, r as RAW_EMAIL_ERRORS, s as WebhookValidationError, t as PAYLOAD_ERRORS, u as buildReplySubject } from "./errors-BPJGp9I6.js";
|
|
3
3
|
import { A as PRIMITIVE_CONFIRMED_HEADER, C as STANDARD_WEBHOOK_ID_HEADER, D as verifyStandardWebhooksSignature, E as signStandardWebhooksPayload, F as verifyDownloadToken, I as safeValidateEmailReceivedEvent, L as validateEmailReceivedEvent, M as signWebhookPayload, N as verifyWebhookSignature, O as LEGACY_CONFIRMED_HEADER, P as generateDownloadToken, S as emailReceivedEventJsonSchema, T as STANDARD_WEBHOOK_TIMESTAMP_HEADER, _ as DmarcResult, a as isDownloadExpired, b as ParsedStatus, c as parseWebhookEvent, d as WEBHOOK_VERSION, f as validateEmailAuth, g as DmarcPolicy, h as DkimResult, i as handleWebhook, j as PRIMITIVE_SIGNATURE_HEADER, k as LEGACY_SIGNATURE_HEADER, l as receive, m as AuthVerdict, n as decodeRawEmail, o as isEmailReceivedEvent, p as AuthConfidence, r as getDownloadTimeRemaining, s as isRawIncluded, t as confirmedHeaders, u as verifyRawEmailDownload, v as EventType, w as STANDARD_WEBHOOK_SIGNATURE_HEADER, x as SpfResult, y as ForwardVerdict } from "./webhook-BAwK8EOG.js";
|
|
4
4
|
//#region src/index.ts
|
package/dist/openapi/index.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { n as openapiDocument, t as operationManifest } from "../operations.generated-
|
|
1
|
+
import { n as openapiDocument, t as operationManifest } from "../operations.generated-CsHewGFi.js";
|
|
2
2
|
export { openapiDocument, operationManifest };
|