@icure/api 8.4.15 → 8.5.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.
@@ -12,11 +12,15 @@
12
12
  import { XHR } from './XHR';
13
13
  import { ApplicationSettings } from '../model/ApplicationSettings';
14
14
  import { AuthenticationProvider } from '../../icc-x-api/auth/AuthenticationProvider';
15
+ import { BulkShareOrUpdateMetadataParams } from '../model/requests/BulkShareOrUpdateMetadataParams';
16
+ import { EntityBulkShareResult } from '../model/requests/EntityBulkShareResult';
17
+ import { MinimalEntityBulkShareResult } from '../model/requests/MinimalEntityBulkShareResult';
15
18
  export declare class IccApplicationsettingsApi {
16
19
  host: string;
17
- headers: Array<XHR.Header>;
20
+ _headers: Array<XHR.Header>;
18
21
  authenticationProvider: AuthenticationProvider;
19
22
  fetchImpl?: (input: RequestInfo, init?: RequestInit) => Promise<Response>;
23
+ get headers(): Promise<Array<XHR.Header>>;
20
24
  constructor(host: string, headers: any, authenticationProvider?: AuthenticationProvider, fetchImpl?: (input: RequestInfo, init?: RequestInit) => Promise<Response>);
21
25
  setHeaders(h: Array<XHR.Header>): void;
22
26
  handleError(e: XHR.XHRError): never;
@@ -37,4 +41,12 @@ export declare class IccApplicationsettingsApi {
37
41
  * @param body
38
42
  */
39
43
  updateApplicationSettings(body?: ApplicationSettings): Promise<ApplicationSettings>;
44
+ /**
45
+ * @internal this method is for internal use only and may be changed without notice
46
+ */
47
+ bulkShareApplicationSettings(request: BulkShareOrUpdateMetadataParams): Promise<EntityBulkShareResult<ApplicationSettings>[]>;
48
+ /**
49
+ * @internal this method is for internal use only and may be changed without notice
50
+ */
51
+ bulkShareApplicationSettingsMinimal(request: BulkShareOrUpdateMetadataParams): Promise<MinimalEntityBulkShareResult[]>;
40
52
  }
@@ -1,4 +1,13 @@
1
1
  "use strict";
2
+ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
3
+ function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
4
+ return new (P || (P = Promise))(function (resolve, reject) {
5
+ function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
6
+ function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
7
+ function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
8
+ step((generator = generator.apply(thisArg, _arguments || [])).next());
9
+ });
10
+ };
2
11
  Object.defineProperty(exports, "__esModule", { value: true });
3
12
  exports.IccApplicationsettingsApi = void 0;
4
13
  /**
@@ -16,15 +25,20 @@ const XHR_1 = require("./XHR");
16
25
  const ApplicationSettings_1 = require("../model/ApplicationSettings");
17
26
  const AuthenticationProvider_1 = require("../../icc-x-api/auth/AuthenticationProvider");
18
27
  const IccRestApiPath_1 = require("./IccRestApiPath");
28
+ const EntityBulkShareResult_1 = require("../model/requests/EntityBulkShareResult");
29
+ const MinimalEntityBulkShareResult_1 = require("../model/requests/MinimalEntityBulkShareResult");
19
30
  class IccApplicationsettingsApi {
31
+ get headers() {
32
+ return Promise.resolve(this._headers);
33
+ }
20
34
  constructor(host, headers, authenticationProvider, fetchImpl) {
21
35
  this.host = (0, IccRestApiPath_1.iccRestApiPath)(host);
22
- this.headers = Object.keys(headers).map((k) => new XHR_1.XHR.Header(k, headers[k]));
36
+ this._headers = Object.keys(headers).map((k) => new XHR_1.XHR.Header(k, headers[k]));
23
37
  this.authenticationProvider = !!authenticationProvider ? authenticationProvider : new AuthenticationProvider_1.NoAuthenticationProvider();
24
38
  this.fetchImpl = fetchImpl;
25
39
  }
26
40
  setHeaders(h) {
27
- this.headers = h;
41
+ this._headers = h;
28
42
  }
29
43
  handleError(e) {
30
44
  throw e;
@@ -35,26 +49,30 @@ class IccApplicationsettingsApi {
35
49
  * @param body
36
50
  */
37
51
  createApplicationSettings(body) {
38
- let _body = null;
39
- _body = body;
40
- const _url = this.host + `/appsettings` + '?ts=' + new Date().getTime();
41
- let headers = this.headers;
42
- headers = headers.filter((h) => h.header !== 'Content-Type').concat(new XHR_1.XHR.Header('Content-Type', 'application/json'));
43
- return XHR_1.XHR.sendCommand('POST', _url, headers, _body, this.fetchImpl, undefined, this.authenticationProvider.getAuthService())
44
- .then((doc) => new ApplicationSettings_1.ApplicationSettings(doc.body))
45
- .catch((err) => this.handleError(err));
52
+ return __awaiter(this, void 0, void 0, function* () {
53
+ let _body = null;
54
+ _body = body;
55
+ const _url = this.host + `/appsettings` + '?ts=' + new Date().getTime();
56
+ let headers = yield this.headers;
57
+ headers = headers.filter((h) => h.header !== 'Content-Type').concat(new XHR_1.XHR.Header('Content-Type', 'application/json'));
58
+ return XHR_1.XHR.sendCommand('POST', _url, headers, _body, this.fetchImpl, undefined, this.authenticationProvider.getAuthService())
59
+ .then((doc) => new ApplicationSettings_1.ApplicationSettings(doc.body))
60
+ .catch((err) => this.handleError(err));
61
+ });
46
62
  }
47
63
  /**
48
64
  *
49
65
  * @summary Gets all application settings
50
66
  */
51
67
  getApplicationSettings() {
52
- let _body = null;
53
- const _url = this.host + `/appsettings` + '?ts=' + new Date().getTime();
54
- let headers = this.headers;
55
- return XHR_1.XHR.sendCommand('GET', _url, headers, _body, this.fetchImpl, undefined, this.authenticationProvider.getAuthService())
56
- .then((doc) => doc.body.map((it) => new ApplicationSettings_1.ApplicationSettings(it)))
57
- .catch((err) => this.handleError(err));
68
+ return __awaiter(this, void 0, void 0, function* () {
69
+ let _body = null;
70
+ const _url = this.host + `/appsettings` + '?ts=' + new Date().getTime();
71
+ let headers = yield this.headers;
72
+ return XHR_1.XHR.sendCommand('GET', _url, headers, _body, this.fetchImpl, undefined, this.authenticationProvider.getAuthService())
73
+ .then((doc) => doc.body.map((it) => new ApplicationSettings_1.ApplicationSettings(it)))
74
+ .catch((err) => this.handleError(err));
75
+ });
58
76
  }
59
77
  /**
60
78
  *
@@ -62,14 +80,42 @@ class IccApplicationsettingsApi {
62
80
  * @param body
63
81
  */
