@vbasoftware/vbapi-vbasoftware-typescript-axios 1.20230822.1 → 1.20230826.1

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.
@@ -932,6 +932,12 @@ export interface CompanyData {
932
932
  * @memberof CompanyData
933
933
  */
934
934
  'country_ID'?: string | null;
935
+ /**
936
+ * Note: The database will apply a default value of `False` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `False` to meet the API requirements and ensure that the functionality occurs as expected.
937
+ * @type {boolean}
938
+ * @memberof CompanyData
939
+ */
940
+ 'credential_By_Payee': boolean;
935
941
  /**
936
942
  * When selected, turn on Credentialing
937
943
  * @type {string}
@@ -2192,6 +2198,12 @@ export interface CompanyData {
2192
2198
  * @memberof CompanyData
2193
2199
  */
2194
2200
  'use_Tax_Control': boolean;
2201
+ /**
2202
+ * Note: The database will apply a default value of `False` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `False` to meet the API requirements and ensure that the functionality occurs as expected.
2203
+ * @type {boolean}
2204
+ * @memberof CompanyData
2205
+ */
2206
+ 'use_VBAdjudicate_2': boolean;
2195
2207
  /**
2196
2208
  * Whether or not Zip Code with auto poulate city/state based on Zip Code Note: The database will apply a default value of `False` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `False` to meet the API requirements and ensure that the functionality occurs as expected.
2197
2209
  * @type {boolean}
@@ -21,13 +21,13 @@
21
21
  */
22
22
  export interface ReportDefinition {
23
23
  /**
24
- * ID of the report definition.
24
+ * ID of the report definition. Note: The database will apply a default value of `0` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `0` to meet the API requirements and ensure that the functionality occurs as expected.
25
25
  * @type {number}
26
26
  * @memberof ReportDefinition
27
27
  */
28
28
  'reportDefinition_Key': number;
29
29
  /**
30
- * This will combine the results of a criteria window with multiple criteria.
30
+ * This will combine the results of a criteria window with multiple criteria. Note: The database will apply a default value of `False` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `False` to meet the API requirements and ensure that the functionality occurs as expected.
31
31
  * @type {boolean}
32
32
  * @memberof ReportDefinition
33
33
  */
@@ -45,23 +45,41 @@ export interface ReportDefinition {
45
45
  */
46
46
  'custom_Report'?: string | null;
47
47
  /**
48
- * Flag indicating if the adjustment category should be excluded from the report
48
+ * Date record was first added to the system
49
+ * @type {string}
50
+ * @memberof ReportDefinition
51
+ */
52
+ 'entry_Date'?: string;
53
+ /**
54
+ * User that first added the record to the system
55
+ * @type {string}
56
+ * @memberof ReportDefinition
57
+ */
58
+ 'entry_User'?: string | null;
59
+ /**
60
+ * Flag indicating if the adjustment category should be excluded from the report Note: The database will apply a default value of `False` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `False` to meet the API requirements and ensure that the functionality occurs as expected.
49
61
  * @type {boolean}
50
62
  * @memberof ReportDefinition
51
63
  */
52
64
  'exclude_Adjustment_Category': boolean;
53
65
  /**
54
- * Flag indicating if the other category should be excluded from the report
66
+ * Flag indicating if the other category should be excluded from the report Note: The database will apply a default value of `False` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `False` to meet the API requirements and ensure that the functionality occurs as expected.
55
67
  * @type {boolean}
56
68
  * @memberof ReportDefinition
57
69
  */
58
70
  'exclude_Other_Category': boolean;
59
71
  /**
60
- * Flag indicating if the total category should be excluded from the report
72
+ * Flag indicating if the total category should be excluded from the report Note: The database will apply a default value of `False` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `False` to meet the API requirements and ensure that the functionality occurs as expected.
61
73
  * @type {boolean}
62
74
  * @memberof ReportDefinition
63
75
  */
64
76
  'exclude_Total_Category': boolean;
77
+ /**
78
+ * Note: The database will apply a default value of `False` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `False` to meet the API requirements and ensure that the functionality occurs as expected.
79
+ * @type {boolean}
80
+ * @memberof ReportDefinition
81
+ */
82
+ 'group_Categories_Only': boolean;
65
83
  /**
66
84
  * Help file associated with the report object
67
85
  * @type {string}
@@ -81,7 +99,7 @@ export interface ReportDefinition {
81
99
  */
82
100
  'invoice_Category_Column_Count'?: number | null;
83
101
  /**
84
- * Indicates that the report has navigation.
102
+ * Indicates that the report has navigation. Note: The database will apply a default value of `False` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `False` to meet the API requirements and ensure that the functionality occurs as expected.
85
103
  * @type {boolean}
86
104
  * @memberof ReportDefinition
87
105
  */
@@ -135,22 +153,34 @@ export interface ReportDefinition {
135
153
  */
136
154
  'report_Object'?: string | null;
137
155
  /**
138
- * Indicates that the report may be used with scheduling functionality.
156
+ * Indicates that the report may be used with scheduling functionality. Note: The database will apply a default value of `False` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `False` to meet the API requirements and ensure that the functionality occurs as expected.
139
157
  * @type {boolean}
140
158
  * @memberof ReportDefinition
141
159
  */
142
160
  'schedule_Report': boolean;
143
161
  /**
144
- * Indicates that the report may be added to a report series.
162
+ * Indicates that the report may be added to a report series. Note: The database will apply a default value of `False` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `False` to meet the API requirements and ensure that the functionality occurs as expected.
145
163
  * @type {boolean}
146
164
  * @memberof ReportDefinition
147
165
  */
148
166
  'series_Report': boolean;
149
167
  /**
150
- * Indicates that tracking functionality will be used for the report.
168
+ * Indicates that tracking functionality will be used for the report. Note: The database will apply a default value of `False` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `False` to meet the API requirements and ensure that the functionality occurs as expected.
151
169
  * @type {boolean}
152
170
  * @memberof ReportDefinition
153
171
  */
154
172
  'trackable_Report': boolean;
173
+ /**
174
+ * Date the record was last updated in the system
175
+ * @type {string}
176
+ * @memberof ReportDefinition
177
+ */
178
+ 'update_Date'?: string;
179
+ /**
180
+ * User that last updated the record in the system
181
+ * @type {string}
182
+ * @memberof ReportDefinition
183
+ */
184
+ 'update_User'?: string | null;
155
185
  }
156
186
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vbasoftware/vbapi-vbasoftware-typescript-axios",
3
- "version": "1.20230822.1",
3
+ "version": "1.20230826.1",
4
4
  "description": "APIs for VBASoftware APIs",
5
5
  "main": "index.js",
6
6
  "scripts": {