@dra2020/baseclient 1.0.10 → 1.0.11
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.
|
@@ -20,6 +20,7 @@ export declare const FilterRecent: number;
|
|
|
20
20
|
export declare const FilterTrash: number;
|
|
21
21
|
export declare const FilterPublic: number;
|
|
22
22
|
export declare const FilterOfficial: number;
|
|
23
|
+
export declare const FilterCOI: number;
|
|
23
24
|
export declare const FilterCount: number;
|
|
24
25
|
export declare type Filter = number;
|
|
25
26
|
export declare const PermNone: number;
|
package/lib/ot-js/otsession.ts
CHANGED
|
@@ -23,7 +23,8 @@ export const FilterRecent: number = 3;
|
|
|
23
23
|
export const FilterTrash: number = 4;
|
|
24
24
|
export const FilterPublic: number = 5;
|
|
25
25
|
export const FilterOfficial: number = 6;
|
|
26
|
-
export const
|
|
26
|
+
export const FilterCOI: number = 7;
|
|
27
|
+
export const FilterCount: number = 8;
|
|
27
28
|
export type Filter = number;
|
|
28
29
|
|
|
29
30
|
// Permissions
|