@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.
- package/api/CalendarItemApi.d.mts +36 -0
- package/api/CalendarItemBasicApi.d.mts +36 -0
- package/api/CalendarItemBasicInGroupApi.d.mts +16 -0
- package/api/CalendarItemInGroupApi.d.mts +16 -0
- package/cardinal-sdk-ts.mjs +40167 -39221
- package/cardinal-sdk.mjs +75186 -73956
- package/kotlin-kotlin-stdlib.mjs +6 -6
- package/kotlinx-coroutines-core.mjs +7 -7
- package/model/CalendarItemOccupancy.d.mts +25 -0
- package/model/CalendarItemOccupancy.mjs +39 -0
- package/model/Document.d.mts +12 -0
- package/model/Document.mjs +8 -0
- package/model/Group.d.mts +7 -3
- package/model/Group.mjs +7 -3
- package/model/HealthElement.d.mts +12 -12
- package/model/HealthElement.mjs +8 -8
- package/model/Receipt.d.mts +24 -0
- package/model/Receipt.mjs +16 -0
- package/model/User.d.mts +3 -3
- package/model/User.mjs +3 -3
- package/model/base/CodeStub.d.mts +3 -3
- package/model/base/CodeStub.mjs +3 -3
- package/model/base/Identifier.d.mts +5 -0
- package/model/base/Identifier.mjs +5 -0
- package/model/embed/DataAttachment.d.mts +2 -2
- package/model/embed/DataAttachment.mjs +2 -2
- package/model/embed/Partnership.d.mts +8 -0
- package/model/embed/Partnership.mjs +8 -0
- package/model/embed/Service.d.mts +30 -0
- package/model/embed/Service.mjs +20 -0
- package/model.d.mts +1 -0
- package/model.mjs +1 -0
- package/package.json +1 -1
package/model/embed/Service.mjs
CHANGED
|
@@ -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';
|