@amigo-ai/platform-sdk 0.51.0 → 0.53.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.
- package/api.md +0 -2
- package/dist/index.cjs +0 -13
- package/dist/index.cjs.map +2 -2
- package/dist/index.mjs +0 -13
- package/dist/index.mjs.map +2 -2
- package/dist/resources/settings.js +2 -11
- package/dist/resources/settings.js.map +1 -1
- package/dist/types/generated/api.d.ts +631 -122
- package/dist/types/generated/api.d.ts.map +1 -1
- package/dist/types/resources/fhir.d.ts +12 -0
- package/dist/types/resources/fhir.d.ts.map +1 -1
- package/dist/types/resources/functions.d.ts.map +1 -1
- package/dist/types/resources/intake.d.ts.map +1 -1
- package/dist/types/resources/metrics.d.ts.map +1 -1
- package/dist/types/resources/operators.d.ts.map +1 -1
- package/dist/types/resources/services.d.ts.map +1 -1
- package/dist/types/resources/settings.d.ts +2 -10
- package/dist/types/resources/settings.d.ts.map +1 -1
- package/dist/types/resources/surfaces.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -3110,19 +3110,6 @@ var SettingsResource = class extends WorkspaceScopedResource {
|
|
|
3110
3110
|
})
|
|
3111
3111
|
)
|
|
3112
3112
|
};
|
|
3113
|
-
security = {
|
|
3114
|
-
get: async () => extractData(
|
|
3115
|
-
await this.client.GET("/v1/{workspace_id}/settings/security", {
|
|
3116
|
-
params: { path: { workspace_id: this.workspaceId } }
|
|
3117
|
-
})
|
|
3118
|
-
),
|
|
3119
|
-
update: async (body) => extractData(
|
|
3120
|
-
await this.client.PUT("/v1/{workspace_id}/settings/security", {
|
|
3121
|
-
params: { path: { workspace_id: this.workspaceId } },
|
|
3122
|
-
body
|
|
3123
|
-
})
|
|
3124
|
-
)
|
|
3125
|
-
};
|
|
3126
3113
|
retention = {
|
|
3127
3114
|
get: async () => extractData(
|
|
3128
3115
|
await this.client.GET("/v1/{workspace_id}/settings/retention", {
|