Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .ctirc
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"mode": "bundle",
"fileExt": "keep",
"overwrite": true,
"backup": false,
"generationStyle": "default-alias-named-star",
Expand Down
4 changes: 2 additions & 2 deletions packages/entity-cache-adapter-local-memory/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
* @module @expo/entity-cache-adapter-local-memory
*/

export * from './GenericLocalMemoryCacher';
export * from './LocalMemoryCacheAdapterProvider';
export * from './GenericLocalMemoryCacher.ts';
export * from './LocalMemoryCacheAdapterProvider.ts';
10 changes: 5 additions & 5 deletions packages/entity-cache-adapter-redis/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
* @module @expo/entity-cache-adapter-redis
*/

export * from './GenericRedisCacher';
export * from './RedisCacheAdapterProvider';
export * from './RedisCommon';
export * from './errors/wrapNativeRedisCallAsync';
export * from './utils/getSurroundingCacheKeyVersionsForInvalidation';
export * from './GenericRedisCacher.ts';
export * from './RedisCacheAdapterProvider.ts';
export * from './RedisCommon.ts';
export * from './errors/wrapNativeRedisCallAsync.ts';
export * from './utils/getSurroundingCacheKeyVersionsForInvalidation.ts';
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@
* @module @expo/entity-database-adapter-knex-testing-utils
*/

export * from './createUnitTestPostgresEntityCompanionProvider';
export * from './StubPostgresDatabaseAdapter';
export * from './StubPostgresDatabaseAdapterProvider';
export * from './createUnitTestPostgresEntityCompanionProvider.ts';
export * from './StubPostgresDatabaseAdapter.ts';
export * from './StubPostgresDatabaseAdapterProvider.ts';
40 changes: 20 additions & 20 deletions packages/entity-database-adapter-knex/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,23 +4,23 @@
* @module @expo/entity-database-adapter-knex
*/

export * from './AuthorizationResultBasedKnexEntityLoader';
export * from './BasePostgresEntityDatabaseAdapter';
export * from './BaseSQLQueryBuilder';
export * from './EnforcingKnexEntityLoader';
export * from './EntityFields';
export * from './KnexEntityLoaderFactory';
export * from './knexLoader';
export * from './PaginationStrategy';
export * from './PostgresEntity';
export * from './PostgresEntityDatabaseAdapter';
export * from './PostgresEntityDatabaseAdapterProvider';
export * from './PostgresEntityQueryContextProvider';
export * from './ReadonlyPostgresEntity';
export * from './SQLOperator';
export * from './errors/wrapNativePostgresCallAsync';
export * from './internal/EntityKnexDataManager';
export * from './internal/getKnexDataManager';
export * from './internal/getKnexEntityLoaderFactory';
export * from './internal/utilityTypes';
export * from './internal/weakMaps';
export * from './AuthorizationResultBasedKnexEntityLoader.ts';
export * from './BasePostgresEntityDatabaseAdapter.ts';
export * from './BaseSQLQueryBuilder.ts';
export * from './EnforcingKnexEntityLoader.ts';
export * from './EntityFields.ts';
export * from './KnexEntityLoaderFactory.ts';
export * from './knexLoader.ts';
export * from './PaginationStrategy.ts';
export * from './PostgresEntity.ts';
export * from './PostgresEntityDatabaseAdapter.ts';
export * from './PostgresEntityDatabaseAdapterProvider.ts';
export * from './PostgresEntityQueryContextProvider.ts';
export * from './ReadonlyPostgresEntity.ts';
export * from './SQLOperator.ts';
export * from './errors/wrapNativePostgresCallAsync.ts';
export * from './internal/EntityKnexDataManager.ts';
export * from './internal/getKnexDataManager.ts';
export * from './internal/getKnexEntityLoaderFactory.ts';
export * from './internal/utilityTypes.ts';
export * from './internal/weakMaps.ts';
2 changes: 1 addition & 1 deletion packages/entity-ip-address-field/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
* @module @expo/entity-ip-address-field
*/

export * from './EntityFields';
export * from './EntityFields.ts';
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
* @module @expo/entity-secondary-cache-local-memory
*/

export * from './LocalMemorySecondaryEntityCache';
export * from './LocalMemorySecondaryEntityCache.ts';
2 changes: 1 addition & 1 deletion packages/entity-secondary-cache-redis/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
* @module @expo/entity-secondary-cache-redis
*/

export * from './RedisSecondaryEntityCache';
export * from './RedisSecondaryEntityCache.ts';
16 changes: 8 additions & 8 deletions packages/entity-testing-utils/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
* @module @expo/entity-testing-utils
*/

