@aiao/rxdb-test 0.0.8 → 0.0.9
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.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/system/index.d.ts +95 -95
- package/dist/system/index.js +10 -11
- package/package.json +6 -3
package/dist/index.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const version = "0.0.
|
|
1
|
+
export declare const version = "0.0.8";
|
|
2
2
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.js
CHANGED
package/dist/system/index.d.ts
CHANGED
|
@@ -4,18 +4,18 @@ import { Observable } from 'rxjs';
|
|
|
4
4
|
/**
|
|
5
5
|
* rule
|
|
6
6
|
*/
|
|
7
|
-
declare type
|
|
8
|
-
| StringRules<
|
|
9
|
-
| StringRules<
|
|
10
|
-
| StringRules<
|
|
11
|
-
| NumberRules<
|
|
12
|
-
| DateRules<
|
|
13
|
-
| DateRules<
|
|
14
|
-
| NumberRules<
|
|
15
|
-
| BooleanRules<
|
|
16
|
-
| DateRules<
|
|
17
|
-
| DateRules<
|
|
18
|
-
| StringRules<
|
|
7
|
+
declare type RxDBSyncRule = StringRules<RxDBSync, 'id'>
|
|
8
|
+
| StringRules<RxDBSync, 'namespace'>
|
|
9
|
+
| StringRules<RxDBSync, 'entity'>
|
|
10
|
+
| StringRules<RxDBSync, 'syncType'>
|
|
11
|
+
| NumberRules<RxDBSync, 'lastPushedChangeId'>
|
|
12
|
+
| DateRules<RxDBSync, 'lastPushedAt'>
|
|
13
|
+
| DateRules<RxDBSync, 'lastPulledAt'>
|
|
14
|
+
| NumberRules<RxDBSync, 'lastPullRemoteChangeId'>
|
|
15
|
+
| BooleanRules<RxDBSync, 'enabled'>
|
|
16
|
+
| DateRules<RxDBSync, 'createdAt'>
|
|
17
|
+
| DateRules<RxDBSync, 'updatedAt'>
|
|
18
|
+
| StringRules<RxDBSync, 'branchId'>
|
|
19
19
|
| RelationExistsRules<'branch', RxDBBranchRuleGroup>
|
|
20
20
|
| RelationStringRules<'branch.id', string>
|
|
21
21
|
| RelationBooleanRules<'branch.activated', boolean>
|
|
@@ -56,7 +56,7 @@ declare type RxDBRepositorySyncRule = StringRules<RxDBRepositorySync, 'id'>
|
|
|
56
56
|
/**
|
|
57
57
|
* RuleGroupBase
|
|
58
58
|
*/
|
|
59
|
-
export declare type
|
|
59
|
+
export declare type RxDBSyncRuleGroup = RuleGroupBase<typeof RxDBSync,
|
|
60
60
|
|'id'
|
|
61
61
|
|'namespace'
|
|
62
62
|
|'entity'
|
|
@@ -107,12 +107,12 @@ export declare type RxDBRepositorySyncRuleGroup = RuleGroupBase<typeof RxDBRepos
|
|
|
107
107
|
|'branch.parent.createdAt'
|
|
108
108
|
|'branch.parent.updatedAt'
|
|
109
109
|
|'parentId',
|
|
110
|
-
|
|
110
|
+
RxDBSyncRule>;
|
|
111
111
|
|
|
112
112
|
/**
|
|
113
113
|
* OrderByField
|
|
114
114
|
*/
|
|
115
|
-
declare type
|
|
115
|
+
declare type RxDBSyncOrderByField = "id" | "namespace" | "entity" | "syncType" | "lastPushedChangeId" | "lastPushedAt" | "lastPulledAt" | "lastPullRemoteChangeId" | "enabled" | "createdAt" | "updatedAt";
|
|
116
116
|
|
|
117
117
|
/**
|
|
118
118
|
* rule
|
|
@@ -160,18 +160,18 @@ declare type RxDBChangeRule = NumberRules<RxDBChange, 'id'>
|
|
|
160
160
|
| RelationDateRules<'branch.createdAt', Date | null>
|
|
161
161
|
| RelationDateRules<'branch.updatedAt', Date | null>
|
|
162
162
|
| StringRules<RxDBBranch, 'parentId'>
|
|
163
|
-
| RelationStringRules<'branch.
|
|
164
|
-
| RelationStringRules<'branch.
|
|
165
|
-
| RelationStringRules<'branch.
|
|
166
|
-
| RelationStringRules<'branch.
|
|
167
|
-
| RelationNumberRules<'branch.
|
|
168
|
-
| RelationDateRules<'branch.
|
|
169
|
-
| RelationDateRules<'branch.
|
|
170
|
-
| RelationNumberRules<'branch.
|
|
171
|
-
| RelationBooleanRules<'branch.
|
|
172
|
-
| RelationDateRules<'branch.
|
|
173
|
-
| RelationDateRules<'branch.
|
|
174
|
-
| StringRules<
|
|
163
|
+
| RelationStringRules<'branch.syncs.id', string>
|
|
164
|
+
| RelationStringRules<'branch.syncs.namespace', string>
|
|
165
|
+
| RelationStringRules<'branch.syncs.entity', string>
|
|
166
|
+
| RelationStringRules<'branch.syncs.syncType', string>
|
|
167
|
+
| RelationNumberRules<'branch.syncs.lastPushedChangeId', number | null>
|
|
168
|
+
| RelationDateRules<'branch.syncs.lastPushedAt', Date | null>
|
|
169
|
+
| RelationDateRules<'branch.syncs.lastPulledAt', Date | null>
|
|
170
|
+
| RelationNumberRules<'branch.syncs.lastPullRemoteChangeId', number | null>
|
|
171
|
+
| RelationBooleanRules<'branch.syncs.enabled', boolean>
|
|
172
|
+
| RelationDateRules<'branch.syncs.createdAt', Date | null>
|
|
173
|
+
| RelationDateRules<'branch.syncs.updatedAt', Date | null>
|
|
174
|
+
| StringRules<RxDBSync, 'branchId'>
|
|
175
175
|
| RelationStringRules<'branch.children.id', string>
|
|
176
176
|
| RelationBooleanRules<'branch.children.activated', boolean>
|
|
177
177
|
| RelationNumberRules<'branch.children.fromChangeId', number | null>
|
|
@@ -213,17 +213,17 @@ export declare type RxDBChangeRuleGroup = RuleGroupBase<typeof RxDBChange,
|
|
|
213
213
|
|'branch.createdAt'
|
|
214
214
|
|'branch.updatedAt'
|
|
215
215
|
|'parentId'
|
|
216
|
-
|'branch.
|
|
217
|
-
|'branch.
|
|
218
|
-
|'branch.
|
|
219
|
-
|'branch.
|
|
220
|
-
|'branch.
|
|
221
|
-
|'branch.
|
|
222
|
-
|'branch.
|
|
223
|
-
|'branch.
|
|
224
|
-
|'branch.
|
|
225
|
-
|'branch.
|
|
226
|
-
|'branch.
|
|
216
|
+
|'branch.syncs.id'
|
|
217
|
+
|'branch.syncs.namespace'
|
|
218
|
+
|'branch.syncs.entity'
|
|
219
|
+
|'branch.syncs.syncType'
|
|
220
|
+
|'branch.syncs.lastPushedChangeId'
|
|
221
|
+
|'branch.syncs.lastPushedAt'
|
|
222
|
+
|'branch.syncs.lastPulledAt'
|
|
223
|
+
|'branch.syncs.lastPullRemoteChangeId'
|
|
224
|
+
|'branch.syncs.enabled'
|
|
225
|
+
|'branch.syncs.createdAt'
|
|
226
|
+
|'branch.syncs.updatedAt'
|
|
227
227
|
|'branchId'
|
|
228
228
|
|'branch.children.id'
|
|
229
229
|
|'branch.children.activated'
|
|
@@ -273,19 +273,19 @@ declare type RxDBBranchRule = StringRules<RxDBBranch, 'id'>
|
|
|
273
273
|
| RelationNumberRules<'changes.revertChangeId', number | null>
|
|
274
274
|
| RelationDateRules<'changes.redoInvalidatedAt', Date | null>
|
|
275
275
|
| StringRules<RxDBChange, 'branchId'>
|
|
276
|
-
| RelationExistsRules<'
|
|
277
|
-
| RelationStringRules<'
|
|
278
|
-
| RelationStringRules<'
|
|
279
|
-
| RelationStringRules<'
|
|
280
|
-
| RelationStringRules<'
|
|
281
|
-
| RelationNumberRules<'
|
|
282
|
-
| RelationDateRules<'
|
|
283
|
-
| RelationDateRules<'
|
|
284
|
-
| RelationNumberRules<'
|
|
285
|
-
| RelationBooleanRules<'
|
|
286
|
-
| RelationDateRules<'
|
|
287
|
-
| RelationDateRules<'
|
|
288
|
-
| StringRules<
|
|
276
|
+
| RelationExistsRules<'syncs', RxDBSyncRuleGroup>
|
|
277
|
+
| RelationStringRules<'syncs.id', string>
|
|
278
|
+
| RelationStringRules<'syncs.namespace', string>
|
|
279
|
+
| RelationStringRules<'syncs.entity', string>
|
|
280
|
+
| RelationStringRules<'syncs.syncType', string>
|
|
281
|
+
| RelationNumberRules<'syncs.lastPushedChangeId', number | null>
|
|
282
|
+
| RelationDateRules<'syncs.lastPushedAt', Date | null>
|
|
283
|
+
| RelationDateRules<'syncs.lastPulledAt', Date | null>
|
|
284
|
+
| RelationNumberRules<'syncs.lastPullRemoteChangeId', number | null>
|
|
285
|
+
| RelationBooleanRules<'syncs.enabled', boolean>
|
|
286
|
+
| RelationDateRules<'syncs.createdAt', Date | null>
|
|
287
|
+
| RelationDateRules<'syncs.updatedAt', Date | null>
|
|
288
|
+
| StringRules<RxDBSync, 'branchId'>
|
|
289
289
|
| RelationExistsRules<'children', RxDBBranchRuleGroup>
|
|
290
290
|
| RelationStringRules<'children.id', string>
|
|
291
291
|
| RelationBooleanRules<'children.activated', boolean>
|
|
@@ -329,18 +329,18 @@ export declare type RxDBBranchRuleGroup = RuleGroupBase<typeof RxDBBranch,
|
|
|
329
329
|
|'changes.revertChangeId'
|
|
330
330
|
|'changes.redoInvalidatedAt'
|
|
331
331
|
|'branchId'
|
|
332
|
-
|'
|
|
333
|
-
|'
|
|
334
|
-
|'
|
|
335
|
-
|'
|
|
336
|
-
|'
|
|
337
|
-
|'
|
|
338
|
-
|'
|
|
339
|
-
|'
|
|
340
|
-
|'
|
|
341
|
-
|'
|
|
342
|
-
|'
|
|
343
|
-
|'
|
|
332
|
+
|'syncs'
|
|
333
|
+
|'syncs.id'
|
|
334
|
+
|'syncs.namespace'
|
|
335
|
+
|'syncs.entity'
|
|
336
|
+
|'syncs.syncType'
|
|
337
|
+
|'syncs.lastPushedChangeId'
|
|
338
|
+
|'syncs.lastPushedAt'
|
|
339
|
+
|'syncs.lastPulledAt'
|
|
340
|
+
|'syncs.lastPullRemoteChangeId'
|
|
341
|
+
|'syncs.enabled'
|
|
342
|
+
|'syncs.createdAt'
|
|
343
|
+
|'syncs.updatedAt'
|
|
344
344
|
|'branchId'
|
|
345
345
|
|'children'
|
|
346
346
|
|'children.id'
|
|
@@ -391,9 +391,9 @@ declare module "@aiao/rxdb" {
|
|
|
391
391
|
*/
|
|
392
392
|
interface RxDB {
|
|
393
393
|
/**
|
|
394
|
-
*
|
|
394
|
+
* RxDBSync
|
|
395
395
|
*/
|
|
396
|
-
|
|
396
|
+
RxDBSync: typeof RxDBSync;
|
|
397
397
|
/**
|
|
398
398
|
* RxDBMigration
|
|
399
399
|
*/
|
|
@@ -412,7 +412,7 @@ declare module "@aiao/rxdb" {
|
|
|
412
412
|
/**
|
|
413
413
|
* 静态类型
|
|
414
414
|
*/
|
|
415
|
-
export interface
|
|
415
|
+
export interface RxDBSyncStaticTypes {
|
|
416
416
|
/**
|
|
417
417
|
* id 类型
|
|
418
418
|
*/
|
|
@@ -424,33 +424,33 @@ export interface RxDBRepositorySyncStaticTypes {
|
|
|
424
424
|
/**
|
|
425
425
|
* 查询选项
|
|
426
426
|
*/
|
|
427
|
-
findOneOrFailOptions: FindOneOrFailOptions<typeof
|
|
427
|
+
findOneOrFailOptions: FindOneOrFailOptions<typeof RxDBSync,RxDBSyncRuleGroup,RxDBSyncOrderByField>;
|
|
428
428
|
/**
|
|
429
429
|
* 查询选项
|
|
430
430
|
*/
|
|
431
|
-
findOptions: FindOptions<typeof
|
|
431
|
+
findOptions: FindOptions<typeof RxDBSync,RxDBSyncRuleGroup,RxDBSyncOrderByField>;
|
|
432
432
|
/**
|
|
433
433
|
* 查询选项
|
|
434
434
|
*/
|
|
435
|
-
findOneOptions: FindOneOptions<typeof
|
|
435
|
+
findOneOptions: FindOneOptions<typeof RxDBSync,RxDBSyncRuleGroup,RxDBSyncOrderByField>;
|
|
436
436
|
/**
|
|
437
437
|
* 查询选项
|
|
438
438
|
*/
|
|
439
|
-
findAllOptions: FindAllOptions<typeof
|
|
439
|
+
findAllOptions: FindAllOptions<typeof RxDBSync,RxDBSyncRuleGroup,RxDBSyncOrderByField>;
|
|
440
440
|
/**
|
|
441
441
|
* 查询选项
|
|
442
442
|
*/
|
|
443
|
-
findByCursorOptions: FindByCursorOptions<typeof
|
|
443
|
+
findByCursorOptions: FindByCursorOptions<typeof RxDBSync,RxDBSyncRuleGroup,RxDBSyncOrderByField>;
|
|
444
444
|
/**
|
|
445
445
|
* 查询选项
|
|
446
446
|
*/
|
|
447
|
-
countOptions: CountOptions<typeof
|
|
447
|
+
countOptions: CountOptions<typeof RxDBSync,RxDBSyncRuleGroup>;
|
|
448
448
|
}
|
|
449
449
|
|
|
450
450
|
/**
|
|
451
451
|
* 初始化数据
|
|
452
452
|
*/
|
|
453
|
-
export interface
|
|
453
|
+
export interface RxDBSyncInitData {
|
|
454
454
|
/**
|
|
455
455
|
* id
|
|
456
456
|
*/
|
|
@@ -754,10 +754,10 @@ export interface RxDBBranchInitData {
|
|
|
754
754
|
}
|
|
755
755
|
|
|
756
756
|
/**
|
|
757
|
-
*
|
|
757
|
+
* RxDBSync
|
|
758
758
|
*/
|
|
759
|
-
export declare class
|
|
760
|
-
static [ENTITY_STATIC_TYPES]:
|
|
759
|
+
export declare class RxDBSync {
|
|
760
|
+
static [ENTITY_STATIC_TYPES]: RxDBSyncStaticTypes;
|
|
761
761
|
/**
|
|
762
762
|
* branch
|
|
763
763
|
*/
|
|
@@ -817,60 +817,60 @@ export declare class RxDBRepositorySync {
|
|
|
817
817
|
* 初始化数据
|
|
818
818
|
* @param initData 初始化数据
|
|
819
819
|
*/
|
|
820
|
-
constructor(initData?:
|
|
820
|
+
constructor(initData?: RxDBSyncInitData);
|
|
821
821
|
/**
|
|
822
822
|
* 统计实体数量
|
|
823
823
|
* @param options 查询选项
|
|
824
824
|
* @example
|
|
825
|
-
*
|
|
825
|
+
* RxDBSync.count({ where: { combinator: 'and', rules: [] } }).subscribe(total => console.log(total));
|
|
826
826
|
*/
|
|
827
|
-
static count(options: CountOptions<typeof
|
|
827
|
+
static count(options: CountOptions<typeof RxDBSync,RxDBSyncRuleGroup>): Observable<number>;
|
|
828
828
|
/**
|
|
829
829
|
* 查询多个实体
|
|
830
830
|
* @param options 查询选项
|
|
831
831
|
* @example
|
|
832
|
-
*
|
|
832
|
+
* RxDBSync.find({ where: { combinator: 'and', rules: [] }] }).subscribe(list => console.log(list));
|
|
833
833
|
*/
|
|
834
|
-
static find(options: FindOptions<typeof
|
|
834
|
+
static find(options: FindOptions<typeof RxDBSync,RxDBSyncRuleGroup,RxDBSyncOrderByField>): Observable<RxDBSync[]>;
|
|
835
835
|
/**
|
|
836
836
|
* 查询所有实体
|
|
837
837
|
* @param options 查询选项
|
|
838
838
|
* @example
|
|
839
|
-
*
|
|
839
|
+
* RxDBSync.findAll({ where: { combinator: 'and', rules: [] } }).subscribe(list => console.log(list));
|
|
840
840
|
*/
|
|
841
|
-
static findAll(options: FindAllOptions<typeof
|
|
841
|
+
static findAll(options: FindAllOptions<typeof RxDBSync,RxDBSyncRuleGroup,RxDBSyncOrderByField>): Observable<RxDBSync[]>;
|
|
842
842
|
/**
|
|
843
843
|
* 游标分页查询
|
|
844
844
|
* @param options 查询选项
|
|
845
845
|
* @example
|
|
846
|
-
*
|
|
846
|
+
* RxDBSync.findByCursor({ where: { combinator: 'and', rules: [] } }).subscribe(list => console.log(list));
|
|
847
847
|
*/
|
|
848
|
-
static findByCursor(options: FindByCursorOptions<typeof
|
|
848
|
+
static findByCursor(options: FindByCursorOptions<typeof RxDBSync,RxDBSyncRuleGroup,RxDBSyncOrderByField>): Observable<RxDBSync[]>;
|
|
849
849
|
/**
|
|
850
850
|
* 查询单个实体,未找到时返回 undefined
|
|
851
851
|
* @param options 查询选项
|
|
852
852
|
* @example
|
|
853
|
-
*
|
|
853
|
+
* RxDBSync.findOne({ where: { combinator: 'and', rules: [] } }).subscribe(entity => console.log(entity));
|
|
854
854
|
*/
|
|
855
|
-
static findOne(options: FindOneOptions<typeof
|
|
855
|
+
static findOne(options: FindOneOptions<typeof RxDBSync,RxDBSyncRuleGroup,RxDBSyncOrderByField>): Observable<RxDBSync | undefined>;
|
|
856
856
|
/**
|
|
857
857
|
* 查询单个实体,未找到时抛出错误
|
|
858
858
|
* @param options 查询选项
|
|
859
859
|
* @example
|
|
860
|
-
*
|
|
860
|
+
* RxDBSync.findOneOrFail({ where: { combinator: 'and', rules: [] } }).subscribe(entity => console.log(entity));
|
|
861
861
|
*/
|
|
862
|
-
static findOneOrFail(options: FindOneOrFailOptions<typeof
|
|
862
|
+
static findOneOrFail(options: FindOneOrFailOptions<typeof RxDBSync,RxDBSyncRuleGroup,RxDBSyncOrderByField>): Observable<RxDBSync>;
|
|
863
863
|
/**
|
|
864
864
|
* 根据 ID 获取单个实体
|
|
865
865
|
* @param options 查询选项
|
|
866
866
|
* @example
|
|
867
|
-
*
|
|
867
|
+
* RxDBSync.get('123').subscribe(entity => console.log(entity));
|
|
868
868
|
*/
|
|
869
|
-
static get(options: string): Observable<
|
|
869
|
+
static get(options: string): Observable<RxDBSync>;
|
|
870
870
|
/**
|
|
871
871
|
* 删除
|
|
872
872
|
*/
|
|
873
|
-
remove(): Promise<
|
|
873
|
+
remove(): Promise<RxDBSync>;
|
|
874
874
|
/**
|
|
875
875
|
* 重置数据
|
|
876
876
|
*/
|
|
@@ -878,7 +878,7 @@ export declare class RxDBRepositorySync {
|
|
|
878
878
|
/**
|
|
879
879
|
* 保存
|
|
880
880
|
*/
|
|
881
|
-
save(): Promise<
|
|
881
|
+
save(): Promise<RxDBSync>;
|
|
882
882
|
}
|
|
883
883
|
|
|
884
884
|
/**
|
|
@@ -1129,9 +1129,9 @@ export declare class RxDBBranch {
|
|
|
1129
1129
|
*/
|
|
1130
1130
|
readonly parent$: RelationEntityObservable<typeof RxDBBranch>;
|
|
1131
1131
|
/**
|
|
1132
|
-
*
|
|
1132
|
+
* syncs
|
|
1133
1133
|
*/
|
|
1134
|
-
readonly
|
|
1134
|
+
readonly syncs$: RelationEntitiesObservable<RxDBSync>;
|
|
1135
1135
|
/**
|
|
1136
1136
|
* updatedAt
|
|
1137
1137
|
* @default new Date()
|
package/dist/system/index.js
CHANGED
|
@@ -1,16 +1,15 @@
|
|
|
1
1
|
import { Entity, PropertyType, RelationKind, __decorateClass } from '@aiao/rxdb';
|
|
2
|
-
let
|
|
3
|
-
|
|
2
|
+
let RxDBSync = class {};
|
|
3
|
+
RxDBSync = __decorateClass(
|
|
4
4
|
[
|
|
5
5
|
Entity({
|
|
6
|
-
name: "
|
|
6
|
+
name: "RxDBSync",
|
|
7
7
|
log: false,
|
|
8
8
|
properties: [
|
|
9
9
|
{
|
|
10
10
|
name: "id",
|
|
11
11
|
type: PropertyType.string,
|
|
12
|
-
primary: true
|
|
13
|
-
unique: true
|
|
12
|
+
primary: true
|
|
14
13
|
},
|
|
15
14
|
{
|
|
16
15
|
name: "namespace",
|
|
@@ -101,10 +100,10 @@ RxDBRepositorySync = __decorateClass(
|
|
|
101
100
|
namespace: "public",
|
|
102
101
|
computedProperties: [],
|
|
103
102
|
extends: [],
|
|
104
|
-
displayName: "
|
|
103
|
+
displayName: "RxDBSync"
|
|
105
104
|
})
|
|
106
105
|
],
|
|
107
|
-
|
|
106
|
+
RxDBSync
|
|
108
107
|
);
|
|
109
108
|
let RxDBMigration = class {};
|
|
110
109
|
RxDBMigration = __decorateClass(
|
|
@@ -301,9 +300,9 @@ RxDBBranch = __decorateClass(
|
|
|
301
300
|
onUpdate: "RESTRICT"
|
|
302
301
|
},
|
|
303
302
|
{
|
|
304
|
-
name: "
|
|
303
|
+
name: "syncs",
|
|
305
304
|
kind: RelationKind.ONE_TO_MANY,
|
|
306
|
-
mappedEntity: "
|
|
305
|
+
mappedEntity: "RxDBSync",
|
|
307
306
|
mappedProperty: "branch",
|
|
308
307
|
mappedNamespace: "public",
|
|
309
308
|
onDelete: "CASCADE",
|
|
@@ -338,5 +337,5 @@ RxDBBranch = __decorateClass(
|
|
|
338
337
|
],
|
|
339
338
|
RxDBBranch
|
|
340
339
|
);
|
|
341
|
-
const ENTITIES = [ RxDBBranch, RxDBChange, RxDBMigration,
|
|
342
|
-
export { ENTITIES, RxDBBranch, RxDBChange, RxDBMigration,
|
|
340
|
+
const ENTITIES = [ RxDBBranch, RxDBChange, RxDBMigration, RxDBSync ];
|
|
341
|
+
export { ENTITIES, RxDBBranch, RxDBChange, RxDBMigration, RxDBSync };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aiao/rxdb-test",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.9",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.js",
|
|
@@ -29,6 +29,9 @@
|
|
|
29
29
|
"dist",
|
|
30
30
|
"!**/*.tsbuildinfo"
|
|
31
31
|
],
|
|
32
|
+
"publishConfig": {
|
|
33
|
+
"access": "public"
|
|
34
|
+
},
|
|
32
35
|
"nx": {
|
|
33
36
|
"name": "rxdb-test",
|
|
34
37
|
"tags": [
|
|
@@ -36,9 +39,9 @@
|
|
|
36
39
|
]
|
|
37
40
|
},
|
|
38
41
|
"dependencies": {
|
|
39
|
-
"@aiao/rxdb": "0.0.
|
|
42
|
+
"@aiao/rxdb": "0.0.9"
|
|
40
43
|
},
|
|
41
44
|
"devDependencies": {
|
|
42
|
-
"@aiao/rxdb-client-generator": "0.0.
|
|
45
|
+
"@aiao/rxdb-client-generator": "0.0.9"
|
|
43
46
|
}
|
|
44
47
|
}
|