@ax-hub/sdk 0.2.0 → 0.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +10 -0
- package/README.md +11 -26
- package/dist/cli/doctor.cjs +1 -1
- package/dist/cli/doctor.js +1 -1
- package/dist/index.cjs +1 -1
- package/dist/index.d.cts +1 -46
- package/dist/index.d.ts +1 -46
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -1868,22 +1868,6 @@ declare class DeploymentsClient {
|
|
|
1868
1868
|
rollback(appId: string, did: string): Promise<void>;
|
|
1869
1869
|
}
|
|
1870
1870
|
|
|
1871
|
-
interface GatewayEngine {
|
|
1872
|
-
name: 'postgres' | 'mysql' | string;
|
|
1873
|
-
capabilities: string[];
|
|
1874
|
-
}
|
|
1875
|
-
interface GatewayConnector {
|
|
1876
|
-
id: string;
|
|
1877
|
-
engine: string;
|
|
1878
|
-
name: string;
|
|
1879
|
-
[key: string]: unknown;
|
|
1880
|
-
}
|
|
1881
|
-
interface GatewayResource {
|
|
1882
|
-
id: string;
|
|
1883
|
-
connectorId: string;
|
|
1884
|
-
name: string;
|
|
1885
|
-
[key: string]: unknown;
|
|
1886
|
-
}
|
|
1887
1871
|
interface GatewayQueryInput {
|
|
1888
1872
|
resourceId?: string;
|
|
1889
1873
|
connectorId?: string;
|
|
@@ -2009,40 +1993,12 @@ declare class GatewayClient {
|
|
|
2009
1993
|
scoped(tenantSlug: string): TenantGatewayClient;
|
|
2010
1994
|
}
|
|
2011
1995
|
declare class TenantGatewayClient {
|
|
2012
|
-
/** @adminOnly Global engine catalog. Governance read — requires tenant_admin (v0.1, SPEC 307). */
|
|
2013
|
-
readonly engines: GatewayEnginesClient;
|
|
2014
|
-
/** @adminOnly Connector governance (list/create/update/...). Member callers get ForbiddenError (v0.1). Members use `catalog.listConnectors()`. */
|
|
2015
|
-
readonly connectors: GatewayConnectorsClient;
|
|
2016
|
-
/** @adminOnly Raw resource governance. Member callers get ForbiddenError (v0.1). Members use `catalog.listResources()`. */
|
|
2017
|
-
readonly resources: GatewayResourcesClient;
|
|
2018
1996
|
/** Run a parameterized read query. Member OK. See also `catalog.invoke()`. */
|
|
2019
1997
|
readonly query: GatewayQueryClient;
|
|
2020
1998
|
/** Member-facing catalog: discover connectors/resources you can read + invoke. */
|
|
2021
1999
|
readonly catalog: GatewayCatalogClient;
|
|
2022
2000
|
constructor(http: HttpClient, tenantSlug: string);
|
|
2023
2001
|
}
|
|
2024
|
-
declare class GatewayEnginesClient {
|
|
2025
|
-
private readonly http;
|
|
2026
|
-
private readonly base;
|
|
2027
|
-
constructor(http: HttpClient, base: string);
|
|
2028
|
-
list(opts?: RequestOptions): Promise<GatewayEngine[]>;
|
|
2029
|
-
}
|
|
2030
|
-
declare class GatewayCrud<T extends {
|
|
2031
|
-
id: string;
|
|
2032
|
-
}> {
|
|
2033
|
-
protected readonly http: HttpClient;
|
|
2034
|
-
protected readonly base: string;
|
|
2035
|
-
constructor(http: HttpClient, base: string);
|
|
2036
|
-
list(opts?: RequestOptions): Promise<T[]>;
|
|
2037
|
-
get(id: string, opts?: RequestOptions): Promise<T>;
|
|
2038
|
-
create(input: Record<string, unknown>, opts?: RequestOptions): Promise<T>;
|
|
2039
|
-
update(id: string, patch: Record<string, unknown>, opts?: RequestOptions): Promise<T>;
|
|
2040
|
-
delete(id: string, opts?: RequestOptions): Promise<void>;
|
|
2041
|
-
}
|
|
2042
|
-
declare class GatewayConnectorsClient extends GatewayCrud<GatewayConnector> {
|
|
2043
|
-
}
|
|
2044
|
-
declare class GatewayResourcesClient extends GatewayCrud<GatewayResource> {
|
|
2045
|
-
}
|
|
2046
2002
|
declare class GatewayQueryClient {
|
|
2047
2003
|
private readonly http;
|
|
2048
2004
|
private readonly base;
|
|
@@ -2065,7 +2021,6 @@ declare class GatewayQueryClient {
|
|
|
2065
2021
|
}
|
|
2066
2022
|
/**
|
|
2067
2023
|
* Member-facing gateway catalog: connectors/resources the caller can read, plus `invoke`.
|
|
2068
|
-
* Distinct from the `@adminOnly` governance clients (`connectors`/`resources`/`engines`).
|
|
2069
2024
|
*/
|
|
2070
2025
|
declare class GatewayCatalogClient {
|
|
2071
2026
|
private readonly http;
|
|
@@ -2546,4 +2501,4 @@ interface VerifyWebhookResult {
|
|
|
2546
2501
|
declare function signWebhook(rawBody: Buffer | Uint8Array | string, secret: string, timestamp?: string): string;
|
|
2547
2502
|
declare function verifyWebhook(input: VerifyWebhookInput): VerifyWebhookResult;
|
|
2548
2503
|
|
|
2549
|
-
export { AbortError, AccessDeniedError, type AddColumnInput, type AddCommentInput, type AddGrantInput, AlreadyAccessedError, AlreadyActiveError, AlreadyDeletedError, AlreadyInactiveError, AlreadyMemberError, AlreadyRevokedError, AlreadySettledError, type AnonymizeInput, type AppAccess, type AppCategory, type AppID, type AppId, type AppResponse, AppScopedClient, AppScopedDataClient, type AppSlug, type AppTable, type AppTemplate, AppUnavailableError, AppsClient, AuditClient, type AuditEvent, type AuditEventID, type AuthProvider, type AuthRing, AuthorizationPendingError, AuthzClient, type AuthzGrant, type AuthzSubject, type AuthzTag, AxHubClient, type AxHubClientOptions, AxHubError, type AxHubErrorInit, BadRequestError, type Branded, type BulkInviteResult, type CatalogAncestor, type CatalogConnector, type CatalogKind, type CatalogKindAction, type CatalogPermissionsReadDetail, type CatalogPermissionsReadList, type CatalogResourceDetail, type CatalogResourceFilter, type CatalogResourceView, type CatalogTag, type ColumnType, type Comment, ConfigurationError, ConflictError, type ConnectGitInput, type ConnectorID, type CreateAppInput, type CreateCategoryInput, type CreateDeploymentInput, type CreateOAuthClientInput, type CreateTableInput, type CreateTenantInput, type CursorDirection, DEFAULT_BASE_URL, type DataBulkResult, DataClient, type DataCountOptions, type DataGetOptions, type DataListOptions, type DataOrderBy, DataTableClient, type DataTableSchema, type DecideInput, type DecideResult, DecodeError, type DeploymentFailureReason, type DeploymentID, type DeploymentId, type DeploymentResponse, type DeploymentStatus, DeploymentsClient, type DeviceAuthorizationResponse, DeviceFlowDeniedError, DeviceFlowTimeoutError, type DiscoverAppsOptions, type DiscoverOptions, type DispatchContext, DomainTakenError, DuplicateError, type EmailDomain, type EmitAuditEventInput, EmptyError, type EnvVar, ExpiredTokenError, type FetchLike, type FieldError, ForbiddenError, GatewayCatalogClient, GatewayClient, type
|
|
2504
|
+
export { AbortError, AccessDeniedError, type AddColumnInput, type AddCommentInput, type AddGrantInput, AlreadyAccessedError, AlreadyActiveError, AlreadyDeletedError, AlreadyInactiveError, AlreadyMemberError, AlreadyRevokedError, AlreadySettledError, type AnonymizeInput, type AppAccess, type AppCategory, type AppID, type AppId, type AppResponse, AppScopedClient, AppScopedDataClient, type AppSlug, type AppTable, type AppTemplate, AppUnavailableError, AppsClient, AuditClient, type AuditEvent, type AuditEventID, type AuthProvider, type AuthRing, AuthorizationPendingError, AuthzClient, type AuthzGrant, type AuthzSubject, type AuthzTag, AxHubClient, type AxHubClientOptions, AxHubError, type AxHubErrorInit, BadRequestError, type Branded, type BulkInviteResult, type CatalogAncestor, type CatalogConnector, type CatalogKind, type CatalogKindAction, type CatalogPermissionsReadDetail, type CatalogPermissionsReadList, type CatalogResourceDetail, type CatalogResourceFilter, type CatalogResourceView, type CatalogTag, type ColumnType, type Comment, ConfigurationError, ConflictError, type ConnectGitInput, type ConnectorID, type CreateAppInput, type CreateCategoryInput, type CreateDeploymentInput, type CreateOAuthClientInput, type CreateTableInput, type CreateTenantInput, type CursorDirection, DEFAULT_BASE_URL, type DataBulkResult, DataClient, type DataCountOptions, type DataGetOptions, type DataListOptions, type DataOrderBy, DataTableClient, type DataTableSchema, type DecideInput, type DecideResult, DecodeError, type DeploymentFailureReason, type DeploymentID, type DeploymentId, type DeploymentResponse, type DeploymentStatus, DeploymentsClient, type DeviceAuthorizationResponse, DeviceFlowDeniedError, DeviceFlowTimeoutError, type DiscoverAppsOptions, type DiscoverOptions, type DispatchContext, DomainTakenError, DuplicateError, type EmailDomain, type EmitAuditEventInput, EmptyError, type EnvVar, ExpiredTokenError, type FetchLike, type FieldError, ForbiddenError, GatewayCatalogClient, GatewayClient, type GatewayQueryColumn, type GatewayQueryInput, type GatewayQueryResult, type GitConnection, type GitConnectionSetup, type GitConnectionStatus, type GithubInstallStart, type GrantID, type GrantPrincipalType, type GrantScope, IdentityClient, IdentityDeviceCodeClient, IdentityMeClient, IdentityOAuthClient, IdentityOIDCClient, IdentityPATClient, type IdentityProvider, IdentityProviderClient, IdentitySystemOAuthClientsClient, type InferRow, type InstallStartInput, type IntegrityCheckResult, InternalServerError, IntrospectFailedError, InvalidCursorError, InvalidGrantError, InvalidPathError, InvalidStateTransitionError, InvalidValueError, InvitationExpiredError, type InviteTenantMemberInput, type InvokeInput, type InvokeResult, type IssuePersonalAccessTokenInput, type IssuePersonalAccessTokenResult, type KeysetCursor, LastAdminError, LegacyCursorError, type LikeResult, type LikeStatus, type ListAllItem, type ListAllOptions, type ListOptions, type Logger, type MeResponse, type MockClientOptions, type MockFixtures, MockInProductionError, type MockRow, type MockSchemas, MockStore, NetworkError, NoAuth, NotAdminError, NotAllowedError, NotDeletedError, NotFoundError, NotMemberError, type OAuthClient, type OAuthClientWithSecret, OAuthError, type OAuthErrorInit, type OAuthTokenResponse, type OrderByField, type PATID, type PATSummary, type PaginatedList, type ParsedFrame, type PatId, PendingExistsError, PermanentlyDeletedError, PermissionDeniedError, PoolStaleError, PreconditionFailedError, type PublicationRequest, type PublicationRequestStatus, PublicationRequestsClient, type QueryExpr, type RateLimitStrategy, RateLimitedError, type RequestId, RequiredError, type ResourceID, type RetryInfo, type SSEStream, ScanLimitExceededError, SchemaCache, type SchemaCacheOptions, SchemaNameTakenError, type SchemaShapeFromRow, type SelectColumns, type SettlePublicationInput, type SignIconUploadInput, type SignIconUploadResult, SlowDownError, SlugTakenError, StaticTokenAuth, StreamConsumedError, type StreamItem, type SubjectID, type SubmitPublicationInput, type SystemOAuthClient, type TableColumn, type TableConstraint, type TableGrant, type TableID, type TableIndex, TableNotFoundError, type TableSchema, type TagID, type Tenant, TenantGatewayClient, type TenantID, type TenantId, type TenantInvitation, type TenantMember, TenantScopedAppsClient, TenantScopedClient, type TenantSlug, TenantSlugRequiredError, TenantsClient, TimeoutError, TokenExpiredError, TokenInvalidError, TokenMissingError, type TokenType, UnauthenticatedError, UnavailableError, type UnlikeResult, type UnpublishInput, type UpdateAppInput, type UpdateGitConnectionInput, type UpdateTenantInput, type UserID, type UserId, ValidationError, type VerifyWebhookInput, type VerifyWebhookResult, WebhookVerificationError, type WebhookVerifyReason, and, asAppId, asAppSlug, asDeploymentId, asPatId, asRequestId, asTenantId, asTenantSlug, asUserId, assertMockModeAllowed, createMockStore, cursorFromRow, decodeCursor, defineSchema, dispatch, encodeCursor, escapeLike, formatErrorMessage, getAccessibleColumns, getMaskHint, id, isAllowed, isOAuthPath, isPolicyDeny, isSqlFormatError, not, or, orderByFingerprint, parseRetryAfter, raw, schemaCacheKey, signWebhook, tableFromPath, verifyWebhook, where };
|
package/dist/index.d.ts
CHANGED
|
@@ -1868,22 +1868,6 @@ declare class DeploymentsClient {
|
|
|
1868
1868
|
rollback(appId: string, did: string): Promise<void>;
|
|
1869
1869
|
}
|
|
1870
1870
|
|
|
1871
|
-
interface GatewayEngine {
|
|
1872
|
-
name: 'postgres' | 'mysql' | string;
|
|
1873
|
-
capabilities: string[];
|
|
1874
|
-
}
|
|
1875
|
-
interface GatewayConnector {
|
|
1876
|
-
id: string;
|
|
1877
|
-
engine: string;
|
|
1878
|
-
name: string;
|
|
1879
|
-
[key: string]: unknown;
|
|
1880
|
-
}
|
|
1881
|
-
interface GatewayResource {
|
|
1882
|
-
id: string;
|
|
1883
|
-
connectorId: string;
|
|
1884
|
-
name: string;
|
|
1885
|
-
[key: string]: unknown;
|
|
1886
|
-
}
|
|
1887
1871
|
interface GatewayQueryInput {
|
|
1888
1872
|
resourceId?: string;
|
|
1889
1873
|
connectorId?: string;
|
|
@@ -2009,40 +1993,12 @@ declare class GatewayClient {
|
|
|
2009
1993
|
scoped(tenantSlug: string): TenantGatewayClient;
|
|
2010
1994
|
}
|
|
2011
1995
|
declare class TenantGatewayClient {
|
|
2012
|
-
/** @adminOnly Global engine catalog. Governance read — requires tenant_admin (v0.1, SPEC 307). */
|
|
2013
|
-
readonly engines: GatewayEnginesClient;
|
|
2014
|
-
/** @adminOnly Connector governance (list/create/update/...). Member callers get ForbiddenError (v0.1). Members use `catalog.listConnectors()`. */
|
|
2015
|
-
readonly connectors: GatewayConnectorsClient;
|
|
2016
|
-
/** @adminOnly Raw resource governance. Member callers get ForbiddenError (v0.1). Members use `catalog.listResources()`. */
|
|
2017
|
-
readonly resources: GatewayResourcesClient;
|
|
2018
1996
|
/** Run a parameterized read query. Member OK. See also `catalog.invoke()`. */
|
|
2019
1997
|
readonly query: GatewayQueryClient;
|
|
2020
1998
|
/** Member-facing catalog: discover connectors/resources you can read + invoke. */
|
|
2021
1999
|
readonly catalog: GatewayCatalogClient;
|
|
2022
2000
|
constructor(http: HttpClient, tenantSlug: string);
|
|
2023
2001
|
}
|
|
2024
|
-
declare class GatewayEnginesClient {
|
|
2025
|
-
private readonly http;
|
|
2026
|
-
private readonly base;
|
|
2027
|
-
constructor(http: HttpClient, base: string);
|
|
2028
|
-
list(opts?: RequestOptions): Promise<GatewayEngine[]>;
|
|
2029
|
-
}
|
|
2030
|
-
declare class GatewayCrud<T extends {
|
|
2031
|
-
id: string;
|
|
2032
|
-
}> {
|
|
2033
|
-
protected readonly http: HttpClient;
|
|
2034
|
-
protected readonly base: string;
|
|
2035
|
-
constructor(http: HttpClient, base: string);
|
|
2036
|
-
list(opts?: RequestOptions): Promise<T[]>;
|
|
2037
|
-
get(id: string, opts?: RequestOptions): Promise<T>;
|
|
2038
|
-
create(input: Record<string, unknown>, opts?: RequestOptions): Promise<T>;
|
|
2039
|
-
update(id: string, patch: Record<string, unknown>, opts?: RequestOptions): Promise<T>;
|
|
2040
|
-
delete(id: string, opts?: RequestOptions): Promise<void>;
|
|
2041
|
-
}
|
|
2042
|
-
declare class GatewayConnectorsClient extends GatewayCrud<GatewayConnector> {
|
|
2043
|
-
}
|
|
2044
|
-
declare class GatewayResourcesClient extends GatewayCrud<GatewayResource> {
|
|
2045
|
-
}
|
|
2046
2002
|
declare class GatewayQueryClient {
|
|
2047
2003
|
private readonly http;
|
|
2048
2004
|
private readonly base;
|
|
@@ -2065,7 +2021,6 @@ declare class GatewayQueryClient {
|
|
|
2065
2021
|
}
|
|
2066
2022
|
/**
|
|
2067
2023
|
* Member-facing gateway catalog: connectors/resources the caller can read, plus `invoke`.
|
|
2068
|
-
* Distinct from the `@adminOnly` governance clients (`connectors`/`resources`/`engines`).
|
|
2069
2024
|
*/
|
|
2070
2025
|
declare class GatewayCatalogClient {
|
|
2071
2026
|
private readonly http;
|
|
@@ -2546,4 +2501,4 @@ interface VerifyWebhookResult {
|
|
|
2546
2501
|
declare function signWebhook(rawBody: Buffer | Uint8Array | string, secret: string, timestamp?: string): string;
|
|
2547
2502
|
declare function verifyWebhook(input: VerifyWebhookInput): VerifyWebhookResult;
|
|
2548
2503
|
|
|
2549
|
-
export { AbortError, AccessDeniedError, type AddColumnInput, type AddCommentInput, type AddGrantInput, AlreadyAccessedError, AlreadyActiveError, AlreadyDeletedError, AlreadyInactiveError, AlreadyMemberError, AlreadyRevokedError, AlreadySettledError, type AnonymizeInput, type AppAccess, type AppCategory, type AppID, type AppId, type AppResponse, AppScopedClient, AppScopedDataClient, type AppSlug, type AppTable, type AppTemplate, AppUnavailableError, AppsClient, AuditClient, type AuditEvent, type AuditEventID, type AuthProvider, type AuthRing, AuthorizationPendingError, AuthzClient, type AuthzGrant, type AuthzSubject, type AuthzTag, AxHubClient, type AxHubClientOptions, AxHubError, type AxHubErrorInit, BadRequestError, type Branded, type BulkInviteResult, type CatalogAncestor, type CatalogConnector, type CatalogKind, type CatalogKindAction, type CatalogPermissionsReadDetail, type CatalogPermissionsReadList, type CatalogResourceDetail, type CatalogResourceFilter, type CatalogResourceView, type CatalogTag, type ColumnType, type Comment, ConfigurationError, ConflictError, type ConnectGitInput, type ConnectorID, type CreateAppInput, type CreateCategoryInput, type CreateDeploymentInput, type CreateOAuthClientInput, type CreateTableInput, type CreateTenantInput, type CursorDirection, DEFAULT_BASE_URL, type DataBulkResult, DataClient, type DataCountOptions, type DataGetOptions, type DataListOptions, type DataOrderBy, DataTableClient, type DataTableSchema, type DecideInput, type DecideResult, DecodeError, type DeploymentFailureReason, type DeploymentID, type DeploymentId, type DeploymentResponse, type DeploymentStatus, DeploymentsClient, type DeviceAuthorizationResponse, DeviceFlowDeniedError, DeviceFlowTimeoutError, type DiscoverAppsOptions, type DiscoverOptions, type DispatchContext, DomainTakenError, DuplicateError, type EmailDomain, type EmitAuditEventInput, EmptyError, type EnvVar, ExpiredTokenError, type FetchLike, type FieldError, ForbiddenError, GatewayCatalogClient, GatewayClient, type
|
|
2504
|
+
export { AbortError, AccessDeniedError, type AddColumnInput, type AddCommentInput, type AddGrantInput, AlreadyAccessedError, AlreadyActiveError, AlreadyDeletedError, AlreadyInactiveError, AlreadyMemberError, AlreadyRevokedError, AlreadySettledError, type AnonymizeInput, type AppAccess, type AppCategory, type AppID, type AppId, type AppResponse, AppScopedClient, AppScopedDataClient, type AppSlug, type AppTable, type AppTemplate, AppUnavailableError, AppsClient, AuditClient, type AuditEvent, type AuditEventID, type AuthProvider, type AuthRing, AuthorizationPendingError, AuthzClient, type AuthzGrant, type AuthzSubject, type AuthzTag, AxHubClient, type AxHubClientOptions, AxHubError, type AxHubErrorInit, BadRequestError, type Branded, type BulkInviteResult, type CatalogAncestor, type CatalogConnector, type CatalogKind, type CatalogKindAction, type CatalogPermissionsReadDetail, type CatalogPermissionsReadList, type CatalogResourceDetail, type CatalogResourceFilter, type CatalogResourceView, type CatalogTag, type ColumnType, type Comment, ConfigurationError, ConflictError, type ConnectGitInput, type ConnectorID, type CreateAppInput, type CreateCategoryInput, type CreateDeploymentInput, type CreateOAuthClientInput, type CreateTableInput, type CreateTenantInput, type CursorDirection, DEFAULT_BASE_URL, type DataBulkResult, DataClient, type DataCountOptions, type DataGetOptions, type DataListOptions, type DataOrderBy, DataTableClient, type DataTableSchema, type DecideInput, type DecideResult, DecodeError, type DeploymentFailureReason, type DeploymentID, type DeploymentId, type DeploymentResponse, type DeploymentStatus, DeploymentsClient, type DeviceAuthorizationResponse, DeviceFlowDeniedError, DeviceFlowTimeoutError, type DiscoverAppsOptions, type DiscoverOptions, type DispatchContext, DomainTakenError, DuplicateError, type EmailDomain, type EmitAuditEventInput, EmptyError, type EnvVar, ExpiredTokenError, type FetchLike, type FieldError, ForbiddenError, GatewayCatalogClient, GatewayClient, type GatewayQueryColumn, type GatewayQueryInput, type GatewayQueryResult, type GitConnection, type GitConnectionSetup, type GitConnectionStatus, type GithubInstallStart, type GrantID, type GrantPrincipalType, type GrantScope, IdentityClient, IdentityDeviceCodeClient, IdentityMeClient, IdentityOAuthClient, IdentityOIDCClient, IdentityPATClient, type IdentityProvider, IdentityProviderClient, IdentitySystemOAuthClientsClient, type InferRow, type InstallStartInput, type IntegrityCheckResult, InternalServerError, IntrospectFailedError, InvalidCursorError, InvalidGrantError, InvalidPathError, InvalidStateTransitionError, InvalidValueError, InvitationExpiredError, type InviteTenantMemberInput, type InvokeInput, type InvokeResult, type IssuePersonalAccessTokenInput, type IssuePersonalAccessTokenResult, type KeysetCursor, LastAdminError, LegacyCursorError, type LikeResult, type LikeStatus, type ListAllItem, type ListAllOptions, type ListOptions, type Logger, type MeResponse, type MockClientOptions, type MockFixtures, MockInProductionError, type MockRow, type MockSchemas, MockStore, NetworkError, NoAuth, NotAdminError, NotAllowedError, NotDeletedError, NotFoundError, NotMemberError, type OAuthClient, type OAuthClientWithSecret, OAuthError, type OAuthErrorInit, type OAuthTokenResponse, type OrderByField, type PATID, type PATSummary, type PaginatedList, type ParsedFrame, type PatId, PendingExistsError, PermanentlyDeletedError, PermissionDeniedError, PoolStaleError, PreconditionFailedError, type PublicationRequest, type PublicationRequestStatus, PublicationRequestsClient, type QueryExpr, type RateLimitStrategy, RateLimitedError, type RequestId, RequiredError, type ResourceID, type RetryInfo, type SSEStream, ScanLimitExceededError, SchemaCache, type SchemaCacheOptions, SchemaNameTakenError, type SchemaShapeFromRow, type SelectColumns, type SettlePublicationInput, type SignIconUploadInput, type SignIconUploadResult, SlowDownError, SlugTakenError, StaticTokenAuth, StreamConsumedError, type StreamItem, type SubjectID, type SubmitPublicationInput, type SystemOAuthClient, type TableColumn, type TableConstraint, type TableGrant, type TableID, type TableIndex, TableNotFoundError, type TableSchema, type TagID, type Tenant, TenantGatewayClient, type TenantID, type TenantId, type TenantInvitation, type TenantMember, TenantScopedAppsClient, TenantScopedClient, type TenantSlug, TenantSlugRequiredError, TenantsClient, TimeoutError, TokenExpiredError, TokenInvalidError, TokenMissingError, type TokenType, UnauthenticatedError, UnavailableError, type UnlikeResult, type UnpublishInput, type UpdateAppInput, type UpdateGitConnectionInput, type UpdateTenantInput, type UserID, type UserId, ValidationError, type VerifyWebhookInput, type VerifyWebhookResult, WebhookVerificationError, type WebhookVerifyReason, and, asAppId, asAppSlug, asDeploymentId, asPatId, asRequestId, asTenantId, asTenantSlug, asUserId, assertMockModeAllowed, createMockStore, cursorFromRow, decodeCursor, defineSchema, dispatch, encodeCursor, escapeLike, formatErrorMessage, getAccessibleColumns, getMaskHint, id, isAllowed, isOAuthPath, isPolicyDeny, isSqlFormatError, not, or, orderByFingerprint, parseRetryAfter, raw, schemaCacheKey, signWebhook, tableFromPath, verifyWebhook, where };
|