@feedmepos/mf-miniprogram-v2 0.1.0-dev.11 → 0.1.0-dev.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/{ControlPlaneView-DzyTnzK9.js → ControlPlaneView-pfavWn-N.js} +2902 -3349
- package/dist/app.js +1 -1
- package/dist/package.json +1 -1
- package/dist/src/api/controlPlane.d.ts +0 -1
- package/dist/src/composables/types.d.ts +1 -16
- package/dist/src/composables/useChat.d.ts +0 -2
- package/dist/src/composables/useProject.d.ts +8 -6
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/dist/src/components/AnnotationMessage.vue.d.ts +0 -7
- package/dist/src/components/ChatTextPart.vue.d.ts +0 -6
- package/dist/src/components/MarkdownContent.vue.d.ts +0 -6
- package/dist/src/components/StatusBadge.vue.d.ts +0 -21
- package/dist/src/composables/previewAnnotations.d.ts +0 -9
- package/dist/src/composables/status.d.ts +0 -10
package/package.json
CHANGED
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import type { PreviewAnnotationItem } from '../composables/previewAnnotations';
|
|
2
|
-
type __VLS_Props = {
|
|
3
|
-
items: PreviewAnnotationItem[];
|
|
4
|
-
};
|
|
5
|
-
declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
6
|
-
declare const _default: typeof __VLS_export;
|
|
7
|
-
export default _default;
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
type __VLS_Props = {
|
|
2
|
-
text: string;
|
|
3
|
-
};
|
|
4
|
-
declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
5
|
-
declare const _default: typeof __VLS_export;
|
|
6
|
-
export default _default;
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
type __VLS_Props = {
|
|
2
|
-
text: string;
|
|
3
|
-
};
|
|
4
|
-
declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
5
|
-
declare const _default: typeof __VLS_export;
|
|
6
|
-
export default _default;
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
import type { BadgeVariant } from '../composables/status';
|
|
2
|
-
type __VLS_Props = {
|
|
3
|
-
variant?: BadgeVariant;
|
|
4
|
-
size?: 'sm' | 'md';
|
|
5
|
-
};
|
|
6
|
-
declare var __VLS_1: {};
|
|
7
|
-
type __VLS_Slots = {} & {
|
|
8
|
-
default?: (props: typeof __VLS_1) => any;
|
|
9
|
-
};
|
|
10
|
-
declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
11
|
-
size: "sm" | "md";
|
|
12
|
-
variant: BadgeVariant;
|
|
13
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
14
|
-
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
15
|
-
declare const _default: typeof __VLS_export;
|
|
16
|
-
export default _default;
|
|
17
|
-
type __VLS_WithSlots<T, S> = T & {
|
|
18
|
-
new (): {
|
|
19
|
-
$slots: S;
|
|
20
|
-
};
|
|
21
|
-
};
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
export interface PreviewAnnotationItem {
|
|
2
|
-
id: number;
|
|
3
|
-
note: string;
|
|
4
|
-
label: string;
|
|
5
|
-
route?: string;
|
|
6
|
-
device?: string;
|
|
7
|
-
}
|
|
8
|
-
export declare function wrapAnnotationPayload(items: PreviewAnnotationItem[]): string;
|
|
9
|
-
export declare function parseAnnotationMessage(text: string): PreviewAnnotationItem[] | null;
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import type { AgentSessionSummary, ConnectionStatus, ReleaseSummary } from './types';
|
|
2
|
-
export type BadgeVariant = 'success' | 'warning' | 'error' | 'info' | 'neutral' | 'primary';
|
|
3
|
-
export declare function sessionStatusVariant(status: AgentSessionSummary['status']): BadgeVariant;
|
|
4
|
-
export declare function sessionStatusLabel(status: AgentSessionSummary['status']): string;
|
|
5
|
-
export declare function buildStatusVariant(status: string | null): BadgeVariant;
|
|
6
|
-
export declare function buildStatusLabel(status: string | null): string;
|
|
7
|
-
export declare function provisioningStatusLabel(status: string | null | undefined): string;
|
|
8
|
-
export declare function releaseDisplayStatus(release: ReleaseSummary): string;
|
|
9
|
-
export declare function releaseDisplayVariant(release: ReleaseSummary): BadgeVariant;
|
|
10
|
-
export declare function connectionStatusVariant(status: ConnectionStatus): BadgeVariant;
|