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

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 (34) 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/index-BdmD5tsW.d.ts +393 -0
  13. package/dist/index-BdmD5tsW.d.ts.map +1 -0
  14. package/dist/index-BfK0fsx4.d.ts +424 -0
  15. package/dist/index-BfK0fsx4.d.ts.map +1 -0
  16. package/dist/index.d.ts +136 -1
  17. package/dist/index.d.ts.map +1 -1
  18. package/dist/module-BYEvqA47.d.ts +357 -0
  19. package/dist/module-BYEvqA47.d.ts.map +1 -0
  20. package/dist/module-CCqD26Hf.d.ts +478 -0
  21. package/dist/module-CCqD26Hf.d.ts.map +1 -0
  22. package/dist/module-CpP8D2Hl.d.ts +437 -0
  23. package/dist/module-CpP8D2Hl.d.ts.map +1 -0
  24. package/package.json +8 -8
  25. package/dist/module-BoX1rWiq.d.ts +0 -6
  26. package/dist/module-BoX1rWiq.d.ts.map +0 -1
  27. package/dist/module-CG6K37P8.d.ts +0 -6
  28. package/dist/module-CG6K37P8.d.ts.map +0 -1
  29. package/dist/module-Cr-9knz_.d.ts +0 -6
  30. package/dist/module-Cr-9knz_.d.ts.map +0 -1
  31. package/dist/module-DhhQLYnQ.d.ts +0 -6
  32. package/dist/module-DhhQLYnQ.d.ts.map +0 -1
  33. package/dist/module-J-kGIl1E.d.ts +0 -6
  34. package/dist/module-J-kGIl1E.d.ts.map +0 -1
