@powerhousedao/vetra 6.0.0-dev.253 → 6.0.0-dev.255

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 (41) hide show
  1. package/dist/document-models/app-module/index.d.ts +3 -339
  2. package/dist/document-models/app-module/index.d.ts.map +1 -1
  3. package/dist/document-models/document-editor/index.d.ts +3 -315
  4. package/dist/document-models/document-editor/index.d.ts.map +1 -1
  5. package/dist/document-models/index.d.ts +5 -5
  6. package/dist/document-models/processor-module/index.d.ts +3 -347
  7. package/dist/document-models/processor-module/index.d.ts.map +1 -1
  8. package/dist/document-models/subgraph-module/index.d.ts +3 -286
  9. package/dist/document-models/subgraph-module/index.d.ts.map +1 -1
  10. package/dist/document-models/vetra-package/index.d.ts +3 -376
  11. package/dist/document-models/vetra-package/index.d.ts.map +1 -1
  12. package/dist/{factory-CweZppg6.js → factory-BBzu0pRO.js} +3 -3
  13. package/dist/factory-BBzu0pRO.js.map +1 -0
  14. package/dist/index-BdmD5tsW.d.ts +393 -0
  15. package/dist/index-BdmD5tsW.d.ts.map +1 -0
  16. package/dist/index-BfK0fsx4.d.ts +424 -0
  17. package/dist/index-BfK0fsx4.d.ts.map +1 -0
  18. package/dist/index.d.ts +136 -1
  19. package/dist/index.d.ts.map +1 -1
  20. package/dist/module-BYEvqA47.d.ts +357 -0
  21. package/dist/module-BYEvqA47.d.ts.map +1 -0
  22. package/dist/module-CCqD26Hf.d.ts +478 -0
  23. package/dist/module-CCqD26Hf.d.ts.map +1 -0
  24. package/dist/module-CpP8D2Hl.d.ts +437 -0
  25. package/dist/module-CpP8D2Hl.d.ts.map +1 -0
  26. package/dist/processors/codegen/index.js +1 -1
  27. package/dist/processors/index.js +1 -1
  28. package/dist/{switchboard-JOTFVXuj.js → switchboard-D69j45OO.js} +2 -2
  29. package/dist/{switchboard-JOTFVXuj.js.map → switchboard-D69j45OO.js.map} +1 -1
  30. package/package.json +8 -8
  31. package/dist/factory-CweZppg6.js.map +0 -1
  32. package/dist/module-BoX1rWiq.d.ts +0 -6
  33. package/dist/module-BoX1rWiq.d.ts.map +0 -1
  34. package/dist/module-CG6K37P8.d.ts +0 -6
  35. package/dist/module-CG6K37P8.d.ts.map +0 -1
  36. package/dist/module-Cr-9knz_.d.ts +0 -6
  37. package/dist/module-Cr-9knz_.d.ts.map +0 -1
  38. package/dist/module-DhhQLYnQ.d.ts +0 -6
  39. package/dist/module-DhhQLYnQ.d.ts.map +0 -1
  40. package/dist/module-J-kGIl1E.d.ts +0 -6
  41. package/dist/module-J-kGIl1E.d.ts.map +0 -1
