@agentrix/shared 2.10.0 → 2.13.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 CHANGED
@@ -5,6 +5,7 @@ var tweetnacl = require('tweetnacl');
5
5
  var base64js = require('base64-js');
6
6
  var CryptoJS = require('crypto-js');
7
7
  var errors = require('./errors-myQvpVrM.cjs');
8
+ var gitlabWebhook = require('./gitlabWebhook.cjs');
8
9
 
9
10
  function _interopNamespaceDefault(e) {
10
11
  var n = Object.create(null);
@@ -1070,13 +1071,21 @@ const GetInstallUrlResponseSchema = zod.z.object({
1070
1071
  const GitHubIssueListItemSchema = zod.z.object({
1071
1072
  number: zod.z.number(),
1072
1073
  title: zod.z.string(),
1073
- html_url: zod.z.string().url()
1074
+ html_url: zod.z.string().url(),
1075
+ labels: zod.z.array(zod.z.string()),
1076
+ state: zod.z.enum(["open", "closed"]),
1077
+ created_at: DateSchema,
1078
+ updated_at: DateSchema
1074
1079
  });
1075
1080
  const GitHubIssueSchema = zod.z.object({
1076
1081
  number: zod.z.number(),
1077
1082
  title: zod.z.string(),
1078
1083
  body: zod.z.string().nullable(),
1079
1084
  html_url: zod.z.string().url(),
1085
+ labels: zod.z.array(zod.z.string()),
1086
+ state: zod.z.enum(["open", "closed"]),
1087
+ created_at: DateSchema,
1088
+ updated_at: DateSchema,
1080
1089
  author: zod.z.string().optional(),
1081
1090
  authorIdentity: zod.z.lazy(() => RepositoryActorIdentitySchema).optional(),
1082
1091
  assigneeIdentities: zod.z.array(zod.z.lazy(() => RepositoryActorIdentitySchema)).optional()
@@ -1230,6 +1239,7 @@ const ToggleOAuthServerRequestSchema = zod.z.object({
1230
1239
  const ToggleOAuthServerResponseSchema = OAuthServerSchema;
1231
1240
  const ListOAuthServersPublicResponseSchema = zod.z.array(OAuthServerPublicSchema);
1232
1241
 
1242
+ const StripeCheckoutClientSchema = zod.z.enum(["android", "ios", "web"]);
1233
1243
  const RechargeResponseSchema = zod.z.object({
1234
1244
  success: zod.z.literal(true),
1235
1245
  packageId: zod.z.string(),
@@ -1238,7 +1248,8 @@ const RechargeResponseSchema = zod.z.object({
1238
1248
  const CreateDirectRechargeCheckoutRequestSchema = zod.z.object({
1239
1249
  successUrl: zod.z.string().url(),
1240
1250
  cancelUrl: zod.z.string().url(),
1241
- amount: zod.z.number().int().positive()
1251
+ amount: zod.z.number().int().positive(),
1252
+ client: StripeCheckoutClientSchema
1242
1253
  });
1243
1254
  const CreateDirectRechargeCheckoutResponseSchema = zod.z.object({
1244
1255
  url: zod.z.string().url()
@@ -1401,7 +1412,8 @@ const GetSubscriptionResponseSchema = zod.z.object({
1401
1412
  const CreateCheckoutRequestSchema = zod.z.object({
1402
1413
  priceId: zod.z.string(),
1403
1414
  successUrl: zod.z.string().url(),
1404
- cancelUrl: zod.z.string().url()
1415
+ cancelUrl: zod.z.string().url(),
1416
+ client: StripeCheckoutClientSchema
1405
1417
  });
1406
1418
  const CreateCheckoutResponseSchema = zod.z.object({
1407
1419
  url: zod.z.string().url()
@@ -1590,6 +1602,177 @@ const ResolveUserInboxItemResponseSchema = zod.z.object({
1590
1602
  item: UserInboxItemSchema
1591
1603
  });
1592
1604
 
1605
+ const CiProviderSchema = zod.z.enum(["github_actions", "gitlab_ci"]);
1606
+ const JsonSchemaDocumentSchema = zod.z.record(zod.z.string(), zod.z.unknown());
1607
+ const CiRunStatusSchema = zod.z.enum([
1608
+ "queued",
1609
+ "running",
1610
+ "completed",
1611
+ "failed",
1612
+ "canceled",
1613
+ "timeout"
1614
+ ]);
1615
+ const CiRunRepoSchema = zod.z.object({
1616
+ gitServerId: zod.z.string().min(1),
1617
+ serverRepoId: zod.z.string().min(1).optional(),
1618
+ owner: zod.z.string().optional(),
1619
+ name: zod.z.string().optional()
1620
+ }).refine(
1621
+ (value) => Boolean(value.serverRepoId) || Boolean(value.owner) && Boolean(value.name),
1622
+ {
1623
+ message: "repo.gitServerId plus repo.serverRepoId or repo.owner+repo.name is required"
1624
+ }
1625
+ );
1626
+ const CiRunGitSchema = zod.z.object({
1627
+ ref: zod.z.string().optional(),
1628
+ sha: zod.z.string().optional(),
1629
+ baseRef: zod.z.string().optional(),
1630
+ headRef: zod.z.string().optional(),
1631
+ prNumber: zod.z.number().int().positive().optional(),
1632
+ issueNumber: zod.z.number().int().positive().optional()
1633
+ });
1634
+ const CiRunExecutionSchema = zod.z.object({
1635
+ capabilityProfile: zod.z.string().optional(),
1636
+ runnerId: zod.z.string().optional()
1637
+ });
1638
+ const CiRunContextSchema = zod.z.object({
1639
+ ciProvider: CiProviderSchema,
1640
+ eventName: zod.z.string().optional(),
1641
+ eventAction: zod.z.string().optional(),
1642
+ jobUrl: zod.z.string().url().optional(),
1643
+ runUrl: zod.z.string().url().optional(),
1644
+ payload: zod.z.record(zod.z.string(), zod.z.unknown()).optional()
1645
+ });
1646
+ const CreateCiRunRequestSchema = zod.z.object({
1647
+ agent: zod.z.string().min(1),
1648
+ title: zod.z.string().min(1).max(200).optional(),
1649
+ prompt: zod.z.string().min(1),
1650
+ outputSchema: JsonSchemaDocumentSchema.optional(),
1651
+ repo: CiRunRepoSchema,
1652
+ git: CiRunGitSchema,
1653
+ execution: CiRunExecutionSchema,
1654
+ context: CiRunContextSchema.optional(),
1655
+ metadata: zod.z.record(zod.z.string(), zod.z.string()).optional()
1656
+ });
1657
+ const CreateCiRunResponseSchema = zod.z.object({
1658
+ runId: zod.z.string().min(1),
1659
+ status: zod.z.enum(["queued", "running", "completed", "failed"]),
1660
+ detailUrl: zod.z.string().url()
1661
+ });
1662
+ const CiRunStatusResponseSchema = zod.z.object({
1663
+ runId: zod.z.string().min(1),
1664
+ status: CiRunStatusSchema,
1665
+ result: zod.z.string(),
1666
+ structuredOutput: zod.z.unknown().optional(),
1667
+ detailUrl: zod.z.string().url()
1668
+ });
1669
+ const CancelCiRunResponseSchema = zod.z.object({
1670
+ message: zod.z.string(),
1671
+ runId: zod.z.string().min(1)
1672
+ });
1673
+
1674
+ const ApiKeySchema = zod.z.object({
1675
+ id: zod.z.string().min(1),
1676
+ name: zod.z.string().min(1).max(100),
1677
+ keyPrefix: zod.z.string().min(1),
1678
+ enabled: zod.z.boolean(),
1679
+ quota: zod.z.number().nullable(),
1680
+ lastUsedAt: zod.z.string().datetime().nullable(),
1681
+ expiresAt: zod.z.string().datetime().nullable(),
1682
+ createdAt: zod.z.string().datetime()
1683
+ });
1684
+ const CreateApiKeyRequestSchema = zod.z.object({
1685
+ name: zod.z.string().min(1).max(100),
1686
+ expiresInDays: zod.z.number().int().positive().optional()
1687
+ });
1688
+ const CreateApiKeyResponseSchema = zod.z.object({
1689
+ apiKey: zod.z.string().min(1),
1690
+ id: zod.z.string().min(1),
1691
+ name: zod.z.string().min(1).max(100),
1692
+ keyPrefix: zod.z.string().min(1),
1693
+ expiresAt: zod.z.string().datetime().nullable(),
1694
+ createdAt: zod.z.string().datetime()
1695
+ });
1696
+ const ListApiKeysQuerySchema = zod.z.object({
1697
+ includeDisabled: zod.z.string().optional().transform((val) => val === "true"),
1698
+ page: zod.z.string().optional().transform((val) => val ? parseInt(val, 10) : 1).refine((val) => val > 0, "Page must be positive"),
1699
+ limit: zod.z.string().optional().transform((val) => val ? parseInt(val, 10) : 10).refine((val) => val > 0 && val <= 100, "Limit must be between 1 and 100")
1700
+ });
1701
+ const ListApiKeysResponseSchema = zod.z.object({
1702
+ items: zod.z.array(ApiKeySchema),
1703
+ total: zod.z.number().int().nonnegative(),
1704
+ page: zod.z.number().int().positive(),
1705
+ limit: zod.z.number().int().positive(),
1706
+ totalPages: zod.z.number().int().nonnegative()
1707
+ });
1708
+ const UpdateApiKeyRequestSchema = zod.z.object({
1709
+ name: zod.z.string().min(1).max(100).optional(),
1710
+ expiresInDays: zod.z.number().int().positive().optional()
1711
+ });
1712
+ const ToggleApiKeyRequestSchema = zod.z.object({
1713
+ enabled: zod.z.boolean()
1714
+ });
1715
+ const DeleteApiKeyResponseSchema = zod.z.object({
1716
+ success: zod.z.literal(true)
1717
+ });
1718
+
1719
+ const ResourceMetadataSchema = zod.z.object({
1720
+ platform: zod.z.enum(["mac", "windows", "linux"]).optional(),
1721
+ arch: zod.z.enum(["arm64", "x64", "universal"]).optional(),
1722
+ version: zod.z.string().optional()
1723
+ }).passthrough();
1724
+ const PublicResourceItemSchema = zod.z.object({
1725
+ id: IdSchema,
1726
+ type: zod.z.string(),
1727
+ name: zod.z.string(),
1728
+ description: zod.z.string().nullable(),
1729
+ url: zod.z.string(),
1730
+ thumbnailUrl: zod.z.string().nullable(),
1731
+ metadata: ResourceMetadataSchema.nullable(),
1732
+ sortOrder: zod.z.number()
1733
+ });
1734
+ const ListPublicResourcesQuerySchema = zod.z.object({
1735
+ type: zod.z.string().min(1)
1736
+ });
1737
+ const ListPublicResourcesResponseSchema = zod.z.object({
1738
+ resources: zod.z.array(PublicResourceItemSchema)
1739
+ });
1740
+ const AdminResourceItemSchema = zod.z.object({
1741
+ id: IdSchema,
1742
+ type: zod.z.string(),
1743
+ name: zod.z.string(),
1744
+ description: zod.z.string().nullable(),
1745
+ url: zod.z.string(),
1746
+ thumbnailUrl: zod.z.string().nullable(),
1747
+ metadata: ResourceMetadataSchema.nullable(),
1748
+ sortOrder: zod.z.number(),
1749
+ enabled: zod.z.boolean(),
1750
+ createdAt: zod.z.string(),
1751
+ updatedAt: zod.z.string()
1752
+ });
1753
+ const ListAdminResourcesResponseSchema = zod.z.object({
1754
+ resources: zod.z.array(AdminResourceItemSchema)
1755
+ });
1756
+ const CreateResourceRequestSchema = zod.z.object({
1757
+ type: zod.z.string().min(1),
1758
+ name: zod.z.string().min(1),
1759
+ description: zod.z.string().optional(),
1760
+ url: zod.z.string().url(),
1761
+ thumbnailUrl: zod.z.string().url().optional(),
1762
+ metadata: ResourceMetadataSchema.optional(),
1763
+ sortOrder: zod.z.number().int().optional(),
1764
+ enabled: zod.z.boolean().optional()
1765
+ });
1766
+ const UpdateResourceRequestSchema = zod.z.object({
1767
+ name: zod.z.string().min(1).optional(),
1768
+ description: zod.z.string().nullable().optional(),
1769
+ url: zod.z.string().url().optional(),
1770
+ thumbnailUrl: zod.z.string().url().nullable().optional(),
1771
+ metadata: ResourceMetadataSchema.nullable().optional(),
1772
+ sortOrder: zod.z.number().int().optional(),
1773
+ enabled: zod.z.boolean().optional()
1774
+ });
1775
+
1593
1776
  const RpcCallEventSchema = zod.z.object({
1594
1777
  eventId: zod.z.string(),
1595
1778
  taskId: zod.z.string(),
@@ -2044,6 +2227,8 @@ const baseTaskSchema = EventBaseSchema.extend({
2044
2227
  // User-provided working directory for local mode
2045
2228
  forceUserCwd: zod.z.boolean().optional(),
2046
2229
  // Force using user-provided cwd (no worktree)
2230
+ useWorktree: zod.z.boolean().optional(),
2231
+ // Whether the worker should use a git worktree when supported
2047
2232
  dataEncryptionKey: zod.z.string().optional(),
2048
2233
  // User's public key for encrypting sensitive data
2049
2234
  model: zod.z.string().optional(),
@@ -2081,6 +2266,8 @@ const baseTaskSchema = EventBaseSchema.extend({
2081
2266
  // Task type: 'chat' for main chat, 'work' for task execution, 'shadow' for companion shadow
2082
2267
  customTitle: zod.z.string().min(1).max(200).optional(),
2083
2268
  // Custom task title (set by user/tool)
2269
+ outputSchema: JsonSchemaDocumentSchema.optional(),
2270
+ // Optional structured output schema for the runner
2084
2271
  agentGitUrl: zod.z.string().optional(),
2085
2272
  // Agent git clone URL for auto-install on first run
2086
2273
  agentGitSubDir: zod.z.string().nullable().optional()
@@ -2351,6 +2538,22 @@ const SubTaskResultUpdatedEventSchema = EventBaseSchema.extend({
2351
2538
  // Optional artifacts summary (for displaying in parent task chat)
2352
2539
  artifacts: TaskArtifactsSummarySchema.optional()
2353
2540
  });
2541
+ const SubTaskAskUserEventSchema = EventBaseSchema.extend({
2542
+ taskId: zod.z.string(),
2543
+ // Sub task ID
2544
+ parentTaskId: zod.z.string(),
2545
+ // Parent task ID
2546
+ rootTaskId: zod.z.string(),
2547
+ // Root task ID
2548
+ agentId: zod.z.string(),
2549
+ // Agent ID that executed the sub task
2550
+ agentName: zod.z.string(),
2551
+ // Agent display name
2552
+ taskName: zod.z.string().optional(),
2553
+ // Sub task title
2554
+ message: zod.z.custom().optional(),
2555
+ encryptedMessage: zod.z.string().optional()
2556
+ });
2354
2557
  const MergePullRequestEventSchema = EventBaseSchema.extend({
2355
2558
  taskId: zod.z.string(),
2356
2559
  mergeMethod: zod.z.enum(["merge", "squash", "rebase"]).optional().default("squash")
@@ -2470,6 +2673,8 @@ const DaemonGitlabOperationSchema = zod.z.enum([
2470
2673
  "createMergeRequest",
2471
2674
  "getMergeRequest",
2472
2675
  "listMergeRequests",
2676
+ "triggerPipeline",
2677
+ "ensurePipelineTriggerToken",
2473
2678
  "requestGitlabApi",
2474
2679
  "resolveGitAuthContext"
2475
2680
  ]);
@@ -2496,7 +2701,9 @@ const CompanionHeartbeatRequestSchema = EventBaseSchema.extend({
2496
2701
  agentId: zod.z.string(),
2497
2702
  chatId: zod.z.string(),
2498
2703
  userId: zod.z.string(),
2499
- timestamp: zod.z.string()
2704
+ timestamp: zod.z.string(),
2705
+ triggerTime: zod.z.string().optional(),
2706
+ triggerReasons: zod.z.array(zod.z.string()).optional()
2500
2707
  });
2501
2708
  const CompanionHeartbeatResponseSchema = EventBaseSchema.extend({
2502
2709
  taskId: zod.z.string(),
@@ -2562,6 +2769,7 @@ const EventSchemaMap = {
2562
2769
  // Multi-agent collaboration events
2563
2770
  "task-stopped": TaskStoppedEventSchema,
2564
2771
  "sub-task-result-updated": SubTaskResultUpdatedEventSchema,
2772
+ "sub-task-ask-user": SubTaskAskUserEventSchema,
2565
2773
  // Repository association events
2566
2774
  "associate-repo": AssociateRepoEventDataSchema,
2567
2775
  // Agent info update events
@@ -3088,16 +3296,20 @@ exports.FrameworkNotSupportedError = errors.FrameworkNotSupportedError;
3088
3296
  exports.MissingAgentFileError = errors.MissingAgentFileError;
3089
3297
  exports.getAgentContext = errors.getAgentContext;
3090
3298
  exports.setAgentContext = errors.setAgentContext;
3299
+ exports.buildGitLabWebhookEndpointPath = gitlabWebhook.buildGitLabWebhookEndpointPath;
3300
+ exports.buildGitLabWebhookUrl = gitlabWebhook.buildGitLabWebhookUrl;
3091
3301
  exports.AcceptPrivateCloudInviteRequestSchema = AcceptPrivateCloudInviteRequestSchema;
3092
3302
  exports.AcceptPrivateCloudInviteResponseSchema = AcceptPrivateCloudInviteResponseSchema;
3093
3303
  exports.ActiveAgentSchema = ActiveAgentSchema;
3094
3304
  exports.AddChatMemberRequestSchema = AddChatMemberRequestSchema;
3095
3305
  exports.AddChatMemberResponseSchema = AddChatMemberResponseSchema;
3306
+ exports.AdminResourceItemSchema = AdminResourceItemSchema;
3096
3307
  exports.AgentCustomConfigSchema = AgentCustomConfigSchema;
3097
3308
  exports.AgentPermissionsSchema = AgentPermissionsSchema;
3098
3309
  exports.AgentSchema = AgentSchema;
3099
3310
  exports.AgentTypeSchema = AgentTypeSchema;
3100
3311
  exports.ApiErrorSchema = ApiErrorSchema;
3312
+ exports.ApiKeySchema = ApiKeySchema;
3101
3313
  exports.ApiServerAliveEventSchema = ApiServerAliveEventSchema;
3102
3314
  exports.AppAliveEventSchema = AppAliveEventSchema;
3103
3315
  exports.ApprovalStatusResponseSchema = ApprovalStatusResponseSchema;
@@ -3115,6 +3327,7 @@ exports.AssociateRepoEventDataSchema = AssociateRepoEventDataSchema;
3115
3327
  exports.BillingStatsResponseSchema = BillingStatsResponseSchema;
3116
3328
  exports.BranchSchema = BranchSchema;
3117
3329
  exports.CONFIG_FILES = CONFIG_FILES;
3330
+ exports.CancelCiRunResponseSchema = CancelCiRunResponseSchema;
3118
3331
  exports.CancelSubscriptionResponseSchema = CancelSubscriptionResponseSchema;
3119
3332
  exports.CancelTaskRequestSchema = CancelTaskRequestSchema;
3120
3333
  exports.CancelTaskResponseSchema = CancelTaskResponseSchema;
@@ -3127,6 +3340,13 @@ exports.ChatTypeSchema = ChatTypeSchema;
3127
3340
  exports.ChatWithMembersSchema = ChatWithMembersSchema;
3128
3341
  exports.ChatWorkersStatusRequestSchema = ChatWorkersStatusRequestSchema;
3129
3342
  exports.ChatWorkersStatusResponseSchema = ChatWorkersStatusResponseSchema;
3343
+ exports.CiProviderSchema = CiProviderSchema;
3344
+ exports.CiRunContextSchema = CiRunContextSchema;
3345
+ exports.CiRunExecutionSchema = CiRunExecutionSchema;
3346
+ exports.CiRunGitSchema = CiRunGitSchema;
3347
+ exports.CiRunRepoSchema = CiRunRepoSchema;
3348
+ exports.CiRunStatusResponseSchema = CiRunStatusResponseSchema;
3349
+ exports.CiRunStatusSchema = CiRunStatusSchema;
3130
3350
  exports.CloudJoinApprovalRequestSchema = CloudJoinApprovalRequestSchema;
3131
3351
  exports.CloudJoinRequestSchema = CloudJoinRequestSchema;
3132
3352
  exports.CloudJoinResultQuerySchema = CloudJoinResultQuerySchema;
@@ -3147,10 +3367,14 @@ exports.ContactSchema = ContactSchema;
3147
3367
  exports.ContactTargetTypeSchema = ContactTargetTypeSchema;
3148
3368
  exports.CreateAgentRequestSchema = CreateAgentRequestSchema;
3149
3369
  exports.CreateAgentResponseSchema = CreateAgentResponseSchema;
3370
+ exports.CreateApiKeyRequestSchema = CreateApiKeyRequestSchema;
3371
+ exports.CreateApiKeyResponseSchema = CreateApiKeyResponseSchema;
3150
3372
  exports.CreateChatRequestSchema = CreateChatRequestSchema;
3151
3373
  exports.CreateChatResponseSchema = CreateChatResponseSchema;
3152
3374
  exports.CreateCheckoutRequestSchema = CreateCheckoutRequestSchema;
3153
3375
  exports.CreateCheckoutResponseSchema = CreateCheckoutResponseSchema;
3376
+ exports.CreateCiRunRequestSchema = CreateCiRunRequestSchema;
3377
+ exports.CreateCiRunResponseSchema = CreateCiRunResponseSchema;
3154
3378
  exports.CreateCloudRequestSchema = CreateCloudRequestSchema;
3155
3379
  exports.CreateCloudResponseSchema = CreateCloudResponseSchema;
3156
3380
  exports.CreateContactRequestSchema = CreateContactRequestSchema;
@@ -3168,6 +3392,7 @@ exports.CreatePrivateCloudInviteRequestSchema = CreatePrivateCloudInviteRequestS
3168
3392
  exports.CreatePrivateCloudInviteResponseSchema = CreatePrivateCloudInviteResponseSchema;
3169
3393
  exports.CreatePrivateCloudRequestSchema = CreatePrivateCloudRequestSchema;
3170
3394
  exports.CreatePrivateCloudResponseSchema = CreatePrivateCloudResponseSchema;
3395
+ exports.CreateResourceRequestSchema = CreateResourceRequestSchema;
3171
3396
  exports.CreateSubscriptionPlanRequestSchema = CreateSubscriptionPlanRequestSchema;
3172
3397
  exports.CreateTaskShareResponseSchema = CreateTaskShareResponseSchema;
3173
3398
  exports.CreateTaskShareSchema = CreateTaskShareSchema;
@@ -3180,6 +3405,7 @@ exports.DaemonGitlabRequestSchema = DaemonGitlabRequestSchema;
3180
3405
  exports.DaemonGitlabResponseSchema = DaemonGitlabResponseSchema;
3181
3406
  exports.DateSchema = DateSchema;
3182
3407
  exports.DeleteAgentResponseSchema = DeleteAgentResponseSchema;
3408
+ exports.DeleteApiKeyResponseSchema = DeleteApiKeyResponseSchema;
3183
3409
  exports.DeleteContactResponseSchema = DeleteContactResponseSchema;
3184
3410
  exports.DeleteOAuthServerResponseSchema = DeleteOAuthServerResponseSchema;
3185
3411
  exports.DeployAgentCompleteEventSchema = DeployAgentCompleteEventSchema;
@@ -3227,7 +3453,11 @@ exports.GitHubIssueSchema = GitHubIssueSchema;
3227
3453
  exports.GitServerSchema = GitServerSchema;
3228
3454
  exports.IGNORED_DIRECTORIES = IGNORED_DIRECTORIES;
3229
3455
  exports.IdSchema = IdSchema;
3456
+ exports.JsonSchemaDocumentSchema = JsonSchemaDocumentSchema;
3457
+ exports.ListAdminResourcesResponseSchema = ListAdminResourcesResponseSchema;
3230
3458
  exports.ListAgentsResponseSchema = ListAgentsResponseSchema;
3459
+ exports.ListApiKeysQuerySchema = ListApiKeysQuerySchema;
3460
+ exports.ListApiKeysResponseSchema = ListApiKeysResponseSchema;
3231
3461
  exports.ListBranchesResponseSchema = ListBranchesResponseSchema;
3232
3462
  exports.ListChatMembersResponseSchema = ListChatMembersResponseSchema;
3233
3463
  exports.ListChatTasksResponseSchema = ListChatTasksResponseSchema;
@@ -3247,6 +3477,8 @@ exports.ListPackagesQuerySchema = ListPackagesQuerySchema;
3247
3477
  exports.ListPackagesResponseSchema = ListPackagesResponseSchema;
3248
3478
  exports.ListPrivateCloudMembersResponseSchema = ListPrivateCloudMembersResponseSchema;
3249
3479
  exports.ListPrivateCloudsResponseSchema = ListPrivateCloudsResponseSchema;
3480
+ exports.ListPublicResourcesQuerySchema = ListPublicResourcesQuerySchema;
3481
+ exports.ListPublicResourcesResponseSchema = ListPublicResourcesResponseSchema;
3250
3482
  exports.ListRecentTasksRequestSchema = ListRecentTasksRequestSchema;
3251
3483
  exports.ListRecentTasksResponseSchema = ListRecentTasksResponseSchema;
3252
3484
  exports.ListReferencesQuerySchema = ListReferencesQuerySchema;
@@ -3296,6 +3528,7 @@ exports.PrivateCloudMemberSchema = PrivateCloudMemberSchema;
3296
3528
  exports.PrivateCloudSummarySchema = PrivateCloudSummarySchema;
3297
3529
  exports.ProjectDirectoryResponseSchema = ProjectDirectoryResponseSchema;
3298
3530
  exports.ProjectEntrySchema = ProjectEntrySchema;
3531
+ exports.PublicResourceItemSchema = PublicResourceItemSchema;
3299
3532
  exports.PublishDraftAgentRequestSchema = PublishDraftAgentRequestSchema;
3300
3533
  exports.PublishDraftAgentResponseSchema = PublishDraftAgentResponseSchema;
3301
3534
  exports.QueryEventsRequestSchema = QueryEventsRequestSchema;
@@ -3319,6 +3552,7 @@ exports.ResetSecretRequestSchema = ResetSecretRequestSchema;
3319
3552
  exports.ResetSecretResponseSchema = ResetSecretResponseSchema;
3320
3553
  exports.ResetTaskSessionSchema = ResetTaskSessionSchema;
3321
3554
  exports.ResolveUserInboxItemResponseSchema = ResolveUserInboxItemResponseSchema;
3555
+ exports.ResourceMetadataSchema = ResourceMetadataSchema;
3322
3556
  exports.ResumeTaskRequestSchema = ResumeTaskRequestSchema;
3323
3557
  exports.ResumeTaskResponseSchema = ResumeTaskResponseSchema;
3324
3558
  exports.RpcCallEventSchema = RpcCallEventSchema;
@@ -3350,6 +3584,8 @@ exports.StatsQuerySchema = StatsQuerySchema;
3350
3584
  exports.StopTaskRequestSchema = StopTaskRequestSchema;
3351
3585
  exports.StopTaskResponseSchema = StopTaskResponseSchema;
3352
3586
  exports.StopTaskSchema = StopTaskSchema;
3587
+ exports.StripeCheckoutClientSchema = StripeCheckoutClientSchema;
3588
+ exports.SubTaskAskUserEventSchema = SubTaskAskUserEventSchema;
3353
3589
  exports.SubTaskResultUpdatedEventSchema = SubTaskResultUpdatedEventSchema;
3354
3590
  exports.SubTaskSummarySchema = SubTaskSummarySchema;
3355
3591
  exports.SubscriptionPlanSchema = SubscriptionPlanSchema;
@@ -3374,6 +3610,7 @@ exports.TaskStateChangeEventSchema = TaskStateChangeEventSchema;
3374
3610
  exports.TaskStoppedEventSchema = TaskStoppedEventSchema;
3375
3611
  exports.TaskTodoSchema = TaskTodoSchema;
3376
3612
  exports.TaskTransactionsResponseSchema = TaskTransactionsResponseSchema;
3613
+ exports.ToggleApiKeyRequestSchema = ToggleApiKeyRequestSchema;
3377
3614
  exports.ToggleOAuthServerRequestSchema = ToggleOAuthServerRequestSchema;
3378
3615
  exports.ToggleOAuthServerResponseSchema = ToggleOAuthServerResponseSchema;
3379
3616
  exports.TransactionSchema = TransactionSchema;
@@ -3382,10 +3619,12 @@ exports.UnarchiveTaskResponseSchema = UnarchiveTaskResponseSchema;
3382
3619
  exports.UpdateAgentInfoEventSchema = UpdateAgentInfoEventSchema;
3383
3620
  exports.UpdateAgentRequestSchema = UpdateAgentRequestSchema;
3384
3621
  exports.UpdateAgentResponseSchema = UpdateAgentResponseSchema;
3622
+ exports.UpdateApiKeyRequestSchema = UpdateApiKeyRequestSchema;
3385
3623
  exports.UpdateDraftAgentRequestSchema = UpdateDraftAgentRequestSchema;
3386
3624
  exports.UpdateDraftAgentResponseSchema = UpdateDraftAgentResponseSchema;
3387
3625
  exports.UpdateOAuthServerRequestSchema = UpdateOAuthServerRequestSchema;
3388
3626
  exports.UpdateOAuthServerResponseSchema = UpdateOAuthServerResponseSchema;
3627
+ exports.UpdateResourceRequestSchema = UpdateResourceRequestSchema;
3389
3628
  exports.UpdateSecretRequestSchema = UpdateSecretRequestSchema;
3390
3629
  exports.UpdateSecretResponseSchema = UpdateSecretResponseSchema;
3391
3630
  exports.UpdateSubscriptionPlanRequestSchema = UpdateSubscriptionPlanRequestSchema;