@hantera/portal-app 20260825.0.0-develop.1 → 20260825.0.0-develop.3
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.ts +2 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -357,6 +357,7 @@ export declare interface BackendApiUser {
|
|
|
357
357
|
authorize(pattern: string): boolean;
|
|
358
358
|
authorizeAll(patterns?: string[]): boolean;
|
|
359
359
|
value: DeepReadonly<User>;
|
|
360
|
+
updateSettings(settings: Record<string, unknown>): Promise<void>;
|
|
360
361
|
}
|
|
361
362
|
|
|
362
363
|
export declare interface BackendError {
|
|
@@ -2784,6 +2785,7 @@ declare const orderView: {
|
|
|
2784
2785
|
* panels in the order view. Implement only the methods relevant to the app.
|
|
2785
2786
|
*/
|
|
2786
2787
|
contextMenuProvider: AppService< {
|
|
2788
|
+
buildContextMenu?(context: PortalContext, orderViewContext: OrderViewContext): ContextMenuSection;
|
|
2787
2789
|
buildDeliveryContextMenu?(context: PortalContext, orderViewContext: OrderViewContext, delivery: Models_2.Graph.Delivery): ContextMenuSection;
|
|
2788
2790
|
buildPaymentContextMenu?(context: PortalContext, orderViewContext: OrderViewContext, payment: Models_2.Graph.Payment): ContextMenuSection;
|
|
2789
2791
|
}>;
|