@aiao/rxdb-test 0.0.14 → 0.0.15
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/entities/index.d.ts +2 -11
- package/package.json +3 -3
package/dist/entities/index.d.ts
CHANGED
|
@@ -445,15 +445,6 @@ declare type FileLargeTreeRule = RelationDateRules<'children.createdAt', Date>
|
|
|
445
445
|
*/
|
|
446
446
|
export declare type FileLargeTreeRuleGroup = RuleGroupBase<typeof FileLarge, 'children.createdAt' | 'children.updatedAt' | 'children.createdBy' | 'children.updatedBy' | 'children.name' | 'children.type' | 'children.sortOrder' | 'children.extension' | 'children.size', FileLargeTreeRule>;
|
|
447
447
|
|
|
448
|
-
/**
|
|
449
|
-
* enum 枚举类型
|
|
450
|
-
*/
|
|
451
|
-
export enum TypeDemoEnum {
|
|
452
|
-
Active = "active",
|
|
453
|
-
Inactive = "inactive",
|
|
454
|
-
Pending = "pending"
|
|
455
|
-
}
|
|
456
|
-
|
|
457
448
|
/**
|
|
458
449
|
* rxdb
|
|
459
450
|
*/
|
|
@@ -554,7 +545,7 @@ export interface TypeDemoInitData {
|
|
|
554
545
|
/**
|
|
555
546
|
* enum
|
|
556
547
|
*/
|
|
557
|
-
enum?:
|
|
548
|
+
enum?: 'active' | 'inactive' | 'pending' | null;
|
|
558
549
|
/**
|
|
559
550
|
* stringArray
|
|
560
551
|
*/
|
|
@@ -964,7 +955,7 @@ export declare class TypeDemo extends EntityBase implements IEntity {
|
|
|
964
955
|
/**
|
|
965
956
|
* enum
|
|
966
957
|
*/
|
|
967
|
-
enum?:
|
|
958
|
+
enum?: 'active' | 'inactive' | 'pending' | null;
|
|
968
959
|
/**
|
|
969
960
|
* integer
|
|
970
961
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aiao/rxdb-test",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.15",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.js",
|
|
@@ -39,9 +39,9 @@
|
|
|
39
39
|
]
|
|
40
40
|
},
|
|
41
41
|
"dependencies": {
|
|
42
|
-
"@aiao/rxdb": "0.0.
|
|
42
|
+
"@aiao/rxdb": "0.0.15"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
|
-
"@aiao/rxdb-client-generator": "0.0.
|
|
45
|
+
"@aiao/rxdb-client-generator": "0.0.15"
|
|
46
46
|
}
|
|
47
47
|
}
|