@@ -0,0 +1,437 @@
1
+ import * as document_model0 from "document-model";
2
+ import { Action, DocumentModelGlobalState, DocumentModelUtils, PHAuthState, PHBaseState, PHDocument, PHDocumentController, PHDocumentState, Reducer, SignalDispatch } from "document-model";
3
+ import * as z$1 from "zod";
4
+ import { z } from "zod";
5
+ import { DocumentDispatch } from "@powerhousedao/reactor-browser";
6
+
7
+ //#region document-models/processor-module/v1/gen/base-operations/actions.d.ts
8
+ type SetProcessorNameAction = Action & {
9
+ type: "SET_PROCESSOR_NAME";
10
+ input: SetProcessorNameInput;
11
+ };
12
+ type SetProcessorTypeAction = Action & {
13
+ type: "SET_PROCESSOR_TYPE";
14
+ input: SetProcessorTypeInput;
15
+ };
16
+ type AddDocumentTypeAction = Action & {
17
+ type: "ADD_DOCUMENT_TYPE";
18
+ input: AddDocumentTypeInput;
19
+ };
20
+ type RemoveDocumentTypeAction = Action & {
21
+ type: "REMOVE_DOCUMENT_TYPE";
22
+ input: RemoveDocumentTypeInput;
23
+ };
24
+ type AddProcessorAppAction = Action & {
25
+ type: "ADD_PROCESSOR_APP";
26
+ input: AddProcessorAppInput;
27
+ };
28
+ type RemoveProcessorAppAction = Action & {
29
+ type: "REMOVE_PROCESSOR_APP";
30
+ input: RemoveProcessorAppInput;
31
+ };
32
+ type SetProcessorStatusAction = Action & {
33
+ type: "SET_PROCESSOR_STATUS";
34
+ input: SetProcessorStatusInput;
35
+ };
36
+ type ProcessorModuleBaseOperationsAction = SetProcessorNameAction | SetProcessorTypeAction | AddDocumentTypeAction | RemoveDocumentTypeAction | AddProcessorAppAction | RemoveProcessorAppAction | SetProcessorStatusAction;
37
+ //#endregion
38
+ //#region document-models/processor-module/v1/gen/actions.d.ts
39
+ type ProcessorModuleAction = ProcessorModuleBaseOperationsAction;
40
+ //#endregion
41
+ //#region document-models/processor-module/v1/gen/schema/types.d.ts
42
+ type Maybe<T> = T | null | undefined;
43
+ type InputMaybe<T> = T | null | undefined;
44
+ type Exact<T extends {
45
+ [key: string]: unknown;
46
+ }> = { [K in keyof T]: T[K] };
47
+ type MakeOptional<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]?: Maybe<T[SubKey]> };
48
+ type MakeMaybe<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]: Maybe<T[SubKey]> };
49
+ type MakeEmpty<T extends {
50
+ [key: string]: unknown;
51
+ }, K extends keyof T> = { [_ in K]?: never };
52
+ type Incremental<T> = T | { [P in keyof T]?: P extends " $fragmentName" | "__typename" ? T[P] : never };
53
+ /** All built-in and custom scalars, mapped to their actual values */
54
+ type Scalars = {
55
+ ID: {
56
+ input: string;
57
+ output: string;
58
+ };
59
+ String: {
60
+ input: string;
61
+ output: string;
62
+ };
63
+ Boolean: {
64
+ input: boolean;
65
+ output: boolean;
66
+ };
67
+ Int: {
68
+ input: number;
69
+ output: number;
70
+ };
71
+ Float: {
72
+ input: number;
73
+ output: number;
74
+ };
75
+ Address: {
76
+ input: `${string}:0x${string}`;
77
+ output: `${string}:0x${string}`;
78
+ };
79
+ Amount: {
80
+ input: {
81
+ unit?: string;
82
+ value?: number;
83
+ };
84
+ output: {
85
+ unit?: string;
86
+ value?: number;
87
+ };
88
+ };
89
+ Amount_Crypto: {
90
+ input: {
91
+ unit: string;
92
+ value: string;
93
+ };
94
+ output: {
95
+ unit: string;
96
+ value: string;
97
+ };
98
+ };
99
+ Amount_Currency: {
100
+ input: {
101
+ unit: string;
102
+ value: string;
103
+ };
104
+ output: {
105
+ unit: string;
106
+ value: string;
107
+ };
108
+ };
109
+ Amount_Fiat: {
110
+ input: {
111
+ unit: string;
112
+ value: number;
113
+ };
114
+ output: {
115
+ unit: string;
116
+ value: number;
117
+ };
118
+ };
119
+ Amount_Money: {
120
+ input: number;
121
+ output: number;
122
+ };
123
+ Amount_Percentage: {
124
+ input: number;
125
+ output: number;
126
+ };
127
+ Amount_Tokens: {
128
+ input: number;
129
+ output: number;
130
+ };
131
+ Attachment: {
132
+ input: string;
133
+ output: string;
134
+ };
135
+ Currency: {
136
+ input: string;
137
+ output: string;
138
+ };
139
+ Date: {
140
+ input: string;
141
+ output: string;
142
+ };
143
+ DateTime: {
144
+ input: string;
145
+ output: string;
146
+ };
147
+ EmailAddress: {
148
+ input: string;
149
+ output: string;
150
+ };
151
+ EthereumAddress: {
152
+ input: string;
153
+ output: string;
154
+ };
155
+ OID: {
156
+ input: string;
157
+ output: string;
158
+ };
159
+ OLabel: {
160
+ input: string;
161
+ output: string;
162
+ };
163
+ PHID: {
164
+ input: string;
165
+ output: string;
166
+ };
167
+ URL: {
168
+ input: string;
169
+ output: string;
170
+ };
171
+ Unknown: {
172
+ input: unknown;
173
+ output: unknown;
174
+ };
175
+ Upload: {
176
+ input: File;
177
+ output: File;
178
+ };
179
+ };
180
+ type AddDocumentTypeInput = {
181
+ documentType: Scalars["String"]["input"];
182
+ id: Scalars["OID"]["input"];
183
+ };
184
+ type AddProcessorAppInput = {
185
+ processorApp: Scalars["String"]["input"];
186
+ };
187
+ /** A document type id (e.g. 'my-org/invoice') attached to the processor with a stable entry id. */
188
+ type DocumentTypeItem = {
189
+ /** Document type id this processor subscribes to. */documentType: Scalars["String"]["output"]; /** Stable identifier for the entry; used to remove it. */
190
+ id: Scalars["OID"]["output"];
191
+ };
192
+ /**
193
+ * Configuration for a processor contributed by the package. A processor receives
194
+ * operations from documents of matching types and runs server-side logic (e.g.
195
+ * building a read model, indexing, syncing to an external system).
196
+ */
197
+ type ProcessorModuleState = {
198
+ /** Document types this processor subscribes to. Each entry has a stable id so it can be removed individually. */documentTypes: Array<DocumentTypeItem>; /** Display name of the processor. Also determines the generated folder name under `processors/`. */
199
+ name: Scalars["String"]["output"]; /** Drive-app names this processor is attached to. The processor runs in the context of each listed app. */
200
+ processorApps: Array<Scalars["String"]["output"]>; /** Lifecycle status. While DRAFT the processor definition is editable and codegen is skipped; switching to CONFIRMED triggers scaffold generation. */
201
+ status: StatusType; /** Processor implementation kind (e.g. 'read-model', 'relational-db'). Determines which scaffold codegen emits. */
202
+ type: Scalars["String"]["output"];
203
+ };
204
+ type RemoveDocumentTypeInput = {
205
+ id: Scalars["OID"]["input"];
206
+ };
207
+ type RemoveProcessorAppInput = {
208
+ processorApp: Scalars["String"]["input"];
209
+ };
210
+ type SetProcessorNameInput = {
211
+ name: Scalars["String"]["input"];
212
+ };
213
+ type SetProcessorStatusInput = {
214
+ status: StatusType;
215
+ };
216
+ type SetProcessorTypeInput = {
217
+ type: Scalars["String"]["input"];
218
+ };
219
+ /**
220
+ * Lifecycle status of a module definition.
221
+ * - DRAFT: still being edited; codegen does not run.
222
+ * - CONFIRMED: locked in; codegen produces the corresponding scaffold.
223
+ */
224
+ type StatusType = "CONFIRMED" | "DRAFT";
225
+ //#endregion
226
+ //#region document-models/processor-module/v1/gen/types.d.ts
227
+ type ProcessorModuleLocalState = Record<PropertyKey, never>;
228
+ type ProcessorModulePHState = PHBaseState & {
229
+ global: ProcessorModuleState;
230
+ local: ProcessorModuleLocalState;
231
+ };
232
+ type ProcessorModuleDocument = PHDocument<ProcessorModulePHState>;
233
+ //#endregion
234
+ //#region document-models/processor-module/v1/actions.d.ts
235
+ /** Actions for the ProcessorModule document model */
236
+ declare const actions: {
237
+ setProcessorName: (input: SetProcessorNameInput) => SetProcessorNameAction;
238
+ setProcessorType: (input: SetProcessorTypeInput) => SetProcessorTypeAction;
239
+ addDocumentType: (input: AddDocumentTypeInput) => AddDocumentTypeAction;
240
+ removeDocumentType: (input: RemoveDocumentTypeInput) => RemoveDocumentTypeAction;
241
+ addProcessorApp: (input: AddProcessorAppInput) => AddProcessorAppAction;
242
+ removeProcessorApp: (input: RemoveProcessorAppInput) => RemoveProcessorAppAction;
243
+ setProcessorStatus: (input: SetProcessorStatusInput) => SetProcessorStatusAction;
244
+ setName: (name: string | {
245
+ name: string;
246
+ }) => document_model0.SetNameAction;
247
+ setPreferredEditor: (input: string | null | {
248
+ preferredEditor: string | null;
249
+ }) => document_model0.SetPreferredEditorAction;
250
+ undo: (count?: number, scope?: string) => document_model0.UndoAction;
251
+ redo: (count?: number, scope?: string) => document_model0.RedoAction;
252
+ prune: (start?: number, end?: number, scope?: string) => document_model0.SchemaPruneAction;
253
+ loadState: <TState extends document_model0.PHBaseState = document_model0.PHBaseState>(state: TState & {
254
+ name: string;
255
+ }, operations: number) => document_model0.LoadStateAction;
256
+ noop: (scope?: string) => document_model0.NOOPAction;
257
+ };
258
+ //#endregion
259
+ //#region document-models/processor-module/v1/gen/base-operations/operations.d.ts
260
+ interface ProcessorModuleBaseOperationsOperations {
261
+ setProcessorNameOperation: (state: ProcessorModuleState, action: SetProcessorNameAction, dispatch?: SignalDispatch) => void;
262
+ setProcessorTypeOperation: (state: ProcessorModuleState, action: SetProcessorTypeAction, dispatch?: SignalDispatch) => void;
263
+ addDocumentTypeOperation: (state: ProcessorModuleState, action: AddDocumentTypeAction, dispatch?: SignalDispatch) => void;
264
+ removeDocumentTypeOperation: (state: ProcessorModuleState, action: RemoveDocumentTypeAction, dispatch?: SignalDispatch) => void;
265
+ addProcessorAppOperation: (state: ProcessorModuleState, action: AddProcessorAppAction, dispatch?: SignalDispatch) => void;
266
+ removeProcessorAppOperation: (state: ProcessorModuleState, action: RemoveProcessorAppAction, dispatch?: SignalDispatch) => void;
267
+ setProcessorStatusOperation: (state: ProcessorModuleState, action: SetProcessorStatusAction, dispatch?: SignalDispatch) => void;
268
+ }
269
+ //#endregion
270
+ //#region document-models/processor-module/v1/gen/controller.d.ts
271
+ declare const ProcessorModuleController: new (initialDocument?: document_model0.PHDocument<ProcessorModulePHState> | undefined) => PHDocumentController<ProcessorModulePHState> & document_model0.ActionMap<ProcessorModuleBaseOperationsAction, PHDocumentController<ProcessorModulePHState>>;
272
+ declare namespace creators_d_exports {
273
+ export { addDocumentType, addProcessorApp, removeDocumentType, removeProcessorApp, setProcessorName, setProcessorStatus, setProcessorType };
274
+ }
275
+ declare const setProcessorName: (input: SetProcessorNameInput) => SetProcessorNameAction;
276
+ declare const setProcessorType: (input: SetProcessorTypeInput) => SetProcessorTypeAction;
277
+ declare const addDocumentType: (input: AddDocumentTypeInput) => AddDocumentTypeAction;
278
+ declare const removeDocumentType: (input: RemoveDocumentTypeInput) => RemoveDocumentTypeAction;
279
+ declare const addProcessorApp: (input: AddProcessorAppInput) => AddProcessorAppAction;
280
+ declare const removeProcessorApp: (input: RemoveProcessorAppInput) => RemoveProcessorAppAction;
281
+ declare const setProcessorStatus: (input: SetProcessorStatusInput) => SetProcessorStatusAction;
282
+ //#endregion
283
+ //#region document-models/processor-module/v1/gen/document-model.d.ts
284
+ declare const documentModel: DocumentModelGlobalState;
285
+ //#endregion
286
+ //#region document-models/processor-module/v1/gen/document-schema.d.ts
287
+ /** Schema for validating the header object of a ProcessorModule document */
288
+ declare const ProcessorModuleDocumentHeaderSchema: z.ZodObject<{
289
+ id: z.ZodString;
290
+ name: z.ZodString;
291
+ createdAtUtcIso: z.ZodString;
292
+ lastModifiedAtUtcIso: z.ZodString;
293
+ documentType: z.ZodLiteral<"powerhouse/processor">;
294
+ }, z.core.$strip>;
295
+ /** Schema for validating the state object of a ProcessorModule document */
296
+ declare const ProcessorModulePHStateSchema: z.ZodObject<{
297
+ global: z.ZodObject<Required<{
298
+ documentTypes: z.ZodType<DocumentTypeItem[], unknown, z.core.$ZodTypeInternals<DocumentTypeItem[], unknown>>;
299
+ name: z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>;
300
+ processorApps: z.ZodType<string[], unknown, z.core.$ZodTypeInternals<string[], unknown>>;
301
+ status: z.ZodType<StatusType, unknown, z.core.$ZodTypeInternals<StatusType, unknown>>;
302
+ type: z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>;
303
+ }>, z.core.$strip>;
304
+ }, z.core.$strip>;
305
+ declare const ProcessorModuleDocumentSchema: z.ZodObject<{
306
+ header: z.ZodObject<{
307
+ id: z.ZodString;
308
+ name: z.ZodString;
309
+ createdAtUtcIso: z.ZodString;
310
+ lastModifiedAtUtcIso: z.ZodString;
311
+ documentType: z.ZodLiteral<"powerhouse/processor">;
312
+ }, z.core.$strip>;
313
+ state: z.ZodObject<{
314
+ global: z.ZodObject<Required<{
315
+ documentTypes: z.ZodType<DocumentTypeItem[], unknown, z.core.$ZodTypeInternals<DocumentTypeItem[], unknown>>;
316
+ name: z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>;
317
+ processorApps: z.ZodType<string[], unknown, z.core.$ZodTypeInternals<string[], unknown>>;
318
+ status: z.ZodType<StatusType, unknown, z.core.$ZodTypeInternals<StatusType, unknown>>;
319
+ type: z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>;
320
+ }>, z.core.$strip>;
321
+ }, z.core.$strip>;
322
+ initialState: z.ZodObject<{
323
+ global: z.ZodObject<Required<{
324
+ documentTypes: z.ZodType<DocumentTypeItem[], unknown, z.core.$ZodTypeInternals<DocumentTypeItem[], unknown>>;
325
+ name: z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>;
326
+ processorApps: z.ZodType<string[], unknown, z.core.$ZodTypeInternals<string[], unknown>>;
327
+ status: z.ZodType<StatusType, unknown, z.core.$ZodTypeInternals<StatusType, unknown>>;
328
+ type: z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>;
329
+ }>, z.core.$strip>;
330
+ }, z.core.$strip>;
331
+ }, z.core.$strip>;
332
+ /** Simple helper function to check if a state object is a ProcessorModule document state object */
333
+ declare function isProcessorModuleState(state: unknown): state is ProcessorModulePHState;
334
+ /** Simple helper function to assert that a document state object is a ProcessorModule document state object */
335
+ declare function assertIsProcessorModuleState(state: unknown): asserts state is ProcessorModulePHState;
336
+ /** Simple helper function to check if a document is a ProcessorModule document */
337
+ declare function isProcessorModuleDocument(document: unknown): document is ProcessorModuleDocument;
338
+ /** Simple helper function to assert that a document is a ProcessorModule document */
339
+ declare function assertIsProcessorModuleDocument(document: unknown): asserts document is ProcessorModuleDocument;
340
+ //#endregion
341
+ //#region document-models/processor-module/v1/gen/document-type.d.ts
342
+ /**
343
+ * WARNING: DO NOT EDIT
344
+ * This file is auto-generated and updated by codegen
345
+ */
346
+ declare const processorModuleDocumentType = "powerhouse/processor";
347
+ //#endregion
348
+ //#region document-models/processor-module/v1/gen/ph-factories.d.ts
349
+ declare function defaultGlobalState(): ProcessorModuleState;
350
+ declare function defaultLocalState(): ProcessorModuleLocalState;
351
+ declare function defaultPHState(): ProcessorModulePHState;
352
+ declare function createState$1(baseState?: Partial<PHBaseState>, globalState?: Partial<ProcessorModuleState>, localState?: Partial<ProcessorModuleLocalState>): ProcessorModulePHState;
353
+ /**
354
+ * Creates a ProcessorModuleDocument with custom global and local state
355
+ * This properly handles the PHBaseState requirements while allowing
356
+ * document-specific state to be set.
357
+ */
358
+ declare function createProcessorModuleDocument(state?: Partial<{
359
+ auth?: Partial<PHAuthState>;
360
+ document?: Partial<PHDocumentState>;
361
+ global?: Partial<ProcessorModuleState>;
362
+ local?: Partial<ProcessorModuleLocalState>;
363
+ }>): ProcessorModuleDocument;
364
+ //#endregion
365
+ //#region document-models/processor-module/v1/gen/reducer.d.ts
366
+ declare const reducer: Reducer<ProcessorModulePHState>;
367
+ //#endregion
368
+ //#region document-models/processor-module/v1/gen/schema/zod.d.ts
369
+ type Properties<T> = Required<{ [K in keyof T]: z$1.ZodType<T[K]> }>;
370
+ type definedNonNullAny = {};
371
+ declare const isDefinedNonNullAny: (v: any) => v is definedNonNullAny;
372
+ declare const definedNonNullAnySchema: z$1.ZodAny & z$1.ZodType<definedNonNullAny, any, z$1.core.$ZodTypeInternals<definedNonNullAny, any>>;
373
+ declare const StatusTypeSchema: z$1.ZodEnum<{
374
+ CONFIRMED: "CONFIRMED";
375
+ DRAFT: "DRAFT";
376
+ }>;
377
+ declare function AddDocumentTypeInputSchema(): z$1.ZodObject<Properties<AddDocumentTypeInput>>;
378
+ declare function AddProcessorAppInputSchema(): z$1.ZodObject<Properties<AddProcessorAppInput>>;
379
+ declare function DocumentTypeItemSchema(): z$1.ZodObject<Properties<DocumentTypeItem>>;
380
+ declare function ProcessorModuleStateSchema(): z$1.ZodObject<Properties<ProcessorModuleState>>;
381
+ declare function RemoveDocumentTypeInputSchema(): z$1.ZodObject<Properties<RemoveDocumentTypeInput>>;
382
+ declare function RemoveProcessorAppInputSchema(): z$1.ZodObject<Properties<RemoveProcessorAppInput>>;
383
+ declare function SetProcessorNameInputSchema(): z$1.ZodObject<Properties<SetProcessorNameInput>>;
384
+ declare function SetProcessorStatusInputSchema(): z$1.ZodObject<Properties<SetProcessorStatusInput>>;
385
+ declare function SetProcessorTypeInputSchema(): z$1.ZodObject<Properties<SetProcessorTypeInput>>;
386
+ //#endregion
387
+ //#region document-models/processor-module/v1/gen/utils.d.ts
388
+ declare const initialGlobalState: ProcessorModuleState;
389
+ declare const initialLocalState: ProcessorModuleLocalState;
390
+ //#endregion
391
+ //#region document-models/processor-module/v1/hooks.d.ts
392
+ /** Hook to get a ProcessorModule document by its id */
393
+ declare function useProcessorModuleDocumentById(documentId: string | null | undefined): [ProcessorModuleDocument, DocumentDispatch<ProcessorModuleAction>] | [undefined, undefined];
394
+ /** Hook to get the selected ProcessorModule document */
395
+ declare function useSelectedProcessorModuleDocument(): [ProcessorModuleDocument, DocumentDispatch<ProcessorModuleAction>];
396
+ /** Hook to get all ProcessorModule documents in the selected drive */
397
+ declare function useProcessorModuleDocumentsInSelectedDrive(): ProcessorModuleDocument[] | undefined;
398
+ /** Hook to get all ProcessorModule documents in the selected folder */
399
+ declare function useProcessorModuleDocumentsInSelectedFolder(): ProcessorModuleDocument[] | undefined;
400
+ //#endregion
401
+ //#region document-models/processor-module/v1/utils.d.ts
402
+ /** Utils for the ProcessorModule document model */
403
+ declare const utils: DocumentModelUtils<ProcessorModulePHState>;
404
+ //#endregion
405
+ //#region document-models/processor-module/v1/module.d.ts
406
+ /** Document model module for the ProcessorModule document type */
407
+ declare const ProcessorModule: {
408
+ readonly version: 1;
409
+ readonly reducer: document_model0.Reducer<ProcessorModulePHState>;
410
+ readonly actions: {
411
+ setProcessorName: (input: SetProcessorNameInput) => SetProcessorNameAction;
412
+ setProcessorType: (input: SetProcessorTypeInput) => SetProcessorTypeAction;
413
+ addDocumentType: (input: AddDocumentTypeInput) => AddDocumentTypeAction;
414
+ removeDocumentType: (input: RemoveDocumentTypeInput) => RemoveDocumentTypeAction;
415
+ addProcessorApp: (input: AddProcessorAppInput) => AddProcessorAppAction;
416
+ removeProcessorApp: (input: RemoveProcessorAppInput) => RemoveProcessorAppAction;
417
+ setProcessorStatus: (input: SetProcessorStatusInput) => SetProcessorStatusAction;
418
+ setName: (name: string | {
419
+ name: string;
420
+ }) => document_model0.SetNameAction;
421
+ setPreferredEditor: (input: string | null | {
422
+ preferredEditor: string | null;
423
+ }) => document_model0.SetPreferredEditorAction;
424
+ undo: (count?: number, scope?: string) => document_model0.UndoAction;
425
+ redo: (count?: number, scope?: string) => document_model0.RedoAction;
426
+ prune: (start?: number, end?: number, scope?: string) => document_model0.SchemaPruneAction;
427
+ loadState: <TState extends document_model0.PHBaseState = document_model0.PHBaseState>(state: TState & {
428
+ name: string;
429
+ }, operations: number) => document_model0.LoadStateAction;
430
+ noop: (scope?: string) => document_model0.NOOPAction;
431
+ };
432
+ readonly utils: document_model0.DocumentModelUtils<ProcessorModulePHState>;
433
+ readonly documentModel: document_model0.DocumentModelPHState;
434
+ };
435
+ //#endregion
436
+ export { Exact as $, ProcessorModulePHStateSchema as A, removeProcessorApp as B, createState$1 as C, processorModuleDocumentType as D, defaultPHState as E, documentModel as F, ProcessorModuleBaseOperationsOperations as G, setProcessorStatus as H, addDocumentType as I, ProcessorModuleLocalState as J, actions as K, addProcessorApp as L, assertIsProcessorModuleState as M, isProcessorModuleDocument as N, ProcessorModuleDocumentHeaderSchema as O, isProcessorModuleState as P, DocumentTypeItem as Q, creators_d_exports as R, createProcessorModuleDocument as S, SetProcessorTypeAction as St, defaultLocalState as T, setProcessorType as U, setProcessorName as V, ProcessorModuleController as W, AddDocumentTypeInput as X, ProcessorModulePHState as Y, AddProcessorAppInput as Z, SetProcessorTypeInputSchema as _, ProcessorModuleBaseOperationsAction as _t, useProcessorModuleDocumentsInSelectedFolder as a, Maybe as at, isDefinedNonNullAny as b, SetProcessorNameAction as bt, initialLocalState as c, RemoveProcessorAppInput as ct, DocumentTypeItemSchema as d, SetProcessorStatusInput as dt, Incremental as et, ProcessorModuleStateSchema as f, SetProcessorTypeInput as ft, SetProcessorStatusInputSchema as g, AddProcessorAppAction as gt, SetProcessorNameInputSchema as h, AddDocumentTypeAction as ht, useProcessorModuleDocumentsInSelectedDrive as i, MakeOptional as it, assertIsProcessorModuleDocument as j, ProcessorModuleDocumentSchema as k, AddDocumentTypeInputSchema as l, Scalars as lt, RemoveProcessorAppInputSchema as m, ProcessorModuleAction as mt, utils as n, MakeEmpty as nt, useSelectedProcessorModuleDocument as o, ProcessorModuleState as ot, RemoveDocumentTypeInputSchema as p, StatusType as pt, ProcessorModuleDocument as q, useProcessorModuleDocumentById as r, MakeMaybe as rt, initialGlobalState as s, RemoveDocumentTypeInput as st, ProcessorModule as t, InputMaybe as tt, AddProcessorAppInputSchema as u, SetProcessorNameInput as ut, StatusTypeSchema as v, RemoveDocumentTypeAction as vt, defaultGlobalState as w, reducer as x, SetProcessorStatusAction as xt, definedNonNullAnySchema as y, RemoveProcessorAppAction as yt, removeDocumentType as z };
437
+ //# sourceMappingURL=module-CpP8D2Hl.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"module-CpP8D2Hl.d.ts","names":[],"sources":["../document-models/processor-module/v1/gen/base-operations/actions.ts","../document-models/processor-module/v1/gen/actions.ts","../document-models/processor-module/v1/gen/schema/types.ts","../document-models/processor-module/v1/gen/types.ts","../document-models/processor-module/v1/actions.ts","../document-models/processor-module/v1/gen/base-operations/operations.ts","../document-models/processor-module/v1/gen/controller.ts","../document-models/processor-module/v1/gen/base-operations/creators.ts","../document-models/processor-module/v1/gen/document-model.ts","../document-models/processor-module/v1/gen/document-schema.ts","../document-models/processor-module/v1/gen/document-type.ts","../document-models/processor-module/v1/gen/ph-factories.ts","../document-models/processor-module/v1/gen/reducer.ts","../document-models/processor-module/v1/gen/schema/zod.ts","../document-models/processor-module/v1/gen/utils.ts","../document-models/processor-module/v1/hooks.ts","../document-models/processor-module/v1/utils.ts","../document-models/processor-module/v1/module.ts"],"mappings":"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"}
@@ -1,2 +1,2 @@
1
- import { n as CodegenProcessor, t as codegenFactoryBuilder } from "../../factory-CweZppg6.js";
1
+ import { n as CodegenProcessor, t as codegenFactoryBuilder } from "../../factory-BBzu0pRO.js";
2
2
  export { CodegenProcessor, codegenFactoryBuilder };
