@hitc/netsuite-types 2022.2.4 → 2022.2.6
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/N/crypto.d.ts +1 -1
- package/N/query.d.ts +1 -1
- package/N/search.d.ts +2 -1
- package/package.json +2 -2
package/N/crypto.d.ts
CHANGED
|
@@ -167,4 +167,4 @@ export declare function createSecretKey(options: CreateSecretKeyOptions): Secret
|
|
|
167
167
|
* You should no longer use those methods for custom password fields.
|
|
168
168
|
* This method provides a more secure way to check custom password fields.
|
|
169
169
|
*/
|
|
170
|
-
export declare function checkPasswordField (options: CheckPasswordFieldOptions);
|
|
170
|
+
export declare function checkPasswordField (options: CheckPasswordFieldOptions): boolean;
|
package/N/query.d.ts
CHANGED
package/N/search.d.ts
CHANGED
|
@@ -114,7 +114,8 @@ export interface Page {
|
|
|
114
114
|
isFirst: boolean;
|
|
115
115
|
isLast: boolean;
|
|
116
116
|
pagedData: PagedData;
|
|
117
|
-
|
|
117
|
+
/** The PageRange Object used to fetch this Page Object. Page boundary information with the key and label. */
|
|
118
|
+
readonly pageRange: PageRange;
|
|
118
119
|
}
|
|
119
120
|
|
|
120
121
|
export interface PageRange {
|
package/package.json
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"posttest": "npm run cleanup"
|
|
9
9
|
},
|
|
10
10
|
"homepage": "https://github.com/headintheclouddev/typings-suitescript-2.0",
|
|
11
|
-
"version": "2022.2.
|
|
11
|
+
"version": "2022.2.6",
|
|
12
12
|
"main": "index.d.ts",
|
|
13
13
|
"author": "Head in the Cloud Development <gurus@headintheclouddev.com> (www.headintheclouddev.com)",
|
|
14
14
|
"license": "MIT",
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"esprima": "^4.0.1",
|
|
25
25
|
"jasmine": "^3.7.0",
|
|
26
26
|
"shelljs": "^0.8.4",
|
|
27
|
-
"tsd": "^0.
|
|
27
|
+
"tsd": "^0.24.1",
|
|
28
28
|
"typescript": "^4.2.4"
|
|
29
29
|
},
|
|
30
30
|
"keywords": [
|