export * from './createUnitTestEntityCompanionProvider';
export * from './describeFieldTestCase';
export * from './PrivacyPolicyRuleTestUtils';
export * from './StubCacheAdapter';
export * from './StubDatabaseAdapter';
export * from './StubDatabaseAdapterProvider';
export * from './StubQueryContextProvider';
export * from './TSMockitoExtensions';
export * from './createUnitTestEntityCompanionProvider.ts';
export * from './describeFieldTestCase.ts';
export * from './PrivacyPolicyRuleTestUtils.ts';
export * from './StubCacheAdapter.ts';
export * from './StubDatabaseAdapter.ts';
export * from './StubDatabaseAdapterProvider.ts';
export * from './StubQueryContextProvider.ts';
export * from './TSMockitoExtensions.ts';
154 changes: 77 additions & 77 deletions packages/entity/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,80 +4,80 @@
* @module @expo/entity
*/

export * from './AuthorizationResultBasedEntityAssociationLoader';
export * from './AuthorizationResultBasedEntityLoader';
export * from './AuthorizationResultBasedEntityMutator';
export * from './ComposedEntityCacheAdapter';
export * from './ComposedSecondaryEntityCache';
export * from './EnforcingEntityAssociationLoader';
export * from './EnforcingEntityCreator';
export * from './EnforcingEntityDeleter';
export * from './EnforcingEntityLoader';
export * from './EnforcingEntityUpdater';
export * from './Entity';
export * from './EntityAssociationLoader';
export * from './EntityCompanion';
export * from './EntityCompanionProvider';
export * from './EntityConfiguration';
export * from './EntityConstructionUtils';
export * from './EntityCreator';
export * from './EntityDatabaseAdapter';
export * from './EntityDeleter';
export * from './EntityFieldDefinition';
export * from './EntityFields';
export * from './EntityInvalidationUtils';
export * from './EntityLoader';
export * from './EntityLoaderFactory';
export * from './EntityMutationInfo';
export * from './EntityMutationTriggerConfiguration';
export * from './EntityMutationValidatorConfiguration';
export * from './EntityMutatorFactory';
export * from './EntityPrivacyPolicy';
export * from './EntityQueryContext';
export * from './EntityQueryContextProvider';
export * from './EntitySecondaryCacheLoader';
export * from './EntityUpdater';
export * from './entityUtils';
export * from './GenericEntityCacheAdapter';
export * from './GenericSecondaryEntityCache';
export * from './IEntityCacheAdapter';
export * from './IEntityCacheAdapterProvider';
export * from './IEntityDatabaseAdapterProvider';
export * from './IEntityGenericCacher';
export * from './ReadonlyEntity';
export * from './ViewerContext';
export * from './ViewerScopedEntityCompanion';
export * from './ViewerScopedEntityCompanionProvider';
export * from './ViewerScopedEntityLoaderFactory';
export * from './ViewerScopedEntityMutatorFactory';
export * from './errors/EntityCacheAdapterError';
export * from './errors/EntityDatabaseAdapterError';
export * from './errors/EntityError';
export * from './errors/EntityInvalidFieldValueError';
export * from './errors/EntityNotAuthorizedError';
export * from './errors/EntityNotFoundError';
export * from './internal/CompositeFieldHolder';
export * from './internal/CompositeFieldValueMap';
export * from './internal/EntityDataManager';
export * from './internal/EntityFieldTransformationUtils';
export * from './internal/EntityLoadInterfaces';
export * from './internal/EntityTableDataCoordinator';
export * from './internal/ReadThroughEntityCache';
export * from './internal/SingleFieldHolder';
export * from './metrics/EntityMetricsUtils';
export * from './metrics/IEntityMetricsAdapter';
export * from './metrics/NoOpEntityMetricsAdapter';
export * from './rules/AllowIfAllSubRulesAllowPrivacyPolicyRule';
export * from './rules/AllowIfAnySubRuleAllowsPrivacyPolicyRule';
export * from './rules/AllowIfInParentCascadeDeletionPrivacyPolicyRule';
export * from './rules/AlwaysAllowPrivacyPolicyRule';
export * from './rules/AlwaysDenyPrivacyPolicyRule';
export * from './rules/AlwaysSkipPrivacyPolicyRule';
export * from './rules/EvaluateIfEntityFieldPredicatePrivacyPolicyRule';
export * from './rules/PrivacyPolicyRule';
export * from './utils/EntityCreationUtils';
export * from './utils/EntityPrivacyUtils';
export * from './utils/mergeEntityMutationTriggerConfigurations';
export * from './utils/collections/maps';
export * from './utils/collections/SerializableKeyMap';
export * from './utils/collections/sets';
export * from './AuthorizationResultBasedEntityAssociationLoader.ts';
export * from './AuthorizationResultBasedEntityLoader.ts';
export * from './AuthorizationResultBasedEntityMutator.ts';
export * from './ComposedEntityCacheAdapter.ts';
export * from './ComposedSecondaryEntityCache.ts';
export * from './EnforcingEntityAssociationLoader.ts';
export * from './EnforcingEntityCreator.ts';
export * from './EnforcingEntityDeleter.ts';
export * from './EnforcingEntityLoader.ts';
export * from './EnforcingEntityUpdater.ts';
export * from './Entity.ts';
export * from './EntityAssociationLoader.ts';
export * from './EntityCompanion.ts';
export * from './EntityCompanionProvider.ts';
export * from './EntityConfiguration.ts';
export * from './EntityConstructionUtils.ts';
export * from './EntityCreator.ts';
export * from './EntityDatabaseAdapter.ts';
export * from './EntityDeleter.ts';
export * from './EntityFieldDefinition.ts';
export * from './EntityFields.ts';
export * from './EntityInvalidationUtils.ts';
export * from './EntityLoader.ts';
export * from './EntityLoaderFactory.ts';
export * from './EntityMutationInfo.ts';
export * from './EntityMutationTriggerConfiguration.ts';
export * from './EntityMutationValidatorConfiguration.ts';
export * from './EntityMutatorFactory.ts';
export * from './EntityPrivacyPolicy.ts';
export * from './EntityQueryContext.ts';
export * from './EntityQueryContextProvider.ts';
export * from './EntitySecondaryCacheLoader.ts';
export * from './EntityUpdater.ts';
export * from './entityUtils.ts';
export * from './GenericEntityCacheAdapter.ts';
export * from './GenericSecondaryEntityCache.ts';
export * from './IEntityCacheAdapter.ts';
export * from './IEntityCacheAdapterProvider.ts';
export * from './IEntityDatabaseAdapterProvider.ts';
export * from './IEntityGenericCacher.ts';
export * from './ReadonlyEntity.ts';
export * from './ViewerContext.ts';
export * from './ViewerScopedEntityCompanion.ts';
export * from './ViewerScopedEntityCompanionProvider.ts';
export * from './ViewerScopedEntityLoaderFactory.ts';
export * from './ViewerScopedEntityMutatorFactory.ts';
export * from './errors/EntityCacheAdapterError.ts';
export * from './errors/EntityDatabaseAdapterError.ts';
export * from './errors/EntityError.ts';
export * from './errors/EntityInvalidFieldValueError.ts';
export * from './errors/EntityNotAuthorizedError.ts';
export * from './errors/EntityNotFoundError.ts';
export * from './internal/CompositeFieldHolder.ts';
export * from './internal/CompositeFieldValueMap.ts';
export * from './internal/EntityDataManager.ts';
export * from './internal/EntityFieldTransformationUtils.ts';
export * from './internal/EntityLoadInterfaces.ts';
export * from './internal/EntityTableDataCoordinator.ts';
export * from './internal/ReadThroughEntityCache.ts';
export * from './internal/SingleFieldHolder.ts';
export * from './metrics/EntityMetricsUtils.ts';
export * from './metrics/IEntityMetricsAdapter.ts';
export * from './metrics/NoOpEntityMetricsAdapter.ts';
export * from './rules/AllowIfAllSubRulesAllowPrivacyPolicyRule.ts';
export * from './rules/AllowIfAnySubRuleAllowsPrivacyPolicyRule.ts';
export * from './rules/AllowIfInParentCascadeDeletionPrivacyPolicyRule.ts';
export * from './rules/AlwaysAllowPrivacyPolicyRule.ts';
export * from './rules/AlwaysDenyPrivacyPolicyRule.ts';
export * from './rules/AlwaysSkipPrivacyPolicyRule.ts';
export * from './rules/EvaluateIfEntityFieldPredicatePrivacyPolicyRule.ts';
export * from './rules/PrivacyPolicyRule.ts';
export * from './utils/EntityCreationUtils.ts';
export * from './utils/EntityPrivacyUtils.ts';
export * from './utils/mergeEntityMutationTriggerConfigurations.ts';
export * from './utils/collections/maps.ts';
export * from './utils/collections/SerializableKeyMap.ts';
export * from './utils/collections/sets.ts';
Loading