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