@@ -1,6 +1,6 @@
1
1
  //#region processors/factory.ts
2
2
  const processorFactory = async (module) => {
3
- const { processorFactoryBuilders } = module.processorApp === "connect" ? await import("../connect-CTIucT0o.js") : await import("../switchboard-JOTFVXuj.js");
3
+ const { processorFactoryBuilders } = module.processorApp === "connect" ? await import("../connect-CTIucT0o.js") : await import("../switchboard-D69j45OO.js");
4
4
  const factories = await Promise.all(processorFactoryBuilders.map(async (buildFactory) => await buildFactory(module)));
5
5
  return async (driveHeader) => {
6
6
  const processors = [];
@@ -1,8 +1,8 @@
1
- import { t as codegenFactoryBuilder } from "./factory-CweZppg6.js";
1
+ import { t as codegenFactoryBuilder } from "./factory-BBzu0pRO.js";
2
2
  import { t as vetraReadModelFactoryBuilder } from "./factory-D8ZDOMP3.js";
3
3
  //#region processors/switchboard.ts
4
4
  const processorFactoryBuilders = [vetraReadModelFactoryBuilder, codegenFactoryBuilder];
5
5
  //#endregion
6
6
  export { processorFactoryBuilders };
7
7
 
8
- //# sourceMappingURL=switchboard-JOTFVXuj.js.map
8
+ //# sourceMappingURL=switchboard-D69j45OO.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"switchboard-JOTFVXuj.js","names":[],"sources":["../processors/switchboard.ts"],"sourcesContent":["/**\n * WARNING: DO NOT EDIT\n * This file is auto-generated and updated by codegen\n */\nimport type { ProcessorFactoryBuilder } from \"@powerhousedao/reactor-browser\";\nimport { codegenFactoryBuilder } from \"./codegen/factory.js\";\nimport { vetraReadModelFactoryBuilder } from \"./vetra-read-model/factory.js\";\n\nexport const processorFactoryBuilders: ProcessorFactoryBuilder[] = [\n vetraReadModelFactoryBuilder,\n codegenFactoryBuilder,\n];\n"],"mappings":";;;AAQA,MAAa,2BAAsD,CACjE,8BACA,sBACD"}
1
+ {"version":3,"file":"switchboard-D69j45OO.js","names":[],"sources":["../processors/switchboard.ts"],"sourcesContent":["/**\n * WARNING: DO NOT EDIT\n * This file is auto-generated and updated by codegen\n */\nimport type { ProcessorFactoryBuilder } from \"@powerhousedao/reactor-browser\";\nimport { codegenFactoryBuilder } from \"./codegen/factory.js\";\nimport { vetraReadModelFactoryBuilder } from \"./vetra-read-model/factory.js\";\n\nexport const processorFactoryBuilders: ProcessorFactoryBuilder[] = [\n vetraReadModelFactoryBuilder,\n codegenFactoryBuilder,\n];\n"],"mappings":";;;AAQA,MAAa,2BAAsD,CACjE,8BACA,sBACD"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@powerhousedao/vetra",
3
- "version": "6.0.0-dev.253",
3
+ "version": "6.0.0-dev.255",
4
4
  "license": "AGPL-3.0-only",
5
5
  "type": "module",
6
6
  "sideEffects": false,
@@ -51,12 +51,12 @@
51
51
  "change-case": "5.4.4",
52
52
  "react": "19.2.6",
53
53
  "zod": "4.3.6",
54
- "@powerhousedao/codegen": "6.0.0-dev.253",
55
- "@powerhousedao/config": "6.0.0-dev.253",
56
- "@powerhousedao/reactor-browser": "6.0.0-dev.253",
57
- "@powerhousedao/shared": "6.0.0-dev.253",
58
- "@powerhousedao/design-system": "6.0.0-dev.253",
59
- "document-model": "6.0.0-dev.253"
54
+ "@powerhousedao/config": "6.0.0-dev.255",
55
+ "@powerhousedao/codegen": "6.0.0-dev.255",
56
+ "@powerhousedao/design-system": "6.0.0-dev.255",
57
+ "@powerhousedao/reactor-browser": "6.0.0-dev.255",
58
+ "@powerhousedao/shared": "6.0.0-dev.255",
59
+ "document-model": "6.0.0-dev.255"
60
60
  },
61
61
  "devDependencies": {
62
62
  "@tailwindcss/cli": "4.2.2",
@@ -75,7 +75,7 @@
75
75
  "vite": "8.0.8",
76
76
  "vite-tsconfig-paths": "6.1.1",
77
77
  "vitest": "4.1.1",
78
- "@powerhousedao/builder-tools": "6.0.0-dev.253"
78
+ "@powerhousedao/builder-tools": "6.0.0-dev.255"
79
79
  },
80
80
  "description": "",
81
81
  "scripts": {