@vaiftech/client 1.0.5 → 1.0.6
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/index.d.mts +341 -3
- package/dist/index.d.ts +341 -3
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +11 -11
package/dist/index.d.mts
CHANGED
|
@@ -2955,6 +2955,7 @@ interface PreviewInput {
|
|
|
2955
2955
|
projectId: string;
|
|
2956
2956
|
envId?: string;
|
|
2957
2957
|
definition: SchemaDefinition;
|
|
2958
|
+
allowDestructive?: boolean;
|
|
2958
2959
|
}
|
|
2959
2960
|
/**
|
|
2960
2961
|
* Response from schema preview
|
|
@@ -2974,6 +2975,7 @@ interface ApplyInput {
|
|
|
2974
2975
|
envId?: string;
|
|
2975
2976
|
definition: SchemaDefinition;
|
|
2976
2977
|
migrationName?: string;
|
|
2978
|
+
allowDestructive?: boolean;
|
|
2977
2979
|
}
|
|
2978
2980
|
/**
|
|
2979
2981
|
* Migration result from apply
|
|
@@ -4730,6 +4732,152 @@ interface SystemSetting {
|
|
|
4730
4732
|
isSecret: boolean;
|
|
4731
4733
|
updatedAt: string | null;
|
|
4732
4734
|
}
|
|
4735
|
+
/**
|
|
4736
|
+
* AI Model for admin management
|
|
4737
|
+
*/
|
|
4738
|
+
interface AdminAIModel {
|
|
4739
|
+
id: string;
|
|
4740
|
+
provider: "openai" | "anthropic";
|
|
4741
|
+
modelId: string;
|
|
4742
|
+
displayName: string;
|
|
4743
|
+
tier: "free" | "paid" | "enterprise";
|
|
4744
|
+
creditMultiplier: string;
|
|
4745
|
+
maxInputTokens: number;
|
|
4746
|
+
maxOutputTokens: number;
|
|
4747
|
+
supportsStreaming: boolean;
|
|
4748
|
+
supportsVision: boolean;
|
|
4749
|
+
supportsToolUse: boolean;
|
|
4750
|
+
isEnabled: boolean;
|
|
4751
|
+
copilotName: string | null;
|
|
4752
|
+
copilotTagline: string | null;
|
|
4753
|
+
disabledMessage: string | null;
|
|
4754
|
+
createdAt: string;
|
|
4755
|
+
updatedAt: string;
|
|
4756
|
+
}
|
|
4757
|
+
/**
|
|
4758
|
+
* Create AI model input
|
|
4759
|
+
*/
|
|
4760
|
+
interface CreateAIModelInput {
|
|
4761
|
+
provider: "openai" | "anthropic";
|
|
4762
|
+
modelId: string;
|
|
4763
|
+
displayName: string;
|
|
4764
|
+
tier?: "free" | "paid" | "enterprise";
|
|
4765
|
+
creditMultiplier?: number;
|
|
4766
|
+
maxInputTokens?: number;
|
|
4767
|
+
maxOutputTokens?: number;
|
|
4768
|
+
supportsStreaming?: boolean;
|
|
4769
|
+
supportsVision?: boolean;
|
|
4770
|
+
supportsToolUse?: boolean;
|
|
4771
|
+
isEnabled?: boolean;
|
|
4772
|
+
copilotName?: string;
|
|
4773
|
+
copilotTagline?: string;
|
|
4774
|
+
}
|
|
4775
|
+
/**
|
|
4776
|
+
* Update AI model input
|
|
4777
|
+
*/
|
|
4778
|
+
interface UpdateAIModelInput {
|
|
4779
|
+
displayName?: string;
|
|
4780
|
+
tier?: "free" | "paid" | "enterprise";
|
|
4781
|
+
creditMultiplier?: number;
|
|
4782
|
+
isEnabled?: boolean;
|
|
4783
|
+
maxInputTokens?: number;
|
|
4784
|
+
maxOutputTokens?: number;
|
|
4785
|
+
supportsStreaming?: boolean;
|
|
4786
|
+
supportsVision?: boolean;
|
|
4787
|
+
supportsToolUse?: boolean;
|
|
4788
|
+
copilotName?: string;
|
|
4789
|
+
copilotTagline?: string;
|
|
4790
|
+
disabledMessage?: string;
|
|
4791
|
+
}
|
|
4792
|
+
/**
|
|
4793
|
+
* AI Workspace Session
|
|
4794
|
+
*/
|
|
4795
|
+
interface AdminAISession {
|
|
4796
|
+
id: string;
|
|
4797
|
+
userId: string;
|
|
4798
|
+
projectId: string | null;
|
|
4799
|
+
title: string | null;
|
|
4800
|
+
sessionType: string | null;
|
|
4801
|
+
status: string;
|
|
4802
|
+
primaryModelId: string | null;
|
|
4803
|
+
totalInputTokens: number | null;
|
|
4804
|
+
totalOutputTokens: number | null;
|
|
4805
|
+
totalCreditsUsed: string | null;
|
|
4806
|
+
createdAt: string;
|
|
4807
|
+
updatedAt: string;
|
|
4808
|
+
userEmail: string | null;
|
|
4809
|
+
userName: string | null;
|
|
4810
|
+
projectName: string | null;
|
|
4811
|
+
}
|
|
4812
|
+
/**
|
|
4813
|
+
* AI Workspace Turn
|
|
4814
|
+
*/
|
|
4815
|
+
interface AdminAITurn {
|
|
4816
|
+
id: string;
|
|
4817
|
+
sessionId: string;
|
|
4818
|
+
turnIndex: number;
|
|
4819
|
+
turnType: string;
|
|
4820
|
+
inputContent: string | null;
|
|
4821
|
+
outputContent: string | null;
|
|
4822
|
+
inputTokens: number | null;
|
|
4823
|
+
outputTokens: number | null;
|
|
4824
|
+
modelUsed: string | null;
|
|
4825
|
+
status: string;
|
|
4826
|
+
createdAt: string;
|
|
4827
|
+
}
|
|
4828
|
+
/**
|
|
4829
|
+
* Generated Backend
|
|
4830
|
+
*/
|
|
4831
|
+
interface AdminGeneratedBackend {
|
|
4832
|
+
id: string;
|
|
4833
|
+
userId: string;
|
|
4834
|
+
projectId: string | null;
|
|
4835
|
+
sessionId: string | null;
|
|
4836
|
+
name: string;
|
|
4837
|
+
description: string | null;
|
|
4838
|
+
status: string;
|
|
4839
|
+
generationTypes: string[] | null;
|
|
4840
|
+
framework: string | null;
|
|
4841
|
+
language: string | null;
|
|
4842
|
+
fileCount: number | null;
|
|
4843
|
+
totalLines: number | null;
|
|
4844
|
+
files: Record<string, string> | null;
|
|
4845
|
+
createdAt: string;
|
|
4846
|
+
userEmail: string | null;
|
|
4847
|
+
userName: string | null;
|
|
4848
|
+
}
|
|
4849
|
+
/**
|
|
4850
|
+
* Prompt Template
|
|
4851
|
+
*/
|
|
4852
|
+
interface AdminPromptTemplate {
|
|
4853
|
+
id: string;
|
|
4854
|
+
name: string;
|
|
4855
|
+
slug: string;
|
|
4856
|
+
category: string;
|
|
4857
|
+
description: string | null;
|
|
4858
|
+
systemPrompt: string;
|
|
4859
|
+
userPromptTemplate: string | null;
|
|
4860
|
+
variables: string[];
|
|
4861
|
+
isSystem: boolean;
|
|
4862
|
+
isEnabled: boolean;
|
|
4863
|
+
createdAt: string;
|
|
4864
|
+
updatedAt: string;
|
|
4865
|
+
}
|
|
4866
|
+
/**
|
|
4867
|
+
* Context Snapshot
|
|
4868
|
+
*/
|
|
4869
|
+
interface AdminContextSnapshot {
|
|
4870
|
+
id: string;
|
|
4871
|
+
projectId: string;
|
|
4872
|
+
totalTokens: number | null;
|
|
4873
|
+
schemaTokens: number | null;
|
|
4874
|
+
storageTokens: number | null;
|
|
4875
|
+
functionsTokens: number | null;
|
|
4876
|
+
isValid: boolean;
|
|
4877
|
+
createdAt: string;
|
|
4878
|
+
expiresAt: string | null;
|
|
4879
|
+
projectName: string | null;
|
|
4880
|
+
}
|
|
4733
4881
|
/**
|
|
4734
4882
|
* Admin module interface
|
|
4735
4883
|
*/
|
|
@@ -4863,6 +5011,105 @@ interface AdminModule {
|
|
|
4863
5011
|
ok: boolean;
|
|
4864
5012
|
key: string;
|
|
4865
5013
|
}>;
|
|
5014
|
+
listAIModels(): Promise<{
|
|
5015
|
+
ok: boolean;
|
|
5016
|
+
models: AdminAIModel[];
|
|
5017
|
+
}>;
|
|
5018
|
+
getAIModel(modelId: string): Promise<{
|
|
5019
|
+
ok: boolean;
|
|
5020
|
+
model: AdminAIModel;
|
|
5021
|
+
}>;
|
|
5022
|
+
createAIModel(data: CreateAIModelInput): Promise<{
|
|
5023
|
+
ok: boolean;
|
|
5024
|
+
model: AdminAIModel;
|
|
5025
|
+
}>;
|
|
5026
|
+
updateAIModel(modelId: string, data: UpdateAIModelInput): Promise<{
|
|
5027
|
+
ok: boolean;
|
|
5028
|
+
model: AdminAIModel;
|
|
5029
|
+
}>;
|
|
5030
|
+
deleteAIModel(modelId: string): Promise<{
|
|
5031
|
+
ok: boolean;
|
|
5032
|
+
}>;
|
|
5033
|
+
toggleAIModel(modelId: string, enabled?: boolean, disabledMessage?: string): Promise<{
|
|
5034
|
+
ok: boolean;
|
|
5035
|
+
model: AdminAIModel;
|
|
5036
|
+
}>;
|
|
5037
|
+
listAISessions(options?: AdminListOptions): Promise<{
|
|
5038
|
+
ok: boolean;
|
|
5039
|
+
sessions: AdminAISession[];
|
|
5040
|
+
total: number;
|
|
5041
|
+
}>;
|
|
5042
|
+
getAISession(sessionId: string): Promise<{
|
|
5043
|
+
ok: boolean;
|
|
5044
|
+
session: AdminAISession;
|
|
5045
|
+
turns: AdminAITurn[];
|
|
5046
|
+
}>;
|
|
5047
|
+
deleteAISession(sessionId: string): Promise<{
|
|
5048
|
+
ok: boolean;
|
|
5049
|
+
}>;
|
|
5050
|
+
listGeneratedBackends(options?: AdminListOptions & {
|
|
5051
|
+
status?: string;
|
|
5052
|
+
}): Promise<{
|
|
5053
|
+
ok: boolean;
|
|
5054
|
+
backends: AdminGeneratedBackend[];
|
|
5055
|
+
total: number;
|
|
5056
|
+
}>;
|
|
5057
|
+
getGeneratedBackend(backendId: string): Promise<{
|
|
5058
|
+
ok: boolean;
|
|
5059
|
+
backend: AdminGeneratedBackend;
|
|
5060
|
+
}>;
|
|
5061
|
+
deleteGeneratedBackend(backendId: string): Promise<{
|
|
5062
|
+
ok: boolean;
|
|
5063
|
+
}>;
|
|
5064
|
+
listPromptTemplates(options?: AdminListOptions & {
|
|
5065
|
+
category?: string;
|
|
5066
|
+
}): Promise<{
|
|
5067
|
+
ok: boolean;
|
|
5068
|
+
templates: AdminPromptTemplate[];
|
|
5069
|
+
total: number;
|
|
5070
|
+
}>;
|
|
5071
|
+
createPromptTemplate(data: {
|
|
5072
|
+
name: string;
|
|
5073
|
+
slug: string;
|
|
5074
|
+
category: string;
|
|
5075
|
+
description?: string;
|
|
5076
|
+
systemPrompt: string;
|
|
5077
|
+
userPromptTemplate?: string;
|
|
5078
|
+
variables?: string[];
|
|
5079
|
+
isEnabled?: boolean;
|
|
5080
|
+
}): Promise<{
|
|
5081
|
+
ok: boolean;
|
|
5082
|
+
template: AdminPromptTemplate;
|
|
5083
|
+
}>;
|
|
5084
|
+
updatePromptTemplate(templateId: string, data: Partial<{
|
|
5085
|
+
name: string;
|
|
5086
|
+
slug: string;
|
|
5087
|
+
category: string;
|
|
5088
|
+
description: string;
|
|
5089
|
+
systemPrompt: string;
|
|
5090
|
+
userPromptTemplate: string;
|
|
5091
|
+
variables: string[];
|
|
5092
|
+
isEnabled: boolean;
|
|
5093
|
+
}>): Promise<{
|
|
5094
|
+
ok: boolean;
|
|
5095
|
+
template: AdminPromptTemplate;
|
|
5096
|
+
}>;
|
|
5097
|
+
deletePromptTemplate(templateId: string): Promise<{
|
|
5098
|
+
ok: boolean;
|
|
5099
|
+
}>;
|
|
5100
|
+
listContextSnapshots(options?: AdminListOptions & {
|
|
5101
|
+
projectId?: string;
|
|
5102
|
+
}): Promise<{
|
|
5103
|
+
ok: boolean;
|
|
5104
|
+
snapshots: AdminContextSnapshot[];
|
|
5105
|
+
total: number;
|
|
5106
|
+
}>;
|
|
5107
|
+
invalidateContextSnapshot(snapshotId: string): Promise<{
|
|
5108
|
+
ok: boolean;
|
|
5109
|
+
}>;
|
|
5110
|
+
deleteContextSnapshot(snapshotId: string): Promise<{
|
|
5111
|
+
ok: boolean;
|
|
5112
|
+
}>;
|
|
4866
5113
|
}
|
|
4867
5114
|
|
|
4868
5115
|
/**
|
|
@@ -5327,8 +5574,14 @@ interface AvailableModelsResult {
|
|
|
5327
5574
|
reasoning: string;
|
|
5328
5575
|
quick: string;
|
|
5329
5576
|
};
|
|
5330
|
-
|
|
5331
|
-
|
|
5577
|
+
/** @deprecated Use userPlan instead */
|
|
5578
|
+
plan?: string;
|
|
5579
|
+
/** @deprecated Use userTier instead */
|
|
5580
|
+
modelTier?: AIModelTier;
|
|
5581
|
+
/** User's current plan (free, starter, pro, agency, studio_plus, enterprise) */
|
|
5582
|
+
userPlan: string;
|
|
5583
|
+
/** User's model tier access (free, paid, enterprise) */
|
|
5584
|
+
userTier: AIModelTier;
|
|
5332
5585
|
maxContextTokens: number;
|
|
5333
5586
|
}
|
|
5334
5587
|
/**
|
|
@@ -5544,6 +5797,21 @@ interface GenerateBackendInput {
|
|
|
5544
5797
|
name: string;
|
|
5545
5798
|
config?: Partial<BackendGenerationConfig>;
|
|
5546
5799
|
}
|
|
5800
|
+
/**
|
|
5801
|
+
* Input for submitting a modification request
|
|
5802
|
+
*/
|
|
5803
|
+
interface SubmitModificationInput {
|
|
5804
|
+
prompt: string;
|
|
5805
|
+
modelId: string;
|
|
5806
|
+
existingCode?: Record<string, string>;
|
|
5807
|
+
}
|
|
5808
|
+
/**
|
|
5809
|
+
* Result of a modification request
|
|
5810
|
+
*/
|
|
5811
|
+
interface SubmitModificationResult {
|
|
5812
|
+
turn?: WorkspaceTurn;
|
|
5813
|
+
modifiedFiles?: Record<string, string>;
|
|
5814
|
+
}
|
|
5547
5815
|
/**
|
|
5548
5816
|
* Project context for AI operations
|
|
5549
5817
|
*/
|
|
@@ -5859,6 +6127,10 @@ interface AIModule {
|
|
|
5859
6127
|
* Generate backend code for a session
|
|
5860
6128
|
*/
|
|
5861
6129
|
generate(sessionId: string, input: GenerateBackendInput): Promise<GenerateBackendResult>;
|
|
6130
|
+
/**
|
|
6131
|
+
* Submit a modification request to existing generated code
|
|
6132
|
+
*/
|
|
6133
|
+
submitModification(sessionId: string, input: SubmitModificationInput): Promise<SubmitModificationResult>;
|
|
5862
6134
|
};
|
|
5863
6135
|
/**
|
|
5864
6136
|
* Generated backend operations
|
|
@@ -5892,7 +6164,40 @@ interface AIModule {
|
|
|
5892
6164
|
delete(backendId: string): Promise<{
|
|
5893
6165
|
ok: boolean;
|
|
5894
6166
|
}>;
|
|
6167
|
+
/**
|
|
6168
|
+
* Deploy a generated backend as a new VAIF project
|
|
6169
|
+
*/
|
|
6170
|
+
deploy(backendId: string, input: {
|
|
6171
|
+
orgId: string;
|
|
6172
|
+
projectName: string;
|
|
6173
|
+
description?: string;
|
|
6174
|
+
}): Promise<{
|
|
6175
|
+
ok: boolean;
|
|
6176
|
+
project: {
|
|
6177
|
+
id: string;
|
|
6178
|
+
name: string;
|
|
6179
|
+
orgId: string;
|
|
6180
|
+
description?: string;
|
|
6181
|
+
createdAt: string;
|
|
6182
|
+
};
|
|
6183
|
+
backend: {
|
|
6184
|
+
id: string;
|
|
6185
|
+
name: string;
|
|
6186
|
+
status: string;
|
|
6187
|
+
};
|
|
6188
|
+
}>;
|
|
5895
6189
|
};
|
|
6190
|
+
/**
|
|
6191
|
+
* Get user's organizations for deploy selection
|
|
6192
|
+
*/
|
|
6193
|
+
getUserOrganizations(): Promise<{
|
|
6194
|
+
organizations: Array<{
|
|
6195
|
+
id: string;
|
|
6196
|
+
name: string;
|
|
6197
|
+
createdAt: string;
|
|
6198
|
+
role: string;
|
|
6199
|
+
}>;
|
|
6200
|
+
}>;
|
|
5896
6201
|
}
|
|
5897
6202
|
|
|
5898
6203
|
/**
|
|
@@ -5907,6 +6212,37 @@ interface BootstrapUser {
|
|
|
5907
6212
|
timezone?: string;
|
|
5908
6213
|
createdAt: string;
|
|
5909
6214
|
}
|
|
6215
|
+
/**
|
|
6216
|
+
* Plan limits included in bootstrap
|
|
6217
|
+
*/
|
|
6218
|
+
interface BootstrapPlanLimits {
|
|
6219
|
+
projectsMax: number;
|
|
6220
|
+
apiRequestsMonthly: number;
|
|
6221
|
+
storageGb: number;
|
|
6222
|
+
functionInvocationsMonthly: number;
|
|
6223
|
+
realtimeConnectionsMax: number;
|
|
6224
|
+
realtimeMessagesMonthly: number;
|
|
6225
|
+
aiCreditsMonthly: number;
|
|
6226
|
+
databaseRowsMax: number;
|
|
6227
|
+
teamMembersMax: number;
|
|
6228
|
+
}
|
|
6229
|
+
/**
|
|
6230
|
+
* Entitlements data from bootstrap
|
|
6231
|
+
*/
|
|
6232
|
+
interface BootstrapEntitlements {
|
|
6233
|
+
/** User's current plan (free, starter, pro, agency, studio_plus, enterprise) */
|
|
6234
|
+
plan: string;
|
|
6235
|
+
/** Subscription status */
|
|
6236
|
+
status: string;
|
|
6237
|
+
/** Plan limits */
|
|
6238
|
+
limits: BootstrapPlanLimits;
|
|
6239
|
+
/** AI model tier access (free, paid, enterprise) */
|
|
6240
|
+
aiModelTier: string;
|
|
6241
|
+
/** Current billing period end date */
|
|
6242
|
+
currentPeriodEnd?: string;
|
|
6243
|
+
/** Whether subscription will cancel at period end */
|
|
6244
|
+
cancelAtPeriodEnd: boolean;
|
|
6245
|
+
}
|
|
5910
6246
|
/**
|
|
5911
6247
|
* Bootstrap response containing all initial data
|
|
5912
6248
|
*/
|
|
@@ -5917,6 +6253,8 @@ interface BootstrapData {
|
|
|
5917
6253
|
role: string;
|
|
5918
6254
|
})[];
|
|
5919
6255
|
projects: Project[];
|
|
6256
|
+
/** User's plan entitlements (based on primary org) */
|
|
6257
|
+
entitlements: BootstrapEntitlements | null;
|
|
5920
6258
|
}
|
|
5921
6259
|
/**
|
|
5922
6260
|
* Bootstrap module interface
|
|
@@ -7272,4 +7610,4 @@ declare class VaifNotFoundError extends VaifError {
|
|
|
7272
7610
|
*/
|
|
7273
7611
|
declare function isVaifError(error: unknown): error is VaifError;
|
|
7274
7612
|
|
|
7275
|
-
export { type AIModule, type AIPlan, type AIPlanStep, type AIProjectOverrides, type AISettings, type AIUsageBreakdown, type AIUsageResult, type AddBillingContactInput, type AdminListOptions, type AdminModule, type AdminOrg, type AdminOrgDetails, type AdminOrgMember, type AdminOrgProfile, type AdminOverviewResponse, type AdminProject, type AdminProjectDetails, type AdminUser, type AdminUserDetails, type AggregateClause, type AggregateFunction, type AggregateOptions, type AggregateResult, type AnalyticsConfig, type AndFilter, type ApiErrorResponse, type ApiKey, type ApiParam, type ApiResponse, type ApplyInput, type ApplyResponse, type AuthModule, type AuthResponse, type BaseEntity, type BatchCreateOptions, type BatchCreateResult, type BatchDeleteResult$1 as BatchDeleteResult, type BatchInvokeInput, type BatchInvokeResult, type BatchUpdateOptions, type BatchUpdateResult, type BillingContact, type BillingModule, type BillingSummary, type BootstrapData, type BootstrapModule, type BootstrapUser, type BroadcastEvent, type BroadcastOptions, type BudgetStatus, type ChangePasswordInput, type ChangelogFeature, type ChannelOptions, type ChannelType, type CheckEntitlementInput, type CheckEntitlementResponse, type CheckoutInput, type CheckoutResponse, type CodeLanguage, type ColumnDefinition, type ColumnType, type ComponentStatus, type ConfigureOAuthInput, type ConnectionState, type Conversation, type ConversationMessage, type CopyOptions, type CreateApiKeyInput, type CreateApiKeyResponse, type CreateBucketInput, type CreateBucketOptions, type CreateConversationInput, type CreateDeployTokenInput, type CreateDeployTokenResult, type CreateDocApiEndpointInput, type CreateDocChangelogInput, type CreateDocExampleInput, type CreateDocPageInput, type CreateDocSdkExampleInput, type CreateDocSdkInput, type CreateEnvVarInput, type CreateFlagInput, type CreateFunctionInput, type CreateIncidentInput, type CreateOrgInput, type CreateProjectFromTemplateResponse, type CreateProjectInput, type CreateProjectResponse, type CreateSecretInput, type CreateSubscriptionInput, type CursorPaginationOptions, type CursorPaginationResult, type DLQListOptions, type DLQMessage, type DataModule, type DbChangeEvent, type DbOperation, type DeleteOptions, type DeleteResponse, type DeleteSecretResult, type DeliveryStatus, type DeployOptions, type DeployResult, type DeployToken, type Deployment, type DeploymentStep, type DeploymentWithSteps, type DeploymentsModule, type DiscordConfig, type DlqDelivery, type DocApiEndpoint, type DocChangelogEntry, type DocExample, type DocPage, type DocSdk, type DocSdkExample, type DocSearchResult, type DocsModule, type DownloadOptions, type EmailConfig, type EmailVerificationConfirmInput, type EmailVerificationRequestInput, type EnableAllRealtimeInput, type EnableAllRealtimeResult, type EntitlementsResponse, type EnvVar, type Environment, type ErrorEvent, type Event, type EventFilter, type EventHandler, type EventSource, type ExampleEndpoint, type ExampleFunction, type ExampleRealtimeEvent, type ExplainPlanInput, type ExplainPlanResult, type ExportCodeInput, type ExportCodeResult, type FeatureFlag, type FileMetadata, type FlagsModule, type FunctionEnvVar, type FunctionInvocation, type FunctionLog, type RetryConfig as FunctionRetryConfig, type FunctionRuntime, type FunctionVersion, type FunctionsModule, type GenerateEndpointInput, type GenerateEndpointResult, type GenerateFunctionInput, type GenerateFunctionResult, type GeneratePlanInput, type GeneratePlanResult, type GeneratedFile, type GetProjectResponse, type HttpMethod, type ImageTransformOptions, type IncidentAlert, type IncidentSeverity, type IncidentStatus, type IncludeClause, type IndexDefinition, type InstallApplyResponse, type InstallPreviewResponse, type InstallRealtimeInput, type InstallRealtimeResult, type IntegrationsModule, type InviteMemberInput, type InvokeInput, type InvokeOptions, type InvokeResult, type IsolationLevel, type ItemResponse, type ListDeliveriesOptions, type ListEventsOptions, type ListFilesOptions, type ListFilesResponse, type ListFunctionsOptions, type ListInvocationsOptions, type ListResponse, type LoginOptions, type MFAChallenge, type MFAMethod, type MFASetupResponse, type MFAVerifyResponse, type MagicLinkRequestInput, type MagicLinkVerifyInput, type MessageRole, type Migration, type MigrationResult, type Mode, type MongoAggregateOptions, type MongoArrayOperator, type MongoCollectionClient, type MongoComparisonOperator, type MongoCursor, type MongoDBModule, type MongoDeleteResult, type MongoDistinctOptions, type MongoElementOperator, type MongoEvaluationOperator, type MongoFilter, type MongoFindAndModifyResult, type MongoFindOneAndDeleteOptions, type MongoFindOneAndUpdateOptions, type MongoFindOptions, type MongoInsertManyResult, type MongoInsertOneResult, type MongoLogicalOperator, type MongoPipelineStage, type MongoProjection, type MongoSort, type MongoUpdateOperators, type MongoUpdateOptions, type MongoUpdateResult, type MoveOptions, type MultipartUpload, type MultipartUploadOptions, type NotFilter, type OAuthCallbackInput, type OAuthConnection, type OAuthModule, type OAuthProvider, type OAuthProviderType, type OAuthSignInOptions, type OAuthSignInResponse, type OrFilter, type OrderByClause, type Org, type OrgBilling, type OrgMember, type OrgMembership, type OrgProfile, type OrgsModule, type PageInfo, type PaginatedResult, type PasswordResetConfirmInput, type PasswordResetRequestInput, type PendingInvite, type PhoneVerificationConfirmInput, type PhoneVerificationRequestInput, type PlanDefinition, type PlanLimits, type PlanName, type PlanStep, type PlansResponse, type PortalInput, type PortalResponse, type PresenceEntry, type PresenceEvent, type PresenceState, type PresenceStateEvent, type PresenceTrackOptions, type PresignedUrl, type PreviewInput, type PreviewResponse, type Project, type ProjectMetrics, type ProjectResource, type ProjectResourcesResponse, type ProjectStats, type ProjectsModule, type PromoteInput, type PromoteResult, type Provider, type PublishEventInput, type PublishEventResult, type QueryOptions, type QueueStats, type QueueTotals, type RealtimeChannel, type RealtimeClient, type RealtimeClientEvent, type RealtimeConfig, type RealtimeConnection, type RealtimeEvent, type RealtimeEventType, type RealtimeMonitoringEvent, type RealtimeMonitoringModule, type RealtimeStats, type RealtimeStatus, type RealtimeSubscription, type RefreshTokenResponse, type Region, type RetryConfig$1 as RetryConfig, type RollbackResult, type SaveSchemaInput, type SavedSchema, type ScheduleConfig, type SchemaDefinition, type SchemaModule, type Secret, type SecretsModule, type SecurityAuditLog, type SecurityModule, type SecurityOverview, type SendMessageInput, type Session, type SetDedicatedDbInput, type SignUpOptions, type SignedUrlResponse, type SlackConfig, type StandardEventName, type StatusComponent, type StorageBucket, type StorageDashboardModule, type StorageFile, type StorageModule, type SubscribeOptions, type Subscription, type SubscriptionConfig, type SubscriptionFilter, type SubscriptionType, type TableClient, type TableDefinition, type TaskType, type Template, type TemplateCategory, type TemplateDefinition, type TemplateVersion, type TemplateVisibility, type TemplatesModule, type TransactionOperation, type TransactionOptions, type TransactionResult, type TypedEventHandler, type TypedFunction, type UnsubscribeFn, type UpdateAIProjectOverridesInput, type UpdateAISettingsInput, type UpdateBucketInput, type UpdateBucketOptions, type UpdateComponentStatusInput, type UpdateDocPageInput, type UpdateDocSdkInput, type UpdateEnvVarInput, type UpdateFlagInput, type UpdateFunctionInput, type UpdateOrgProfileInput, type UpdateProfileInput, type UpdateProjectInput, type UpdateRegionInput, type UpdateSubscriptionInput, type UploadFromUrlOptions, type UploadOptions, type UploadPart, type UploadResult$1 as UploadResult, type UpsertOptions, type Usage, type UsageEntry, type User, type UserActivity, type UserMembership, VaifAuthError, type VaifClient, type VaifClientConfig, VaifError, type VaifFunction, VaifNetworkError, VaifNotFoundError, VaifRateLimitError, VaifValidationError, type VerifySignatureOptions, type WebhookConfig, type WebhookDelivery, type WelcomeEvent, type WhereClause, type WhereFilter, type WhereOperator, createVaifClient, isVaifError };
|
|
7613
|
+
export { type AIModule, type AIPlan, type AIPlanStep, type AIProjectOverrides, type AISettings, type AIUsageBreakdown, type AIUsageResult, type AddBillingContactInput, type AdminListOptions, type AdminModule, type AdminOrg, type AdminOrgDetails, type AdminOrgMember, type AdminOrgProfile, type AdminOverviewResponse, type AdminProject, type AdminProjectDetails, type AdminUser, type AdminUserDetails, type AggregateClause, type AggregateFunction, type AggregateOptions, type AggregateResult, type AnalyticsConfig, type AndFilter, type ApiErrorResponse, type ApiKey, type ApiParam, type ApiResponse, type ApplyInput, type ApplyResponse, type AuthModule, type AuthResponse, type BaseEntity, type BatchCreateOptions, type BatchCreateResult, type BatchDeleteResult$1 as BatchDeleteResult, type BatchInvokeInput, type BatchInvokeResult, type BatchUpdateOptions, type BatchUpdateResult, type BillingContact, type BillingModule, type BillingSummary, type BootstrapData, type BootstrapEntitlements, type BootstrapModule, type BootstrapPlanLimits, type BootstrapUser, type BroadcastEvent, type BroadcastOptions, type BudgetStatus, type ChangePasswordInput, type ChangelogFeature, type ChannelOptions, type ChannelType, type CheckEntitlementInput, type CheckEntitlementResponse, type CheckoutInput, type CheckoutResponse, type CodeLanguage, type ColumnDefinition, type ColumnType, type ComponentStatus, type ConfigureOAuthInput, type ConnectionState, type Conversation, type ConversationMessage, type CopyOptions, type CreateApiKeyInput, type CreateApiKeyResponse, type CreateBucketInput, type CreateBucketOptions, type CreateConversationInput, type CreateDeployTokenInput, type CreateDeployTokenResult, type CreateDocApiEndpointInput, type CreateDocChangelogInput, type CreateDocExampleInput, type CreateDocPageInput, type CreateDocSdkExampleInput, type CreateDocSdkInput, type CreateEnvVarInput, type CreateFlagInput, type CreateFunctionInput, type CreateIncidentInput, type CreateOrgInput, type CreateProjectFromTemplateResponse, type CreateProjectInput, type CreateProjectResponse, type CreateSecretInput, type CreateSubscriptionInput, type CursorPaginationOptions, type CursorPaginationResult, type DLQListOptions, type DLQMessage, type DataModule, type DbChangeEvent, type DbOperation, type DeleteOptions, type DeleteResponse, type DeleteSecretResult, type DeliveryStatus, type DeployOptions, type DeployResult, type DeployToken, type Deployment, type DeploymentStep, type DeploymentWithSteps, type DeploymentsModule, type DiscordConfig, type DlqDelivery, type DocApiEndpoint, type DocChangelogEntry, type DocExample, type DocPage, type DocSdk, type DocSdkExample, type DocSearchResult, type DocsModule, type DownloadOptions, type EmailConfig, type EmailVerificationConfirmInput, type EmailVerificationRequestInput, type EnableAllRealtimeInput, type EnableAllRealtimeResult, type EntitlementsResponse, type EnvVar, type Environment, type ErrorEvent, type Event, type EventFilter, type EventHandler, type EventSource, type ExampleEndpoint, type ExampleFunction, type ExampleRealtimeEvent, type ExplainPlanInput, type ExplainPlanResult, type ExportCodeInput, type ExportCodeResult, type FeatureFlag, type FileMetadata, type FlagsModule, type FunctionEnvVar, type FunctionInvocation, type FunctionLog, type RetryConfig as FunctionRetryConfig, type FunctionRuntime, type FunctionVersion, type FunctionsModule, type GenerateEndpointInput, type GenerateEndpointResult, type GenerateFunctionInput, type GenerateFunctionResult, type GeneratePlanInput, type GeneratePlanResult, type GeneratedFile, type GetProjectResponse, type HttpMethod, type ImageTransformOptions, type IncidentAlert, type IncidentSeverity, type IncidentStatus, type IncludeClause, type IndexDefinition, type InstallApplyResponse, type InstallPreviewResponse, type InstallRealtimeInput, type InstallRealtimeResult, type IntegrationsModule, type InviteMemberInput, type InvokeInput, type InvokeOptions, type InvokeResult, type IsolationLevel, type ItemResponse, type ListDeliveriesOptions, type ListEventsOptions, type ListFilesOptions, type ListFilesResponse, type ListFunctionsOptions, type ListInvocationsOptions, type ListResponse, type LoginOptions, type MFAChallenge, type MFAMethod, type MFASetupResponse, type MFAVerifyResponse, type MagicLinkRequestInput, type MagicLinkVerifyInput, type MessageRole, type Migration, type MigrationResult, type Mode, type MongoAggregateOptions, type MongoArrayOperator, type MongoCollectionClient, type MongoComparisonOperator, type MongoCursor, type MongoDBModule, type MongoDeleteResult, type MongoDistinctOptions, type MongoElementOperator, type MongoEvaluationOperator, type MongoFilter, type MongoFindAndModifyResult, type MongoFindOneAndDeleteOptions, type MongoFindOneAndUpdateOptions, type MongoFindOptions, type MongoInsertManyResult, type MongoInsertOneResult, type MongoLogicalOperator, type MongoPipelineStage, type MongoProjection, type MongoSort, type MongoUpdateOperators, type MongoUpdateOptions, type MongoUpdateResult, type MoveOptions, type MultipartUpload, type MultipartUploadOptions, type NotFilter, type OAuthCallbackInput, type OAuthConnection, type OAuthModule, type OAuthProvider, type OAuthProviderType, type OAuthSignInOptions, type OAuthSignInResponse, type OrFilter, type OrderByClause, type Org, type OrgBilling, type OrgMember, type OrgMembership, type OrgProfile, type OrgsModule, type PageInfo, type PaginatedResult, type PasswordResetConfirmInput, type PasswordResetRequestInput, type PendingInvite, type PhoneVerificationConfirmInput, type PhoneVerificationRequestInput, type PlanDefinition, type PlanLimits, type PlanName, type PlanStep, type PlansResponse, type PortalInput, type PortalResponse, type PresenceEntry, type PresenceEvent, type PresenceState, type PresenceStateEvent, type PresenceTrackOptions, type PresignedUrl, type PreviewInput, type PreviewResponse, type Project, type ProjectMetrics, type ProjectResource, type ProjectResourcesResponse, type ProjectStats, type ProjectsModule, type PromoteInput, type PromoteResult, type Provider, type PublishEventInput, type PublishEventResult, type QueryOptions, type QueueStats, type QueueTotals, type RealtimeChannel, type RealtimeClient, type RealtimeClientEvent, type RealtimeConfig, type RealtimeConnection, type RealtimeEvent, type RealtimeEventType, type RealtimeMonitoringEvent, type RealtimeMonitoringModule, type RealtimeStats, type RealtimeStatus, type RealtimeSubscription, type RefreshTokenResponse, type Region, type RetryConfig$1 as RetryConfig, type RollbackResult, type SaveSchemaInput, type SavedSchema, type ScheduleConfig, type SchemaDefinition, type SchemaModule, type Secret, type SecretsModule, type SecurityAuditLog, type SecurityModule, type SecurityOverview, type SendMessageInput, type Session, type SetDedicatedDbInput, type SignUpOptions, type SignedUrlResponse, type SlackConfig, type StandardEventName, type StatusComponent, type StorageBucket, type StorageDashboardModule, type StorageFile, type StorageModule, type SubscribeOptions, type Subscription, type SubscriptionConfig, type SubscriptionFilter, type SubscriptionType, type TableClient, type TableDefinition, type TaskType, type Template, type TemplateCategory, type TemplateDefinition, type TemplateVersion, type TemplateVisibility, type TemplatesModule, type TransactionOperation, type TransactionOptions, type TransactionResult, type TypedEventHandler, type TypedFunction, type UnsubscribeFn, type UpdateAIProjectOverridesInput, type UpdateAISettingsInput, type UpdateBucketInput, type UpdateBucketOptions, type UpdateComponentStatusInput, type UpdateDocPageInput, type UpdateDocSdkInput, type UpdateEnvVarInput, type UpdateFlagInput, type UpdateFunctionInput, type UpdateOrgProfileInput, type UpdateProfileInput, type UpdateProjectInput, type UpdateRegionInput, type UpdateSubscriptionInput, type UploadFromUrlOptions, type UploadOptions, type UploadPart, type UploadResult$1 as UploadResult, type UpsertOptions, type Usage, type UsageEntry, type User, type UserActivity, type UserMembership, VaifAuthError, type VaifClient, type VaifClientConfig, VaifError, type VaifFunction, VaifNetworkError, VaifNotFoundError, VaifRateLimitError, VaifValidationError, type VerifySignatureOptions, type WebhookConfig, type WebhookDelivery, type WelcomeEvent, type WhereClause, type WhereFilter, type WhereOperator, createVaifClient, isVaifError };
|