@supernova-studio/client 1.82.0 → 1.82.2

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.mjs CHANGED
@@ -10360,6 +10360,15 @@ var DTOUpdateFeatureSandbox = DTOCreateFeatureSandbox.partial().extend({
10360
10360
  var DTOFeatureSandboxListResponse = z318.object({
10361
10361
  sandboxes: DTOFeatureSandbox.array()
10362
10362
  });
10363
+ var DTOProvisionFeatureSandboxInput = z318.object({
10364
+ parentMessageId: z318.string().optional()
10365
+ });
10366
+ var DTOProvisionFeatureSandboxResponse = z318.object({
10367
+ iterationId: z318.string()
10368
+ });
10369
+ var DTOKeepAliveFeatureSandboxResponse = z318.object({
10370
+ sandbox: DTOFeatureSandbox
10371
+ });
10363
10372
  var DTOFeatureMessageCreateInput = DTOFeatureMessage.pick({
10364
10373
  id: true,
10365
10374
  body: true,
@@ -10737,7 +10746,7 @@ var DTOThreadMessageAttachments = z324.object({
10737
10746
  templateId: z324.string().optional(),
10738
10747
  figmaNodes: DTOForgeFigmaNode.array().optional()
10739
10748
  });
10740
- var DTOThreadMessageAnnotations = z324.object({
10749
+ var DTOThreadMessageAnnotation = z324.object({
10741
10750
  prompt: z324.string(),
10742
10751
  elements: z324.array(
10743
10752
  z324.object({
@@ -10746,6 +10755,7 @@ var DTOThreadMessageAnnotations = z324.object({
10746
10755
  })
10747
10756
  )
10748
10757
  });
10758
+ var DTOThreadMessageAnnotations = z324.array(DTOThreadMessageAnnotation);
10749
10759
  var DTOThreadMessage = z324.object({
10750
10760
  id: Id,
10751
10761
  threadId: z324.string(),
@@ -21398,6 +21408,7 @@ export {
21398
21408
  DTOIntegrationOAuthGetResponse,
21399
21409
  DTOIntegrationPostResponse,
21400
21410
  DTOIntegrationsGetListResponse,
21411
+ DTOKeepAliveFeatureSandboxResponse,
21401
21412
  DTOLiveblocksAuthRequest,
21402
21413
  DTOLiveblocksAuthResponse,
21403
21414
  DTOLoginScreenSettings,
@@ -21454,6 +21465,8 @@ export {
21454
21465
  DTOProjectContextOverride,
21455
21466
  DTOProjectContextOverrideInput,
21456
21467
  DTOProjectContextOverrideResponse,
21468
+ DTOProvisionFeatureSandboxInput,
21469
+ DTOProvisionFeatureSandboxResponse,
21457
21470
  DTOPublishDocumentationChanges,
21458
21471
  DTOPublishDocumentationRequest,
21459
21472
  DTOPublishDocumentationResponse,
@@ -21524,6 +21537,7 @@ export {
21524
21537
  DTOThreadEventReactionsSent,
21525
21538
  DTOThreadMessage,
21526
21539
  DTOThreadMessageAgentSender,
21540
+ DTOThreadMessageAnnotation,
21527
21541
  DTOThreadMessageAnnotations,
21528
21542
  DTOThreadMessageAttachments,
21529
21543
  DTOThreadMessageAttachmentsCreateInput,