64
82
  updateApplicationSettings(body) {
65
- let _body = null;
66
- _body = body;
67
- const _url = this.host + `/appsettings` + '?ts=' + new Date().getTime();
68
- let headers = this.headers;
69
- headers = headers.filter((h) => h.header !== 'Content-Type').concat(new XHR_1.XHR.Header('Content-Type', 'application/json'));
70
- return XHR_1.XHR.sendCommand('PUT', _url, headers, _body, this.fetchImpl, undefined, this.authenticationProvider.getAuthService())
71
- .then((doc) => new ApplicationSettings_1.ApplicationSettings(doc.body))
72
- .catch((err) => this.handleError(err));
83
+ return __awaiter(this, void 0, void 0, function* () {
84
+ let _body = null;
85
+ _body = body;
86
+ const _url = this.host + `/appsettings` + '?ts=' + new Date().getTime();
87
+ let headers = yield this.headers;
88
+ headers = headers.filter((h) => h.header !== 'Content-Type').concat(new XHR_1.XHR.Header('Content-Type', 'application/json'));
89
+ return XHR_1.XHR.sendCommand('PUT', _url, headers, _body, this.fetchImpl, undefined, this.authenticationProvider.getAuthService())
90
+ .then((doc) => new ApplicationSettings_1.ApplicationSettings(doc.body))
91
+ .catch((err) => this.handleError(err));
92
+ });
93
+ }
94
+ /**
95
+ * @internal this method is for internal use only and may be changed without notice
96
+ */
97
+ bulkShareApplicationSettings(request) {
98
+ return __awaiter(this, void 0, void 0, function* () {
99
+ const _url = this.host + '/appsettings/bulkSharedMetadataUpdate' + '?ts=' + new Date().getTime();
100
+ let headers = yield this.headers;
101
+ headers = headers.filter((h) => h.header !== 'Content-Type').concat(new XHR_1.XHR.Header('Content-Type', 'application/json'));
102
+ return XHR_1.XHR.sendCommand('PUT', _url, headers, request, this.fetchImpl, undefined, this.authenticationProvider.getAuthService())
103
+ .then((doc) => doc.body.map((x) => new EntityBulkShareResult_1.EntityBulkShareResult(x, ApplicationSettings_1.ApplicationSettings)))
104
+ .catch((err) => this.handleError(err));
105
+ });
106
+ }
107
+ /**
108
+ * @internal this method is for internal use only and may be changed without notice
109
+ */
110
+ bulkShareApplicationSettingsMinimal(request) {
111
+ return __awaiter(this, void 0, void 0, function* () {
112
+ const _url = this.host + '/appsettings/bulkSharedMetadataUpdateMinimal' + '?ts=' + new Date().getTime();
113
+ let headers = yield this.headers;
114
+ headers = headers.filter((h) => h.header !== 'Content-Type').concat(new XHR_1.XHR.Header('Content-Type', 'application/json'));
115
+ return XHR_1.XHR.sendCommand('PUT', _url, headers, request, this.fetchImpl, undefined, this.authenticationProvider.getAuthService())
116
+ .then((doc) => doc.body.map((x) => new MinimalEntityBulkShareResult_1.MinimalEntityBulkShareResult(x)))
117
+ .catch((err) => this.handleError(err));
118
+ });
73
119
  }
74
120
  }
75
121
  exports.IccApplicationsettingsApi = IccApplicationsettingsApi;
