@icure/cardinal-sdk 2.0.0-PREVIEW-18.1 → 2.0.0-PREVIEW-21
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/Kermit-kermit-core.mjs +45 -40
- package/Kermit-kermit.mjs +6 -6
- package/Kotlin-DateTime-library-kotlinx-datetime.mjs +1577 -1577
- package/api/HealthcarePartyApi.d.mts +2 -0
- package/api/HealthcarePartyApiInGroup.d.mts +5 -0
- package/api/HealthcarePartyApiInGroup.mjs +1 -0
- package/api/RecoveryApi.d.mts +5 -1
- package/api.d.mts +1 -0
- package/api.mjs +1 -0
- package/bitops-library-bits.mjs +197 -0
- package/bitops-library-endian.mjs +117 -0
- package/cardinal-sdk-ts.d.mts +2 -2
- package/cardinal-sdk-ts.mjs +57007 -56794
- package/cardinal-sdk.mjs +120895 -120501
- package/core-library-digest.mjs +186 -0
- package/crypto/CryptoService.d.mts +17 -7
- package/error-library-error.mjs +42 -0
- package/hash-library-sha2.mjs +183 -0
- package/internal/BytesEncoding.d.mts +3 -0
- package/internal/BytesEncoding.mjs +99 -0
- package/internal/JsonDecodeUtils.d.mts +20 -0
- package/internal/JsonDecodeUtils.mjs +99 -0
- package/kerberus.mjs +557 -389
- package/kotlin-kotlin-stdlib.mjs +2445 -2713
- package/kotlinx-atomicfu.mjs +13 -13
- package/kotlinx-coroutines-core.mjs +2455 -2450
- package/kotlinx-io-kotlinx-io-bytestring.mjs +36 -36
- package/kotlinx-io-kotlinx-io-core.mjs +459 -459
- package/kotlinx-serialization-kotlinx-serialization-core.mjs +2029 -2029
- package/kotlinx-serialization-kotlinx-serialization-json.mjs +1952 -1952
- package/kryptom-lib.mjs +3263 -1967
- package/ktor-ktor-client-content-negotiation.mjs +184 -184
- package/ktor-ktor-client-core.mjs +2713 -2713
- package/ktor-ktor-events.mjs +6 -6
- package/ktor-ktor-http-cio.mjs +481 -481
- package/ktor-ktor-http.mjs +693 -693
- package/ktor-ktor-io.mjs +963 -963
- package/ktor-ktor-serialization-kotlinx-json.mjs +7 -7
- package/ktor-ktor-serialization-kotlinx.mjs +238 -238
- package/ktor-ktor-serialization.mjs +109 -109
- package/ktor-ktor-utils.mjs +557 -557
- package/ktor-ktor-websockets.mjs +673 -673
- package/model/AccessLog.d.mts +5 -0
- package/model/AccessLog.mjs +168 -0
- package/model/Agenda.d.mts +2 -0
- package/model/Agenda.mjs +82 -0
- package/model/ApplicationSettings.d.mts +5 -0
- package/model/ApplicationSettings.mjs +140 -0
- package/model/BooleanResponse.d.mts +2 -0
- package/model/BooleanResponse.mjs +20 -0
- package/model/CalendarItem.d.mts +5 -0
- package/model/CalendarItem.mjs +290 -0
- package/model/CalendarItemType.d.mts +7 -0
- package/model/CalendarItemType.mjs +117 -0
- package/model/Classification.d.mts +5 -0
- package/model/Classification.mjs +148 -0
- package/model/Code.d.mts +2 -0
- package/model/Code.mjs +69 -0
- package/model/Contact.d.mts +5 -0
- package/model/Contact.mjs +218 -0
- package/model/CryptoActorStub.d.mts +2 -0
- package/model/CryptoActorStub.mjs +45 -0
- package/model/CryptoActorStubWithType.d.mts +2 -0
- package/model/CryptoActorStubWithType.mjs +25 -0
- package/model/DataOwnerRegistrationSuccess.d.mts +2 -0
- package/model/DataOwnerRegistrationSuccess.mjs +24 -0
- package/model/DataOwnerWithType.d.mts +7 -0
- package/model/DataOwnerWithType.mjs +80 -0
- package/model/DatabaseInitialisation.d.mts +2 -0
- package/model/DatabaseInitialisation.mjs +34 -0
- package/model/Device.d.mts +2 -0
- package/model/Device.mjs +99 -0
- package/model/Document.d.mts +5 -0
- package/model/Document.mjs +246 -0
- package/model/DocumentTemplate.d.mts +2 -0
- package/model/DocumentTemplate.mjs +91 -0
- package/model/EntityReference.d.mts +2 -0
- package/model/EntityReference.mjs +29 -0
- package/model/EntityReferenceInGroup.d.mts +2 -0
- package/model/EntityReferenceInGroup.mjs +23 -0
- package/model/EntityTemplate.d.mts +2 -0
- package/model/EntityTemplate.mjs +46 -0
- package/model/Form.d.mts +5 -0
- package/model/Form.mjs +204 -0
- package/model/FormTemplate.d.mts +2 -0
- package/model/FormTemplate.mjs +82 -0
- package/model/FrontEndMigration.d.mts +2 -0
- package/model/FrontEndMigration.mjs +57 -0
- package/model/Group.d.mts +2 -0
- package/model/Group.mjs +68 -0
- package/model/GroupDeletionReport.d.mts +2 -0
- package/model/GroupDeletionReport.mjs +24 -0
- package/model/HealthElement.d.mts +5 -0
- package/model/HealthElement.mjs +226 -0
- package/model/HealthcareParty.d.mts +2 -0
- package/model/HealthcareParty.mjs +182 -0
- package/model/IdWithRev.d.mts +2 -0
- package/model/IdWithRev.mjs +23 -0
- package/model/IndexingInfo.d.mts +2 -0
- package/model/IndexingInfo.mjs +21 -0
- package/model/Insurance.d.mts +2 -0
- package/model/Insurance.mjs +46 -0
- package/model/Invoice.d.mts +5 -0
- package/model/Invoice.mjs +468 -0
- package/model/Keyword.d.mts +2 -0
- package/model/Keyword.mjs +58 -0
- package/model/ListOfIds.d.mts +2 -0
- package/model/ListOfIds.mjs +20 -0
- package/model/ListOfProperties.d.mts +2 -0
- package/model/ListOfProperties.mjs +22 -0
- package/model/MaintenanceTask.d.mts +5 -0
- package/model/MaintenanceTask.mjs +152 -0
- package/model/MedicalLocation.d.mts +2 -0
- package/model/MedicalLocation.mjs +63 -0
- package/model/Message.d.mts +5 -0
- package/model/Message.mjs +248 -0
- package/model/PaginatedDocumentKeyIdPair.d.mts +2 -0
- package/model/PaginatedDocumentKeyIdPair.mjs +24 -0
- package/model/Patient.d.mts +5 -0
- package/model/Patient.mjs +491 -0
- package/model/Place.d.mts +2 -0
- package/model/Place.mjs +33 -0
- package/model/PropertyStub.d.mts +5 -0
- package/model/PropertyStub.mjs +74 -0
- package/model/PropertyTypeStub.d.mts +2 -0
- package/model/PropertyTypeStub.mjs +26 -0
- package/model/PublicAgendasAndCalendarItemTypes.d.mts +2 -0
- package/model/PublicAgendasAndCalendarItemTypes.mjs +25 -0
- package/model/PublicKey.d.mts +2 -0
- package/model/PublicKey.mjs +24 -0
- package/model/Receipt.d.mts +5 -0
- package/model/Receipt.mjs +159 -0
- package/model/RegistrationInformation.d.mts +2 -0
- package/model/RegistrationInformation.mjs +43 -0
- package/model/RegistrationSuccess.d.mts +2 -0
- package/model/RegistrationSuccess.mjs +24 -0
- package/model/Replication.d.mts +2 -0
- package/model/Replication.mjs +35 -0
- package/model/ReplicationInfo.d.mts +2 -0
- package/model/ReplicationInfo.mjs +28 -0
- package/model/Role.d.mts +2 -0
- package/model/Role.mjs +34 -0
- package/model/StoredDocumentIdentifier.d.mts +2 -0
- package/model/StoredDocumentIdentifier.mjs +22 -0
- package/model/Tarification.d.mts +2 -0
- package/model/Tarification.mjs +92 -0
- package/model/TimeTable.d.mts +2 -0
- package/model/TimeTable.mjs +64 -0
- package/model/Topic.d.mts +5 -0
- package/model/Topic.mjs +163 -0
- package/model/User.d.mts +4 -0
- package/model/User.mjs +118 -0
- package/model/UserGroup.d.mts +2 -0
- package/model/UserGroup.mjs +55 -0
- package/model/base/CodeStub.d.mts +2 -0
- package/model/base/CodeStub.mjs +40 -0
- package/model/base/CryptoActor.d.mts +3 -0
- package/model/base/CryptoActor.mjs +19 -1
- package/model/base/Identifier.d.mts +2 -0
- package/model/base/Identifier.mjs +44 -0
- package/model/couchdb/Basic.d.mts +2 -0
- package/model/couchdb/Basic.mjs +22 -0
- package/model/couchdb/DatabaseInfo.d.mts +2 -0
- package/model/couchdb/DatabaseInfo.mjs +47 -0
- package/model/couchdb/DesignDocument.d.mts +2 -0
- package/model/couchdb/DesignDocument.mjs +40 -0
- package/model/couchdb/DocIdentifier.d.mts +2 -0
- package/model/couchdb/DocIdentifier.mjs +24 -0
- package/model/couchdb/GroupDatabasesInfo.d.mts +2 -0
- package/model/couchdb/GroupDatabasesInfo.mjs +26 -0
- package/model/couchdb/Remote.d.mts +2 -0
- package/model/couchdb/Remote.mjs +25 -0
- package/model/couchdb/RemoteAuthentication.d.mts +2 -0
- package/model/couchdb/RemoteAuthentication.mjs +23 -0
- package/model/couchdb/ReplicationStats.d.mts +2 -0
- package/model/couchdb/ReplicationStats.mjs +45 -0
- package/model/couchdb/ReplicatorDocument.d.mts +2 -0
- package/model/couchdb/ReplicatorDocument.mjs +61 -0
- package/model/couchdb/View.d.mts +2 -0
- package/model/couchdb/View.mjs +23 -0
- package/model/data/LabelledOccurence.d.mts +2 -0
- package/model/data/LabelledOccurence.mjs +22 -0
- package/model/embed/Address.d.mts +5 -0
- package/model/embed/Address.mjs +133 -0
- package/model/embed/AdministrationQuantity.d.mts +2 -0
- package/model/embed/AdministrationQuantity.mjs +29 -0
- package/model/embed/AgendaSlottingAlgorithm.d.mts +3 -0
- package/model/embed/AgendaSlottingAlgorithm.mjs +30 -0
- package/model/embed/AgreementAppendix.d.mts +2 -0
- package/model/embed/AgreementAppendix.mjs +30 -0
- package/model/embed/Annotation.d.mts +2 -0
- package/model/embed/Annotation.mjs +46 -0
- package/model/embed/CalendarItemTag.d.mts +5 -0
- package/model/embed/CalendarItemTag.mjs +72 -0
- package/model/embed/CareTeamMember.d.mts +5 -0
- package/model/embed/CareTeamMember.mjs +71 -0
- package/model/embed/CareTeamMembership.d.mts +5 -0
- package/model/embed/CareTeamMembership.mjs +73 -0
- package/model/embed/Content.d.mts +5 -0
- package/model/embed/Content.mjs +125 -0
- package/model/embed/DataAttachment.d.mts +2 -0
- package/model/embed/DataAttachment.mjs +26 -0
- package/model/embed/DatabaseSynchronization.d.mts +2 -0
- package/model/embed/DatabaseSynchronization.mjs +30 -0
- package/model/embed/Delegation.d.mts +2 -0
- package/model/embed/Delegation.mjs +30 -0
- package/model/embed/DeletedAttachment.d.mts +2 -0
- package/model/embed/DeletedAttachment.mjs +30 -0
- package/model/embed/DocumentGroup.d.mts +2 -0
- package/model/embed/DocumentGroup.mjs +24 -0
- package/model/embed/Duration.d.mts +2 -0
- package/model/embed/Duration.mjs +26 -0
- package/model/embed/EmbeddedTimeTableHour.d.mts +2 -0
- package/model/embed/EmbeddedTimeTableHour.mjs +22 -0
- package/model/embed/EmbeddedTimeTableItem.d.mts +2 -0
- package/model/embed/EmbeddedTimeTableItem.mjs +41 -0
- package/model/embed/Employer.d.mts +2 -0
- package/model/embed/Employer.mjs +26 -0
- package/model/embed/EmploymentInfo.d.mts +5 -0
- package/model/embed/EmploymentInfo.mjs +74 -0
- package/model/embed/Episode.d.mts +5 -0
- package/model/embed/Episode.mjs +75 -0
- package/model/embed/FinancialInstitutionInformation.d.mts +5 -0
- package/model/embed/FinancialInstitutionInformation.mjs +88 -0
- package/model/embed/FlatRateTarification.d.mts +5 -0
- package/model/embed/FlatRateTarification.mjs +72 -0
- package/model/embed/FlowItem.d.mts +2 -0
- package/model/embed/FlowItem.mjs +117 -0
- package/model/embed/HealthcarePartyHistoryStatus.d.mts +2 -0
- package/model/embed/HealthcarePartyHistoryStatus.mjs +28 -0
- package/model/embed/IdentityDocumentReader.d.mts +2 -0
- package/model/embed/IdentityDocumentReader.mjs +33 -0
- package/model/embed/Insurability.d.mts +5 -0
- package/model/embed/Insurability.mjs +100 -0
- package/model/embed/InvoicingCode.d.mts +5 -0
- package/model/embed/InvoicingCode.mjs +377 -0
- package/model/embed/KeywordSubword.d.mts +2 -0
- package/model/embed/KeywordSubword.mjs +25 -0
- package/model/embed/LetterValue.d.mts +2 -0
- package/model/embed/LetterValue.mjs +30 -0
- package/model/embed/Measure.d.mts +2 -0
- package/model/embed/Measure.mjs +57 -0
- package/model/embed/MedicalHouseContract.d.mts +5 -0
- package/model/embed/MedicalHouseContract.mjs +223 -0
- package/model/embed/Medication.d.mts +2 -0
- package/model/embed/Medication.mjs +157 -0
- package/model/embed/Medicinalproduct.d.mts +2 -0
- package/model/embed/Medicinalproduct.mjs +33 -0
- package/model/embed/MessageAttachment.d.mts +2 -0
- package/model/embed/MessageAttachment.mjs +25 -0
- package/model/embed/MessageReadStatus.d.mts +2 -0
- package/model/embed/MessageReadStatus.mjs +23 -0
- package/model/embed/ParagraphAgreement.d.mts +2 -0
- package/model/embed/ParagraphAgreement.mjs +86 -0
- package/model/embed/Partnership.d.mts +2 -0
- package/model/embed/Partnership.mjs +36 -0
- package/model/embed/PatientHealthCareParty.d.mts +9 -0
- package/model/embed/PatientHealthCareParty.mjs +88 -0
- package/model/embed/Payment.d.mts +2 -0
- package/model/embed/Payment.mjs +28 -0
- package/model/embed/Periodicity.d.mts +2 -0
- package/model/embed/Periodicity.mjs +26 -0
- package/model/embed/PersonName.d.mts +2 -0
- package/model/embed/PersonName.mjs +41 -0
- package/model/embed/PlanOfAction.d.mts +8 -3
- package/model/embed/PlanOfAction.mjs +179 -0
- package/model/embed/Range.d.mts +2 -0
- package/model/embed/Range.mjs +24 -0
- package/model/embed/ReferenceRange.d.mts +2 -0
- package/model/embed/ReferenceRange.mjs +40 -0
- package/model/embed/ReferralPeriod.d.mts +2 -0
- package/model/embed/ReferralPeriod.mjs +27 -0
- package/model/embed/RegimenItem.d.mts +2 -0
- package/model/embed/RegimenItem.mjs +40 -0
- package/model/embed/Renewal.d.mts +2 -0
- package/model/embed/Renewal.mjs +26 -0
- package/model/embed/ResourceGroupAllocationSchedule.d.mts +2 -0
- package/model/embed/ResourceGroupAllocationSchedule.mjs +39 -0
- package/model/embed/Right.d.mts +2 -0
- package/model/embed/Right.mjs +27 -0
- package/model/embed/RoleConfiguration.d.mts +2 -0
- package/model/embed/RoleConfiguration.mjs +22 -0
- package/model/embed/SchoolingInfo.d.mts +5 -0
- package/model/embed/SchoolingInfo.mjs +73 -0
- package/model/embed/SecureDelegation.d.mts +2 -0
- package/model/embed/SecureDelegation.mjs +39 -0
- package/model/embed/SecurityMetadata.d.mts +2 -0
- package/model/embed/SecurityMetadata.mjs +22 -0
- package/model/embed/Service.d.mts +5 -0
- package/model/embed/Service.mjs +240 -0
- package/model/embed/ServiceLink.d.mts +2 -0
- package/model/embed/ServiceLink.mjs +21 -0
- package/model/embed/SubContact.d.mts +5 -0
- package/model/embed/SubContact.mjs +146 -0
- package/model/embed/Substanceproduct.d.mts +2 -0
- package/model/embed/Substanceproduct.mjs +33 -0
- package/model/embed/Suspension.d.mts +2 -0
- package/model/embed/Suspension.mjs +30 -0
- package/model/embed/Telecom.d.mts +5 -0
- package/model/embed/Telecom.mjs +67 -0
- package/model/embed/TimeSeries.d.mts +2 -0
- package/model/embed/TimeSeries.mjs +32 -0
- package/model/embed/TimeTableHour.d.mts +2 -0
- package/model/embed/TimeTableHour.mjs +24 -0
- package/model/embed/TimeTableItem.d.mts +2 -0
- package/model/embed/TimeTableItem.mjs +57 -0
- package/model/embed/TypedValue.d.mts +5 -0
- package/model/embed/TypedValue.mjs +85 -0
- package/model/embed/Valorisation.d.mts +5 -0
- package/model/embed/Valorisation.mjs +108 -0
- package/model/embed/ValueWithPrecision.d.mts +2 -0
- package/model/embed/ValueWithPrecision.mjs +22 -0
- package/model/embed/Weekday.d.mts +2 -0
- package/model/embed/Weekday.mjs +26 -0
- package/model/embed/form/template/Action.d.mts +2 -0
- package/model/embed/form/template/Action.mjs +30 -0
- package/model/embed/form/template/CheckBox.d.mts +2 -0
- package/model/embed/form/template/CheckBox.mjs +71 -0
- package/model/embed/form/template/DatePicker.d.mts +2 -0
- package/model/embed/form/template/DatePicker.mjs +71 -0
- package/model/embed/form/template/DateTimePicker.d.mts +2 -0
- package/model/embed/form/template/DateTimePicker.mjs +71 -0
- package/model/embed/form/template/DropdownField.d.mts +2 -0
- package/model/embed/form/template/DropdownField.mjs +71 -0
- package/model/embed/form/template/FieldsGroup.d.mts +2 -0
- package/model/embed/form/template/FieldsGroup.mjs +28 -0
- package/model/embed/form/template/FormTemplateLayout.d.mts +2 -0
- package/model/embed/form/template/FormTemplateLayout.mjs +33 -0
- package/model/embed/form/template/Launcher.d.mts +2 -0
- package/model/embed/form/template/Launcher.mjs +26 -0
- package/model/embed/form/template/MeasureField.d.mts +2 -0
- package/model/embed/form/template/MeasureField.mjs +71 -0
- package/model/embed/form/template/MultipleChoice.d.mts +2 -0
- package/model/embed/form/template/MultipleChoice.mjs +71 -0
- package/model/embed/form/template/NumberField.d.mts +2 -0
- package/model/embed/form/template/NumberField.mjs +71 -0
- package/model/embed/form/template/RadioButton.d.mts +2 -0
- package/model/embed/form/template/RadioButton.mjs +71 -0
- package/model/embed/form/template/Section.d.mts +2 -0
- package/model/embed/form/template/Section.mjs +30 -0
- package/model/embed/form/template/State.d.mts +2 -0
- package/model/embed/form/template/State.mjs +26 -0
- package/model/embed/form/template/StructureElement.d.mts +3 -0
- package/model/embed/form/template/StructureElement.mjs +32 -1
- package/model/embed/form/template/TextField.d.mts +2 -0
- package/model/embed/form/template/TextField.mjs +71 -0
- package/model/embed/form/template/TimePicker.d.mts +2 -0
- package/model/embed/form/template/TimePicker.mjs +71 -0
- package/model/filter/predicate/AlwaysPredicate.d.mts +2 -0
- package/model/filter/predicate/AlwaysPredicate.mjs +20 -0
- package/model/filter/predicate/AndPredicate.d.mts +2 -0
- package/model/filter/predicate/AndPredicate.mjs +25 -0
- package/model/filter/predicate/KeyValuePredicate.d.mts +2 -0
- package/model/filter/predicate/KeyValuePredicate.mjs +32 -0
- package/model/filter/predicate/NotPredicate.d.mts +2 -0
- package/model/filter/predicate/NotPredicate.mjs +25 -0
- package/model/filter/predicate/OrPredicate.d.mts +2 -0
- package/model/filter/predicate/OrPredicate.mjs +25 -0
- package/model/filter/predicate/Predicate.d.mts +3 -0
- package/model/filter/predicate/Predicate.mjs +20 -1
- package/model/security/AlwaysPermissionItem.d.mts +2 -0
- package/model/security/AlwaysPermissionItem.mjs +25 -0
- package/model/security/AuthenticationToken.d.mts +2 -0
- package/model/security/AuthenticationToken.mjs +28 -0
- package/model/security/Enable2faRequest.d.mts +2 -0
- package/model/security/Enable2faRequest.mjs +22 -0
- package/model/security/ExternalJwtConfig.d.mts +18 -0
- package/model/security/ExternalJwtConfig.mjs +199 -0
- package/model/security/LoginIdentifier.d.mts +2 -0
- package/model/security/LoginIdentifier.mjs +22 -0
- package/model/security/OperationToken.d.mts +2 -0
- package/model/security/OperationToken.mjs +31 -0
- package/model/security/Permission.d.mts +2 -0
- package/model/security/Permission.mjs +24 -0
- package/model/security/PermissionItem.d.mts +3 -0
- package/model/security/PermissionItem.mjs +12 -1
- package/model/security/TokenWithGroup.d.mts +2 -0
- package/model/security/TokenWithGroup.mjs +25 -0
- package/options/SdkOptions.d.mts +3 -23
- package/package.json +1 -1
- package/utils/Id.d.mts +5 -0
- package/utils/Id.mjs +19 -10
- package/KotlinBigInteger-bignum.mjs +0 -5902
- /package/{KotlinBigInteger-bignum-serialization-kotlinx.mjs → core-library-core.mjs} +0 -0
|
@@ -47,10 +47,10 @@ function register$default(contentType, converter, configuration, $super) {
|
|
|
47
47
|
configuration = tmp;
|
|
48
48
|
var tmp_0;
|
|
49
49
|
if ($super === VOID) {
|
|
50
|
-
this.
|
|
50
|
+
this.d5l(contentType, converter, configuration);
|
|
51
51
|
tmp_0 = Unit_instance;
|
|
52
52
|
} else {
|
|
53
|
-
tmp_0 = $super.
|
|
53
|
+
tmp_0 = $super.d5l.call(this, contentType, converter, configuration);
|
|
54
54
|
}
|
|
55
55
|
return tmp_0;
|
|
56
56
|
}
|
|
@@ -74,12 +74,12 @@ function JsonConvertException(message, cause) {
|
|
|
74
74
|
}
|
|
75
75
|
function deserialize(_this__u8e3s4, body, typeInfo, charset, $completion) {
|
|
76
76
|
var tmp = new $deserializeCOROUTINE$(_this__u8e3s4, body, typeInfo, charset, $completion);
|
|
77
|
-
tmp.
|
|
78
|
-
tmp.
|
|
79
|
-
return tmp.
|
|
77
|
+
tmp.n8_1 = Unit_instance;
|
|
78
|
+
tmp.o8_1 = null;
|
|
79
|
+
return tmp.t8();
|
|
80
80
|
}
|
|
81
81
|
function suitableCharset(_this__u8e3s4, defaultCharset) {
|
|
82
|
-
defaultCharset = defaultCharset === VOID ? Charsets_getInstance().
|
|
82
|
+
defaultCharset = defaultCharset === VOID ? Charsets_getInstance().f4n_1 : defaultCharset;
|
|
83
83
|
var tmp0_elvis_lhs = suitableCharsetOrNull(_this__u8e3s4, defaultCharset);
|
|
84
84
|
return tmp0_elvis_lhs == null ? defaultCharset : tmp0_elvis_lhs;
|
|
85
85
|
}
|
|
@@ -89,10 +89,10 @@ function Configuration$register$lambda(_this__u8e3s4) {
|
|
|
89
89
|
function Configuration() {
|
|
90
90
|
}
|
|
91
91
|
function suitableCharsetOrNull(_this__u8e3s4, defaultCharset) {
|
|
92
|
-
defaultCharset = defaultCharset === VOID ? Charsets_getInstance().
|
|
93
|
-
var _iterator__ex2g4s = parseAndSortHeader(_this__u8e3s4.
|
|
92
|
+
defaultCharset = defaultCharset === VOID ? Charsets_getInstance().f4n_1 : defaultCharset;
|
|
93
|
+
var _iterator__ex2g4s = parseAndSortHeader(_this__u8e3s4.x3h(HttpHeaders_getInstance().t4w_1)).s();
|
|
94
94
|
while (_iterator__ex2g4s.t()) {
|
|
95
|
-
var charset = _iterator__ex2g4s.u().
|
|
95
|
+
var charset = _iterator__ex2g4s.u().na();
|
|
96
96
|
if (charset === '*')
|
|
97
97
|
return defaultCharset;
|
|
98
98
|
else if (isSupported(Charsets_getInstance(), charset))
|
|
@@ -101,20 +101,20 @@ function suitableCharsetOrNull(_this__u8e3s4, defaultCharset) {
|
|
|
101
101
|
return null;
|
|
102
102
|
}
|
|
103
103
|
function sam$kotlinx_coroutines_flow_FlowCollector$0(function_0) {
|
|
104
|
-
this.
|
|
104
|
+
this.f5l_1 = function_0;
|
|
105
105
|
}
|
|
106
|
-
protoOf(sam$kotlinx_coroutines_flow_FlowCollector$0).
|
|
107
|
-
return this.
|
|
106
|
+
protoOf(sam$kotlinx_coroutines_flow_FlowCollector$0).m1f = function (value, $completion) {
|
|
107
|
+
return this.f5l_1(value, $completion);
|
|
108
108
|
};
|
|
109
|
-
protoOf(sam$kotlinx_coroutines_flow_FlowCollector$0).
|
|
110
|
-
return this.
|
|
109
|
+
protoOf(sam$kotlinx_coroutines_flow_FlowCollector$0).z2 = function () {
|
|
110
|
+
return this.f5l_1;
|
|
111
111
|
};
|
|
112
112
|
protoOf(sam$kotlinx_coroutines_flow_FlowCollector$0).equals = function (other) {
|
|
113
113
|
var tmp;
|
|
114
114
|
if (!(other == null) ? isInterface(other, FlowCollector) : false) {
|
|
115
115
|
var tmp_0;
|
|
116
116
|
if (!(other == null) ? isInterface(other, FunctionAdapter) : false) {
|
|
117
|
-
tmp_0 = equals(this.
|
|
117
|
+
tmp_0 = equals(this.z2(), other.z2());
|
|
118
118
|
} else {
|
|
119
119
|
tmp_0 = false;
|
|
120
120
|
}
|
|
@@ -125,37 +125,37 @@ protoOf(sam$kotlinx_coroutines_flow_FlowCollector$0).equals = function (other) {
|
|
|
125
125
|
return tmp;
|
|
126
126
|
};
|
|
127
127
|
protoOf(sam$kotlinx_coroutines_flow_FlowCollector$0).hashCode = function () {
|
|
128
|
-
return hashCode(this.
|
|
128
|
+
return hashCode(this.z2());
|
|
129
129
|
};
|
|
130
130
|
function deserialize$o$collect$slambda($$this$unsafeFlow, $charset, $typeInfo, $body, resultContinuation) {
|
|
131
|
-
this.
|
|
132
|
-
this.
|
|
133
|
-
this.
|
|
134
|
-
this.
|
|
131
|
+
this.o5l_1 = $$this$unsafeFlow;
|
|
132
|
+
this.p5l_1 = $charset;
|
|
133
|
+
this.q5l_1 = $typeInfo;
|
|
134
|
+
this.r5l_1 = $body;
|
|
135
135
|
CoroutineImpl.call(this, resultContinuation);
|
|
136
136
|
}
|
|
137
|
-
protoOf(deserialize$o$collect$slambda).
|
|
138
|
-
var tmp = this.
|
|
139
|
-
tmp.
|
|
140
|
-
tmp.
|
|
141
|
-
return tmp.
|
|
137
|
+
protoOf(deserialize$o$collect$slambda).u5l = function (value, $completion) {
|
|
138
|
+
var tmp = this.v5l(value, $completion);
|
|
139
|
+
tmp.n8_1 = Unit_instance;
|
|
140
|
+
tmp.o8_1 = null;
|
|
141
|
+
return tmp.t8();
|
|
142
142
|
};
|
|
143
|
-
protoOf(deserialize$o$collect$slambda).
|
|
144
|
-
return this.
|
|
143
|
+
protoOf(deserialize$o$collect$slambda).f9 = function (p1, $completion) {
|
|
144
|
+
return this.u5l((p1 == null ? true : !(p1 == null)) ? p1 : THROW_CCE(), $completion);
|
|
145
145
|
};
|
|
146
|
-
protoOf(deserialize$o$collect$slambda).
|
|
147
|
-
var suspendResult = this.
|
|
146
|
+
protoOf(deserialize$o$collect$slambda).t8 = function () {
|
|
147
|
+
var suspendResult = this.n8_1;
|
|
148
148
|
$sm: do
|
|
149
149
|
try {
|
|
150
|
-
var tmp = this.
|
|
150
|
+
var tmp = this.l8_1;
|
|
151
151
|
switch (tmp) {
|
|
152
152
|
case 0:
|
|
153
|
-
this.
|
|
154
|
-
var tmp0 = this.
|
|
155
|
-
var tmp2 = this.
|
|
156
|
-
this.
|
|
157
|
-
this.
|
|
158
|
-
suspendResult = tmp2.
|
|
153
|
+
this.m8_1 = 3;
|
|
154
|
+
var tmp0 = this.o5l_1;
|
|
155
|
+
var tmp2 = this.s5l_1;
|
|
156
|
+
this.t5l_1 = tmp0;
|
|
157
|
+
this.l8_1 = 1;
|
|
158
|
+
suspendResult = tmp2.w5l(this.p5l_1, this.q5l_1, this.r5l_1, this);
|
|
159
159
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
160
160
|
return suspendResult;
|
|
161
161
|
}
|
|
@@ -163,8 +163,8 @@ protoOf(deserialize$o$collect$slambda).a9 = function () {
|
|
|
163
163
|
continue $sm;
|
|
164
164
|
case 1:
|
|
165
165
|
var ARGUMENT = suspendResult;
|
|
166
|
-
this.
|
|
167
|
-
suspendResult = this.
|
|
166
|
+
this.l8_1 = 2;
|
|
167
|
+
suspendResult = this.t5l_1.m1f(ARGUMENT, this);
|
|
168
168
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
169
169
|
return suspendResult;
|
|
170
170
|
}
|
|
@@ -173,49 +173,49 @@ protoOf(deserialize$o$collect$slambda).a9 = function () {
|
|
|
173
173
|
case 2:
|
|
174
174
|
return Unit_instance;
|
|
175
175
|
case 3:
|
|
176
|
-
throw this.
|
|
176
|
+
throw this.o8_1;
|
|
177
177
|
}
|
|
178
178
|
} catch ($p) {
|
|
179
179
|
var e = $p;
|
|
180
|
-
if (this.
|
|
180
|
+
if (this.m8_1 === 3) {
|
|
181
181
|
throw e;
|
|
182
182
|
} else {
|
|
183
|
-
this.
|
|
184
|
-
this.
|
|
183
|
+
this.l8_1 = this.m8_1;
|
|
184
|
+
this.o8_1 = e;
|
|
185
185
|
}
|
|
186
186
|
}
|
|
187
187
|
while (true);
|
|
188
188
|
};
|
|
189
|
-
protoOf(deserialize$o$collect$slambda).
|
|
190
|
-
var i = new deserialize$o$collect$slambda(this.
|
|
191
|
-
i.
|
|
189
|
+
protoOf(deserialize$o$collect$slambda).v5l = function (value, completion) {
|
|
190
|
+
var i = new deserialize$o$collect$slambda(this.o5l_1, this.p5l_1, this.q5l_1, this.r5l_1, completion);
|
|
191
|
+
i.s5l_1 = value;
|
|
192
192
|
return i;
|
|
193
193
|
};
|
|
194
194
|
function deserialize$o$collect$slambda_0($$this$unsafeFlow, $charset, $typeInfo, $body, resultContinuation) {
|
|
195
195
|
var i = new deserialize$o$collect$slambda($$this$unsafeFlow, $charset, $typeInfo, $body, resultContinuation);
|
|
196
196
|
var l = function (value, $completion) {
|
|
197
|
-
return i.
|
|
197
|
+
return i.u5l(value, $completion);
|
|
198
198
|
};
|
|
199
199
|
l.$arity = 1;
|
|
200
200
|
return l;
|
|
201
201
|
}
|
|
202
202
|
function $collectCOROUTINE$(_this__u8e3s4, collector, resultContinuation) {
|
|
203
203
|
CoroutineImpl.call(this, resultContinuation);
|
|
204
|
-
this.
|
|
205
|
-
this.
|
|
204
|
+
this.f5m_1 = _this__u8e3s4;
|
|
205
|
+
this.g5m_1 = collector;
|
|
206
206
|
}
|
|
207
|
-
protoOf($collectCOROUTINE$).
|
|
208
|
-
var suspendResult = this.
|
|
207
|
+
protoOf($collectCOROUTINE$).t8 = function () {
|
|
208
|
+
var suspendResult = this.n8_1;
|
|
209
209
|
$sm: do
|
|
210
210
|
try {
|
|
211
|
-
var tmp = this.
|
|
211
|
+
var tmp = this.l8_1;
|
|
212
212
|
switch (tmp) {
|
|
213
213
|
case 0:
|
|
214
|
-
this.
|
|
215
|
-
var $this$unsafeFlow = this.
|
|
216
|
-
this.
|
|
217
|
-
var tmp_0 = deserialize$o$collect$slambda_0($this$unsafeFlow, this.
|
|
218
|
-
suspendResult = this.
|
|
214
|
+
this.m8_1 = 2;
|
|
215
|
+
var $this$unsafeFlow = this.g5m_1;
|
|
216
|
+
this.l8_1 = 1;
|
|
217
|
+
var tmp_0 = deserialize$o$collect$slambda_0($this$unsafeFlow, this.f5m_1.i5m_1, this.f5m_1.j5m_1, this.f5m_1.k5m_1, null);
|
|
218
|
+
suspendResult = this.f5m_1.h5m_1.y1e(new sam$kotlinx_coroutines_flow_FlowCollector$0(tmp_0), this);
|
|
219
219
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
220
220
|
return suspendResult;
|
|
221
221
|
}
|
|
@@ -224,57 +224,57 @@ protoOf($collectCOROUTINE$).a9 = function () {
|
|
|
224
224
|
case 1:
|
|
225
225
|
return Unit_instance;
|
|
226
226
|
case 2:
|
|
227
|
-
throw this.
|
|
227
|
+
throw this.o8_1;
|
|
228
228
|
}
|
|
229
229
|
} catch ($p) {
|
|
230
230
|
var e = $p;
|
|
231
|
-
if (this.
|
|
231
|
+
if (this.m8_1 === 2) {
|
|
232
232
|
throw e;
|
|
233
233
|
} else {
|
|
234
|
-
this.
|
|
235
|
-
this.
|
|
234
|
+
this.l8_1 = this.m8_1;
|
|
235
|
+
this.o8_1 = e;
|
|
236
236
|
}
|
|
237
237
|
}
|
|
238
238
|
while (true);
|
|
239
239
|
};
|
|
240
240
|
function deserialize$$inlined$map$1($this, $charset, $typeInfo, $body) {
|
|
241
|
-
this.
|
|
242
|
-
this.
|
|
243
|
-
this.
|
|
244
|
-
this.
|
|
241
|
+
this.h5m_1 = $this;
|
|
242
|
+
this.i5m_1 = $charset;
|
|
243
|
+
this.j5m_1 = $typeInfo;
|
|
244
|
+
this.k5m_1 = $body;
|
|
245
245
|
}
|
|
246
|
-
protoOf(deserialize$$inlined$map$1).
|
|
246
|
+
protoOf(deserialize$$inlined$map$1).n1f = function (collector, $completion) {
|
|
247
247
|
var tmp = new $collectCOROUTINE$(this, collector, $completion);
|
|
248
|
-
tmp.
|
|
249
|
-
tmp.
|
|
250
|
-
return tmp.
|
|
248
|
+
tmp.n8_1 = Unit_instance;
|
|
249
|
+
tmp.o8_1 = null;
|
|
250
|
+
return tmp.t8();
|
|
251
251
|
};
|
|
252
|
-
protoOf(deserialize$$inlined$map$1).
|
|
253
|
-
return this.
|
|
252
|
+
protoOf(deserialize$$inlined$map$1).y1e = function (collector, $completion) {
|
|
253
|
+
return this.n1f(collector, $completion);
|
|
254
254
|
};
|
|
255
255
|
function deserialize$slambda($body, resultContinuation) {
|
|
256
|
-
this.
|
|
256
|
+
this.t5m_1 = $body;
|
|
257
257
|
CoroutineImpl.call(this, resultContinuation);
|
|
258
258
|
}
|
|
259
|
-
protoOf(deserialize$slambda).
|
|
260
|
-
var tmp = this.
|
|
261
|
-
tmp.
|
|
262
|
-
tmp.
|
|
263
|
-
return tmp.
|
|
259
|
+
protoOf(deserialize$slambda).v5m = function (it, $completion) {
|
|
260
|
+
var tmp = this.v5l(it, $completion);
|
|
261
|
+
tmp.n8_1 = Unit_instance;
|
|
262
|
+
tmp.o8_1 = null;
|
|
263
|
+
return tmp.t8();
|
|
264
264
|
};
|
|
265
|
-
protoOf(deserialize$slambda).
|
|
266
|
-
return this.
|
|
265
|
+
protoOf(deserialize$slambda).f9 = function (p1, $completion) {
|
|
266
|
+
return this.v5m((p1 == null ? true : !(p1 == null)) ? p1 : THROW_CCE(), $completion);
|
|
267
267
|
};
|
|
268
|
-
protoOf(deserialize$slambda).
|
|
269
|
-
var suspendResult = this.
|
|
268
|
+
protoOf(deserialize$slambda).t8 = function () {
|
|
269
|
+
var suspendResult = this.n8_1;
|
|
270
270
|
$sm: do
|
|
271
271
|
try {
|
|
272
|
-
var tmp = this.
|
|
272
|
+
var tmp = this.l8_1;
|
|
273
273
|
if (tmp === 0) {
|
|
274
|
-
this.
|
|
275
|
-
return !(this.
|
|
274
|
+
this.m8_1 = 1;
|
|
275
|
+
return !(this.u5m_1 == null) || this.t5m_1.r4e();
|
|
276
276
|
} else if (tmp === 1) {
|
|
277
|
-
throw this.
|
|
277
|
+
throw this.o8_1;
|
|
278
278
|
}
|
|
279
279
|
} catch ($p) {
|
|
280
280
|
var e = $p;
|
|
@@ -282,38 +282,38 @@ protoOf(deserialize$slambda).a9 = function () {
|
|
|
282
282
|
}
|
|
283
283
|
while (true);
|
|
284
284
|
};
|
|
285
|
-
protoOf(deserialize$slambda).
|
|
286
|
-
var i = new deserialize$slambda(this.
|
|
287
|
-
i.
|
|
285
|
+
protoOf(deserialize$slambda).v5l = function (it, completion) {
|
|
286
|
+
var i = new deserialize$slambda(this.t5m_1, completion);
|
|
287
|
+
i.u5m_1 = it;
|
|
288
288
|
return i;
|
|
289
289
|
};
|
|
290
290
|
function deserialize$slambda_0($body, resultContinuation) {
|
|
291
291
|
var i = new deserialize$slambda($body, resultContinuation);
|
|
292
292
|
var l = function (it, $completion) {
|
|
293
|
-
return i.
|
|
293
|
+
return i.v5m(it, $completion);
|
|
294
294
|
};
|
|
295
295
|
l.$arity = 1;
|
|
296
296
|
return l;
|
|
297
297
|
}
|
|
298
298
|
function $deserializeCOROUTINE$(_this__u8e3s4, body, typeInfo, charset, resultContinuation) {
|
|
299
299
|
CoroutineImpl.call(this, resultContinuation);
|
|
300
|
-
this.
|
|
301
|
-
this.
|
|
302
|
-
this.
|
|
303
|
-
this.
|
|
300
|
+
this.z5k_1 = _this__u8e3s4;
|
|
301
|
+
this.a5l_1 = body;
|
|
302
|
+
this.b5l_1 = typeInfo;
|
|
303
|
+
this.c5l_1 = charset;
|
|
304
304
|
}
|
|
305
|
-
protoOf($deserializeCOROUTINE$).
|
|
306
|
-
var suspendResult = this.
|
|
305
|
+
protoOf($deserializeCOROUTINE$).t8 = function () {
|
|
306
|
+
var suspendResult = this.n8_1;
|
|
307
307
|
$sm: do
|
|
308
308
|
try {
|
|
309
|
-
var tmp = this.
|
|
309
|
+
var tmp = this.l8_1;
|
|
310
310
|
switch (tmp) {
|
|
311
311
|
case 0:
|
|
312
|
-
this.
|
|
313
|
-
this.
|
|
314
|
-
var this_0 = asFlow(this.
|
|
315
|
-
var tmp_0 = new deserialize$$inlined$map$1(this_0, this.
|
|
316
|
-
suspendResult = firstOrNull(tmp_0, deserialize$slambda_0(this.
|
|
312
|
+
this.m8_1 = 2;
|
|
313
|
+
this.l8_1 = 1;
|
|
314
|
+
var this_0 = asFlow(this.z5k_1);
|
|
315
|
+
var tmp_0 = new deserialize$$inlined$map$1(this_0, this.c5l_1, this.b5l_1, this.a5l_1);
|
|
316
|
+
suspendResult = firstOrNull(tmp_0, deserialize$slambda_0(this.a5l_1, null), this);
|
|
317
317
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
318
318
|
return suspendResult;
|
|
319
319
|
}
|
|
@@ -325,29 +325,29 @@ protoOf($deserializeCOROUTINE$).a9 = function () {
|
|
|
325
325
|
if (!(result == null)) {
|
|
326
326
|
tmp_1 = result;
|
|
327
327
|
} else {
|
|
328
|
-
if (!this.
|
|
329
|
-
tmp_1 = this.
|
|
328
|
+
if (!this.a5l_1.r4e()) {
|
|
329
|
+
tmp_1 = this.a5l_1;
|
|
330
330
|
} else {
|
|
331
|
-
var tmp0_safe_receiver = this.
|
|
332
|
-
if ((tmp0_safe_receiver == null ? null : tmp0_safe_receiver.
|
|
331
|
+
var tmp0_safe_receiver = this.b5l_1.b4u_1;
|
|
332
|
+
if ((tmp0_safe_receiver == null ? null : tmp0_safe_receiver.gb()) === true) {
|
|
333
333
|
tmp_1 = NullBody_instance;
|
|
334
334
|
} else {
|
|
335
|
-
throw new ContentConvertException('No suitable converter found for ' + this.
|
|
335
|
+
throw new ContentConvertException('No suitable converter found for ' + this.b5l_1.toString());
|
|
336
336
|
}
|
|
337
337
|
}
|
|
338
338
|
}
|
|
339
339
|
|
|
340
340
|
return tmp_1;
|
|
341
341
|
case 2:
|
|
342
|
-
throw this.
|
|
342
|
+
throw this.o8_1;
|
|
343
343
|
}
|
|
344
344
|
} catch ($p) {
|
|
345
345
|
var e = $p;
|
|
346
|
-
if (this.
|
|
346
|
+
if (this.m8_1 === 2) {
|
|
347
347
|
throw e;
|
|
348
348
|
} else {
|
|
349
|
-
this.
|
|
350
|
-
this.
|
|
349
|
+
this.l8_1 = this.m8_1;
|
|
350
|
+
this.o8_1 = e;
|
|
351
351
|
}
|
|
352
352
|
}
|
|
353
353
|
while (true);
|