@oystehr/sdk 4.1.4 → 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.
Files changed (43) hide show
  1. package/dist/cjs/index.min.cjs +1 -1
  2. package/dist/cjs/index.min.cjs.map +1 -1
  3. package/dist/cjs/resources/classes/erx.cjs +27 -3
  4. package/dist/cjs/resources/classes/erx.cjs.map +1 -1
  5. package/dist/cjs/resources/classes/erx.d.ts +29 -3
  6. package/dist/cjs/resources/classes/fax.cjs +10 -0
  7. package/dist/cjs/resources/classes/fax.cjs.map +1 -1
  8. package/dist/cjs/resources/classes/fax.d.ts +9 -1
  9. package/dist/cjs/resources/types/Application.d.ts +4 -0
  10. package/dist/cjs/resources/types/FaxGetConfigurationResponse.d.ts +13 -0
  11. package/dist/cjs/resources/types/M2mCreateParams.d.ts +4 -0
  12. package/dist/cjs/resources/types/UserInviteParams.d.ts +4 -0
  13. package/dist/cjs/resources/types/ZambdaCreateParams.d.ts +5 -1
  14. package/dist/cjs/resources/types/ZambdaFunction.d.ts +4 -0
  15. package/dist/cjs/resources/types/ZambdaUpdateParams.d.ts +5 -1
  16. package/dist/cjs/resources/types/index.d.ts +1 -0
  17. package/dist/esm/index.min.js +1 -1
  18. package/dist/esm/index.min.js.map +1 -1
  19. package/dist/esm/resources/classes/erx.d.ts +29 -3
  20. package/dist/esm/resources/classes/erx.js +27 -3
  21. package/dist/esm/resources/classes/erx.js.map +1 -1
  22. package/dist/esm/resources/classes/fax.d.ts +9 -1
  23. package/dist/esm/resources/classes/fax.js +10 -0
  24. package/dist/esm/resources/classes/fax.js.map +1 -1
  25. package/dist/esm/resources/types/Application.d.ts +4 -0
  26. package/dist/esm/resources/types/FaxGetConfigurationResponse.d.ts +13 -0
  27. package/dist/esm/resources/types/M2mCreateParams.d.ts +4 -0
  28. package/dist/esm/resources/types/UserInviteParams.d.ts +4 -0
  29. package/dist/esm/resources/types/ZambdaCreateParams.d.ts +5 -1
  30. package/dist/esm/resources/types/ZambdaFunction.d.ts +4 -0
  31. package/dist/esm/resources/types/ZambdaUpdateParams.d.ts +5 -1
  32. package/dist/esm/resources/types/index.d.ts +1 -0
  33. package/package.json +2 -2
  34. package/src/resources/classes/erx.ts +31 -3
  35. package/src/resources/classes/fax.ts +17 -1
  36. package/src/resources/types/Application.ts +4 -0
  37. package/src/resources/types/FaxGetConfigurationResponse.ts +15 -0
  38. package/src/resources/types/M2mCreateParams.ts +4 -0
  39. package/src/resources/types/UserInviteParams.ts +4 -0
  40. package/src/resources/types/ZambdaCreateParams.ts +5 -1
  41. package/src/resources/types/ZambdaFunction.ts +4 -0
  42. package/src/resources/types/ZambdaUpdateParams.ts +5 -1
  43. package/src/resources/types/index.ts +1 -0
@@ -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
  }
@@ -15,7 +15,7 @@ export interface ZambdaUpdateParams {
15
15
  /**
16
16
  * The runtime to use for the Zambda Function.
17
17
  */
18
- runtime?: 'nodejs18.x' | 'nodejs20.x' | 'nodejs22.x' | 'python3.13' | 'python3.12' | 'java21' | 'dotnet9' | 'ruby3.3';
18
+ runtime?: 'nodejs20.x' | 'nodejs22.x' | 'python3.13' | 'python3.12' | 'java21' | 'dotnet9' | 'ruby3.3';
19
19
  /**
20
20
  * The amount of memory in MB to allocate to the Zambda Function. If not specified, a system default (1024MB) will be used. Min: 128MB, Max: 10240MB.
21
21
  */
@@ -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
  }
@@ -167,6 +167,7 @@ export * from './ZambdaLogStreamSearchResponse';
167
167
  export * from './ZambdaLogStreamGetParams';
168
168
  export * from './ZambdaLogStreamGetResponse';
169
169
  export * from './FaxOnboardResponse';
170
+ export * from './FaxGetConfigurationResponse';
170
171
  export * from './FaxSendParams';
171
172
  export * from './FaxSendResponse';
172
173
  export * from './LabRouteListResponse';