Compare commits

..

1 Commits

Author SHA1 Message Date
renovate[bot]
cafcdf838f chore(deps): update dependency https-proxy-agent to v8 2026-03-12 01:28:09 +00:00
14 changed files with 158 additions and 342 deletions

View File

@@ -381,10 +381,6 @@ class NoteContext extends Component implements EventListener<"entitiesReloaded">
// Collections must always display a note list, even if no children.
if (note.type === "book") {
if (note.isProtected && !protectedSessionHolder.isProtectedSessionAvailable()) {
return false;
}
const viewType = note.getLabelValue("viewType") ?? "grid";
if (!["list", "grid"].includes(viewType)) {
return true;

View File

@@ -110,12 +110,7 @@ function processNoteChange(loadResults: LoadResults, ec: EntityChange) {
}
}
// Only register as a content change if the protection status didn't change.
// When isProtected changes, the blobId change is a side effect of re-encryption,
// not a content edit. Registering it as content would cause the tree's content-only
// filter to incorrectly skip the note update (since both changes share the same
// componentId).
if (ec.componentId && note.isProtected === (ec.entity as FNoteRow).isProtected) {
if (ec.componentId) {
loadResults.addNoteContent(note.noteId, ec.componentId);
}
}

View File

@@ -1,17 +1,15 @@
import type { CKTextEditor } from "@triliumnext/ckeditor5";
import { AttributeRow } from "@triliumnext/commons";
import appContext from "../components/app_context.js";
import type FBranch from "../entities/fbranch.js";
import type FNote from "../entities/fnote.js";
import type { ChooseNoteTypeResponse } from "../widgets/dialogs/note_type_chooser.js";
import froca from "./froca.js";
import { t } from "./i18n.js";
import protectedSessionHolder from "./protected_session_holder.js";
import server from "./server.js";
import toastService from "./toast.js";
import treeService from "./tree.js";
import ws from "./ws.js";
import froca from "./froca.js";
import treeService from "./tree.js";
import toastService from "./toast.js";
import { t } from "./i18n.js";
import type FNote from "../entities/fnote.js";
import type FBranch from "../entities/fbranch.js";
import type { ChooseNoteTypeResponse } from "../widgets/dialogs/note_type_chooser.js";
import type { CKTextEditor } from "@triliumnext/ckeditor5";
export interface CreateNoteOpts {
isProtected?: boolean;
@@ -26,8 +24,6 @@ export interface CreateNoteOpts {
target?: string;
targetBranchId?: string;
textEditor?: CKTextEditor;
/** Attributes to be set on the note. These are set atomically on note creation, so entity changes are not sent for attributes defined here. */
attributes?: Omit<AttributeRow, "noteId" | "attributeId">[];
}
interface Response {
@@ -41,7 +37,7 @@ interface DuplicateResponse {
note: FNote;
}
async function createNote(parentNotePath: string | undefined, options: CreateNoteOpts = {}, componentId?: string) {
async function createNote(parentNotePath: string | undefined, options: CreateNoteOpts = {}) {
options = Object.assign(
{
activate: true,
@@ -81,9 +77,8 @@ async function createNote(parentNotePath: string | undefined, options: CreateNot
isProtected: options.isProtected,
type: options.type,
mime: options.mime,
templateNoteId: options.templateNoteId,
attributes: options.attributes
}, componentId);
templateNoteId: options.templateNoteId
});
if (options.saveSelection) {
// we remove the selection only after it was saved to server to make sure we don't lose anything
@@ -145,8 +140,9 @@ function parseSelectedHtml(selectedHtml: string) {
const content = selectedHtml.replace(dom[0].outerHTML, "");
return [title, content];
} else {
return [null, selectedHtml];
}
return [null, selectedHtml];
}
async function duplicateSubtree(noteId: string, parentNotePath: string) {

View File

@@ -1,5 +1,5 @@
import { BulkAction } from "@triliumnext/commons";
import { BoardViewData } from ".";
import appContext from "../../../components/app_context";
import FNote from "../../../entities/fnote";
import attributes from "../../../services/attributes";
@@ -9,7 +9,6 @@ import froca from "../../../services/froca";
import { t } from "../../../services/i18n";
import note_create from "../../../services/note_create";
import server from "../../../services/server";
import { BoardViewData } from ".";
import { ColumnMap } from "./data";
export default class BoardApi {
@@ -36,11 +35,13 @@ export default class BoardApi {
async createNewItem(column: string, title: string) {
try {
// Get the parent note path
const parentNotePath = this.parentNote.noteId;
// Create a new note as a child of the parent note
const { note: newNote, branch: newBranch } = await note_create.createNote(this.parentNote.noteId, {
const { note: newNote, branch: newBranch } = await note_create.createNote(parentNotePath, {
activate: false,
title,
isProtected: this.parentNote.isProtected
title
});
if (newNote && newBranch) {
@@ -86,7 +87,7 @@ export default class BoardApi {
const action: BulkAction = this.isRelationMode
? { name: "deleteRelation", relationName: this.statusAttribute }
: { name: "deleteLabel", labelName: this.statusAttribute };
: { name: "deleteLabel", labelName: this.statusAttribute }
await executeBulkActions(noteIds, [ action ]);
this.viewConfig.columns = (this.viewConfig.columns ?? []).filter(col => col.value !== column);
this.saveConfig(this.viewConfig);
@@ -98,7 +99,7 @@ export default class BoardApi {
// Change the value in the notes.
const action: BulkAction = this.isRelationMode
? { name: "updateRelationTarget", relationName: this.statusAttribute, targetNoteId: newValue }
: { name: "updateLabelValue", labelName: this.statusAttribute, labelValue: newValue };
: { name: "updateLabelValue", labelName: this.statusAttribute, labelValue: newValue }
await executeBulkActions(noteIds, [ action ]);
// Rename the column in the persisted data.
@@ -136,9 +137,9 @@ export default class BoardApi {
}
async insertRowAtPosition(
column: string,
relativeToBranchId: string,
direction: "before" | "after") {
column: string,
relativeToBranchId: string,
direction: "before" | "after") {
const { note, branch } = await note_create.createNote(this.parentNote.noteId, {
activate: false,
targetBranchId: relativeToBranchId,
@@ -178,8 +179,9 @@ export default class BoardApi {
if (!note) return;
if (this.isRelationMode) {
return attributes.removeOwnedRelationByName(note, this.statusAttribute);
} else {
return attributes.removeOwnedLabelByName(note, this.statusAttribute);
}
return attributes.removeOwnedLabelByName(note, this.statusAttribute);
}
async moveWithinBoard(noteId: string, sourceBranchId: string, sourceIndex: number, targetIndex: number, sourceColumn: string, targetColumn: string) {

View File

@@ -1,8 +1,8 @@
import { AttributeRow } from "@triliumnext/commons";
import { AttributeRow, CreateChildrenResponse } from "@triliumnext/commons";
import FNote from "../../../entities/fnote";
import { setAttribute, setLabel } from "../../../services/attributes";
import note_create from "../../../services/note_create";
import server from "../../../services/server";
interface NewEventOpts {
title: string;
@@ -51,13 +51,11 @@ export async function newEvent(parentNote: FNote, { title, startDate, endDate, s
}
// Create the note.
await note_create.createNote(parentNote.noteId, {
await server.post<CreateChildrenResponse>(`notes/${parentNote.noteId}/children?target=into`, {
title,
isProtected: parentNote.isProtected,
content: "",
type: "text",
attributes,
activate: false
attributes
}, componentId);
}

View File

@@ -1,11 +1,10 @@
import type { LatLng, LeafletMouseEvent } from "leaflet";
import FNote from "../../../entities/fnote";
import { LOCATION_ATTRIBUTE } from ".";
import attributes from "../../../services/attributes";
import { prompt } from "../../../services/dialog";
import server from "../../../services/server";
import { t } from "../../../services/i18n";
import note_create from "../../../services/note_create";
import { LOCATION_ATTRIBUTE } from ".";
import { CreateChildrenResponse } from "@triliumnext/commons";
const CHILD_NOTE_ICON = "bx bx-pin";
@@ -14,20 +13,16 @@ export async function moveMarker(noteId: string, latLng: LatLng | null) {
await attributes.setLabel(noteId, LOCATION_ATTRIBUTE, value);
}
export async function createNewNote(parentNote: FNote, e: LeafletMouseEvent) {
export async function createNewNote(noteId: string, e: LeafletMouseEvent) {
const title = await prompt({ message: t("relation_map.enter_title_of_new_note"), defaultValue: t("relation_map.default_new_note_title") });
if (title?.trim()) {
await note_create.createNote(parentNote.noteId, {
const { note } = await server.post<CreateChildrenResponse>(`notes/${noteId}/children?target=into`, {
title,
content: "",
type: "text",
activate: false,
isProtected: parentNote.isProtected,
attributes: [
{ type: "label", name: LOCATION_ATTRIBUTE, value: [e.latlng.lat, e.latlng.lng].join(",") },
{ type: "label", name: "iconClass", value: CHILD_NOTE_ICON }
]
type: "text"
});
attributes.setLabel(note.noteId, "iconClass", CHILD_NOTE_ICON);
moveMarker(note.noteId, e.latlng);
}
}

View File

@@ -1,14 +1,12 @@
import type { LatLng, LeafletMouseEvent } from "leaflet";
import appContext, { type CommandMappings } from "../../../components/app_context.js";
import FNote from "../../../entities/fnote.js";
import contextMenu, { type MenuItem } from "../../../menus/context_menu.js";
import NoteColorPicker from "../../../menus/custom-items/NoteColorPicker.jsx";
import linkContextMenu from "../../../menus/link_context_menu.js";
import { copyTextWithToast } from "../../../services/clipboard_ext.js";
import NoteColorPicker from "../../../menus/custom-items/NoteColorPicker.jsx";
import { t } from "../../../services/i18n.js";
import link from "../../../services/link.js";
import { createNewNote } from "./api.js";
import { copyTextWithToast } from "../../../services/clipboard_ext.js";
import link from "../../../services/link.js";
export default function openContextMenu(noteId: string, e: LeafletMouseEvent, isEditable: boolean) {
let items: MenuItem<keyof CommandMappings>[] = [
@@ -46,7 +44,7 @@ export default function openContextMenu(noteId: string, e: LeafletMouseEvent, is
});
}
export function openMapContextMenu(note: FNote, e: LeafletMouseEvent, isEditable: boolean) {
export function openMapContextMenu(noteId: string, e: LeafletMouseEvent, isEditable: boolean) {
let items: MenuItem<keyof CommandMappings>[] = [
...buildGeoLocationItem(e)
];
@@ -57,10 +55,10 @@ export function openMapContextMenu(note: FNote, e: LeafletMouseEvent, isEditable
{ kind: "separator" },
{
title: t("geo-map-context.add-note"),
handler: () => createNewNote(note, e),
handler: () => createNewNote(noteId, e),
uiIcon: "bx bx-plus"
}
];
]
}
contextMenu.show({

View File

@@ -93,14 +93,14 @@ export default function GeoView({ note, noteIds, viewConfig, saveConfig }: ViewM
const onClick = useCallback(async (e: LeafletMouseEvent) => {
if (state === State.NewNote) {
toast.closePersistent("geo-new-note");
await createNewNote(note, e);
await createNewNote(note.noteId, e);
setState(State.Normal);
}
}, [ note, state ]);
}, [ state ]);
const onContextMenu = useCallback((e: LeafletMouseEvent) => {
openMapContextMenu(note, e, !isReadOnly);
}, [ note, isReadOnly ]);
openMapContextMenu(note.noteId, e, !isReadOnly);
}, [ note.noteId, isReadOnly ]);
// Dragging
const containerRef = useRef<HTMLDivElement>(null);

View File

@@ -18,14 +18,14 @@ import useRowTableEditing from "./row_editing";
import { TableData } from "./rows";
import Tabulator from "./tabulator";
export default function TableView({ note, noteIds, viewConfig, saveConfig }: ViewModeProps<TableConfig>) {
export default function TableView({ note, noteIds, notePath, viewConfig, saveConfig }: ViewModeProps<TableConfig>) {
const tabulatorRef = useRef<VanillaTabulator>(null);
const parentComponent = useContext(ParentComponent);
const [ attributeDetailWidgetEl, attributeDetailWidget ] = useLegacyWidget(() => new AttributeDetailWidget().contentSized());
const contextMenuEvents = useContextMenu(note, parentComponent, tabulatorRef);
const persistenceProps = usePersistence(viewConfig, saveConfig);
const rowEditingEvents = useRowTableEditing(tabulatorRef, attributeDetailWidget, note);
const rowEditingEvents = useRowTableEditing(tabulatorRef, attributeDetailWidget, notePath);
const { newAttributePosition, resetNewAttributePosition } = useColTableEditing(tabulatorRef, attributeDetailWidget, note);
const { columnDefs, rowData, movableRows, hasChildren } = useData(note, noteIds, viewConfig, newAttributePosition, resetNewAttributePosition);
const dataTreeProps = useMemo<Options>(() => {

View File

@@ -1,27 +1,24 @@
import { RefObject } from "preact";
import { EventCallBackMethods, RowComponent, Tabulator } from "tabulator-tables";
import { CommandListenerData } from "../../../components/app_context";
import FNote from "../../../entities/fnote";
import { setAttribute, setLabel } from "../../../services/attributes";
import branches from "../../../services/branches";
import froca from "../../../services/froca";
import note_create, { CreateNoteOpts } from "../../../services/note_create";
import server from "../../../services/server";
import AttributeDetailWidget from "../../attribute_widgets/attribute_detail";
import { useLegacyImperativeHandlers } from "../../react/hooks";
import { RefObject } from "preact";
import { setAttribute, setLabel } from "../../../services/attributes";
import froca from "../../../services/froca";
import server from "../../../services/server";
import branches from "../../../services/branches";
import AttributeDetailWidget from "../../attribute_widgets/attribute_detail";
export default function useRowTableEditing(api: RefObject<Tabulator>, attributeDetailWidget: AttributeDetailWidget, parentNote: FNote): Partial<EventCallBackMethods> {
export default function useRowTableEditing(api: RefObject<Tabulator>, attributeDetailWidget: AttributeDetailWidget, parentNotePath: string): Partial<EventCallBackMethods> {
// Adding new rows
useLegacyImperativeHandlers({
addNewRowCommand({ customOpts, parentNotePath: customNotePath }: CommandListenerData<"addNewRow">) {
const notePath = customNotePath ?? parentNote.noteId;
const notePath = customNotePath ?? parentNotePath;
if (notePath) {
const opts: CreateNoteOpts = {
activate: false,
isProtected: parentNote.isProtected,
...customOpts
};
}
note_create.createNote(notePath, opts).then(({ branch }) => {
if (branch) {
setTimeout(() => {
@@ -29,7 +26,7 @@ export default function useRowTableEditing(api: RefObject<Tabulator>, attributeD
focusOnBranch(api.current, branch?.branchId);
}, 100);
}
});
})
}
}
});
@@ -94,14 +91,14 @@ function focusOnBranch(api: Tabulator, branchId: string) {
}
function findRowDataById(rows: RowComponent[], branchId: string): RowComponent | null {
for (const row of rows) {
for (let row of rows) {
const item = row.getIndex() as string;
if (item === branchId) {
return row;
}
const found = findRowDataById(row.getTreeChildren(), branchId);
let found = findRowDataById(row.getTreeChildren(), branchId);
if (found) return found;
}
return null;

View File

@@ -97,7 +97,7 @@
"html": "1.0.0",
"html2plaintext": "2.1.4",
"http-proxy-agent": "7.0.2",
"https-proxy-agent": "7.0.6",
"https-proxy-agent": "8.0.0",
"i18next": "25.8.17",
"i18next-fs-backend": "2.6.1",
"image-type": "6.0.0",

View File

@@ -71,6 +71,6 @@
},
"dependencies": {
"@ckeditor/ckeditor5-icons": "47.4.0",
"mathlive": "0.109.0"
"mathlive": "0.108.3"
}
}

View File

@@ -16,7 +16,7 @@
"ckeditor5-premium-features": "47.4.0"
},
"devDependencies": {
"@smithy/middleware-retry": "4.4.42",
"@smithy/middleware-retry": "4.4.40",
"@types/jquery": "4.0.0"
}
}

345
pnpm-lock.yaml generated
View File

@@ -755,8 +755,8 @@ importers:
specifier: 7.0.2
version: 7.0.2
https-proxy-agent:
specifier: 7.0.6
version: 7.0.6
specifier: 8.0.0
version: 8.0.0
i18next:
specifier: 25.8.17
version: 25.8.17(typescript@5.9.3)
@@ -941,8 +941,8 @@ importers:
version: 47.4.0(bufferutil@4.0.9)(ckeditor5@47.4.0)(utf-8-validate@6.0.5)
devDependencies:
'@smithy/middleware-retry':
specifier: 4.4.42
version: 4.4.42
specifier: 4.4.40
version: 4.4.40
'@types/jquery':
specifier: 4.0.0
version: 4.0.0
@@ -1133,8 +1133,8 @@ importers:
specifier: 47.4.0
version: 47.4.0
mathlive:
specifier: 0.109.0
version: 0.109.0
specifier: 0.108.3
version: 0.108.3
devDependencies:
'@ckeditor/ckeditor5-dev-build-tools':
specifier: 54.3.3
@@ -5558,10 +5558,6 @@ packages:
resolution: {integrity: sha512-Hj4WoYWMJnSpM6/kchsm4bUNTL9XiSyhvoMb2KIq4VJzyDt7JpGHUZHkVNPZVC7YE1tf8tPeVauxpFBKGW4/KQ==}
engines: {node: '>=18.0.0'}
'@smithy/abort-controller@4.2.12':
resolution: {integrity: sha512-xolrFw6b+2iYGl6EcOL7IJY71vvyZ0DJ3mcKtpykqPe2uscwtzDZJa1uVQXyP7w9Dd+kGwYnPbMsJrGISKiY/Q==}
engines: {node: '>=18.0.0'}
'@smithy/abort-controller@4.2.8':
resolution: {integrity: sha512-peuVfkYHAmS5ybKxWcfraK7WBBP0J+rkfUcbHJJKQ4ir3UAUNQI+Y4Vt/PqSzGqgloJ5O1dk7+WzNL8wcCSXbw==}
engines: {node: '>=18.0.0'}
@@ -5570,8 +5566,8 @@ packages:
resolution: {integrity: sha512-qJpzYC64kaj3S0fueiu3kXm8xPrR3PcXDPEgnaNMRn0EjNSZFoFjvbUp0YUDsRhN1CB90EnHJtbxWKevnH99UQ==}
engines: {node: '>=18.0.0'}
'@smithy/core@3.23.11':
resolution: {integrity: sha512-952rGf7hBRnhUIaeLp6q4MptKW8sPFe5VvkoZ5qIzFAtx6c/QZ/54FS3yootsyUSf9gJX/NBqEBNdNR7jMIlpQ==}
'@smithy/core@3.23.8':
resolution: {integrity: sha512-f7uPeBi7ehmLT4YF2u9j3qx6lSnurG1DLXOsTtJrIRNDF7VXio4BGHQ+SQteN/BrUVudbkuL4v7oOsRCzq4BqA==}
engines: {node: '>=18.0.0'}
'@smithy/core@3.23.9':
@@ -5606,10 +5602,6 @@ packages:
resolution: {integrity: sha512-U2Hcfl2s3XaYjikN9cT4mPu8ybDbImV3baXR0PkVlC0TTx808bRP3FaPGAzPtB8OByI+JqJ1kyS+7GEgae7+qQ==}
engines: {node: '>=18.0.0'}
'@smithy/fetch-http-handler@5.3.15':
resolution: {integrity: sha512-T4jFU5N/yiIfrtrsb9uOQn7RdELdM/7HbyLNr6uO/mpkj1ctiVs7CihVr51w4LyQlXWDpXFn4BElf1WmQvZu/A==}
engines: {node: '>=18.0.0'}
'@smithy/fetch-http-handler@5.3.9':
resolution: {integrity: sha512-I4UhmcTYXBrct03rwzQX1Y/iqQlzVQaPxWjCjula++5EmWq9YGBrx6bbGqluGc1f0XEfhSkiY4jhLgbsJUMKRA==}
engines: {node: '>=18.0.0'}
@@ -5634,26 +5626,22 @@ packages:
resolution: {integrity: sha512-F7gDyfI2BB1Kc+4M6rpuOLne5LOcEknH1n6UQB69qv+HucXBR1rkzXBnQTB2q46sFy1PM/zuSJOB532yc8bg3w==}
engines: {node: '>=18.0.0'}
'@smithy/middleware-endpoint@4.4.22':
resolution: {integrity: sha512-sc81w1o4Jy+/MAQlY3sQ8C7CmSpcvIi3TAzXblUv2hjG11BBSJi/Cw8vDx5BxMxapuH2I+Gc+45vWsgU07WZRQ==}
engines: {node: '>=18.0.0'}
'@smithy/middleware-endpoint@4.4.23':
resolution: {integrity: sha512-UEFIejZy54T1EJn2aWJ45voB7RP2T+IRzUqocIdM6GFFa5ClZncakYJfcYnoXt3UsQrZZ9ZRauGm77l9UCbBLw==}
engines: {node: '>=18.0.0'}
'@smithy/middleware-endpoint@4.4.25':
resolution: {integrity: sha512-dqjLwZs2eBxIUG6Qtw8/YZ4DvzHGIf0DA18wrgtfP6a50UIO7e2nY0FPdcbv5tVJKqWCCU5BmGMOUwT7Puan+A==}
engines: {node: '>=18.0.0'}
'@smithy/middleware-retry@4.4.42':
resolution: {integrity: sha512-vbwyqHRIpIZutNXZpLAozakzamcINaRCpEy1MYmK6xBeW3xN+TyPRA123GjXnuxZIjc9848MRRCugVMTXxC4Eg==}
'@smithy/middleware-retry@4.4.40':
resolution: {integrity: sha512-YhEMakG1Ae57FajERdHNZ4ShOPIY7DsgV+ZoAxo/5BT0KIe+f6DDU2rtIymNNFIj22NJfeeI6LWIifrwM0f+rA==}
engines: {node: '>=18.0.0'}
'@smithy/middleware-serde@4.2.12':
resolution: {integrity: sha512-W9g1bOLui7Xn5FABRVS0o3rXL0gfN37d/8I/W7i0N7oxjx9QecUmXEMSUMADTODwdtka9cN43t5BI2CodLJpng==}
engines: {node: '>=18.0.0'}
'@smithy/middleware-serde@4.2.14':
resolution: {integrity: sha512-+CcaLoLa5apzSRtloOyG7lQvkUw2ZDml3hRh4QiG9WyEPfW5Ke/3tPOPiPjUneuT59Tpn8+c3RVaUvvkkwqZwg==}
engines: {node: '>=18.0.0'}
'@smithy/middleware-serde@4.2.9':
resolution: {integrity: sha512-eMNiej0u/snzDvlqRGSN3Vl0ESn3838+nKyVfF2FKNXFbi4SERYT6PR392D39iczngbqqGG0Jl1DlCnp7tBbXQ==}
engines: {node: '>=18.0.0'}
@@ -5662,26 +5650,14 @@ packages:
resolution: {integrity: sha512-s+eenEPW6RgliDk2IhjD2hWOxIx1NKrOHxEwNUaUXxYBxIyCcDfNULZ2Mu15E3kwcJWBedTET/kEASPV1A1Akg==}
engines: {node: '>=18.0.0'}
'@smithy/middleware-stack@4.2.12':
resolution: {integrity: sha512-kruC5gRHwsCOuyCd4ouQxYjgRAym2uDlCvQ5acuMtRrcdfg7mFBg6blaxcJ09STpt3ziEkis6bhg1uwrWU7txw==}
engines: {node: '>=18.0.0'}
'@smithy/node-config-provider@4.3.11':
resolution: {integrity: sha512-xD17eE7kaLgBBGf5CZQ58hh2YmwK1Z0O8YhffwB/De2jsL0U3JklmhVYJ9Uf37OtUDLF2gsW40Xwwag9U869Gg==}
engines: {node: '>=18.0.0'}
'@smithy/node-config-provider@4.3.12':
resolution: {integrity: sha512-tr2oKX2xMcO+rBOjobSwVAkV05SIfUKz8iI53rzxEmgW3GOOPOv0UioSDk+J8OpRQnpnhsO3Af6IEBabQBVmiw==}
engines: {node: '>=18.0.0'}
'@smithy/node-http-handler@4.4.14':
resolution: {integrity: sha512-DamSqaU8nuk0xTJDrYnRzZndHwwRnyj/n/+RqGGCcBKB4qrQem0mSDiWdupaNWdwxzyMU91qxDmHOCazfhtO3A==}
engines: {node: '>=18.0.0'}
'@smithy/node-http-handler@4.4.16':
resolution: {integrity: sha512-ULC8UCS/HivdCB3jhi+kLFYe4B5gxH2gi9vHBfEIiRrT2jfKiZNiETJSlzRtE6B26XbBHjPtc8iZKSNqMol9bw==}
engines: {node: '>=18.0.0'}
'@smithy/node-http-handler@4.4.8':
resolution: {integrity: sha512-q9u+MSbJVIJ1QmJ4+1u+cERXkrhuILCBDsJUBAW1MPE6sFonbCNaegFuwW9ll8kh5UdyY3jOkoOGlc7BesoLpg==}
engines: {node: '>=18.0.0'}
@@ -5690,26 +5666,14 @@ packages:
resolution: {integrity: sha512-14T1V64o6/ndyrnl1ze1ZhyLzIeYNN47oF/QU6P5m82AEtyOkMJTb0gO1dPubYjyyKuPD6OSVMPDKe+zioOnCg==}
engines: {node: '>=18.0.0'}
'@smithy/property-provider@4.2.12':
resolution: {integrity: sha512-jqve46eYU1v7pZ5BM+fmkbq3DerkSluPr5EhvOcHxygxzD05ByDRppRwRPPpFrsFo5yDtCYLKu+kreHKVrvc7A==}
engines: {node: '>=18.0.0'}
'@smithy/protocol-http@5.3.11':
resolution: {integrity: sha512-hI+barOVDJBkNt4y0L2mu3Ugc0w7+BpJ2CZuLwXtSltGAAwCb3IvnalGlbDV/UCS6a9ZuT3+exd1WxNdLb5IlQ==}
engines: {node: '>=18.0.0'}
'@smithy/protocol-http@5.3.12':
resolution: {integrity: sha512-fit0GZK9I1xoRlR4jXmbLhoN0OdEpa96ul8M65XdmXnxXkuMxM0Y8HDT0Fh0Xb4I85MBvBClOzgSrV1X2s1Hxw==}
engines: {node: '>=18.0.0'}
'@smithy/querystring-builder@4.2.11':
resolution: {integrity: sha512-7spdikrYiljpket6u0up2Ck2mxhy7dZ0+TDd+S53Dg2DHd6wg+YNJrTCHiLdgZmEXZKI7LJZcwL3721ZRDFiqA==}
engines: {node: '>=18.0.0'}
'@smithy/querystring-builder@4.2.12':
resolution: {integrity: sha512-6wTZjGABQufekycfDGMEB84BgtdOE/rCVTov+EDXQ8NHKTUNIp/j27IliwP7tjIU9LR+sSzyGBOXjeEtVgzCHg==}
engines: {node: '>=18.0.0'}
'@smithy/querystring-builder@4.2.8':
resolution: {integrity: sha512-Xr83r31+DrE8CP3MqPgMJl+pQlLLmOfiEUnoyAlGzzJIrEsbKsPy1hqH0qySaQm4oWrCBlUqRt+idEgunKB+iw==}
engines: {node: '>=18.0.0'}
@@ -5718,10 +5682,6 @@ packages:
resolution: {integrity: sha512-nE3IRNjDltvGcoThD2abTozI1dkSy8aX+a2N1Rs55en5UsdyyIXgGEmevUL3okZFoJC77JgRGe99xYohhsjivQ==}
engines: {node: '>=18.0.0'}
'@smithy/querystring-parser@4.2.12':
resolution: {integrity: sha512-P2OdvrgiAKpkPNKlKUtWbNZKB1XjPxM086NeVhK+W+wI46pIKdWBe5QyXvhUm3MEcyS/rkLvY8rZzyUdmyDZBw==}
engines: {node: '>=18.0.0'}
'@smithy/querystring-parser@4.2.8':
resolution: {integrity: sha512-vUurovluVy50CUlazOiXkPq40KGvGWSdmusa3130MwrR1UNnNgKAlj58wlOe61XSHRpUfIIh6cE0zZ8mzKaDPA==}
engines: {node: '>=18.0.0'}
@@ -5730,46 +5690,30 @@ packages:
resolution: {integrity: sha512-HkMFJZJUhzU3HvND1+Yw/kYWXp4RPDLBWLcK1n+Vqw8xn4y2YiBhdww8IxhkQjP/QlZun5bwm3vcHc8AqIU3zw==}
engines: {node: '>=18.0.0'}
'@smithy/service-error-classification@4.2.12':
resolution: {integrity: sha512-LlP29oSQN0Tw0b6D0Xo6BIikBswuIiGYbRACy5ujw/JgWSzTdYj46U83ssf6Ux0GyNJVivs2uReU8pt7Eu9okQ==}
engines: {node: '>=18.0.0'}
'@smithy/shared-ini-file-loader@4.4.6':
resolution: {integrity: sha512-IB/M5I8G0EeXZTHsAxpx51tMQ5R719F3aq+fjEB6VtNcCHDc0ajFDIGDZw+FW9GxtEkgTduiPpjveJdA/CX7sw==}
engines: {node: '>=18.0.0'}
'@smithy/shared-ini-file-loader@4.4.7':
resolution: {integrity: sha512-HrOKWsUb+otTeo1HxVWeEb99t5ER1XrBi/xka2Wv6NVmTbuCUC1dvlrksdvxFtODLBjsC+PHK+fuy2x/7Ynyiw==}
engines: {node: '>=18.0.0'}
'@smithy/signature-v4@5.1.2':
resolution: {integrity: sha512-d3+U/VpX7a60seHziWnVZOHuEgJlclufjkS6zhXvxcJgkJq4UWdH5eOBLzHRMx6gXjsdT9h6lfpmLzbrdupHgQ==}
engines: {node: '>=18.0.0'}
'@smithy/smithy-client@4.12.3':
resolution: {integrity: sha512-7k4UxjSpHmPN2AxVhvIazRSzFQjWnud3sOsXcFStzagww17j1cFQYqTSiQ8xuYK3vKLR1Ni8FzuT3VlKr3xCNw==}
'@smithy/smithy-client@4.12.2':
resolution: {integrity: sha512-HezY3UuG0k4T+4xhFKctLXCA5N2oN+Rtv+mmL8Gt7YmsUY2yhmcLyW75qrSzldfj75IsCW/4UhY3s20KcFnZqA==}
engines: {node: '>=18.0.0'}
'@smithy/smithy-client@4.12.5':
resolution: {integrity: sha512-UqwYawyqSr/aog8mnLnfbPurS0gi4G7IYDcD28cUIBhsvWs1+rQcL2IwkUQ+QZ7dibaoRzhNF99fAQ9AUcO00w==}
'@smithy/smithy-client@4.12.3':
resolution: {integrity: sha512-7k4UxjSpHmPN2AxVhvIazRSzFQjWnud3sOsXcFStzagww17j1cFQYqTSiQ8xuYK3vKLR1Ni8FzuT3VlKr3xCNw==}
engines: {node: '>=18.0.0'}
'@smithy/types@4.13.0':
resolution: {integrity: sha512-COuLsZILbbQsdrwKQpkkpyep7lCsByxwj7m0Mg5v66/ZTyenlfBc40/QFQ5chO0YN/PNEH1Bi3fGtfXPnYNeDw==}
engines: {node: '>=18.0.0'}
'@smithy/types@4.13.1':
resolution: {integrity: sha512-787F3yzE2UiJIQ+wYW1CVg2odHjmaWLGksnKQHUrK/lYZSEcy1msuLVvxaR/sI2/aDe9U+TBuLsXnr3vod1g0g==}
engines: {node: '>=18.0.0'}
'@smithy/url-parser@4.2.11':
resolution: {integrity: sha512-oTAGGHo8ZYc5VZsBREzuf5lf2pAurJQsccMusVZ85wDkX66ojEc/XauiGjzCj50A61ObFTPe6d7Pyt6UBYaing==}
engines: {node: '>=18.0.0'}
'@smithy/url-parser@4.2.12':
resolution: {integrity: sha512-wOPKPEpso+doCZGIlr+e1lVI6+9VAKfL4kZWFgzVgGWY2hZxshNKod4l2LXS3PRC9otH/JRSjtEHqQ/7eLciRA==}
engines: {node: '>=18.0.0'}
'@smithy/url-parser@4.2.8':
resolution: {integrity: sha512-NQho9U68TGMEU639YkXnVMV3GEFFULmmaWdlu1E9qzyIePOHsoSnagTGSDv1Zi8DCNN6btxOSdgmy5E/hsZwhA==}
engines: {node: '>=18.0.0'}
@@ -5834,26 +5778,14 @@ packages:
resolution: {integrity: sha512-r3dtF9F+TpSZUxpOVVtPfk09Rlo4lT6ORBqEvX3IBT6SkQAdDSVKR5GcfmZbtl7WKhKnmb3wbDTQ6ibR2XHClw==}
engines: {node: '>=18.0.0'}
'@smithy/util-middleware@4.2.12':
resolution: {integrity: sha512-Er805uFUOvgc0l8nv0e0su0VFISoxhJ/AwOn3gL2NWNY2LUEldP5WtVcRYSQBcjg0y9NfG8JYrCJaYDpupBHJQ==}
engines: {node: '>=18.0.0'}
'@smithy/util-retry@4.2.11':
resolution: {integrity: sha512-XSZULmL5x6aCTTii59wJqKsY1l3eMIAomRAccW7Tzh9r8s7T/7rdo03oektuH5jeYRlJMPcNP92EuRDvk9aXbw==}
engines: {node: '>=18.0.0'}
'@smithy/util-retry@4.2.12':
resolution: {integrity: sha512-1zopLDUEOwumjcHdJ1mwBHddubYF8GMQvstVCLC54Y46rqoHwlIU+8ZzUeaBcD+WCJHyDGSeZ2ml9YSe9aqcoQ==}
engines: {node: '>=18.0.0'}
'@smithy/util-stream@4.5.17':
resolution: {integrity: sha512-793BYZ4h2JAQkNHcEnyFxDTcZbm9bVybD0UV/LEWmZ5bkTms7JqjfrLMi2Qy0E5WFcCzLwCAPgcvcvxoeALbAQ==}
engines: {node: '>=18.0.0'}
'@smithy/util-stream@4.5.19':
resolution: {integrity: sha512-v4sa+3xTweL1CLO2UP0p7tvIMH/Rq1X4KKOxd568mpe6LSLMQCnDHs4uv7m3ukpl3HvcN2JH6jiCS0SNRXKP/w==}
engines: {node: '>=18.0.0'}
'@smithy/util-uri-escape@4.2.0':
resolution: {integrity: sha512-igZpCKV9+E/Mzrpq6YacdTQ0qTiLm85gD6N/IrmyDvQFA4UnU3d5g3m8tMT/6zG/vVkWSU+VxeUyGonL62DuxA==}
engines: {node: '>=18.0.0'}
@@ -7536,6 +7468,10 @@ packages:
resolution: {integrity: sha512-MnA+YT8fwfJPgBx3m60MNqakm30XOkyIoH1y6huTQvC0PwZG7ki8NacLBcrPbNoo8vEZy7Jpuk7+jMO+CUovTQ==}
engines: {node: '>= 14'}
agent-base@8.0.0:
resolution: {integrity: sha512-QT8i0hCz6C/KQ+KTAbSNwCHDGdmUJl2tp2ZpNlGSWCfhUNVbYG2WLE3MdZGBAgXPV4GAvjGMxo+C1hroyxmZEg==}
engines: {node: '>= 14'}
agentkeepalive@4.6.0:
resolution: {integrity: sha512-kja8j7PjmncONqaTsB8fQ+wE2mSU2DJ9D4XKoJ5PFWIdRMa6SLSN1ff4mOr4jCbfRSsxR4keIiySJU0N9T5hIQ==}
engines: {node: '>= 8.0.0'}
@@ -10661,6 +10597,10 @@ packages:
resolution: {integrity: sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw==}
engines: {node: '>= 14'}
https-proxy-agent@8.0.0:
resolution: {integrity: sha512-YYeW+iCnAS3xhvj2dvVoWgsbca3RfQy/IlaNHHOtDmU0jMqPI9euIq3Y9BJETdxk16h9NHHCKqp/KB9nIMStCQ==}
engines: {node: '>= 14'}
human-signals@2.1.0:
resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==}
engines: {node: '>=10.17.0'}
@@ -11852,8 +11792,8 @@ packages:
resolution: {integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==}
engines: {node: '>= 0.4'}
mathlive@0.109.0:
resolution: {integrity: sha512-geMbW4sLmxYCKR46C2pJ5osdur8lJdUnKJ96KITvx2JGjypJT+GLW1d3XA09sXHEPLOV36tWbMCUrSiVYMU5Iw==}
mathlive@0.108.3:
resolution: {integrity: sha512-VaGtSn95MogS2im/t6repac9W7GJG1J4bJ94ozdKYer8m+fQ8ClYy9wXoypZiuywueNxudWw4us6W6xhRoRdww==}
mathml-tag-names@2.1.3:
resolution: {integrity: sha512-APMBEanjybaPzUrfqU0IMU5I0AswKMH7k8OTLs0vvV4KZpExkTkY87nR/zpbuTPj+gARop7aGUbl11pnDfW6xg==}
@@ -16649,7 +16589,7 @@ snapshots:
'@aws-sdk/util-user-agent-browser': 3.821.0
'@aws-sdk/util-user-agent-node': 3.823.0
'@smithy/config-resolver': 4.4.6
'@smithy/core': 3.23.9
'@smithy/core': 3.23.8
'@smithy/eventstream-serde-browser': 4.0.4
'@smithy/eventstream-serde-config-resolver': 4.1.2
'@smithy/eventstream-serde-node': 4.0.4
@@ -16657,14 +16597,14 @@ snapshots:
'@smithy/hash-node': 4.0.4
'@smithy/invalid-dependency': 4.0.4
'@smithy/middleware-content-length': 4.0.4
'@smithy/middleware-endpoint': 4.4.23
'@smithy/middleware-retry': 4.4.42
'@smithy/middleware-endpoint': 4.4.22
'@smithy/middleware-retry': 4.4.40
'@smithy/middleware-serde': 4.2.9
'@smithy/middleware-stack': 4.2.11
'@smithy/node-config-provider': 4.3.11
'@smithy/node-http-handler': 4.4.8
'@smithy/protocol-http': 5.3.11
'@smithy/smithy-client': 4.12.3
'@smithy/smithy-client': 4.12.2
'@smithy/types': 4.13.0
'@smithy/url-parser': 4.2.8
'@smithy/util-base64': 4.3.0
@@ -16698,19 +16638,19 @@ snapshots:
'@aws-sdk/util-user-agent-browser': 3.821.0
'@aws-sdk/util-user-agent-node': 3.823.0
'@smithy/config-resolver': 4.4.6
'@smithy/core': 3.23.9
'@smithy/core': 3.23.8
'@smithy/fetch-http-handler': 5.3.13
'@smithy/hash-node': 4.0.4
'@smithy/invalid-dependency': 4.0.4
'@smithy/middleware-content-length': 4.0.4
'@smithy/middleware-endpoint': 4.4.23
'@smithy/middleware-retry': 4.4.42
'@smithy/middleware-endpoint': 4.4.22
'@smithy/middleware-retry': 4.4.40
'@smithy/middleware-serde': 4.2.12
'@smithy/middleware-stack': 4.2.11
'@smithy/node-config-provider': 4.3.11
'@smithy/node-http-handler': 4.4.14
'@smithy/protocol-http': 5.3.11
'@smithy/smithy-client': 4.12.3
'@smithy/smithy-client': 4.12.2
'@smithy/types': 4.13.0
'@smithy/url-parser': 4.2.11
'@smithy/util-base64': 4.3.2
@@ -16730,12 +16670,12 @@ snapshots:
dependencies:
'@aws-sdk/types': 3.821.0
'@aws-sdk/xml-builder': 3.821.0
'@smithy/core': 3.23.9
'@smithy/core': 3.23.8
'@smithy/node-config-provider': 4.3.11
'@smithy/property-provider': 4.2.11
'@smithy/protocol-http': 5.3.11
'@smithy/signature-v4': 5.1.2
'@smithy/smithy-client': 4.12.3
'@smithy/smithy-client': 4.12.2
'@smithy/types': 4.13.0
'@smithy/util-base64': 4.3.2
'@smithy/util-body-length-browser': 4.2.2
@@ -16760,7 +16700,7 @@ snapshots:
'@smithy/node-http-handler': 4.4.14
'@smithy/property-provider': 4.2.11
'@smithy/protocol-http': 5.3.11
'@smithy/smithy-client': 4.12.3
'@smithy/smithy-client': 4.12.2
'@smithy/types': 4.13.0
'@smithy/util-stream': 4.5.17
tslib: 2.8.1
@@ -16872,7 +16812,7 @@ snapshots:
'@aws-sdk/core': 3.823.0
'@aws-sdk/types': 3.821.0
'@aws-sdk/util-endpoints': 3.821.0
'@smithy/core': 3.23.9
'@smithy/core': 3.23.8
'@smithy/protocol-http': 5.3.11
'@smithy/types': 4.13.0
tslib: 2.8.1
@@ -16892,19 +16832,19 @@ snapshots:
'@aws-sdk/util-user-agent-browser': 3.821.0
'@aws-sdk/util-user-agent-node': 3.823.0
'@smithy/config-resolver': 4.4.6
'@smithy/core': 3.23.9
'@smithy/core': 3.23.8
'@smithy/fetch-http-handler': 5.3.13
'@smithy/hash-node': 4.0.4
'@smithy/invalid-dependency': 4.0.4
'@smithy/middleware-content-length': 4.0.4
'@smithy/middleware-endpoint': 4.4.23
'@smithy/middleware-retry': 4.4.42
'@smithy/middleware-endpoint': 4.4.22
'@smithy/middleware-retry': 4.4.40
'@smithy/middleware-serde': 4.2.12
'@smithy/middleware-stack': 4.2.11
'@smithy/node-config-provider': 4.3.11
'@smithy/node-http-handler': 4.4.14
'@smithy/protocol-http': 5.3.11
'@smithy/smithy-client': 4.12.3
'@smithy/smithy-client': 4.12.2
'@smithy/types': 4.13.0
'@smithy/url-parser': 4.2.11
'@smithy/util-base64': 4.3.2
@@ -17357,8 +17297,6 @@ snapshots:
'@ckeditor/ckeditor5-core': 47.4.0
'@ckeditor/ckeditor5-utils': 47.4.0
ckeditor5: 47.4.0
transitivePeerDependencies:
- supports-color
'@ckeditor/ckeditor5-code-block@47.4.0(patch_hash=2361d8caad7d6b5bddacc3a3b4aa37dbfba260b1c1b22a450413a79c1bb1ce95)':
dependencies:
@@ -17551,8 +17489,6 @@ snapshots:
'@ckeditor/ckeditor5-utils': 47.4.0
ckeditor5: 47.4.0
es-toolkit: 1.39.5
transitivePeerDependencies:
- supports-color
'@ckeditor/ckeditor5-editor-classic@47.4.0':
dependencies:
@@ -17631,8 +17567,6 @@ snapshots:
'@ckeditor/ckeditor5-core': 47.4.0
'@ckeditor/ckeditor5-engine': 47.4.0
'@ckeditor/ckeditor5-utils': 47.4.0
transitivePeerDependencies:
- supports-color
'@ckeditor/ckeditor5-essentials@47.4.0':
dependencies:
@@ -18093,8 +18027,6 @@ snapshots:
'@ckeditor/ckeditor5-ui': 47.4.0
'@ckeditor/ckeditor5-utils': 47.4.0
ckeditor5: 47.4.0
transitivePeerDependencies:
- supports-color
'@ckeditor/ckeditor5-restricted-editing@47.4.0':
dependencies:
@@ -21933,11 +21865,6 @@ snapshots:
'@smithy/types': 4.13.0
tslib: 2.8.1
'@smithy/abort-controller@4.2.12':
dependencies:
'@smithy/types': 4.13.1
tslib: 2.8.1
'@smithy/abort-controller@4.2.8':
dependencies:
'@smithy/types': 4.13.0
@@ -21952,15 +21879,15 @@ snapshots:
'@smithy/util-middleware': 4.2.11
tslib: 2.8.1
'@smithy/core@3.23.11':
'@smithy/core@3.23.8':
dependencies:
'@smithy/protocol-http': 5.3.12
'@smithy/types': 4.13.1
'@smithy/url-parser': 4.2.12
'@smithy/middleware-serde': 4.2.12
'@smithy/protocol-http': 5.3.11
'@smithy/types': 4.13.0
'@smithy/util-base64': 4.3.2
'@smithy/util-body-length-browser': 4.2.2
'@smithy/util-middleware': 4.2.12
'@smithy/util-stream': 4.5.19
'@smithy/util-middleware': 4.2.11
'@smithy/util-stream': 4.5.17
'@smithy/util-utf8': 4.2.2
'@smithy/uuid': 1.1.2
tslib: 2.8.1
@@ -22024,14 +21951,6 @@ snapshots:
'@smithy/util-base64': 4.3.2
tslib: 2.8.1
'@smithy/fetch-http-handler@5.3.15':
dependencies:
'@smithy/protocol-http': 5.3.12
'@smithy/querystring-builder': 4.2.12
'@smithy/types': 4.13.1
'@smithy/util-base64': 4.3.2
tslib: 2.8.1
'@smithy/fetch-http-handler@5.3.9':
dependencies:
'@smithy/protocol-http': 5.3.11
@@ -22066,6 +21985,17 @@ snapshots:
'@smithy/types': 4.13.0
tslib: 2.8.1
'@smithy/middleware-endpoint@4.4.22':
dependencies:
'@smithy/core': 3.23.8
'@smithy/middleware-serde': 4.2.12
'@smithy/node-config-provider': 4.3.11
'@smithy/shared-ini-file-loader': 4.4.6
'@smithy/types': 4.13.0
'@smithy/url-parser': 4.2.11
'@smithy/util-middleware': 4.2.11
tslib: 2.8.1
'@smithy/middleware-endpoint@4.4.23':
dependencies:
'@smithy/core': 3.23.9
@@ -22077,26 +22007,15 @@ snapshots:
'@smithy/util-middleware': 4.2.11
tslib: 2.8.1
'@smithy/middleware-endpoint@4.4.25':
'@smithy/middleware-retry@4.4.40':
dependencies:
'@smithy/core': 3.23.11
'@smithy/middleware-serde': 4.2.14
'@smithy/node-config-provider': 4.3.12
'@smithy/shared-ini-file-loader': 4.4.7
'@smithy/types': 4.13.1
'@smithy/url-parser': 4.2.12
'@smithy/util-middleware': 4.2.12
tslib: 2.8.1
'@smithy/middleware-retry@4.4.42':
dependencies:
'@smithy/node-config-provider': 4.3.12
'@smithy/protocol-http': 5.3.12
'@smithy/service-error-classification': 4.2.12
'@smithy/smithy-client': 4.12.5
'@smithy/types': 4.13.1
'@smithy/util-middleware': 4.2.12
'@smithy/util-retry': 4.2.12
'@smithy/node-config-provider': 4.3.11
'@smithy/protocol-http': 5.3.11
'@smithy/service-error-classification': 4.2.11
'@smithy/smithy-client': 4.12.3
'@smithy/types': 4.13.0
'@smithy/util-middleware': 4.2.11
'@smithy/util-retry': 4.2.11
'@smithy/uuid': 1.1.2
tslib: 2.8.1
@@ -22106,13 +22025,6 @@ snapshots:
'@smithy/types': 4.13.0
tslib: 2.8.1
'@smithy/middleware-serde@4.2.14':
dependencies:
'@smithy/core': 3.23.11
'@smithy/protocol-http': 5.3.12
'@smithy/types': 4.13.1
tslib: 2.8.1
'@smithy/middleware-serde@4.2.9':
dependencies:
'@smithy/protocol-http': 5.3.11
@@ -22124,11 +22036,6 @@ snapshots:
'@smithy/types': 4.13.0
tslib: 2.8.1
'@smithy/middleware-stack@4.2.12':
dependencies:
'@smithy/types': 4.13.1
tslib: 2.8.1
'@smithy/node-config-provider@4.3.11':
dependencies:
'@smithy/property-provider': 4.2.11
@@ -22136,13 +22043,6 @@ snapshots:
'@smithy/types': 4.13.0
tslib: 2.8.1
'@smithy/node-config-provider@4.3.12':
dependencies:
'@smithy/property-provider': 4.2.12
'@smithy/shared-ini-file-loader': 4.4.7
'@smithy/types': 4.13.1
tslib: 2.8.1
'@smithy/node-http-handler@4.4.14':
dependencies:
'@smithy/abort-controller': 4.2.11
@@ -22151,14 +22051,6 @@ snapshots:
'@smithy/types': 4.13.0
tslib: 2.8.1
'@smithy/node-http-handler@4.4.16':
dependencies:
'@smithy/abort-controller': 4.2.12
'@smithy/protocol-http': 5.3.12
'@smithy/querystring-builder': 4.2.12
'@smithy/types': 4.13.1
tslib: 2.8.1
'@smithy/node-http-handler@4.4.8':
dependencies:
'@smithy/abort-controller': 4.2.8
@@ -22172,33 +22064,17 @@ snapshots:
'@smithy/types': 4.13.0
tslib: 2.8.1
'@smithy/property-provider@4.2.12':
dependencies:
'@smithy/types': 4.13.1
tslib: 2.8.1
'@smithy/protocol-http@5.3.11':
dependencies:
'@smithy/types': 4.13.0
tslib: 2.8.1
'@smithy/protocol-http@5.3.12':
dependencies:
'@smithy/types': 4.13.1
tslib: 2.8.1
'@smithy/querystring-builder@4.2.11':
dependencies:
'@smithy/types': 4.13.0
'@smithy/util-uri-escape': 4.2.2
tslib: 2.8.1
'@smithy/querystring-builder@4.2.12':
dependencies:
'@smithy/types': 4.13.1
'@smithy/util-uri-escape': 4.2.2
tslib: 2.8.1
'@smithy/querystring-builder@4.2.8':
dependencies:
'@smithy/types': 4.13.0
@@ -22210,11 +22086,6 @@ snapshots:
'@smithy/types': 4.13.0
tslib: 2.8.1
'@smithy/querystring-parser@4.2.12':
dependencies:
'@smithy/types': 4.13.1
tslib: 2.8.1
'@smithy/querystring-parser@4.2.8':
dependencies:
'@smithy/types': 4.13.0
@@ -22224,20 +22095,11 @@ snapshots:
dependencies:
'@smithy/types': 4.13.0
'@smithy/service-error-classification@4.2.12':
dependencies:
'@smithy/types': 4.13.1
'@smithy/shared-ini-file-loader@4.4.6':
dependencies:
'@smithy/types': 4.13.0
tslib: 2.8.1
'@smithy/shared-ini-file-loader@4.4.7':
dependencies:
'@smithy/types': 4.13.1
tslib: 2.8.1
'@smithy/signature-v4@5.1.2':
dependencies:
'@smithy/is-array-buffer': 4.2.2
@@ -22249,6 +22111,16 @@ snapshots:
'@smithy/util-utf8': 4.2.2
tslib: 2.8.1
'@smithy/smithy-client@4.12.2':
dependencies:
'@smithy/core': 3.23.8
'@smithy/middleware-endpoint': 4.4.22
'@smithy/middleware-stack': 4.2.11
'@smithy/protocol-http': 5.3.11
'@smithy/types': 4.13.0
'@smithy/util-stream': 4.5.17
tslib: 2.8.1
'@smithy/smithy-client@4.12.3':
dependencies:
'@smithy/core': 3.23.9
@@ -22259,36 +22131,16 @@ snapshots:
'@smithy/util-stream': 4.5.17
tslib: 2.8.1
'@smithy/smithy-client@4.12.5':
dependencies:
'@smithy/core': 3.23.11
'@smithy/middleware-endpoint': 4.4.25
'@smithy/middleware-stack': 4.2.12
'@smithy/protocol-http': 5.3.12
'@smithy/types': 4.13.1
'@smithy/util-stream': 4.5.19
tslib: 2.8.1
'@smithy/types@4.13.0':
dependencies:
tslib: 2.8.1
'@smithy/types@4.13.1':
dependencies:
tslib: 2.8.1
'@smithy/url-parser@4.2.11':
dependencies:
'@smithy/querystring-parser': 4.2.11
'@smithy/types': 4.13.0
tslib: 2.8.1
'@smithy/url-parser@4.2.12':
dependencies:
'@smithy/querystring-parser': 4.2.12
'@smithy/types': 4.13.1
tslib: 2.8.1
'@smithy/url-parser@4.2.8':
dependencies:
'@smithy/querystring-parser': 4.2.8
@@ -22340,7 +22192,7 @@ snapshots:
'@smithy/util-defaults-mode-browser@4.0.22':
dependencies:
'@smithy/property-provider': 4.2.11
'@smithy/smithy-client': 4.12.3
'@smithy/smithy-client': 4.12.2
'@smithy/types': 4.13.0
bowser: 2.11.0
tslib: 2.8.1
@@ -22351,7 +22203,7 @@ snapshots:
'@smithy/credential-provider-imds': 4.0.6
'@smithy/node-config-provider': 4.3.11
'@smithy/property-provider': 4.2.11
'@smithy/smithy-client': 4.12.3
'@smithy/smithy-client': 4.12.2
'@smithy/types': 4.13.0
tslib: 2.8.1
@@ -22376,23 +22228,12 @@ snapshots:
'@smithy/types': 4.13.0
tslib: 2.8.1
'@smithy/util-middleware@4.2.12':
dependencies:
'@smithy/types': 4.13.1
tslib: 2.8.1
'@smithy/util-retry@4.2.11':
dependencies:
'@smithy/service-error-classification': 4.2.11
'@smithy/types': 4.13.0
tslib: 2.8.1
'@smithy/util-retry@4.2.12':
dependencies:
'@smithy/service-error-classification': 4.2.12
'@smithy/types': 4.13.1
tslib: 2.8.1
'@smithy/util-stream@4.5.17':
dependencies:
'@smithy/fetch-http-handler': 5.3.13
@@ -22404,17 +22245,6 @@ snapshots:
'@smithy/util-utf8': 4.2.2
tslib: 2.8.1
'@smithy/util-stream@4.5.19':
dependencies:
'@smithy/fetch-http-handler': 5.3.15
'@smithy/node-http-handler': 4.4.16
'@smithy/types': 4.13.1
'@smithy/util-base64': 4.3.2
'@smithy/util-buffer-from': 4.2.2
'@smithy/util-hex-encoding': 4.2.2
'@smithy/util-utf8': 4.2.2
tslib: 2.8.1
'@smithy/util-uri-escape@4.2.0':
dependencies:
tslib: 2.8.1
@@ -25256,6 +25086,8 @@ snapshots:
agent-base@7.1.4: {}
agent-base@8.0.0: {}
agentkeepalive@4.6.0:
dependencies:
humanize-ms: 1.2.1
@@ -29348,7 +29180,14 @@ snapshots:
https-proxy-agent@7.0.6:
dependencies:
agent-base: 7.1.3
agent-base: 7.1.4
debug: 4.4.3(supports-color@8.1.1)
transitivePeerDependencies:
- supports-color
https-proxy-agent@8.0.0:
dependencies:
agent-base: 8.0.0
debug: 4.4.3(supports-color@8.1.1)
transitivePeerDependencies:
- supports-color
@@ -30607,7 +30446,7 @@ snapshots:
math-intrinsics@1.1.0: {}
mathlive@0.109.0:
mathlive@0.108.3:
dependencies:
'@cortex-js/compute-engine': 0.30.2