@hitc/netsuite-types 2024.1.6 → 2024.1.8

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.
@@ -101,7 +101,7 @@ interface DeleteCertificateOptions {
101
101
 
102
102
  interface FindCertificatesOptions {
103
103
  /** The internal ID of the subsidiary. */
104
- subsidiary?: string;
104
+ subsidiary?: number;
105
105
  /** The certificate file type. */
106
106
  type?: string;
107
107
  /** The internal ID of an employee selected in the Restrict to Employees field. */
@@ -112,6 +112,8 @@ interface FindCertificatesOptions {
112
112
  name?: string;
113
113
  /** The certificate description. You can use this filter with the certificateControl.Operator enum. */
114
114
  description?: string;
115
+ /** Script name to be used for searching for certificates with restrictions to a particular script. */
116
+ scriptRestriction?: string;
115
117
  }
116
118
 
117
119
  interface FindUsagesOptions {
package/N/crypto.d.ts CHANGED
@@ -134,11 +134,13 @@ export declare enum EncryptionAlg {
134
134
  AES,
135
135
  }
136
136
 
137
+ /**
138
+ * Holds the string values for supported hashing algorithms.
139
+ * Use this enum to set the value of the options.algorithm parameter for crypto.createHash(options) and crypto.createHmac(options).
140
+ */
137
141
  export declare enum HashAlg {
138
- // SHA1,
139
142
  SHA256,
140
143
  SHA512
141
- // MD5,
142
144
  }
143
145
 
144
146
  export declare enum Padding {
@@ -167,4 +169,4 @@ export declare function createSecretKey(options: CreateSecretKeyOptions): Secret
167
169
  * You should no longer use those methods for custom password fields.
168
170
  * This method provides a more secure way to check custom password fields.
169
171
  */
170
- export declare function checkPasswordField (options: CheckPasswordFieldOptions): boolean;
172
+ export declare function checkPasswordField(options: CheckPasswordFieldOptions): boolean;
@@ -327,7 +327,7 @@ export interface Assistant {
327
327
  /** The relative path to the client script file to be used in this assistant. */
328
328
  clientScriptModulePath: string;
329
329
  /** Identifies the current step. You can set any step as the current step. */
330
- currentStep: AssistantStep;
330
+ currentStep?: AssistantStep;
331
331
  /** Error message text for the current step. Optionally, you can use HTML tags to format the message. */
332
332
  errorHtml: string | undefined;
333
333
  /** The text to display after the assistant finishes. For example “You have completed the Small Business Setup Assistant. Take the rest of the day off”. To trigger display of the completion message, call Assistant.isFinished(). */
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": "2024.1.6",
11
+ "version": "2024.1.8",
12
12
  "author": "Head in the Cloud Development <gurus@headintheclouddev.com> (www.headintheclouddev.com)",
13
13
  "license": "MIT",
14
14
  "repository": {