@@ -1 +1 @@
1
- {"version":3,"file":"IccApplicationsettingsApi.js","sourceRoot":"","sources":["../../../icc-api/api/IccApplicationsettingsApi.ts"],"names":[],"mappings":"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","sourcesContent":["/**\n * iCure Data Stack API Documentation\n * The iCure Data Stack Application API is the native interface to iCure. This version is obsolete, please use v2.\n *\n * OpenAPI spec version: v1\n *\n *\n * NOTE: This class is auto generated by the swagger code generator program.\n * https://github.com/swagger-api/swagger-codegen.git\n * Do not edit the class manually.\n */\nimport { XHR } from './XHR'\nimport { ApplicationSettings } from '../model/ApplicationSettings'\nimport { AuthenticationProvider, NoAuthenticationProvider } from '../../icc-x-api/auth/AuthenticationProvider'\nimport { iccRestApiPath } from './IccRestApiPath'\n\nexport class IccApplicationsettingsApi {\n host: string\n headers: Array<XHR.Header>\n authenticationProvider: AuthenticationProvider\n fetchImpl?: (input: RequestInfo, init?: RequestInit) => Promise<Response>\n\n constructor(\n host: string,\n headers: any,\n authenticationProvider?: AuthenticationProvider,\n fetchImpl?: (input: RequestInfo, init?: RequestInit) => Promise<Response>\n ) {\n this.host = iccRestApiPath(host)\n this.headers = Object.keys(headers).map((k) => new XHR.Header(k, headers[k]))\n this.authenticationProvider = !!authenticationProvider ? authenticationProvider : new NoAuthenticationProvider()\n this.fetchImpl = fetchImpl\n }\n\n setHeaders(h: Array<XHR.Header>) {\n this.headers = h\n }\n\n handleError(e: XHR.XHRError): never {\n throw e\n }\n\n /**\n *\n * @summary Create new application settings\n * @param body\n */\n createApplicationSettings(body?: ApplicationSettings): Promise<ApplicationSettings> {\n let _body = null\n _body = body\n\n const _url = this.host + `/appsettings` + '?ts=' + new Date().getTime()\n let headers = this.headers\n headers = headers.filter((h) => h.header !== 'Content-Type').concat(new XHR.Header('Content-Type', 'application/json'))\n return XHR.sendCommand('POST', _url, headers, _body, this.fetchImpl, undefined, this.authenticationProvider.getAuthService())\n .then((doc) => new ApplicationSettings(doc.body as JSON))\n .catch((err) => this.handleError(err))\n }\n\n /**\n *\n * @summary Gets all application settings\n */\n getApplicationSettings(): Promise<Array<ApplicationSettings>> {\n let _body = null\n\n const _url = this.host + `/appsettings` + '?ts=' + new Date().getTime()\n let headers = this.headers\n return XHR.sendCommand('GET', _url, headers, _body, this.fetchImpl, undefined, this.authenticationProvider.getAuthService())\n .then((doc) => (doc.body as Array<JSON>).map((it) => new ApplicationSettings(it)))\n .catch((err) => this.handleError(err))\n }\n\n /**\n *\n * @summary Update application settings\n * @param body\n */\n updateApplicationSettings(body?: ApplicationSettings): Promise<ApplicationSettings> {\n let _body = null\n _body = body\n\n const _url = this.host + `/appsettings` + '?ts=' + new Date().getTime()\n let headers = this.headers\n headers = headers.filter((h) => h.header !== 'Content-Type').concat(new XHR.Header('Content-Type', 'application/json'))\n return XHR.sendCommand('PUT', _url, headers, _body, this.fetchImpl, undefined, this.authenticationProvider.getAuthService())\n .then((doc) => new ApplicationSettings(doc.body as JSON))\n .catch((err) => this.handleError(err))\n }\n}\n"]}
1
+ {"version":3,"file":"IccApplicationsettingsApi.js","sourceRoot":"","sources":["../../../icc-api/api/IccApplicationsettingsApi.ts"],"names":[],"mappings":"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","sourcesContent":["/**\n * iCure Data Stack API Documentation\n * The iCure Data Stack Application API is the native interface to iCure. This version is obsolete, please use v2.\n *\n * OpenAPI spec version: v1\n *\n *\n * NOTE: This class is auto generated by the swagger code generator program.\n * https://github.com/swagger-api/swagger-codegen.git\n * Do not edit the class manually.\n */\nimport { XHR } from './XHR'\nimport { ApplicationSettings } from '../model/ApplicationSettings'\nimport { AuthenticationProvider, NoAuthenticationProvider } from '../../icc-x-api/auth/AuthenticationProvider'\nimport { iccRestApiPath } from './IccRestApiPath'\nimport { BulkShareOrUpdateMetadataParams } from '../model/requests/BulkShareOrUpdateMetadataParams'\nimport { EntityBulkShareResult } from '../model/requests/EntityBulkShareResult'\nimport { Classification } from '../model/Classification'\nimport { MinimalEntityBulkShareResult } from '../model/requests/MinimalEntityBulkShareResult'\n\nexport class IccApplicationsettingsApi {\n host: string\n _headers: Array<XHR.Header>\n authenticationProvider: AuthenticationProvider\n fetchImpl?: (input: RequestInfo, init?: RequestInit) => Promise<Response>\n\n get headers(): Promise<Array<XHR.Header>> {\n return Promise.resolve(this._headers)\n }\n\n constructor(\n host: string,\n headers: any,\n authenticationProvider?: AuthenticationProvider,\n fetchImpl?: (input: RequestInfo, init?: RequestInit) => Promise<Response>\n ) {\n this.host = iccRestApiPath(host)\n this._headers = Object.keys(headers).map((k) => new XHR.Header(k, headers[k]))\n this.authenticationProvider = !!authenticationProvider ? authenticationProvider : new NoAuthenticationProvider()\n this.fetchImpl = fetchImpl\n }\n\n setHeaders(h: Array<XHR.Header>) {\n this._headers = h\n }\n\n handleError(e: XHR.XHRError): never {\n throw e\n }\n\n /**\n *\n * @summary Create new application settings\n * @param body\n */\n async createApplicationSettings(body?: ApplicationSettings): Promise<ApplicationSettings> {\n let _body = null\n _body = body\n\n const _url = this.host + `/appsettings` + '?ts=' + new Date().getTime()\n let headers = await this.headers\n headers = headers.filter((h) => h.header !== 'Content-Type').concat(new XHR.Header('Content-Type', 'application/json'))\n return XHR.sendCommand('POST', _url, headers, _body, this.fetchImpl, undefined, this.authenticationProvider.getAuthService())\n .then((doc) => new ApplicationSettings(doc.body as JSON))\n .catch((err) => this.handleError(err))\n }\n\n /**\n *\n * @summary Gets all application settings\n */\n async getApplicationSettings(): Promise<Array<ApplicationSettings>> {\n let _body = null\n\n const _url = this.host + `/appsettings` + '?ts=' + new Date().getTime()\n let headers = await this.headers\n return XHR.sendCommand('GET', _url, headers, _body, this.fetchImpl, undefined, this.authenticationProvider.getAuthService())\n .then((doc) => (doc.body as Array<JSON>).map((it) => new ApplicationSettings(it)))\n .catch((err) => this.handleError(err))\n }\n\n /**\n *\n * @summary Update application settings\n * @param body\n */\n async updateApplicationSettings(body?: ApplicationSettings): Promise<ApplicationSettings> {\n let _body = null\n _body = body\n\n const _url = this.host + `/appsettings` + '?ts=' + new Date().getTime()\n let headers = await this.headers\n headers = headers.filter((h) => h.header !== 'Content-Type').concat(new XHR.Header('Content-Type', 'application/json'))\n return XHR.sendCommand('PUT', _url, headers, _body, this.fetchImpl, undefined, this.authenticationProvider.getAuthService())\n .then((doc) => new ApplicationSettings(doc.body as JSON))\n .catch((err) => this.handleError(err))\n }\n\n /**\n * @internal this method is for internal use only and may be changed without notice\n */\n async bulkShareApplicationSettings(request: BulkShareOrUpdateMetadataParams): Promise<EntityBulkShareResult<ApplicationSettings>[]> {\n const _url = this.host + '/appsettings/bulkSharedMetadataUpdate' + '?ts=' + new Date().getTime()\n let headers = await this.headers\n headers = headers.filter((h) => h.header !== 'Content-Type').concat(new XHR.Header('Content-Type', 'application/json'))\n return XHR.sendCommand('PUT', _url, headers, request, this.fetchImpl, undefined, this.authenticationProvider.getAuthService())\n .then((doc) => (doc.body as Array<JSON>).map((x) => new EntityBulkShareResult<ApplicationSettings>(x, ApplicationSettings)))\n .catch((err) => this.handleError(err))\n }\n\n /**\n * @internal this method is for internal use only and may be changed without notice\n */\n async bulkShareApplicationSettingsMinimal(request: BulkShareOrUpdateMetadataParams): Promise<MinimalEntityBulkShareResult[]> {\n const _url = this.host + '/appsettings/bulkSharedMetadataUpdateMinimal' + '?ts=' + new Date().getTime()\n let headers = await this.headers\n headers = headers.filter((h) => h.header !== 'Content-Type').concat(new XHR.Header('Content-Type', 'application/json'))\n return XHR.sendCommand('PUT', _url, headers, request, this.fetchImpl, undefined, this.authenticationProvider.getAuthService())\n .then((doc) => (doc.body as Array<JSON>).map((x) => new MinimalEntityBulkShareResult(x)))\n .catch((err) => this.handleError(err))\n }\n}\n"]}
@@ -10,6 +10,8 @@
10
10
  * Do not edit the class manually.
11
11
  */
12
12
  import { CodeStub } from './CodeStub';
