@hitc/netsuite-types 2023.2.6 → 2023.2.7
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/query.d.ts +9 -9
- package/package.json +1 -1
package/N/query.d.ts
CHANGED
|
@@ -467,13 +467,13 @@ export interface Column {
|
|
|
467
467
|
* Id of column field.
|
|
468
468
|
* @throws {SuiteScriptError} READ_ONLY when setting the property is attempted
|
|
469
469
|
*/
|
|
470
|
-
readonly prototype
|
|
470
|
+
readonly prototype?: string;
|
|
471
471
|
|
|
472
472
|
/**
|
|
473
473
|
* Query component. Returns the Component to which this column belongs.
|
|
474
474
|
* @throws {SuiteScriptError} READ_ONLY when setting the property is attempted
|
|
475
475
|
*/
|
|
476
|
-
readonly component
|
|
476
|
+
readonly component?: Component;
|
|
477
477
|
|
|
478
478
|
/** Holds the name of the query result column. */
|
|
479
479
|
readonly fieldId: string;
|
|
@@ -482,31 +482,31 @@ export interface Column {
|
|
|
482
482
|
* Formula.
|
|
483
483
|
* @throws {SuiteScriptError} READ_ONLY when setting the property is attempted
|
|
484
484
|
*/
|
|
485
|
-
readonly formula
|
|
485
|
+
readonly formula?: string;
|
|
486
486
|
|
|
487
487
|
/**
|
|
488
488
|
* Desired value type of the formula (if it was explicitly stated upon Column creation).
|
|
489
489
|
* @throws {SuiteScriptError} READ_ONLY when setting the property is attempted
|
|
490
490
|
*/
|
|
491
|
-
readonly type
|
|
491
|
+
readonly type?: string;
|
|
492
492
|
|
|
493
493
|
/**
|
|
494
494
|
* Aggregate function (value from Aggregate enum).
|
|
495
495
|
* @throws {SuiteScriptError} READ_ONLY when setting the property is attempted
|
|
496
496
|
*/
|
|
497
|
-
readonly aggregate
|
|
497
|
+
readonly aggregate?: string;
|
|
498
498
|
|
|
499
499
|
/**
|
|
500
500
|
* The group-by flag.
|
|
501
501
|
* @throws {SuiteScriptError} READ_ONLY when setting the property is attempted
|
|
502
502
|
*/
|
|
503
|
-
readonly groupBy
|
|
503
|
+
readonly groupBy?: boolean;
|
|
504
504
|
|
|
505
|
-
readonly label
|
|
506
|
-
readonly alias
|
|
505
|
+
readonly label?: string;
|
|
506
|
+
readonly alias?: string;
|
|
507
507
|
|
|
508
508
|
/** The field context for values in the query result column. */
|
|
509
|
-
readonly context
|
|
509
|
+
readonly context?: ColumnContextOptions;
|
|
510
510
|
}
|
|
511
511
|
|
|
512
512
|
/**
|
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": "2023.2.
|
|
11
|
+
"version": "2023.2.7",
|
|
12
12
|
"author": "Head in the Cloud Development <gurus@headintheclouddev.com> (www.headintheclouddev.com)",
|
|
13
13
|
"license": "MIT",
|
|
14
14
|
"repository": {
|