candidhealth 1.14.2 → 1.14.3

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.
Files changed (32) hide show
  1. package/Client.js +2 -2
  2. package/README.md +18 -1
  3. package/api/resources/serviceFacility/types/EncounterServiceFacility.d.ts +2 -0
  4. package/api/resources/serviceFacility/types/EncounterServiceFacilityBase.d.ts +2 -0
  5. package/api/resources/serviceFacility/types/EncounterServiceFacilityUpdate.d.ts +2 -0
  6. package/api/resources/serviceFacility/types/EncounterServiceFacilityUpdateWithOptionalAddress.d.ts +2 -0
  7. package/dist/Client.js +2 -2
  8. package/dist/api/resources/serviceFacility/types/EncounterServiceFacility.d.ts +2 -0
  9. package/dist/api/resources/serviceFacility/types/EncounterServiceFacilityBase.d.ts +2 -0
  10. package/dist/api/resources/serviceFacility/types/EncounterServiceFacilityUpdate.d.ts +2 -0
  11. package/dist/api/resources/serviceFacility/types/EncounterServiceFacilityUpdateWithOptionalAddress.d.ts +2 -0
  12. package/dist/serialization/resources/serviceFacility/types/EncounterServiceFacility.d.ts +1 -0
  13. package/dist/serialization/resources/serviceFacility/types/EncounterServiceFacility.js +1 -0
  14. package/dist/serialization/resources/serviceFacility/types/EncounterServiceFacilityBase.d.ts +1 -0
  15. package/dist/serialization/resources/serviceFacility/types/EncounterServiceFacilityBase.js +1 -0
  16. package/dist/serialization/resources/serviceFacility/types/EncounterServiceFacilityUpdate.d.ts +1 -0
  17. package/dist/serialization/resources/serviceFacility/types/EncounterServiceFacilityUpdate.js +1 -0
  18. package/dist/serialization/resources/serviceFacility/types/EncounterServiceFacilityUpdateWithOptionalAddress.d.ts +1 -0
  19. package/dist/serialization/resources/serviceFacility/types/EncounterServiceFacilityUpdateWithOptionalAddress.js +1 -0
  20. package/dist/version.d.ts +1 -1
  21. package/dist/version.js +1 -1
  22. package/package.json +1 -1
  23. package/serialization/resources/serviceFacility/types/EncounterServiceFacility.d.ts +1 -0
  24. package/serialization/resources/serviceFacility/types/EncounterServiceFacility.js +1 -0
  25. package/serialization/resources/serviceFacility/types/EncounterServiceFacilityBase.d.ts +1 -0
  26. package/serialization/resources/serviceFacility/types/EncounterServiceFacilityBase.js +1 -0
  27. package/serialization/resources/serviceFacility/types/EncounterServiceFacilityUpdate.d.ts +1 -0
  28. package/serialization/resources/serviceFacility/types/EncounterServiceFacilityUpdate.js +1 -0
  29. package/serialization/resources/serviceFacility/types/EncounterServiceFacilityUpdateWithOptionalAddress.d.ts +1 -0
  30. package/serialization/resources/serviceFacility/types/EncounterServiceFacilityUpdateWithOptionalAddress.js +1 -0
  31. package/version.d.ts +1 -1
  32. package/version.js +1 -1
