@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 CHANGED
@@ -1,2 +1,2 @@
1
- export declare const version = "0.0.1";
1
+ export declare const version = "0.0.8";
2
2
  //# sourceMappingURL=index.d.ts.map
package/dist/index.js CHANGED
@@ -1,4 +1,4 @@
1
- const o = "0.0.1";
1
+ const o = "0.0.8";
2
2
  export {
3
3
  o as version
4
4
  };
@@ -4,18 +4,18 @@ import { Observable } from 'rxjs';
4
4
  /**
5
5
  * rule
6
6
  */
7
- declare type RxDBRepositorySyncRule = StringRules<RxDBRepositorySync, 'id'>
8
- | StringRules<RxDBRepositorySync, 'namespace'>
9
- | StringRules<RxDBRepositorySync, 'entity'>
10
- | StringRules<RxDBRepositorySync, 'syncType'>
11
- | NumberRules<RxDBRepositorySync, 'lastPushedChangeId'>
12
- | DateRules<RxDBRepositorySync, 'lastPushedAt'>
13
- | DateRules<RxDBRepositorySync, 'lastPulledAt'>
14
- | NumberRules<RxDBRepositorySync, 'lastPullRemoteChangeId'>
15
- | BooleanRules<RxDBRepositorySync, 'enabled'>
16
- | DateRules<RxDBRepositorySync, 'createdAt'>
17
- | DateRules<RxDBRepositorySync, 'updatedAt'>
18
- | StringRules<RxDBRepositorySync, 'branchId'>
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 RxDBRepositorySyncRuleGroup = RuleGroupBase<typeof RxDBRepositorySync,
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
- RxDBRepositorySyncRule>;
110
+ RxDBSyncRule>;
111
111
 
112
112
  /**
113
113
  * OrderByField
114
114
  */
115
- declare type RxDBRepositorySyncOrderByField = "id" | "namespace" | "entity" | "syncType" | "lastPushedChangeId" | "lastPushedAt" | "lastPulledAt" | "lastPullRemoteChangeId" | "enabled" | "createdAt" | "updatedAt";
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.repositorySyncs.id', string>
164
- | RelationStringRules<'branch.repositorySyncs.namespace', string>
165
- | RelationStringRules<'branch.repositorySyncs.entity', string>
166
- | RelationStringRules<'branch.repositorySyncs.syncType', string>
167
- | RelationNumberRules<'branch.repositorySyncs.lastPushedChangeId', number | null>
168
- | RelationDateRules<'branch.repositorySyncs.lastPushedAt', Date | null>
169
- | RelationDateRules<'branch.repositorySyncs.lastPulledAt', Date | null>
170
- | RelationNumberRules<'branch.repositorySyncs.lastPullRemoteChangeId', number | null>
171
- | RelationBooleanRules<'branch.repositorySyncs.enabled', boolean>
172
- | RelationDateRules<'branch.repositorySyncs.createdAt', Date | null>
173
- | RelationDateRules<'branch.repositorySyncs.updatedAt', Date | null>
174
- | StringRules<RxDBRepositorySync, 'branchId'>
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.repositorySyncs.id'
217
- |'branch.repositorySyncs.namespace'
218
- |'branch.repositorySyncs.entity'
219
- |'branch.repositorySyncs.syncType'
220
- |'branch.repositorySyncs.lastPushedChangeId'
221
- |'branch.repositorySyncs.lastPushedAt'
222
- |'branch.repositorySyncs.lastPulledAt'
223
- |'branch.repositorySyncs.lastPullRemoteChangeId'
224
- |'branch.repositorySyncs.enabled'
225
- |'branch.repositorySyncs.createdAt'
226
- |'branch.repositorySyncs.updatedAt'
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<'repositorySyncs', RxDBRepositorySyncRuleGroup>
277
- | RelationStringRules<'repositorySyncs.id', string>
278
- | RelationStringRules<'repositorySyncs.namespace', string>
279
- | RelationStringRules<'repositorySyncs.entity', string>
280
- | RelationStringRules<'repositorySyncs.syncType', string>
281
- | RelationNumberRules<'repositorySyncs.lastPushedChangeId', number | null>
282
- | RelationDateRules<'repositorySyncs.lastPushedAt', Date | null>
283
- | RelationDateRules<'repositorySyncs.lastPulledAt', Date | null>
284
- | RelationNumberRules<'repositorySyncs.lastPullRemoteChangeId', number | null>
285
- | RelationBooleanRules<'repositorySyncs.enabled', boolean>
286
- | RelationDateRules<'repositorySyncs.createdAt', Date | null>
287
- | RelationDateRules<'repositorySyncs.updatedAt', Date | null>
288
- | StringRules<RxDBRepositorySync, 'branchId'>
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
- |'repositorySyncs'
333
- |'repositorySyncs.id'
334
- |'repositorySyncs.namespace'
335
- |'repositorySyncs.entity'
336
- |'repositorySyncs.syncType'
337
- |'repositorySyncs.lastPushedChangeId'
338
- |'repositorySyncs.lastPushedAt'
339
- |'repositorySyncs.lastPulledAt'
340
- |'repositorySyncs.lastPullRemoteChangeId'
341
- |'repositorySyncs.enabled'
342
- |'repositorySyncs.createdAt'
343
- |'repositorySyncs.updatedAt'
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
- * RxDBRepositorySync
394
+ * RxDBSync
395
395
  */
