@hitc/netsuite-types 2025.1.8 → 2025.1.10
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/record.d.ts +1 -1
- package/N/workbook.d.ts +1 -1
- package/package.json +1 -1
package/N/record.d.ts
CHANGED
|
@@ -629,7 +629,7 @@ export interface ClientCurrentRecord {
|
|
|
629
629
|
setValue(fieldId: string, value: FieldValue): this;
|
|
630
630
|
|
|
631
631
|
/** The record type. */
|
|
632
|
-
type: Type |
|
|
632
|
+
readonly type: Type | `${Type}`;
|
|
633
633
|
}
|
|
634
634
|
|
|
635
635
|
// Exported for other modules to be able to consume this type
|
package/N/workbook.d.ts
CHANGED
|
@@ -1041,7 +1041,7 @@ export function createTableColumnFilter(options: CreateTableColumnFilter): Table
|
|
|
1041
1041
|
/**
|
|
1042
1042
|
* Creates a record key.
|
|
1043
1043
|
*/
|
|
1044
|
-
export function createSimpleRecordKey({ key: number }): number;
|
|
1044
|
+
export function createSimpleRecordKey(options: { key: number }): number;
|
|
1045
1045
|
|
|
1046
1046
|
/**
|
|
1047
1047
|
* Lists all existing workbooks.
|
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": "2025.1.
|
|
11
|
+
"version": "2025.1.10",
|
|
12
12
|
"author": "Head in the Cloud Development <gurus@headintheclouddev.com> (www.headintheclouddev.com)",
|
|
13
13
|
"license": "MIT",
|
|
14
14
|
"repository": {
|