@senguoyun/dsh-arkme 0.1.40 → 0.1.41
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/lib/client.js +30 -36
- package/lib/client.js.map +1 -1
- package/lib/index.js +60 -32
- package/lib/persistent-extension.js +1 -1
- package/lib/{persistent-runtime-BDvChgZV.js → persistent-runtime-B1gJH2Nx.js} +209 -80
- package/lib/types/client/ArkmeNoteDetails.d.ts.map +1 -1
- package/lib/types/client/ArkmeSidebar.d.ts.map +1 -1
- package/lib/types/dsh-remote/host.d.ts +4 -0
- package/lib/types/dsh-remote/host.d.ts.map +1 -1
- package/lib/types/openapi-mcp/controller.d.ts +1 -0
- package/lib/types/openapi-mcp/controller.d.ts.map +1 -1
- package/lib/types/openapi-mcp/status-tool.d.ts.map +1 -1
- package/lib/types/openapi-mcp/types.d.ts +1 -1
- package/lib/types/openapi-mcp/types.d.ts.map +1 -1
- package/lib/types/services/chat-service.d.ts +2 -0
- package/lib/types/services/chat-service.d.ts.map +1 -1
- package/lib/types/types.d.ts +4 -0
- package/lib/types/types.d.ts.map +1 -1
- package/package.json +5 -5
package/lib/client.js
CHANGED
|
@@ -5183,7 +5183,7 @@ window.__ModuleLoader__.load({
|
|
|
5183
5183
|
qrcode.stringToBytes;
|
|
5184
5184
|
//#endregion
|
|
5185
5185
|
//#region package.json
|
|
5186
|
-
var version = "0.1.
|
|
5186
|
+
var version = "0.1.41";
|
|
5187
5187
|
//#endregion
|
|
5188
5188
|
//#region src/client/arkme-billing.ts
|
|
5189
5189
|
function createBillingClientRequestId(source = globalThis.crypto) {
|
|
@@ -89702,13 +89702,6 @@ yoga yokohama you youtube yt yun za zappos zara zero zip zm zone zuerich zw
|
|
|
89702
89702
|
fontSize: 11,
|
|
89703
89703
|
lineHeight: "18px"
|
|
89704
89704
|
},
|
|
89705
|
-
extensionContextMedia: {
|
|
89706
|
-
marginTop: 5,
|
|
89707
|
-
color: arkmeTheme.tertiary,
|
|
89708
|
-
fontSize: 11,
|
|
89709
|
-
lineHeight: "18px",
|
|
89710
|
-
overflowWrap: "anywhere"
|
|
89711
|
-
},
|
|
89712
89705
|
extensionContextStatus: {
|
|
89713
89706
|
display: "flex",
|
|
89714
89707
|
alignItems: "center",
|
|
@@ -90181,6 +90174,8 @@ yoga yokohama you youtube yt yun za zappos zara zero zip zm zone zuerich zw
|
|
|
90181
90174
|
status: 1,
|
|
90182
90175
|
templateKind: item.templateKind,
|
|
90183
90176
|
displayKind: item.displayKind,
|
|
90177
|
+
...item.contentBlocks === void 0 ? {} : { contentBlocks: item.contentBlocks },
|
|
90178
|
+
...item.mediaUnavailable === true ? { mediaUnavailable: true } : {},
|
|
90184
90179
|
...avatar !== "" && !/^(https?:|data:|blob:)/iu.test(avatar) ? { avatarRef: avatar } : {}
|
|
90185
90180
|
};
|
|
90186
90181
|
}
|
|
@@ -90296,7 +90291,6 @@ yoga yokohama you youtube yt yun za zappos zara zero zip zm zone zuerich zw
|
|
|
90296
90291
|
style: styles$9.extensionContextList,
|
|
90297
90292
|
children: orderedDetailExtensions(extensions, context?.parentRecordUid ?? "").map(({ item: extension, nested }) => {
|
|
90298
90293
|
const timelineItem = detailExtensionTimelineItem$1(extension);
|
|
90299
|
-
const mediaLabel = extension.mediaItems.map((media) => media.fileName.trim()).filter(Boolean).join("、");
|
|
90300
90294
|
const selected = extension.recordUid === selectedRecordUid;
|
|
90301
90295
|
return /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("div", {
|
|
90302
90296
|
style: {
|
|
@@ -90322,29 +90316,22 @@ yoga yokohama you youtube yt yun za zappos zara zero zip zm zone zuerich zw
|
|
|
90322
90316
|
size: nested ? 28 : 32
|
|
90323
90317
|
}), /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("div", {
|
|
90324
90318
|
style: styles$9.extensionContextBody,
|
|
90325
|
-
children: [
|
|
90326
|
-
|
|
90327
|
-
|
|
90328
|
-
|
|
90329
|
-
|
|
90330
|
-
|
|
90331
|
-
|
|
90332
|
-
|
|
90333
|
-
|
|
90334
|
-
|
|
90335
|
-
|
|
90336
|
-
|
|
90337
|
-
|
|
90338
|
-
|
|
90339
|
-
|
|
90340
|
-
|
|
90341
|
-
...onMessageCopyLinkOpen === void 0 ? {} : { onMessageCopyLinkOpen }
|
|
90342
|
-
}),
|
|
90343
|
-
mediaLabel !== "" && /* @__PURE__ */ (0, react_jsx_runtime.jsx)("div", {
|
|
90344
|
-
style: styles$9.extensionContextMedia,
|
|
90345
|
-
children: mediaLabel
|
|
90346
|
-
})
|
|
90347
|
-
]
|
|
90319
|
+
children: [/* @__PURE__ */ (0, react_jsx_runtime.jsxs)("div", {
|
|
90320
|
+
style: styles$9.extensionContextHead,
|
|
90321
|
+
children: [/* @__PURE__ */ (0, react_jsx_runtime.jsx)("span", {
|
|
90322
|
+
style: styles$9.extensionContextName,
|
|
90323
|
+
children: detailExtensionSenderName(extension)
|
|
90324
|
+
}), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("span", {
|
|
90325
|
+
style: styles$9.extensionContextTime,
|
|
90326
|
+
children: [dateLabel(extension.sendAtMillis), timeLabel$1(extension.sendAtMillis)].filter(Boolean).join(" ")
|
|
90327
|
+
})]
|
|
90328
|
+
}), /* @__PURE__ */ (0, react_jsx_runtime.jsx)(ArkmeMessageContent, {
|
|
90329
|
+
presentation: "detail",
|
|
90330
|
+
item: timelineItem,
|
|
90331
|
+
...sourceRef === void 0 ? {} : { sourceRef },
|
|
90332
|
+
...shareWebsite === void 0 ? {} : { shareWebsite },
|
|
90333
|
+
...onMessageCopyLinkOpen === void 0 ? {} : { onMessageCopyLinkOpen }
|
|
90334
|
+
})]
|
|
90348
90335
|
})]
|
|
90349
90336
|
}, extension.recordUid);
|
|
90350
90337
|
})
|
|
@@ -92997,8 +92984,8 @@ yoga yokohama you youtube yt yun za zappos zara zero zip zm zone zuerich zw
|
|
|
92997
92984
|
fontSize: 12,
|
|
92998
92985
|
lineHeight: "16px"
|
|
92999
92986
|
},
|
|
93000
|
-
extensionParentPreviewMe: { marginRight:
|
|
93001
|
-
extensionParentPreviewOther: { marginLeft:
|
|
92987
|
+
extensionParentPreviewMe: { marginRight: 44 },
|
|
92988
|
+
extensionParentPreviewOther: { marginLeft: 44 },
|
|
93002
92989
|
extensionParentText: {
|
|
93003
92990
|
minWidth: 0,
|
|
93004
92991
|
overflow: "hidden",
|
|
@@ -99809,7 +99796,7 @@ yoga yokohama you youtube yt yun za zappos zara zero zip zm zone zuerich zw
|
|
|
99809
99796
|
...isForwardMessageCard ? styles$6.forwardMessageBody : {},
|
|
99810
99797
|
...isSharedRecordingCard ? styles$6.sharedRecordingMessageBody : {}
|
|
99811
99798
|
},
|
|
99812
|
-
children: [!isSharedRecordingCard && /* @__PURE__ */ (0, react_jsx_runtime.jsx)(ArkmeTimelineMessageHeader, {
|
|
99799
|
+
children: [!isSharedRecordingCard && !isExtensionMessage && !item.isMe && /* @__PURE__ */ (0, react_jsx_runtime.jsx)(ArkmeTimelineMessageHeader, {
|
|
99813
99800
|
item,
|
|
99814
99801
|
...selfProfile === void 0 ? {} : { profile: selfProfile }
|
|
99815
99802
|
}), (() => {
|
|
@@ -99948,7 +99935,14 @@ yoga yokohama you youtube yt yun za zappos zara zero zip zm zone zuerich zw
|
|
|
99948
99935
|
...styles$6.extensionChildBody,
|
|
99949
99936
|
...item.isMe ? styles$6.extensionChildBodyMe : {}
|
|
99950
99937
|
},
|
|
99951
|
-
children: [
|
|
99938
|
+
children: [
|
|
99939
|
+
!item.isMe && /* @__PURE__ */ (0, react_jsx_runtime.jsx)(ArkmeTimelineMessageHeader, {
|
|
99940
|
+
item,
|
|
99941
|
+
...selfProfile === void 0 ? {} : { profile: selfProfile }
|
|
99942
|
+
}),
|
|
99943
|
+
messageContentLine,
|
|
99944
|
+
topicBadge
|
|
99945
|
+
]
|
|
99952
99946
|
})]
|
|
99953
99947
|
})]
|
|
99954
99948
|
});
|