@hitc/netsuite-types 2024.2.10 → 2024.2.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.
- package/N/file.d.ts +4 -4
- package/package.json +1 -1
package/N/file.d.ts
CHANGED
|
@@ -46,17 +46,17 @@ interface FileAppendLineOptions {
|
|
|
46
46
|
value: string;
|
|
47
47
|
}
|
|
48
48
|
|
|
49
|
-
interface FileLoadOptions {
|
|
49
|
+
export interface FileLoadOptions {
|
|
50
50
|
/** Internal ID of the file as a number or a string, or the relative file path to the file in the file cabinet. */
|
|
51
51
|
id: (number | string);
|
|
52
52
|
}
|
|
53
53
|
|
|
54
|
-
interface FileDeleteOptions {
|
|
54
|
+
export interface FileDeleteOptions {
|
|
55
55
|
/** Internal ID of the file. */
|
|
56
56
|
id: (number | string);
|
|
57
57
|
}
|
|
58
58
|
|
|
59
|
-
interface FileCopyOptions {
|
|
59
|
+
export interface FileCopyOptions {
|
|
60
60
|
/** The internal ID of the folder to copy the file to. This folder must already exist in the File Cabinet. */
|
|
61
61
|
folder: number;
|
|
62
62
|
/** The internal ID of the file to copy. The file must already exist in the file cabinet. */
|
|
@@ -70,7 +70,7 @@ interface FileCopyOptions {
|
|
|
70
70
|
conflictResolution: NameConflictResolution;
|
|
71
71
|
}
|
|
72
72
|
|
|
73
|
-
interface FileCreateOptions {
|
|
73
|
+
export interface FileCreateOptions {
|
|
74
74
|
/** The file name. */
|
|
75
75
|
name: string;
|
|
76
76
|
/** The file type. */
|
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.2.
|
|
11
|
+
"version": "2024.2.11",
|
|
12
12
|
"author": "Head in the Cloud Development <gurus@headintheclouddev.com> (www.headintheclouddev.com)",
|
|
13
13
|
"license": "MIT",
|
|
14
14
|
"repository": {
|