@icure/cardinal-sdk 2.7.0 → 2.8.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/CalendarItemBasicApi.d.mts +36 -0
- package/api/CalendarItemBasicInGroupApi.d.mts +16 -0
- package/cardinal-sdk-ts.mjs +39690 -39214
- package/cardinal-sdk.mjs +74319 -73376
- package/kotlinx-coroutines-core.mjs +1 -1
- 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/Medication.d.mts +85 -0
- package/model/embed/Medication.mjs +85 -0
- 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
|
@@ -49,6 +49,10 @@ export declare class DecryptedPartnership {
|
|
|
49
49
|
* The UUID of the contact person or patient in this relationship.
|
|
50
50
|
*/
|
|
51
51
|
partnerId: string | undefined;
|
|
52
|
+
/**
|
|
53
|
+
*
|
|
54
|
+
* Deprecated. Description of the relationship from the other person to this patient.
|
|
55
|
+
*/
|
|
52
56
|
encryptedSelf: Base64String | undefined;
|
|
53
57
|
readonly isEncrypted: false;
|
|
54
58
|
constructor(partial: Partial<DecryptedPartnership>);
|
|
@@ -77,6 +81,10 @@ export declare class EncryptedPartnership {
|
|
|
77
81
|
* The UUID of the contact person or patient in this relationship.
|
|
78
82
|
*/
|
|
79
83
|
partnerId: string | undefined;
|
|
84
|
+
/**
|
|
85
|
+
*
|
|
86
|
+
* Deprecated. Description of the relationship from the other person to this patient.
|
|
87
|
+
*/
|
|
80
88
|
encryptedSelf: Base64String | undefined;
|
|
81
89
|
readonly isEncrypted: true;
|
|
82
90
|
constructor(partial: Partial<EncryptedPartnership>);
|
|
@@ -25,6 +25,10 @@ export class DecryptedPartnership {
|
|
|
25
25
|
* The UUID of the contact person or patient in this relationship.
|
|
26
26
|
*/
|
|
27
27
|
this.partnerId = undefined;
|
|
28
|
+
/**
|
|
29
|
+
*
|
|
30
|
+
* Deprecated. Description of the relationship from the other person to this patient.
|
|
31
|
+
*/
|
|
28
32
|
this.encryptedSelf = undefined;
|
|
29
33
|
this.isEncrypted = false;
|
|
30
34
|
if (partial.isEncrypted !== undefined && partial.isEncrypted !== false)
|
|
@@ -94,6 +98,10 @@ export class EncryptedPartnership {
|
|
|
94
98
|
* The UUID of the contact person or patient in this relationship.
|
|
95
99
|
*/
|
|
96
100
|
this.partnerId = undefined;
|
|
101
|
+
/**
|
|
102
|
+
*
|
|
103
|
+
* Deprecated. Description of the relationship from the other person to this patient.
|
|
104
|
+
*/
|
|
97
105
|
this.encryptedSelf = undefined;
|
|
98
106
|
this.isEncrypted = true;
|
|
99
107
|
if (partial.isEncrypted !== undefined && partial.isEncrypted !== true)
|
|
@@ -16,6 +16,11 @@ export interface Service extends Encryptable, ICureDocument<string>, HasEndOfLif
|
|
|
16
16
|
* reasons. Several services with the same non null transaction id form one single service
|
|
17
17
|
*/
|
|
18
18
|
transactionId: string | undefined;
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* The transactionId is used when a single service had to be split into parts for technical
|
|
22
|
+
* reasons. Several services with the same non null transaction id form one single service
|
|
23
|
+
*/
|
|
19
24
|
identifier: Array<Identifier>;
|
|
20
25
|
/**
|
|
21
26
|
*
|
|
@@ -42,6 +47,11 @@ export interface Service extends Encryptable, ICureDocument<string>, HasEndOfLif
|
|
|
42
47
|
* its contact.
|
|
43
48
|
*/
|
|
44
49
|
formIds: Array<string> | undefined;
|
|
50
|
+
/**
|
|
51
|
+
*
|
|
52
|
+
* List of Ids of all forms linked to the Service. Only used when the Service is emitted outside of
|
|
53
|
+
* its contact.
|
|
54
|
+
*/
|
|
45
55
|
secretForeignKeys: Array<string> | undefined;
|
|
46
56
|
/**
|
|
47
57
|
*
|
|
@@ -146,6 +156,11 @@ export declare class DecryptedService {
|
|
|
146
156
|
* reasons. Several services with the same non null transaction id form one single service
|
|
147
157
|
*/
|
|
148
158
|
transactionId: string | undefined;
|
|
159
|
+
/**
|
|
160
|
+
*
|
|
161
|
+
* The transactionId is used when a single service had to be split into parts for technical
|
|
162
|
+
* reasons. Several services with the same non null transaction id form one single service
|
|
163
|
+
*/
|
|
149
164
|
identifier: Array<Identifier>;
|
|
150
165
|
/**
|
|
151
166
|
*
|
|
@@ -172,6 +187,11 @@ export declare class DecryptedService {
|
|
|
172
187
|
* its contact.
|
|
173
188
|
*/
|
|
174
189
|
formIds: Array<string> | undefined;
|
|
190
|
+
/**
|
|
191
|
+
*
|
|
192
|
+
* List of Ids of all forms linked to the Service. Only used when the Service is emitted outside of
|
|
193
|
+
* its contact.
|
|
194
|
+
*/
|
|
175
195
|
secretForeignKeys: Array<string> | undefined;
|
|
176
196
|
/**
|
|
177
197
|
*
|
|
@@ -309,6 +329,11 @@ export declare class EncryptedService {
|
|
|
309
329
|
* reasons. Several services with the same non null transaction id form one single service
|
|
310
330
|
*/
|
|
311
331
|
transactionId: string | undefined;
|
|
332
|
+
/**
|
|
333
|
+
*
|
|
334
|
+
* The transactionId is used when a single service had to be split into parts for technical
|
|
335
|
+
* reasons. Several services with the same non null transaction id form one single service
|
|
336
|
+
*/
|
|
312
337
|
identifier: Array<Identifier>;
|
|
313
338
|
/**
|
|
314
339
|
*
|
|
@@ -335,6 +360,11 @@ export declare class EncryptedService {
|
|
|
335
360
|
* its contact.
|
|
336
361
|
*/
|
|
337
362
|
formIds: Array<string> | undefined;
|
|
363
|
+
/**
|
|
364
|
+
*
|
|
365
|
+
* List of Ids of all forms linked to the Service. Only used when the Service is emitted outside of
|
|
366
|
+
* its contact.
|
|
367
|
+
*/
|
|
338
368
|
secretForeignKeys: Array<string> | undefined;
|
|
339
369
|
/**
|
|
340
370
|
*
|
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';
|