@rinse-dental/open-dental 2.4.13 → 2.4.14

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.
@@ -6,9 +6,9 @@ export default class SecurityLogs {
6
6
  /**
7
7
  * Fetch multiple SecurityLogs with optional filtering and pagination.
8
8
  * @param {Object} params - The parameters for filtering and pagination.
9
- * @param {number} [params.PermType] - Optional. Filter by permission type (see Audit Trail Permissions doc).
9
+ * @param {string} [params.PermType] - Optional. Filter by permission type (see Audit Trail Permissions doc).
10
10
  * @param {number} [params.Offset] - Optional. Pagination offset for results.
11
- * @returns {Promise<Fee[]>} - A list of securitylogs.
11
+ * @returns {Promise<SecurityLog[]>} - A list of securitylogs.
12
12
  */
13
13
  getSecurityLogs({ PermType, Offset, }?: GetSecurityLogsParams): Promise<SecurityLog[]>;
14
14
  }
@@ -8,9 +8,9 @@ class SecurityLogs {
8
8
  /**
9
9
  * Fetch multiple SecurityLogs with optional filtering and pagination.
10
10
  * @param {Object} params - The parameters for filtering and pagination.
11
- * @param {number} [params.PermType] - Optional. Filter by permission type (see Audit Trail Permissions doc).
11
+ * @param {string} [params.PermType] - Optional. Filter by permission type (see Audit Trail Permissions doc).
12
12
  * @param {number} [params.Offset] - Optional. Pagination offset for results.
13
- * @returns {Promise<Fee[]>} - A list of securitylogs.
13
+ * @returns {Promise<SecurityLog[]>} - A list of securitylogs.
14
14
  */
15
15
  async getSecurityLogs({ PermType, Offset, } = {}) {
16
16
  const params = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rinse-dental/open-dental",
3
- "version": "2.4.13",
3
+ "version": "2.4.14",
4
4
  "description": "A TypeScript library for easily accessing Open Dental APIs.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -14,9 +14,9 @@ export default class SecurityLogs {
14
14
  /**
15
15
  * Fetch multiple SecurityLogs with optional filtering and pagination.
16
16
  * @param {Object} params - The parameters for filtering and pagination.
17
- * @param {number} [params.PermType] - Optional. Filter by permission type (see Audit Trail Permissions doc).
17
+ * @param {string} [params.PermType] - Optional. Filter by permission type (see Audit Trail Permissions doc).
18
18
  * @param {number} [params.Offset] - Optional. Pagination offset for results.
19
- * @returns {Promise<Fee[]>} - A list of securitylogs.
19
+ * @returns {Promise<SecurityLog[]>} - A list of securitylogs.
20
20
  */
21
21
  public async getSecurityLogs({
22
22
  PermType,