@omnia/fx-sp-models 8.0.196-dev → 8.0.197-dev
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/Term.d.ts +5 -0
- package/package.json +2 -2
package/Term.d.ts
CHANGED
@@ -1,4 +1,5 @@
|
|
1
1
|
import { guid, PropertyBindingSetting } from "@omnia/fx-models";
|
2
|
+
import { TermData } from "..";
|
2
3
|
export interface Term extends TermBase {
|
3
4
|
parentId: guid;
|
4
5
|
termSetId: guid;
|
@@ -8,6 +9,10 @@ export interface Term extends TermBase {
|
|
8
9
|
isReused: boolean;
|
9
10
|
isDeprecated: boolean;
|
10
11
|
}
|
12
|
+
export interface TermPaging extends Term {
|
13
|
+
searchIndex: number;
|
14
|
+
terms: TermData[];
|
15
|
+
}
|
11
16
|
export interface TermLabel {
|
12
17
|
lcid: number;
|
13
18
|
label: string;
|
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "@omnia/fx-sp-models",
|
3
3
|
"license": "MIT",
|
4
|
-
"version": "8.0.
|
4
|
+
"version": "8.0.197-dev",
|
5
5
|
"description": "Provide Omnia Fx Sharepoint Models Stuffs.",
|
6
6
|
"scripts": {
|
7
7
|
"test": "echo \"Error: no test specified\" && exit 1"
|
@@ -19,7 +19,7 @@
|
|
19
19
|
],
|
20
20
|
"author": "Precio Fishbone",
|
21
21
|
"dependencies": {
|
22
|
-
"@omnia/fx-models": "8.0.
|
22
|
+
"@omnia/fx-models": "8.0.197-dev"
|
23
23
|
},
|
24
24
|
"typings": "./index.d.ts",
|
25
25
|
"bugs": {
|