@aiao/rxdb 0.0.2 → 0.0.4
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/LICENSE +21 -0
- package/{RxDB.d.ts → dist/RxDB.d.ts} +39 -11
- package/dist/RxDB.d.ts.map +1 -0
- package/{RxDBError.d.ts → dist/RxDBError.d.ts} +2 -0
- package/dist/RxDBError.d.ts.map +1 -0
- package/{entity → dist/entity}/@Entity.d.ts +4 -9
- package/dist/entity/@Entity.d.ts.map +1 -0
- package/{entity → dist/entity}/@TreeEntity.d.ts +5 -4
- package/dist/entity/@TreeEntity.d.ts.map +1 -0
- package/{entity → dist/entity}/EntityBase.d.ts +4 -1
- package/dist/entity/EntityBase.d.ts.map +1 -0
- package/{entity → dist/entity}/EntityManager.d.ts +33 -9
- package/dist/entity/EntityManager.d.ts.map +1 -0
- package/{entity → dist/entity}/EntityStatus.d.ts +26 -19
- package/dist/entity/EntityStatus.d.ts.map +1 -0
- package/dist/entity/TreeEntityBase.d.ts +15 -0
- package/dist/entity/TreeEntityBase.d.ts.map +1 -0
- package/{entity → dist/entity}/entity-metadata-options.interface.d.ts +67 -72
- package/dist/entity/entity-metadata-options.interface.d.ts.map +1 -0
- package/{entity → dist/entity}/entity-metadata.interface.d.ts +5 -14
- package/dist/entity/entity-metadata.interface.d.ts.map +1 -0
- package/{entity → dist/entity}/entity.interface.d.ts +10 -1
- package/dist/entity/entity.interface.d.ts.map +1 -0
- package/{entity → dist/entity}/entity.utils.d.ts +9 -2
- package/dist/entity/entity.utils.d.ts.map +1 -0
- package/{entity → dist/entity}/entity_proxy_helper.d.ts +3 -2
- package/dist/entity/entity_proxy_helper.d.ts.map +1 -0
- package/{entity → dist/entity}/entity_relation_helper.d.ts +4 -3
- package/dist/entity/entity_relation_helper.d.ts.map +1 -0
- package/{entity → dist/entity}/generate_many_to_many_entity.d.ts +5 -4
- package/dist/entity/generate_many_to_many_entity.d.ts.map +1 -0
- package/{entity → dist/entity}/transition-metadata.d.ts +6 -5
- package/dist/entity/transition-metadata.d.ts.map +1 -0
- package/dist/index.d.ts +38 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +3386 -0
- package/{repository → dist/repository}/Repository.d.ts +14 -20
- package/dist/repository/Repository.d.ts.map +1 -0
- package/{repository → dist/repository}/RepositoryBase.d.ts +6 -5
- package/dist/repository/RepositoryBase.d.ts.map +1 -0
- package/dist/repository/TreeRepository.d.ts +29 -0
- package/dist/repository/TreeRepository.d.ts.map +1 -0
- package/dist/repository/query-options.interface.d.ts +47 -0
- package/dist/repository/query-options.interface.d.ts.map +1 -0
- package/{repository → dist/repository}/query.interface.d.ts +18 -10
- package/dist/repository/query.interface.d.ts.map +1 -0
- package/dist/repository/query.utils.d.ts +27 -0
- package/dist/repository/query.utils.d.ts.map +1 -0
- package/dist/repository/relation-query.interface.d.ts +63 -0
- package/dist/repository/relation-query.interface.d.ts.map +1 -0
- package/{repository → dist/repository}/repository.interface.d.ts +9 -18
- package/dist/repository/repository.interface.d.ts.map +1 -0
- package/dist/repository/tree-repository.interface.d.ts +66 -0
- package/dist/repository/tree-repository.interface.d.ts.map +1 -0
- package/{rxdb-adapter.d.ts → dist/rxdb-adapter.d.ts} +30 -6
- package/dist/rxdb-adapter.d.ts.map +1 -0
- package/{rxdb-events.d.ts → dist/rxdb-events.d.ts} +9 -82
- package/dist/rxdb-events.d.ts.map +1 -0
- package/{rxdb-plugin.d.ts → dist/rxdb-plugin.d.ts} +2 -1
- package/dist/rxdb-plugin.d.ts.map +1 -0
- package/{rxdb-utils.d.ts → dist/rxdb-utils.d.ts} +15 -3
- package/dist/rxdb-utils.d.ts.map +1 -0
- package/{rxdb.interface.d.ts → dist/rxdb.interface.d.ts} +3 -10
- package/dist/rxdb.interface.d.ts.map +1 -0
- package/{rxdb.private.d.ts → dist/rxdb.private.d.ts} +14 -14
- package/dist/rxdb.private.d.ts.map +1 -0
- package/{schema → dist/schema}/SchemaManager.d.ts +8 -4
- package/dist/schema/SchemaManager.d.ts.map +1 -0
- package/dist/system/VersionManager.d.ts +35 -0
- package/dist/system/VersionManager.d.ts.map +1 -0
- package/dist/system/branch.d.ts +17 -0
- package/dist/system/branch.d.ts.map +1 -0
- package/dist/system/change.d.ts +78 -0
- package/dist/system/change.d.ts.map +1 -0
- package/dist/system/migration.d.ts +27 -0
- package/dist/system/migration.d.ts.map +1 -0
- package/dist/system/types.d.ts +335 -0
- package/dist/system/types.d.ts.map +1 -0
- package/package.json +26 -12
- package/entity/TreeEntityBase.d.ts +0 -7
- package/index.d.ts +0 -26
- package/index.js +0 -1779
- package/repository/TreeRepository.d.ts +0 -28
- package/repository/query-options.interface.d.ts +0 -53
- package/repository/query.utils.d.ts +0 -19
- package/repository/tree-query-options.interface.d.ts +0 -9
- package/repository/tree-repository.interface.d.ts +0 -26
- package/system/change.d.ts +0 -13
- package/system/migration.d.ts +0 -9
|
@@ -0,0 +1,335 @@
|
|
|
1
|
+
import { Observable } from 'rxjs';
|
|
2
|
+
import { UUID } from '../entity/entity.interface.js';
|
|
3
|
+
import { CountOptions, FindAllOptions, FindOneOptions, FindOneOrFailOptions, FindOptions } from '../repository/query-options.interface.js';
|
|
4
|
+
import { BooleanRules, DateRules, NumberRules, RuleGroupCustom, StringRules, UUIDRules } from '../repository/query.interface.js';
|
|
5
|
+
import { RelationBooleanRules, RelationDateRules, RelationNumberRules, RelationStringRules, RelationUUIDRules } from '../repository/relation-query.interface.js';
|
|
6
|
+
import { FindTreeOptions, FindTreeRootOptions } from '../repository/tree-repository.interface.js';
|
|
7
|
+
import { RxDBBranch } from './branch.js';
|
|
8
|
+
import { RxDBChange } from './change.js';
|
|
9
|
+
import { RxDBMigration } from './migration.js';
|
|
10
|
+
/**
|
|
11
|
+
* rule
|
|
12
|
+
*/
|
|
13
|
+
type RxDBMigrationRule = NumberRules<RxDBMigration, 'id'> | StringRules<RxDBMigration, 'name'> | DateRules<RxDBMigration, 'executedAt'>;
|
|
14
|
+
/**
|
|
15
|
+
* RuleGroupCustom
|
|
16
|
+
*/
|
|
17
|
+
type RxDBMigrationRuleGroup = RuleGroupCustom<typeof RxDBMigration, 'id' | 'name' | 'executedAt', RxDBMigrationRule>;
|
|
18
|
+
/**
|
|
19
|
+
* OrderByField
|
|
20
|
+
*/
|
|
21
|
+
type RxDBMigrationOrderByField = 'id' | 'name' | 'executedAt';
|
|
22
|
+
/**
|
|
23
|
+
* rule
|
|
24
|
+
*/
|
|
25
|
+
type RxDBChangeRule = NumberRules<RxDBChange, 'id'> | StringRules<RxDBChange, 'type'> | UUIDRules<RxDBChange, 'transactionId'> | StringRules<RxDBChange, 'namespace'> | StringRules<RxDBChange, 'entity'> | UUIDRules<RxDBChange, 'entityId'> | DateRules<RxDBChange, 'createdAt'> | DateRules<RxDBChange, 'updatedAt'> | DateRules<RxDBChange, 'revertChangedAt'> | NumberRules<RxDBChange, 'revertChangeId'> | UUIDRules<RxDBChange, 'parentId'> | UUIDRules<RxDBChange, 'branchId'> | RelationNumberRules<'children.id', any> | RelationStringRules<'children.type', string> | RelationUUIDRules<'children.transactionId', UUID | null> | RelationStringRules<'children.namespace', string | null> | RelationStringRules<'children.entity', string | null> | RelationUUIDRules<'children.entityId', UUID | null> | RelationDateRules<'children.createdAt', Date | null> | RelationDateRules<'children.updatedAt', Date | null> | RelationDateRules<'children.revertChangedAt', Date | null> | RelationNumberRules<'children.revertChangeId', any | null> | RelationNumberRules<'parent.id', any> | RelationStringRules<'parent.type', string> | RelationUUIDRules<'parent.transactionId', UUID | null> | RelationStringRules<'parent.namespace', string | null> | RelationStringRules<'parent.entity', string | null> | RelationUUIDRules<'parent.entityId', UUID | null> | RelationDateRules<'parent.createdAt', Date | null> | RelationDateRules<'parent.updatedAt', Date | null> | RelationDateRules<'parent.revertChangedAt', Date | null> | RelationNumberRules<'parent.revertChangeId', any | null> | RelationStringRules<'branch.id', string> | RelationBooleanRules<'branch.activated', boolean> | RelationBooleanRules<'branch.local', boolean> | RelationBooleanRules<'branch.remote', boolean>;
|
|
26
|
+
/**
|
|
27
|
+
* RuleGroupCustom
|
|
28
|
+
*/
|
|
29
|
+
type RxDBChangeRuleGroup = RuleGroupCustom<typeof RxDBChange, 'id' | 'type' | 'transactionId' | 'namespace' | 'entity' | 'entityId' | 'createdAt' | 'updatedAt' | 'revertChangedAt' | 'revertChangeId' | 'parentId' | 'branchId' | 'children.id' | 'children.type' | 'children.transactionId' | 'children.namespace' | 'children.entity' | 'children.entityId' | 'children.createdAt' | 'children.updatedAt' | 'children.revertChangedAt' | 'children.revertChangeId' | 'parentId' | 'branchId' | 'parent.id' | 'parent.type' | 'parent.transactionId' | 'parent.namespace' | 'parent.entity' | 'parent.entityId' | 'parent.createdAt' | 'parent.updatedAt' | 'parent.revertChangedAt' | 'parent.revertChangeId' | 'parentId' | 'branchId' | 'branch.id' | 'branch.activated' | 'branch.local' | 'branch.remote', RxDBChangeRule>;
|
|
30
|
+
/**
|
|
31
|
+
* OrderByField
|
|
32
|
+
*/
|
|
33
|
+
declare type RxDBChangeOrderByField = 'id' | 'type' | 'transactionId' | 'namespace' | 'entity' | 'entityId' | 'inversePatch' | 'patch' | 'createdAt' | 'updatedAt' | 'revertChangedAt' | 'revertChangeId';
|
|
34
|
+
/**
|
|
35
|
+
* TreeRule
|
|
36
|
+
*/
|
|
37
|
+
declare type RxDBChangeTreeRule = RelationStringRules<'children.type', string> | RelationUUIDRules<'children.transactionId', UUID | null> | RelationStringRules<'children.namespace', string | null> | RelationStringRules<'children.entity', string | null> | RelationUUIDRules<'children.entityId', UUID | null> | RelationDateRules<'children.createdAt', Date | null> | RelationDateRules<'children.updatedAt', Date | null> | RelationDateRules<'children.revertChangedAt', Date | null> | RelationNumberRules<'children.revertChangeId', any | null>;
|
|
38
|
+
/**
|
|
39
|
+
* TreeRuleGroup
|
|
40
|
+
*/
|
|
41
|
+
export declare type RxDBChangeTreeRuleGroup = RuleGroupCustom<typeof RxDBChange, 'children.type' | 'children.transactionId' | 'children.namespace' | 'children.entity' | 'children.entityId' | 'children.createdAt' | 'children.updatedAt' | 'children.revertChangedAt' | 'children.revertChangeId', RxDBChangeTreeRule>;
|
|
42
|
+
/**
|
|
43
|
+
* rule
|
|
44
|
+
*/
|
|
45
|
+
declare type RxDBBranchRule = StringRules<RxDBBranch, 'id'> | BooleanRules<RxDBBranch, 'activated'> | BooleanRules<RxDBBranch, 'local'> | BooleanRules<RxDBBranch, 'remote'> | RelationNumberRules<'changes.id', any> | RelationStringRules<'changes.type', string> | RelationUUIDRules<'changes.transactionId', UUID | null> | RelationStringRules<'changes.namespace', string | null> | RelationStringRules<'changes.entity', string | null> | RelationUUIDRules<'changes.entityId', UUID | null> | RelationDateRules<'changes.createdAt', Date | null> | RelationDateRules<'changes.updatedAt', Date | null> | RelationDateRules<'changes.revertChangedAt', Date | null> | RelationNumberRules<'changes.revertChangeId', any | null> | UUIDRules<RxDBChange, 'parentId'> | UUIDRules<RxDBChange, 'branchId'> | RelationNumberRules<'changes.children.id', any> | RelationStringRules<'changes.children.type', string> | RelationUUIDRules<'changes.children.transactionId', UUID | null> | RelationStringRules<'changes.children.namespace', string | null> | RelationStringRules<'changes.children.entity', string | null> | RelationUUIDRules<'changes.children.entityId', UUID | null> | RelationDateRules<'changes.children.createdAt', Date | null> | RelationDateRules<'changes.children.updatedAt', Date | null> | RelationDateRules<'changes.children.revertChangedAt', Date | null> | RelationNumberRules<'changes.children.revertChangeId', any | null> | RelationNumberRules<'changes.parent.id', any> | RelationStringRules<'changes.parent.type', string> | RelationUUIDRules<'changes.parent.transactionId', UUID | null> | RelationStringRules<'changes.parent.namespace', string | null> | RelationStringRules<'changes.parent.entity', string | null> | RelationUUIDRules<'changes.parent.entityId', UUID | null> | RelationDateRules<'changes.parent.createdAt', Date | null> | RelationDateRules<'changes.parent.updatedAt', Date | null> | RelationDateRules<'changes.parent.revertChangedAt', Date | null> | RelationNumberRules<'changes.parent.revertChangeId', any | null>;
|
|
46
|
+
/**
|
|
47
|
+
* RuleGroupCustom
|
|
48
|
+
*/
|
|
49
|
+
export declare type RxDBBranchRuleGroup = RuleGroupCustom<typeof RxDBBranch, 'id' | 'activated' | 'local' | 'remote' | 'changes.id' | 'changes.type' | 'changes.transactionId' | 'changes.namespace' | 'changes.entity' | 'changes.entityId' | 'changes.createdAt' | 'changes.updatedAt' | 'changes.revertChangedAt' | 'changes.revertChangeId' | 'parentId' | 'branchId' | 'changes.children.id' | 'changes.children.type' | 'changes.children.transactionId' | 'changes.children.namespace' | 'changes.children.entity' | 'changes.children.entityId' | 'changes.children.createdAt' | 'changes.children.updatedAt' | 'changes.children.revertChangedAt' | 'changes.children.revertChangeId' | 'parentId' | 'branchId' | 'changes.parent.id' | 'changes.parent.type' | 'changes.parent.transactionId' | 'changes.parent.namespace' | 'changes.parent.entity' | 'changes.parent.entityId' | 'changes.parent.createdAt' | 'changes.parent.updatedAt' | 'changes.parent.revertChangedAt' | 'changes.parent.revertChangeId' | 'parentId' | 'branchId', RxDBBranchRule>;
|
|
50
|
+
/**
|
|
51
|
+
* OrderByField
|
|
52
|
+
*/
|
|
53
|
+
type RxDBBranchOrderByField = 'id' | 'activated' | 'local' | 'remote';
|
|
54
|
+
/**
|
|
55
|
+
* rxdb
|
|
56
|
+
*/
|
|
57
|
+
declare module '@aiao/rxdb' {
|
|
58
|
+
/**
|
|
59
|
+
* RxDB
|
|
60
|
+
*/
|
|
61
|
+
interface RxDB {
|
|
62
|
+
/**
|
|
63
|
+
* RxDBMigration
|
|
64
|
+
*/
|
|
65
|
+
RxDBMigration: typeof RxDBMigration;
|
|
66
|
+
/**
|
|
67
|
+
* RxDBChange
|
|
68
|
+
*/
|
|
69
|
+
RxDBChange: typeof RxDBChange;
|
|
70
|
+
/**
|
|
71
|
+
* RxDBBranch
|
|
72
|
+
*/
|
|
73
|
+
RxDBBranch: typeof RxDBBranch;
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
/**
|
|
77
|
+
* 静态类型
|
|
78
|
+
*/
|
|
79
|
+
export interface RxDBMigrationStaticTypes {
|
|
80
|
+
/**
|
|
81
|
+
* id 类型
|
|
82
|
+
*/
|
|
83
|
+
idType: number;
|
|
84
|
+
/**
|
|
85
|
+
* 查询选项
|
|
86
|
+
*/
|
|
87
|
+
getOptions: number;
|
|
88
|
+
/**
|
|
89
|
+
* 查询选项
|
|
90
|
+
*/
|
|
91
|
+
findOneOrFailOptions: FindOneOrFailOptions<typeof RxDBMigration, RxDBMigrationRuleGroup, RxDBMigrationOrderByField>;
|
|
92
|
+
/**
|
|
93
|
+
* 查询选项
|
|
94
|
+
*/
|
|
95
|
+
findOptions: FindOptions<typeof RxDBMigration, RxDBMigrationRuleGroup, RxDBMigrationOrderByField>;
|
|
96
|
+
/**
|
|
97
|
+
* 查询选项
|
|
98
|
+
*/
|
|
99
|
+
findOneOptions: FindOneOptions<typeof RxDBMigration, RxDBMigrationRuleGroup, RxDBMigrationOrderByField>;
|
|
100
|
+
/**
|
|
101
|
+
* 查询选项
|
|
102
|
+
*/
|
|
103
|
+
findAllOptions: FindAllOptions<typeof RxDBMigration, RxDBMigrationRuleGroup, RxDBMigrationOrderByField>;
|
|
104
|
+
/**
|
|
105
|
+
* 查询选项
|
|
106
|
+
*/
|
|
107
|
+
countOptions: CountOptions<typeof RxDBMigration, RxDBMigrationRuleGroup>;
|
|
108
|
+
}
|
|
109
|
+
/**
|
|
110
|
+
* 静态类型
|
|
111
|
+
*/
|
|
112
|
+
export interface RxDBChangeStaticTypes {
|
|
113
|
+
/**
|
|
114
|
+
* id 类型
|
|
115
|
+
*/
|
|
116
|
+
idType: number;
|
|
117
|
+
/**
|
|
118
|
+
* 查询选项
|
|
119
|
+
*/
|
|
120
|
+
getOptions: number;
|
|
121
|
+
/**
|
|
122
|
+
* 查询选项
|
|
123
|
+
*/
|
|
124
|
+
findOneOrFailOptions: FindOneOrFailOptions<typeof RxDBChange, RxDBChangeRuleGroup, RxDBChangeOrderByField>;
|
|
125
|
+
/**
|
|
126
|
+
* 查询选项
|
|
127
|
+
*/
|
|
128
|
+
findOptions: FindOptions<typeof RxDBChange, RxDBChangeRuleGroup, RxDBChangeOrderByField>;
|
|
129
|
+
/**
|
|
130
|
+
* 查询选项
|
|
131
|
+
*/
|
|
132
|
+
findOneOptions: FindOneOptions<typeof RxDBChange, RxDBChangeRuleGroup, RxDBChangeOrderByField>;
|
|
133
|
+
/**
|
|
134
|
+
* 查询选项
|
|
135
|
+
*/
|
|
136
|
+
findAllOptions: FindAllOptions<typeof RxDBChange, RxDBChangeRuleGroup, RxDBChangeOrderByField>;
|
|
137
|
+
/**
|
|
138
|
+
* 查询选项
|
|
139
|
+
*/
|
|
140
|
+
countOptions: CountOptions<typeof RxDBChange, RxDBChangeRuleGroup>;
|
|
141
|
+
/**
|
|
142
|
+
* 查询的实体
|
|
143
|
+
*/
|
|
144
|
+
entity: RxDBChange;
|
|
145
|
+
/**
|
|
146
|
+
* 查询选项
|
|
147
|
+
*/
|
|
148
|
+
findRootOptions: FindTreeRootOptions<typeof RxDBChange, RxDBChangeTreeRuleGroup>;
|
|
149
|
+
/**
|
|
150
|
+
* 查询选项
|
|
151
|
+
*/
|
|
152
|
+
countRootOptions: FindTreeRootOptions<typeof RxDBChange, RxDBChangeTreeRuleGroup>;
|
|
153
|
+
/**
|
|
154
|
+
* 查询选项
|
|
155
|
+
*/
|
|
156
|
+
findDescendantsOptions: FindTreeOptions<typeof RxDBChange, RxDBChangeTreeRuleGroup>;
|
|
157
|
+
/**
|
|
158
|
+
* 查询选项
|
|
159
|
+
*/
|
|
160
|
+
countDescendantsOptions: FindTreeOptions<typeof RxDBChange, RxDBChangeTreeRuleGroup>;
|
|
161
|
+
/**
|
|
162
|
+
* 查询选项
|
|
163
|
+
*/
|
|
164
|
+
findAncestorsOptions: FindTreeOptions<typeof RxDBChange, RxDBChangeTreeRuleGroup>;
|
|
165
|
+
/**
|
|
166
|
+
* 查询选项
|
|
167
|
+
*/
|
|
168
|
+
countAncestorsOptions: FindTreeOptions<typeof RxDBChange, RxDBChangeTreeRuleGroup>;
|
|
169
|
+
}
|
|
170
|
+
/**
|
|
171
|
+
* 静态类型
|
|
172
|
+
*/
|
|
173
|
+
export interface RxDBBranchStaticTypes {
|
|
174
|
+
/**
|
|
175
|
+
* id 类型
|
|
176
|
+
*/
|
|
177
|
+
idType: string;
|
|
178
|
+
/**
|
|
179
|
+
* 查询选项
|
|
180
|
+
*/
|
|
181
|
+
getOptions: string;
|
|
182
|
+
/**
|
|
183
|
+
* 查询选项
|
|
184
|
+
*/
|
|
185
|
+
findOneOrFailOptions: FindOneOrFailOptions<typeof RxDBBranch, RxDBBranchRuleGroup, RxDBBranchOrderByField>;
|
|
186
|
+
/**
|
|
187
|
+
* 查询选项
|
|
188
|
+
*/
|
|
189
|
+
findOptions: FindOptions<typeof RxDBBranch, RxDBBranchRuleGroup, RxDBBranchOrderByField>;
|
|
190
|
+
/**
|
|
191
|
+
* 查询选项
|
|
192
|
+
*/
|
|
193
|
+
findOneOptions: FindOneOptions<typeof RxDBBranch, RxDBBranchRuleGroup, RxDBBranchOrderByField>;
|
|
194
|
+
/**
|
|
195
|
+
* 查询选项
|
|
196
|
+
*/
|
|
197
|
+
findAllOptions: FindAllOptions<typeof RxDBBranch, RxDBBranchRuleGroup, RxDBBranchOrderByField>;
|
|
198
|
+
/**
|
|
199
|
+
* 查询选项
|
|
200
|
+
*/
|
|
201
|
+
countOptions: CountOptions<typeof RxDBBranch, RxDBBranchRuleGroup>;
|
|
202
|
+
}
|
|
203
|
+
/**
|
|
204
|
+
* RxDBMigration
|
|
205
|
+
*/
|
|
206
|
+
export interface RxDBMigrationRepository {
|
|
207
|
+
count(options: CountOptions<typeof RxDBMigration, RxDBMigrationRuleGroup>): Observable<number>;
|
|
208
|
+
/**
|
|
209
|
+
* find 查询
|
|
210
|
+
* @param options 查询选项
|
|
211
|
+
*/
|
|
212
|
+
find(options: FindOptions<typeof RxDBMigration, RxDBMigrationRuleGroup, RxDBMigrationOrderByField>): Observable<RxDBMigration[]>;
|
|
213
|
+
/**
|
|
214
|
+
* findAll 查询
|
|
215
|
+
* @param options 查询选项
|
|
216
|
+
*/
|
|
217
|
+
findAll(options: FindAllOptions<typeof RxDBMigration, RxDBMigrationRuleGroup, RxDBMigrationOrderByField>): Observable<RxDBMigration[]>;
|
|
218
|
+
/**
|
|
219
|
+
* findOne 查询
|
|
220
|
+
* @param options 查询选项
|
|
221
|
+
*/
|
|
222
|
+
findOne(options: FindOneOptions<typeof RxDBMigration, RxDBMigrationRuleGroup, RxDBMigrationOrderByField>): Observable<RxDBMigration | undefined>;
|
|
223
|
+
/**
|
|
224
|
+
* findOneOrFail 查询
|
|
225
|
+
* @param options 查询选项
|
|
226
|
+
*/
|
|
227
|
+
findOneOrFail(options: FindOneOrFailOptions<typeof RxDBMigration, RxDBMigrationRuleGroup, RxDBMigrationOrderByField>): Observable<RxDBMigration>;
|
|
228
|
+
/**
|
|
229
|
+
* get 查询
|
|
230
|
+
* @param options 查询选项
|
|
231
|
+
*/
|
|
232
|
+
get(options: number): Observable<RxDBMigration>;
|
|
233
|
+
}
|
|
234
|
+
/**
|
|
235
|
+
* RxDBChange
|
|
236
|
+
*/
|
|
237
|
+
export interface RxDBChangeRepository {
|
|
238
|
+
/**
|
|
239
|
+
* count 查询
|
|
240
|
+
* @param options 查询选项
|
|
241
|
+
*/
|
|
242
|
+
count(options: CountOptions<typeof RxDBChange, RxDBChangeRuleGroup>): Observable<number>;
|
|
243
|
+
/**
|
|
244
|
+
* 查询祖先实体数量
|
|
245
|
+
* @param options 查询选项
|
|
246
|
+
*/
|
|
247
|
+
countAncestors(options?: FindTreeOptions<typeof RxDBChange, RxDBChangeTreeRuleGroup>): Observable<number>;
|
|
248
|
+
/**
|
|
249
|
+
* 查询子孙实体数量
|
|
250
|
+
* @param options 查询选项
|
|
251
|
+
*/
|
|
252
|
+
countDescendants(options?: FindTreeOptions<typeof RxDBChange, RxDBChangeTreeRuleGroup>): Observable<number>;
|
|
253
|
+
/**
|
|
254
|
+
* 查询子孙实体数量
|
|
255
|
+
* @param options 查询选项
|
|
256
|
+
*/
|
|
257
|
+
countRoot(options?: FindTreeRootOptions<typeof RxDBChange, RxDBChangeTreeRuleGroup>): Observable<number>;
|
|
258
|
+
/**
|
|
259
|
+
* find 查询
|
|
260
|
+
* @param options 查询选项
|
|
261
|
+
*/
|
|
262
|
+
find(options: FindOptions<typeof RxDBChange, RxDBChangeRuleGroup, RxDBChangeOrderByField>): Observable<RxDBChange[]>;
|
|
263
|
+
/**
|
|
264
|
+
* findAll 查询
|
|
265
|
+
* @param options 查询选项
|
|
266
|
+
*/
|
|
267
|
+
findAll(options: FindAllOptions<typeof RxDBChange, RxDBChangeRuleGroup, RxDBChangeOrderByField>): Observable<RxDBChange[]>;
|
|
268
|
+
/**
|
|
269
|
+
* 查询祖先实体
|
|
270
|
+
* @param options 查询选项
|
|
271
|
+
*/
|
|
272
|
+
findAncestors(options?: FindTreeOptions<typeof RxDBChange, RxDBChangeTreeRuleGroup>): Observable<RxDBChange[]>;
|
|
273
|
+
/**
|
|
274
|
+
* 查询子孙实体
|
|
275
|
+
* @param options 查询选项
|
|
276
|
+
*/
|
|
277
|
+
findDescendants(options?: FindTreeOptions<typeof RxDBChange, RxDBChangeTreeRuleGroup>): Observable<RxDBChange[]>;
|
|
278
|
+
/**
|
|
279
|
+
* findOne 查询
|
|
280
|
+
* @param options 查询选项
|
|
281
|
+
*/
|
|
282
|
+
findOne(options: FindOneOptions<typeof RxDBChange, RxDBChangeRuleGroup, RxDBChangeOrderByField>): Observable<RxDBChange | undefined>;
|
|
283
|
+
/**
|
|
284
|
+
* findOneOrFail 查询
|
|
285
|
+
* @param options 查询选项
|
|
286
|
+
*/
|
|
287
|
+
findOneOrFail(options: FindOneOrFailOptions<typeof RxDBChange, RxDBChangeRuleGroup, RxDBChangeOrderByField>): Observable<RxDBChange>;
|
|
288
|
+
/**
|
|
289
|
+
* 查询子孙实体
|
|
290
|
+
* @param options 查询选项
|
|
291
|
+
*/
|
|
292
|
+
findRoot(options?: FindTreeRootOptions<typeof RxDBChange, RxDBChangeTreeRuleGroup>): Observable<RxDBChange[]>;
|
|
293
|
+
/**
|
|
294
|
+
* get 查询
|
|
295
|
+
* @param options 查询选项
|
|
296
|
+
*/
|
|
297
|
+
get(options: number): Observable<RxDBChange>;
|
|
298
|
+
}
|
|
299
|
+
/**
|
|
300
|
+
* RxDBBranch
|
|
301
|
+
*/
|
|
302
|
+
export interface RxDBBranchRepository {
|
|
303
|
+
/**
|
|
304
|
+
* count 查询
|
|
305
|
+
* @param options 查询选项
|
|
306
|
+
*/
|
|
307
|
+
count(options: CountOptions<typeof RxDBBranch, RxDBBranchRuleGroup>): Observable<number>;
|
|
308
|
+
/**
|
|
309
|
+
* find 查询
|
|
310
|
+
* @param options 查询选项
|
|
311
|
+
*/
|
|
312
|
+
find(options: FindOptions<typeof RxDBBranch, RxDBBranchRuleGroup, RxDBBranchOrderByField>): Observable<RxDBBranch[]>;
|
|
313
|
+
/**
|
|
314
|
+
* findAll 查询
|
|
315
|
+
* @param options 查询选项
|
|
316
|
+
*/
|
|
317
|
+
findAll(options: FindAllOptions<typeof RxDBBranch, RxDBBranchRuleGroup, RxDBBranchOrderByField>): Observable<RxDBBranch[]>;
|
|
318
|
+
/**
|
|
319
|
+
* findOne 查询
|
|
320
|
+
* @param options 查询选项
|
|
321
|
+
*/
|
|
322
|
+
findOne(options: FindOneOptions<typeof RxDBBranch, RxDBBranchRuleGroup, RxDBBranchOrderByField>): Observable<RxDBBranch | undefined>;
|
|
323
|
+
/**
|
|
324
|
+
* findOneOrFail 查询
|
|
325
|
+
* @param options 查询选项
|
|
326
|
+
*/
|
|
327
|
+
findOneOrFail(options: FindOneOrFailOptions<typeof RxDBBranch, RxDBBranchRuleGroup, RxDBBranchOrderByField>): Observable<RxDBBranch>;
|
|
328
|
+
/**
|
|
329
|
+
* get 查询
|
|
330
|
+
* @param options 查询选项
|
|
331
|
+
*/
|
|
332
|
+
get(options: string): Observable<RxDBBranch>;
|
|
333
|
+
}
|
|
334
|
+
export {};
|
|
335
|
+
//# sourceMappingURL=types.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/system/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,MAAM,CAAC;AACvC,OAAO,KAAK,EAAE,IAAI,EAAE,MAAM,+BAA+B,CAAC;AAC1D,OAAO,KAAK,EACV,YAAY,EACZ,cAAc,EACd,cAAc,EACd,oBAAoB,EACpB,WAAW,EACZ,MAAM,0CAA0C,CAAC;AAClD,OAAO,KAAK,EACV,YAAY,EACZ,SAAS,EACT,WAAW,EACX,eAAe,EACf,WAAW,EACX,SAAS,EACV,MAAM,kCAAkC,CAAC;AAC1C,OAAO,KAAK,EACV,oBAAoB,EACpB,iBAAiB,EACjB,mBAAmB,EACnB,mBAAmB,EACnB,iBAAiB,EAClB,MAAM,2CAA2C,CAAC;AACnD,OAAO,KAAK,EAAE,eAAe,EAAE,mBAAmB,EAAE,MAAM,4CAA4C,CAAC;AACvG,OAAO,EAAE,UAAU,EAAE,MAAM,aAAa,CAAC;AACzC,OAAO,EAAE,UAAU,EAAE,MAAM,aAAa,CAAC;AACzC,OAAO,EAAE,aAAa,EAAE,MAAM,gBAAgB,CAAC;AAE/C;;GAEG;AACH,KAAK,iBAAiB,GAClB,WAAW,CAAC,aAAa,EAAE,IAAI,CAAC,GAChC,WAAW,CAAC,aAAa,EAAE,MAAM,CAAC,GAClC,SAAS,CAAC,aAAa,EAAE,YAAY,CAAC,CAAC;AAE3C;;GAEG;AACH,KAAK,sBAAsB,GAAG,eAAe,CAAC,OAAO,aAAa,EAAE,IAAI,GAAG,MAAM,GAAG,YAAY,EAAE,iBAAiB,CAAC,CAAC;AAErH;;GAEG;AACH,KAAK,yBAAyB,GAAG,IAAI,GAAG,MAAM,GAAG,YAAY,CAAC;AAE9D;;GAEG;AACH,KAAK,cAAc,GACf,WAAW,CAAC,UAAU,EAAE,IAAI,CAAC,GAC7B,WAAW,CAAC,UAAU,EAAE,MAAM,CAAC,GAC/B,SAAS,CAAC,UAAU,EAAE,eAAe,CAAC,GACtC,WAAW,CAAC,UAAU,EAAE,WAAW,CAAC,GACpC,WAAW,CAAC,UAAU,EAAE,QAAQ,CAAC,GACjC,SAAS,CAAC,UAAU,EAAE,UAAU,CAAC,GACjC,SAAS,CAAC,UAAU,EAAE,WAAW,CAAC,GAClC,SAAS,CAAC,UAAU,EAAE,WAAW,CAAC,GAClC,SAAS,CAAC,UAAU,EAAE,iBAAiB,CAAC,GACxC,WAAW,CAAC,UAAU,EAAE,gBAAgB,CAAC,GACzC,SAAS,CAAC,UAAU,EAAE,UAAU,CAAC,GACjC,SAAS,CAAC,UAAU,EAAE,UAAU,CAAC,GACjC,mBAAmB,CAAC,aAAa,EAAE,GAAG,CAAC,GACvC,mBAAmB,CAAC,eAAe,EAAE,MAAM,CAAC,GAC5C,iBAAiB,CAAC,wBAAwB,EAAE,IAAI,GAAG,IAAI,CAAC,GACxD,mBAAmB,CAAC,oBAAoB,EAAE,MAAM,GAAG,IAAI,CAAC,GACxD,mBAAmB,CAAC,iBAAiB,EAAE,MAAM,GAAG,IAAI,CAAC,GACrD,iBAAiB,CAAC,mBAAmB,EAAE,IAAI,GAAG,IAAI,CAAC,GACnD,iBAAiB,CAAC,oBAAoB,EAAE,IAAI,GAAG,IAAI,CAAC,GACpD,iBAAiB,CAAC,oBAAoB,EAAE,IAAI,GAAG,IAAI,CAAC,GACpD,iBAAiB,CAAC,0BAA0B,EAAE,IAAI,GAAG,IAAI,CAAC,GAC1D,mBAAmB,CAAC,yBAAyB,EAAE,GAAG,GAAG,IAAI,CAAC,GAC1D,mBAAmB,CAAC,WAAW,EAAE,GAAG,CAAC,GACrC,mBAAmB,CAAC,aAAa,EAAE,MAAM,CAAC,GAC1C,iBAAiB,CAAC,sBAAsB,EAAE,IAAI,GAAG,IAAI,CAAC,GACtD,mBAAmB,CAAC,kBAAkB,EAAE,MAAM,GAAG,IAAI,CAAC,GACtD,mBAAmB,CAAC,eAAe,EAAE,MAAM,GAAG,IAAI,CAAC,GACnD,iBAAiB,CAAC,iBAAiB,EAAE,IAAI,GAAG,IAAI,CAAC,GACjD,iBAAiB,CAAC,kBAAkB,EAAE,IAAI,GAAG,IAAI,CAAC,GAClD,iBAAiB,CAAC,kBAAkB,EAAE,IAAI,GAAG,IAAI,CAAC,GAClD,iBAAiB,CAAC,wBAAwB,EAAE,IAAI,GAAG,IAAI,CAAC,GACxD,mBAAmB,CAAC,uBAAuB,EAAE,GAAG,GAAG,IAAI,CAAC,GACxD,mBAAmB,CAAC,WAAW,EAAE,MAAM,CAAC,GACxC,oBAAoB,CAAC,kBAAkB,EAAE,OAAO,CAAC,GACjD,oBAAoB,CAAC,cAAc,EAAE,OAAO,CAAC,GAC7C,oBAAoB,CAAC,eAAe,EAAE,OAAO,CAAC,CAAC;AAEnD;;GAEG;AACH,KAAK,mBAAmB,GAAG,eAAe,CACxC,OAAO,UAAU,EACf,IAAI,GACJ,MAAM,GACN,eAAe,GACf,WAAW,GACX,QAAQ,GACR,UAAU,GACV,WAAW,GACX,WAAW,GACX,iBAAiB,GACjB,gBAAgB,GAChB,UAAU,GACV,UAAU,GACV,aAAa,GACb,eAAe,GACf,wBAAwB,GACxB,oBAAoB,GACpB,iBAAiB,GACjB,mBAAmB,GACnB,oBAAoB,GACpB,oBAAoB,GACpB,0BAA0B,GAC1B,yBAAyB,GACzB,UAAU,GACV,UAAU,GACV,WAAW,GACX,aAAa,GACb,sBAAsB,GACtB,kBAAkB,GAClB,eAAe,GACf,iBAAiB,GACjB,kBAAkB,GAClB,kBAAkB,GAClB,wBAAwB,GACxB,uBAAuB,GACvB,UAAU,GACV,UAAU,GACV,WAAW,GACX,kBAAkB,GAClB,cAAc,GACd,eAAe,EACjB,cAAc,CACf,CAAC;AAEF;;GAEG;AACH,OAAO,MAAM,sBAAsB,GAC/B,IAAI,GACJ,MAAM,GACN,eAAe,GACf,WAAW,GACX,QAAQ,GACR,UAAU,GACV,cAAc,GACd,OAAO,GACP,WAAW,GACX,WAAW,GACX,iBAAiB,GACjB,gBAAgB,CAAC;AAErB;;GAEG;AACH,OAAO,MAAM,kBAAkB,GAC3B,mBAAmB,CAAC,eAAe,EAAE,MAAM,CAAC,GAC5C,iBAAiB,CAAC,wBAAwB,EAAE,IAAI,GAAG,IAAI,CAAC,GACxD,mBAAmB,CAAC,oBAAoB,EAAE,MAAM,GAAG,IAAI,CAAC,GACxD,mBAAmB,CAAC,iBAAiB,EAAE,MAAM,GAAG,IAAI,CAAC,GACrD,iBAAiB,CAAC,mBAAmB,EAAE,IAAI,GAAG,IAAI,CAAC,GACnD,iBAAiB,CAAC,oBAAoB,EAAE,IAAI,GAAG,IAAI,CAAC,GACpD,iBAAiB,CAAC,oBAAoB,EAAE,IAAI,GAAG,IAAI,CAAC,GACpD,iBAAiB,CAAC,0BAA0B,EAAE,IAAI,GAAG,IAAI,CAAC,GAC1D,mBAAmB,CAAC,yBAAyB,EAAE,GAAG,GAAG,IAAI,CAAC,CAAC;AAE/D;;GAEG;AACH,MAAM,CAAC,OAAO,MAAM,uBAAuB,GAAG,eAAe,CAC3D,OAAO,UAAU,EACf,eAAe,GACf,wBAAwB,GACxB,oBAAoB,GACpB,iBAAiB,GACjB,mBAAmB,GACnB,oBAAoB,GACpB,oBAAoB,GACpB,0BAA0B,GAC1B,yBAAyB,EAC3B,kBAAkB,CACnB,CAAC;AAEF;;GAEG;AACH,OAAO,MAAM,cAAc,GACvB,WAAW,CAAC,UAAU,EAAE,IAAI,CAAC,GAC7B,YAAY,CAAC,UAAU,EAAE,WAAW,CAAC,GACrC,YAAY,CAAC,UAAU,EAAE,OAAO,CAAC,GACjC,YAAY,CAAC,UAAU,EAAE,QAAQ,CAAC,GAClC,mBAAmB,CAAC,YAAY,EAAE,GAAG,CAAC,GACtC,mBAAmB,CAAC,cAAc,EAAE,MAAM,CAAC,GAC3C,iBAAiB,CAAC,uBAAuB,EAAE,IAAI,GAAG,IAAI,CAAC,GACvD,mBAAmB,CAAC,mBAAmB,EAAE,MAAM,GAAG,IAAI,CAAC,GACvD,mBAAmB,CAAC,gBAAgB,EAAE,MAAM,GAAG,IAAI,CAAC,GACpD,iBAAiB,CAAC,kBAAkB,EAAE,IAAI,GAAG,IAAI,CAAC,GAClD,iBAAiB,CAAC,mBAAmB,EAAE,IAAI,GAAG,IAAI,CAAC,GACnD,iBAAiB,CAAC,mBAAmB,EAAE,IAAI,GAAG,IAAI,CAAC,GACnD,iBAAiB,CAAC,yBAAyB,EAAE,IAAI,GAAG,IAAI,CAAC,GACzD,mBAAmB,CAAC,wBAAwB,EAAE,GAAG,GAAG,IAAI,CAAC,GACzD,SAAS,CAAC,UAAU,EAAE,UAAU,CAAC,GACjC,SAAS,CAAC,UAAU,EAAE,UAAU,CAAC,GACjC,mBAAmB,CAAC,qBAAqB,EAAE,GAAG,CAAC,GAC/C,mBAAmB,CAAC,uBAAuB,EAAE,MAAM,CAAC,GACpD,iBAAiB,CAAC,gCAAgC,EAAE,IAAI,GAAG,IAAI,CAAC,GAChE,mBAAmB,CAAC,4BAA4B,EAAE,MAAM,GAAG,IAAI,CAAC,GAChE,mBAAmB,CAAC,yBAAyB,EAAE,MAAM,GAAG,IAAI,CAAC,GAC7D,iBAAiB,CAAC,2BAA2B,EAAE,IAAI,GAAG,IAAI,CAAC,GAC3D,iBAAiB,CAAC,4BAA4B,EAAE,IAAI,GAAG,IAAI,CAAC,GAC5D,iBAAiB,CAAC,4BAA4B,EAAE,IAAI,GAAG,IAAI,CAAC,GAC5D,iBAAiB,CAAC,kCAAkC,EAAE,IAAI,GAAG,IAAI,CAAC,GAClE,mBAAmB,CAAC,iCAAiC,EAAE,GAAG,GAAG,IAAI,CAAC,GAClE,mBAAmB,CAAC,mBAAmB,EAAE,GAAG,CAAC,GAC7C,mBAAmB,CAAC,qBAAqB,EAAE,MAAM,CAAC,GAClD,iBAAiB,CAAC,8BAA8B,EAAE,IAAI,GAAG,IAAI,CAAC,GAC9D,mBAAmB,CAAC,0BAA0B,EAAE,MAAM,GAAG,IAAI,CAAC,GAC9D,mBAAmB,CAAC,uBAAuB,EAAE,MAAM,GAAG,IAAI,CAAC,GAC3D,iBAAiB,CAAC,yBAAyB,EAAE,IAAI,GAAG,IAAI,CAAC,GACzD,iBAAiB,CAAC,0BAA0B,EAAE,IAAI,GAAG,IAAI,CAAC,GAC1D,iBAAiB,CAAC,0BAA0B,EAAE,IAAI,GAAG,IAAI,CAAC,GAC1D,iBAAiB,CAAC,gCAAgC,EAAE,IAAI,GAAG,IAAI,CAAC,GAChE,mBAAmB,CAAC,+BAA+B,EAAE,GAAG,GAAG,IAAI,CAAC,CAAC;AAErE;;GAEG;AACH,MAAM,CAAC,OAAO,MAAM,mBAAmB,GAAG,eAAe,CACvD,OAAO,UAAU,EACf,IAAI,GACJ,WAAW,GACX,OAAO,GACP,QAAQ,GACR,YAAY,GACZ,cAAc,GACd,uBAAuB,GACvB,mBAAmB,GACnB,gBAAgB,GAChB,kBAAkB,GAClB,mBAAmB,GACnB,mBAAmB,GACnB,yBAAyB,GACzB,wBAAwB,GACxB,UAAU,GACV,UAAU,GACV,qBAAqB,GACrB,uBAAuB,GACvB,gCAAgC,GAChC,4BAA4B,GAC5B,yBAAyB,GACzB,2BAA2B,GAC3B,4BAA4B,GAC5B,4BAA4B,GAC5B,kCAAkC,GAClC,iCAAiC,GACjC,UAAU,GACV,UAAU,GACV,mBAAmB,GACnB,qBAAqB,GACrB,8BAA8B,GAC9B,0BAA0B,GAC1B,uBAAuB,GACvB,yBAAyB,GACzB,0BAA0B,GAC1B,0BAA0B,GAC1B,gCAAgC,GAChC,+BAA+B,GAC/B,UAAU,GACV,UAAU,EACZ,cAAc,CACf,CAAC;AAEF;;GAEG;AACH,KAAK,sBAAsB,GAAG,IAAI,GAAG,WAAW,GAAG,OAAO,GAAG,QAAQ,CAAC;AAEtE;;GAEG;AACH,OAAO,QAAQ,YAAY,CAAC;IAC1B;;OAEG;IACH,UAAU,IAAI;QACZ;;WAEG;QACH,aAAa,EAAE,OAAO,aAAa,CAAC;QACpC;;WAEG;QACH,UAAU,EAAE,OAAO,UAAU,CAAC;QAC9B;;WAEG;QACH,UAAU,EAAE,OAAO,UAAU,CAAC;KAC/B;CACF;AAED;;GAEG;AACH,MAAM,WAAW,wBAAwB;IACvC;;OAEG;IACH,MAAM,EAAE,MAAM,CAAC;IACf;;OAEG;IACH,UAAU,EAAE,MAAM,CAAC;IACnB;;OAEG;IACH,oBAAoB,EAAE,oBAAoB,CAAC,OAAO,aAAa,EAAE,sBAAsB,EAAE,yBAAyB,CAAC,CAAC;IACpH;;OAEG;IACH,WAAW,EAAE,WAAW,CAAC,OAAO,aAAa,EAAE,sBAAsB,EAAE,yBAAyB,CAAC,CAAC;IAClG;;OAEG;IACH,cAAc,EAAE,cAAc,CAAC,OAAO,aAAa,EAAE,sBAAsB,EAAE,yBAAyB,CAAC,CAAC;IACxG;;OAEG;IACH,cAAc,EAAE,cAAc,CAAC,OAAO,aAAa,EAAE,sBAAsB,EAAE,yBAAyB,CAAC,CAAC;IACxG;;OAEG;IACH,YAAY,EAAE,YAAY,CAAC,OAAO,aAAa,EAAE,sBAAsB,CAAC,CAAC;CAC1E;AAED;;GAEG;AACH,MAAM,WAAW,qBAAqB;IACpC;;OAEG;IACH,MAAM,EAAE,MAAM,CAAC;IACf;;OAEG;IACH,UAAU,EAAE,MAAM,CAAC;IACnB;;OAEG;IACH,oBAAoB,EAAE,oBAAoB,CAAC,OAAO,UAAU,EAAE,mBAAmB,EAAE,sBAAsB,CAAC,CAAC;IAC3G;;OAEG;IACH,WAAW,EAAE,WAAW,CAAC,OAAO,UAAU,EAAE,mBAAmB,EAAE,sBAAsB,CAAC,CAAC;IACzF;;OAEG;IACH,cAAc,EAAE,cAAc,CAAC,OAAO,UAAU,EAAE,mBAAmB,EAAE,sBAAsB,CAAC,CAAC;IAC/F;;OAEG;IACH,cAAc,EAAE,cAAc,CAAC,OAAO,UAAU,EAAE,mBAAmB,EAAE,sBAAsB,CAAC,CAAC;IAC/F;;OAEG;IACH,YAAY,EAAE,YAAY,CAAC,OAAO,UAAU,EAAE,mBAAmB,CAAC,CAAC;IACnE;;OAEG;IACH,MAAM,EAAE,UAAU,CAAC;IACnB;;OAEG;IACH,eAAe,EAAE,mBAAmB,CAAC,OAAO,UAAU,EAAE,uBAAuB,CAAC,CAAC;IACjF;;OAEG;IACH,gBAAgB,EAAE,mBAAmB,CAAC,OAAO,UAAU,EAAE,uBAAuB,CAAC,CAAC;IAClF;;OAEG;IACH,sBAAsB,EAAE,eAAe,CAAC,OAAO,UAAU,EAAE,uBAAuB,CAAC,CAAC;IACpF;;OAEG;IACH,uBAAuB,EAAE,eAAe,CAAC,OAAO,UAAU,EAAE,uBAAuB,CAAC,CAAC;IACrF;;OAEG;IACH,oBAAoB,EAAE,eAAe,CAAC,OAAO,UAAU,EAAE,uBAAuB,CAAC,CAAC;IAClF;;OAEG;IACH,qBAAqB,EAAE,eAAe,CAAC,OAAO,UAAU,EAAE,uBAAuB,CAAC,CAAC;CACpF;AAED;;GAEG;AACH,MAAM,WAAW,qBAAqB;IACpC;;OAEG;IACH,MAAM,EAAE,MAAM,CAAC;IACf;;OAEG;IACH,UAAU,EAAE,MAAM,CAAC;IACnB;;OAEG;IACH,oBAAoB,EAAE,oBAAoB,CAAC,OAAO,UAAU,EAAE,mBAAmB,EAAE,sBAAsB,CAAC,CAAC;IAC3G;;OAEG;IACH,WAAW,EAAE,WAAW,CAAC,OAAO,UAAU,EAAE,mBAAmB,EAAE,sBAAsB,CAAC,CAAC;IACzF;;OAEG;IACH,cAAc,EAAE,cAAc,CAAC,OAAO,UAAU,EAAE,mBAAmB,EAAE,sBAAsB,CAAC,CAAC;IAC/F;;OAEG;IACH,cAAc,EAAE,cAAc,CAAC,OAAO,UAAU,EAAE,mBAAmB,EAAE,sBAAsB,CAAC,CAAC;IAC/F;;OAEG;IACH,YAAY,EAAE,YAAY,CAAC,OAAO,UAAU,EAAE,mBAAmB,CAAC,CAAC;CACpE;AAED;;GAEG;AACH,MAAM,WAAW,uBAAuB;IACtC,KAAK,CAAC,OAAO,EAAE,YAAY,CAAC,OAAO,aAAa,EAAE,sBAAsB,CAAC,GAAG,UAAU,CAAC,MAAM,CAAC,CAAC;IAC/F;;;OAGG;IACH,IAAI,CACF,OAAO,EAAE,WAAW,CAAC,OAAO,aAAa,EAAE,sBAAsB,EAAE,yBAAyB,CAAC,GAC5F,UAAU,CAAC,aAAa,EAAE,CAAC,CAAC;IAC/B;;;OAGG;IACH,OAAO,CACL,OAAO,EAAE,cAAc,CAAC,OAAO,aAAa,EAAE,sBAAsB,EAAE,yBAAyB,CAAC,GAC/F,UAAU,CAAC,aAAa,EAAE,CAAC,CAAC;IAC/B;;;OAGG;IACH,OAAO,CACL,OAAO,EAAE,cAAc,CAAC,OAAO,aAAa,EAAE,sBAAsB,EAAE,yBAAyB,CAAC,GAC/F,UAAU,CAAC,aAAa,GAAG,SAAS,CAAC,CAAC;IACzC;;;OAGG;IACH,aAAa,CACX,OAAO,EAAE,oBAAoB,CAAC,OAAO,aAAa,EAAE,sBAAsB,EAAE,yBAAyB,CAAC,GACrG,UAAU,CAAC,aAAa,CAAC,CAAC;IAC7B;;;OAGG;IACH,GAAG,CAAC,OAAO,EAAE,MAAM,GAAG,UAAU,CAAC,aAAa,CAAC,CAAC;CACjD;AAED;;GAEG;AACH,MAAM,WAAW,oBAAoB;IACnC;;;OAGG;IACH,KAAK,CAAC,OAAO,EAAE,YAAY,CAAC,OAAO,UAAU,EAAE,mBAAmB,CAAC,GAAG,UAAU,CAAC,MAAM,CAAC,CAAC;IACzF;;;OAGG;IACH,cAAc,CAAC,OAAO,CAAC,EAAE,eAAe,CAAC,OAAO,UAAU,EAAE,uBAAuB,CAAC,GAAG,UAAU,CAAC,MAAM,CAAC,CAAC;IAC1G;;;OAGG;IACH,gBAAgB,CAAC,OAAO,CAAC,EAAE,eAAe,CAAC,OAAO,UAAU,EAAE,uBAAuB,CAAC,GAAG,UAAU,CAAC,MAAM,CAAC,CAAC;IAC5G;;;OAGG;IACH,SAAS,CAAC,OAAO,CAAC,EAAE,mBAAmB,CAAC,OAAO,UAAU,EAAE,uBAAuB,CAAC,GAAG,UAAU,CAAC,MAAM,CAAC,CAAC;IACzG;;;OAGG;IACH,IAAI,CAAC,OAAO,EAAE,WAAW,CAAC,OAAO,UAAU,EAAE,mBAAmB,EAAE,sBAAsB,CAAC,GAAG,UAAU,CAAC,UAAU,EAAE,CAAC,CAAC;IACrH;;;OAGG;IACH,OAAO,CACL,OAAO,EAAE,cAAc,CAAC,OAAO,UAAU,EAAE,mBAAmB,EAAE,sBAAsB,CAAC,GACtF,UAAU,CAAC,UAAU,EAAE,CAAC,CAAC;IAC5B;;;OAGG;IACH,aAAa,CAAC,OAAO,CAAC,EAAE,eAAe,CAAC,OAAO,UAAU,EAAE,uBAAuB,CAAC,GAAG,UAAU,CAAC,UAAU,EAAE,CAAC,CAAC;IAC/G;;;OAGG;IACH,eAAe,CAAC,OAAO,CAAC,EAAE,eAAe,CAAC,OAAO,UAAU,EAAE,uBAAuB,CAAC,GAAG,UAAU,CAAC,UAAU,EAAE,CAAC,CAAC;IACjH;;;OAGG;IACH,OAAO,CACL,OAAO,EAAE,cAAc,CAAC,OAAO,UAAU,EAAE,mBAAmB,EAAE,sBAAsB,CAAC,GACtF,UAAU,CAAC,UAAU,GAAG,SAAS,CAAC,CAAC;IACtC;;;OAGG;IACH,aAAa,CACX,OAAO,EAAE,oBAAoB,CAAC,OAAO,UAAU,EAAE,mBAAmB,EAAE,sBAAsB,CAAC,GAC5F,UAAU,CAAC,UAAU,CAAC,CAAC;IAC1B;;;OAGG;IACH,QAAQ,CAAC,OAAO,CAAC,EAAE,mBAAmB,CAAC,OAAO,UAAU,EAAE,uBAAuB,CAAC,GAAG,UAAU,CAAC,UAAU,EAAE,CAAC,CAAC;IAC9G;;;OAGG;IACH,GAAG,CAAC,OAAO,EAAE,MAAM,GAAG,UAAU,CAAC,UAAU,CAAC,CAAC;CAC9C;AAED;;GAEG;AACH,MAAM,WAAW,oBAAoB;IACnC;;;OAGG;IACH,KAAK,CAAC,OAAO,EAAE,YAAY,CAAC,OAAO,UAAU,EAAE,mBAAmB,CAAC,GAAG,UAAU,CAAC,MAAM,CAAC,CAAC;IACzF;;;OAGG;IACH,IAAI,CAAC,OAAO,EAAE,WAAW,CAAC,OAAO,UAAU,EAAE,mBAAmB,EAAE,sBAAsB,CAAC,GAAG,UAAU,CAAC,UAAU,EAAE,CAAC,CAAC;IACrH;;;OAGG;IACH,OAAO,CACL,OAAO,EAAE,cAAc,CAAC,OAAO,UAAU,EAAE,mBAAmB,EAAE,sBAAsB,CAAC,GACtF,UAAU,CAAC,UAAU,EAAE,CAAC,CAAC;IAC5B;;;OAGG;IACH,OAAO,CACL,OAAO,EAAE,cAAc,CAAC,OAAO,UAAU,EAAE,mBAAmB,EAAE,sBAAsB,CAAC,GACtF,UAAU,CAAC,UAAU,GAAG,SAAS,CAAC,CAAC;IACtC;;;OAGG;IACH,aAAa,CACX,OAAO,EAAE,oBAAoB,CAAC,OAAO,UAAU,EAAE,mBAAmB,EAAE,sBAAsB,CAAC,GAC5F,UAAU,CAAC,UAAU,CAAC,CAAC;IAC1B;;;OAGG;IACH,GAAG,CAAC,OAAO,EAAE,MAAM,GAAG,UAAU,CAAC,UAAU,CAAC,CAAC;CAC9C"}
|
package/package.json
CHANGED
|
@@ -1,19 +1,33 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aiao/rxdb",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.4",
|
|
4
4
|
"type": "module",
|
|
5
|
-
"main": "./index.js",
|
|
6
|
-
"
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
"
|
|
10
|
-
"
|
|
5
|
+
"main": "./dist/index.js",
|
|
6
|
+
"module": "./dist/index.js",
|
|
7
|
+
"types": "./dist/index.d.ts",
|
|
8
|
+
"exports": {
|
|
9
|
+
"./package.json": "./package.json",
|
|
10
|
+
".": {
|
|
11
|
+
"@aiao/source": "./src/index.ts",
|
|
12
|
+
"types": "./dist/index.d.ts",
|
|
13
|
+
"import": "./dist/index.js",
|
|
14
|
+
"default": "./dist/index.js"
|
|
15
|
+
}
|
|
11
16
|
},
|
|
12
|
-
"
|
|
13
|
-
"
|
|
14
|
-
"
|
|
17
|
+
"files": [
|
|
18
|
+
"dist",
|
|
19
|
+
"!**/*.tsbuildinfo"
|
|
20
|
+
],
|
|
21
|
+
"nx": {
|
|
22
|
+
"name": "rxdb",
|
|
23
|
+
"tags": [
|
|
24
|
+
"js-lib"
|
|
25
|
+
]
|
|
15
26
|
},
|
|
16
|
-
"
|
|
17
|
-
"
|
|
27
|
+
"dependencies": {
|
|
28
|
+
"rxjs": "^7.8.2",
|
|
29
|
+
"type-fest": "^4.41.0",
|
|
30
|
+
"uuid": "^13.0.0",
|
|
31
|
+
"@aiao/utils": "0.0.4"
|
|
18
32
|
}
|
|
19
33
|
}
|
package/index.d.ts
DELETED
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
export * from './entity/@Entity';
|
|
2
|
-
export * from './entity/@TreeEntity';
|
|
3
|
-
export * from './entity/entity-metadata-options.interface';
|
|
4
|
-
export * from './entity/entity-metadata.interface';
|
|
5
|
-
export * from './entity/entity.interface';
|
|
6
|
-
export * from './entity/entity.utils';
|
|
7
|
-
export { isEntityInternalName } from './entity/entity.utils';
|
|
8
|
-
export * from './entity/EntityBase';
|
|
9
|
-
export { transitionMetadata } from './entity/transition-metadata';
|
|
10
|
-
export * from './entity/TreeEntityBase';
|
|
11
|
-
export * from './repository/query-options.interface';
|
|
12
|
-
export * from './repository/query.interface';
|
|
13
|
-
export * from './repository/query.utils';
|
|
14
|
-
export * from './repository/repository.interface';
|
|
15
|
-
export * from './repository/RepositoryBase';
|
|
16
|
-
export * from './repository/tree-query-options.interface';
|
|
17
|
-
export * from './repository/tree-repository.interface';
|
|
18
|
-
export * from './RxDB';
|
|
19
|
-
export * from './rxdb-adapter';
|
|
20
|
-
export * from './rxdb-events';
|
|
21
|
-
export * from './rxdb-plugin';
|
|
22
|
-
export * from './rxdb-utils';
|
|
23
|
-
export * from './rxdb.interface';
|
|
24
|
-
export * from './RxDBError';
|
|
25
|
-
export * from './system/change';
|
|
26
|
-
export * from './system/migration';
|