@powerhousedao/reactor-api 6.2.0-dev.20 → 6.2.0-dev.22
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/index.d.mts +13 -225
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +108 -407
- package/dist/index.mjs.map +1 -1
- package/dist/src/packages/vite-loader.mjs +1 -1
- package/dist/{utils-Dh9tl892.mjs → utils-BMmk8cu0.mjs} +7 -12
- package/dist/utils-BMmk8cu0.mjs.map +1 -0
- package/package.json +28 -16
- package/dist/utils-Dh9tl892.mjs.map +0 -1
package/dist/index.d.mts
CHANGED
|
@@ -42,11 +42,7 @@ interface DocumentProtectionTable {
|
|
|
42
42
|
}
|
|
43
43
|
interface DocumentPermissionDatabase {
|
|
44
44
|
DocumentPermission: DocumentPermissionTable;
|
|
45
|
-
Group: GroupTable;
|
|
46
|
-
UserGroup: UserGroupTable;
|
|
47
|
-
DocumentGroupPermission: DocumentGroupPermissionTable;
|
|
48
45
|
OperationUserPermission: OperationUserPermissionTable;
|
|
49
|
-
OperationGroupPermission: OperationGroupPermissionTable;
|
|
50
46
|
DocumentProtection: DocumentProtectionTable;
|
|
51
47
|
}
|
|
52
48
|
interface DocumentPermissionTable {
|
|
@@ -58,27 +54,6 @@ interface DocumentPermissionTable {
|
|
|
58
54
|
createdAt: Date;
|
|
59
55
|
updatedAt: Date;
|
|
60
56
|
}
|
|
61
|
-
interface GroupTable {
|
|
62
|
-
id: Generated<number>;
|
|
63
|
-
name: string;
|
|
64
|
-
description: string | null;
|
|
65
|
-
createdAt: Date;
|
|
66
|
-
updatedAt: Date;
|
|
67
|
-
}
|
|
68
|
-
interface UserGroupTable {
|
|
69
|
-
userAddress: string;
|
|
70
|
-
groupId: number;
|
|
71
|
-
createdAt: Date;
|
|
72
|
-
}
|
|
73
|
-
interface DocumentGroupPermissionTable {
|
|
74
|
-
id: Generated<number>;
|
|
75
|
-
documentId: string;
|
|
76
|
-
groupId: number;
|
|
77
|
-
permission: DocumentPermissionLevel;
|
|
78
|
-
grantedBy: string;
|
|
79
|
-
createdAt: Date;
|
|
80
|
-
updatedAt: Date;
|
|
81
|
-
}
|
|
82
57
|
interface OperationUserPermissionTable {
|
|
83
58
|
id: Generated<number>;
|
|
84
59
|
documentId: string;
|
|
@@ -87,14 +62,6 @@ interface OperationUserPermissionTable {
|
|
|
87
62
|
grantedBy: string;
|
|
88
63
|
createdAt: Date;
|
|
89
64
|
}
|
|
90
|
-
interface OperationGroupPermissionTable {
|
|
91
|
-
id: Generated<number>;
|
|
92
|
-
documentId: string;
|
|
93
|
-
operationType: string;
|
|
94
|
-
groupId: number;
|
|
95
|
-
grantedBy: string;
|
|
96
|
-
createdAt: Date;
|
|
97
|
-
}
|
|
98
65
|
type Db = Kysely<any>;
|
|
99
66
|
/**
|
|
100
67
|
* Optional factory used by callers (e.g. Switchboard) to inject a
|
|
@@ -120,21 +87,6 @@ interface DocumentPermissionEntry {
|
|
|
120
87
|
createdAt: Date;
|
|
121
88
|
updatedAt: Date;
|
|
122
89
|
}
|
|
123
|
-
interface Group {
|
|
124
|
-
id: number;
|
|
125
|
-
name: string;
|
|
126
|
-
description: string | null;
|
|
127
|
-
createdAt: Date;
|
|
128
|
-
updatedAt: Date;
|
|
129
|
-
}
|
|
130
|
-
interface DocumentGroupPermissionEntry {
|
|
131
|
-
documentId: string;
|
|
132
|
-
groupId: number;
|
|
133
|
-
permission: DocumentPermissionLevel;
|
|
134
|
-
grantedBy: string;
|
|
135
|
-
createdAt: Date;
|
|
136
|
-
updatedAt: Date;
|
|
137
|
-
}
|
|
138
90
|
interface OperationUserPermissionEntry {
|
|
139
91
|
documentId: string;
|
|
140
92
|
operationType: string;
|
|
@@ -142,13 +94,6 @@ interface OperationUserPermissionEntry {
|
|
|
142
94
|
grantedBy: string;
|
|
143
95
|
createdAt: Date;
|
|
144
96
|
}
|
|
145
|
-
interface OperationGroupPermissionEntry {
|
|
146
|
-
documentId: string;
|
|
147
|
-
operationType: string;
|
|
148
|
-
groupId: number;
|
|
149
|
-
grantedBy: string;
|
|
150
|
-
createdAt: Date;
|
|
151
|
-
}
|
|
152
97
|
/**
|
|
153
98
|
* Function type for getting parent document IDs
|
|
154
99
|
* This is injected to avoid circular dependencies with the reactor client
|
|
@@ -169,7 +114,7 @@ interface DocumentPermissionConfig {
|
|
|
169
114
|
* - ADMIN: Can manage document permissions and settings
|
|
170
115
|
*
|
|
171
116
|
* Operation permissions:
|
|
172
|
-
* - Users
|
|
117
|
+
* - Users can be granted permission to execute specific operations
|
|
173
118
|
*/
|
|
174
119
|
declare class DocumentPermissionService {
|
|
175
120
|
private readonly db;
|
|
@@ -200,54 +145,6 @@ declare class DocumentPermissionService {
|
|
|
200
145
|
* Delete all permissions for a document (used when deleting a document)
|
|
201
146
|
*/
|
|
202
147
|
deleteAllDocumentPermissions(documentId: string): Promise<void>;
|
|
203
|
-
/**
|
|
204
|
-
* Create a new group
|
|
205
|
-
*/
|
|
206
|
-
createGroup(name: string, description?: string): Promise<Group>;
|
|
207
|
-
/**
|
|
208
|
-
* Delete a group and all its associations
|
|
209
|
-
*/
|
|
210
|
-
deleteGroup(groupId: number): Promise<void>;
|
|
211
|
-
/**
|
|
212
|
-
* Get a group by ID
|
|
213
|
-
*/
|
|
214
|
-
getGroup(groupId: number): Promise<Group | null>;
|
|
215
|
-
/**
|
|
216
|
-
* List all groups
|
|
217
|
-
*/
|
|
218
|
-
listGroups(): Promise<Group[]>;
|
|
219
|
-
/**
|
|
220
|
-
* Add a user to a group
|
|
221
|
-
*/
|
|
222
|
-
addUserToGroup(userAddress: string, groupId: number): Promise<void>;
|
|
223
|
-
/**
|
|
224
|
-
* Remove a user from a group
|
|
225
|
-
*/
|
|
226
|
-
removeUserFromGroup(userAddress: string, groupId: number): Promise<void>;
|
|
227
|
-
/**
|
|
228
|
-
* Get all groups a user belongs to
|
|
229
|
-
*/
|
|
230
|
-
getUserGroups(userAddress: string): Promise<Group[]>;
|
|
231
|
-
/**
|
|
232
|
-
* Get all members of a group
|
|
233
|
-
*/
|
|
234
|
-
getGroupMembers(groupId: number): Promise<string[]>;
|
|
235
|
-
/**
|
|
236
|
-
* Grant a group permission on a document
|
|
237
|
-
*/
|
|
238
|
-
grantGroupPermission(documentId: string, groupId: number, permission: DocumentPermissionLevel, grantedBy: string): Promise<DocumentGroupPermissionEntry>;
|
|
239
|
-
/**
|
|
240
|
-
* Revoke a group's permission on a document
|
|
241
|
-
*/
|
|
242
|
-
revokeGroupPermission(documentId: string, groupId: number): Promise<void>;
|
|
243
|
-
/**
|
|
244
|
-
* Get all group permissions for a document
|
|
245
|
-
*/
|
|
246
|
-
getDocumentGroupPermissions(documentId: string): Promise<DocumentGroupPermissionEntry[]>;
|
|
247
|
-
/**
|
|
248
|
-
* Get best permission level a user has on a document via groups
|
|
249
|
-
*/
|
|
250
|
-
getUserGroupPermission(documentId: string, userAddress: string): Promise<DocumentPermissionLevel | null>;
|
|
251
148
|
/**
|
|
252
149
|
* Grant a user permission to execute an operation on a document
|
|
253
150
|
*/
|
|
@@ -256,25 +153,12 @@ declare class DocumentPermissionService {
|
|
|
256
153
|
* Revoke a user's permission to execute an operation
|
|
257
154
|
*/
|
|
258
155
|
revokeOperationPermission(documentId: string, operationType: string, userAddress: string): Promise<void>;
|
|
259
|
-
/**
|
|
260
|
-
* Grant a group permission to execute an operation on a document
|
|
261
|
-
*/
|
|
262
|
-
grantGroupOperationPermission(documentId: string, operationType: string, groupId: number, grantedBy: string): Promise<OperationGroupPermissionEntry>;
|
|
263
|
-
/**
|
|
264
|
-
* Revoke a group's permission to execute an operation
|
|
265
|
-
*/
|
|
266
|
-
revokeGroupOperationPermission(documentId: string, operationType: string, groupId: number): Promise<void>;
|
|
267
156
|
/**
|
|
268
157
|
* Get all users with permission to execute an operation
|
|
269
158
|
*/
|
|
270
159
|
getOperationUserPermissions(documentId: string, operationType: string): Promise<OperationUserPermissionEntry[]>;
|
|
271
160
|
/**
|
|
272
|
-
*
|
|
273
|
-
*/
|
|
274
|
-
getOperationGroupPermissions(documentId: string, operationType: string): Promise<OperationGroupPermissionEntry[]>;
|
|
275
|
-
/**
|
|
276
|
-
* Whether an operation-permission row exists for the user on this
|
|
277
|
-
* operation, either directly or via a group the user belongs to.
|
|
161
|
+
* Whether an operation-permission row exists for the user on this operation.
|
|
278
162
|
*/
|
|
279
163
|
hasOperationGrant(documentId: string, operationType: string, userAddress: string): Promise<boolean>;
|
|
280
164
|
/**
|
|
@@ -393,7 +277,7 @@ interface IAuthorizationService {
|
|
|
393
277
|
canWrite(documentId: CanonicalDocumentId, userAddress?: string): Promise<boolean>;
|
|
394
278
|
/**
|
|
395
279
|
* Whether the user administers the document: supreme admin, document
|
|
396
|
-
* owner, or holder of an ADMIN grant
|
|
280
|
+
* owner, or holder of an ADMIN grant.
|
|
397
281
|
*/
|
|
398
282
|
canManage(documentId: CanonicalDocumentId, userAddress?: string): Promise<boolean>;
|
|
399
283
|
canMutate(documentId: CanonicalDocumentId, operationType: string, userAddress?: string): Promise<boolean>;
|
|
@@ -565,29 +449,6 @@ type DocumentAccessInfo = {
|
|
|
565
449
|
createdAt: Date;
|
|
566
450
|
updatedAt: Date;
|
|
567
451
|
}>;
|
|
568
|
-
groupPermissions: Array<{
|
|
569
|
-
documentId: string;
|
|
570
|
-
groupId: number;
|
|
571
|
-
permission: DocumentPermissionLevel;
|
|
572
|
-
grantedBy: string;
|
|
573
|
-
createdAt: Date;
|
|
574
|
-
updatedAt: Date;
|
|
575
|
-
}>;
|
|
576
|
-
};
|
|
577
|
-
type Group$1 = {
|
|
578
|
-
id: number;
|
|
579
|
-
name: string;
|
|
580
|
-
description: string | null;
|
|
581
|
-
createdAt: Date;
|
|
582
|
-
updatedAt: Date;
|
|
583
|
-
};
|
|
584
|
-
type DocumentGroupPermission = {
|
|
585
|
-
documentId: string;
|
|
586
|
-
groupId: number;
|
|
587
|
-
permission: DocumentPermissionLevel;
|
|
588
|
-
grantedBy: string;
|
|
589
|
-
createdAt: Date;
|
|
590
|
-
updatedAt: Date;
|
|
591
452
|
};
|
|
592
453
|
type OperationUserPermission = {
|
|
593
454
|
documentId: string;
|
|
@@ -596,18 +457,10 @@ type OperationUserPermission = {
|
|
|
596
457
|
grantedBy: string;
|
|
597
458
|
createdAt: Date;
|
|
598
459
|
};
|
|
599
|
-
type OperationGroupPermission = {
|
|
600
|
-
documentId: string;
|
|
601
|
-
operationType: string;
|
|
602
|
-
groupId: number;
|
|
603
|
-
grantedBy: string;
|
|
604
|
-
createdAt: Date;
|
|
605
|
-
};
|
|
606
460
|
type OperationPermissionsInfo = {
|
|
607
461
|
documentId: string;
|
|
608
462
|
operationType: string;
|
|
609
463
|
userPermissions: OperationUserPermission[];
|
|
610
|
-
groupPermissions: OperationGroupPermission[];
|
|
611
464
|
};
|
|
612
465
|
type DocumentProtectionInfo = {
|
|
613
466
|
documentId: string;
|
|
@@ -622,8 +475,7 @@ type DocumentProtectionInfo = {
|
|
|
622
475
|
* This subgraph is conditionally registered based on the DOCUMENT_PERMISSIONS_ENABLED
|
|
623
476
|
* feature flag. When enabled, it provides GraphQL operations for:
|
|
624
477
|
* - Document permissions (grant/revoke user access)
|
|
625
|
-
* -
|
|
626
|
-
* - Group document permissions (grant/revoke group access)
|
|
478
|
+
* - Document protection and ownership
|
|
627
479
|
* - Operation-level permissions (fine-grained operation control)
|
|
628
480
|
*/
|
|
629
481
|
declare class AuthSubgraph extends BaseSubgraph {
|
|
@@ -636,6 +488,10 @@ declare class AuthSubgraph extends BaseSubgraph {
|
|
|
636
488
|
Query: {
|
|
637
489
|
documentAccess: (_parent: unknown, args: {
|
|
638
490
|
documentId: string;
|
|
491
|
+
}, ctx: {
|
|
492
|
+
user?: {
|
|
493
|
+
address: string;
|
|
494
|
+
};
|
|
639
495
|
}) => Promise<DocumentAccessInfo>;
|
|
640
496
|
userDocumentPermissions: (_parent: unknown, _args: unknown, ctx: {
|
|
641
497
|
user?: {
|
|
@@ -649,16 +505,13 @@ declare class AuthSubgraph extends BaseSubgraph {
|
|
|
649
505
|
createdAt: Date;
|
|
650
506
|
updatedAt: Date;
|
|
651
507
|
}[]>;
|
|
652
|
-
groups: () => Promise<Group$1[]>;
|
|
653
|
-
group: (_parent: unknown, args: {
|
|
654
|
-
id: number;
|
|
655
|
-
}) => Promise<Group$1 | null>;
|
|
656
|
-
userGroups: (_parent: unknown, args: {
|
|
657
|
-
userAddress: string;
|
|
658
|
-
}) => Promise<Group$1[]>;
|
|
659
508
|
operationPermissions: (_parent: unknown, args: {
|
|
660
509
|
documentId: string;
|
|
661
510
|
operationType: string;
|
|
511
|
+
}, ctx: {
|
|
512
|
+
user?: {
|
|
513
|
+
address: string;
|
|
514
|
+
};
|
|
662
515
|
}) => Promise<OperationPermissionsInfo>;
|
|
663
516
|
canExecuteOperation: (_parent: unknown, args: {
|
|
664
517
|
documentId: string;
|
|
@@ -717,38 +570,6 @@ declare class AuthSubgraph extends BaseSubgraph {
|
|
|
717
570
|
address: string;
|
|
718
571
|
};
|
|
719
572
|
}) => Promise<boolean>;
|
|
720
|
-
createGroup: (_parent: unknown, args: {
|
|
721
|
-
name: string;
|
|
722
|
-
description?: string | null;
|
|
723
|
-
}) => Promise<Group$1>;
|
|
724
|
-
deleteGroup: (_parent: unknown, args: {
|
|
725
|
-
id: number;
|
|
726
|
-
}) => Promise<boolean>;
|
|
727
|
-
addUserToGroup: (_parent: unknown, args: {
|
|
728
|
-
userAddress: string;
|
|
729
|
-
groupId: number;
|
|
730
|
-
}) => Promise<boolean>;
|
|
731
|
-
removeUserFromGroup: (_parent: unknown, args: {
|
|
732
|
-
userAddress: string;
|
|
733
|
-
groupId: number;
|
|
734
|
-
}) => Promise<boolean>;
|
|
735
|
-
grantGroupPermission: (_parent: unknown, args: {
|
|
736
|
-
documentId: string;
|
|
737
|
-
groupId: number;
|
|
738
|
-
permission: string;
|
|
739
|
-
}, ctx: {
|
|
740
|
-
user?: {
|
|
741
|
-
address: string;
|
|
742
|
-
};
|
|
743
|
-
}) => Promise<DocumentGroupPermission>;
|
|
744
|
-
revokeGroupPermission: (_parent: unknown, args: {
|
|
745
|
-
documentId: string;
|
|
746
|
-
groupId: number;
|
|
747
|
-
}, ctx: {
|
|
748
|
-
user?: {
|
|
749
|
-
address: string;
|
|
750
|
-
};
|
|
751
|
-
}) => Promise<boolean>;
|
|
752
573
|
grantOperationPermission: (_parent: unknown, args: {
|
|
753
574
|
documentId: string;
|
|
754
575
|
operationType: string;
|
|
@@ -767,39 +588,6 @@ declare class AuthSubgraph extends BaseSubgraph {
|
|
|
767
588
|
address: string;
|
|
768
589
|
};
|
|
769
590
|
}) => Promise<boolean>;
|
|
770
|
-
grantGroupOperationPermission: (_parent: unknown, args: {
|
|
771
|
-
documentId: string;
|
|
772
|
-
operationType: string;
|
|
773
|
-
groupId: number;
|
|
774
|
-
}, ctx: {
|
|
775
|
-
user?: {
|
|
776
|
-
address: string;
|
|
777
|
-
};
|
|
778
|
-
}) => Promise<OperationGroupPermission>;
|
|
779
|
-
revokeGroupOperationPermission: (_parent: unknown, args: {
|
|
780
|
-
documentId: string;
|
|
781
|
-
operationType: string;
|
|
782
|
-
groupId: number;
|
|
783
|
-
}, ctx: {
|
|
784
|
-
user?: {
|
|
785
|
-
address: string;
|
|
786
|
-
};
|
|
787
|
-
}) => Promise<boolean>;
|
|
788
|
-
};
|
|
789
|
-
Group: {
|
|
790
|
-
members: (parent: {
|
|
791
|
-
id: number;
|
|
792
|
-
}) => Promise<string[]>;
|
|
793
|
-
};
|
|
794
|
-
DocumentGroupPermission: {
|
|
795
|
-
group: (parent: {
|
|
796
|
-
groupId: number;
|
|
797
|
-
}) => Promise<Group$1>;
|
|
798
|
-
};
|
|
799
|
-
OperationGroupPermission: {
|
|
800
|
-
group: (parent: {
|
|
801
|
-
groupId: number;
|
|
802
|
-
}) => Promise<Group$1>;
|
|
803
591
|
};
|
|
804
592
|
};
|
|
805
593
|
onSetup(): Promise<void>;
|
|
@@ -3082,5 +2870,5 @@ interface DocumentModelSchemaOptions {
|
|
|
3082
2870
|
*/
|
|
3083
2871
|
declare function generateDocumentModelSchema(documentModel: DocumentModelGlobalState$1, options?: DocumentModelSchemaOptions): DocumentNode;
|
|
3084
2872
|
//#endregion
|
|
3085
|
-
export { ADMIN_USERS, API, Action, ActionContext, ActionContextInput, ActionContextInputSchema, ActionContextResolvers, ActionInput, ActionInputSchema, ActionResolvers, AddRelationshipDocument, AddRelationshipMutation, AddRelationshipMutationVariables, AnalyticsSubgraph, AuthConfig, AuthContext, AuthFetchMiddleware, AuthService, AuthSubgraph, type AuthorizationConfig, AuthorizationPolicy, AuthorizedDocumentHandle, BaseSubgraph, type CanonicalDocumentId, ChannelMeta, ChannelMetaInput, ChannelMetaInputSchema, ChannelMetaResolvers, ClientInitializerResult, Context, CreateDocumentDocument, CreateDocumentMutation, CreateDocumentMutationVariables, CreateEmptyDocumentDocument, CreateEmptyDocumentMutation, CreateEmptyDocumentMutationVariables, DateTimeScalarConfig, DbClient, DeadLetterInfo, DeadLetterInfoResolvers, DeleteDocumentDocument, DeleteDocumentMutation, DeleteDocumentMutationVariables, DeleteDocumentsDocument, DeleteDocumentsMutation, DeleteDocumentsMutationVariables, DirectiveResolverFn, DocumentChangeContext, DocumentChangeContextResolvers, DocumentChangeEvent, DocumentChangeEventResolvers, DocumentChangeType, DocumentChangeTypeSchema, DocumentChangesDocument, DocumentChangesSubscription, DocumentChangesSubscriptionVariables,
|
|
2873
|
+
export { ADMIN_USERS, API, Action, ActionContext, ActionContextInput, ActionContextInputSchema, ActionContextResolvers, ActionInput, ActionInputSchema, ActionResolvers, AddRelationshipDocument, AddRelationshipMutation, AddRelationshipMutationVariables, AnalyticsSubgraph, AuthConfig, AuthContext, AuthFetchMiddleware, AuthService, AuthSubgraph, type AuthorizationConfig, AuthorizationPolicy, AuthorizedDocumentHandle, BaseSubgraph, type CanonicalDocumentId, ChannelMeta, ChannelMetaInput, ChannelMetaInputSchema, ChannelMetaResolvers, ClientInitializerResult, Context, CreateDocumentDocument, CreateDocumentMutation, CreateDocumentMutationVariables, CreateEmptyDocumentDocument, CreateEmptyDocumentMutation, CreateEmptyDocumentMutationVariables, DateTimeScalarConfig, DbClient, DeadLetterInfo, DeadLetterInfoResolvers, DeleteDocumentDocument, DeleteDocumentMutation, DeleteDocumentMutationVariables, DeleteDocumentsDocument, DeleteDocumentsMutation, DeleteDocumentsMutationVariables, DirectiveResolverFn, DocumentChangeContext, DocumentChangeContextResolvers, DocumentChangeEvent, DocumentChangeEventResolvers, DocumentChangeType, DocumentChangeTypeSchema, DocumentChangesDocument, DocumentChangesSubscription, DocumentChangesSubscriptionVariables, DocumentModelGlobalState, DocumentModelGlobalStateResolvers, DocumentModelResultPage, DocumentModelResultPageResolvers, DocumentModelSchemaOptions, DocumentOperationsFilterInput, DocumentOperationsFilterInputSchema, DocumentPermissionConfig, DocumentPermissionDatabase, DocumentPermissionEntry, DocumentPermissionLevel, DocumentPermissionService, DocumentPermissionTable, DocumentProtectionTable, DocumentWithChildren, DocumentWithChildrenResolvers, Exact, FetchHandler, FindDocumentsDocument, FindDocumentsQuery, FindDocumentsQueryVariables, GatewayAdapterType, GatewayContextFactory, GetDocumentDocument, GetDocumentIncomingRelationshipsDocument, GetDocumentIncomingRelationshipsQuery, GetDocumentIncomingRelationshipsQueryVariables, GetDocumentModelsDocument, GetDocumentModelsQuery, GetDocumentModelsQueryVariables, GetDocumentOperationsDocument, GetDocumentOperationsQuery, GetDocumentOperationsQueryVariables, GetDocumentOutgoingRelationshipsDocument, GetDocumentOutgoingRelationshipsQuery, GetDocumentOutgoingRelationshipsQueryVariables, GetDocumentQuery, GetDocumentQueryVariables, GetDocumentWithOperationsDocument, GetDocumentWithOperationsQuery, GetDocumentWithOperationsQueryVariables, GetJobStatusDocument, GetJobStatusQuery, GetJobStatusQueryVariables, GetParentIdsFn, GqlDocument, GqlDriveDocument, GqlOperation, GqlOperationContext, GqlSigner, GqlSignerApp, GqlSignerUser, GraphQLManager, GraphqlManagerFeatureFlags, HttpAdapterSetup, HttpAdapterType, HttpDocumentModelLoader, HttpPackageLoader, HttpPackageLoaderLogger, HttpPackageLoaderOptions, type IAuthorizationService, IGatewayAdapter, IHttpAdapter, type IPackageLoader, type IPackageLoaderOptions, IPackageStorage, IReactorProcessorHostModule, ISubgraph, ImportPackageLoader, InMemoryPackageStorage, Incremental, InputMaybe, InstallPackageResult, InstalledPackageInfo, IsTypeOfResolverFn, JobChangeEvent, JobChangeEventResolvers, JobChangesDocument, JobChangesSubscription, JobChangesSubscriptionVariables, JobInfo, JobInfoResolvers, JsonObjectScalarConfig, MakeEmpty, MakeMaybe, MakeOptional, Maybe, MoveRelationshipDocument, MoveRelationshipMutation, MoveRelationshipMutationVariables, MoveRelationshipResult, MoveRelationshipResultResolvers, MutateDocumentAsyncDocument, MutateDocumentAsyncMutation, MutateDocumentAsyncMutationVariables, MutateDocumentDocument, MutateDocumentMutation, MutateDocumentMutationVariables, Mutation, MutationAddRelationshipArgs, MutationCreateDocumentArgs, MutationCreateEmptyDocumentArgs, MutationDeleteDocumentArgs, MutationDeleteDocumentsArgs, MutationMoveRelationshipArgs, MutationMutateDocumentArgs, MutationMutateDocumentAsyncArgs, MutationPushSyncEnvelopesArgs, MutationRemoveRelationshipArgs, MutationRenameDocumentArgs, MutationResolvers, MutationSetPreferredEditorArgs, MutationTouchChannelArgs, NextResolverFn, OperationContext, OperationContextInput, OperationContextInputSchema, OperationContextResolvers, OperationInput, OperationInputSchema, OperationUserPermissionEntry, OperationUserPermissionTable, OperationWithContext, OperationWithContextInput, OperationWithContextInputSchema, OperationWithContextResolvers, OperationsFilterInput, OperationsFilterInputSchema, PackageManagementService, PackageManagementServiceOptions, PackageManager, PackagesSubgraph, type PackagesSubgraphArgs, PagingInput, PagingInputSchema, type ParsedDriveUrl, PgliteFactory, PhDocument, PhDocumentFieldsFragment, PhDocumentFieldsFragmentDoc, PhDocumentOperationsArgs, PhDocumentResolvers, PhDocumentResultPage, PhDocumentResultPageResolvers, PollSyncEnvelopesDocument, PollSyncEnvelopesQuery, PollSyncEnvelopesQueryVariables, PollSyncEnvelopesResult, PollSyncEnvelopesResultResolvers, Processor, ProcessorDriveFactory, ProcessorFactoryBuilder, PropagationMode, PropagationModeSchema, PushSyncEnvelopesDocument, PushSyncEnvelopesMutation, PushSyncEnvelopesMutationVariables, Query, QueryDocumentArgs, QueryDocumentIncomingRelationshipsArgs, QueryDocumentModelsArgs, QueryDocumentOperationsArgs, QueryDocumentOutgoingRelationshipsArgs, QueryFindDocumentsArgs, QueryJobStatusArgs, QueryPollSyncEnvelopesArgs, QueryResolvers, ReactorModule, ReactorOperation, ReactorOperationResolvers, ReactorOperationResultPage, ReactorOperationResultPageResolvers, ReactorSigner, ReactorSignerApp, ReactorSignerAppInput, ReactorSignerAppInputSchema, ReactorSignerAppResolvers, ReactorSignerInput, ReactorSignerInputSchema, ReactorSignerResolvers, ReactorSignerUser, ReactorSignerUserInput, ReactorSignerUserInputSchema, ReactorSignerUserResolvers, ReactorSubgraph, ReadinessGate, RemoteCursor, RemoteCursorInput, RemoteCursorInputSchema, RemoteCursorResolvers, RemoteFilterInput, RemoteFilterInputSchema, RemoveRelationshipDocument, RemoveRelationshipMutation, RemoveRelationshipMutationVariables, RenameDocumentDocument, RenameDocumentMutation, RenameDocumentMutationVariables, Requester, RequireFields, Resolver, ResolverFn, ResolverTypeWrapper, ResolverWithResolve, Resolvers, ResolversObject, ResolversParentTypes, ResolversTypes, Revision, RevisionResolvers, Scalars, Sdk, SearchFilterInput, SearchFilterInputSchema, SetPreferredEditorDocument, SetPreferredEditorMutation, SetPreferredEditorMutationVariables, SubgraphArgs, SubgraphClass, SubgraphDefinition, Subscription, SubscriptionDocumentChangesArgs, SubscriptionJobChangesArgs, SubscriptionObject, SubscriptionResolveFn, SubscriptionResolver, SubscriptionResolverObject, SubscriptionResolvers, SubscriptionSubscribeFn, SubscriptionSubscriberObject, SyncEnvelope, SyncEnvelopeInput, SyncEnvelopeInputSchema, SyncEnvelopeResolvers, SyncEnvelopeType, SyncEnvelopeTypeSchema, SystemSubgraph, TlsOptions, TouchChannelDocument, TouchChannelInput, TouchChannelInputSchema, TouchChannelMutation, TouchChannelMutationVariables, TouchChannelResult, TouchChannelResultResolvers, TypeResolveFn, User, ViewFilterInput, ViewFilterInputSchema, WithIndex, WsContextFactory, WsDisposer, assertAuthRequiredForDocumentPermissions, assertSkipCredentialVerificationAllowed, buildGraphQlDocument, buildGraphQlDriveDocument, buildGraphqlOperation, buildGraphqlOperations, buildSubgraphSchemaModule, createAuthFetchMiddleware, createGatewayAdapter, createHttpAdapter, createMergedSchema, createReactorGraphQLClient, createSchema, definedNonNullAnySchema, driveIdFromUrl, extractSubgraphsFromModule, generateDocumentModelSchema, getAuthContext, getDbClient, getDocumentModelSchemaName, getDocumentModelTypeDefs, getGitHash, getGitUrl, getSdk, getUniqueDocumentModels, getVersion, initAnalyticsStoreSql, initializeAndStartAPI, isDefinedNonNullAny, isExpectedLoaderMiss, isSubgraphClass, parseDriveUrl, renderGraphqlPlayground };
|
|
3086
2874
|
//# sourceMappingURL=index.d.mts.map
|