13
+ import { Delegation } from './Delegation';
14
+ import { SecurityMetadata } from './SecurityMetadata';
13
15
  export declare class ApplicationSettings {
14
16
  constructor(json: JSON | any);
15
17
  id?: string;
@@ -53,4 +55,34 @@ export declare class ApplicationSettings {
53
55
  settings?: {
54
56
  [key: string]: string;
55
57
  };
58
+ encryptedSettings?: {
59
+ [key: string]: string;
60
+ };
61
+ /**
62
+ * The secretForeignKeys are filled at the to many end of a one to many relationship (for example inside Contact for the Patient -> Contacts relationship). Used when we want to find all contacts for a specific patient. These keys are in clear. You can have several to partition the medical document space.
63
+ */
64
+ secretForeignKeys?: Array<string>;
65
+ /**
66
+ * The secretForeignKeys are filled at the to many end of a one to many relationship (for example inside Contact for the Patient -> Contacts relationship). Used when we want to find the patient for a specific contact. These keys are the encrypted id (using the hcParty key for the delegate) that can be found in clear inside the patient. ids encrypted using the hcParty keys.
67
+ */
68
+ cryptedForeignKeys?: {
69
+ [key: string]: Array<Delegation>;
70
+ };
71
+ /**
72
+ * When a document is created, the responsible generates a cryptographically random master key (never to be used for something else than referencing from other entities). He/she encrypts it using his own AES exchange key and stores it as a delegation. The responsible is thus always in the delegations as well
73
+ */
74
+ delegations?: {
75
+ [key: string]: Array<Delegation>;
76
+ };
77
+ /**
78
+ * When a document needs to be encrypted, the responsible generates a cryptographically random master key (different from the delegation key, never to appear in clear anywhere in the db. He/she encrypts it using his own AES exchange key and stores it as a delegation
79
+ */
80
+ encryptionKeys?: {
81
+ [key: string]: Array<Delegation>;
82
+ };
83
+ /**
84
+ * The base64 encoded data of this object, formatted as JSON and encrypted in AES using the random master key from encryptionKeys.
85
+ */
86
+ encryptedSelf?: string;
87
+ securityMetadata?: SecurityMetadata;
56
88
  }
@@ -1 +1 @@
1
- {"version":3,"file":"ApplicationSettings.js","sourceRoot":"","sources":["../../../icc-api/model/ApplicationSettings.ts"],"names":[],"mappings":";;;AAaA,MAAa,mBAAmB;IAC9B,YAAY,IAAgB;QAC1B,MAAM,CAAC,MAAM,CAAC,IAA2B,EAAE,IAAI,CAAC,CAAA;IAClD,CAAC;CAyCF;AA5CD,kDA4CC","sourcesContent":["/**\n * iCure Data Stack API Documentation\n * The iCure Data Stack Application API is the native interface to iCure. This version is obsolete, please use v2.\n *\n * OpenAPI spec version: v1\n *\n *\n * NOTE: This class is auto generated by the swagger code generator program.\n * https://github.com/swagger-api/swagger-codegen.git\n * Do not edit the class manually.\n */\nimport { CodeStub } from './CodeStub'\n\nexport class ApplicationSettings {\n constructor(json: JSON | any) {\n Object.assign(this as ApplicationSettings, json)\n }\n\n id?: string\n rev?: string\n /**\n * The timestamp (unix epoch in ms) of creation of this entity, will be filled automatically if missing. Not enforced by the application server.\n */\n created?: number\n /**\n * The date (unix epoch in ms) of the latest modification of this entity, will be filled automatically if missing. Not enforced by the application server.\n */\n modified?: number\n /**\n * The id of the User that has created this entity, will be filled automatically if missing. Not enforced by the application server.\n */\n author?: string\n /**\n * The id of the HealthcareParty that is responsible for this entity, will be filled automatically if missing. Not enforced by the application server.\n */\n responsible?: string\n /**\n * The id of the medical location where this entity was created.\n */\n medicalLocationId?: string\n /**\n * A tag is an item from a codification system that qualifies an entity as being member of a certain class, whatever the value it might have taken. If the tag qualifies the content of a field, it means that whatever the content of the field, the tag will always apply. For example, the label of a field is qualified using a tag. LOINC is a codification system typically used for tags.\n */\n tags?: Array<CodeStub>\n /**\n * A code is an item from a codification system that qualifies the content of this entity. SNOMED-CT, ICPC-2 or ICD-10 codifications systems can be used for codes\n */\n codes?: Array<CodeStub>\n /**\n * Soft delete (unix epoch in ms) timestamp of the object.\n */\n endOfLife?: number\n /**\n * hard delete (unix epoch in ms) timestamp of the object. Filled automatically when deletePatient is called.\n */\n deletionDate?: number\n settings?: { [key: string]: string }\n}\n"]}
1
+ {"version":3,"file":"ApplicationSettings.js","sourceRoot":"","sources":["../../../icc-api/model/ApplicationSettings.ts"],"names":[],"mappings":";;;AAeA,MAAa,mBAAmB;IAC9B,YAAY,IAAgB;QAC1B,MAAM,CAAC,MAAM,CAAC,IAA2B,EAAE,IAAI,CAAC,CAAA;IAClD,CAAC;CA+DF;AAlED,kDAkEC","sourcesContent":["/**\n * iCure Data Stack API Documentation\n * The iCure Data Stack Application API is the native interface to iCure. This version is obsolete, please use v2.\n *\n * OpenAPI spec version: v1\n *\n *\n * NOTE: This class is auto generated by the swagger code generator program.\n * https://github.com/swagger-api/swagger-codegen.git\n * Do not edit the class manually.\n */\nimport { CodeStub } from './CodeStub'\nimport { Delegation } from './Delegation'\nimport { SecurityMetadata } from './SecurityMetadata'\n\nexport class ApplicationSettings {\n constructor(json: JSON | any) {\n Object.assign(this as ApplicationSettings, json)\n }\n\n id?: string\n rev?: string\n /**\n * The timestamp (unix epoch in ms) of creation of this entity, will be filled automatically if missing. Not enforced by the application server.\n */\n created?: number\n /**\n * The date (unix epoch in ms) of the latest modification of this entity, will be filled automatically if missing. Not enforced by the application server.\n */\n modified?: number\n /**\n * The id of the User that has created this entity, will be filled automatically if missing. Not enforced by the application server.\n */\n author?: string\n /**\n * The id of the HealthcareParty that is responsible for this entity, will be filled automatically if missing. Not enforced by the application server.\n */\n responsible?: string\n /**\n * The id of the medical location where this entity was created.\n */\n medicalLocationId?: string\n /**\n * A tag is an item from a codification system that qualifies an entity as being member of a certain class, whatever the value it might have taken. If the tag qualifies the content of a field, it means that whatever the content of the field, the tag will always apply. For example, the label of a field is qualified using a tag. LOINC is a codification system typically used for tags.\n */\n tags?: Array<CodeStub>\n /**\n * A code is an item from a codification system that qualifies the content of this entity. SNOMED-CT, ICPC-2 or ICD-10 codifications systems can be used for codes\n */\n codes?: Array<CodeStub>\n /**\n * Soft delete (unix epoch in ms) timestamp of the object.\n */\n endOfLife?: number\n /**\n * hard delete (unix epoch in ms) timestamp of the object. Filled automatically when deletePatient is called.\n */\n deletionDate?: number\n settings?: { [key: string]: string }\n encryptedSettings?: { [key: string]: string }\n /**\n * The secretForeignKeys are filled at the to many end of a one to many relationship (for example inside Contact for the Patient -> Contacts relationship). Used when we want to find all contacts for a specific patient. These keys are in clear. You can have several to partition the medical document space.\n */\n secretForeignKeys?: Array<string>\n /**\n * The secretForeignKeys are filled at the to many end of a one to many relationship (for example inside Contact for the Patient -> Contacts relationship). Used when we want to find the patient for a specific contact. These keys are the encrypted id (using the hcParty key for the delegate) that can be found in clear inside the patient. ids encrypted using the hcParty keys.\n */\n cryptedForeignKeys?: { [key: string]: Array<Delegation> }\n /**\n * When a document is created, the responsible generates a cryptographically random master key (never to be used for something else than referencing from other entities). He/she encrypts it using his own AES exchange key and stores it as a delegation. The responsible is thus always in the delegations as well\n */\n delegations?: { [key: string]: Array<Delegation> }\n /**\n * When a document needs to be encrypted, the responsible generates a cryptographically random master key (different from the delegation key, never to appear in clear anywhere in the db. He/she encrypts it using his own AES exchange key and stores it as a delegation\n */\n encryptionKeys?: { [key: string]: Array<Delegation> }\n /**\n * The base64 encoded data of this object, formatted as JSON and encrypted in AES using the random master key from encryptionKeys.\n */\n encryptedSelf?: string\n securityMetadata?: SecurityMetadata\n}\n"]}
@@ -0,0 +1,76 @@
1
+ /**
2
+ * iCure Data Stack API Documentation
3
+ * The iCure Data Stack Application API is the native interface to iCure. This version is obsolete, please use v2.
4
+ *
5
+ * OpenAPI spec version: v1
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by the swagger code generator program.
9
+ * https://github.com/swagger-api/swagger-codegen.git
10
+ * Do not edit the class manually.
11
+ */
12
+ import { IccApplicationsettingsApi } from '../icc-api';
13
+ import { EncryptedEntityXApi } from './basexapi/EncryptedEntityXApi';
14
+ import * as models from '../icc-api/model/models';
15
+ import { IccCryptoXApi } from './icc-crypto-x-api';
16
+ import { IccDataOwnerXApi } from './icc-data-owner-x-api';
17
+ import { SecretIdUseOption } from './crypto/SecretIdUseOption';
18
+ import { ShareMetadataBehaviour } from './crypto/ShareMetadataBehaviour';
19
+ import { ShareResult } from './utils/ShareResult';
20
+ import { ApplicationSettings, SecureDelegation, User } from '../icc-api/model/models';
21
+ import AccessLevelEnum = SecureDelegation.AccessLevelEnum;
22
+ import { AuthenticationProvider } from './auth/AuthenticationProvider';
23
+ import { EntityShareRequest } from '../icc-api/model/requests/EntityShareRequest';
24
+ import RequestedPermissionEnum = EntityShareRequest.RequestedPermissionEnum;
25
+ import { XHR } from '../icc-api/api/XHR';
26
+ export declare class IccApplicationSettingsXApi extends IccApplicationsettingsApi implements EncryptedEntityXApi<models.ApplicationSettings> {
27
+ private readonly autofillAuthor;
28
+ crypto: IccCryptoXApi;
29
+ dataOwnerApi: IccDataOwnerXApi;
30
+ private readonly encryptedFields;
31
+ get headers(): Promise<Array<XHR.Header>>;
32
+ constructor(host: string, headers: {
33
+ [key: string]: string;
34
+ }, crypto: IccCryptoXApi, dataOwnerApi: IccDataOwnerXApi, autofillAuthor: boolean, encryptedKeys?: Array<string>, authenticationProvider?: AuthenticationProvider, fetchImpl?: (input: RequestInfo, init?: RequestInit) => Promise<Response>);
35
+ newInstance(user: models.User, c?: any, options?: {
36
+ additionalDelegates?: {
37
+ [dataOwnerId: string]: AccessLevelEnum;
38
+ };
39
+ sfkOption?: SecretIdUseOption;
40
+ ignoreAutoDelegations?: boolean;
41
+ alternateRootDelegation?: string;
42
+ }): Promise<models.ApplicationSettings>;
43
+ hasWriteAccess(applicationSettings: models.ApplicationSettings): Promise<boolean>;
44
+ shareWith(delegateId: string, applicationSettings: models.ApplicationSettings, options?: {
45
+ requestedPermissions?: RequestedPermissionEnum;
46
+ shareEncryptionKey?: ShareMetadataBehaviour;
47
+ }): Promise<models.ApplicationSettings>;
48
+ shareWithMany(applicationSettings: models.ApplicationSettings, delegates: {
49
+ [delegateId: string]: {
50
+ requestedPermissions?: RequestedPermissionEnum;
51
+ shareEncryptionKey?: ShareMetadataBehaviour;
52
+ };
53
+ }): Promise<models.ApplicationSettings>;
54
+ tryShareWithMany(applicationSettings: models.ApplicationSettings, delegates: {
55
+ [delegateId: string]: {
56
+ requestedPermissions?: RequestedPermissionEnum;
57
+ shareEncryptionKey?: ShareMetadataBehaviour;
58
+ };
59
+ }): Promise<ShareResult<models.ApplicationSettings>>;
60
+ getDataOwnersWithAccessTo(entity: models.ApplicationSettings): Promise<{
61
+ permissionsByDataOwnerId: {
62
+ [p: string]: AccessLevelEnum;
63
+ };
64
+ hasUnknownAnonymousDataOwners: boolean;
65
+ }>;
66
+ getEncryptionKeysOf(entity: models.ApplicationSettings): Promise<string[]>;
67
+ createDelegationDeAnonymizationMetadata(entity: models.ApplicationSettings, delegates: string[]): Promise<void>;
68
+ createApplicationSettings(body?: ApplicationSettings): Promise<never>;
69
+ getApplicationSettings(): Promise<Array<never>>;
70
+ updateApplicationSettings(body?: ApplicationSettings): Promise<never>;
71
+ createApplicationSettingsWithUser(user: User | undefined, body: ApplicationSettings): Promise<ApplicationSettings>;
72
+ getApplicationSettingsWithUser(user: User | undefined): Promise<Array<ApplicationSettings>>;
73
+ updateApplicationSettingsWithUser(user: User | undefined, body: ApplicationSettings): Promise<ApplicationSettings>;
74
+ private tryDecryptOrReturnOriginal;
75
+ private encrypt;
76
+ }
@@ -0,0 +1,160 @@
1
+ "use strict";
2
+ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
3
+ function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
4
+ return new (P || (P = Promise))(function (resolve, reject) {
5
+ function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
6
+ function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
7
+ function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
8
+ step((generator = generator.apply(thisArg, _arguments || [])).next());
9
+ });
10
+ };
11
+ Object.defineProperty(exports, "__esModule", { value: true });
12
+ exports.IccApplicationSettingsXApi = void 0;
13
+ /**
14
+ * iCure Data Stack API Documentation
15
+ * The iCure Data Stack Application API is the native interface to iCure. This version is obsolete, please use v2.
16
+ *
17
+ * OpenAPI spec version: v1
18
+ *
19
+ *
20
+ * NOTE: This class is auto generated by the swagger code generator program.
21
+ * https://github.com/swagger-api/swagger-codegen.git
22
+ * Do not edit the class manually.
23
+ */
24
+ const icc_api_1 = require("../icc-api");
25
+ const models = require("../icc-api/model/models");
26
+ const utils_1 = require("./utils");
27
+ const ShareMetadataBehaviour_1 = require("./crypto/ShareMetadataBehaviour");
28
+ const models_1 = require("../icc-api/model/models");
29
+ var AccessLevelEnum = models_1.SecureDelegation.AccessLevelEnum;
30
+ const AuthenticationProvider_1 = require("./auth/AuthenticationProvider");
31
+ class IccApplicationSettingsXApi extends icc_api_1.IccApplicationsettingsApi {
32
+ get headers() {
33
+ return super.headers.then((h) => this.crypto.accessControlKeysHeaders.addAccessControlKeysHeaders(h, utils_1.EntityWithDelegationTypeName.ApplicationSettings));
34
+ }
35
+ constructor(host, headers, crypto, dataOwnerApi, autofillAuthor, encryptedKeys = ['encryptedSettings'], authenticationProvider = new AuthenticationProvider_1.NoAuthenticationProvider(), fetchImpl = typeof window !== 'undefined'
36
+ ? window.fetch
37
+ : typeof self !== 'undefined'
38
+ ? self.fetch
39
+ : fetch) {
40
+ super(host, headers, authenticationProvider, fetchImpl);
41
+ this.autofillAuthor = autofillAuthor;
42
+ this.crypto = crypto;
43
+ this.dataOwnerApi = dataOwnerApi;
44
+ this.encryptedFields = (0, utils_1.parseEncryptedFields)(encryptedKeys, 'ApplicationSettings.');
45
+ }
46
+ newInstance(user_1) {
47
+ return __awaiter(this, arguments, void 0, function* (user, c = {}, options = {}) {
48
+ var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k;
49
+ const applicationSettings = Object.assign(Object.assign({}, (c !== null && c !== void 0 ? c : {})), { _type: 'org.taktik.icure.entities.ApplicationSettings', id: (_a = c === null || c === void 0 ? void 0 : c.id) !== null && _a !== void 0 ? _a : this.crypto.primitives.randomUuid(), created: (_b = c === null || c === void 0 ? void 0 : c.created) !== null && _b !== void 0 ? _b : new Date().getTime(), modified: (_c = c === null || c === void 0 ? void 0 : c.modified) !== null && _c !== void 0 ? _c : new Date().getTime(), responsible: (_d = c === null || c === void 0 ? void 0 : c.responsible) !== null && _d !== void 0 ? _d : (this.autofillAuthor ? this.dataOwnerApi.getDataOwnerIdOf(user) : undefined), author: (_e = c === null || c === void 0 ? void 0 : c.author) !== null && _e !== void 0 ? _e : (this.autofillAuthor ? user.id : undefined) });
50
+ const ownerId = this.dataOwnerApi.getDataOwnerIdOf(user);
51
+ if (ownerId !== (yield this.dataOwnerApi.getCurrentDataOwnerId()))
52
+ throw new Error('Can only initialise entities as current data owner.');
53
+ const extraDelegations = Object.assign(Object.assign({}, (options.ignoreAutoDelegations == true
54
+ ? {}
55
+ : Object.fromEntries([...((_g = (_f = user.autoDelegations) === null || _f === void 0 ? void 0 : _f.all) !== null && _g !== void 0 ? _g : []), ...((_j = (_h = user.autoDelegations) === null || _h === void 0 ? void 0 : _h.medicalInformation) !== null && _j !== void 0 ? _j : [])].map((d) => [d, AccessLevelEnum.WRITE])))), ((_k = options === null || options === void 0 ? void 0 : options.additionalDelegates) !== null && _k !== void 0 ? _k : {}));
56
+ return new models.ApplicationSettings(yield this.crypto.xapi
57
+ .entityWithInitialisedEncryptedMetadata(applicationSettings, utils_1.EntityWithDelegationTypeName.ApplicationSettings, undefined, [], true, extraDelegations, options.alternateRootDelegation)
58
+ .then((x) => x.updatedEntity));
59
+ });
60
+ }
61
+ hasWriteAccess(applicationSettings) {
62
+ return __awaiter(this, void 0, void 0, function* () {
63
+ return this.crypto.xapi.hasWriteAccess({ entity: applicationSettings, type: utils_1.EntityWithDelegationTypeName.ApplicationSettings });
64
+ });
65
+ }
66
+ shareWith(delegateId_1, applicationSettings_1) {
67
+ return __awaiter(this, arguments, void 0, function* (delegateId, applicationSettings, options = {}) {
68
+ return this.shareWithMany(applicationSettings, { [delegateId]: options });
69
+ });
70
+ }
71
+ shareWithMany(applicationSettings, delegates) {
72
+ return __awaiter(this, void 0, void 0, function* () {
73
+ return (yield this.tryShareWithMany(applicationSettings, delegates)).updatedEntityOrThrow;
74
+ });
75
+ }
76
+ tryShareWithMany(applicationSettings, delegates) {
77
+ return __awaiter(this, void 0, void 0, function* () {
78
+ // All entities should have an encryption key.
79
+ const entityWithEncryptionKey = yield this.crypto.xapi.ensureEncryptionKeysInitialised(applicationSettings, utils_1.EntityWithDelegationTypeName.ApplicationSettings);
80
+ const updatedEntity = entityWithEncryptionKey
81
+ ? yield this.updateApplicationSettingsWithUser(undefined, entityWithEncryptionKey)
82
+ : applicationSettings;
83
+ return this.crypto.xapi.simpleShareOrUpdateEncryptedEntityMetadata({
84
+ entity: updatedEntity,
85
+ type: utils_1.EntityWithDelegationTypeName.ApplicationSettings,
86
+ }, Object.fromEntries(Object.entries(delegates).map(([delegateId, options]) => [
87
+ delegateId,
88
+ {
89
+ requestedPermissions: options.requestedPermissions,
90
+ shareEncryptionKeys: options.shareEncryptionKey,
91
+ shareOwningEntityIds: ShareMetadataBehaviour_1.ShareMetadataBehaviour.NEVER,
92
+ shareSecretIds: [],
93
+ },
94
+ ])), (x) => this.bulkShareApplicationSettings(x));
95
+ });
96
+ }
97
+ getDataOwnersWithAccessTo(entity) {
98
+ return this.crypto.delegationsDeAnonymization.getDataOwnersWithAccessTo({ entity, type: utils_1.EntityWithDelegationTypeName.ApplicationSettings });
99
+ }
100
+ getEncryptionKeysOf(entity) {
101
+ return this.crypto.xapi.encryptionKeysOf({ entity, type: utils_1.EntityWithDelegationTypeName.ApplicationSettings }, undefined);
102
+ }
103
+ createDelegationDeAnonymizationMetadata(entity, delegates) {
104
+ return this.crypto.delegationsDeAnonymization.createOrUpdateDeAnonymizationInfo({ entity, type: utils_1.EntityWithDelegationTypeName.ApplicationSettings }, delegates);
105
+ }
106
+ createApplicationSettings(body) {
107
+ return __awaiter(this, void 0, void 0, function* () {
108
+ throw new Error('Use withUser method');
109
+ });
110
+ }
111
+ getApplicationSettings() {
112
+ return __awaiter(this, void 0, void 0, function* () {
113
+ throw new Error('Use withUser method');
114
+ });
115
+ }
116
+ updateApplicationSettings(body) {
117
+ return __awaiter(this, void 0, void 0, function* () {
118
+ throw new Error('Use withUser method');
119
+ });
120
+ }
121
+ createApplicationSettingsWithUser(user, body) {
122
+ const _super = Object.create(null, {
123
+ createApplicationSettings: { get: () => super.createApplicationSettings }
124
+ });
125
+ return __awaiter(this, void 0, void 0, function* () {
126
+ if (body.securityMetadata == null)
127
+ throw new Error('Application settings does not have initialized encryption metadata; initialize or use non-encrypted api');
128
+ return _super.createApplicationSettings.call(this, (yield this.encrypt([body]))[0]);
129
+ });
130
+ }
131
+ getApplicationSettingsWithUser(user) {
132
+ const _super = Object.create(null, {
133
+ getApplicationSettings: { get: () => super.getApplicationSettings }
134
+ });
135
+ return __awaiter(this, void 0, void 0, function* () {
136
+ const retrieved = yield _super.getApplicationSettings.call(this);
137
+ return (yield this.tryDecryptOrReturnOriginal(retrieved)).map((x) => x.entity);
138
+ });
139
+ }
140
+ updateApplicationSettingsWithUser(user, body) {
141
+ const _super = Object.create(null, {
142
+ updateApplicationSettings: { get: () => super.updateApplicationSettings }
143
+ });
144
+ return __awaiter(this, void 0, void 0, function* () {
145
+ if (body.securityMetadata == null)
146
+ throw new Error('Application settings does not have initialized encryption metadata; initialize or use non-encrypted api');
147
+ return _super.updateApplicationSettings.call(this, (yield this.encrypt([body]))[0]);
148
+ });
149
+ }
150
+ tryDecryptOrReturnOriginal(applicationSettings) {
151
+ return __awaiter(this, void 0, void 0, function* () {
152
+ return yield this.crypto.xapi.tryDecryptEntities(applicationSettings, utils_1.EntityWithDelegationTypeName.ApplicationSettings, (x) => new models.ApplicationSettings(x));
153
+ });
154
+ }
155
+ encrypt(applicationSettings) {
156
+ return this.crypto.xapi.tryEncryptEntities(applicationSettings, utils_1.EntityWithDelegationTypeName.ApplicationSettings, this.encryptedFields, true, false, (x) => new models.ApplicationSettings(x));
157
+ }
158
+ }
159
+ exports.IccApplicationSettingsXApi = IccApplicationSettingsXApi;
160
+ //# sourceMappingURL=icc-application-settings-x-api.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"icc-application-settings-x-api.js","sourceRoot":"","sources":["../../icc-x-api/icc-application-settings-x-api.ts"],"names":[],"mappings":"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","sourcesContent":["/**\n * iCure Data Stack API Documentation\n * The iCure Data Stack Application API is the native interface to iCure. This version is obsolete, please use v2.\n *\n * OpenAPI spec version: v1\n *\n *\n * NOTE: This class is auto generated by the swagger code generator program.\n * https://github.com/swagger-api/swagger-codegen.git\n * Do not edit the class manually.\n */\nimport { IccApplicationsettingsApi } from '../icc-api'\nimport { EncryptedEntityXApi } from './basexapi/EncryptedEntityXApi'\nimport * as models from '../icc-api/model/models'\nimport { IccCryptoXApi } from './icc-crypto-x-api'\nimport { IccDataOwnerXApi } from './icc-data-owner-x-api'\nimport { EncryptedFieldsManifest, EntityWithDelegationTypeName, parseEncryptedFields } from './utils'\nimport { SecretIdUseOption } from './crypto/SecretIdUseOption'\nimport { ShareMetadataBehaviour } from './crypto/ShareMetadataBehaviour'\nimport { ShareResult } from './utils/ShareResult'\nimport { ApplicationSettings, SecureDelegation, User } from '../icc-api/model/models'\nimport AccessLevelEnum = SecureDelegation.AccessLevelEnum\nimport { AuthenticationProvider, NoAuthenticationProvider } from './auth/AuthenticationProvider'\nimport { EntityShareRequest } from '../icc-api/model/requests/EntityShareRequest'\nimport RequestedPermissionEnum = EntityShareRequest.RequestedPermissionEnum\nimport { XHR } from '../icc-api/api/XHR'\n\nexport class IccApplicationSettingsXApi extends IccApplicationsettingsApi implements EncryptedEntityXApi<models.ApplicationSettings> {\n crypto: IccCryptoXApi\n dataOwnerApi: IccDataOwnerXApi\n private readonly encryptedFields: EncryptedFieldsManifest\n\n get headers(): Promise<Array<XHR.Header>> {\n return super.headers.then((h) =>\n this.crypto.accessControlKeysHeaders.addAccessControlKeysHeaders(h, EntityWithDelegationTypeName.ApplicationSettings)\n )\n }\n\n constructor(\n host: string,\n headers: { [key: string]: string },\n crypto: IccCryptoXApi,\n dataOwnerApi: IccDataOwnerXApi,\n private readonly autofillAuthor: boolean,\n encryptedKeys: Array<string> = ['encryptedSettings'],\n authenticationProvider: AuthenticationProvider = new NoAuthenticationProvider(),\n fetchImpl: (input: RequestInfo, init?: RequestInit) => Promise<Response> = typeof window !== 'undefined'\n ? window.fetch\n : typeof self !== 'undefined'\n ? self.fetch\n : fetch\n ) {\n super(host, headers, authenticationProvider, fetchImpl)\n this.crypto = crypto\n this.dataOwnerApi = dataOwnerApi\n this.encryptedFields = parseEncryptedFields(encryptedKeys, 'ApplicationSettings.')\n }\n\n async newInstance(\n user: models.User,\n c: any = {},\n options: {\n additionalDelegates?: { [dataOwnerId: string]: AccessLevelEnum }\n sfkOption?: SecretIdUseOption\n ignoreAutoDelegations?: boolean\n alternateRootDelegation?: string\n } = {}\n ): Promise<models.ApplicationSettings> {\n const applicationSettings = {\n ...(c ?? {}),\n _type: 'org.taktik.icure.entities.ApplicationSettings',\n id: c?.id ?? this.crypto.primitives.randomUuid(),\n created: c?.created ?? new Date().getTime(),\n modified: c?.modified ?? new Date().getTime(),\n responsible: c?.responsible ?? (this.autofillAuthor ? this.dataOwnerApi.getDataOwnerIdOf(user) : undefined),\n author: c?.author ?? (this.autofillAuthor ? user.id : undefined),\n }\n const ownerId = this.dataOwnerApi.getDataOwnerIdOf(user)\n if (ownerId !== (await this.dataOwnerApi.getCurrentDataOwnerId())) throw new Error('Can only initialise entities as current data owner.')\n const extraDelegations = {\n ...(options.ignoreAutoDelegations == true\n ? {}\n : Object.fromEntries(\n [...(user.autoDelegations?.all ?? []), ...(user.autoDelegations?.medicalInformation ?? [])].map((d) => [d, AccessLevelEnum.WRITE])\n )),\n ...(options?.additionalDelegates ?? {}),\n }\n return new models.ApplicationSettings(\n await this.crypto.xapi\n .entityWithInitialisedEncryptedMetadata(\n applicationSettings,\n EntityWithDelegationTypeName.ApplicationSettings,\n undefined,\n [],\n true,\n extraDelegations,\n options.alternateRootDelegation\n )\n .then((x) => x.updatedEntity)\n )\n }\n\n async hasWriteAccess(applicationSettings: models.ApplicationSettings): Promise<boolean> {\n return this.crypto.xapi.hasWriteAccess({ entity: applicationSettings, type: EntityWithDelegationTypeName.ApplicationSettings })\n }\n\n async shareWith(\n delegateId: string,\n applicationSettings: models.ApplicationSettings,\n options: {\n requestedPermissions?: RequestedPermissionEnum\n shareEncryptionKey?: ShareMetadataBehaviour // Defaults to ShareMetadataBehaviour.IF_AVAILABLE\n } = {}\n ): Promise<models.ApplicationSettings> {\n return this.shareWithMany(applicationSettings, { [delegateId]: options })\n }\n\n async shareWithMany(\n applicationSettings: models.ApplicationSettings,\n delegates: {\n [delegateId: string]: {\n requestedPermissions?: RequestedPermissionEnum\n shareEncryptionKey?: ShareMetadataBehaviour // Defaults to ShareMetadataBehaviour.IF_AVAILABLE\n }\n }\n ): Promise<models.ApplicationSettings> {\n return (await this.tryShareWithMany(applicationSettings, delegates)).updatedEntityOrThrow\n }\n\n async tryShareWithMany(\n applicationSettings: models.ApplicationSettings,\n delegates: {\n [delegateId: string]: {\n requestedPermissions?: RequestedPermissionEnum\n shareEncryptionKey?: ShareMetadataBehaviour // Defaults to ShareMetadataBehaviour.IF_AVAILABLE\n }\n }\n ): Promise<ShareResult<models.ApplicationSettings>> {\n // All entities should have an encryption key.\n const entityWithEncryptionKey = await this.crypto.xapi.ensureEncryptionKeysInitialised(\n applicationSettings,\n EntityWithDelegationTypeName.ApplicationSettings\n )\n const updatedEntity = entityWithEncryptionKey\n ? await this.updateApplicationSettingsWithUser(undefined, entityWithEncryptionKey)\n : applicationSettings\n return this.crypto.xapi.simpleShareOrUpdateEncryptedEntityMetadata(\n {\n entity: updatedEntity,\n type: EntityWithDelegationTypeName.ApplicationSettings,\n },\n Object.fromEntries(\n Object.entries(delegates).map(([delegateId, options]) => [\n delegateId,\n {\n requestedPermissions: options.requestedPermissions,\n shareEncryptionKeys: options.shareEncryptionKey,\n shareOwningEntityIds: ShareMetadataBehaviour.NEVER,\n shareSecretIds: [],\n },\n ])\n ),\n (x) => this.bulkShareApplicationSettings(x)\n )\n }\n\n getDataOwnersWithAccessTo(\n entity: models.ApplicationSettings\n ): Promise<{ permissionsByDataOwnerId: { [p: string]: AccessLevelEnum }; hasUnknownAnonymousDataOwners: boolean }> {\n return this.crypto.delegationsDeAnonymization.getDataOwnersWithAccessTo({ entity, type: EntityWithDelegationTypeName.ApplicationSettings })\n }\n\n getEncryptionKeysOf(entity: models.ApplicationSettings): Promise<string[]> {\n return this.crypto.xapi.encryptionKeysOf({ entity, type: EntityWithDelegationTypeName.ApplicationSettings }, undefined)\n }\n\n createDelegationDeAnonymizationMetadata(entity: models.ApplicationSettings, delegates: string[]): Promise<void> {\n return this.crypto.delegationsDeAnonymization.createOrUpdateDeAnonymizationInfo(\n { entity, type: EntityWithDelegationTypeName.ApplicationSettings },\n delegates\n )\n }\n\n async createApplicationSettings(body?: ApplicationSettings): Promise<never> {\n throw new Error('Use withUser method')\n }\n async getApplicationSettings(): Promise<Array<never>> {\n throw new Error('Use withUser method')\n }\n async updateApplicationSettings(body?: ApplicationSettings): Promise<never> {\n throw new Error('Use withUser method')\n }\n\n async createApplicationSettingsWithUser(user: User | undefined, body: ApplicationSettings): Promise<ApplicationSettings> {\n if (body.securityMetadata == null)\n throw new Error('Application settings does not have initialized encryption metadata; initialize or use non-encrypted api')\n return super.createApplicationSettings((await this.encrypt([body]))[0])\n }\n\n async getApplicationSettingsWithUser(user: User | undefined): Promise<Array<ApplicationSettings>> {\n const retrieved = await super.getApplicationSettings()\n return (await this.tryDecryptOrReturnOriginal(retrieved)).map((x) => x.entity)\n }\n\n async updateApplicationSettingsWithUser(user: User | undefined, body: ApplicationSettings): Promise<ApplicationSettings> {\n if (body.securityMetadata == null)\n throw new Error('Application settings does not have initialized encryption metadata; initialize or use non-encrypted api')\n return super.updateApplicationSettings((await this.encrypt([body]))[0])\n }\n\n private async tryDecryptOrReturnOriginal(\n applicationSettings: Array<models.ApplicationSettings>\n ): Promise<{ entity: models.ApplicationSettings; decrypted: boolean }[]> {\n return await this.crypto.xapi.tryDecryptEntities(\n applicationSettings,\n EntityWithDelegationTypeName.ApplicationSettings,\n (x) => new models.ApplicationSettings(x)\n )\n }\n\n private encrypt(applicationSettings: Array<models.ApplicationSettings>): Promise<Array<models.ApplicationSettings>> {\n return this.crypto.xapi.tryEncryptEntities(\n applicationSettings,\n EntityWithDelegationTypeName.ApplicationSettings,\n this.encryptedFields,\n true,\n false,\n (x) => new models.ApplicationSettings(x)\n )\n }\n}\n"]}
@@ -1,4 +1,4 @@
1
- import { IccAgendaApi, IccAnonymousAccessApi, IccApplicationsettingsApi, IccAuthApi, IccBeefactApi, IccBeresultexportApi, IccBeresultimportApi, IccBesamv2Api, IccCalendarItemTypeApi, IccClassificationTemplateApi, IccEntityrefApi, IccEntitytemplateApi, IccFrontendmigrationApi, IccGroupApi, IccIcureApi, IccInsuranceApi, IccKeywordApi, IccMedexApi, IccMedicallocationApi, IccPatientApi, IccPermissionApi, IccPlaceApi, IccPubsubApi, IccReplicationApi, IccTarificationApi, IccTimeTableApi, IccTmpApi } from '../icc-api';
1
+ import { IccAgendaApi, IccAnonymousAccessApi, IccAuthApi, IccBeefactApi, IccBeresultexportApi, IccBeresultimportApi, IccBesamv2Api, IccCalendarItemTypeApi, IccClassificationTemplateApi, IccEntityrefApi, IccEntitytemplateApi, IccFrontendmigrationApi, IccGroupApi, IccIcureApi, IccInsuranceApi, IccKeywordApi, IccMedexApi, IccMedicallocationApi, IccPatientApi, IccPermissionApi, IccPlaceApi, IccPubsubApi, IccReplicationApi, IccTarificationApi, IccTimeTableApi, IccTmpApi } from '../icc-api';
2
2
  import { IccUserXApi } from './icc-user-x-api';
