@oystehr/sdk 3.0.11 → 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.
@@ -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: string;
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
  }
@@ -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: string;
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
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@oystehr/sdk",
3
- "version": "3.0.11",
3
+ "version": "3.0.12",
4
4
  "description": "Oystehr SDK",
5
5
  "scripts": {
6
6
  "lint": "eslint .",
@@ -10,7 +10,7 @@ export interface M2mCreateParams {
10
10
  /**
11
11
  * A description of the M2M Client to help you differentiate it from other M2M Clients in the project.
12
12
  */
13
- description: string;
13
+ description?: string;
14
14
  accessPolicy?: AccessPolicy;
15
15
  /**
16
16
  * 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.
@@ -15,6 +15,6 @@ export interface ZambdaUpdateParams {
15
15
  /**
16
16
  * The runtime to use for the Zambda Function. This property is optional and defaults to "nodejs20.x".
17
17
  */
18
- runtime?: 'nodejs18.x' | 'nodejs20.x' | 'nodejs22.x';
18
+ runtime?: 'nodejs18.x' | 'nodejs20.x' | 'nodejs22.x' | 'python3.13' | 'python3.12' | 'java21' | 'dotnet9' | 'ruby3.3';
19
19
  id: string;
20
20
  }