@tego/server 1.6.12 → 1.6.13-alpha.3
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/lib/index.d.ts +2 -2
- package/lib/index.js +2 -0
- package/package.json +13 -13
package/lib/index.d.ts
CHANGED
|
@@ -2,8 +2,8 @@ export { default as actions, DEFAULT_PAGE, DEFAULT_PER_PAGE, utils } from '@tach
|
|
|
2
2
|
export type { Context, Next } from '@tachybase/actions';
|
|
3
3
|
export { Cache, CacheManager } from '@tachybase/cache';
|
|
4
4
|
export type { BloomFilter } from '@tachybase/cache';
|
|
5
|
-
export { ArrayFieldRepository, BaseError, BaseValueParser, BelongsToField, BelongsToManyField, BelongsToManyRepository, BelongsToRepository, Collection, CollectionGroupManager, DataTypes, Database, Field, FilterParser, HasManyField, HasManyRepository, HasOneField, InheritedCollection, MagicAttributeModel, MockDatabase, Model, MultipleRelationRepository, Op, PasswordField, RelationField, Repository, SQLModel, SqlCollection, Transaction, UniqueConstraintError, ValidationError, ValidationErrorItem, ViewCollection, ViewFieldInference, defineCollection, extendCollection, filterMatch, fn, literal, md5, mockDatabase, modelAssociationByKey, snakeCase, traverseJSON, where, } from '@tachybase/database';
|
|
6
|
-
export type { BaseColumnFieldOptions, BaseFieldOptions, BelongsToGetAssociationMixin, CollectionDef, CollectionGroup, CollectionOptions, CountOptions, CreateOptions, DestroyOptions, DumpRulesGroupType, FieldContext, Filter, FindOneOptions, FindOptions, HasManyCountAssociationsMixin, HasManyCreateAssociationMixin, HasManyGetAssociationsMixin, IDatabaseOptions, MigrationContext, ModelStatic, StringFieldOptions, SyncOptions, Transactionable, UpdateOptions, } from '@tachybase/database';
|
|
5
|
+
export { ArrayFieldRepository, BaseError, BaseValueParser, BelongsToField, BelongsToManyField, BelongsToManyRepository, BelongsToRepository, Collection, CollectionGroupManager, DataTypes, col, Database, Field, FilterParser, HasManyField, HasManyRepository, HasOneField, InheritedCollection, MagicAttributeModel, MockDatabase, Model, MultipleRelationRepository, Op, PasswordField, RelationField, Repository, SQLModel, SqlCollection, Transaction, UniqueConstraintError, ValidationError, ValidationErrorItem, ViewCollection, ViewFieldInference, defineCollection, extendCollection, filterMatch, fn, literal, md5, mockDatabase, modelAssociationByKey, snakeCase, traverseJSON, where, } from '@tachybase/database';
|
|
6
|
+
export type { BaseColumnFieldOptions, BaseFieldOptions, BelongsToGetAssociationMixin, CollectionDef, CollectionGroup, CollectionOptions, CountOptions, CreateOptions, DestroyOptions, DumpRulesGroupType, FieldContext, Filter, FindOneOptions, FindOptions, HasManyCountAssociationsMixin, HasManyCreateAssociationMixin, HasManyGetAssociationsMixin, IDatabaseOptions, MigrationContext, ModelStatic, StringFieldOptions, SyncOptions, Transactionable, UpdateOptions, WhereOptions, } from '@tachybase/database';
|
|
7
7
|
export { AppSupervisor, Application, Gateway, InjectedPlugin, Migration, NoticeType, Plugin, PluginManager, WSServer, AesEncryptor, } from '@tego/core';
|
|
8
8
|
export type { AppLoggerOptions, ApplicationOptions, InstallOptions, PluginOptions } from '@tego/core';
|
|
9
9
|
export { AuthError, AuthErrorCode, AuthManager, BaseAuth } from '@tachybase/auth';
|
package/lib/index.js
CHANGED
|
@@ -104,6 +104,7 @@ __export(index_exports, {
|
|
|
104
104
|
appendArrayColumn: () => import_evaluators.appendArrayColumn,
|
|
105
105
|
applyMixins: () => import_utils.applyMixins,
|
|
106
106
|
assign: () => import_utils.assign,
|
|
107
|
+
col: () => import_database.col,
|
|
107
108
|
currentProcessNum: () => import_utils.currentProcessNum,
|
|
108
109
|
defineCollection: () => import_database.defineCollection,
|
|
109
110
|
evaluate: () => import_evaluators.evaluate,
|
|
@@ -229,6 +230,7 @@ var import_acl = require("@tachybase/acl");
|
|
|
229
230
|
appendArrayColumn,
|
|
230
231
|
applyMixins,
|
|
231
232
|
assign,
|
|
233
|
+
col,
|
|
232
234
|
currentProcessNum,
|
|
233
235
|
defineCollection,
|
|
234
236
|
evaluate,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tego/server",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.13-alpha.3",
|
|
4
4
|
"description": "",
|
|
5
5
|
"homepage": "https://github.com/tegojs/tego#readme",
|
|
6
6
|
"bugs": {
|
|
@@ -15,17 +15,17 @@
|
|
|
15
15
|
"main": "./lib/index.js",
|
|
16
16
|
"types": "./lib/index.d.ts",
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@tachybase/actions": "1.6.
|
|
19
|
-
"@tachybase/
|
|
20
|
-
"@tachybase/
|
|
21
|
-
"@tachybase/
|
|
22
|
-
"@tachybase/
|
|
23
|
-
"@tachybase/
|
|
24
|
-
"@tachybase/evaluators": "1.6.
|
|
25
|
-
"@tachybase/
|
|
26
|
-
"@tachybase/logger": "1.6.
|
|
27
|
-
"@tachybase/
|
|
28
|
-
"@tachybase/utils": "1.6.
|
|
29
|
-
"@tego/core": "1.6.
|
|
18
|
+
"@tachybase/actions": "1.6.13-alpha.3",
|
|
19
|
+
"@tachybase/cache": "1.6.13-alpha.3",
|
|
20
|
+
"@tachybase/data-source": "1.6.13-alpha.3",
|
|
21
|
+
"@tachybase/auth": "1.6.13-alpha.3",
|
|
22
|
+
"@tachybase/database": "1.6.13-alpha.3",
|
|
23
|
+
"@tachybase/di": "1.6.13-alpha.3",
|
|
24
|
+
"@tachybase/evaluators": "1.6.13-alpha.3",
|
|
25
|
+
"@tachybase/resourcer": "1.6.13-alpha.3",
|
|
26
|
+
"@tachybase/logger": "1.6.13-alpha.3",
|
|
27
|
+
"@tachybase/acl": "1.6.13-alpha.3",
|
|
28
|
+
"@tachybase/utils": "1.6.13-alpha.3",
|
|
29
|
+
"@tego/core": "1.6.13-alpha.3"
|
|
30
30
|
}
|
|
31
31
|
}
|