@@ -0,0 +1,357 @@
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/subgraph-module/v1/gen/base-operations/actions.d.ts
8
+ type SetSubgraphNameAction = Action & {
9
+ type: "SET_SUBGRAPH_NAME";
10
+ input: SetSubgraphNameInput;
11
+ };
12
+ type SetSubgraphStatusAction = Action & {
13
+ type: "SET_SUBGRAPH_STATUS";
14
+ input: SetSubgraphStatusInput;
15
+ };
16
+ type SubgraphModuleBaseOperationsAction = SetSubgraphNameAction | SetSubgraphStatusAction;
17
+ //#endregion
18
+ //#region document-models/subgraph-module/v1/gen/actions.d.ts
19
+ type SubgraphModuleAction = SubgraphModuleBaseOperationsAction;
20
+ //#endregion
21
+ //#region document-models/subgraph-module/v1/gen/schema/types.d.ts
22
+ type Maybe<T> = T | null | undefined;
23
+ type InputMaybe<T> = T | null | undefined;
24
+ type Exact<T extends {
25
+ [key: string]: unknown;
26
+ }> = { [K in keyof T]: T[K] };
27
+ type MakeOptional<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]?: Maybe<T[SubKey]> };
28
+ type MakeMaybe<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]: Maybe<T[SubKey]> };
29
+ type MakeEmpty<T extends {
30
+ [key: string]: unknown;
31
+ }, K extends keyof T> = { [_ in K]?: never };
32
+ type Incremental<T> = T | { [P in keyof T]?: P extends " $fragmentName" | "__typename" ? T[P] : never };
33
+ /** All built-in and custom scalars, mapped to their actual values */
34
+ type Scalars = {
35
+ ID: {
36
+ input: string;
37
+ output: string;
38
+ };
39
+ String: {
40
+ input: string;
41
+ output: string;
42
+ };
43
+ Boolean: {
44
+ input: boolean;
45
+ output: boolean;
46
+ };
47
+ Int: {
48
+ input: number;
49
+ output: number;
50
+ };
51
+ Float: {
52
+ input: number;
53
+ output: number;
54
+ };
55
+ Address: {
56
+ input: `${string}:0x${string}`;
57
+ output: `${string}:0x${string}`;
58
+ };
59
+ Amount: {
60
+ input: {
61
+ unit?: string;
62
+ value?: number;
63
+ };
64
+ output: {
65
+ unit?: string;
66
+ value?: number;
67
+ };
68
+ };
69
+ Amount_Crypto: {
70
+ input: {
71
+ unit: string;
72
+ value: string;
73
+ };
74
+ output: {
75
+ unit: string;
76
+ value: string;
77
+ };
78
+ };
79
+ Amount_Currency: {
80
+ input: {
81
+ unit: string;
82
+ value: string;
83
+ };
84
+ output: {
85
+ unit: string;
86
+ value: string;
87
+ };
88
+ };
89
+ Amount_Fiat: {
90
+ input: {
91
+ unit: string;
92
+ value: number;
93
+ };
94
+ output: {
95
+ unit: string;
96
+ value: number;
97
+ };
98
+ };
99
+ Amount_Money: {
100
+ input: number;
101
+ output: number;
102
+ };
103
+ Amount_Percentage: {
104
+ input: number;
105
+ output: number;
106
+ };
107
+ Amount_Tokens: {
108
+ input: number;
109
+ output: number;
110
+ };
111
+ Attachment: {
112
+ input: string;
113
+ output: string;
114
+ };
115
+ Currency: {
116
+ input: string;
117
+ output: string;
118
+ };
119
+ Date: {
120
+ input: string;
121
+ output: string;
122
+ };
123
+ DateTime: {
124
+ input: string;
125
+ output: string;
126
+ };
127
+ EmailAddress: {
128
+ input: string;
129
+ output: string;
130
+ };
131
+ EthereumAddress: {
132
+ input: string;
133
+ output: string;
134
+ };
135
+ OID: {
136
+ input: string;
137
+ output: string;
138
+ };
139
+ OLabel: {
140
+ input: string;
141
+ output: string;
142
+ };
143
+ PHID: {
144
+ input: string;
145
+ output: string;
146
+ };
147
+ URL: {
148
+ input: string;
149
+ output: string;
150
+ };
151
+ Unknown: {
152
+ input: unknown;
153
+ output: unknown;
154
+ };
155
+ Upload: {
156
+ input: File;
157
+ output: File;
158
+ };
159
+ };
160
+ type SetSubgraphNameInput = {
161
+ name: Scalars["String"]["input"];
162
+ };
163
+ type SetSubgraphStatusInput = {
164
+ status: StatusType;
165
+ };
166
+ /**
167
+ * Lifecycle status of a module definition.
168
+ * - DRAFT: still being edited; codegen does not run.
169
+ * - CONFIRMED: locked in; codegen produces the corresponding scaffold.
170
+ */
171
+ type StatusType = "CONFIRMED" | "DRAFT";
172
+ /**
173
+ * Configuration for a GraphQL subgraph contributed by the package. The subgraph
174
+ * is served by Switchboard and stitched into the unified Powerhouse API.
175
+ */
176
+ type SubgraphModuleState = {
177
+ /** Display name of the subgraph. Also determines the generated folder name under `subgraphs/` and the route segment Switchboard mounts it at. */name: Scalars["String"]["output"]; /** Lifecycle status. While DRAFT the subgraph definition is editable and codegen is skipped; switching to CONFIRMED triggers scaffold generation. */
178
+ status: StatusType;
179
+ };
180
+ //#endregion
181
+ //#region document-models/subgraph-module/v1/gen/types.d.ts
182
+ type SubgraphModuleLocalState = Record<PropertyKey, never>;
183
+ type SubgraphModulePHState = PHBaseState & {
184
+ global: SubgraphModuleState;
185
+ local: SubgraphModuleLocalState;
186
+ };
187
+ type SubgraphModuleDocument = PHDocument<SubgraphModulePHState>;
188
+ //#endregion
189
+ //#region document-models/subgraph-module/v1/actions.d.ts
190
+ /** Actions for the SubgraphModule document model */
191
+ declare const actions: {
192
+ setSubgraphName: (input: SetSubgraphNameInput) => SetSubgraphNameAction;
193
+ setSubgraphStatus: (input: SetSubgraphStatusInput) => SetSubgraphStatusAction;
194
+ setName: (name: string | {
195
+ name: string;
196
+ }) => document_model0.SetNameAction;
197
+ setPreferredEditor: (input: string | null | {
198
+ preferredEditor: string | null;
199
+ }) => document_model0.SetPreferredEditorAction;
200
+ undo: (count?: number, scope?: string) => document_model0.UndoAction;
201
+ redo: (count?: number, scope?: string) => document_model0.RedoAction;
202
+ prune: (start?: number, end?: number, scope?: string) => document_model0.SchemaPruneAction;
203
+ loadState: <TState extends document_model0.PHBaseState = document_model0.PHBaseState>(state: TState & {
204
+ name: string;
205
+ }, operations: number) => document_model0.LoadStateAction;
206
+ noop: (scope?: string) => document_model0.NOOPAction;
207
+ };
208
+ //#endregion
209
+ //#region document-models/subgraph-module/v1/gen/base-operations/operations.d.ts
210
+ interface SubgraphModuleBaseOperationsOperations {
211
+ setSubgraphNameOperation: (state: SubgraphModuleState, action: SetSubgraphNameAction, dispatch?: SignalDispatch) => void;
212
+ setSubgraphStatusOperation: (state: SubgraphModuleState, action: SetSubgraphStatusAction, dispatch?: SignalDispatch) => void;
213
+ }
214
+ //#endregion
215
+ //#region document-models/subgraph-module/v1/gen/controller.d.ts
216
+ declare const SubgraphModuleController: new (initialDocument?: document_model0.PHDocument<SubgraphModulePHState> | undefined) => PHDocumentController<SubgraphModulePHState> & document_model0.ActionMap<SubgraphModuleBaseOperationsAction, PHDocumentController<SubgraphModulePHState>>;
217
+ declare namespace creators_d_exports {
218
+ export { setSubgraphName, setSubgraphStatus };
219
+ }
220
+ declare const setSubgraphName: (input: SetSubgraphNameInput) => SetSubgraphNameAction;
221
+ declare const setSubgraphStatus: (input: SetSubgraphStatusInput) => SetSubgraphStatusAction;
222
+ //#endregion
223
+ //#region document-models/subgraph-module/v1/gen/document-model.d.ts
224
+ declare const documentModel: DocumentModelGlobalState;
225
+ //#endregion
226
+ //#region document-models/subgraph-module/v1/gen/document-schema.d.ts
227
+ /** Schema for validating the header object of a SubgraphModule document */
228
+ declare const SubgraphModuleDocumentHeaderSchema: z.ZodObject<{
229
+ id: z.ZodString;
230
+ name: z.ZodString;
231
+ createdAtUtcIso: z.ZodString;
232
+ lastModifiedAtUtcIso: z.ZodString;
233
+ documentType: z.ZodLiteral<"powerhouse/subgraph">;
234
+ }, z.core.$strip>;
235
+ /** Schema for validating the state object of a SubgraphModule document */
236
+ declare const SubgraphModulePHStateSchema: z.ZodObject<{
237
+ global: z.ZodObject<Required<{
238
+ name: z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>;
239
+ status: z.ZodType<StatusType, unknown, z.core.$ZodTypeInternals<StatusType, unknown>>;
240
+ }>, z.core.$strip>;
241
+ }, z.core.$strip>;
242
+ declare const SubgraphModuleDocumentSchema: z.ZodObject<{
243
+ header: z.ZodObject<{
244
+ id: z.ZodString;
245
+ name: z.ZodString;
246
+ createdAtUtcIso: z.ZodString;
247
+ lastModifiedAtUtcIso: z.ZodString;
248
+ documentType: z.ZodLiteral<"powerhouse/subgraph">;
249
+ }, z.core.$strip>;
250
+ state: z.ZodObject<{
251
+ global: z.ZodObject<Required<{
252
+ name: z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>;
253
+ status: z.ZodType<StatusType, unknown, z.core.$ZodTypeInternals<StatusType, unknown>>;
254
+ }>, z.core.$strip>;
255
+ }, z.core.$strip>;
256
+ initialState: z.ZodObject<{
257
+ global: z.ZodObject<Required<{
258
+ name: z.ZodType<string, unknown, z.core.$ZodTypeInternals<string, unknown>>;
259
+ status: z.ZodType<StatusType, unknown, z.core.$ZodTypeInternals<StatusType, unknown>>;
260
+ }>, z.core.$strip>;
261
+ }, z.core.$strip>;
262
+ }, z.core.$strip>;
263
+ /** Simple helper function to check if a state object is a SubgraphModule document state object */
264
+ declare function isSubgraphModuleState(state: unknown): state is SubgraphModulePHState;
265
+ /** Simple helper function to assert that a document state object is a SubgraphModule document state object */
266
+ declare function assertIsSubgraphModuleState(state: unknown): asserts state is SubgraphModulePHState;
267
+ /** Simple helper function to check if a document is a SubgraphModule document */
268
+ declare function isSubgraphModuleDocument(document: unknown): document is SubgraphModuleDocument;
269
+ /** Simple helper function to assert that a document is a SubgraphModule document */
270
+ declare function assertIsSubgraphModuleDocument(document: unknown): asserts document is SubgraphModuleDocument;
271
+ //#endregion
272
+ //#region document-models/subgraph-module/v1/gen/document-type.d.ts
273
+ /**
274
+ * WARNING: DO NOT EDIT
275
+ * This file is auto-generated and updated by codegen
276
+ */
277
+ declare const subgraphModuleDocumentType = "powerhouse/subgraph";
278
+ //#endregion
279
+ //#region document-models/subgraph-module/v1/gen/ph-factories.d.ts
280
+ declare function defaultGlobalState(): SubgraphModuleState;
281
+ declare function defaultLocalState(): SubgraphModuleLocalState;
282
+ declare function defaultPHState(): SubgraphModulePHState;
283
+ declare function createState$1(baseState?: Partial<PHBaseState>, globalState?: Partial<SubgraphModuleState>, localState?: Partial<SubgraphModuleLocalState>): SubgraphModulePHState;
284
+ /**
285
+ * Creates a SubgraphModuleDocument with custom global and local state
286
+ * This properly handles the PHBaseState requirements while allowing
287
+ * document-specific state to be set.
288
+ */
289
+ declare function createSubgraphModuleDocument(state?: Partial<{
290
+ auth?: Partial<PHAuthState>;
291
+ document?: Partial<PHDocumentState>;
292
+ global?: Partial<SubgraphModuleState>;
293
+ local?: Partial<SubgraphModuleLocalState>;
294
+ }>): SubgraphModuleDocument;
295
+ //#endregion
296
+ //#region document-models/subgraph-module/v1/gen/reducer.d.ts
297
+ declare const reducer: Reducer<SubgraphModulePHState>;
298
+ //#endregion
299
+ //#region document-models/subgraph-module/v1/gen/schema/zod.d.ts
300
+ type Properties<T> = Required<{ [K in keyof T]: z$1.ZodType<T[K]> }>;
301
+ type definedNonNullAny = {};
302
+ declare const isDefinedNonNullAny: (v: any) => v is definedNonNullAny;
303
+ declare const definedNonNullAnySchema: z$1.ZodAny & z$1.ZodType<definedNonNullAny, any, z$1.core.$ZodTypeInternals<definedNonNullAny, any>>;
304
+ declare const StatusTypeSchema: z$1.ZodEnum<{
305
+ CONFIRMED: "CONFIRMED";
306
+ DRAFT: "DRAFT";
307
+ }>;
308
+ declare function SetSubgraphNameInputSchema(): z$1.ZodObject<Properties<SetSubgraphNameInput>>;
309
+ declare function SetSubgraphStatusInputSchema(): z$1.ZodObject<Properties<SetSubgraphStatusInput>>;
310
+ declare function SubgraphModuleStateSchema(): z$1.ZodObject<Properties<SubgraphModuleState>>;
311
+ //#endregion
312
+ //#region document-models/subgraph-module/v1/gen/utils.d.ts
313
+ declare const initialGlobalState: SubgraphModuleState;
314
+ declare const initialLocalState: SubgraphModuleLocalState;
315
+ //#endregion
316
+ //#region document-models/subgraph-module/v1/hooks.d.ts
317
+ /** Hook to get a SubgraphModule document by its id */
318
+ declare function useSubgraphModuleDocumentById(documentId: string | null | undefined): [SubgraphModuleDocument, DocumentDispatch<SubgraphModuleAction>] | [undefined, undefined];
319
+ /** Hook to get the selected SubgraphModule document */
320
+ declare function useSelectedSubgraphModuleDocument(): [SubgraphModuleDocument, DocumentDispatch<SubgraphModuleAction>];
321
+ /** Hook to get all SubgraphModule documents in the selected drive */
322
+ declare function useSubgraphModuleDocumentsInSelectedDrive(): SubgraphModuleDocument[] | undefined;
323
+ /** Hook to get all SubgraphModule documents in the selected folder */
324
+ declare function useSubgraphModuleDocumentsInSelectedFolder(): SubgraphModuleDocument[] | undefined;
325
+ //#endregion
326
+ //#region document-models/subgraph-module/v1/utils.d.ts
327
+ /** Utils for the SubgraphModule document model */
328
+ declare const utils: DocumentModelUtils<SubgraphModulePHState>;
329
+ //#endregion
330
+ //#region document-models/subgraph-module/v1/module.d.ts
331
+ /** Document model module for the SubgraphModule document type */
332
+ declare const SubgraphModule: {
333
+ readonly version: 1;
334
+ readonly reducer: document_model0.Reducer<SubgraphModulePHState>;
335
+ readonly actions: {
336
+ setSubgraphName: (input: SetSubgraphNameInput) => SetSubgraphNameAction;
337
+ setSubgraphStatus: (input: SetSubgraphStatusInput) => SetSubgraphStatusAction;
338
+ setName: (name: string | {
339
+ name: string;
340
+ }) => document_model0.SetNameAction;
341
+ setPreferredEditor: (input: string | null | {
342
+ preferredEditor: string | null;
343
+ }) => document_model0.SetPreferredEditorAction;
344
+ undo: (count?: number, scope?: string) => document_model0.UndoAction;
345
+ redo: (count?: number, scope?: string) => document_model0.RedoAction;
346
+ prune: (start?: number, end?: number, scope?: string) => document_model0.SchemaPruneAction;
347
+ loadState: <TState extends document_model0.PHBaseState = document_model0.PHBaseState>(state: TState & {
348
+ name: string;
349
+ }, operations: number) => document_model0.LoadStateAction;
350
+ noop: (scope?: string) => document_model0.NOOPAction;
351
+ };
352
+ readonly utils: document_model0.DocumentModelUtils<SubgraphModulePHState>;
353
+ readonly documentModel: document_model0.DocumentModelPHState;
354
+ };
355
+ //#endregion
356
+ export { SetSubgraphStatusAction as $, creators_d_exports as A, Incremental as B, SubgraphModuleDocumentSchema as C, isSubgraphModuleDocument as D, assertIsSubgraphModuleState as E, actions as F, Maybe as G, MakeEmpty as H, SubgraphModuleDocument as I, SetSubgraphStatusInput as J, Scalars as K, SubgraphModuleLocalState as L, setSubgraphStatus as M, SubgraphModuleController as N, isSubgraphModuleState as O, SubgraphModuleBaseOperationsOperations as P, SetSubgraphNameAction as Q, SubgraphModulePHState as R, SubgraphModuleDocumentHeaderSchema as S, assertIsSubgraphModuleDocument as T, MakeMaybe as U, InputMaybe as V, MakeOptional as W, SubgraphModuleState as X, StatusType as Y, SubgraphModuleAction as Z, createSubgraphModuleDocument as _, useSubgraphModuleDocumentsInSelectedDrive as a, defaultPHState as b, initialLocalState as c, StatusTypeSchema as d, SubgraphModuleBaseOperationsAction as et, SubgraphModuleStateSchema as f, createState$1 as g, reducer as h, useSubgraphModuleDocumentById as i, setSubgraphName as j, documentModel as k, SetSubgraphNameInputSchema as l, isDefinedNonNullAny as m, utils as n, useSubgraphModuleDocumentsInSelectedFolder as o, definedNonNullAnySchema as p, SetSubgraphNameInput as q, useSelectedSubgraphModuleDocument as r, initialGlobalState as s, SubgraphModule as t, SetSubgraphStatusInputSchema as u, defaultGlobalState as v, SubgraphModulePHStateSchema as w, subgraphModuleDocumentType as x, defaultLocalState as y, Exact as z };
357
+ //# sourceMappingURL=module-BYEvqA47.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"module-BYEvqA47.d.ts","names":[],"sources":["../document-models/subgraph-module/v1/gen/base-operations/actions.ts","../document-models/subgraph-module/v1/gen/actions.ts","../document-models/subgraph-module/v1/gen/schema/types.ts","../document-models/subgraph-module/v1/gen/types.ts","../document-models/subgraph-module/v1/actions.ts","../document-models/subgraph-module/v1/gen/base-operations/operations.ts","../document-models/subgraph-module/v1/gen/controller.ts","../document-models/subgraph-module/v1/gen/base-operations/creators.ts","../document-models/subgraph-module/v1/gen/document-model.ts","../document-models/subgraph-module/v1/gen/document-schema.ts","../document-models/subgraph-module/v1/gen/document-type.ts","../document-models/subgraph-module/v1/gen/ph-factories.ts","../document-models/subgraph-module/v1/gen/reducer.ts","../document-models/subgraph-module/v1/gen/schema/zod.ts","../document-models/subgraph-module/v1/gen/utils.ts","../document-models/subgraph-module/v1/hooks.ts","../document-models/subgraph-module/v1/utils.ts","../document-models/subgraph-module/v1/module.ts"],"mappings":"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"}