phenoml 6.5.0 → 7.0.0

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.
@@ -52,8 +52,8 @@ class phenomlClient {
52
52
  this._options = Object.assign(Object.assign({}, _options), { logging: core.logging.createLogger(_options === null || _options === void 0 ? void 0 : _options.logging), headers: (0, headers_js_1.mergeHeaders)({
53
53
  "X-Fern-Language": "JavaScript",
54
54
  "X-Fern-SDK-Name": "phenoml",
55
- "X-Fern-SDK-Version": "6.5.0",
56
- "User-Agent": "phenoml/6.5.0",
55
+ "X-Fern-SDK-Version": "7.0.0",
56
+ "User-Agent": "phenoml/7.0.0",
57
57
  "X-Fern-Runtime": core.RUNTIME.type,
58
58
  "X-Fern-Runtime-Version": core.RUNTIME.version,
59
59
  }, _options === null || _options === void 0 ? void 0 : _options.headers) });
@@ -68,7 +68,7 @@ export declare class FhirProvider {
68
68
  get(fhir_provider_id: string, requestOptions?: FhirProvider.RequestOptions): core.HttpResponsePromise<phenoml.fhirProvider.FhirProviderResponse>;
69
69
  private __get;
70
70
  /**
71
- * Soft deletes a FHIR provider by setting is_active to false.
71
+ * Deletes a FHIR provider.
72
72
  *
73
73
  * Note: Sandbox providers cannot be deleted.
74
74
  *
@@ -279,7 +279,7 @@ class FhirProvider {
279
279
  });
280
280
  }
281
281
  /**
282
- * Soft deletes a FHIR provider by setting is_active to false.
282
+ * Deletes a FHIR provider.
283
283
  *
284
284
  * Note: Sandbox providers cannot be deleted.
285
285
  *
@@ -10,6 +10,4 @@ export interface FhirProviderSandboxInfo {
10
10
  description?: string;
11
11
  /** Provider type (always "sandbox" for this schema) */
12
12
  provider?: "sandbox";
13
- /** Whether the FHIR provider is active */
14
- is_active?: boolean;
15
13
  }
@@ -13,8 +13,6 @@ export interface FhirProviderTemplate {
13
13
  client_id?: string;
14
14
  /** Map of authentication configurations (key is auth_config_id) */
15
15
  auth_configs?: Record<string, phenoml.fhirProvider.FhirProviderAuthConfig>;
16
- /** Whether the FHIR provider is active */
17
- is_active?: boolean;
18
16
  /** Timestamp when the provider was last updated */
19
17
  last_updated?: string;
20
18
  }
@@ -19,7 +19,5 @@ export declare namespace McpServerResponse {
19
19
  description?: string;
20
20
  /** URL of the MCP server */
21
21
  mcp_server_url?: string;
22
- /** Whether the MCP server is active */
23
- is_active?: boolean;
24
22
  }
25
23
  }
@@ -23,7 +23,5 @@ export declare namespace McpServerToolResponse {
23
23
  mcp_server_id?: string;
24
24
  /** URL of the MCP server */
25
25
  mcp_server_url?: string;
26
- /** Whether the MCP server tool is active */
27
- is_active?: boolean;
28
26
  }
29
27
  }
@@ -1 +1 @@
1
- export declare const SDK_VERSION = "6.5.0";
1
+ export declare const SDK_VERSION = "7.0.0";
@@ -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 = "6.5.0";
4
+ exports.SDK_VERSION = "7.0.0";
@@ -16,8 +16,8 @@ export class phenomlClient {
16
16
  this._options = Object.assign(Object.assign({}, _options), { logging: core.logging.createLogger(_options === null || _options === void 0 ? void 0 : _options.logging), headers: mergeHeaders({
17
17
  "X-Fern-Language": "JavaScript",
18
18
  "X-Fern-SDK-Name": "phenoml",
19
- "X-Fern-SDK-Version": "6.5.0",
20
- "User-Agent": "phenoml/6.5.0",
19
+ "X-Fern-SDK-Version": "7.0.0",
20
+ "User-Agent": "phenoml/7.0.0",
21
21
  "X-Fern-Runtime": core.RUNTIME.type,
22
22
  "X-Fern-Runtime-Version": core.RUNTIME.version,
23
23
  }, _options === null || _options === void 0 ? void 0 : _options.headers) });
@@ -68,7 +68,7 @@ export declare class FhirProvider {
68
68
  get(fhir_provider_id: string, requestOptions?: FhirProvider.RequestOptions): core.HttpResponsePromise<phenoml.fhirProvider.FhirProviderResponse>;
69
69
  private __get;
70
70
  /**
71
- * Soft deletes a FHIR provider by setting is_active to false.
71
+ * Deletes a FHIR provider.
72
72
  *
73
73
  * Note: Sandbox providers cannot be deleted.
74
74
  *
@@ -243,7 +243,7 @@ export class FhirProvider {
243
243
  });
244
244
  }
245
245
  /**
246
- * Soft deletes a FHIR provider by setting is_active to false.
246
+ * Deletes a FHIR provider.
247
247
  *
248
248
  * Note: Sandbox providers cannot be deleted.
249
249
  *
@@ -10,6 +10,4 @@ export interface FhirProviderSandboxInfo {
10
10
  description?: string;
11
11
  /** Provider type (always "sandbox" for this schema) */
12
12
  provider?: "sandbox";
13
- /** Whether the FHIR provider is active */
14
- is_active?: boolean;
15
13
  }
@@ -13,8 +13,6 @@ export interface FhirProviderTemplate {
13
13
  client_id?: string;
14
14
  /** Map of authentication configurations (key is auth_config_id) */
15
15
  auth_configs?: Record<string, phenoml.fhirProvider.FhirProviderAuthConfig>;
16
- /** Whether the FHIR provider is active */
17
- is_active?: boolean;
18
16
  /** Timestamp when the provider was last updated */
19
17
  last_updated?: string;
20
18
  }
@@ -19,7 +19,5 @@ export declare namespace McpServerResponse {
19
19
  description?: string;
20
20
  /** URL of the MCP server */
21
21
  mcp_server_url?: string;
22
- /** Whether the MCP server is active */
23
- is_active?: boolean;
24
22
  }
25
23
  }
@@ -23,7 +23,5 @@ export declare namespace McpServerToolResponse {
23
23
  mcp_server_id?: string;
24
24
  /** URL of the MCP server */
25
25
  mcp_server_url?: string;
26
- /** Whether the MCP server tool is active */
27
- is_active?: boolean;
28
26
  }
29
27
  }
@@ -1 +1 @@
1
- export declare const SDK_VERSION = "6.5.0";
1
+ export declare const SDK_VERSION = "7.0.0";
@@ -1 +1 @@
1
- export const SDK_VERSION = "6.5.0";
1
+ export const SDK_VERSION = "7.0.0";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "phenoml",
3
- "version": "6.5.0",
3
+ "version": "7.0.0",
4
4
  "private": false,
5
5
  "repository": "github:PhenoML/phenoml-ts-sdk",
6
6
  "type": "commonjs",
package/reference.md CHANGED
@@ -2809,7 +2809,7 @@ await client.fhirProvider.get("fhir_provider_id");
2809
2809
  <dl>
2810
2810
  <dd>
2811
2811
 
2812
- Soft deletes a FHIR provider by setting is_active to false.
2812
+ Deletes a FHIR provider.
2813
2813
 
2814
2814
  Note: Sandbox providers cannot be deleted.
2815
2815
  </dd>