@supernova-studio/client 1.29.5 → 1.30.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.d.mts +17 -2
- package/dist/index.d.ts +17 -2
- package/dist/index.js +6 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +5 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -9207,8 +9207,11 @@ var DTOFeatureMessageCreateInput = DTOFeatureMessage.pick({
|
|
|
9207
9207
|
isPrompt: true,
|
|
9208
9208
|
startsNewThread: true,
|
|
9209
9209
|
parentMessageId: true,
|
|
9210
|
-
sender: true
|
|
9210
|
+
sender: true,
|
|
9211
|
+
agentResponseTrackerId: true,
|
|
9212
|
+
createdAt: true
|
|
9211
9213
|
});
|
|
9214
|
+
var DTOFeatureMessageUpdateInput = DTOFeatureMessageCreateInput.pick({ body: true }).merge(DTOFeatureMessage.pick({ agentResponseTrackerId: true })).partial();
|
|
9212
9215
|
var DTOFeatureMessageReactionCreateInput = z312.object({
|
|
9213
9216
|
messageId: Id,
|
|
9214
9217
|
emoji: z312.string()
|
|
@@ -18525,6 +18528,7 @@ export {
|
|
|
18525
18528
|
DTOFeatureMessageResponse,
|
|
18526
18529
|
DTOFeatureMessageSender,
|
|
18527
18530
|
DTOFeatureMessageSystemSender,
|
|
18531
|
+
DTOFeatureMessageUpdateInput,
|
|
18528
18532
|
DTOFeatureMessageUserSender,
|
|
18529
18533
|
DTOFigmaComponent,
|
|
18530
18534
|
DTOFigmaComponentGroup,
|