3
3
  import { IccCryptoXApi } from './icc-crypto-x-api';
4
4
  import { IccContactXApi } from './icc-contact-x-api';
@@ -31,6 +31,7 @@ import { IccTopicXApi } from './icc-topic-x-api';
31
31
  import { IccRoleApi } from '../icc-api/api/IccRoleApi';
32
32
  import { AuthSecretProvider, SmartAuthProviderInitialSecret } from './auth/SmartAuthProvider';
33
33
  import { IccRecoveryXApi } from './icc-recovery-x-api';
34
+ import { IccApplicationSettingsXApi } from './icc-application-settings-x-api';
34
35
  export * from './icc-accesslog-x-api';
35
36
  export * from './icc-bekmehr-x-api';
36
37
  export * from './icc-calendar-item-x-api';
@@ -100,7 +101,7 @@ export interface Apis extends BasicApis {
100
101
  readonly dataOwnerApi: IccDataOwnerXApi;
101
102
  readonly icureMaintenanceTaskApi: IccIcureMaintenanceXApi;
102
103
  readonly anonymousAccessApi: IccAnonymousAccessApi;
103
- readonly applicationSettingsApi: IccApplicationsettingsApi;
104
+ readonly applicationSettingsApi: IccApplicationSettingsXApi;
104
105
  readonly bekmehrApi: IccBekmehrXApi;
105
106
  readonly beefactApi: IccBeefactApi;
106
107
  readonly beresultexportApi: IccBeresultexportApi;
@@ -81,6 +81,7 @@ const RecoveryDataEncryption_1 = require("./crypto/RecoveryDataEncryption");
81
81
  const icc_recovery_x_api_1 = require("./icc-recovery-x-api");
82
82
  const JwtUtils_1 = require("./auth/JwtUtils");
83
83
  const SecurityMetadataDecryptor_1 = require("./crypto/SecurityMetadataDecryptor");
84
+ const icc_application_settings_x_api_1 = require("./icc-application-settings-x-api");
84
85
  __exportStar(require("./icc-accesslog-x-api"), exports);
85
86
  __exportStar(require("./icc-bekmehr-x-api"), exports);
86
87
  __exportStar(require("./icc-calendar-item-x-api"), exports);
@@ -435,7 +436,7 @@ class IcureApiImpl {
435
436
  }
436
437
  get applicationSettingsApi() {
437
438
  var _a;
438
- return ((_a = this._applicationSettingsApi) !== null && _a !== void 0 ? _a : (this._applicationSettingsApi = new icc_api_1.IccApplicationsettingsApi(this.host, this.cryptoInitInfos.headers, this.groupSpecificAuthenticationProvider, this.fetch)));
439
+ return ((_a = this._applicationSettingsApi) !== null && _a !== void 0 ? _a : (this._applicationSettingsApi = new icc_application_settings_x_api_1.IccApplicationSettingsXApi(this.host, this.cryptoInitInfos.headers, this.cryptoInitInfos.cryptoApi, this.cryptoInitInfos.dataOwnerApi, !this.cryptoInitInfos.dataOwnerRequiresAnonymousDelegation, ['encryptedSettings'], this.groupSpecificAuthenticationProvider, this.fetch)));
439
440
  }
440
441
  get bekmehrApi() {
441
442
  var _a;