396
- RxDBRepositorySync: typeof RxDBRepositorySync;
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 RxDBRepositorySyncStaticTypes {
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 RxDBRepositorySync,RxDBRepositorySyncRuleGroup,RxDBRepositorySyncOrderByField>;
427
+ findOneOrFailOptions: FindOneOrFailOptions<typeof RxDBSync,RxDBSyncRuleGroup,RxDBSyncOrderByField>;
428
428
  /**
429
429
  * 查询选项
430
430
  */
431
- findOptions: FindOptions<typeof RxDBRepositorySync,RxDBRepositorySyncRuleGroup,RxDBRepositorySyncOrderByField>;
431
+ findOptions: FindOptions<typeof RxDBSync,RxDBSyncRuleGroup,RxDBSyncOrderByField>;
432
432
  /**
433
433
  * 查询选项
434
434
  */
435
- findOneOptions: FindOneOptions<typeof RxDBRepositorySync,RxDBRepositorySyncRuleGroup,RxDBRepositorySyncOrderByField>;
435
+ findOneOptions: FindOneOptions<typeof RxDBSync,RxDBSyncRuleGroup,RxDBSyncOrderByField>;
436
436
  /**
437
437
  * 查询选项
438
438
  */
439
- findAllOptions: FindAllOptions<typeof RxDBRepositorySync,RxDBRepositorySyncRuleGroup,RxDBRepositorySyncOrderByField>;
439
+ findAllOptions: FindAllOptions<typeof RxDBSync,RxDBSyncRuleGroup,RxDBSyncOrderByField>;
440
440
  /**
441
441
  * 查询选项
442
442
  */
443
- findByCursorOptions: FindByCursorOptions<typeof RxDBRepositorySync,RxDBRepositorySyncRuleGroup,RxDBRepositorySyncOrderByField>;
443
+ findByCursorOptions: FindByCursorOptions<typeof RxDBSync,RxDBSyncRuleGroup,RxDBSyncOrderByField>;
444
444
  /**
445
445
  * 查询选项
446
446
  */
447
- countOptions: CountOptions<typeof RxDBRepositorySync,RxDBRepositorySyncRuleGroup>;
447
+ countOptions: CountOptions<typeof RxDBSync,RxDBSyncRuleGroup>;
448
448
  }
449
449
 
450
450
  /**
451
451
  * 初始化数据
452
452
  */
