@icure/api 8.5.13 → 8.5.14
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.
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
* https://github.com/swagger-api/swagger-codegen.git
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
+
import { Address } from './Address';
|
|
12
13
|
import { CodeStub } from './CodeStub';
|
|
13
14
|
import { Content } from './Content';
|
|
14
15
|
import { Duration } from './Duration';
|
|
@@ -73,4 +74,5 @@ export declare class Medication {
|
|
|
73
74
|
suspension?: Array<Suspension>;
|
|
74
75
|
prescriptionRID?: string;
|
|
75
76
|
status?: number;
|
|
77
|
+
stockLocation?: Address;
|
|
76
78
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Medication.js","sourceRoot":"","sources":["../../../icc-api/model/Medication.ts"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"Medication.js","sourceRoot":"","sources":["../../../icc-api/model/Medication.ts"],"names":[],"mappings":";;;AAsBA;;GAEG;AACH,MAAa,UAAU;IACrB,YAAY,IAAgB;QAC1B,MAAM,CAAC,MAAM,CAAC,IAAkB,EAAE,IAAI,CAAC,CAAA;IACzC,CAAC;CAiDF;AApDD,gCAoDC","sourcesContent":["/**\n * iCure Data Stack API Documentation\n * The iCure Data Stack Application API is the native interface to iCure. This version is obsolete, please use v2.\n *\n * OpenAPI spec version: v1\n *\n *\n * NOTE: This class is auto generated by the swagger code generator program.\n * https://github.com/swagger-api/swagger-codegen.git\n * Do not edit the class manually.\n */\nimport { Address } from './Address'\nimport { CodeStub } from './CodeStub'\nimport { Content } from './Content'\nimport { Duration } from './Duration'\nimport { Medicinalproduct } from './Medicinalproduct'\nimport { ParagraphAgreement } from './ParagraphAgreement'\nimport { RegimenItem } from './RegimenItem'\nimport { Renewal } from './Renewal'\nimport { Substanceproduct } from './Substanceproduct'\nimport { Suspension } from './Suspension'\n\n/**\n * The details of prescribed or suggested medication\n */\nexport class Medication {\n constructor(json: JSON | any) {\n Object.assign(this as Medication, json)\n }\n\n compoundPrescription?: string\n substanceProduct?: Substanceproduct\n medicinalProduct?: Medicinalproduct\n numberOfPackages?: number\n batch?: string\n /**\n * The expiration date of the medication. Format: yyyyMMdd\n */\n expirationDate?: number\n instructionForPatient?: string\n instructionForReimbursement?: string\n commentForDelivery?: string\n drugRoute?: string\n temporality?: string\n frequency?: CodeStub\n reimbursementReason?: CodeStub\n substitutionAllowed?: boolean\n beginMoment?: number\n endMoment?: number\n deliveryMoment?: number\n endExecutionMoment?: number\n duration?: Duration\n renewal?: Renewal\n knownUsage?: boolean\n regimen?: Array<RegimenItem>\n posology?: string\n options?: { [key: string]: Content }\n agreements?: { [key: string]: ParagraphAgreement }\n medicationSchemeIdOnSafe?: string\n medicationSchemeSafeVersion?: number\n medicationSchemeTimeStampOnSafe?: number\n medicationSchemeDocumentId?: string\n safeIdName?: string\n idOnSafes?: string\n timestampOnSafe?: number\n changeValidated?: boolean\n newSafeMedication?: boolean\n medicationUse?: string\n beginCondition?: string\n endCondition?: string\n origin?: string\n medicationChanged?: boolean\n posologyChanged?: boolean\n suspension?: Array<Suspension>\n prescriptionRID?: string\n status?: number\n stockLocation?: Address\n}\n"]}
|