@memberjunction/graphql-dataprovider 3.4.0 → 4.0.0

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.cts CHANGED
@@ -1,6 +1,6 @@
1
1
  import { GraphQLClient } from 'graphql-request';
2
2
  export { gql } from 'graphql-request';
3
- import { ProviderConfigDataBase, ProviderBase, IEntityDataProvider, IMetadataProvider, IRunReportProvider, UserInfo, RunReportParams, RunReportResult, RunQueryParams, RunQueryResult, RunQueryWithCacheCheckParams, RunQueriesWithCacheCheckResponse, RunViewParams, RunViewResult, RunViewWithCacheCheckParams, RunViewsWithCacheCheckResponse, EntityInfo, ProviderType, CompositeKey, RecordChange, RecordDependency, KeyValuePair, PotentialDuplicateRequest, PotentialDuplicateResponse, RecordMergeRequest, EntityMergeOptions, RecordMergeResult, BaseEntity, EntitySaveOptions, EntityDeleteOptions, DatasetItemFilterType, DatasetResultType, DatasetStatusResultType, TransactionGroupBase, EntityRecordNameInput, EntityRecordNameResult, ILocalStorageProvider, TransactionResult } from '@memberjunction/core';
3
+ import { ProviderBase, IEntityDataProvider, IMetadataProvider, IRunReportProvider, ProviderConfigDataBase, UserInfo, RunReportParams, RunReportResult, RunQueryParams, RunQueryResult, RunQueryWithCacheCheckParams, RunQueriesWithCacheCheckResponse, RunViewParams, RunViewResult, RunViewWithCacheCheckParams, RunViewsWithCacheCheckResponse, EntityInfo, ProviderType, CompositeKey, RecordChange, RecordDependency, KeyValuePair, PotentialDuplicateRequest, PotentialDuplicateResponse, RecordMergeRequest, EntityMergeOptions, RecordMergeResult, BaseEntity, EntitySaveOptions, EntityDeleteOptions, DatasetItemFilterType, DatasetResultType, DatasetStatusResultType, TransactionGroupBase, EntityRecordNameInput, EntityRecordNameResult, ILocalStorageProvider, TransactionResult } from '@memberjunction/core';
4
4
  import { UserViewEntityExtended } from '@memberjunction/core-entities';
5
5
  import { Observable } from 'rxjs';
6
6
  import { ExecuteAgentParams, ExecuteAgentResult } from '@memberjunction/ai-core-plus';
@@ -2971,6 +2971,114 @@ declare class GraphQLComponentRegistryClient {
2971
2971
  SendComponentFeedback(params: ComponentFeedbackParams): Promise<ComponentFeedbackResponse>;
2972
2972
  }
2973
2973
 
