@agentrix/shared 2.19.0 → 2.20.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/index.cjs +20 -4
- package/dist/index.d.cts +85 -2
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -64,8 +64,20 @@ const OAuthAccountInfoSchema = zod.z.object({
|
|
|
64
64
|
email: zod.z.string().email().nullable(),
|
|
65
65
|
avatarUrl: zod.z.string().url()
|
|
66
66
|
});
|
|
67
|
+
const GitServerAccountInfoSchema = zod.z.object({
|
|
68
|
+
gitServerId: IdSchema,
|
|
69
|
+
providerUserId: zod.z.string(),
|
|
70
|
+
username: zod.z.string(),
|
|
71
|
+
displayName: zod.z.string().nullable(),
|
|
72
|
+
email: zod.z.string().email().nullable(),
|
|
73
|
+
avatarUrl: zod.z.string().url().nullable(),
|
|
74
|
+
authSource: zod.z.string(),
|
|
75
|
+
oauthAccountId: IdSchema.nullable(),
|
|
76
|
+
lastSyncedAt: DateSchema
|
|
77
|
+
});
|
|
67
78
|
const UserWithOAuthAccountsSchema = UserBasicInfoSchema.extend({
|
|
68
|
-
oauthAccounts: zod.z.array(OAuthAccountInfoSchema).optional()
|
|
79
|
+
oauthAccounts: zod.z.array(OAuthAccountInfoSchema).optional(),
|
|
80
|
+
gitServerAccounts: zod.z.array(GitServerAccountInfoSchema).optional()
|
|
69
81
|
});
|
|
70
82
|
|
|
71
83
|
const DevCreateUserRequestSchema = zod.z.object({
|
|
@@ -80,7 +92,8 @@ const DevCreateUserResponseSchema = zod.z.object({
|
|
|
80
92
|
user: UserBasicInfoSchema
|
|
81
93
|
});
|
|
82
94
|
const EmailLoginCodeRequestSchema = zod.z.object({
|
|
83
|
-
email: zod.z.string().trim().email()
|
|
95
|
+
email: zod.z.string().trim().email(),
|
|
96
|
+
captchaToken: zod.z.string().min(1)
|
|
84
97
|
});
|
|
85
98
|
const EmailLoginCodeResponseSchema = zod.z.object({
|
|
86
99
|
success: zod.z.literal(true),
|
|
@@ -106,7 +119,8 @@ const EmailPasswordLoginResponseSchema = zod.z.object({
|
|
|
106
119
|
})
|
|
107
120
|
});
|
|
108
121
|
const ProfileEmailCodeRequestSchema = zod.z.object({
|
|
109
|
-
email: zod.z.string().trim().email()
|
|
122
|
+
email: zod.z.string().trim().email(),
|
|
123
|
+
captchaToken: zod.z.string().min(1)
|
|
110
124
|
});
|
|
111
125
|
const ProfileEmailCodeResponseSchema = EmailLoginCodeResponseSchema;
|
|
112
126
|
const UserProfileResponseSchema = zod.z.object({
|
|
@@ -118,7 +132,8 @@ const UserProfileResponseSchema = zod.z.object({
|
|
|
118
132
|
stripeCustomerId: zod.z.string().nullable(),
|
|
119
133
|
// Stripe customer ID
|
|
120
134
|
createdAt: DateSchema,
|
|
121
|
-
oauthAccounts: zod.z.array(OAuthAccountInfoSchema).optional()
|
|
135
|
+
oauthAccounts: zod.z.array(OAuthAccountInfoSchema).optional(),
|
|
136
|
+
gitServerAccounts: zod.z.array(GitServerAccountInfoSchema).optional()
|
|
122
137
|
})
|
|
123
138
|
});
|
|
124
139
|
const UpdateUserProfileRequestSchema = zod.z.object({
|
|
@@ -3810,6 +3825,7 @@ exports.GetUploadUrlsResponseSchema = GetUploadUrlsResponseSchema;
|
|
|
3810
3825
|
exports.GetUserAgentsResponseSchema = GetUserAgentsResponseSchema;
|
|
3811
3826
|
exports.GitHubIssueListItemSchema = GitHubIssueListItemSchema;
|
|
3812
3827
|
exports.GitHubIssueSchema = GitHubIssueSchema;
|
|
3828
|
+
exports.GitServerAccountInfoSchema = GitServerAccountInfoSchema;
|
|
3813
3829
|
exports.GitServerSchema = GitServerSchema;
|
|
3814
3830
|
exports.HiveAuthorTypeSchema = HiveAuthorTypeSchema;
|
|
3815
3831
|
exports.HiveCommentListResponseSchema = HiveCommentListResponseSchema;
|
package/dist/index.d.cts
CHANGED
|
@@ -88,6 +88,21 @@ declare const OAuthAccountInfoSchema: z.ZodObject<{
|
|
|
88
88
|
avatarUrl: z.ZodString;
|
|
89
89
|
}, z.core.$strip>;
|
|
90
90
|
type OAuthAccountInfo = z.infer<typeof OAuthAccountInfoSchema>;
|
|
91
|
+
/**
|
|
92
|
+
* Git server account info schema
|
|
93
|
+
*/
|
|
94
|
+
declare const GitServerAccountInfoSchema: z.ZodObject<{
|
|
95
|
+
gitServerId: z.ZodString;
|
|
96
|
+
providerUserId: z.ZodString;
|
|
97
|
+
username: z.ZodString;
|
|
98
|
+
displayName: z.ZodNullable<z.ZodString>;
|
|
99
|
+
email: z.ZodNullable<z.ZodString>;
|
|
100
|
+
avatarUrl: z.ZodNullable<z.ZodString>;
|
|
101
|
+
authSource: z.ZodString;
|
|
102
|
+
oauthAccountId: z.ZodNullable<z.ZodString>;
|
|
103
|
+
lastSyncedAt: z.ZodString;
|
|
104
|
+
}, z.core.$strip>;
|
|
105
|
+
type GitServerAccountInfo = z.infer<typeof GitServerAccountInfoSchema>;
|
|
91
106
|
/**
|
|
92
107
|
* User with OAuth accounts
|
|
93
108
|
*/
|
|
@@ -103,6 +118,17 @@ declare const UserWithOAuthAccountsSchema: z.ZodObject<{
|
|
|
103
118
|
email: z.ZodNullable<z.ZodString>;
|
|
104
119
|
avatarUrl: z.ZodString;
|
|
105
120
|
}, z.core.$strip>>>;
|
|
121
|
+
gitServerAccounts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
122
|
+
gitServerId: z.ZodString;
|
|
123
|
+
providerUserId: z.ZodString;
|
|
124
|
+
username: z.ZodString;
|
|
125
|
+
displayName: z.ZodNullable<z.ZodString>;
|
|
126
|
+
email: z.ZodNullable<z.ZodString>;
|
|
127
|
+
avatarUrl: z.ZodNullable<z.ZodString>;
|
|
128
|
+
authSource: z.ZodString;
|
|
129
|
+
oauthAccountId: z.ZodNullable<z.ZodString>;
|
|
130
|
+
lastSyncedAt: z.ZodString;
|
|
131
|
+
}, z.core.$strip>>>;
|
|
106
132
|
}, z.core.$strip>;
|
|
107
133
|
type UserWithOAuthAccounts = z.infer<typeof UserWithOAuthAccountsSchema>;
|
|
108
134
|
|
|
@@ -139,6 +165,7 @@ type DevCreateUserResponse = z.infer<typeof DevCreateUserResponseSchema>;
|
|
|
139
165
|
*/
|
|
140
166
|
declare const EmailLoginCodeRequestSchema: z.ZodObject<{
|
|
141
167
|
email: z.ZodString;
|
|
168
|
+
captchaToken: z.ZodString;
|
|
142
169
|
}, z.core.$strip>;
|
|
143
170
|
type EmailLoginCodeRequest = z.infer<typeof EmailLoginCodeRequestSchema>;
|
|
144
171
|
/**
|
|
@@ -175,6 +202,17 @@ declare const EmailLoginVerifyResponseSchema: z.ZodObject<{
|
|
|
175
202
|
email: z.ZodNullable<z.ZodString>;
|
|
176
203
|
avatarUrl: z.ZodString;
|
|
177
204
|
}, z.core.$strip>>>;
|
|
205
|
+
gitServerAccounts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
206
|
+
gitServerId: z.ZodString;
|
|
207
|
+
providerUserId: z.ZodString;
|
|
208
|
+
username: z.ZodString;
|
|
209
|
+
displayName: z.ZodNullable<z.ZodString>;
|
|
210
|
+
email: z.ZodNullable<z.ZodString>;
|
|
211
|
+
avatarUrl: z.ZodNullable<z.ZodString>;
|
|
212
|
+
authSource: z.ZodString;
|
|
213
|
+
oauthAccountId: z.ZodNullable<z.ZodString>;
|
|
214
|
+
lastSyncedAt: z.ZodString;
|
|
215
|
+
}, z.core.$strip>>>;
|
|
178
216
|
}, z.core.$strip>;
|
|
179
217
|
}, z.core.$strip>;
|
|
180
218
|
type EmailLoginVerifyResponse = z.infer<typeof EmailLoginVerifyResponseSchema>;
|
|
@@ -202,6 +240,17 @@ declare const EmailPasswordLoginResponseSchema: z.ZodObject<{
|
|
|
202
240
|
email: z.ZodNullable<z.ZodString>;
|
|
203
241
|
avatarUrl: z.ZodString;
|
|
204
242
|
}, z.core.$strip>>>;
|
|
243
|
+
gitServerAccounts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
244
|
+
gitServerId: z.ZodString;
|
|
245
|
+
providerUserId: z.ZodString;
|
|
246
|
+
username: z.ZodString;
|
|
247
|
+
displayName: z.ZodNullable<z.ZodString>;
|
|
248
|
+
email: z.ZodNullable<z.ZodString>;
|
|
249
|
+
avatarUrl: z.ZodNullable<z.ZodString>;
|
|
250
|
+
authSource: z.ZodString;
|
|
251
|
+
oauthAccountId: z.ZodNullable<z.ZodString>;
|
|
252
|
+
lastSyncedAt: z.ZodString;
|
|
253
|
+
}, z.core.$strip>>>;
|
|
205
254
|
encryptedSecret: z.ZodString;
|
|
206
255
|
secretSalt: z.ZodString;
|
|
207
256
|
}, z.core.$strip>;
|
|
@@ -212,6 +261,7 @@ type EmailPasswordLoginResponse = z.infer<typeof EmailPasswordLoginResponseSchem
|
|
|
212
261
|
*/
|
|
213
262
|
declare const ProfileEmailCodeRequestSchema: z.ZodObject<{
|
|
214
263
|
email: z.ZodString;
|
|
264
|
+
captchaToken: z.ZodString;
|
|
215
265
|
}, z.core.$strip>;
|
|
216
266
|
type ProfileEmailCodeRequest = z.infer<typeof ProfileEmailCodeRequestSchema>;
|
|
217
267
|
/**
|
|
@@ -243,6 +293,17 @@ declare const UserProfileResponseSchema: z.ZodObject<{
|
|
|
243
293
|
email: z.ZodNullable<z.ZodString>;
|
|
244
294
|
avatarUrl: z.ZodString;
|
|
245
295
|
}, z.core.$strip>>>;
|
|
296
|
+
gitServerAccounts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
297
|
+
gitServerId: z.ZodString;
|
|
298
|
+
providerUserId: z.ZodString;
|
|
299
|
+
username: z.ZodString;
|
|
300
|
+
displayName: z.ZodNullable<z.ZodString>;
|
|
301
|
+
email: z.ZodNullable<z.ZodString>;
|
|
302
|
+
avatarUrl: z.ZodNullable<z.ZodString>;
|
|
303
|
+
authSource: z.ZodString;
|
|
304
|
+
oauthAccountId: z.ZodNullable<z.ZodString>;
|
|
305
|
+
lastSyncedAt: z.ZodString;
|
|
306
|
+
}, z.core.$strip>>>;
|
|
246
307
|
}, z.core.$strip>;
|
|
247
308
|
}, z.core.$strip>;
|
|
248
309
|
type UserProfileResponse = z.infer<typeof UserProfileResponseSchema>;
|
|
@@ -277,6 +338,17 @@ declare const UpdateUserProfileResponseSchema: z.ZodObject<{
|
|
|
277
338
|
email: z.ZodNullable<z.ZodString>;
|
|
278
339
|
avatarUrl: z.ZodString;
|
|
279
340
|
}, z.core.$strip>>>;
|
|
341
|
+
gitServerAccounts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
342
|
+
gitServerId: z.ZodString;
|
|
343
|
+
providerUserId: z.ZodString;
|
|
344
|
+
username: z.ZodString;
|
|
345
|
+
displayName: z.ZodNullable<z.ZodString>;
|
|
346
|
+
email: z.ZodNullable<z.ZodString>;
|
|
347
|
+
avatarUrl: z.ZodNullable<z.ZodString>;
|
|
348
|
+
authSource: z.ZodString;
|
|
349
|
+
oauthAccountId: z.ZodNullable<z.ZodString>;
|
|
350
|
+
lastSyncedAt: z.ZodString;
|
|
351
|
+
}, z.core.$strip>>>;
|
|
280
352
|
}, z.core.$strip>;
|
|
281
353
|
}, z.core.$strip>;
|
|
282
354
|
type UpdateUserProfileResponse = UserProfileResponse;
|
|
@@ -353,6 +425,17 @@ declare const OAuthCallbackResponseSchema: z.ZodObject<{
|
|
|
353
425
|
email: z.ZodNullable<z.ZodString>;
|
|
354
426
|
avatarUrl: z.ZodString;
|
|
355
427
|
}, z.core.$strip>>>;
|
|
428
|
+
gitServerAccounts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
429
|
+
gitServerId: z.ZodString;
|
|
430
|
+
providerUserId: z.ZodString;
|
|
431
|
+
username: z.ZodString;
|
|
432
|
+
displayName: z.ZodNullable<z.ZodString>;
|
|
433
|
+
email: z.ZodNullable<z.ZodString>;
|
|
434
|
+
avatarUrl: z.ZodNullable<z.ZodString>;
|
|
435
|
+
authSource: z.ZodString;
|
|
436
|
+
oauthAccountId: z.ZodNullable<z.ZodString>;
|
|
437
|
+
lastSyncedAt: z.ZodString;
|
|
438
|
+
}, z.core.$strip>>>;
|
|
356
439
|
}, z.core.$strip>;
|
|
357
440
|
}, z.core.$strip>;
|
|
358
441
|
type OAuthCallbackResponse = z.infer<typeof OAuthCallbackResponseSchema>;
|
|
@@ -4389,5 +4472,5 @@ declare function detectPreview(fs: FileSystemAdapter): Promise<PreviewMetadata |
|
|
|
4389
4472
|
*/
|
|
4390
4473
|
declare function decodeGitPath(rawPath: string): string;
|
|
4391
4474
|
|
|
4392
|
-
export { AcceptPrivateCloudInviteRequestSchema, AcceptPrivateCloudInviteResponseSchema, AddChatMemberRequestSchema, AddChatMemberResponseSchema, AdminResourceItemSchema, AgentCustomConfigSchema, AgentPermissionsSchema, AgentSchema, AgentTypeSchema, ApiErrorSchema, ApiKeySchema, ApprovalStatusResponseSchema, BillingStatsResponseSchema, BranchSchema, CONFIG_FILES, CancelCiRunResponseSchema, CancelSubscriptionResponseSchema, ChargeTransactionSchema, ChatMemberInputSchema, ChatMemberSchema, ChatSchema, ChatTypeSchema, ChatWithMembersSchema, CiProviderSchema, CiRunContextSchema, CiRunExecutionSchema, CiRunGitSchema, CiRunRepoSchema, CiRunStatusResponseSchema, CiRunStatusSchema, CloudJoinApprovalRequestSchema, CloudJoinRequestSchema, CloudJoinResultQuerySchema, CloudJoinStatusQuerySchema, CloudMachineSchema, CloudSchema, CompanionEnsureResponseSchema, CompanionWorkspaceFileSchema, ConfirmUploadRequestSchema, ConfirmUploadResponseSchema, ConsumeTransactionSchema, ContactCandidateSchema, ContactSchema, ContactTargetTypeSchema, CreateAgentRequestSchema, CreateAgentResponseSchema, CreateApiKeyRequestSchema, CreateApiKeyResponseSchema, CreateChatRequestSchema, CreateChatResponseSchema, CreateCheckoutRequestSchema, CreateCheckoutResponseSchema, CreateCiRunRequestSchema, CreateCiRunResponseSchema, CreateCloudRequestSchema, CreateCloudResponseSchema, CreateContactRequestSchema, CreateContactResponseSchema, CreateDirectRechargeCheckoutRequestSchema, CreateDirectRechargeCheckoutResponseSchema, CreateDraftAgentRequestSchema, CreateOAuthServerRequestSchema, CreateOAuthServerResponseSchema, CreatePortalRequestSchema, CreatePortalResponseSchema, CreatePrivateCloudInviteRequestSchema, CreatePrivateCloudInviteResponseSchema, CreatePrivateCloudRequestSchema, CreatePrivateCloudResponseSchema, CreateResourceRequestSchema, CreateSubscriptionPlanRequestSchema, CreditsBucketSchema, CreditsPackageSchema, DateSchema, DeleteAgentResponseSchema, DeleteApiKeyResponseSchema, DeleteContactResponseSchema, DeleteOAuthServerResponseSchema, DevCreateUserRequestSchema, DevCreateUserResponseSchema, DisplayConfigKeysSchema, DisplayConfigSchema, DraftAgentConfigSchema, DraftAgentSchema, ENTRY_FILE_PATTERNS, EmailLoginCodeRequestSchema, EmailLoginCodeResponseSchema, EmailLoginVerifyRequestSchema, EmailLoginVerifyResponseSchema, EmailPasswordLoginRequestSchema, EmailPasswordLoginResponseSchema, EnsureRepoChatRequestSchema, EnsureRepoChatResponseSchema, EnvironmentVariableSchema, FileItemSchema, FileStatsSchema, FileVisibilitySchema, GetAgentGitUrlResponseSchema, GetAgentResponseSchema, GetChatResponseSchema, GetEnvironmentVariablesResponseSchema, GetGitServerResponseSchema, GetGitUrlQuerySchema, GetGitUrlResponseSchema, GetInstallUrlResponseSchema, GetOAuthServerResponseSchema, GetPrivateCloudRunnerSecretResponseSchema, GetReferenceQuerySchema, GetRepositoryResponseSchema, GetSubscriptionResponseSchema, GetSubscriptionTiersResponseSchema, GetUploadUrlsRequestSchema, GetUploadUrlsResponseSchema, GetUserAgentsResponseSchema, GitHubIssueListItemSchema, GitHubIssueSchema, GitServerSchema, IGNORED_DIRECTORIES, IdSchema, JsonSchemaDocumentSchema, ListAdminResourcesResponseSchema, ListAgentsResponseSchema, ListApiKeysQuerySchema, ListApiKeysResponseSchema, ListBranchesResponseSchema, ListChatMembersResponseSchema, ListChatTasksResponseSchema, ListChatsQuerySchema, ListChatsResponseSchema, ListContactsResponseSchema, ListFilesQuerySchema, ListFilesResponseSchema, ListGitServersResponseSchema, ListIssuesQuerySchema, ListIssuesResponseSchema, ListMachineModelsResponseSchema, ListMachinesResponseSchema, ListOAuthServersPublicResponseSchema, ListOAuthServersQuerySchema, ListOAuthServersResponseSchema, ListPackagesQuerySchema, ListPackagesResponseSchema, ListPrivateCloudMembersResponseSchema, ListPrivateCloudsResponseSchema, ListPublicResourcesQuerySchema, ListPublicResourcesResponseSchema, ListReferencesQuerySchema, ListReferencesResponseSchema, ListRepositoriesResponseSchema, ListSubscriptionPlansResponseSchema, ListTransactionsQuerySchema, ListTransactionsResponseSchema, ListUserInboxResponseSchema, LocalMachineSchema, LogoutResponseSchema, MachineApprovalRequestSchema, MachineApprovalStatusQuerySchema, MachineAuthAuthorizedResponseSchema, MachineAuthRequestSchema, MachineAuthResultQuerySchema, MachineUnbindRequestSchema, MachineUnbindResponseSchema, OAuthAccountInfoSchema, OAuthBindCallbackResponseSchema, OAuthBindQuerySchema, OAuthBindResponseSchema, OAuthCallbackQuerySchema, OAuthCallbackResponseSchema, OAuthLoginQuerySchema, OAuthServerPublicSchema, OAuthServerSchema, OAuthUnbindResponseSchema, PaginatedResponseSchema, PreviewMetadata, PrivateCloudEntitlementSchema, PrivateCloudInviteSchema, PrivateCloudMemberSchema, PrivateCloudSummarySchema, ProfileEmailCodeRequestSchema, ProfileEmailCodeResponseSchema, PublicResourceItemSchema, PublishDraftAgentRequestSchema, PublishDraftAgentResponseSchema, RELEVANT_DEPENDENCIES, RTC_CHUNK_HEADER_SIZE, RechargeResponseSchema, RegisterCompanionRequestSchema, RegisterCompanionResponseSchema, RemoveChatMemberRequestSchema, RemovePrivateCloudMemberResponseSchema, RepositoryActorIdentitySchema, RepositoryReferenceCommentSchema, RepositoryReferenceCommentsResponseSchema, RepositoryReferenceDiffSchema, RepositoryReferenceKindSchema, RepositoryReferenceListItemSchema, RepositoryReferenceSchema, RepositorySchema, ResetSecretRequestSchema, ResetSecretResponseSchema, ResolveUserInboxItemResponseSchema, ResourceMetadataSchema, RtcChunkFlags, STATIC_FILE_EXTENSIONS, SearchContactCandidatesQuerySchema, SearchContactCandidatesResponseSchema, SenderTypeSchema, SetEnvironmentVariablesRequestSchema, ShareAuthQuerySchema, ShareAuthResponseSchema, SimpleSuccessSchema, StatsQuerySchema, StripeCheckoutClientSchema, SubscriptionPlanSchema, SubscriptionSchema, SubscriptionTierSchema, SyncCloudMachineResponseSchema, SyncLocalMachineResponseSchema, SyncMachineModelsRequestSchema, SyncMachineModelsResponseSchema, SyncMachineRequestSchema, TaskSharePermissionsSchema, TaskTransactionsResponseSchema, ToggleApiKeyRequestSchema, ToggleOAuthServerRequestSchema, ToggleOAuthServerResponseSchema, TransactionSchema, UpdateAgentRequestSchema, UpdateAgentResponseSchema, UpdateApiKeyRequestSchema, UpdateDraftAgentRequestSchema, UpdateDraftAgentResponseSchema, UpdateOAuthServerRequestSchema, UpdateOAuthServerResponseSchema, UpdateResourceRequestSchema, UpdateSecretRequestSchema, UpdateSecretResponseSchema, UpdateSubscriptionPlanRequestSchema, UpdateSubscriptionRequestSchema, UpdateSubscriptionResponseSchema, UpdateUserProfileRequestSchema, UpdateUserProfileResponseSchema, UploadUrlResultSchema, UserBalanceResponseSchema, UserBasicInfoSchema, UserInboxItemSchema, UserInboxStatusSchema, UserInboxSubjectTypeSchema, UserProfileResponseSchema, UserWithOAuthAccountsSchema, ValidateMachineResponseSchema, buildRtcChunkFrame, createKeyPair, createKeyPairWithUit8Array, createTaskEncryptionPayload, decodeBase64, decodeGitPath, decodeRtcChunkHeader, decryptAES, decryptFileContent, decryptMachineEncryptionKey, decryptSdkMessage, decryptWithEphemeralKey, detectPreview, encodeBase64, encodeBase64Url, encodeRtcChunkHeader, encryptAES, encryptFileContent, encryptMachineEncryptionKey, encryptSdkMessage, encryptWithEphemeralKey, generateAESKey, generateAESKeyBase64, getRandomBytes, machineAuth, splitRtcChunkFrame, userAuth, workerAuth };
|
|
4393
|
-
export type { AcceptPrivateCloudInviteRequest, AcceptPrivateCloudInviteResponse, AddChatMemberRequest, AddChatMemberResponse, AdminResourceItem, Agent, AgentCustomConfig, AgentPermissions, AgentType, ApiError, ApiKey, ApprovalStatusResponse, AuthPayload, BillingStatsResponse, Branch, CancelCiRunResponse, CancelSubscriptionResponse, ChargeTransaction, Chat, ChatMember, ChatMemberInput, ChatType, ChatWithMembers, CiProvider, CiRunContext, CiRunExecution, CiRunGit, CiRunRepo, CiRunStatus, CiRunStatusResponse, ClientType, Cloud, CloudJoinApprovalRequest, CloudJoinRequest, CloudJoinResultQuery, CloudJoinStatusQuery, CloudMachine, CompanionEnsureResponse, CompanionWorkspaceFile, ConfirmUploadRequest, ConfirmUploadResponse, ConsumeTransaction, Contact, ContactCandidate, ContactTargetType, CreateAgentRequest, CreateAgentResponse, CreateApiKeyRequest, CreateApiKeyResponse, CreateChatRequest, CreateChatResponse, CreateCheckoutRequest, CreateCheckoutResponse, CreateCiRunRequest, CreateCiRunResponse, CreateCloudRequest, CreateCloudResponse, CreateContactRequest, CreateContactResponse, CreateDirectRechargeCheckoutRequest, CreateDirectRechargeCheckoutResponse, CreateDraftAgentRequest, CreateOAuthServerRequest, CreateOAuthServerResponse, CreatePortalRequest, CreatePortalResponse, CreatePrivateCloudInviteRequest, CreatePrivateCloudInviteResponse, CreatePrivateCloudRequest, CreatePrivateCloudResponse, CreateResourceRequest, CreateSubscriptionPlanRequest, CreditsBucket, CreditsPackage, DeleteAgentResponse, DeleteApiKeyResponse, DeleteContactResponse, DeleteOAuthServerResponse, DevCreateUserRequest, DevCreateUserResponse, DisplayConfig, DisplayConfigKeys, DraftAgent, DraftAgentConfig, EmailLoginCodeRequest, EmailLoginCodeResponse, EmailLoginVerifyRequest, EmailLoginVerifyResponse, EmailPasswordLoginRequest, EmailPasswordLoginResponse, EnsureRepoChatRequest, EnsureRepoChatResponse, EnvironmentVariable, FileItem, FileStats, FileSystemAdapter, FileVisibility, GetAgentGitUrlResponse, GetAgentResponse, GetChatResponse, GetEnvironmentVariablesResponse, GetGitServerResponse, GetGitUrlQuery, GetGitUrlResponse, GetInstallUrlResponse, GetOAuthServerResponse, GetPrivateCloudRunnerSecretResponse, GetReferenceQuery, GetRepositoryResponse, GetSubscriptionResponse, GetSubscriptionTiersResponse, GetUploadUrlsRequest, GetUploadUrlsResponse, GetUserAgentsResponse, GitHubIssue, GitHubIssueListItem, GitServer, JsonSchemaDocument, ListAdminResourcesResponse, ListAgentsResponse, ListApiKeysQuery, ListApiKeysResponse, ListBranchesResponse, ListChatMembersResponse, ListChatTasksResponse, ListChatsQuery, ListChatsResponse, ListContactsResponse, ListFilesQuery, ListFilesResponse, ListGitServersResponse, ListIssuesQuery, ListIssuesResponse, ListMachineModelsResponse, ListMachinesResponse, ListOAuthServersPublicResponse, ListOAuthServersQuery, ListOAuthServersResponse, ListPackagesQuery, ListPackagesResponse, ListPrivateCloudMembersResponse, ListPrivateCloudsResponse, ListPublicResourcesQuery, ListPublicResourcesResponse, ListReferencesQuery, ListReferencesResponse, ListRepositoriesResponse, ListSubscriptionPlansResponse, ListTransactionsQuery, ListTransactionsResponse, ListUserInboxResponse, LocalMachine, LogoutResponse, MachineApprovalRequest, MachineApprovalStatusQuery, MachineAuthAuthorizedResponse, MachineAuthRequest, MachineAuthResultQuery, MachineEncryptionKey, MachineUnbindRequest, MachineUnbindResponse, OAuthAccountInfo, OAuthBindCallbackResponse, OAuthBindQuery, OAuthBindResponse, OAuthCallbackQuery, OAuthCallbackResponse, OAuthLoginQuery, OAuthServer, OAuthServerPublic, OAuthUnbindResponse, PrivateCloudEntitlement, PrivateCloudInvite, PrivateCloudMember, PrivateCloudSummary, ProfileEmailCodeRequest, ProfileEmailCodeResponse, PublicResourceItem, PublishDraftAgentRequest, PublishDraftAgentResponse, RechargeResponse, RegisterCompanionRequest, RegisterCompanionResponse, RemoveChatMemberRequest, RemovePrivateCloudMemberResponse, Repository, RepositoryActorIdentity, RepositoryReference, RepositoryReferenceComment, RepositoryReferenceCommentsResponse, RepositoryReferenceDiff, RepositoryReferenceKind, RepositoryReferenceListItem, ResetSecretRequest, ResetSecretResponse, ResolveUserInboxItemResponse, ResourceMetadata, RtcChunkFrame, RtcChunkHeader, RtcControlChannel, RtcControlMessage, SearchContactCandidatesQuery, SearchContactCandidatesResponse, SenderType, SetEnvironmentVariablesRequest, ShareAuthQuery, ShareAuthResponse, SimpleSuccess, StatsQuery, StripeCheckoutClient, Subscription, SubscriptionPlan, SubscriptionTier, SyncCloudMachineResponse, SyncLocalMachineResponse, SyncMachineModelsRequest, SyncMachineModelsResponse, SyncMachineRequest, TaskEncryptionPayload, TaskSharePermissions, TaskTransactionsResponse, ToggleApiKeyRequest, ToggleOAuthServerRequest, ToggleOAuthServerResponse, Transaction, UpdateAgentRequest, UpdateAgentResponse, UpdateApiKeyRequest, UpdateDraftAgentRequest, UpdateDraftAgentResponse, UpdateOAuthServerRequest, UpdateOAuthServerResponse, UpdateResourceRequest, UpdateSecretRequest, UpdateSecretResponse, UpdateSubscriptionPlanRequest, UpdateSubscriptionRequest, UpdateSubscriptionResponse, UpdateUserProfileRequest, UpdateUserProfileResponse, UploadUrlResult, UserBalanceResponse, UserBasicInfo, UserInboxItem, UserInboxStatus, UserInboxSubjectType, UserProfileResponse, UserWithOAuthAccounts, ValidateMachineResponse };
|
|
4475
|
+
export { AcceptPrivateCloudInviteRequestSchema, AcceptPrivateCloudInviteResponseSchema, AddChatMemberRequestSchema, AddChatMemberResponseSchema, AdminResourceItemSchema, AgentCustomConfigSchema, AgentPermissionsSchema, AgentSchema, AgentTypeSchema, ApiErrorSchema, ApiKeySchema, ApprovalStatusResponseSchema, BillingStatsResponseSchema, BranchSchema, CONFIG_FILES, CancelCiRunResponseSchema, CancelSubscriptionResponseSchema, ChargeTransactionSchema, ChatMemberInputSchema, ChatMemberSchema, ChatSchema, ChatTypeSchema, ChatWithMembersSchema, CiProviderSchema, CiRunContextSchema, CiRunExecutionSchema, CiRunGitSchema, CiRunRepoSchema, CiRunStatusResponseSchema, CiRunStatusSchema, CloudJoinApprovalRequestSchema, CloudJoinRequestSchema, CloudJoinResultQuerySchema, CloudJoinStatusQuerySchema, CloudMachineSchema, CloudSchema, CompanionEnsureResponseSchema, CompanionWorkspaceFileSchema, ConfirmUploadRequestSchema, ConfirmUploadResponseSchema, ConsumeTransactionSchema, ContactCandidateSchema, ContactSchema, ContactTargetTypeSchema, CreateAgentRequestSchema, CreateAgentResponseSchema, CreateApiKeyRequestSchema, CreateApiKeyResponseSchema, CreateChatRequestSchema, CreateChatResponseSchema, CreateCheckoutRequestSchema, CreateCheckoutResponseSchema, CreateCiRunRequestSchema, CreateCiRunResponseSchema, CreateCloudRequestSchema, CreateCloudResponseSchema, CreateContactRequestSchema, CreateContactResponseSchema, CreateDirectRechargeCheckoutRequestSchema, CreateDirectRechargeCheckoutResponseSchema, CreateDraftAgentRequestSchema, CreateOAuthServerRequestSchema, CreateOAuthServerResponseSchema, CreatePortalRequestSchema, CreatePortalResponseSchema, CreatePrivateCloudInviteRequestSchema, CreatePrivateCloudInviteResponseSchema, CreatePrivateCloudRequestSchema, CreatePrivateCloudResponseSchema, CreateResourceRequestSchema, CreateSubscriptionPlanRequestSchema, CreditsBucketSchema, CreditsPackageSchema, DateSchema, DeleteAgentResponseSchema, DeleteApiKeyResponseSchema, DeleteContactResponseSchema, DeleteOAuthServerResponseSchema, DevCreateUserRequestSchema, DevCreateUserResponseSchema, DisplayConfigKeysSchema, DisplayConfigSchema, DraftAgentConfigSchema, DraftAgentSchema, ENTRY_FILE_PATTERNS, EmailLoginCodeRequestSchema, EmailLoginCodeResponseSchema, EmailLoginVerifyRequestSchema, EmailLoginVerifyResponseSchema, EmailPasswordLoginRequestSchema, EmailPasswordLoginResponseSchema, EnsureRepoChatRequestSchema, EnsureRepoChatResponseSchema, EnvironmentVariableSchema, FileItemSchema, FileStatsSchema, FileVisibilitySchema, GetAgentGitUrlResponseSchema, GetAgentResponseSchema, GetChatResponseSchema, GetEnvironmentVariablesResponseSchema, GetGitServerResponseSchema, GetGitUrlQuerySchema, GetGitUrlResponseSchema, GetInstallUrlResponseSchema, GetOAuthServerResponseSchema, GetPrivateCloudRunnerSecretResponseSchema, GetReferenceQuerySchema, GetRepositoryResponseSchema, GetSubscriptionResponseSchema, GetSubscriptionTiersResponseSchema, GetUploadUrlsRequestSchema, GetUploadUrlsResponseSchema, GetUserAgentsResponseSchema, GitHubIssueListItemSchema, GitHubIssueSchema, GitServerAccountInfoSchema, GitServerSchema, IGNORED_DIRECTORIES, IdSchema, JsonSchemaDocumentSchema, ListAdminResourcesResponseSchema, ListAgentsResponseSchema, ListApiKeysQuerySchema, ListApiKeysResponseSchema, ListBranchesResponseSchema, ListChatMembersResponseSchema, ListChatTasksResponseSchema, ListChatsQuerySchema, ListChatsResponseSchema, ListContactsResponseSchema, ListFilesQuerySchema, ListFilesResponseSchema, ListGitServersResponseSchema, ListIssuesQuerySchema, ListIssuesResponseSchema, ListMachineModelsResponseSchema, ListMachinesResponseSchema, ListOAuthServersPublicResponseSchema, ListOAuthServersQuerySchema, ListOAuthServersResponseSchema, ListPackagesQuerySchema, ListPackagesResponseSchema, ListPrivateCloudMembersResponseSchema, ListPrivateCloudsResponseSchema, ListPublicResourcesQuerySchema, ListPublicResourcesResponseSchema, ListReferencesQuerySchema, ListReferencesResponseSchema, ListRepositoriesResponseSchema, ListSubscriptionPlansResponseSchema, ListTransactionsQuerySchema, ListTransactionsResponseSchema, ListUserInboxResponseSchema, LocalMachineSchema, LogoutResponseSchema, MachineApprovalRequestSchema, MachineApprovalStatusQuerySchema, MachineAuthAuthorizedResponseSchema, MachineAuthRequestSchema, MachineAuthResultQuerySchema, MachineUnbindRequestSchema, MachineUnbindResponseSchema, OAuthAccountInfoSchema, OAuthBindCallbackResponseSchema, OAuthBindQuerySchema, OAuthBindResponseSchema, OAuthCallbackQuerySchema, OAuthCallbackResponseSchema, OAuthLoginQuerySchema, OAuthServerPublicSchema, OAuthServerSchema, OAuthUnbindResponseSchema, PaginatedResponseSchema, PreviewMetadata, PrivateCloudEntitlementSchema, PrivateCloudInviteSchema, PrivateCloudMemberSchema, PrivateCloudSummarySchema, ProfileEmailCodeRequestSchema, ProfileEmailCodeResponseSchema, PublicResourceItemSchema, PublishDraftAgentRequestSchema, PublishDraftAgentResponseSchema, RELEVANT_DEPENDENCIES, RTC_CHUNK_HEADER_SIZE, RechargeResponseSchema, RegisterCompanionRequestSchema, RegisterCompanionResponseSchema, RemoveChatMemberRequestSchema, RemovePrivateCloudMemberResponseSchema, RepositoryActorIdentitySchema, RepositoryReferenceCommentSchema, RepositoryReferenceCommentsResponseSchema, RepositoryReferenceDiffSchema, RepositoryReferenceKindSchema, RepositoryReferenceListItemSchema, RepositoryReferenceSchema, RepositorySchema, ResetSecretRequestSchema, ResetSecretResponseSchema, ResolveUserInboxItemResponseSchema, ResourceMetadataSchema, RtcChunkFlags, STATIC_FILE_EXTENSIONS, SearchContactCandidatesQuerySchema, SearchContactCandidatesResponseSchema, SenderTypeSchema, SetEnvironmentVariablesRequestSchema, ShareAuthQuerySchema, ShareAuthResponseSchema, SimpleSuccessSchema, StatsQuerySchema, StripeCheckoutClientSchema, SubscriptionPlanSchema, SubscriptionSchema, SubscriptionTierSchema, SyncCloudMachineResponseSchema, SyncLocalMachineResponseSchema, SyncMachineModelsRequestSchema, SyncMachineModelsResponseSchema, SyncMachineRequestSchema, TaskSharePermissionsSchema, TaskTransactionsResponseSchema, ToggleApiKeyRequestSchema, ToggleOAuthServerRequestSchema, ToggleOAuthServerResponseSchema, TransactionSchema, UpdateAgentRequestSchema, UpdateAgentResponseSchema, UpdateApiKeyRequestSchema, UpdateDraftAgentRequestSchema, UpdateDraftAgentResponseSchema, UpdateOAuthServerRequestSchema, UpdateOAuthServerResponseSchema, UpdateResourceRequestSchema, UpdateSecretRequestSchema, UpdateSecretResponseSchema, UpdateSubscriptionPlanRequestSchema, UpdateSubscriptionRequestSchema, UpdateSubscriptionResponseSchema, UpdateUserProfileRequestSchema, UpdateUserProfileResponseSchema, UploadUrlResultSchema, UserBalanceResponseSchema, UserBasicInfoSchema, UserInboxItemSchema, UserInboxStatusSchema, UserInboxSubjectTypeSchema, UserProfileResponseSchema, UserWithOAuthAccountsSchema, ValidateMachineResponseSchema, buildRtcChunkFrame, createKeyPair, createKeyPairWithUit8Array, createTaskEncryptionPayload, decodeBase64, decodeGitPath, decodeRtcChunkHeader, decryptAES, decryptFileContent, decryptMachineEncryptionKey, decryptSdkMessage, decryptWithEphemeralKey, detectPreview, encodeBase64, encodeBase64Url, encodeRtcChunkHeader, encryptAES, encryptFileContent, encryptMachineEncryptionKey, encryptSdkMessage, encryptWithEphemeralKey, generateAESKey, generateAESKeyBase64, getRandomBytes, machineAuth, splitRtcChunkFrame, userAuth, workerAuth };
|
|
4476
|
+
export type { AcceptPrivateCloudInviteRequest, AcceptPrivateCloudInviteResponse, AddChatMemberRequest, AddChatMemberResponse, AdminResourceItem, Agent, AgentCustomConfig, AgentPermissions, AgentType, ApiError, ApiKey, ApprovalStatusResponse, AuthPayload, BillingStatsResponse, Branch, CancelCiRunResponse, CancelSubscriptionResponse, ChargeTransaction, Chat, ChatMember, ChatMemberInput, ChatType, ChatWithMembers, CiProvider, CiRunContext, CiRunExecution, CiRunGit, CiRunRepo, CiRunStatus, CiRunStatusResponse, ClientType, Cloud, CloudJoinApprovalRequest, CloudJoinRequest, CloudJoinResultQuery, CloudJoinStatusQuery, CloudMachine, CompanionEnsureResponse, CompanionWorkspaceFile, ConfirmUploadRequest, ConfirmUploadResponse, ConsumeTransaction, Contact, ContactCandidate, ContactTargetType, CreateAgentRequest, CreateAgentResponse, CreateApiKeyRequest, CreateApiKeyResponse, CreateChatRequest, CreateChatResponse, CreateCheckoutRequest, CreateCheckoutResponse, CreateCiRunRequest, CreateCiRunResponse, CreateCloudRequest, CreateCloudResponse, CreateContactRequest, CreateContactResponse, CreateDirectRechargeCheckoutRequest, CreateDirectRechargeCheckoutResponse, CreateDraftAgentRequest, CreateOAuthServerRequest, CreateOAuthServerResponse, CreatePortalRequest, CreatePortalResponse, CreatePrivateCloudInviteRequest, CreatePrivateCloudInviteResponse, CreatePrivateCloudRequest, CreatePrivateCloudResponse, CreateResourceRequest, CreateSubscriptionPlanRequest, CreditsBucket, CreditsPackage, DeleteAgentResponse, DeleteApiKeyResponse, DeleteContactResponse, DeleteOAuthServerResponse, DevCreateUserRequest, DevCreateUserResponse, DisplayConfig, DisplayConfigKeys, DraftAgent, DraftAgentConfig, EmailLoginCodeRequest, EmailLoginCodeResponse, EmailLoginVerifyRequest, EmailLoginVerifyResponse, EmailPasswordLoginRequest, EmailPasswordLoginResponse, EnsureRepoChatRequest, EnsureRepoChatResponse, EnvironmentVariable, FileItem, FileStats, FileSystemAdapter, FileVisibility, GetAgentGitUrlResponse, GetAgentResponse, GetChatResponse, GetEnvironmentVariablesResponse, GetGitServerResponse, GetGitUrlQuery, GetGitUrlResponse, GetInstallUrlResponse, GetOAuthServerResponse, GetPrivateCloudRunnerSecretResponse, GetReferenceQuery, GetRepositoryResponse, GetSubscriptionResponse, GetSubscriptionTiersResponse, GetUploadUrlsRequest, GetUploadUrlsResponse, GetUserAgentsResponse, GitHubIssue, GitHubIssueListItem, GitServer, GitServerAccountInfo, JsonSchemaDocument, ListAdminResourcesResponse, ListAgentsResponse, ListApiKeysQuery, ListApiKeysResponse, ListBranchesResponse, ListChatMembersResponse, ListChatTasksResponse, ListChatsQuery, ListChatsResponse, ListContactsResponse, ListFilesQuery, ListFilesResponse, ListGitServersResponse, ListIssuesQuery, ListIssuesResponse, ListMachineModelsResponse, ListMachinesResponse, ListOAuthServersPublicResponse, ListOAuthServersQuery, ListOAuthServersResponse, ListPackagesQuery, ListPackagesResponse, ListPrivateCloudMembersResponse, ListPrivateCloudsResponse, ListPublicResourcesQuery, ListPublicResourcesResponse, ListReferencesQuery, ListReferencesResponse, ListRepositoriesResponse, ListSubscriptionPlansResponse, ListTransactionsQuery, ListTransactionsResponse, ListUserInboxResponse, LocalMachine, LogoutResponse, MachineApprovalRequest, MachineApprovalStatusQuery, MachineAuthAuthorizedResponse, MachineAuthRequest, MachineAuthResultQuery, MachineEncryptionKey, MachineUnbindRequest, MachineUnbindResponse, OAuthAccountInfo, OAuthBindCallbackResponse, OAuthBindQuery, OAuthBindResponse, OAuthCallbackQuery, OAuthCallbackResponse, OAuthLoginQuery, OAuthServer, OAuthServerPublic, OAuthUnbindResponse, PrivateCloudEntitlement, PrivateCloudInvite, PrivateCloudMember, PrivateCloudSummary, ProfileEmailCodeRequest, ProfileEmailCodeResponse, PublicResourceItem, PublishDraftAgentRequest, PublishDraftAgentResponse, RechargeResponse, RegisterCompanionRequest, RegisterCompanionResponse, RemoveChatMemberRequest, RemovePrivateCloudMemberResponse, Repository, RepositoryActorIdentity, RepositoryReference, RepositoryReferenceComment, RepositoryReferenceCommentsResponse, RepositoryReferenceDiff, RepositoryReferenceKind, RepositoryReferenceListItem, ResetSecretRequest, ResetSecretResponse, ResolveUserInboxItemResponse, ResourceMetadata, RtcChunkFrame, RtcChunkHeader, RtcControlChannel, RtcControlMessage, SearchContactCandidatesQuery, SearchContactCandidatesResponse, SenderType, SetEnvironmentVariablesRequest, ShareAuthQuery, ShareAuthResponse, SimpleSuccess, StatsQuery, StripeCheckoutClient, Subscription, SubscriptionPlan, SubscriptionTier, SyncCloudMachineResponse, SyncLocalMachineResponse, SyncMachineModelsRequest, SyncMachineModelsResponse, SyncMachineRequest, TaskEncryptionPayload, TaskSharePermissions, TaskTransactionsResponse, ToggleApiKeyRequest, ToggleOAuthServerRequest, ToggleOAuthServerResponse, Transaction, UpdateAgentRequest, UpdateAgentResponse, UpdateApiKeyRequest, UpdateDraftAgentRequest, UpdateDraftAgentResponse, UpdateOAuthServerRequest, UpdateOAuthServerResponse, UpdateResourceRequest, UpdateSecretRequest, UpdateSecretResponse, UpdateSubscriptionPlanRequest, UpdateSubscriptionRequest, UpdateSubscriptionResponse, UpdateUserProfileRequest, UpdateUserProfileResponse, UploadUrlResult, UserBalanceResponse, UserBasicInfo, UserInboxItem, UserInboxStatus, UserInboxSubjectType, UserProfileResponse, UserWithOAuthAccounts, ValidateMachineResponse };
|