@feedmepos/mf-miniprogram-v2 0.1.0-dev.40 → 0.1.0-dev.44

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.
Files changed (48) hide show
  1. package/dist/{ControlPlaneView-DcNJs7QW.js → ControlPlaneView-BpR5nF-S.js} +5063 -4966
  2. package/dist/app.d.ts +2 -1
  3. package/dist/app.js +1 -1
  4. package/dist/package.json +11 -9
  5. package/dist/style.css +1 -1
  6. package/package.json +11 -9
  7. package/dist/src/App.vue.d.ts +0 -3
  8. package/dist/src/Entry.vue.d.ts +0 -3
  9. package/dist/src/api/controlPlane.d.ts +0 -24
  10. package/dist/src/app.d.ts +0 -4
  11. package/dist/src/components/AnnotationColorField.vue.d.ts +0 -14
  12. package/dist/src/components/AnnotationMessage.vue.d.ts +0 -8
  13. package/dist/src/components/AnnotationPropertyPanel.vue.d.ts +0 -32
  14. package/dist/src/components/AnnotationStyleControl.vue.d.ts +0 -14
  15. package/dist/src/components/BrandKitPanel.vue.d.ts +0 -9
  16. package/dist/src/components/BrandKitProposalCard.vue.d.ts +0 -7
  17. package/dist/src/components/ChatPanel.vue.d.ts +0 -7
  18. package/dist/src/components/ChatTextPart.vue.d.ts +0 -6
  19. package/dist/src/components/DiffCard.vue.d.ts +0 -9
  20. package/dist/src/components/MarkdownContent.vue.d.ts +0 -6
  21. package/dist/src/components/MessageItem.vue.d.ts +0 -13
  22. package/dist/src/components/PreviewPanel.vue.d.ts +0 -7
  23. package/dist/src/components/QuestionPrompt.vue.d.ts +0 -16
  24. package/dist/src/components/RenameSessionDialog.vue.d.ts +0 -12
  25. package/dist/src/components/StatusBadge.vue.d.ts +0 -21
  26. package/dist/src/components/ToolCallCard.vue.d.ts +0 -9
  27. package/dist/src/components/ToolCallGroup.vue.d.ts +0 -11
  28. package/dist/src/composables/annotationEditing.d.ts +0 -130
  29. package/dist/src/composables/annotationTray.d.ts +0 -73
  30. package/dist/src/composables/brandkitProposal.d.ts +0 -14
  31. package/dist/src/composables/imageAttachments.d.ts +0 -23
  32. package/dist/src/composables/latestPoller.d.ts +0 -14
  33. package/dist/src/composables/localPreference.d.ts +0 -10
  34. package/dist/src/composables/markdown.d.ts +0 -2
  35. package/dist/src/composables/previewAnnotations.d.ts +0 -38
  36. package/dist/src/composables/promptQueue.d.ts +0 -20
  37. package/dist/src/composables/questionAnswers.d.ts +0 -4
  38. package/dist/src/composables/status.d.ts +0 -11
  39. package/dist/src/composables/types.d.ts +0 -201
  40. package/dist/src/composables/useAgentBridge.d.ts +0 -35
  41. package/dist/src/composables/useBrandKit.d.ts +0 -45
  42. package/dist/src/composables/useChat.d.ts +0 -201
  43. package/dist/src/composables/useIdleSuspend.d.ts +0 -6
  44. package/dist/src/composables/useProject.d.ts +0 -212
  45. package/dist/src/main.d.ts +0 -3
  46. package/dist/src/router/index.d.ts +0 -2
  47. package/dist/src/router/shared.d.ts +0 -2
  48. package/dist/src/views/ControlPlaneView.vue.d.ts +0 -3