2974
+ /**
2975
+ * Progress update received during label creation.
2976
+ */
2977
+ interface CreateVersionLabelProgress {
2978
+ /** Current lifecycle step */
2979
+ Step: 'initializing' | 'walking_dependencies' | 'capturing_snapshots' | 'finalizing';
2980
+ /** Human-readable description of what's happening */
2981
+ Message: string;
2982
+ /** Estimated completion percentage (0–100) */
2983
+ Percentage: number;
2984
+ /** Number of records processed so far */
2985
+ RecordsProcessed?: number;
2986
+ /** Total records to process */
2987
+ TotalRecords?: number;
2988
+ /** Entity currently being processed */
2989
+ CurrentEntity?: string;
2990
+ }
2991
+ /**
2992
+ * Parameters for creating a version label via the server-side VersionHistoryEngine.
2993
+ */
2994
+ interface CreateVersionLabelParams {
2995
+ /** Human-readable name */
2996
+ Name: string;
2997
+ /** Optional longer description */
2998
+ Description?: string;
2999
+ /** Scope of the label: System, Entity, or Record (default: Record) */
3000
+ Scope?: 'System' | 'Entity' | 'Record';
3001
+ /** The target entity name (required for Entity/Record scope) */
3002
+ EntityName?: string;
3003
+ /** The record's primary key pairs (required for Record scope). Key = field name, Value = field value. */
3004
+ RecordKeys?: Array<{
3005
+ Key: string;
3006
+ Value: string;
3007
+ }>;
3008
+ /** Optional parent label ID for grouping */
3009
+ ParentID?: string;
3010
+ /** Optional external system reference */
3011
+ ExternalSystemID?: string;
3012
+ /** Whether to include dependent records when scope is Record (default: true) */
3013
+ IncludeDependencies?: boolean;
3014
+ /** Maximum depth of dependency graph traversal */
3015
+ MaxDepth?: number;
3016
+ /** Entity names to exclude from dependency traversal */
3017
+ ExcludeEntities?: string[];
3018
+ /**
3019
+ * Optional callback invoked with progress updates during label creation.
3020
+ * Requires an active PushStatusUpdates subscription (handled automatically).
3021
+ */
3022
+ OnProgress?: (progress: CreateVersionLabelProgress) => void;
3023
+ }
3024
+ /**
3025
+ * Result returned from the CreateVersionLabel mutation.
3026
+ */
3027
+ interface CreateVersionLabelResult {
3028
+ Success: boolean;
3029
+ LabelID?: string;
3030
+ LabelName?: string;
3031
+ ItemsCaptured?: number;
3032
+ SyntheticSnapshotsCreated?: number;
3033
+ Error?: string;
3034
+ CaptureErrors?: Array<{
3035
+ EntityName: string;
3036
+ RecordID: string;
3037
+ ErrorMessage: string;
3038
+ }>;
3039
+ }
3040
+ /**
3041
+ * Client for executing Version History operations through GraphQL.
3042
+ *
3043
+ * This class provides an easy way to create version labels with proper
3044
+ * server-side snapshot capture from a client application.
3045
+ *
3046
+ * @example
3047
+ * ```typescript
3048
+ * const vhClient = new GraphQLVersionHistoryClient(graphQLProvider);
3049
+ *
3050
+ * const result = await vhClient.CreateLabel({
3051
+ * Name: 'Before Refactor',
3052
+ * Scope: 'Record',
3053
+ * EntityName: 'AI Prompts',
3054
+ * RecordKeys: [{ Key: 'ID', Value: recordId }],
3055
+ * IncludeDependencies: true,
3056
+ * });
3057
+ *
3058
+ * if (result.Success) {
3059
+ * console.log(`Created label ${result.LabelID} with ${result.ItemsCaptured} items`);
3060
+ * }
3061
+ * ```
3062
+ */
3063
+ declare class GraphQLVersionHistoryClient {
3064
+ private _dataProvider;
3065
+ constructor(dataProvider: GraphQLDataProvider);
3066
+ /**
3067
+ * Create a version label with full server-side snapshot capture.
3068
+ *
3069
+ * This invokes the VersionHistoryEngine on the server which:
3070
+ * 1. Creates the VersionLabel record
3071
+ * 2. Captures snapshots (VersionLabelItems) based on scope
3072
+ * 3. Updates the label with item count and duration metrics
3073
+ *
3074
+ * If `params.OnProgress` is provided, subscribes to PushStatusUpdates
3075
+ * for real-time progress during the operation.
3076
+ */
3077
+ CreateLabel(params: CreateVersionLabelParams): Promise<CreateVersionLabelResult>;
3078
+ private buildInput;
3079
+ private processResult;
3080
+ }
3081
+
2974
3082
  /**
2975
3083
  * Client for file storage operations through GraphQL.
2976
3084
  * This class provides an easy way to interact with file storage accounts from a client application.
@@ -3360,4 +3468,6 @@ declare class BrowserIndexedDBStorageProvider extends BrowserStorageProviderBase
3360
3468
  GetCategoryKeys(category: string): Promise<string[]>;
3361
3469
  }
3362
3470
 
3363
- export { type AccountSearchResult, ActionItemInput, ActionItemOutput, BrowserIndexedDBStorageProvider, BrowserStorageProviderBase, type ComponentDependencyTree, type ComponentSpecWithHash, type CopyBetweenAccountsResult, type CreateAPIKeyParams, type CreateAPIKeyResult, type CreatePreAuthUploadUrlResult, type CreateQueryInput, type CreateQueryResult, type DeleteQueryOptionsInput, type DeleteQueryResult, type EmbedTextParams, type EmbedTextResult, type ExecuteSimplePromptParams, FieldMapper, type FileSearchOptions, type FileSearchResult, GetDataOutput, type GetQueryDataByNameSystemUserInput, type GetQueryDataSystemUserInput, type GetRegistryComponentParams, GraphQLAIClient, GraphQLActionClient, GraphQLComponentRegistryClient, GraphQLDataProvider, GraphQLEncryptionClient, GraphQLFileStorageClient, GraphQLProviderConfigData, GraphQLSystemUserClient, GraphQLTestingClient, GraphQLTransactionGroup, type MJ_MetadataDB, type QueryEntity, type QueryField, type QueryParameter, type QueryPermission, type QueryPermissionInput, type RegistryComponentSearchResult, type RevokeAPIKeyResult, RoleInput, RolesAndUsersInput, type RunAIPromptParams, type RunAIPromptResult, type RunDynamicViewSystemUserInput, type RunQuerySystemUserResult, type RunTestParams, type RunTestResult, type RunTestSuiteParams, type RunTestSuiteResult, type RunViewByIDSystemUserInput, type RunViewByNameSystemUserInput, type RunViewSystemUserInput, type RunViewSystemUserResult, type RunViewSystemUserResultRow, type SearchAcrossAccountsResult, type SearchRegistryComponentsParams, type SimplePromptResult, SimpleRemoteEntity, SimpleRemoteEntityField, SimpleRemoteEntityOutput, type StorageListResult, type StorageObjectMetadata, SyncDataAction, SyncDataResult, SyncRolesAndUsersResult, type TestExecutionProgress, type UpdateQueryInput, type UpdateQueryResult, UserInput, setupGraphQLClient };
3471
+ export { ActionItemInput, ActionItemOutput, BrowserIndexedDBStorageProvider, BrowserStorageProviderBase, FieldMapper, GetDataOutput, GraphQLAIClient, GraphQLActionClient, GraphQLComponentRegistryClient, GraphQLDataProvider, GraphQLEncryptionClient, GraphQLFileStorageClient, GraphQLProviderConfigData, GraphQLSystemUserClient, GraphQLTestingClient, GraphQLTransactionGroup, GraphQLVersionHistoryClient, RoleInput, RolesAndUsersInput, SimpleRemoteEntity, SimpleRemoteEntityField, SimpleRemoteEntityOutput, SyncDataAction, SyncDataResult, SyncRolesAndUsersResult, UserInput, setupGraphQLClient };
3472
+ export type { AccountSearchResult, ComponentDependencyTree, ComponentSpecWithHash, CopyBetweenAccountsResult, CreateAPIKeyParams, CreateAPIKeyResult, CreatePreAuthUploadUrlResult, CreateQueryInput, CreateQueryResult, CreateVersionLabelParams, CreateVersionLabelProgress, CreateVersionLabelResult, DeleteQueryOptionsInput, DeleteQueryResult, EmbedTextParams, EmbedTextResult, ExecuteSimplePromptParams, FileSearchOptions, FileSearchResult, GetQueryDataByNameSystemUserInput, GetQueryDataSystemUserInput, GetRegistryComponentParams, MJ_MetadataDB, QueryEntity, QueryField, QueryParameter, QueryPermission, QueryPermissionInput, RegistryComponentSearchResult, RevokeAPIKeyResult, RunAIPromptParams, RunAIPromptResult, RunDynamicViewSystemUserInput, RunQuerySystemUserResult, RunTestParams, RunTestResult, RunTestSuiteParams, RunTestSuiteResult, RunViewByIDSystemUserInput, RunViewByNameSystemUserInput, RunViewSystemUserInput, RunViewSystemUserResult, RunViewSystemUserResultRow, SearchAcrossAccountsResult, SearchRegistryComponentsParams, SimplePromptResult, StorageListResult, StorageObjectMetadata, TestExecutionProgress, UpdateQueryInput, UpdateQueryResult };
3473
+ //# sourceMappingURL=index.d.cts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.cts","sources":["../src/graphQLAIClient.ts","../src/graphQLDataProvider.ts","../src/config.ts","../src/graphQLTransactionGroup.ts","../src/FieldMapper.ts","../src/rolesAndUsersType.ts","../src/graphQLSystemUserClient.ts","../src/graphQLActionClient.ts","../src/graphQLEncryptionClient.ts","../src/graphQLTestingClient.ts","../src/GraphQLComponentRegistryClient.ts","../src/graphQLVersionHistoryClient.ts","../src/graphQLFileStorageClient.ts","../src/storage-providers.ts"],"mappings":"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","names":[]}
package/dist/index.d.mts CHANGED
@@ -1,6 +1,6 @@
1
1
  import { GraphQLClient } from 'graphql-request';
2
2
  export { gql } from 'graphql-request';
3
- import { ProviderConfigDataBase, ProviderBase, IEntityDataProvider, IMetadataProvider, IRunReportProvider, UserInfo, RunReportParams, RunReportResult, RunQueryParams, RunQueryResult, RunQueryWithCacheCheckParams, RunQueriesWithCacheCheckResponse, RunViewParams, RunViewResult, RunViewWithCacheCheckParams, RunViewsWithCacheCheckResponse, EntityInfo, ProviderType, CompositeKey, RecordChange, RecordDependency, KeyValuePair, PotentialDuplicateRequest, PotentialDuplicateResponse, RecordMergeRequest, EntityMergeOptions, RecordMergeResult, BaseEntity, EntitySaveOptions, EntityDeleteOptions, DatasetItemFilterType, DatasetResultType, DatasetStatusResultType, TransactionGroupBase, EntityRecordNameInput, EntityRecordNameResult, ILocalStorageProvider, TransactionResult } from '@memberjunction/core';
3
+ import { ProviderBase, IEntityDataProvider, IMetadataProvider, IRunReportProvider, ProviderConfigDataBase, UserInfo, RunReportParams, RunReportResult, RunQueryParams, RunQueryResult, RunQueryWithCacheCheckParams, RunQueriesWithCacheCheckResponse, RunViewParams, RunViewResult, RunViewWithCacheCheckParams, RunViewsWithCacheCheckResponse, EntityInfo, ProviderType, CompositeKey, RecordChange, RecordDependency, KeyValuePair, PotentialDuplicateRequest, PotentialDuplicateResponse, RecordMergeRequest, EntityMergeOptions, RecordMergeResult, BaseEntity, EntitySaveOptions, EntityDeleteOptions, DatasetItemFilterType, DatasetResultType, DatasetStatusResultType, TransactionGroupBase, EntityRecordNameInput, EntityRecordNameResult, ILocalStorageProvider, TransactionResult } from '@memberjunction/core';
4
4
  import { UserViewEntityExtended } from '@memberjunction/core-entities';
5
5
  import { Observable } from 'rxjs';
6
6
  import { ExecuteAgentParams, ExecuteAgentResult } from '@memberjunction/ai-core-plus';
@@ -2971,6 +2971,114 @@ declare class GraphQLComponentRegistryClient {
2971
2971
  SendComponentFeedback(params: ComponentFeedbackParams): Promise<ComponentFeedbackResponse>;
2972
2972
  }
2973
2973
 
2974
+ /**
2975
+ * Progress update received during label creation.
2976
+ */
2977
+ interface CreateVersionLabelProgress {
2978
+ /** Current lifecycle step */
2979
+ Step: 'initializing' | 'walking_dependencies' | 'capturing_snapshots' | 'finalizing';
2980
+ /** Human-readable description of what's happening */
2981
+ Message: string;
2982
+ /** Estimated completion percentage (0–100) */
2983
+ Percentage: number;
2984
+ /** Number of records processed so far */
2985
+ RecordsProcessed?: number;
2986
+ /** Total records to process */
2987
+ TotalRecords?: number;
2988
+ /** Entity currently being processed */
2989
+ CurrentEntity?: string;
2990
+ }
2991
+ /**
2992
+ * Parameters for creating a version label via the server-side VersionHistoryEngine.
2993
+ */
2994
+ interface CreateVersionLabelParams {
2995
+ /** Human-readable name */
2996
+ Name: string;
2997
+ /** Optional longer description */
2998
+ Description?: string;
2999
+ /** Scope of the label: System, Entity, or Record (default: Record) */
3000
+ Scope?: 'System' | 'Entity' | 'Record';
3001
+ /** The target entity name (required for Entity/Record scope) */
3002
+ EntityName?: string;
3003
+ /** The record's primary key pairs (required for Record scope). Key = field name, Value = field value. */
3004
+ RecordKeys?: Array<{
3005
+ Key: string;
3006
+ Value: string;
3007
+ }>;
3008
+ /** Optional parent label ID for grouping */
3009
+ ParentID?: string;
3010
+ /** Optional external system reference */
3011
+ ExternalSystemID?: string;
3012
+ /** Whether to include dependent records when scope is Record (default: true) */
3013
+ IncludeDependencies?: boolean;
3014
+ /** Maximum depth of dependency graph traversal */
3015
+ MaxDepth?: number;
3016
+ /** Entity names to exclude from dependency traversal */
3017
+ ExcludeEntities?: string[];
3018
+ /**
3019
+ * Optional callback invoked with progress updates during label creation.
3020
+ * Requires an active PushStatusUpdates subscription (handled automatically).
3021
+ */
3022
+ OnProgress?: (progress: CreateVersionLabelProgress) => void;
3023
+ }
3024
+ /**
3025
+ * Result returned from the CreateVersionLabel mutation.
3026
+ */
3027
+ interface CreateVersionLabelResult {
3028
+ Success: boolean;
3029
+ LabelID?: string;
3030
+ LabelName?: string;
3031
+ ItemsCaptured?: number;
3032
+ SyntheticSnapshotsCreated?: number;
3033
+ Error?: string;
3034
+ CaptureErrors?: Array<{
3035
+ EntityName: string;
3036
+ RecordID: string;
3037
+ ErrorMessage: string;
3038
+ }>;
3039
+ }
3040
+ /**
3041
+ * Client for executing Version History operations through GraphQL.
3042
+ *
3043
+ * This class provides an easy way to create version labels with proper
3044
+ * server-side snapshot capture from a client application.
3045
+ *
3046
+ * @example
3047
+ * ```typescript
3048
+ * const vhClient = new GraphQLVersionHistoryClient(graphQLProvider);
3049
+ *
3050
+ * const result = await vhClient.CreateLabel({
3051
+ * Name: 'Before Refactor',
3052
+ * Scope: 'Record',
3053
+ * EntityName: 'AI Prompts',
3054
+ * RecordKeys: [{ Key: 'ID', Value: recordId }],
3055
+ * IncludeDependencies: true,
3056
+ * });
3057
+ *
3058
+ * if (result.Success) {
3059
+ * console.log(`Created label ${result.LabelID} with ${result.ItemsCaptured} items`);
3060
+ * }
3061
+ * ```
3062
+ */
3063
+ declare class GraphQLVersionHistoryClient {
3064
+ private _dataProvider;
3065
+ constructor(dataProvider: GraphQLDataProvider);
3066
+ /**
3067
+ * Create a version label with full server-side snapshot capture.
3068
+ *
3069
+ * This invokes the VersionHistoryEngine on the server which:
3070
+ * 1. Creates the VersionLabel record
3071
+ * 2. Captures snapshots (VersionLabelItems) based on scope
3072
+ * 3. Updates the label with item count and duration metrics
3073
+ *
3074
+ * If `params.OnProgress` is provided, subscribes to PushStatusUpdates
3075
+ * for real-time progress during the operation.
3076
+ */
3077
+ CreateLabel(params: CreateVersionLabelParams): Promise<CreateVersionLabelResult>;
3078
+ private buildInput;
3079
+ private processResult;
3080
+ }
3081
+
2974
3082
  /**
2975
3083
  * Client for file storage operations through GraphQL.
2976
3084
  * This class provides an easy way to interact with file storage accounts from a client application.
@@ -3360,4 +3468,6 @@ declare class BrowserIndexedDBStorageProvider extends BrowserStorageProviderBase
3360
3468
  GetCategoryKeys(category: string): Promise<string[]>;
3361
3469
  }
3362
3470
 
3363
- export { type AccountSearchResult, ActionItemInput, ActionItemOutput, BrowserIndexedDBStorageProvider, BrowserStorageProviderBase, type ComponentDependencyTree, type ComponentSpecWithHash, type CopyBetweenAccountsResult, type CreateAPIKeyParams, type CreateAPIKeyResult, type CreatePreAuthUploadUrlResult, type CreateQueryInput, type CreateQueryResult, type DeleteQueryOptionsInput, type DeleteQueryResult, type EmbedTextParams, type EmbedTextResult, type ExecuteSimplePromptParams, FieldMapper, type FileSearchOptions, type FileSearchResult, GetDataOutput, type GetQueryDataByNameSystemUserInput, type GetQueryDataSystemUserInput, type GetRegistryComponentParams, GraphQLAIClient, GraphQLActionClient, GraphQLComponentRegistryClient, GraphQLDataProvider, GraphQLEncryptionClient, GraphQLFileStorageClient, GraphQLProviderConfigData, GraphQLSystemUserClient, GraphQLTestingClient, GraphQLTransactionGroup, type MJ_MetadataDB, type QueryEntity, type QueryField, type QueryParameter, type QueryPermission, type QueryPermissionInput, type RegistryComponentSearchResult, type RevokeAPIKeyResult, RoleInput, RolesAndUsersInput, type RunAIPromptParams, type RunAIPromptResult, type RunDynamicViewSystemUserInput, type RunQuerySystemUserResult, type RunTestParams, type RunTestResult, type RunTestSuiteParams, type RunTestSuiteResult, type RunViewByIDSystemUserInput, type RunViewByNameSystemUserInput, type RunViewSystemUserInput, type RunViewSystemUserResult, type RunViewSystemUserResultRow, type SearchAcrossAccountsResult, type SearchRegistryComponentsParams, type SimplePromptResult, SimpleRemoteEntity, SimpleRemoteEntityField, SimpleRemoteEntityOutput, type StorageListResult, type StorageObjectMetadata, SyncDataAction, SyncDataResult, SyncRolesAndUsersResult, type TestExecutionProgress, type UpdateQueryInput, type UpdateQueryResult, UserInput, setupGraphQLClient };
3471
+ export { ActionItemInput, ActionItemOutput, BrowserIndexedDBStorageProvider, BrowserStorageProviderBase, FieldMapper, GetDataOutput, GraphQLAIClient, GraphQLActionClient, GraphQLComponentRegistryClient, GraphQLDataProvider, GraphQLEncryptionClient, GraphQLFileStorageClient, GraphQLProviderConfigData, GraphQLSystemUserClient, GraphQLTestingClient, GraphQLTransactionGroup, GraphQLVersionHistoryClient, RoleInput, RolesAndUsersInput, SimpleRemoteEntity, SimpleRemoteEntityField, SimpleRemoteEntityOutput, SyncDataAction, SyncDataResult, SyncRolesAndUsersResult, UserInput, setupGraphQLClient };
3472
+ export type { AccountSearchResult, ComponentDependencyTree, ComponentSpecWithHash, CopyBetweenAccountsResult, CreateAPIKeyParams, CreateAPIKeyResult, CreatePreAuthUploadUrlResult, CreateQueryInput, CreateQueryResult, CreateVersionLabelParams, CreateVersionLabelProgress, CreateVersionLabelResult, DeleteQueryOptionsInput, DeleteQueryResult, EmbedTextParams, EmbedTextResult, ExecuteSimplePromptParams, FileSearchOptions, FileSearchResult, GetQueryDataByNameSystemUserInput, GetQueryDataSystemUserInput, GetRegistryComponentParams, MJ_MetadataDB, QueryEntity, QueryField, QueryParameter, QueryPermission, QueryPermissionInput, RegistryComponentSearchResult, RevokeAPIKeyResult, RunAIPromptParams, RunAIPromptResult, RunDynamicViewSystemUserInput, RunQuerySystemUserResult, RunTestParams, RunTestResult, RunTestSuiteParams, RunTestSuiteResult, RunViewByIDSystemUserInput, RunViewByNameSystemUserInput, RunViewSystemUserInput, RunViewSystemUserResult, RunViewSystemUserResultRow, SearchAcrossAccountsResult, SearchRegistryComponentsParams, SimplePromptResult, StorageListResult, StorageObjectMetadata, TestExecutionProgress, UpdateQueryInput, UpdateQueryResult };
3473
+ //# sourceMappingURL=index.d.mts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.mts","sources":["../src/graphQLAIClient.ts","../src/graphQLDataProvider.ts","../src/config.ts","../src/graphQLTransactionGroup.ts","../src/FieldMapper.ts","../src/rolesAndUsersType.ts","../src/graphQLSystemUserClient.ts","../src/graphQLActionClient.ts","../src/graphQLEncryptionClient.ts","../src/graphQLTestingClient.ts","../src/GraphQLComponentRegistryClient.ts","../src/graphQLVersionHistoryClient.ts","../src/graphQLFileStorageClient.ts","../src/storage-providers.ts"],"mappings":"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","names":[]}