@icure/cardinal-sdk 1.3.0-ts-2 → 1.3.0-ts-3
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/Kotlin-DateTime-library-kotlinx-datetime.mjs +2 -2
- package/api/AuthApi.d.mts +3 -0
- package/api/AuthApi.mjs +2 -0
- package/api/CalendarItemTypeApi.d.mts +1 -0
- package/api.d.mts +1 -0
- package/api.mjs +1 -0
- package/cardinal-sdk-ts.mjs +26411 -26283
- package/cardinal-sdk.mjs +71579 -71293
- package/crypto.d.mts +0 -1
- package/crypto.mjs +0 -1
- package/kotlin-kotlin-stdlib.mjs +4 -4
- package/model/Form.d.mts +3 -0
- package/model/Form.mjs +6 -0
- package/package.json +1 -1
- package/sdk/CardinalSdk.d.mts +7 -4
- package/crypto/entities/TimeTableShareOptions.d.mts +0 -9
- package/crypto/entities/TimeTableShareOptions.mjs +0 -17
|
@@ -323,7 +323,7 @@ function addFormatStructureForDate(structure) {
|
|
|
323
323
|
function addFormatStructureForTime(structure) {
|
|
324
324
|
this.v5n(structure);
|
|
325
325
|
}
|
|
326
|
-
initMetadataForInterface(AbstractWithDateTimeBuilder, 'AbstractWithDateTimeBuilder', VOID, VOID, [AbstractWithDateBuilder, AbstractWithTimeBuilder,
|
|
326
|
+
initMetadataForInterface(AbstractWithDateTimeBuilder, 'AbstractWithDateTimeBuilder', VOID, VOID, [AbstractWithDateBuilder, AbstractWithTimeBuilder, WithTime, WithDate]);
|
|
327
327
|
function offsetHours$default(padding, $super) {
|
|
328
328
|
padding = padding === VOID ? Padding_ZERO_getInstance() : padding;
|
|
329
329
|
var tmp;
|
|
@@ -376,7 +376,7 @@ function offset(format) {
|
|
|
376
376
|
return tmp;
|
|
377
377
|
}
|
|
378
378
|
initMetadataForInterface(AbstractWithOffsetBuilder, 'AbstractWithOffsetBuilder', VOID, VOID, [WithUtcOffset]);
|
|
379
|
-
initMetadataForClass(Builder, 'Builder', VOID, VOID, [AbstractDateTimeFormatBuilder, AbstractWithDateTimeBuilder, AbstractWithOffsetBuilder,
|
|
379
|
+
initMetadataForClass(Builder, 'Builder', VOID, VOID, [AbstractDateTimeFormatBuilder, AbstractWithDateTimeBuilder, AbstractWithOffsetBuilder, WithTime, WithUtcOffset, WithDate]);
|
|
380
380
|
initMetadataForClass(AbstractDateTimeFormat, 'AbstractDateTimeFormat');
|
|
381
381
|
initMetadataForClass(DateTimeComponentsFormat, 'DateTimeComponentsFormat', VOID, AbstractDateTimeFormat);
|
|
382
382
|
initMetadataForClass(TwoDigitNumber, 'TwoDigitNumber');
|
package/api/AuthApi.mjs
ADDED
|
@@ -9,4 +9,5 @@ export interface CalendarItemTypeApi {
|
|
|
9
9
|
deleteCalendarItemTypes(calendarItemTypeIds: ListOfIds): Promise<Array<DocIdentifier>>;
|
|
10
10
|
getCalendarItemType(calendarItemTypeId: string): Promise<CalendarItemType>;
|
|
11
11
|
modifyCalendarItemType(calendarItemTypeDto: CalendarItemType): Promise<CalendarItemType>;
|
|
12
|
+
listCalendarItemTypesByAgendaId(agendaId: string): Promise<Array<CalendarItemType>>;
|
|
12
13
|
}
|
package/api.d.mts
CHANGED
|
@@ -29,6 +29,7 @@ export * from './api/EntityTemplateApi.mjs';
|
|
|
29
29
|
export * from './api/MaintenanceTaskBasicApi.mjs';
|
|
30
30
|
export * from './api/AccessLogFlavouredApi.mjs';
|
|
31
31
|
export * from './api/MaintenanceTaskApi.mjs';
|
|
32
|
+
export * from './api/AuthApi.mjs';
|
|
32
33
|
export * from './api/CodeApi.mjs';
|
|
33
34
|
export * from './api/ReceiptBasicApi.mjs';
|
|
34
35
|
export * from './api/ClassificationBasicApi.mjs';
|
package/api.mjs
CHANGED
|
@@ -29,6 +29,7 @@ export * from './api/EntityTemplateApi.mjs';
|
|
|
29
29
|
export * from './api/MaintenanceTaskBasicApi.mjs';
|
|
30
30
|
export * from './api/AccessLogFlavouredApi.mjs';
|
|
31
31
|
export * from './api/MaintenanceTaskApi.mjs';
|
|
32
|
+
export * from './api/AuthApi.mjs';
|
|
32
33
|
export * from './api/CodeApi.mjs';
|
|
33
34
|
export * from './api/ReceiptBasicApi.mjs';
|
|
34
35
|
export * from './api/ClassificationBasicApi.mjs';
|