@icure/cardinal-sdk 2.7.0 → 2.8.1

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.
@@ -17,6 +17,11 @@ export class DecryptedService {
17
17
  * reasons. Several services with the same non null transaction id form one single service
18
18
  */
19
19
  this.transactionId = undefined;
20
+ /**
21
+ *
22
+ * The transactionId is used when a single service had to be split into parts for technical
23
+ * reasons. Several services with the same non null transaction id form one single service
24
+ */
20
25
  this.identifier = [];
21
26
  /**
22
27
  *
@@ -43,6 +48,11 @@ export class DecryptedService {
43
48
  * its contact.
44
49
  */
45
50
  this.formIds = undefined;
51
+ /**
52
+ *
53
+ * List of Ids of all forms linked to the Service. Only used when the Service is emitted outside of
54
+ * its contact.
55
+ */
46
56
  this.secretForeignKeys = [];
47
57
  /**
48
58
  *
@@ -330,6 +340,11 @@ export class EncryptedService {
330
340
  * reasons. Several services with the same non null transaction id form one single service
331
341
  */
332
342
  this.transactionId = undefined;
343
+ /**
344
+ *
345
+ * The transactionId is used when a single service had to be split into parts for technical
346
+ * reasons. Several services with the same non null transaction id form one single service
347
+ */
333
348
  this.identifier = [];
334
349
  /**
335
350
  *
@@ -356,6 +371,11 @@ export class EncryptedService {
356
371
  * its contact.
357
372
  */
358
373
  this.formIds = undefined;
374
+ /**
375
+ *
376
+ * List of Ids of all forms linked to the Service. Only used when the Service is emitted outside of
377
+ * its contact.
378
+ */
359
379
  this.secretForeignKeys = [];
360
380
  /**
361
381
  *
package/model.d.mts CHANGED
@@ -186,6 +186,7 @@ export * from './model/GroupDeletionReport.mjs';
186
186
  export * from './model/Message.mjs';
187
187
  export * from './model/Agenda.mjs';
188
188
  export * from './model/data/LabelledOccurence.mjs';
189
+ export * from './model/CalendarItemOccupancy.mjs';
189
190
  export * from './model/Form.mjs';
190
191
  export * from './model/Patient.mjs';
191
192
  export * from './model/base/Versionable.mjs';
package/model.mjs CHANGED
@@ -186,6 +186,7 @@ export * from './model/GroupDeletionReport.mjs';
186
186
  export * from './model/Message.mjs';
187
187
  export * from './model/Agenda.mjs';
188
188
  export * from './model/data/LabelledOccurence.mjs';
189
+ export * from './model/CalendarItemOccupancy.mjs';
189
190
  export * from './model/Form.mjs';
190
191
  export * from './model/Patient.mjs';
191
192
  export * from './model/base/Versionable.mjs';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@icure/cardinal-sdk",
3
- "version": "2.7.0",
3
+ "version": "2.8.1",
4
4
  "main": "cardinal-sdk-ts.mjs",
5
5
  "types": "cardinal-sdk-ts.d.mts",
6
6
  "devDependencies": {