@oystehr/sdk 3.0.10 → 3.0.12
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/dist/cjs/index.cjs +1 -1
- package/dist/cjs/index.cjs.map +1 -1
- package/dist/cjs/index.min.cjs.map +1 -1
- package/dist/cjs/resources/classes/project.d.ts +1 -1
- package/dist/cjs/resources/types/M2mCreateParams.d.ts +1 -1
- package/dist/cjs/resources/types/ZambdaExecuteResult.d.ts +3 -1
- package/dist/cjs/resources/types/ZambdaUpdateParams.d.ts +1 -1
- package/dist/esm/index.min.js.map +1 -1
- package/dist/esm/node_modules/tslib/package.json +1 -0
- package/dist/esm/node_modules/tslib/tslib.es6.js +40 -0
- package/dist/esm/node_modules/tslib/tslib.es6.js.map +1 -0
- package/dist/esm/resources/classes/project.d.ts +1 -1
- package/dist/esm/resources/classes/project.js +1 -1
- package/dist/esm/resources/classes/project.js.map +1 -1
- package/dist/esm/resources/types/M2mCreateParams.d.ts +1 -1
- package/dist/esm/resources/types/ZambdaExecuteResult.d.ts +3 -1
- package/dist/esm/resources/types/ZambdaUpdateParams.d.ts +1 -1
- package/package.json +1 -1
- package/src/resources/classes/project.ts +1 -1
- package/src/resources/types/M2mCreateParams.ts +1 -1
- package/src/resources/types/ZambdaExecuteResult.ts +8 -1
- package/src/resources/types/ZambdaUpdateParams.ts +1 -1
|
@@ -5,7 +5,7 @@ export declare class Project extends SDKResource {
|
|
|
5
5
|
#private;
|
|
6
6
|
constructor(config: OystehrConfig);
|
|
7
7
|
/**
|
|
8
|
-
* Get the Project settings for a Project. Developers must specify a [project ID](https://docs.oystehr.com/oystehr/core-documentation/authenticating-api-requests/#x-
|
|
8
|
+
* Get the Project settings for a Project. Developers must specify a [project ID](https://docs.oystehr.com/oystehr/core-documentation/authenticating-api-requests/#x-oystehr-project-id-header) in the header. A Project is the logically-isolated instance of Oystehr that segments your data from other Projects. [Projects](https://docs.oystehr.com/oystehr/services/project/) are completely independent from each other, having their own separate [FHIR store](https://docs.oystehr.com/oystehr/services/fhir/basics/), [Applications](https://docs.oystehr.com/oystehr/services/app/applications/), [Users](https://docs.oystehr.com/oystehr/services/app/users/), etc .
|
|
9
9
|
*
|
|
10
10
|
* Access Policy Action: `Project:GetProjectInfo`
|
|
11
11
|
* Access Policy Resource: `Project:Settings`
|
|
@@ -7,7 +7,7 @@ export interface M2mCreateParams {
|
|
|
7
7
|
/**
|
|
8
8
|
* A description of the M2M Client to help you differentiate it from other M2M Clients in the project.
|
|
9
9
|
*/
|
|
10
|
-
description
|
|
10
|
+
description?: string;
|
|
11
11
|
accessPolicy?: AccessPolicy;
|
|
12
12
|
/**
|
|
13
13
|
* A list of Role IDs to assign to the M2M client. If the accessPolicy property is not provided this property is required and may not be empty.
|
|
@@ -12,6 +12,6 @@ export interface ZambdaUpdateParams {
|
|
|
12
12
|
/**
|
|
13
13
|
* The runtime to use for the Zambda Function. This property is optional and defaults to "nodejs20.x".
|
|
14
14
|
*/
|
|
15
|
-
runtime?: 'nodejs18.x' | 'nodejs20.x' | 'nodejs22.x';
|
|
15
|
+
runtime?: 'nodejs18.x' | 'nodejs20.x' | 'nodejs22.x' | 'python3.13' | 'python3.12' | 'java21' | 'dotnet9' | 'ruby3.3';
|
|
16
16
|
id: string;
|
|
17
17
|
}
|