453
- export interface RxDBRepositorySyncInitData {
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
- * RxDBRepositorySync
757
+ * RxDBSync
758
758
  */
759
- export declare class RxDBRepositorySync {
760
- static [ENTITY_STATIC_TYPES]: RxDBRepositorySyncStaticTypes;
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?: RxDBRepositorySyncInitData);
820
+ constructor(initData?: RxDBSyncInitData);
821
821
  /**
822
822
  * 统计实体数量
823
823
  * @param options 查询选项
824
824
  * @example
825
- * RxDBRepositorySync.count({ where: { combinator: 'and', rules: [] } }).subscribe(total => console.log(total));
825
+ * RxDBSync.count({ where: { combinator: 'and', rules: [] } }).subscribe(total => console.log(total));
826
826
  */
827
- static count(options: CountOptions<typeof RxDBRepositorySync,RxDBRepositorySyncRuleGroup>): Observable<number>;
827
+ static count(options: CountOptions<typeof RxDBSync,RxDBSyncRuleGroup>): Observable<number>;
828
828
  /**
829
829
  * 查询多个实体
830
830
  * @param options 查询选项
831
831
  * @example
832
- * RxDBRepositorySync.find({ where: { combinator: 'and', rules: [] }] }).subscribe(list => console.log(list));
832
+ * RxDBSync.find({ where: { combinator: 'and', rules: [] }] }).subscribe(list => console.log(list));
833
833
  */
834
- static find(options: FindOptions<typeof RxDBRepositorySync,RxDBRepositorySyncRuleGroup,RxDBRepositorySyncOrderByField>): Observable<RxDBRepositorySync[]>;
834
+ static find(options: FindOptions<typeof RxDBSync,RxDBSyncRuleGroup,RxDBSyncOrderByField>): Observable<RxDBSync[]>;
835
835
  /**
836
836
  * 查询所有实体
837
837
  * @param options 查询选项
838
838
  * @example
839
- * RxDBRepositorySync.findAll({ where: { combinator: 'and', rules: [] } }).subscribe(list => console.log(list));
839
+ * RxDBSync.findAll({ where: { combinator: 'and', rules: [] } }).subscribe(list => console.log(list));
840
840
  */
841
- static findAll(options: FindAllOptions<typeof RxDBRepositorySync,RxDBRepositorySyncRuleGroup,RxDBRepositorySyncOrderByField>): Observable<RxDBRepositorySync[]>;
841
+ static findAll(options: FindAllOptions<typeof RxDBSync,RxDBSyncRuleGroup,RxDBSyncOrderByField>): Observable<RxDBSync[]>;
842
842
  /**
843
843
  * 游标分页查询
844
844
  * @param options 查询选项
845
845
  * @example
846
- * RxDBRepositorySync.findByCursor({ where: { combinator: 'and', rules: [] } }).subscribe(list => console.log(list));
846
+ * RxDBSync.findByCursor({ where: { combinator: 'and', rules: [] } }).subscribe(list => console.log(list));
847
847
  */
848
- static findByCursor(options: FindByCursorOptions<typeof RxDBRepositorySync,RxDBRepositorySyncRuleGroup,RxDBRepositorySyncOrderByField>): Observable<RxDBRepositorySync[]>;
848
+ static findByCursor(options: FindByCursorOptions<typeof RxDBSync,RxDBSyncRuleGroup,RxDBSyncOrderByField>): Observable<RxDBSync[]>;
849
849
  /**
850
850
  * 查询单个实体,未找到时返回 undefined
851
851
  * @param options 查询选项
852
852
  * @example
853
- * RxDBRepositorySync.findOne({ where: { combinator: 'and', rules: [] } }).subscribe(entity => console.log(entity));
853
+ * RxDBSync.findOne({ where: { combinator: 'and', rules: [] } }).subscribe(entity => console.log(entity));
854
854
  */
855
- static findOne(options: FindOneOptions<typeof RxDBRepositorySync,RxDBRepositorySyncRuleGroup,RxDBRepositorySyncOrderByField>): Observable<RxDBRepositorySync | undefined>;
855
+ static findOne(options: FindOneOptions<typeof RxDBSync,RxDBSyncRuleGroup,RxDBSyncOrderByField>): Observable<RxDBSync | undefined>;
856
856
  /**
857
857
  * 查询单个实体,未找到时抛出错误
858
858
  * @param options 查询选项
859
859
  * @example
860
- * RxDBRepositorySync.findOneOrFail({ where: { combinator: 'and', rules: [] } }).subscribe(entity => console.log(entity));
860
+ * RxDBSync.findOneOrFail({ where: { combinator: 'and', rules: [] } }).subscribe(entity => console.log(entity));
861
861
  */
862
- static findOneOrFail(options: FindOneOrFailOptions<typeof RxDBRepositorySync,RxDBRepositorySyncRuleGroup,RxDBRepositorySyncOrderByField>): Observable<RxDBRepositorySync>;
862
+ static findOneOrFail(options: FindOneOrFailOptions<typeof RxDBSync,RxDBSyncRuleGroup,RxDBSyncOrderByField>): Observable<RxDBSync>;
863
863
  /**
864
864
  * 根据 ID 获取单个实体
865
865
  * @param options 查询选项
866
866
  * @example
867
- * RxDBRepositorySync.get('123').subscribe(entity => console.log(entity));
867
+ * RxDBSync.get('123').subscribe(entity => console.log(entity));
868
868
  */
869
- static get(options: string): Observable<RxDBRepositorySync>;
869
+ static get(options: string): Observable<RxDBSync>;
870
870
  /**
871
871
  * 删除
872
872
  */
873
- remove(): Promise<RxDBRepositorySync>;
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<RxDBRepositorySync>;
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
- * repositorySyncs
1132
+ * syncs
1133
1133
  */
1134
- readonly repositorySyncs$: RelationEntitiesObservable<RxDBRepositorySync>;
1134
+ readonly syncs$: RelationEntitiesObservable<RxDBSync>;
1135
1135
  /**
1136
1136
  * updatedAt
1137
1137
  * @default new Date()
@@ -1,16 +1,15 @@
1
1
  import { Entity, PropertyType, RelationKind, __decorateClass } from '@aiao/rxdb';
2
- let RxDBRepositorySync = class {};
3
- RxDBRepositorySync = __decorateClass(
2
+ let RxDBSync = class {};
3
+ RxDBSync = __decorateClass(
4
4
  [
5
5
  Entity({
6
- name: "RxDBRepositorySync",
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: "RxDBRepositorySync"
103
+ displayName: "RxDBSync"
105
104
  })
106
105
  ],
107
- RxDBRepositorySync
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: "repositorySyncs",
303
+ name: "syncs",
305
304
  kind: RelationKind.ONE_TO_MANY,
306
- mappedEntity: "RxDBRepositorySync",
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, RxDBRepositorySync ];
342
- export { ENTITIES, RxDBBranch, RxDBChange, RxDBMigration, RxDBRepositorySync };
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.8",
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.8"
42
+ "@aiao/rxdb": "0.0.9"
40
43
  },
41
44
  "devDependencies": {
42
- "@aiao/rxdb-client-generator": "0.0.8"
45
+ "@aiao/rxdb-client-generator": "0.0.9"
43
46
  }
44
47
  }