@oystehr/sdk 4.1.6 → 4.1.7
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/resources/types/M2mCreateParams.d.ts +4 -0
- package/dist/cjs/resources/types/UserInviteParams.d.ts +4 -0
- package/dist/cjs/resources/types/ZambdaCreateParams.d.ts +4 -0
- package/dist/cjs/resources/types/ZambdaFunction.d.ts +4 -0
- package/dist/cjs/resources/types/ZambdaUpdateParams.d.ts +4 -0
- package/dist/esm/resources/types/M2mCreateParams.d.ts +4 -0
- package/dist/esm/resources/types/UserInviteParams.d.ts +4 -0
- package/dist/esm/resources/types/ZambdaCreateParams.d.ts +4 -0
- package/dist/esm/resources/types/ZambdaFunction.d.ts +4 -0
- package/dist/esm/resources/types/ZambdaUpdateParams.d.ts +4 -0
- package/package.json +1 -1
- package/src/resources/types/M2mCreateParams.ts +4 -0
- package/src/resources/types/UserInviteParams.ts +4 -0
- package/src/resources/types/ZambdaCreateParams.ts +4 -0
- package/src/resources/types/ZambdaFunction.ts +4 -0
- package/src/resources/types/ZambdaUpdateParams.ts +4 -0
|
@@ -17,4 +17,8 @@ export interface M2mCreateParams {
|
|
|
17
17
|
* An URL of JWK set used for getting an access token by signed authentication JWT
|
|
18
18
|
*/
|
|
19
19
|
jwksUrl?: string;
|
|
20
|
+
/**
|
|
21
|
+
* A relative reference to a FHIR relative reference of the format Patient/{uuidV4}. Resource type must be one of Patient, Practitioner, Device.
|
|
22
|
+
*/
|
|
23
|
+
profile?: string;
|
|
20
24
|
}
|
|
@@ -32,4 +32,8 @@ export interface UserInviteParams {
|
|
|
32
32
|
* A list of Role IDs to assign to the invited user. If the accessPolicy property is not provided this property is required and may not be empty.
|
|
33
33
|
*/
|
|
34
34
|
roles?: string[];
|
|
35
|
+
/**
|
|
36
|
+
* A relative reference to a FHIR relative reference of the format Patient/{uuidV4}. Resource type must be one of Patient, Practitioner, Device.
|
|
37
|
+
*/
|
|
38
|
+
profile?: string;
|
|
35
39
|
}
|
|
@@ -21,4 +21,8 @@ export interface ZambdaCreateParams {
|
|
|
21
21
|
* The timeout for the Zambda Function in seconds. If not specified, a system default (27 seconds) will be used. Min: 1s, Max: 900s (15 minutes). Note: For 'http_auth' and 'http_open' trigger methods, the timeout cannot exceed 27 seconds due to API Gateway limitations.
|
|
22
22
|
*/
|
|
23
23
|
timeoutInSeconds?: number;
|
|
24
|
+
/**
|
|
25
|
+
* The ID of the IAM role that the Zambda Function will assume when it is invoked.
|
|
26
|
+
*/
|
|
27
|
+
executionRoleId?: string;
|
|
24
28
|
}
|
|
@@ -43,4 +43,8 @@ export interface ZambdaFunction {
|
|
|
43
43
|
* The timeout for the Zambda Function in seconds. If not specified, a system default (27 seconds) will be used. Min: 1s, Max: 900s (15 minutes). Note: For 'http_auth' and 'http_open' trigger methods, the timeout cannot exceed 27 seconds due to API Gateway limitations.
|
|
44
44
|
*/
|
|
45
45
|
timeoutInSeconds?: number;
|
|
46
|
+
/**
|
|
47
|
+
* The ID of the IAM role that the Zambda Function will assume when it is invoked.
|
|
48
|
+
*/
|
|
49
|
+
executionRoleId?: string;
|
|
46
50
|
}
|
|
@@ -21,5 +21,9 @@ export interface ZambdaUpdateParams {
|
|
|
21
21
|
* The timeout for the Zambda Function in seconds. If not specified, a system default (27 seconds) will be used. Min: 1s, Max: 900s (15 minutes). Note: For 'http_auth' and 'http_open' trigger methods, the timeout cannot exceed 27 seconds due to API Gateway limitations.
|
|
22
22
|
*/
|
|
23
23
|
timeoutInSeconds?: number;
|
|
24
|
+
/**
|
|
25
|
+
* The ID of the IAM role that the Zambda Function will assume when it is invoked.
|
|
26
|
+
*/
|
|
27
|
+
executionRoleId?: string;
|
|
24
28
|
id: string;
|
|
25
29
|
}
|
|
@@ -17,4 +17,8 @@ export interface M2mCreateParams {
|
|
|
17
17
|
* An URL of JWK set used for getting an access token by signed authentication JWT
|
|
18
18
|
*/
|
|
19
19
|
jwksUrl?: string;
|
|
20
|
+
/**
|
|
21
|
+
* A relative reference to a FHIR relative reference of the format Patient/{uuidV4}. Resource type must be one of Patient, Practitioner, Device.
|
|
22
|
+
*/
|
|
23
|
+
profile?: string;
|
|
20
24
|
}
|
|
@@ -32,4 +32,8 @@ export interface UserInviteParams {
|
|
|
32
32
|
* A list of Role IDs to assign to the invited user. If the accessPolicy property is not provided this property is required and may not be empty.
|
|
33
33
|
*/
|
|
34
34
|
roles?: string[];
|
|
35
|
+
/**
|
|
36
|
+
* A relative reference to a FHIR relative reference of the format Patient/{uuidV4}. Resource type must be one of Patient, Practitioner, Device.
|
|
37
|
+
*/
|
|
38
|
+
profile?: string;
|
|
35
39
|
}
|
|
@@ -21,4 +21,8 @@ export interface ZambdaCreateParams {
|
|
|
21
21
|
* The timeout for the Zambda Function in seconds. If not specified, a system default (27 seconds) will be used. Min: 1s, Max: 900s (15 minutes). Note: For 'http_auth' and 'http_open' trigger methods, the timeout cannot exceed 27 seconds due to API Gateway limitations.
|
|
22
22
|
*/
|
|
23
23
|
timeoutInSeconds?: number;
|
|
24
|
+
/**
|
|
25
|
+
* The ID of the IAM role that the Zambda Function will assume when it is invoked.
|
|
26
|
+
*/
|
|
27
|
+
executionRoleId?: string;
|
|
24
28
|
}
|
|
@@ -43,4 +43,8 @@ export interface ZambdaFunction {
|
|
|
43
43
|
* The timeout for the Zambda Function in seconds. If not specified, a system default (27 seconds) will be used. Min: 1s, Max: 900s (15 minutes). Note: For 'http_auth' and 'http_open' trigger methods, the timeout cannot exceed 27 seconds due to API Gateway limitations.
|
|
44
44
|
*/
|
|
45
45
|
timeoutInSeconds?: number;
|
|
46
|
+
/**
|
|
47
|
+
* The ID of the IAM role that the Zambda Function will assume when it is invoked.
|
|
48
|
+
*/
|
|
49
|
+
executionRoleId?: string;
|
|
46
50
|
}
|
|
@@ -21,5 +21,9 @@ export interface ZambdaUpdateParams {
|
|
|
21
21
|
* The timeout for the Zambda Function in seconds. If not specified, a system default (27 seconds) will be used. Min: 1s, Max: 900s (15 minutes). Note: For 'http_auth' and 'http_open' trigger methods, the timeout cannot exceed 27 seconds due to API Gateway limitations.
|
|
22
22
|
*/
|
|
23
23
|
timeoutInSeconds?: number;
|
|
24
|
+
/**
|
|
25
|
+
* The ID of the IAM role that the Zambda Function will assume when it is invoked.
|
|
26
|
+
*/
|
|
27
|
+
executionRoleId?: string;
|
|
24
28
|
id: string;
|
|
25
29
|
}
|
package/package.json
CHANGED
|
@@ -20,4 +20,8 @@ export interface M2mCreateParams {
|
|
|
20
20
|
* An URL of JWK set used for getting an access token by signed authentication JWT
|
|
21
21
|
*/
|
|
22
22
|
jwksUrl?: string;
|
|
23
|
+
/**
|
|
24
|
+
* A relative reference to a FHIR relative reference of the format Patient/{uuidV4}. Resource type must be one of Patient, Practitioner, Device.
|
|
25
|
+
*/
|
|
26
|
+
profile?: string;
|
|
23
27
|
}
|
|
@@ -35,4 +35,8 @@ export interface UserInviteParams {
|
|
|
35
35
|
* A list of Role IDs to assign to the invited user. If the accessPolicy property is not provided this property is required and may not be empty.
|
|
36
36
|
*/
|
|
37
37
|
roles?: string[];
|
|
38
|
+
/**
|
|
39
|
+
* A relative reference to a FHIR relative reference of the format Patient/{uuidV4}. Resource type must be one of Patient, Practitioner, Device.
|
|
40
|
+
*/
|
|
41
|
+
profile?: string;
|
|
38
42
|
}
|
|
@@ -24,4 +24,8 @@ export interface ZambdaCreateParams {
|
|
|
24
24
|
* The timeout for the Zambda Function in seconds. If not specified, a system default (27 seconds) will be used. Min: 1s, Max: 900s (15 minutes). Note: For 'http_auth' and 'http_open' trigger methods, the timeout cannot exceed 27 seconds due to API Gateway limitations.
|
|
25
25
|
*/
|
|
26
26
|
timeoutInSeconds?: number;
|
|
27
|
+
/**
|
|
28
|
+
* The ID of the IAM role that the Zambda Function will assume when it is invoked.
|
|
29
|
+
*/
|
|
30
|
+
executionRoleId?: string;
|
|
27
31
|
}
|
|
@@ -46,4 +46,8 @@ export interface ZambdaFunction {
|
|
|
46
46
|
* The timeout for the Zambda Function in seconds. If not specified, a system default (27 seconds) will be used. Min: 1s, Max: 900s (15 minutes). Note: For 'http_auth' and 'http_open' trigger methods, the timeout cannot exceed 27 seconds due to API Gateway limitations.
|
|
47
47
|
*/
|
|
48
48
|
timeoutInSeconds?: number;
|
|
49
|
+
/**
|
|
50
|
+
* The ID of the IAM role that the Zambda Function will assume when it is invoked.
|
|
51
|
+
*/
|
|
52
|
+
executionRoleId?: string;
|
|
49
53
|
}
|
|
@@ -24,5 +24,9 @@ export interface ZambdaUpdateParams {
|
|
|
24
24
|
* The timeout for the Zambda Function in seconds. If not specified, a system default (27 seconds) will be used. Min: 1s, Max: 900s (15 minutes). Note: For 'http_auth' and 'http_open' trigger methods, the timeout cannot exceed 27 seconds due to API Gateway limitations.
|
|
25
25
|
*/
|
|
26
26
|
timeoutInSeconds?: number;
|
|
27
|
+
/**
|
|
28
|
+
* The ID of the IAM role that the Zambda Function will assume when it is invoked.
|
|
29
|
+
*/
|
|
30
|
+
executionRoleId?: string;
|
|
27
31
|
id: string;
|
|
28
32
|
}
|