package/Client.js CHANGED
@@ -90,8 +90,8 @@ class CandidApiClient {
90
90
  this._options = Object.assign(Object.assign({}, _options), { headers: (0, headers_1.mergeHeaders)({
91
91
  "X-Fern-Language": "JavaScript",
92
92
  "X-Fern-SDK-Name": "candidhealth",
93
- "X-Fern-SDK-Version": "1.14.2",
94
- "User-Agent": "candidhealth/1.14.2",
93
+ "X-Fern-SDK-Version": "1.14.3",
94
+ "User-Agent": "candidhealth/1.14.3",
95
95
  "X-Fern-Runtime": core.RUNTIME.type,
96
96
  "X-Fern-Runtime-Version": core.RUNTIME.version,
97
97
  }, _options === null || _options === void 0 ? void 0 : _options.headers) });
package/README.md CHANGED
@@ -5,6 +5,23 @@
5
5
 
6
6
  The Candid TypeScript library provides convenient access to the Candid APIs from TypeScript.
7
7
 
8
+ ## Table of Contents
9
+
10
+ - [Installation](#installation)
11
+ - [Reference](#reference)
12
+ - [Usage](#usage)
13
+ - [Request and Response Types](#request-and-response-types)
14
+ - [Exception Handling](#exception-handling)
15
+ - [Advanced](#advanced)
16
+ - [Additional Headers](#additional-headers)
17
+ - [Additional Query String Parameters](#additional-query-string-parameters)
18
+ - [Retries](#retries)
19
+ - [Timeouts](#timeouts)
20
+ - [Aborting Requests](#aborting-requests)
21
+ - [Access Raw Response Data](#access-raw-response-data)
22
+ - [Runtime Compatibility](#runtime-compatibility)
23
+ - [Contributing](#contributing)
24
+
8
25
  ## Installation
9
26
 
10
27
  ```sh
@@ -35,7 +52,7 @@ await client.preEncounter.eligibilityChecks.v1.post({
35
52
  });
36
53
  ```
37
54
 
38
- ## Request And Response Types
55
+ ## Request and Response Types
39
56
 
40
57
  The SDK exports all request and response types as TypeScript interfaces. Simply import them with the
41
58
  following namespace:
@@ -30,4 +30,6 @@ export interface EncounterServiceFacility {
30
30
  * Box 32 section (b) of the CMS-1500 claim form.
31
31
  */
32
32
  secondaryIdentification?: string;
33
+ /** The associated mammography certification number for this service facility. This is a 6 digit code assigned by the FDA. */
34
+ mammographyCertificationNumber?: string;
33
35
  }
@@ -23,4 +23,6 @@ export interface EncounterServiceFacilityBase {
23
23
  * Box 32 section (b) of the CMS-1500 claim form.
24
24
  */
25
25
  secondaryIdentification?: string;
26
+ /** The associated mammography certification number for this service facility. This is a 6 digit code assigned by the FDA. */
27
+ mammographyCertificationNumber?: string;
26
28
  }
@@ -28,4 +28,6 @@ export interface EncounterServiceFacilityUpdate {
28
28
  * Box 32 section (b) of the CMS-1500 claim form.
29
29
  */
30
30
  secondaryIdentification?: string;
31
+ /** The associated mammography certification number for this service facility. This is a 6 digit code assigned by the FDA. */
32
+ mammographyCertificationNumber?: string;
31
33
  }
@@ -14,4 +14,6 @@ export interface EncounterServiceFacilityUpdateWithOptionalAddress {
14
14
  * Box 32 section (b) of the CMS-1500 claim form.
15
15
  */
16
16
  secondaryIdentification?: string;
17
+ /** The associated mammography certification number for this service facility. This is a 6 digit code assigned by the FDA. */
18
+ mammographyCertificationNumber?: string;
17
19
  }
package/dist/Client.js CHANGED
@@ -90,8 +90,8 @@ class CandidApiClient {
90
90
  this._options = Object.assign(Object.assign({}, _options), { headers: (0, headers_1.mergeHeaders)({
91
91
  "X-Fern-Language": "JavaScript",
92
92
  "X-Fern-SDK-Name": "candidhealth",
93
- "X-Fern-SDK-Version": "1.14.2",
94
- "User-Agent": "candidhealth/1.14.2",
93
+ "X-Fern-SDK-Version": "1.14.3",
94
+ "User-Agent": "candidhealth/1.14.3",
95
95
  "X-Fern-Runtime": core.RUNTIME.type,
96
96
  "X-Fern-Runtime-Version": core.RUNTIME.version,
97
97
  }, _options === null || _options === void 0 ? void 0 : _options.headers) });
@@ -30,4 +30,6 @@ export interface EncounterServiceFacility {
30
30
  * Box 32 section (b) of the CMS-1500 claim form.
31
31
  */
32
32
  secondaryIdentification?: string;
33
+ /** The associated mammography certification number for this service facility. This is a 6 digit code assigned by the FDA. */
34
+ mammographyCertificationNumber?: string;
33
35
  }
@@ -23,4 +23,6 @@ export interface EncounterServiceFacilityBase {
23
23
  * Box 32 section (b) of the CMS-1500 claim form.
24
24
  */
25
25
  secondaryIdentification?: string;
26
+ /** The associated mammography certification number for this service facility. This is a 6 digit code assigned by the FDA. */
27
+ mammographyCertificationNumber?: string;
26
28
  }
@@ -28,4 +28,6 @@ export interface EncounterServiceFacilityUpdate {
28
28
  * Box 32 section (b) of the CMS-1500 claim form.
29
29
  */
30
30
  secondaryIdentification?: string;
31
+ /** The associated mammography certification number for this service facility. This is a 6 digit code assigned by the FDA. */
32
+ mammographyCertificationNumber?: string;
31
33
  }
@@ -14,4 +14,6 @@ export interface EncounterServiceFacilityUpdateWithOptionalAddress {
14
14
  * Box 32 section (b) of the CMS-1500 claim form.
15
15
  */
16
16
  secondaryIdentification?: string;
17
+ /** The associated mammography certification number for this service facility. This is a 6 digit code assigned by the FDA. */
18
+ mammographyCertificationNumber?: string;
17
19
  }
@@ -11,5 +11,6 @@ export declare namespace EncounterServiceFacility {
11
11
  npi?: string | null;
12
12
  address: StreetAddressLongZip.Raw;
13
13
  secondary_identification?: string | null;
14
+ mammography_certification_number?: string | null;
14
15
  }
15
16
  }
@@ -44,4 +44,5 @@ exports.EncounterServiceFacility = core.serialization.object({
44
44
  npi: core.serialization.string().optional(),
45
45
  address: StreetAddressLongZip_1.StreetAddressLongZip,
46
46
  secondaryIdentification: core.serialization.property("secondary_identification", core.serialization.string().optional()),
47
+ mammographyCertificationNumber: core.serialization.property("mammography_certification_number", core.serialization.string().optional()),
47
48
  });
@@ -9,5 +9,6 @@ export declare namespace EncounterServiceFacilityBase {
9
9
  npi?: string | null;
10
10
  address: StreetAddressLongZip.Raw;
11
11
  secondary_identification?: string | null;
12
+ mammography_certification_number?: string | null;
12
13
  }
13
14
  }
@@ -42,4 +42,5 @@ exports.EncounterServiceFacilityBase = core.serialization.object({
42
42
  npi: core.serialization.string().optional(),
43
43
  address: StreetAddressLongZip_1.StreetAddressLongZip,
44
44
  secondaryIdentification: core.serialization.property("secondary_identification", core.serialization.string().optional()),
45
+ mammographyCertificationNumber: core.serialization.property("mammography_certification_number", core.serialization.string().optional()),
45
46
  });
@@ -9,5 +9,6 @@ export declare namespace EncounterServiceFacilityUpdate {
9
9
  npi?: string | null;
10
10
  address?: StreetAddressLongZip.Raw | null;
11
11
  secondary_identification?: string | null;
12
+ mammography_certification_number?: string | null;
12
13
  }
13
14
  }
@@ -42,4 +42,5 @@ exports.EncounterServiceFacilityUpdate = core.serialization.object({
42
42
  npi: core.serialization.string().optional(),
43
43
  address: StreetAddressLongZip_1.StreetAddressLongZip.optional(),
44
44
  secondaryIdentification: core.serialization.property("secondary_identification", core.serialization.string().optional()),
45
+ mammographyCertificationNumber: core.serialization.property("mammography_certification_number", core.serialization.string().optional()),
45
46
  });
@@ -9,5 +9,6 @@ export declare namespace EncounterServiceFacilityUpdateWithOptionalAddress {
9
9
  npi?: string | null;
10
10
  address?: StreetAddressShortZipOptional.Raw | null;
11
11
  secondary_identification?: string | null;
12
+ mammography_certification_number?: string | null;
12
13
  }
13
14
  }
@@ -42,4 +42,5 @@ exports.EncounterServiceFacilityUpdateWithOptionalAddress = core.serialization.o
42
42
  npi: core.serialization.string().optional(),
43
43
  address: StreetAddressShortZipOptional_1.StreetAddressShortZipOptional.optional(),
44
44
  secondaryIdentification: core.serialization.property("secondary_identification", core.serialization.string().optional()),
45
+ mammographyCertificationNumber: core.serialization.property("mammography_certification_number", core.serialization.string().optional()),
45
46
  });
package/dist/version.d.ts CHANGED
@@ -1 +1 @@
1
- export declare const SDK_VERSION = "1.14.2";
1
+ export declare const SDK_VERSION = "1.14.3";
package/dist/version.js CHANGED
@@ -1,4 +1,4 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.SDK_VERSION = void 0;
4
- exports.SDK_VERSION = "1.14.2";
4
+ exports.SDK_VERSION = "1.14.3";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "candidhealth",
3
- "version": "1.14.2",
3
+ "version": "1.14.3",
4
4
  "private": false,
5
5
  "repository": "github:candidhealth/candid-node",
6
6
  "main": "./index.js",
@@ -11,5 +11,6 @@ export declare namespace EncounterServiceFacility {
11
11
  npi?: string | null;
12
12
  address: StreetAddressLongZip.Raw;
13
13
  secondary_identification?: string | null;
14
+ mammography_certification_number?: string | null;
14
15
  }
15
16
  }
@@ -44,4 +44,5 @@ exports.EncounterServiceFacility = core.serialization.object({
44
44
  npi: core.serialization.string().optional(),
45
45
  address: StreetAddressLongZip_1.StreetAddressLongZip,
46
46
  secondaryIdentification: core.serialization.property("secondary_identification", core.serialization.string().optional()),
47
+ mammographyCertificationNumber: core.serialization.property("mammography_certification_number", core.serialization.string().optional()),
47
48
  });
@@ -9,5 +9,6 @@ export declare namespace EncounterServiceFacilityBase {
9
9
  npi?: string | null;
10
10
  address: StreetAddressLongZip.Raw;
11
11
  secondary_identification?: string | null;
12
+ mammography_certification_number?: string | null;
12
13
  }
13
14
  }
@@ -42,4 +42,5 @@ exports.EncounterServiceFacilityBase = core.serialization.object({
42
42
  npi: core.serialization.string().optional(),
43
43
  address: StreetAddressLongZip_1.StreetAddressLongZip,
44
44
  secondaryIdentification: core.serialization.property("secondary_identification", core.serialization.string().optional()),
45
+ mammographyCertificationNumber: core.serialization.property("mammography_certification_number", core.serialization.string().optional()),
45
46
  });
@@ -9,5 +9,6 @@ export declare namespace EncounterServiceFacilityUpdate {
9
9
  npi?: string | null;
10
10
  address?: StreetAddressLongZip.Raw | null;
11
11
  secondary_identification?: string | null;
12
+ mammography_certification_number?: string | null;
12
13
  }
13
14
  }
@@ -42,4 +42,5 @@ exports.EncounterServiceFacilityUpdate = core.serialization.object({
42
42
  npi: core.serialization.string().optional(),
43
43
  address: StreetAddressLongZip_1.StreetAddressLongZip.optional(),
44
44
  secondaryIdentification: core.serialization.property("secondary_identification", core.serialization.string().optional()),
45
+ mammographyCertificationNumber: core.serialization.property("mammography_certification_number", core.serialization.string().optional()),
45
46
  });
@@ -9,5 +9,6 @@ export declare namespace EncounterServiceFacilityUpdateWithOptionalAddress {
9
9
  npi?: string | null;
10
10
  address?: StreetAddressShortZipOptional.Raw | null;
11
11
  secondary_identification?: string | null;
12
+ mammography_certification_number?: string | null;
12
13
  }
13
14
  }
@@ -42,4 +42,5 @@ exports.EncounterServiceFacilityUpdateWithOptionalAddress = core.serialization.o
42
42
  npi: core.serialization.string().optional(),
43
43
  address: StreetAddressShortZipOptional_1.StreetAddressShortZipOptional.optional(),
44
44
  secondaryIdentification: core.serialization.property("secondary_identification", core.serialization.string().optional()),
45
+ mammographyCertificationNumber: core.serialization.property("mammography_certification_number", core.serialization.string().optional()),
45
46
  });
package/version.d.ts CHANGED
@@ -1 +1 @@
1
- export declare const SDK_VERSION = "1.14.2";
1
+ export declare const SDK_VERSION = "1.14.3";
package/version.js CHANGED
@@ -1,4 +1,4 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.SDK_VERSION = void 0;
4
- exports.SDK_VERSION = "1.14.2";
4
+ exports.SDK_VERSION = "1.14.3";