@@ -1,212 +0,0 @@
1
- import type { ArchiveCodeAction, CheckpointTrigger, ProjectSummary, ReleaseSummary, SessionCheckpoint, SessionChangesSummary } from './types';
2
- export declare function useProject(): {
3
- businessId: string;
4
- project: {
5
- businessId: string;
6
- businessSlug: string | null;
7
- repoName: string;
8
- repoUrl: string;
9
- v2Enabled: 0 | 1;
10
- activeSessionId: string | null;
11
- currentPublishedReleaseId: string | null;
12
- rolloutStatus: "disabled" | "preview" | "live" | "rolled_back";
13
- fallbackVersion: "v1";
14
- provisioningStatus: import("./types").ProjectProvisioningStatus;
15
- provisioningError: string | null;
16
- provisionedAt: string | null;
17
- repoInitialCommitSha: string | null;
18
- createdAt: string | null;
19
- updatedAt: string | null;
20
- } | null;
21
- sessions: {
22
- id: string;
23
- title: string | null;
24
- forked_from: string | null;
25
- raw_opencode_session_id: string | null;
26
- branch_name: string;
27
- sandbox_id: string | null;
28
- status: "active" | "archived" | "needs_attention";
29
- archived_at: string | null;
30
- last_event_chunk: number;
31
- last_snapshot_at: string | null;
32
- base_commit_sha: string | null;
33
- last_checkpoint_id: string | null;
34
- last_durable_commit_sha: string | null;
35
- last_pushed_at: string | null;
36
- dirty_since: string | null;
37
- checkpoint_status: import("./types").CheckpointStatus | null;
38
- checkpoint_error: string | null;
39
- attention_action?: string | null | undefined;
40
- attention_error?: string | null | undefined;
41
- release_count: number;
42
- has_live_release: number;
43
- created_at: string;
44
- updated_at: string;
45
- }[];
46
- releases: {
47
- id: string;
48
- source_commit_sha: string;
49
- checkpoint_id: string | null;
50
- created_from_session_id: string | null;
51
- session_title: string | null;
52
- status: "draft" | "preview" | "published" | "rolled_back";
53
- artifact_prefix: string;
54
- created_at: string;
55
- published_at: string | null;
56
- is_live: 0 | 1;
57
- build_job_id: string | null;
58
- build_status: "queued" | "running" | "succeeded" | "failed" | null;
59
- build_logs_url: string | null;
60
- build_created_at: string | null;
61
- build_completed_at: string | null;
62
- }[];
63
- workspaceState: {
64
- businessId: string;
65
- sessionId: string;
66
- workspaceExists: boolean;
67
- dirty: boolean;
68
- hasUncommittedChanges: boolean;
69
- hasUnpushedCommits: boolean;
70
- headDiffersFromOrigin: boolean;
71
- statusCount: number;
72
- commitsAheadOrigin: number;
73
- commitsBehindOrigin: number;
74
- headSha: string | null;
75
- originSha: string | null;
76
- syncState: import("./types").WorkspaceSyncState;
77
- availability: "available" | "unavailable";
78
- lastCheckpointId: string | null;
79
- lastDurableCommitSha: string | null;
80
- lastPushedAt: string | null;
81
- dirtySince: string | null;
82
- checkpointStatus: import("./types").CheckpointStatus | null;
83
- checkpointError: string | null;
84
- lastSnapshotAt: string | null;
85
- latestCheckpoint: {
86
- id: string;
87
- business_id: string;
88
- session_id: string;
89
- sequence: number;
90
- trigger: CheckpointTrigger;
91
- status: import("./types").CheckpointStatus;
92
- context_status: import("./types").CheckpointContextStatus;
93
- base_sha: string | null;
94
- commit_sha: string | null;
95
- verified_remote_sha: string | null;
96
- raw_opencode_message_id: string | null;
97
- opencode_snapshot_key: string | null;
98
- workspace_backup_key: string | null;
99
- file_count: number;
100
- additions: number;
101
- deletions: number;
102
- summary: string | null;
103
- error_stage: string | null;
104
- error_message: string | null;
105
- created_at: string;
106
- committed_at: string | null;
107
- pushed_at: string | null;
108
- context_snapshotted_at: string | null;
109
- pinned: number;
110
- } | null;
111
- } | null;
112
- checkpoints: {
113
- id: string;
114
- business_id: string;
115
- session_id: string;
116
- sequence: number;
117
- trigger: CheckpointTrigger;
118
- status: import("./types").CheckpointStatus;
119
- context_status: import("./types").CheckpointContextStatus;
120
- base_sha: string | null;
121
- commit_sha: string | null;
122
- verified_remote_sha: string | null;
123
- raw_opencode_message_id: string | null;
124
- opencode_snapshot_key: string | null;
125
- workspace_backup_key: string | null;
126
- file_count: number;
127
- additions: number;
128
- deletions: number;
129
- summary: string | null;
130
- error_stage: string | null;
131
- error_message: string | null;
132
- created_at: string;
133
- committed_at: string | null;
134
- pushed_at: string | null;
135
- context_snapshotted_at: string | null;
136
- pinned: number;
137
- }[];
138
- checkpointBusy: boolean;
139
- busy: boolean;
140
- statusText: string;
141
- activeReleaseId: string | null;
142
- activeReleasePreviewUrl: string | null;
143
- latestRelease: {
144
- id: string;
145
- source_commit_sha: string;
146
- checkpoint_id: string | null;
147
- created_from_session_id: string | null;
148
- session_title: string | null;
149
- status: "draft" | "preview" | "published" | "rolled_back";
150
- artifact_prefix: string;
151
- created_at: string;
152
- published_at: string | null;
153
- is_live: 0 | 1;
154
- build_job_id: string | null;
155
- build_status: "queued" | "running" | "succeeded" | "failed" | null;
156
- build_logs_url: string | null;
157
- build_created_at: string | null;
158
- build_completed_at: string | null;
159
- } | null;
160
- isProvisioned: boolean;
161
- provisioningFailed: boolean;
162
- syncBusiness: () => void;
163
- refreshProject: () => Promise<ProjectSummary>;
164
- provisionProject: () => Promise<ProjectSummary>;
165
- refreshSessions: () => Promise<void>;
166
- refreshReleases: (signal?: AbortSignal) => Promise<{
167
- releases: ReleaseSummary[];
168
- }>;
169
- selectRelease: (releaseId: string) => Promise<void>;
170
- createSession: (options?: {
171
- archiveCodeAction?: ArchiveCodeAction;
172
- }) => Promise<{
173
- sessionId: string;
174
- previewUrl: string;
175
- }>;
176
- sessionChanges: (sessionId: string, refreshRemote?: boolean) => Promise<SessionChangesSummary>;
177
- refreshWorkspaceState: (sessionId: string, refreshRemote?: boolean) => Promise<SessionChangesSummary>;
178
- refreshCheckpoints: (sessionId: string) => Promise<SessionCheckpoint[]>;
179
- checkpointSession: (sessionId: string, options?: {
180
- trigger?: CheckpointTrigger;
181
- idempotencyKey?: string;
182
- rawOpencodeMessageId?: string;
183
- summary?: string;
184
- }) => Promise<{
185
- checkpoint: SessionCheckpoint;
186
- sourceCommitSha: string;
187
- reused: boolean;
188
- }>;
189
- restoreCheckpoint: (sessionId: string, checkpointId: string) => Promise<{
190
- checkpoint: SessionCheckpoint;
191
- sourceCommitSha: string;
192
- }>;
193
- resumeSession: (sessionId: string) => Promise<{
194
- sessionId: string;
195
- previewUrl: string;
196
- }>;
197
- renameSession: (sessionId: string, title: string) => Promise<void>;
198
- commitSession: (sessionId: string) => Promise<{
199
- checkpoint: SessionCheckpoint;
200
- sourceCommitSha: string;
201
- reused: boolean;
202
- }>;
203
- createRelease: (checkpointId: string, sessionId?: string) => Promise<{
204
- releaseId: string;
205
- buildJobId: string;
206
- previewUrl: string;
207
- }>;
208
- publish: (releaseId?: string | null) => Promise<void>;
209
- rollbackToRelease: (releaseId: string) => Promise<void>;
210
- rollbackToV1: () => Promise<void>;
211
- };
212
- export type ProjectStore = ReturnType<typeof useProject>;
@@ -1,3 +0,0 @@
1
- import '@mpv2/assets/main.css';
2
- import '@mpv2/assets/standalone.css';
3
- import '@feedmepos/mf-common/style.css';
@@ -1,2 +0,0 @@
1
- declare const router: import("vue-router").Router;
2
- export default router;
@@ -1,2 +0,0 @@
1
- import type { RouteRecordRaw } from 'vue-router';
2
- export declare const routes: RouteRecordRaw[];
@@ -1,3 +0,0 @@
1
- declare const __VLS_export: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
- declare const _default: typeof __VLS_export;
3
- export default _default;