@twin.org/standards-unece 0.0.3-next.38 → 0.0.3-next.39

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.
@@ -0,0 +1,85 @@
1
+ // Copyright 2026 IOTA Stiftung.
2
+ // SPDX-License-Identifier: Apache-2.0.
3
+ import { GeneralError, Guards, I18n, Is, StringHelper } from "@twin.org/core";
4
+ /**
5
+ * A class for handling Code Lists.
6
+ * @see https://vocabulary.uncefact.org/code-lists
7
+ */
8
+ export class UnCodeLists {
9
+ /**
10
+ * The class name.
11
+ * @internal
12
+ */
13
+ static CLASS_NAME = "UnCodeLists";
14
+ /**
15
+ * Static cache for code list translations per locale.
16
+ * Key format: `${locale}:${camelCaseCodeListName}`
17
+ * @internal
18
+ */
19
+ static _cache = {};
20
+ /**
21
+ * Get all the translations for a specific list type.
22
+ * @param codeList The code list to get the translations for.
23
+ * @param locale The locale to get the translations for. If not provided, the default locale will be used. Falls back to 'en' if the locale doesn't exist.
24
+ * @returns The translations for the code list.
25
+ */
26
+ static async getDescriptions(codeList, locale) {
27
+ Guards.stringValue(UnCodeLists.CLASS_NAME, "codeList", codeList);
28
+ const parts = codeList.split(":");
29
+ if (parts.length !== 2 || parts[0] !== "unece") {
30
+ throw new GeneralError(UnCodeLists.CLASS_NAME, "invalidCodeList", { codeList });
31
+ }
32
+ const finalLocale = locale ?? I18n.getLocale();
33
+ const camelCaseCodeList = StringHelper.camelCase(parts[1]);
34
+ const cacheKey = `${finalLocale}:${camelCaseCodeList}`;
35
+ // Check if this code list is already cached
36
+ if (cacheKey in UnCodeLists._cache) {
37
+ return UnCodeLists._cache[cacheKey];
38
+ }
39
+ let dictionary = I18n.getDictionary(finalLocale);
40
+ let actualLocale = finalLocale;
41
+ const codeListPrefix = `codeLists.${camelCaseCodeList}.`;
42
+ // If the requested locale is empty or doesn't have translations for this code list, fall back to 'en'
43
+ let hasTranslations = false;
44
+ for (const key in dictionary) {
45
+ if (key.startsWith(codeListPrefix)) {
46
+ hasTranslations = true;
47
+ break;
48
+ }
49
+ }
50
+ if (!hasTranslations && finalLocale !== "en") {
51
+ dictionary = I18n.getDictionary("en");
52
+ actualLocale = "en";
53
+ }
54
+ const translations = {};
55
+ for (const key in dictionary) {
56
+ if (key.startsWith(codeListPrefix)) {
57
+ const codeKey = key.slice(codeListPrefix.length);
58
+ translations[codeKey] = dictionary[key];
59
+ }
60
+ }
61
+ // Cache under the actual locale used (accounting for fallback)
62
+ const actualCacheKey = `${actualLocale}:${camelCaseCodeList}`;
63
+ UnCodeLists._cache[actualCacheKey] = translations;
64
+ // Also cache under requested locale if it differs from actual locale (for faster fallback next time)
65
+ if (actualLocale !== finalLocale) {
66
+ UnCodeLists._cache[cacheKey] = translations;
67
+ }
68
+ return translations;
69
+ }
70
+ /**
71
+ * Get a translation for a specific list type.
72
+ * @param codeList The code list to get the translations for.
73
+ * @param key The key to get the translation for.
74
+ * @param locale The locale to get the translations for. If not provided, the default locale will be used.
75
+ * @returns The translation for the specified key in the code list.
76
+ */
77
+ static async getDescription(codeList, key, locale) {
78
+ const descriptions = await UnCodeLists.getDescriptions(codeList, locale);
79
+ if (Is.object(descriptions) && Is.string(descriptions[key])) {
80
+ return descriptions[key];
81
+ }
82
+ return undefined;
83
+ }
84
+ }
85
+ //# sourceMappingURL=unCodeLists.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"unCodeLists.js","sourceRoot":"","sources":["../../../src/helpers/unCodeLists.ts"],"names":[],"mappings":"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","sourcesContent":["// Copyright 2026 IOTA Stiftung.\n// SPDX-License-Identifier: Apache-2.0.\nimport { GeneralError, Guards, I18n, Is, StringHelper } from \"@twin.org/core\";\nimport { nameof } from \"@twin.org/nameof\";\nimport type { UneceCodeLists } from \"../models/uneceCodeLists.js\";\n\n/**\n * A class for handling Code Lists.\n * @see https://vocabulary.uncefact.org/code-lists\n */\nexport class UnCodeLists {\n\t/**\n\t * The class name.\n\t * @internal\n\t */\n\tpublic static readonly CLASS_NAME = nameof<UnCodeLists>();\n\n\t/**\n\t * Static cache for code list translations per locale.\n\t * Key format: `${locale}:${camelCaseCodeListName}`\n\t * @internal\n\t */\n\tprivate static readonly _cache: { [key: string]: { [key: string]: string } } = {};\n\n\t/**\n\t * Get all the translations for a specific list type.\n\t * @param codeList The code list to get the translations for.\n\t * @param locale The locale to get the translations for. If not provided, the default locale will be used. Falls back to 'en' if the locale doesn't exist.\n\t * @returns The translations for the code list.\n\t */\n\tpublic static async getDescriptions(\n\t\tcodeList: UneceCodeLists,\n\t\tlocale?: string\n\t): Promise<{\n\t\t[key: string]: string;\n\t}> {\n\t\tGuards.stringValue(UnCodeLists.CLASS_NAME, nameof(codeList), codeList);\n\n\t\tconst parts = codeList.split(\":\");\n\t\tif (parts.length !== 2 || parts[0] !== \"unece\") {\n\t\t\tthrow new GeneralError(UnCodeLists.CLASS_NAME, \"invalidCodeList\", { codeList });\n\t\t}\n\n\t\tconst finalLocale = locale ?? I18n.getLocale();\n\t\tconst camelCaseCodeList = StringHelper.camelCase(parts[1]);\n\t\tconst cacheKey = `${finalLocale}:${camelCaseCodeList}`;\n\n\t\t// Check if this code list is already cached\n\t\tif (cacheKey in UnCodeLists._cache) {\n\t\t\treturn UnCodeLists._cache[cacheKey];\n\t\t}\n\n\t\tlet dictionary = I18n.getDictionary(finalLocale);\n\t\tlet actualLocale = finalLocale;\n\t\tconst codeListPrefix = `codeLists.${camelCaseCodeList}.`;\n\n\t\t// If the requested locale is empty or doesn't have translations for this code list, fall back to 'en'\n\t\tlet hasTranslations = false;\n\t\tfor (const key in dictionary) {\n\t\t\tif (key.startsWith(codeListPrefix)) {\n\t\t\t\thasTranslations = true;\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\n\t\tif (!hasTranslations && finalLocale !== \"en\") {\n\t\t\tdictionary = I18n.getDictionary(\"en\");\n\t\t\tactualLocale = \"en\";\n\t\t}\n\n\t\tconst translations: { [key: string]: string } = {};\n\t\tfor (const key in dictionary) {\n\t\t\tif (key.startsWith(codeListPrefix)) {\n\t\t\t\tconst codeKey = key.slice(codeListPrefix.length);\n\t\t\t\ttranslations[codeKey] = dictionary[key];\n\t\t\t}\n\t\t}\n\n\t\t// Cache under the actual locale used (accounting for fallback)\n\t\tconst actualCacheKey = `${actualLocale}:${camelCaseCodeList}`;\n\t\tUnCodeLists._cache[actualCacheKey] = translations;\n\n\t\t// Also cache under requested locale if it differs from actual locale (for faster fallback next time)\n\t\tif (actualLocale !== finalLocale) {\n\t\t\tUnCodeLists._cache[cacheKey] = translations;\n\t\t}\n\n\t\treturn translations;\n\t}\n\n\t/**\n\t * Get a translation for a specific list type.\n\t * @param codeList The code list to get the translations for.\n\t * @param key The key to get the translation for.\n\t * @param locale The locale to get the translations for. If not provided, the default locale will be used.\n\t * @returns The translation for the specified key in the code list.\n\t */\n\tpublic static async getDescription(\n\t\tcodeList: UneceCodeLists,\n\t\tkey: string,\n\t\tlocale?: string\n\t): Promise<string | undefined> {\n\t\tconst descriptions = await UnCodeLists.getDescriptions(codeList, locale);\n\n\t\tif (Is.object(descriptions) && Is.string(descriptions[key])) {\n\t\t\treturn descriptions[key];\n\t\t}\n\n\t\treturn undefined;\n\t}\n}\n"]}
package/dist/es/index.js CHANGED
@@ -1,6 +1,7 @@
1
1
  // Copyright 2025 IOTA Stiftung.
2
2
  // SPDX-License-Identifier: Apache-2.0.
3
3
  export * from "./dataTypes/uneceDataTypes.js";
4
+ export * from "./helpers/unCodeLists.js";
4
5
  export * from "./helpers/unLocodes.js";
5
6
  export * from "./models/IUnLocodeCountry.js";
6
7
  export * from "./models/IUnLocodeCountrySubdivision.js";
@@ -653,6 +654,7 @@ export * from "./models/typeCodes/uneceTransportationWasteMaterialComponentTypeC
653
654
  export * from "./models/typeCodes/uneceTransportationWasteMaterialTypeCodeList.js";
654
655
  export * from "./models/typeCodes/uneceVoucherTypeCodeList.js";
655
656
  export * from "./models/typeCodes/uneceXHEParameterTypeCodeList.js";
657
+ export * from "./models/uneceCodeLists.js";
656
658
  export * from "./models/uneceContextType.js";
657
659
  export * from "./models/uneceContexts.js";
658
660
  export * from "./models/uneceTypes.js";
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"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","sourcesContent":["// Copyright 2025 IOTA Stiftung.\n// SPDX-License-Identifier: Apache-2.0.\nexport * from \"./dataTypes/uneceDataTypes.js\";\nexport * from \"./helpers/unLocodes.js\";\nexport * from \"./models/IUnLocodeCountry.js\";\nexport * from \"./models/IUnLocodeCountrySubdivision.js\";\nexport * from \"./models/IUnLocodeCountrySubdivisionRecord.js\";\nexport * from \"./models/IUnLocodeFunction.js\";\nexport * from \"./models/IUnLocodeLocation.js\";\nexport * from \"./models/IUnLocodeLocationRecord.js\";\nexport * from \"./models/IUnLocodeSubdivision.js\";\nexport * from \"./models/bsp/IUneceAcademicQualification.js\";\nexport * from \"./models/bsp/IUneceAccountingAccount.js\";\nexport * from \"./models/bsp/IUneceAccreditation.js\";\nexport * from \"./models/bsp/IUneceAcknowledgementDocument.js\";\nexport * from \"./models/bsp/IUneceAdvancePayment.js\";\nexport * from \"./models/bsp/IUneceAgriculturalApplication.js\";\nexport * from \"./models/bsp/IUneceAgriculturalCertificate.js\";\nexport * from \"./models/bsp/IUneceAgriculturalCharacteristic.js\";\nexport * from \"./models/bsp/IUneceAgriculturalProcess.js\";\nexport * from \"./models/bsp/IUneceAgriculturalZoneArea.js\";\nexport * from \"./models/bsp/IUneceAirFlowUnitMeasureType.js\";\nexport * from \"./models/bsp/IUneceAllergy.js\";\nexport * from \"./models/bsp/IUneceAmountType.js\";\nexport * from \"./models/bsp/IUneceAnimalBatch.js\";\nexport * from \"./models/bsp/IUneceAnimalCertificate.js\";\nexport * from \"./models/bsp/IUneceAnimalCertification.js\";\nexport * from \"./models/bsp/IUneceAnimalHoldingEvent.js\";\nexport * from \"./models/bsp/IUneceAnimalIdentity.js\";\nexport * from \"./models/bsp/IUneceAppliedAllowanceCharge.js\";\nexport * from \"./models/bsp/IUneceAppliedChemicalTreatment.js\";\nexport * from \"./models/bsp/IUneceAppliedTax.js\";\nexport * from \"./models/bsp/IUneceArea.js\";\nexport * from \"./models/bsp/IUneceAssertion.js\";\nexport * from \"./models/bsp/IUneceAssessment.js\";\nexport * from \"./models/bsp/IUneceAssociatedTransportEquipment.js\";\nexport * from \"./models/bsp/IUneceAttachedTransportEquipment.js\";\nexport * from \"./models/bsp/IUneceAuthentication.js\";\nexport * from \"./models/bsp/IUneceAuthoritativeSignatoryPerson.js\";\nexport * from \"./models/bsp/IUneceAvailablePeriod.js\";\nexport * from \"./models/bsp/IUneceBasicWorkItem.js\";\nexport * from \"./models/bsp/IUneceBinaryFile.js\";\nexport * from \"./models/bsp/IUneceBirthAddress.js\";\nexport * from \"./models/bsp/IUneceBooking.js\";\nexport * from \"./models/bsp/IUneceBotanicalCrop.js\";\nexport * from \"./models/bsp/IUneceBranchFinancialInstitution.js\";\nexport * from \"./models/bsp/IUneceBreakdownStatement.js\";\nexport * from \"./models/bsp/IUneceCalculatedPrice.js\";\nexport * from \"./models/bsp/IUneceCalibratedMeasurement.js\";\nexport * from \"./models/bsp/IUneceCancellationStatus.js\";\nexport * from \"./models/bsp/IUneceCargo.js\";\nexport * from \"./models/bsp/IUneceCargoInsurance.js\";\nexport * from \"./models/bsp/IUneceCarriedEquipment.js\";\nexport * from \"./models/bsp/IUneceCash.js\";\nexport * from \"./models/bsp/IUneceChemical.js\";\nexport * from \"./models/bsp/IUneceCheque.js\";\nexport * from \"./models/bsp/IUneceCircle.js\";\nexport * from \"./models/bsp/IUneceClassification.js\";\nexport * from \"./models/bsp/IUneceClause.js\";\nexport * from \"./models/bsp/IUneceColour.js\";\nexport * from \"./models/bsp/IUneceCommunication.js\";\nexport * from \"./models/bsp/IUneceCommunicationEvent.js\";\nexport * from \"./models/bsp/IUneceComplexDescription.js\";\nexport * from \"./models/bsp/IUneceConformanceCertificate.js\";\nexport * from \"./models/bsp/IUneceConsignment.js\";\nexport * from \"./models/bsp/IUneceConsignmentItem.js\";\nexport * from \"./models/bsp/IUneceContactPerson.js\";\nexport * from \"./models/bsp/IUneceContract.js\";\nexport * from \"./models/bsp/IUneceControlSettingParameter.js\";\nexport * from \"./models/bsp/IUneceConvoy.js\";\nexport * from \"./models/bsp/IUneceCooperatingOrganization.js\";\nexport * from \"./models/bsp/IUneceCoordinateReferenceSystem.js\";\nexport * from \"./models/bsp/IUneceCoordinateSourceSystem.js\";\nexport * from \"./models/bsp/IUneceCorrectiveAction.js\";\nexport * from \"./models/bsp/IUneceCorrectiveEvent.js\";\nexport * from \"./models/bsp/IUneceCountry.js\";\nexport * from \"./models/bsp/IUneceCountrySubDivision.js\";\nexport * from \"./models/bsp/IUneceCreditorFinancialAccount.js\";\nexport * from \"./models/bsp/IUneceCreditorFinancialInstitution.js\";\nexport * from \"./models/bsp/IUneceCropMixtureConstituent.js\";\nexport * from \"./models/bsp/IUneceCropProduceBatch.js\";\nexport * from \"./models/bsp/IUneceCropProtectionTreatment.js\";\nexport * from \"./models/bsp/IUneceCurrencyExchange.js\";\nexport * from \"./models/bsp/IUneceCustomerClass.js\";\nexport * from \"./models/bsp/IUneceCustomsValuation.js\";\nexport * from \"./models/bsp/IUneceDangerousGoods.js\";\nexport * from \"./models/bsp/IUneceDebtorFinancialAccount.js\";\nexport * from \"./models/bsp/IUneceDebtorFinancialInstitution.js\";\nexport * from \"./models/bsp/IUneceDelimitedPeriod.js\";\nexport * from \"./models/bsp/IUneceDeliveryAdjustment.js\";\nexport * from \"./models/bsp/IUneceDeliveryInstructions.js\";\nexport * from \"./models/bsp/IUneceDeliverySchedule.js\";\nexport * from \"./models/bsp/IUneceDeliveryTerms.js\";\nexport * from \"./models/bsp/IUneceDigitalMethod.js\";\nexport * from \"./models/bsp/IUneceDirectPosition.js\";\nexport * from \"./models/bsp/IUneceDisability.js\";\nexport * from \"./models/bsp/IUneceDisposalInstructions.js\";\nexport * from \"./models/bsp/IUneceDocument.js\";\nexport * from \"./models/bsp/IUneceDocumentCharacteristic.js\";\nexport * from \"./models/bsp/IUneceDocumentContextParameter.js\";\nexport * from \"./models/bsp/IUneceDocumentHandlingInstructions.js\";\nexport * from \"./models/bsp/IUneceDocumentLineDocument.js\";\nexport * from \"./models/bsp/IUneceDocumentStatus.js\";\nexport * from \"./models/bsp/IUneceDurationUnitMeasureType.js\";\nexport * from \"./models/bsp/IUneceEmission.js\";\nexport * from \"./models/bsp/IUneceEmployerIdentity.js\";\nexport * from \"./models/bsp/IUneceEnvelope.js\";\nexport * from \"./models/bsp/IUneceEquipment.js\";\nexport * from \"./models/bsp/IUneceError.js\";\nexport * from \"./models/bsp/IUneceEventElement.js\";\nexport * from \"./models/bsp/IUneceExchangedDeclaration.js\";\nexport * from \"./models/bsp/IUneceExchangedDocument.js\";\nexport * from \"./models/bsp/IUneceExchangedDocumentContext.js\";\nexport * from \"./models/bsp/IUneceExperienceEvent.js\";\nexport * from \"./models/bsp/IUneceExperienceFacility.js\";\nexport * from \"./models/bsp/IUneceExperienceItem.js\";\nexport * from \"./models/bsp/IUneceExperienceProduct.js\";\nexport * from \"./models/bsp/IUneceExperienceProgramAction.js\";\nexport * from \"./models/bsp/IUneceFieldCrop.js\";\nexport * from \"./models/bsp/IUneceFileSizeUnitMeasureType.js\";\nexport * from \"./models/bsp/IUneceFinancialAdjustment.js\";\nexport * from \"./models/bsp/IUneceFinancialCard.js\";\nexport * from \"./models/bsp/IUneceFinancialIdentity.js\";\nexport * from \"./models/bsp/IUneceFinancialInstitutionAddress.js\";\nexport * from \"./models/bsp/IUneceFinancingFinancialAccount.js\";\nexport * from \"./models/bsp/IUneceFinancingRequestDocument.js\";\nexport * from \"./models/bsp/IUneceFinancingRequestResultDocument.js\";\nexport * from \"./models/bsp/IUneceFinancingStatus.js\";\nexport * from \"./models/bsp/IUneceFinancingSummaryDocument.js\";\nexport * from \"./models/bsp/IUneceFoodChoice.js\";\nexport * from \"./models/bsp/IUneceForecastTerms.js\";\nexport * from \"./models/bsp/IUneceFuel.js\";\nexport * from \"./models/bsp/IUneceGeographicalArea.js\";\nexport * from \"./models/bsp/IUneceGeographicalCoordinate.js\";\nexport * from \"./models/bsp/IUneceGeographicalFeature.js\";\nexport * from \"./models/bsp/IUneceGeographicalGrid.js\";\nexport * from \"./models/bsp/IUneceGeographicalLine.js\";\nexport * from \"./models/bsp/IUneceGeographicalMultiCurve.js\";\nexport * from \"./models/bsp/IUneceGeographicalMultiPoint.js\";\nexport * from \"./models/bsp/IUneceGeographicalMultiSurface.js\";\nexport * from \"./models/bsp/IUneceGeographicalObjectCharacteristic.js\";\nexport * from \"./models/bsp/IUneceGeographicalPoint.js\";\nexport * from \"./models/bsp/IUneceGeographicalSurface.js\";\nexport * from \"./models/bsp/IUneceGeopoliticalRegion.js\";\nexport * from \"./models/bsp/IUneceGoodsCharacteristic.js\";\nexport * from \"./models/bsp/IUneceGovernmentRegistration.js\";\nexport * from \"./models/bsp/IUneceGroupedWorkItem.js\";\nexport * from \"./models/bsp/IUneceGuarantee.js\";\nexport * from \"./models/bsp/IUneceGuestArrival.js\";\nexport * from \"./models/bsp/IUneceGuestHealthIndication.js\";\nexport * from \"./models/bsp/IUneceGuestPerson.js\";\nexport * from \"./models/bsp/IUneceHandlingInstructions.js\";\nexport * from \"./models/bsp/IUneceHaulageInstructions.js\";\nexport * from \"./models/bsp/IUneceHazardousMaterial.js\";\nexport * from \"./models/bsp/IUneceHeaderBalanceOut.js\";\nexport * from \"./models/bsp/IUneceHeaderTradeAgreement.js\";\nexport * from \"./models/bsp/IUneceHeaderTradeDelivery.js\";\nexport * from \"./models/bsp/IUneceHeaderTradeSettlement.js\";\nexport * from \"./models/bsp/IUneceIOTDevice.js\";\nexport * from \"./models/bsp/IUneceIdentifiedFault.js\";\nexport * from \"./models/bsp/IUneceIllness.js\";\nexport * from \"./models/bsp/IUneceIndividualTTAnimal.js\";\nexport * from \"./models/bsp/IUneceInformationSource.js\";\nexport * from \"./models/bsp/IUneceIngredientRangeMeasurement.js\";\nexport * from \"./models/bsp/IUneceInspectionEvent.js\";\nexport * from \"./models/bsp/IUneceInspectionInstructions.js\";\nexport * from \"./models/bsp/IUneceInspectionNote.js\";\nexport * from \"./models/bsp/IUneceInspectionPerson.js\";\nexport * from \"./models/bsp/IUneceInspectionReference.js\";\nexport * from \"./models/bsp/IUneceInspectionResult.js\";\nexport * from \"./models/bsp/IUneceInspectionResultCharacteristic.js\";\nexport * from \"./models/bsp/IUneceInspectionStatus.js\";\nexport * from \"./models/bsp/IUneceInstalmentPayment.js\";\nexport * from \"./models/bsp/IUneceInstalmentPlan.js\";\nexport * from \"./models/bsp/IUneceInstructedTemperature.js\";\nexport * from \"./models/bsp/IUneceIssue.js\";\nexport * from \"./models/bsp/IUneceKeyword.js\";\nexport * from \"./models/bsp/IUneceLaboratoryObservationAnalysisMethod.js\";\nexport * from \"./models/bsp/IUneceLaboratoryObservationContact.js\";\nexport * from \"./models/bsp/IUneceLaboratoryObservationInstructions.js\";\nexport * from \"./models/bsp/IUneceLaboratoryObservationNote.js\";\nexport * from \"./models/bsp/IUneceLaboratoryObservationParty.js\";\nexport * from \"./models/bsp/IUneceLaboratoryObservationReference.js\";\nexport * from \"./models/bsp/IUneceLanguageProficiency.js\";\nexport * from \"./models/bsp/IUneceLegalOrganization.js\";\nexport * from \"./models/bsp/IUneceLegalRegistration.js\";\nexport * from \"./models/bsp/IUneceLicence.js\";\nexport * from \"./models/bsp/IUneceLineTradeAgreement.js\";\nexport * from \"./models/bsp/IUneceLineTradeDelivery.js\";\nexport * from \"./models/bsp/IUneceLineTradeSettlement.js\";\nexport * from \"./models/bsp/IUneceLineTradeTransaction.js\";\nexport * from \"./models/bsp/IUneceLinearRing.js\";\nexport * from \"./models/bsp/IUneceLinearUnitMeasureType.js\";\nexport * from \"./models/bsp/IUneceLocation.js\";\nexport * from \"./models/bsp/IUneceLocationParty.js\";\nexport * from \"./models/bsp/IUneceLogisticsLabel.js\";\nexport * from \"./models/bsp/IUneceLogisticsLocation.js\";\nexport * from \"./models/bsp/IUneceLogisticsPackaging.js\";\nexport * from \"./models/bsp/IUneceLogisticsStatus.js\";\nexport * from \"./models/bsp/IUneceLogisticsTransportEquipment.js\";\nexport * from \"./models/bsp/IUneceLogisticsTransportMeans.js\";\nexport * from \"./models/bsp/IUneceMDHHealthIndication.js\";\nexport * from \"./models/bsp/IUneceMachine.js\";\nexport * from \"./models/bsp/IUneceMarketplace.js\";\nexport * from \"./models/bsp/IUneceMarking.js\";\nexport * from \"./models/bsp/IUneceMeasureCode.js\";\nexport * from \"./models/bsp/IUneceMeasureType.js\";\nexport * from \"./models/bsp/IUneceMeasurement.js\";\nexport * from \"./models/bsp/IUneceMembership.js\";\nexport * from \"./models/bsp/IUneceMetricCharacteristic.js\";\nexport * from \"./models/bsp/IUneceNegotiationContext.js\";\nexport * from \"./models/bsp/IUneceNegotiationExchange.js\";\nexport * from \"./models/bsp/IUneceNote.js\";\nexport * from \"./models/bsp/IUneceObject.js\";\nexport * from \"./models/bsp/IUneceObservation.js\";\nexport * from \"./models/bsp/IUneceObservationObjectiveParameter.js\";\nexport * from \"./models/bsp/IUneceObservationResult.js\";\nexport * from \"./models/bsp/IUneceObservationResultCharacteristic.js\";\nexport * from \"./models/bsp/IUneceOperationalParameter.js\";\nexport * from \"./models/bsp/IUneceOrganizationCharacteristic.js\";\nexport * from \"./models/bsp/IUneceOrganizationalCertificate.js\";\nexport * from \"./models/bsp/IUneceOrganizationalCertification.js\";\nexport * from \"./models/bsp/IUnecePackage.js\";\nexport * from \"./models/bsp/IUnecePackagingInstructions.js\";\nexport * from \"./models/bsp/IUnecePairing.js\";\nexport * from \"./models/bsp/IUnecePayload.js\";\nexport * from \"./models/bsp/IUnecePayloadInstance.js\";\nexport * from \"./models/bsp/IUnecePaymentBalanceOut.js\";\nexport * from \"./models/bsp/IUnecePaymentDiscountTerms.js\";\nexport * from \"./models/bsp/IUnecePaymentFinancialAccount.js\";\nexport * from \"./models/bsp/IUnecePaymentFinancialInstitution.js\";\nexport * from \"./models/bsp/IUnecePaymentMeans.js\";\nexport * from \"./models/bsp/IUnecePaymentPenaltyTerms.js\";\nexport * from \"./models/bsp/IUnecePaymentTerms.js\";\nexport * from \"./models/bsp/IUnecePaymentTradeSettlement.js\";\nexport * from \"./models/bsp/IUnecePersonIdentity.js\";\nexport * from \"./models/bsp/IUnecePersonalEffects.js\";\nexport * from \"./models/bsp/IUnecePetAnimal.js\";\nexport * from \"./models/bsp/IUnecePicture.js\";\nexport * from \"./models/bsp/IUnecePlot.js\";\nexport * from \"./models/bsp/IUnecePolicy.js\";\nexport * from \"./models/bsp/IUnecePolygon.js\";\nexport * from \"./models/bsp/IUnecePortMovementEvent.js\";\nexport * from \"./models/bsp/IUnecePreference.js\";\nexport * from \"./models/bsp/IUnecePreventiveAction.js\";\nexport * from \"./models/bsp/IUnecePrint.js\";\nexport * from \"./models/bsp/IUneceProcessCertificate.js\";\nexport * from \"./models/bsp/IUneceProcessCertification.js\";\nexport * from \"./models/bsp/IUneceProcessCharacteristic.js\";\nexport * from \"./models/bsp/IUneceProcessWorkItem.js\";\nexport * from \"./models/bsp/IUneceProduce.js\";\nexport * from \"./models/bsp/IUneceProduct.js\";\nexport * from \"./models/bsp/IUneceProductBatch.js\";\nexport * from \"./models/bsp/IUneceProductBatchCertificate.js\";\nexport * from \"./models/bsp/IUneceProductBatchCertification.js\";\nexport * from \"./models/bsp/IUneceProductBatchCharacteristic.js\";\nexport * from \"./models/bsp/IUneceProductCertificate.js\";\nexport * from \"./models/bsp/IUneceProductCharacteristic.js\";\nexport * from \"./models/bsp/IUneceProductCharacteristicCondition.js\";\nexport * from \"./models/bsp/IUneceProductFinishingTreatment.js\";\nexport * from \"./models/bsp/IUneceProductGroup.js\";\nexport * from \"./models/bsp/IUneceProductHandlingProcess.js\";\nexport * from \"./models/bsp/IUneceProductInstance.js\";\nexport * from \"./models/bsp/IUneceProductLabel.js\";\nexport * from \"./models/bsp/IUneceProduction.js\";\nexport * from \"./models/bsp/IUneceProductionCycle.js\";\nexport * from \"./models/bsp/IUneceProductionDevice.js\";\nexport * from \"./models/bsp/IUneceProductionFacility.js\";\nexport * from \"./models/bsp/IUneceProductionProcess.js\";\nexport * from \"./models/bsp/IUneceProductionUnit.js\";\nexport * from \"./models/bsp/IUneceProductionWasteMaterial.js\";\nexport * from \"./models/bsp/IUneceProductionWasteMaterialComponent.js\";\nexport * from \"./models/bsp/IUneceProductionWasteRecoveryDisposalProcess.js\";\nexport * from \"./models/bsp/IUneceProject.js\";\nexport * from \"./models/bsp/IUneceProprietaryIdentity.js\";\nexport * from \"./models/bsp/IUneceProtectionMeans.js\";\nexport * from \"./models/bsp/IUneceQuantityAnalysis.js\";\nexport * from \"./models/bsp/IUneceQuantityCode.js\";\nexport * from \"./models/bsp/IUneceQuantityType.js\";\nexport * from \"./models/bsp/IUneceQuarantineInstructions.js\";\nexport * from \"./models/bsp/IUneceRadioactiveIsotope.js\";\nexport * from \"./models/bsp/IUneceRadioactiveMaterial.js\";\nexport * from \"./models/bsp/IUneceRadionuclide.js\";\nexport * from \"./models/bsp/IUneceRange.js\";\nexport * from \"./models/bsp/IUneceRecordedStatus.js\";\nexport * from \"./models/bsp/IUneceReferencePrice.js\";\nexport * from \"./models/bsp/IUneceRegisteredTax.js\";\nexport * from \"./models/bsp/IUneceRegulatedGoods.js\";\nexport * from \"./models/bsp/IUneceRegulatoryProcedure.js\";\nexport * from \"./models/bsp/IUneceRepresentativePerson.js\";\nexport * from \"./models/bsp/IUneceRequestingParty.js\";\nexport * from \"./models/bsp/IUneceRequirement.js\";\nexport * from \"./models/bsp/IUneceResponse.js\";\nexport * from \"./models/bsp/IUneceReturnableAssetInstructions.js\";\nexport * from \"./models/bsp/IUneceRiskAnalysisResult.js\";\nexport * from \"./models/bsp/IUneceSanitaryMeasure.js\";\nexport * from \"./models/bsp/IUneceSchedule.js\";\nexport * from \"./models/bsp/IUneceSeal.js\";\nexport * from \"./models/bsp/IUneceSection.js\";\nexport * from \"./models/bsp/IUneceSecurityTag.js\";\nexport * from \"./models/bsp/IUneceSegment.js\";\nexport * from \"./models/bsp/IUneceSensor.js\";\nexport * from \"./models/bsp/IUneceService.js\";\nexport * from \"./models/bsp/IUneceServiceCharge.js\";\nexport * from \"./models/bsp/IUneceShippingMarks.js\";\nexport * from \"./models/bsp/IUneceSource.js\";\nexport * from \"./models/bsp/IUneceSpatialDimension.js\";\nexport * from \"./models/bsp/IUneceSpecialQuery.js\";\nexport * from \"./models/bsp/IUneceSpeciesTTAnimal.js\";\nexport * from \"./models/bsp/IUneceSpecificationQuery.js\";\nexport * from \"./models/bsp/IUneceSpecifiedAction.js\";\nexport * from \"./models/bsp/IUneceSpecifiedCertificate.js\";\nexport * from \"./models/bsp/IUneceSpecifiedCertification.js\";\nexport * from \"./models/bsp/IUneceSpecifiedChemicalTreatment.js\";\nexport * from \"./models/bsp/IUneceSpecifiedCondition.js\";\nexport * from \"./models/bsp/IUneceSpecifiedDeclaration.js\";\nexport * from \"./models/bsp/IUneceSpecifiedFault.js\";\nexport * from \"./models/bsp/IUneceSpecifiedFeature.js\";\nexport * from \"./models/bsp/IUneceSpecifiedInspection.js\";\nexport * from \"./models/bsp/IUneceSpecifiedLocation.js\";\nexport * from \"./models/bsp/IUneceSpecifiedMaterial.js\";\nexport * from \"./models/bsp/IUneceSpecifiedMethod.js\";\nexport * from \"./models/bsp/IUneceSpecifiedNote.js\";\nexport * from \"./models/bsp/IUneceSpecifiedParameter.js\";\nexport * from \"./models/bsp/IUneceSpecifiedPeriod.js\";\nexport * from \"./models/bsp/IUneceSpecifiedQualification.js\";\nexport * from \"./models/bsp/IUneceSpecifiedRoute.js\";\nexport * from \"./models/bsp/IUneceSpecifiedTemperature.js\";\nexport * from \"./models/bsp/IUneceStandard.js\";\nexport * from \"./models/bsp/IUneceStoresItemInventory.js\";\nexport * from \"./models/bsp/IUneceStowaway.js\";\nexport * from \"./models/bsp/IUneceSubordinateLineTradeAgreement.js\";\nexport * from \"./models/bsp/IUneceSubordinateLineTradeDelivery.js\";\nexport * from \"./models/bsp/IUneceSubordinateLineTradeSettlement.js\";\nexport * from \"./models/bsp/IUneceSubordinateLocation.js\";\nexport * from \"./models/bsp/IUneceSubordinateSubordinateLocation.js\";\nexport * from \"./models/bsp/IUneceSubordinateTradeLineItem.js\";\nexport * from \"./models/bsp/IUneceSupplyChainEvent.js\";\nexport * from \"./models/bsp/IUneceSupplyChainInventory.js\";\nexport * from \"./models/bsp/IUneceSupplyChainPackaging.js\";\nexport * from \"./models/bsp/IUneceSupplyChainReference.js\";\nexport * from \"./models/bsp/IUneceSupplyChainTradeLineItem.js\";\nexport * from \"./models/bsp/IUneceSupplyChainTradeTransaction.js\";\nexport * from \"./models/bsp/IUneceSupplyPlan.js\";\nexport * from \"./models/bsp/IUneceSustainabilityCharacteristic.js\";\nexport * from \"./models/bsp/IUneceSustainabilityInspection.js\";\nexport * from \"./models/bsp/IUneceTTAggregationEvent.js\";\nexport * from \"./models/bsp/IUneceTTAnimal.js\";\nexport * from \"./models/bsp/IUneceTTExchangedDocument.js\";\nexport * from \"./models/bsp/IUneceTTLocation.js\";\nexport * from \"./models/bsp/IUneceTTObjectEvent.js\";\nexport * from \"./models/bsp/IUneceTTParty.js\";\nexport * from \"./models/bsp/IUneceTTTradeTransaction.js\";\nexport * from \"./models/bsp/IUneceTTTransactionEvent.js\";\nexport * from \"./models/bsp/IUneceTTTransformationEvent.js\";\nexport * from \"./models/bsp/IUneceTaxRegistration.js\";\nexport * from \"./models/bsp/IUneceTechnicalCharacteristic.js\";\nexport * from \"./models/bsp/IUneceTemperatureSettingInstructions.js\";\nexport * from \"./models/bsp/IUneceTemperatureUnitMeasureType.js\";\nexport * from \"./models/bsp/IUneceTestSpecificationReport.js\";\nexport * from \"./models/bsp/IUneceTolerance.js\";\nexport * from \"./models/bsp/IUneceTradeAddress.js\";\nexport * from \"./models/bsp/IUneceTradeAllowanceCharge.js\";\nexport * from \"./models/bsp/IUneceTradeContact.js\";\nexport * from \"./models/bsp/IUneceTradeLocation.js\";\nexport * from \"./models/bsp/IUneceTradeParty.js\";\nexport * from \"./models/bsp/IUneceTradePrice.js\";\nexport * from \"./models/bsp/IUneceTradeProduct.js\";\nexport * from \"./models/bsp/IUneceTradeProductCertification.js\";\nexport * from \"./models/bsp/IUneceTradeProductFeature.js\";\nexport * from \"./models/bsp/IUneceTradeSettlementHeaderMonetarySummation.js\";\nexport * from \"./models/bsp/IUneceTradeSettlementLineMonetarySummation.js\";\nexport * from \"./models/bsp/IUneceTradeSettlementMonetarySummation.js\";\nexport * from \"./models/bsp/IUneceTradeSettlementPayment.js\";\nexport * from \"./models/bsp/IUneceTradeSettlementPaymentMonetarySummation.js\";\nexport * from \"./models/bsp/IUneceTradeTax.js\";\nexport * from \"./models/bsp/IUneceTransportEvent.js\";\nexport * from \"./models/bsp/IUneceTransportInstructions.js\";\nexport * from \"./models/bsp/IUneceTransportMeans.js\";\nexport * from \"./models/bsp/IUneceTransportMovement.js\";\nexport * from \"./models/bsp/IUneceTransportPerson.js\";\nexport * from \"./models/bsp/IUneceTransportRoute.js\";\nexport * from \"./models/bsp/IUneceTransportServiceLocation.js\";\nexport * from \"./models/bsp/IUneceTransportSettingTemperature.js\";\nexport * from \"./models/bsp/IUneceTransportationHealth.js\";\nexport * from \"./models/bsp/IUneceTransportationWasteMaterial.js\";\nexport * from \"./models/bsp/IUneceTransportationWasteMaterialComponent.js\";\nexport * from \"./models/bsp/IUneceTransportationWasteRecoveryDisposalProcess.js\";\nexport * from \"./models/bsp/IUneceUnitMeasureType.js\";\nexport * from \"./models/bsp/IUneceUsageCondition.js\";\nexport * from \"./models/bsp/IUneceValidationStatus.js\";\nexport * from \"./models/bsp/IUneceVersion.js\";\nexport * from \"./models/bsp/IUneceVolumeUnitMeasureType.js\";\nexport * from \"./models/bsp/IUneceVoucher.js\";\nexport * from \"./models/bsp/IUneceWasteMaterialRecoveryDisposalProcess.js\";\nexport * from \"./models/bsp/IUneceWasteOriginProcess.js\";\nexport * from \"./models/bsp/IUneceWeightUnitMeasureType.js\";\nexport * from \"./models/bsp/IUneceWorkItemDimension.js\";\nexport * from \"./models/bsp/IUneceWorkflowObject.js\";\nexport * from \"./models/bsp/IUneceXHEContext.js\";\nexport * from \"./models/bsp/IUneceXHEDocument.js\";\nexport * from \"./models/bsp/IUneceXHEIdentity.js\";\nexport * from \"./models/bsp/IUneceXHEParameter.js\";\nexport * from \"./models/bsp/IUneceXHEParty.js\";\nexport * from \"./models/bsp/IUneceXHEReference.js\";\nexport * from \"./models/lists/uneceAccessRightsTypeCodeList.js\";\nexport * from \"./models/lists/uneceAccountingAccountBalanceReopeningTypeCodeList.js\";\nexport * from \"./models/lists/uneceAccountingAccountClassificationCodeList.js\";\nexport * from \"./models/lists/uneceAccountingAccountNatureTypeCodeList.js\";\nexport * from \"./models/lists/uneceAccountingAccountStatusCodeList.js\";\nexport * from \"./models/lists/uneceAccountingAccountTypeCodeList.js\";\nexport * from \"./models/lists/uneceAccountingAmountQualifierCodeList.js\";\nexport * from \"./models/lists/uneceAccountingAmountTypeCodeList.js\";\nexport * from \"./models/lists/uneceAccountingContactCodeList.js\";\nexport * from \"./models/lists/uneceAccountingDebitCreditStatusCodeList.js\";\nexport * from \"./models/lists/uneceAccountingDocumentCodeList.js\";\nexport * from \"./models/lists/uneceAccountingDocumentTypeCodeList.js\";\nexport * from \"./models/lists/uneceAccountingEntryCategoryCodeList.js\";\nexport * from \"./models/lists/uneceAccountingEntryLineCategoryCodeList.js\";\nexport * from \"./models/lists/uneceAccountingEntryLineSourceCodeList.js\";\nexport * from \"./models/lists/uneceAccountingEntryProcessingCodeList.js\";\nexport * from \"./models/lists/uneceAccountingJournalCategoryCodeList.js\";\nexport * from \"./models/lists/uneceAccountingJournalCodeList.js\";\nexport * from \"./models/lists/uneceAccountingPeriodFunctionCodeList.js\";\nexport * from \"./models/lists/uneceAccountingPerquisiteCodeList.js\";\nexport * from \"./models/lists/uneceAccountingVoucherMediumCodeList.js\";\nexport * from \"./models/lists/uneceAcknowledgementCodeList.js\";\nexport * from \"./models/lists/uneceAdditionalPostponementCodeList.js\";\nexport * from \"./models/lists/uneceAddressFormatTypeCodeList.js\";\nexport * from \"./models/lists/uneceAddressTypeCodeList.js\";\nexport * from \"./models/lists/uneceAdjustmentReasonCodeList.js\";\nexport * from \"./models/lists/uneceAirFlowUnitMeasureCode.js\";\nexport * from \"./models/lists/uneceAllowanceChargeIdCodeList.js\";\nexport * from \"./models/lists/uneceAllowanceChargeReasonCodeList.js\";\nexport * from \"./models/lists/uneceAlternateCurrencyAmountTypeCodeList.js\";\nexport * from \"./models/lists/uneceAmortizationMethodCodeList.js\";\nexport * from \"./models/lists/uneceAmountCurrency.js\";\nexport * from \"./models/lists/uneceAmountWeightTypeCodeList.js\";\nexport * from \"./models/lists/uneceAutomaticDataCaptureMethodCodeList.js\";\nexport * from \"./models/lists/uneceBillingDocumentCodeList.js\";\nexport * from \"./models/lists/uneceBinaryObjectCharacterSetCodeList.js\";\nexport * from \"./models/lists/uneceBinaryObjectEncodingCodeList.js\";\nexport * from \"./models/lists/uneceCargoCategoryCodeList.js\";\nexport * from \"./models/lists/uneceCargoCommodityCategoryCodeList.js\";\nexport * from \"./models/lists/uneceCargoOperationalCategoryCodeList.js\";\nexport * from \"./models/lists/uneceCargoTypeClassificationCodeList.js\";\nexport * from \"./models/lists/uneceCertificateTypeCodeList.js\";\nexport * from \"./models/lists/uneceChargePayingPartyRoleCodeList.js\";\nexport * from \"./models/lists/uneceCodeListResponsibleAgencyCodeList.js\";\nexport * from \"./models/lists/uneceCommitmentLevelCodeList.js\";\nexport * from \"./models/lists/uneceCommunicationChannelCodeList.js\";\nexport * from \"./models/lists/uneceContactTypeCodeList.js\";\nexport * from \"./models/lists/uneceCountryId.js\";\nexport * from \"./models/lists/uneceCurrencyCodeList.js\";\nexport * from \"./models/lists/uneceCustomsDutyRegimeTypeCodeList.js\";\nexport * from \"./models/lists/uneceCustomsProcedureGuaranteeCodeList.js\";\nexport * from \"./models/lists/uneceDangerousGoodsPackagingLevelCodeList.js\";\nexport * from \"./models/lists/uneceDangerousGoodsRegulationCodeList.js\";\nexport * from \"./models/lists/uneceDateTimePeriodFunctionCodeList.js\";\nexport * from \"./models/lists/uneceDeliveryTermsCodeList.js\";\nexport * from \"./models/lists/uneceDeliveryTermsFunctionCodeList.js\";\nexport * from \"./models/lists/uneceDimensionTypeCodeList.js\";\nexport * from \"./models/lists/uneceDocumentCodeList.js\";\nexport * from \"./models/lists/uneceDocumentStatusCodeList.js\";\nexport * from \"./models/lists/uneceDurationUnitMeasureCode.js\";\nexport * from \"./models/lists/uneceFileSizeUnitMeasureCode.js\";\nexport * from \"./models/lists/uneceFinancialAccountTypeCodeList.js\";\nexport * from \"./models/lists/uneceFinancialAdjustmentReasonCodeList.js\";\nexport * from \"./models/lists/uneceFinancialInstitutionRoleCodeList.js\";\nexport * from \"./models/lists/uneceFreightChargeTariffClassCodeList.js\";\nexport * from \"./models/lists/uneceFreightChargeTypeId.js\";\nexport * from \"./models/lists/uneceGoodsTypeCodeList.js\";\nexport * from \"./models/lists/uneceGoodsTypeExtensionCodeList.js\";\nexport * from \"./models/lists/uneceGovernmentActionCodeList.js\";\nexport * from \"./models/lists/uneceInvoiceDocumentCodeList.js\";\nexport * from \"./models/lists/uneceLanguageCodeList.js\";\nexport * from \"./models/lists/uneceLanguageId.js\";\nexport * from \"./models/lists/uneceLifetimeEndCostCodeList.js\";\nexport * from \"./models/lists/uneceLineStatusCodeList.js\";\nexport * from \"./models/lists/uneceLinearUnitMeasureCode.js\";\nexport * from \"./models/lists/uneceLocationFunctionCodeList.js\";\nexport * from \"./models/lists/uneceLogisticsChargeCalculationBasisCodeList.js\";\nexport * from \"./models/lists/uneceLogisticsStatusCodeList.js\";\nexport * from \"./models/lists/uneceMarkingInstructionCodeList.js\";\nexport * from \"./models/lists/uneceMeasuredAttributeCodeList.js\";\nexport * from \"./models/lists/uneceMessageFunctionCodeList.js\";\nexport * from \"./models/lists/uneceOrganizationFunctionTypeCodeList.js\";\nexport * from \"./models/lists/unecePackageTypeCodeList.js\";\nexport * from \"./models/lists/unecePackagingLevelCodeList.js\";\nexport * from \"./models/lists/unecePackagingMarkingCodeList.js\";\nexport * from \"./models/lists/unecePartyRoleCodeList.js\";\nexport * from \"./models/lists/unecePartyTypeCodeList.js\";\nexport * from \"./models/lists/unecePaymentGuaranteeMeansCodeList.js\";\nexport * from \"./models/lists/unecePaymentMeansChannelCodeList.js\";\nexport * from \"./models/lists/unecePaymentMeansCodeList.js\";\nexport * from \"./models/lists/unecePaymentMethodCodeList.js\";\nexport * from \"./models/lists/unecePaymentTermsEventTimeReferenceCodeList.js\";\nexport * from \"./models/lists/unecePaymentTermsId.js\";\nexport * from \"./models/lists/unecePaymentTermsTypeCodeList.js\";\nexport * from \"./models/lists/unecePriceTypeCodeList.js\";\nexport * from \"./models/lists/unecePriorityDescriptionCodeList.js\";\nexport * from \"./models/lists/uneceProcessTypeCodeList.js\";\nexport * from \"./models/lists/uneceQuotationDocumentCodeList.js\";\nexport * from \"./models/lists/uneceReferenceCodeList.js\";\nexport * from \"./models/lists/uneceRefundMethodCodeList.js\";\nexport * from \"./models/lists/uneceRemittanceDocumentCodeList.js\";\nexport * from \"./models/lists/uneceResponseTypeCodeList.js\";\nexport * from \"./models/lists/uneceResponsibleGovernmentAgencyCodeList.js\";\nexport * from \"./models/lists/uneceResponsibleGovernmentAgencyInvolvementCodeList.js\";\nexport * from \"./models/lists/uneceScenarioTypeCodeList.js\";\nexport * from \"./models/lists/uneceSchedulingDocumentCodeList.js\";\nexport * from \"./models/lists/uneceSealConditionCodeList.js\";\nexport * from \"./models/lists/uneceSealingPartyRoleCodeList.js\";\nexport * from \"./models/lists/uneceSoftwareUserTypeCodeList.js\";\nexport * from \"./models/lists/uneceStatusCodeList.js\";\nexport * from \"./models/lists/uneceSubjectCodeList.js\";\nexport * from \"./models/lists/uneceTaxCategoryCodeList.js\";\nexport * from \"./models/lists/uneceTaxExemptionReasonCodeList.js\";\nexport * from \"./models/lists/uneceTaxTypeCodeList.js\";\nexport * from \"./models/lists/uneceTemperatureTypeCodeList.js\";\nexport * from \"./models/lists/uneceTemperatureUnitMeasureCode.js\";\nexport * from \"./models/lists/uneceTimeReferenceCodeList.js\";\nexport * from \"./models/lists/uneceTransportContractMovementCodeList.js\";\nexport * from \"./models/lists/uneceTransportEquipmentCategoryCodeList.js\";\nexport * from \"./models/lists/uneceTransportEquipmentFullnessCodeList.js\";\nexport * from \"./models/lists/uneceTransportEquipmentHaulageArrangementsCodeList.js\";\nexport * from \"./models/lists/uneceTransportEquipmentLegalStatusCodeList.js\";\nexport * from \"./models/lists/uneceTransportEquipmentMovementStatusCodeList.js\";\nexport * from \"./models/lists/uneceTransportEquipmentOperationalStatusCodeList.js\";\nexport * from \"./models/lists/uneceTransportEquipmentSizeTypeCodeList.js\";\nexport * from \"./models/lists/uneceTransportEquipmentSupplierPartyRoleCodeList.js\";\nexport * from \"./models/lists/uneceTransportMeansDirectionCodeList.js\";\nexport * from \"./models/lists/uneceTransportMeansTypeCodeList.js\";\nexport * from \"./models/lists/uneceTransportModeCodeList.js\";\nexport * from \"./models/lists/uneceTransportMovementStageCodeList.js\";\nexport * from \"./models/lists/uneceTransportMovementTypeCodeList.js\";\nexport * from \"./models/lists/uneceTransportServiceCategoryCodeList.js\";\nexport * from \"./models/lists/uneceTransportServiceConditionCodeList.js\";\nexport * from \"./models/lists/uneceTransportServicePaymentArrangementCodeList.js\";\nexport * from \"./models/lists/uneceTransportServicePriorityCodeList.js\";\nexport * from \"./models/lists/uneceTransportServiceRequirementCodeList.js\";\nexport * from \"./models/lists/uneceUnitMeasureCode.js\";\nexport * from \"./models/lists/uneceValidationDocumentStatusCodeList.js\";\nexport * from \"./models/lists/uneceVolumeUnitMeasureCode.js\";\nexport * from \"./models/lists/uneceWeightUnitMeasureCode.js\";\nexport * from \"./models/lists/uneceWorkflowStatusCodeList.js\";\nexport * from \"./models/locode/unLocodeCountries.js\";\nexport * from \"./models/locode/unLocodeCountriesList.js\";\nexport * from \"./models/locode/unLocodeFunctions.js\";\nexport * from \"./models/locode/unLocodeFunctionsList.js\";\nexport * from \"./models/typeCodes/uneceAccreditationTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceAgriculturalCharacteristicTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceAgriculturalProcessTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceAllergyTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceAnimalHoldingEventTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceAssessmentTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceBasicWorkItemTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceCalibratedMeasurementTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceCarriedEquipmentTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceCashTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceChemicalTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceChequeTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceClassificationTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceColourTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceCommunicationEventTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceControlSettingParameterTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceCorrectiveActionTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceCountrySubDivisionTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceCropProduceBatchTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceCropProtectionTreatmentTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceCustomsValuationTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceDigitalMethodTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceDisabilityTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceDocumentCharacteristicTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceEmissionTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceEquipmentTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceFinancialCardTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceFoodChoiceTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceFuelTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceGeopoliticalRegionTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceGoodsCharacteristicTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceGovernmentRegistrationTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceGroupedWorkItemTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceGuestHealthIndicationTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceIOTDeviceTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceInspectionEventTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceIssueTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceLegalOrganizationTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceLegalRegistrationTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceLicenceTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceLocationPartyTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceLogisticsPackagingTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceMDHHealthIndicationTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceMachineTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceMeasurementTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceMetricCharacteristicTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceNegotiationContextTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceObjectTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceObservationObjectiveParameterTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceOperationalParameterTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceOrganizationCharacteristicTypeCodeList.js\";\nexport * from \"./models/typeCodes/unecePaymentFinancialAccountTypeCodeList.js\";\nexport * from \"./models/typeCodes/unecePaymentFinancialInstitutionTypeCodeList.js\";\nexport * from \"./models/typeCodes/unecePaymentTradeSettlementTypeCodeList.js\";\nexport * from \"./models/typeCodes/unecePersonalEffectsTypeCodeList.js\";\nexport * from \"./models/typeCodes/unecePreventiveActionTypeCodeList.js\";\nexport * from \"./models/typeCodes/unecePrintTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceProcessWorkItemTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceProduceTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceProductBatchCharacteristicTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceProductBatchTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceProductCharacteristicConditionTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceProductCharacteristicTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceProductFinishingTreatmentTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceProductionDeviceTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceProductionUnitTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceProductionWasteMaterialComponentTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceProductionWasteMaterialTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceProjectTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceQuantityAnalysisTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceRadioactiveMaterialTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceRangeTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceRequirementTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceSanitaryMeasureTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceScheduleTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceSecurityTagTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceSegmentTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceSensorTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceSpecificationQueryTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceSpecifiedActionTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceSpecifiedChemicalTreatmentTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceSpecifiedDeclarationTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceSpecifiedFaultTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceSpecifiedFeatureTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceSpecifiedInspectionTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceSpecifiedMaterialTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceSpecifiedParameterTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceSpecifiedPeriodTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceStandardTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceStoresItemInventoryTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceSupplyChainEventTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceSupplyChainReferenceTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceSupplyChainTradeLineItemTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceSupplyChainTradeTransactionTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceSupplyPlanTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceSustainabilityCharacteristicTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceSustainabilityInspectionTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceTechnicalCharacteristicTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceTradeProductFeatureTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceTradeProductTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceTransportEventTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceTransportationWasteMaterialComponentTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceTransportationWasteMaterialTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceVoucherTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceXHEParameterTypeCodeList.js\";\nexport * from \"./models/uneceContextType.js\";\nexport * from \"./models/uneceContexts.js\";\nexport * from \"./models/uneceTypes.js\";\n"]}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"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","sourcesContent":["// Copyright 2025 IOTA Stiftung.\n// SPDX-License-Identifier: Apache-2.0.\nexport * from \"./dataTypes/uneceDataTypes.js\";\nexport * from \"./helpers/unCodeLists.js\";\nexport * from \"./helpers/unLocodes.js\";\nexport * from \"./models/IUnLocodeCountry.js\";\nexport * from \"./models/IUnLocodeCountrySubdivision.js\";\nexport * from \"./models/IUnLocodeCountrySubdivisionRecord.js\";\nexport * from \"./models/IUnLocodeFunction.js\";\nexport * from \"./models/IUnLocodeLocation.js\";\nexport * from \"./models/IUnLocodeLocationRecord.js\";\nexport * from \"./models/IUnLocodeSubdivision.js\";\nexport * from \"./models/bsp/IUneceAcademicQualification.js\";\nexport * from \"./models/bsp/IUneceAccountingAccount.js\";\nexport * from \"./models/bsp/IUneceAccreditation.js\";\nexport * from \"./models/bsp/IUneceAcknowledgementDocument.js\";\nexport * from \"./models/bsp/IUneceAdvancePayment.js\";\nexport * from \"./models/bsp/IUneceAgriculturalApplication.js\";\nexport * from \"./models/bsp/IUneceAgriculturalCertificate.js\";\nexport * from \"./models/bsp/IUneceAgriculturalCharacteristic.js\";\nexport * from \"./models/bsp/IUneceAgriculturalProcess.js\";\nexport * from \"./models/bsp/IUneceAgriculturalZoneArea.js\";\nexport * from \"./models/bsp/IUneceAirFlowUnitMeasureType.js\";\nexport * from \"./models/bsp/IUneceAllergy.js\";\nexport * from \"./models/bsp/IUneceAmountType.js\";\nexport * from \"./models/bsp/IUneceAnimalBatch.js\";\nexport * from \"./models/bsp/IUneceAnimalCertificate.js\";\nexport * from \"./models/bsp/IUneceAnimalCertification.js\";\nexport * from \"./models/bsp/IUneceAnimalHoldingEvent.js\";\nexport * from \"./models/bsp/IUneceAnimalIdentity.js\";\nexport * from \"./models/bsp/IUneceAppliedAllowanceCharge.js\";\nexport * from \"./models/bsp/IUneceAppliedChemicalTreatment.js\";\nexport * from \"./models/bsp/IUneceAppliedTax.js\";\nexport * from \"./models/bsp/IUneceArea.js\";\nexport * from \"./models/bsp/IUneceAssertion.js\";\nexport * from \"./models/bsp/IUneceAssessment.js\";\nexport * from \"./models/bsp/IUneceAssociatedTransportEquipment.js\";\nexport * from \"./models/bsp/IUneceAttachedTransportEquipment.js\";\nexport * from \"./models/bsp/IUneceAuthentication.js\";\nexport * from \"./models/bsp/IUneceAuthoritativeSignatoryPerson.js\";\nexport * from \"./models/bsp/IUneceAvailablePeriod.js\";\nexport * from \"./models/bsp/IUneceBasicWorkItem.js\";\nexport * from \"./models/bsp/IUneceBinaryFile.js\";\nexport * from \"./models/bsp/IUneceBirthAddress.js\";\nexport * from \"./models/bsp/IUneceBooking.js\";\nexport * from \"./models/bsp/IUneceBotanicalCrop.js\";\nexport * from \"./models/bsp/IUneceBranchFinancialInstitution.js\";\nexport * from \"./models/bsp/IUneceBreakdownStatement.js\";\nexport * from \"./models/bsp/IUneceCalculatedPrice.js\";\nexport * from \"./models/bsp/IUneceCalibratedMeasurement.js\";\nexport * from \"./models/bsp/IUneceCancellationStatus.js\";\nexport * from \"./models/bsp/IUneceCargo.js\";\nexport * from \"./models/bsp/IUneceCargoInsurance.js\";\nexport * from \"./models/bsp/IUneceCarriedEquipment.js\";\nexport * from \"./models/bsp/IUneceCash.js\";\nexport * from \"./models/bsp/IUneceChemical.js\";\nexport * from \"./models/bsp/IUneceCheque.js\";\nexport * from \"./models/bsp/IUneceCircle.js\";\nexport * from \"./models/bsp/IUneceClassification.js\";\nexport * from \"./models/bsp/IUneceClause.js\";\nexport * from \"./models/bsp/IUneceColour.js\";\nexport * from \"./models/bsp/IUneceCommunication.js\";\nexport * from \"./models/bsp/IUneceCommunicationEvent.js\";\nexport * from \"./models/bsp/IUneceComplexDescription.js\";\nexport * from \"./models/bsp/IUneceConformanceCertificate.js\";\nexport * from \"./models/bsp/IUneceConsignment.js\";\nexport * from \"./models/bsp/IUneceConsignmentItem.js\";\nexport * from \"./models/bsp/IUneceContactPerson.js\";\nexport * from \"./models/bsp/IUneceContract.js\";\nexport * from \"./models/bsp/IUneceControlSettingParameter.js\";\nexport * from \"./models/bsp/IUneceConvoy.js\";\nexport * from \"./models/bsp/IUneceCooperatingOrganization.js\";\nexport * from \"./models/bsp/IUneceCoordinateReferenceSystem.js\";\nexport * from \"./models/bsp/IUneceCoordinateSourceSystem.js\";\nexport * from \"./models/bsp/IUneceCorrectiveAction.js\";\nexport * from \"./models/bsp/IUneceCorrectiveEvent.js\";\nexport * from \"./models/bsp/IUneceCountry.js\";\nexport * from \"./models/bsp/IUneceCountrySubDivision.js\";\nexport * from \"./models/bsp/IUneceCreditorFinancialAccount.js\";\nexport * from \"./models/bsp/IUneceCreditorFinancialInstitution.js\";\nexport * from \"./models/bsp/IUneceCropMixtureConstituent.js\";\nexport * from \"./models/bsp/IUneceCropProduceBatch.js\";\nexport * from \"./models/bsp/IUneceCropProtectionTreatment.js\";\nexport * from \"./models/bsp/IUneceCurrencyExchange.js\";\nexport * from \"./models/bsp/IUneceCustomerClass.js\";\nexport * from \"./models/bsp/IUneceCustomsValuation.js\";\nexport * from \"./models/bsp/IUneceDangerousGoods.js\";\nexport * from \"./models/bsp/IUneceDebtorFinancialAccount.js\";\nexport * from \"./models/bsp/IUneceDebtorFinancialInstitution.js\";\nexport * from \"./models/bsp/IUneceDelimitedPeriod.js\";\nexport * from \"./models/bsp/IUneceDeliveryAdjustment.js\";\nexport * from \"./models/bsp/IUneceDeliveryInstructions.js\";\nexport * from \"./models/bsp/IUneceDeliverySchedule.js\";\nexport * from \"./models/bsp/IUneceDeliveryTerms.js\";\nexport * from \"./models/bsp/IUneceDigitalMethod.js\";\nexport * from \"./models/bsp/IUneceDirectPosition.js\";\nexport * from \"./models/bsp/IUneceDisability.js\";\nexport * from \"./models/bsp/IUneceDisposalInstructions.js\";\nexport * from \"./models/bsp/IUneceDocument.js\";\nexport * from \"./models/bsp/IUneceDocumentCharacteristic.js\";\nexport * from \"./models/bsp/IUneceDocumentContextParameter.js\";\nexport * from \"./models/bsp/IUneceDocumentHandlingInstructions.js\";\nexport * from \"./models/bsp/IUneceDocumentLineDocument.js\";\nexport * from \"./models/bsp/IUneceDocumentStatus.js\";\nexport * from \"./models/bsp/IUneceDurationUnitMeasureType.js\";\nexport * from \"./models/bsp/IUneceEmission.js\";\nexport * from \"./models/bsp/IUneceEmployerIdentity.js\";\nexport * from \"./models/bsp/IUneceEnvelope.js\";\nexport * from \"./models/bsp/IUneceEquipment.js\";\nexport * from \"./models/bsp/IUneceError.js\";\nexport * from \"./models/bsp/IUneceEventElement.js\";\nexport * from \"./models/bsp/IUneceExchangedDeclaration.js\";\nexport * from \"./models/bsp/IUneceExchangedDocument.js\";\nexport * from \"./models/bsp/IUneceExchangedDocumentContext.js\";\nexport * from \"./models/bsp/IUneceExperienceEvent.js\";\nexport * from \"./models/bsp/IUneceExperienceFacility.js\";\nexport * from \"./models/bsp/IUneceExperienceItem.js\";\nexport * from \"./models/bsp/IUneceExperienceProduct.js\";\nexport * from \"./models/bsp/IUneceExperienceProgramAction.js\";\nexport * from \"./models/bsp/IUneceFieldCrop.js\";\nexport * from \"./models/bsp/IUneceFileSizeUnitMeasureType.js\";\nexport * from \"./models/bsp/IUneceFinancialAdjustment.js\";\nexport * from \"./models/bsp/IUneceFinancialCard.js\";\nexport * from \"./models/bsp/IUneceFinancialIdentity.js\";\nexport * from \"./models/bsp/IUneceFinancialInstitutionAddress.js\";\nexport * from \"./models/bsp/IUneceFinancingFinancialAccount.js\";\nexport * from \"./models/bsp/IUneceFinancingRequestDocument.js\";\nexport * from \"./models/bsp/IUneceFinancingRequestResultDocument.js\";\nexport * from \"./models/bsp/IUneceFinancingStatus.js\";\nexport * from \"./models/bsp/IUneceFinancingSummaryDocument.js\";\nexport * from \"./models/bsp/IUneceFoodChoice.js\";\nexport * from \"./models/bsp/IUneceForecastTerms.js\";\nexport * from \"./models/bsp/IUneceFuel.js\";\nexport * from \"./models/bsp/IUneceGeographicalArea.js\";\nexport * from \"./models/bsp/IUneceGeographicalCoordinate.js\";\nexport * from \"./models/bsp/IUneceGeographicalFeature.js\";\nexport * from \"./models/bsp/IUneceGeographicalGrid.js\";\nexport * from \"./models/bsp/IUneceGeographicalLine.js\";\nexport * from \"./models/bsp/IUneceGeographicalMultiCurve.js\";\nexport * from \"./models/bsp/IUneceGeographicalMultiPoint.js\";\nexport * from \"./models/bsp/IUneceGeographicalMultiSurface.js\";\nexport * from \"./models/bsp/IUneceGeographicalObjectCharacteristic.js\";\nexport * from \"./models/bsp/IUneceGeographicalPoint.js\";\nexport * from \"./models/bsp/IUneceGeographicalSurface.js\";\nexport * from \"./models/bsp/IUneceGeopoliticalRegion.js\";\nexport * from \"./models/bsp/IUneceGoodsCharacteristic.js\";\nexport * from \"./models/bsp/IUneceGovernmentRegistration.js\";\nexport * from \"./models/bsp/IUneceGroupedWorkItem.js\";\nexport * from \"./models/bsp/IUneceGuarantee.js\";\nexport * from \"./models/bsp/IUneceGuestArrival.js\";\nexport * from \"./models/bsp/IUneceGuestHealthIndication.js\";\nexport * from \"./models/bsp/IUneceGuestPerson.js\";\nexport * from \"./models/bsp/IUneceHandlingInstructions.js\";\nexport * from \"./models/bsp/IUneceHaulageInstructions.js\";\nexport * from \"./models/bsp/IUneceHazardousMaterial.js\";\nexport * from \"./models/bsp/IUneceHeaderBalanceOut.js\";\nexport * from \"./models/bsp/IUneceHeaderTradeAgreement.js\";\nexport * from \"./models/bsp/IUneceHeaderTradeDelivery.js\";\nexport * from \"./models/bsp/IUneceHeaderTradeSettlement.js\";\nexport * from \"./models/bsp/IUneceIOTDevice.js\";\nexport * from \"./models/bsp/IUneceIdentifiedFault.js\";\nexport * from \"./models/bsp/IUneceIllness.js\";\nexport * from \"./models/bsp/IUneceIndividualTTAnimal.js\";\nexport * from \"./models/bsp/IUneceInformationSource.js\";\nexport * from \"./models/bsp/IUneceIngredientRangeMeasurement.js\";\nexport * from \"./models/bsp/IUneceInspectionEvent.js\";\nexport * from \"./models/bsp/IUneceInspectionInstructions.js\";\nexport * from \"./models/bsp/IUneceInspectionNote.js\";\nexport * from \"./models/bsp/IUneceInspectionPerson.js\";\nexport * from \"./models/bsp/IUneceInspectionReference.js\";\nexport * from \"./models/bsp/IUneceInspectionResult.js\";\nexport * from \"./models/bsp/IUneceInspectionResultCharacteristic.js\";\nexport * from \"./models/bsp/IUneceInspectionStatus.js\";\nexport * from \"./models/bsp/IUneceInstalmentPayment.js\";\nexport * from \"./models/bsp/IUneceInstalmentPlan.js\";\nexport * from \"./models/bsp/IUneceInstructedTemperature.js\";\nexport * from \"./models/bsp/IUneceIssue.js\";\nexport * from \"./models/bsp/IUneceKeyword.js\";\nexport * from \"./models/bsp/IUneceLaboratoryObservationAnalysisMethod.js\";\nexport * from \"./models/bsp/IUneceLaboratoryObservationContact.js\";\nexport * from \"./models/bsp/IUneceLaboratoryObservationInstructions.js\";\nexport * from \"./models/bsp/IUneceLaboratoryObservationNote.js\";\nexport * from \"./models/bsp/IUneceLaboratoryObservationParty.js\";\nexport * from \"./models/bsp/IUneceLaboratoryObservationReference.js\";\nexport * from \"./models/bsp/IUneceLanguageProficiency.js\";\nexport * from \"./models/bsp/IUneceLegalOrganization.js\";\nexport * from \"./models/bsp/IUneceLegalRegistration.js\";\nexport * from \"./models/bsp/IUneceLicence.js\";\nexport * from \"./models/bsp/IUneceLineTradeAgreement.js\";\nexport * from \"./models/bsp/IUneceLineTradeDelivery.js\";\nexport * from \"./models/bsp/IUneceLineTradeSettlement.js\";\nexport * from \"./models/bsp/IUneceLineTradeTransaction.js\";\nexport * from \"./models/bsp/IUneceLinearRing.js\";\nexport * from \"./models/bsp/IUneceLinearUnitMeasureType.js\";\nexport * from \"./models/bsp/IUneceLocation.js\";\nexport * from \"./models/bsp/IUneceLocationParty.js\";\nexport * from \"./models/bsp/IUneceLogisticsLabel.js\";\nexport * from \"./models/bsp/IUneceLogisticsLocation.js\";\nexport * from \"./models/bsp/IUneceLogisticsPackaging.js\";\nexport * from \"./models/bsp/IUneceLogisticsStatus.js\";\nexport * from \"./models/bsp/IUneceLogisticsTransportEquipment.js\";\nexport * from \"./models/bsp/IUneceLogisticsTransportMeans.js\";\nexport * from \"./models/bsp/IUneceMDHHealthIndication.js\";\nexport * from \"./models/bsp/IUneceMachine.js\";\nexport * from \"./models/bsp/IUneceMarketplace.js\";\nexport * from \"./models/bsp/IUneceMarking.js\";\nexport * from \"./models/bsp/IUneceMeasureCode.js\";\nexport * from \"./models/bsp/IUneceMeasureType.js\";\nexport * from \"./models/bsp/IUneceMeasurement.js\";\nexport * from \"./models/bsp/IUneceMembership.js\";\nexport * from \"./models/bsp/IUneceMetricCharacteristic.js\";\nexport * from \"./models/bsp/IUneceNegotiationContext.js\";\nexport * from \"./models/bsp/IUneceNegotiationExchange.js\";\nexport * from \"./models/bsp/IUneceNote.js\";\nexport * from \"./models/bsp/IUneceObject.js\";\nexport * from \"./models/bsp/IUneceObservation.js\";\nexport * from \"./models/bsp/IUneceObservationObjectiveParameter.js\";\nexport * from \"./models/bsp/IUneceObservationResult.js\";\nexport * from \"./models/bsp/IUneceObservationResultCharacteristic.js\";\nexport * from \"./models/bsp/IUneceOperationalParameter.js\";\nexport * from \"./models/bsp/IUneceOrganizationCharacteristic.js\";\nexport * from \"./models/bsp/IUneceOrganizationalCertificate.js\";\nexport * from \"./models/bsp/IUneceOrganizationalCertification.js\";\nexport * from \"./models/bsp/IUnecePackage.js\";\nexport * from \"./models/bsp/IUnecePackagingInstructions.js\";\nexport * from \"./models/bsp/IUnecePairing.js\";\nexport * from \"./models/bsp/IUnecePayload.js\";\nexport * from \"./models/bsp/IUnecePayloadInstance.js\";\nexport * from \"./models/bsp/IUnecePaymentBalanceOut.js\";\nexport * from \"./models/bsp/IUnecePaymentDiscountTerms.js\";\nexport * from \"./models/bsp/IUnecePaymentFinancialAccount.js\";\nexport * from \"./models/bsp/IUnecePaymentFinancialInstitution.js\";\nexport * from \"./models/bsp/IUnecePaymentMeans.js\";\nexport * from \"./models/bsp/IUnecePaymentPenaltyTerms.js\";\nexport * from \"./models/bsp/IUnecePaymentTerms.js\";\nexport * from \"./models/bsp/IUnecePaymentTradeSettlement.js\";\nexport * from \"./models/bsp/IUnecePersonIdentity.js\";\nexport * from \"./models/bsp/IUnecePersonalEffects.js\";\nexport * from \"./models/bsp/IUnecePetAnimal.js\";\nexport * from \"./models/bsp/IUnecePicture.js\";\nexport * from \"./models/bsp/IUnecePlot.js\";\nexport * from \"./models/bsp/IUnecePolicy.js\";\nexport * from \"./models/bsp/IUnecePolygon.js\";\nexport * from \"./models/bsp/IUnecePortMovementEvent.js\";\nexport * from \"./models/bsp/IUnecePreference.js\";\nexport * from \"./models/bsp/IUnecePreventiveAction.js\";\nexport * from \"./models/bsp/IUnecePrint.js\";\nexport * from \"./models/bsp/IUneceProcessCertificate.js\";\nexport * from \"./models/bsp/IUneceProcessCertification.js\";\nexport * from \"./models/bsp/IUneceProcessCharacteristic.js\";\nexport * from \"./models/bsp/IUneceProcessWorkItem.js\";\nexport * from \"./models/bsp/IUneceProduce.js\";\nexport * from \"./models/bsp/IUneceProduct.js\";\nexport * from \"./models/bsp/IUneceProductBatch.js\";\nexport * from \"./models/bsp/IUneceProductBatchCertificate.js\";\nexport * from \"./models/bsp/IUneceProductBatchCertification.js\";\nexport * from \"./models/bsp/IUneceProductBatchCharacteristic.js\";\nexport * from \"./models/bsp/IUneceProductCertificate.js\";\nexport * from \"./models/bsp/IUneceProductCharacteristic.js\";\nexport * from \"./models/bsp/IUneceProductCharacteristicCondition.js\";\nexport * from \"./models/bsp/IUneceProductFinishingTreatment.js\";\nexport * from \"./models/bsp/IUneceProductGroup.js\";\nexport * from \"./models/bsp/IUneceProductHandlingProcess.js\";\nexport * from \"./models/bsp/IUneceProductInstance.js\";\nexport * from \"./models/bsp/IUneceProductLabel.js\";\nexport * from \"./models/bsp/IUneceProduction.js\";\nexport * from \"./models/bsp/IUneceProductionCycle.js\";\nexport * from \"./models/bsp/IUneceProductionDevice.js\";\nexport * from \"./models/bsp/IUneceProductionFacility.js\";\nexport * from \"./models/bsp/IUneceProductionProcess.js\";\nexport * from \"./models/bsp/IUneceProductionUnit.js\";\nexport * from \"./models/bsp/IUneceProductionWasteMaterial.js\";\nexport * from \"./models/bsp/IUneceProductionWasteMaterialComponent.js\";\nexport * from \"./models/bsp/IUneceProductionWasteRecoveryDisposalProcess.js\";\nexport * from \"./models/bsp/IUneceProject.js\";\nexport * from \"./models/bsp/IUneceProprietaryIdentity.js\";\nexport * from \"./models/bsp/IUneceProtectionMeans.js\";\nexport * from \"./models/bsp/IUneceQuantityAnalysis.js\";\nexport * from \"./models/bsp/IUneceQuantityCode.js\";\nexport * from \"./models/bsp/IUneceQuantityType.js\";\nexport * from \"./models/bsp/IUneceQuarantineInstructions.js\";\nexport * from \"./models/bsp/IUneceRadioactiveIsotope.js\";\nexport * from \"./models/bsp/IUneceRadioactiveMaterial.js\";\nexport * from \"./models/bsp/IUneceRadionuclide.js\";\nexport * from \"./models/bsp/IUneceRange.js\";\nexport * from \"./models/bsp/IUneceRecordedStatus.js\";\nexport * from \"./models/bsp/IUneceReferencePrice.js\";\nexport * from \"./models/bsp/IUneceRegisteredTax.js\";\nexport * from \"./models/bsp/IUneceRegulatedGoods.js\";\nexport * from \"./models/bsp/IUneceRegulatoryProcedure.js\";\nexport * from \"./models/bsp/IUneceRepresentativePerson.js\";\nexport * from \"./models/bsp/IUneceRequestingParty.js\";\nexport * from \"./models/bsp/IUneceRequirement.js\";\nexport * from \"./models/bsp/IUneceResponse.js\";\nexport * from \"./models/bsp/IUneceReturnableAssetInstructions.js\";\nexport * from \"./models/bsp/IUneceRiskAnalysisResult.js\";\nexport * from \"./models/bsp/IUneceSanitaryMeasure.js\";\nexport * from \"./models/bsp/IUneceSchedule.js\";\nexport * from \"./models/bsp/IUneceSeal.js\";\nexport * from \"./models/bsp/IUneceSection.js\";\nexport * from \"./models/bsp/IUneceSecurityTag.js\";\nexport * from \"./models/bsp/IUneceSegment.js\";\nexport * from \"./models/bsp/IUneceSensor.js\";\nexport * from \"./models/bsp/IUneceService.js\";\nexport * from \"./models/bsp/IUneceServiceCharge.js\";\nexport * from \"./models/bsp/IUneceShippingMarks.js\";\nexport * from \"./models/bsp/IUneceSource.js\";\nexport * from \"./models/bsp/IUneceSpatialDimension.js\";\nexport * from \"./models/bsp/IUneceSpecialQuery.js\";\nexport * from \"./models/bsp/IUneceSpeciesTTAnimal.js\";\nexport * from \"./models/bsp/IUneceSpecificationQuery.js\";\nexport * from \"./models/bsp/IUneceSpecifiedAction.js\";\nexport * from \"./models/bsp/IUneceSpecifiedCertificate.js\";\nexport * from \"./models/bsp/IUneceSpecifiedCertification.js\";\nexport * from \"./models/bsp/IUneceSpecifiedChemicalTreatment.js\";\nexport * from \"./models/bsp/IUneceSpecifiedCondition.js\";\nexport * from \"./models/bsp/IUneceSpecifiedDeclaration.js\";\nexport * from \"./models/bsp/IUneceSpecifiedFault.js\";\nexport * from \"./models/bsp/IUneceSpecifiedFeature.js\";\nexport * from \"./models/bsp/IUneceSpecifiedInspection.js\";\nexport * from \"./models/bsp/IUneceSpecifiedLocation.js\";\nexport * from \"./models/bsp/IUneceSpecifiedMaterial.js\";\nexport * from \"./models/bsp/IUneceSpecifiedMethod.js\";\nexport * from \"./models/bsp/IUneceSpecifiedNote.js\";\nexport * from \"./models/bsp/IUneceSpecifiedParameter.js\";\nexport * from \"./models/bsp/IUneceSpecifiedPeriod.js\";\nexport * from \"./models/bsp/IUneceSpecifiedQualification.js\";\nexport * from \"./models/bsp/IUneceSpecifiedRoute.js\";\nexport * from \"./models/bsp/IUneceSpecifiedTemperature.js\";\nexport * from \"./models/bsp/IUneceStandard.js\";\nexport * from \"./models/bsp/IUneceStoresItemInventory.js\";\nexport * from \"./models/bsp/IUneceStowaway.js\";\nexport * from \"./models/bsp/IUneceSubordinateLineTradeAgreement.js\";\nexport * from \"./models/bsp/IUneceSubordinateLineTradeDelivery.js\";\nexport * from \"./models/bsp/IUneceSubordinateLineTradeSettlement.js\";\nexport * from \"./models/bsp/IUneceSubordinateLocation.js\";\nexport * from \"./models/bsp/IUneceSubordinateSubordinateLocation.js\";\nexport * from \"./models/bsp/IUneceSubordinateTradeLineItem.js\";\nexport * from \"./models/bsp/IUneceSupplyChainEvent.js\";\nexport * from \"./models/bsp/IUneceSupplyChainInventory.js\";\nexport * from \"./models/bsp/IUneceSupplyChainPackaging.js\";\nexport * from \"./models/bsp/IUneceSupplyChainReference.js\";\nexport * from \"./models/bsp/IUneceSupplyChainTradeLineItem.js\";\nexport * from \"./models/bsp/IUneceSupplyChainTradeTransaction.js\";\nexport * from \"./models/bsp/IUneceSupplyPlan.js\";\nexport * from \"./models/bsp/IUneceSustainabilityCharacteristic.js\";\nexport * from \"./models/bsp/IUneceSustainabilityInspection.js\";\nexport * from \"./models/bsp/IUneceTTAggregationEvent.js\";\nexport * from \"./models/bsp/IUneceTTAnimal.js\";\nexport * from \"./models/bsp/IUneceTTExchangedDocument.js\";\nexport * from \"./models/bsp/IUneceTTLocation.js\";\nexport * from \"./models/bsp/IUneceTTObjectEvent.js\";\nexport * from \"./models/bsp/IUneceTTParty.js\";\nexport * from \"./models/bsp/IUneceTTTradeTransaction.js\";\nexport * from \"./models/bsp/IUneceTTTransactionEvent.js\";\nexport * from \"./models/bsp/IUneceTTTransformationEvent.js\";\nexport * from \"./models/bsp/IUneceTaxRegistration.js\";\nexport * from \"./models/bsp/IUneceTechnicalCharacteristic.js\";\nexport * from \"./models/bsp/IUneceTemperatureSettingInstructions.js\";\nexport * from \"./models/bsp/IUneceTemperatureUnitMeasureType.js\";\nexport * from \"./models/bsp/IUneceTestSpecificationReport.js\";\nexport * from \"./models/bsp/IUneceTolerance.js\";\nexport * from \"./models/bsp/IUneceTradeAddress.js\";\nexport * from \"./models/bsp/IUneceTradeAllowanceCharge.js\";\nexport * from \"./models/bsp/IUneceTradeContact.js\";\nexport * from \"./models/bsp/IUneceTradeLocation.js\";\nexport * from \"./models/bsp/IUneceTradeParty.js\";\nexport * from \"./models/bsp/IUneceTradePrice.js\";\nexport * from \"./models/bsp/IUneceTradeProduct.js\";\nexport * from \"./models/bsp/IUneceTradeProductCertification.js\";\nexport * from \"./models/bsp/IUneceTradeProductFeature.js\";\nexport * from \"./models/bsp/IUneceTradeSettlementHeaderMonetarySummation.js\";\nexport * from \"./models/bsp/IUneceTradeSettlementLineMonetarySummation.js\";\nexport * from \"./models/bsp/IUneceTradeSettlementMonetarySummation.js\";\nexport * from \"./models/bsp/IUneceTradeSettlementPayment.js\";\nexport * from \"./models/bsp/IUneceTradeSettlementPaymentMonetarySummation.js\";\nexport * from \"./models/bsp/IUneceTradeTax.js\";\nexport * from \"./models/bsp/IUneceTransportEvent.js\";\nexport * from \"./models/bsp/IUneceTransportInstructions.js\";\nexport * from \"./models/bsp/IUneceTransportMeans.js\";\nexport * from \"./models/bsp/IUneceTransportMovement.js\";\nexport * from \"./models/bsp/IUneceTransportPerson.js\";\nexport * from \"./models/bsp/IUneceTransportRoute.js\";\nexport * from \"./models/bsp/IUneceTransportServiceLocation.js\";\nexport * from \"./models/bsp/IUneceTransportSettingTemperature.js\";\nexport * from \"./models/bsp/IUneceTransportationHealth.js\";\nexport * from \"./models/bsp/IUneceTransportationWasteMaterial.js\";\nexport * from \"./models/bsp/IUneceTransportationWasteMaterialComponent.js\";\nexport * from \"./models/bsp/IUneceTransportationWasteRecoveryDisposalProcess.js\";\nexport * from \"./models/bsp/IUneceUnitMeasureType.js\";\nexport * from \"./models/bsp/IUneceUsageCondition.js\";\nexport * from \"./models/bsp/IUneceValidationStatus.js\";\nexport * from \"./models/bsp/IUneceVersion.js\";\nexport * from \"./models/bsp/IUneceVolumeUnitMeasureType.js\";\nexport * from \"./models/bsp/IUneceVoucher.js\";\nexport * from \"./models/bsp/IUneceWasteMaterialRecoveryDisposalProcess.js\";\nexport * from \"./models/bsp/IUneceWasteOriginProcess.js\";\nexport * from \"./models/bsp/IUneceWeightUnitMeasureType.js\";\nexport * from \"./models/bsp/IUneceWorkItemDimension.js\";\nexport * from \"./models/bsp/IUneceWorkflowObject.js\";\nexport * from \"./models/bsp/IUneceXHEContext.js\";\nexport * from \"./models/bsp/IUneceXHEDocument.js\";\nexport * from \"./models/bsp/IUneceXHEIdentity.js\";\nexport * from \"./models/bsp/IUneceXHEParameter.js\";\nexport * from \"./models/bsp/IUneceXHEParty.js\";\nexport * from \"./models/bsp/IUneceXHEReference.js\";\nexport * from \"./models/lists/uneceAccessRightsTypeCodeList.js\";\nexport * from \"./models/lists/uneceAccountingAccountBalanceReopeningTypeCodeList.js\";\nexport * from \"./models/lists/uneceAccountingAccountClassificationCodeList.js\";\nexport * from \"./models/lists/uneceAccountingAccountNatureTypeCodeList.js\";\nexport * from \"./models/lists/uneceAccountingAccountStatusCodeList.js\";\nexport * from \"./models/lists/uneceAccountingAccountTypeCodeList.js\";\nexport * from \"./models/lists/uneceAccountingAmountQualifierCodeList.js\";\nexport * from \"./models/lists/uneceAccountingAmountTypeCodeList.js\";\nexport * from \"./models/lists/uneceAccountingContactCodeList.js\";\nexport * from \"./models/lists/uneceAccountingDebitCreditStatusCodeList.js\";\nexport * from \"./models/lists/uneceAccountingDocumentCodeList.js\";\nexport * from \"./models/lists/uneceAccountingDocumentTypeCodeList.js\";\nexport * from \"./models/lists/uneceAccountingEntryCategoryCodeList.js\";\nexport * from \"./models/lists/uneceAccountingEntryLineCategoryCodeList.js\";\nexport * from \"./models/lists/uneceAccountingEntryLineSourceCodeList.js\";\nexport * from \"./models/lists/uneceAccountingEntryProcessingCodeList.js\";\nexport * from \"./models/lists/uneceAccountingJournalCategoryCodeList.js\";\nexport * from \"./models/lists/uneceAccountingJournalCodeList.js\";\nexport * from \"./models/lists/uneceAccountingPeriodFunctionCodeList.js\";\nexport * from \"./models/lists/uneceAccountingPerquisiteCodeList.js\";\nexport * from \"./models/lists/uneceAccountingVoucherMediumCodeList.js\";\nexport * from \"./models/lists/uneceAcknowledgementCodeList.js\";\nexport * from \"./models/lists/uneceAdditionalPostponementCodeList.js\";\nexport * from \"./models/lists/uneceAddressFormatTypeCodeList.js\";\nexport * from \"./models/lists/uneceAddressTypeCodeList.js\";\nexport * from \"./models/lists/uneceAdjustmentReasonCodeList.js\";\nexport * from \"./models/lists/uneceAirFlowUnitMeasureCode.js\";\nexport * from \"./models/lists/uneceAllowanceChargeIdCodeList.js\";\nexport * from \"./models/lists/uneceAllowanceChargeReasonCodeList.js\";\nexport * from \"./models/lists/uneceAlternateCurrencyAmountTypeCodeList.js\";\nexport * from \"./models/lists/uneceAmortizationMethodCodeList.js\";\nexport * from \"./models/lists/uneceAmountCurrency.js\";\nexport * from \"./models/lists/uneceAmountWeightTypeCodeList.js\";\nexport * from \"./models/lists/uneceAutomaticDataCaptureMethodCodeList.js\";\nexport * from \"./models/lists/uneceBillingDocumentCodeList.js\";\nexport * from \"./models/lists/uneceBinaryObjectCharacterSetCodeList.js\";\nexport * from \"./models/lists/uneceBinaryObjectEncodingCodeList.js\";\nexport * from \"./models/lists/uneceCargoCategoryCodeList.js\";\nexport * from \"./models/lists/uneceCargoCommodityCategoryCodeList.js\";\nexport * from \"./models/lists/uneceCargoOperationalCategoryCodeList.js\";\nexport * from \"./models/lists/uneceCargoTypeClassificationCodeList.js\";\nexport * from \"./models/lists/uneceCertificateTypeCodeList.js\";\nexport * from \"./models/lists/uneceChargePayingPartyRoleCodeList.js\";\nexport * from \"./models/lists/uneceCodeListResponsibleAgencyCodeList.js\";\nexport * from \"./models/lists/uneceCommitmentLevelCodeList.js\";\nexport * from \"./models/lists/uneceCommunicationChannelCodeList.js\";\nexport * from \"./models/lists/uneceContactTypeCodeList.js\";\nexport * from \"./models/lists/uneceCountryId.js\";\nexport * from \"./models/lists/uneceCurrencyCodeList.js\";\nexport * from \"./models/lists/uneceCustomsDutyRegimeTypeCodeList.js\";\nexport * from \"./models/lists/uneceCustomsProcedureGuaranteeCodeList.js\";\nexport * from \"./models/lists/uneceDangerousGoodsPackagingLevelCodeList.js\";\nexport * from \"./models/lists/uneceDangerousGoodsRegulationCodeList.js\";\nexport * from \"./models/lists/uneceDateTimePeriodFunctionCodeList.js\";\nexport * from \"./models/lists/uneceDeliveryTermsCodeList.js\";\nexport * from \"./models/lists/uneceDeliveryTermsFunctionCodeList.js\";\nexport * from \"./models/lists/uneceDimensionTypeCodeList.js\";\nexport * from \"./models/lists/uneceDocumentCodeList.js\";\nexport * from \"./models/lists/uneceDocumentStatusCodeList.js\";\nexport * from \"./models/lists/uneceDurationUnitMeasureCode.js\";\nexport * from \"./models/lists/uneceFileSizeUnitMeasureCode.js\";\nexport * from \"./models/lists/uneceFinancialAccountTypeCodeList.js\";\nexport * from \"./models/lists/uneceFinancialAdjustmentReasonCodeList.js\";\nexport * from \"./models/lists/uneceFinancialInstitutionRoleCodeList.js\";\nexport * from \"./models/lists/uneceFreightChargeTariffClassCodeList.js\";\nexport * from \"./models/lists/uneceFreightChargeTypeId.js\";\nexport * from \"./models/lists/uneceGoodsTypeCodeList.js\";\nexport * from \"./models/lists/uneceGoodsTypeExtensionCodeList.js\";\nexport * from \"./models/lists/uneceGovernmentActionCodeList.js\";\nexport * from \"./models/lists/uneceInvoiceDocumentCodeList.js\";\nexport * from \"./models/lists/uneceLanguageCodeList.js\";\nexport * from \"./models/lists/uneceLanguageId.js\";\nexport * from \"./models/lists/uneceLifetimeEndCostCodeList.js\";\nexport * from \"./models/lists/uneceLineStatusCodeList.js\";\nexport * from \"./models/lists/uneceLinearUnitMeasureCode.js\";\nexport * from \"./models/lists/uneceLocationFunctionCodeList.js\";\nexport * from \"./models/lists/uneceLogisticsChargeCalculationBasisCodeList.js\";\nexport * from \"./models/lists/uneceLogisticsStatusCodeList.js\";\nexport * from \"./models/lists/uneceMarkingInstructionCodeList.js\";\nexport * from \"./models/lists/uneceMeasuredAttributeCodeList.js\";\nexport * from \"./models/lists/uneceMessageFunctionCodeList.js\";\nexport * from \"./models/lists/uneceOrganizationFunctionTypeCodeList.js\";\nexport * from \"./models/lists/unecePackageTypeCodeList.js\";\nexport * from \"./models/lists/unecePackagingLevelCodeList.js\";\nexport * from \"./models/lists/unecePackagingMarkingCodeList.js\";\nexport * from \"./models/lists/unecePartyRoleCodeList.js\";\nexport * from \"./models/lists/unecePartyTypeCodeList.js\";\nexport * from \"./models/lists/unecePaymentGuaranteeMeansCodeList.js\";\nexport * from \"./models/lists/unecePaymentMeansChannelCodeList.js\";\nexport * from \"./models/lists/unecePaymentMeansCodeList.js\";\nexport * from \"./models/lists/unecePaymentMethodCodeList.js\";\nexport * from \"./models/lists/unecePaymentTermsEventTimeReferenceCodeList.js\";\nexport * from \"./models/lists/unecePaymentTermsId.js\";\nexport * from \"./models/lists/unecePaymentTermsTypeCodeList.js\";\nexport * from \"./models/lists/unecePriceTypeCodeList.js\";\nexport * from \"./models/lists/unecePriorityDescriptionCodeList.js\";\nexport * from \"./models/lists/uneceProcessTypeCodeList.js\";\nexport * from \"./models/lists/uneceQuotationDocumentCodeList.js\";\nexport * from \"./models/lists/uneceReferenceCodeList.js\";\nexport * from \"./models/lists/uneceRefundMethodCodeList.js\";\nexport * from \"./models/lists/uneceRemittanceDocumentCodeList.js\";\nexport * from \"./models/lists/uneceResponseTypeCodeList.js\";\nexport * from \"./models/lists/uneceResponsibleGovernmentAgencyCodeList.js\";\nexport * from \"./models/lists/uneceResponsibleGovernmentAgencyInvolvementCodeList.js\";\nexport * from \"./models/lists/uneceScenarioTypeCodeList.js\";\nexport * from \"./models/lists/uneceSchedulingDocumentCodeList.js\";\nexport * from \"./models/lists/uneceSealConditionCodeList.js\";\nexport * from \"./models/lists/uneceSealingPartyRoleCodeList.js\";\nexport * from \"./models/lists/uneceSoftwareUserTypeCodeList.js\";\nexport * from \"./models/lists/uneceStatusCodeList.js\";\nexport * from \"./models/lists/uneceSubjectCodeList.js\";\nexport * from \"./models/lists/uneceTaxCategoryCodeList.js\";\nexport * from \"./models/lists/uneceTaxExemptionReasonCodeList.js\";\nexport * from \"./models/lists/uneceTaxTypeCodeList.js\";\nexport * from \"./models/lists/uneceTemperatureTypeCodeList.js\";\nexport * from \"./models/lists/uneceTemperatureUnitMeasureCode.js\";\nexport * from \"./models/lists/uneceTimeReferenceCodeList.js\";\nexport * from \"./models/lists/uneceTransportContractMovementCodeList.js\";\nexport * from \"./models/lists/uneceTransportEquipmentCategoryCodeList.js\";\nexport * from \"./models/lists/uneceTransportEquipmentFullnessCodeList.js\";\nexport * from \"./models/lists/uneceTransportEquipmentHaulageArrangementsCodeList.js\";\nexport * from \"./models/lists/uneceTransportEquipmentLegalStatusCodeList.js\";\nexport * from \"./models/lists/uneceTransportEquipmentMovementStatusCodeList.js\";\nexport * from \"./models/lists/uneceTransportEquipmentOperationalStatusCodeList.js\";\nexport * from \"./models/lists/uneceTransportEquipmentSizeTypeCodeList.js\";\nexport * from \"./models/lists/uneceTransportEquipmentSupplierPartyRoleCodeList.js\";\nexport * from \"./models/lists/uneceTransportMeansDirectionCodeList.js\";\nexport * from \"./models/lists/uneceTransportMeansTypeCodeList.js\";\nexport * from \"./models/lists/uneceTransportModeCodeList.js\";\nexport * from \"./models/lists/uneceTransportMovementStageCodeList.js\";\nexport * from \"./models/lists/uneceTransportMovementTypeCodeList.js\";\nexport * from \"./models/lists/uneceTransportServiceCategoryCodeList.js\";\nexport * from \"./models/lists/uneceTransportServiceConditionCodeList.js\";\nexport * from \"./models/lists/uneceTransportServicePaymentArrangementCodeList.js\";\nexport * from \"./models/lists/uneceTransportServicePriorityCodeList.js\";\nexport * from \"./models/lists/uneceTransportServiceRequirementCodeList.js\";\nexport * from \"./models/lists/uneceUnitMeasureCode.js\";\nexport * from \"./models/lists/uneceValidationDocumentStatusCodeList.js\";\nexport * from \"./models/lists/uneceVolumeUnitMeasureCode.js\";\nexport * from \"./models/lists/uneceWeightUnitMeasureCode.js\";\nexport * from \"./models/lists/uneceWorkflowStatusCodeList.js\";\nexport * from \"./models/locode/unLocodeCountries.js\";\nexport * from \"./models/locode/unLocodeCountriesList.js\";\nexport * from \"./models/locode/unLocodeFunctions.js\";\nexport * from \"./models/locode/unLocodeFunctionsList.js\";\nexport * from \"./models/typeCodes/uneceAccreditationTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceAgriculturalCharacteristicTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceAgriculturalProcessTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceAllergyTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceAnimalHoldingEventTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceAssessmentTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceBasicWorkItemTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceCalibratedMeasurementTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceCarriedEquipmentTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceCashTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceChemicalTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceChequeTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceClassificationTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceColourTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceCommunicationEventTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceControlSettingParameterTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceCorrectiveActionTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceCountrySubDivisionTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceCropProduceBatchTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceCropProtectionTreatmentTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceCustomsValuationTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceDigitalMethodTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceDisabilityTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceDocumentCharacteristicTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceEmissionTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceEquipmentTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceFinancialCardTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceFoodChoiceTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceFuelTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceGeopoliticalRegionTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceGoodsCharacteristicTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceGovernmentRegistrationTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceGroupedWorkItemTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceGuestHealthIndicationTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceIOTDeviceTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceInspectionEventTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceIssueTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceLegalOrganizationTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceLegalRegistrationTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceLicenceTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceLocationPartyTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceLogisticsPackagingTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceMDHHealthIndicationTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceMachineTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceMeasurementTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceMetricCharacteristicTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceNegotiationContextTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceObjectTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceObservationObjectiveParameterTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceOperationalParameterTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceOrganizationCharacteristicTypeCodeList.js\";\nexport * from \"./models/typeCodes/unecePaymentFinancialAccountTypeCodeList.js\";\nexport * from \"./models/typeCodes/unecePaymentFinancialInstitutionTypeCodeList.js\";\nexport * from \"./models/typeCodes/unecePaymentTradeSettlementTypeCodeList.js\";\nexport * from \"./models/typeCodes/unecePersonalEffectsTypeCodeList.js\";\nexport * from \"./models/typeCodes/unecePreventiveActionTypeCodeList.js\";\nexport * from \"./models/typeCodes/unecePrintTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceProcessWorkItemTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceProduceTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceProductBatchCharacteristicTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceProductBatchTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceProductCharacteristicConditionTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceProductCharacteristicTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceProductFinishingTreatmentTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceProductionDeviceTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceProductionUnitTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceProductionWasteMaterialComponentTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceProductionWasteMaterialTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceProjectTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceQuantityAnalysisTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceRadioactiveMaterialTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceRangeTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceRequirementTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceSanitaryMeasureTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceScheduleTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceSecurityTagTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceSegmentTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceSensorTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceSpecificationQueryTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceSpecifiedActionTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceSpecifiedChemicalTreatmentTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceSpecifiedDeclarationTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceSpecifiedFaultTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceSpecifiedFeatureTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceSpecifiedInspectionTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceSpecifiedMaterialTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceSpecifiedParameterTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceSpecifiedPeriodTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceStandardTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceStoresItemInventoryTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceSupplyChainEventTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceSupplyChainReferenceTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceSupplyChainTradeLineItemTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceSupplyChainTradeTransactionTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceSupplyPlanTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceSustainabilityCharacteristicTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceSustainabilityInspectionTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceTechnicalCharacteristicTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceTradeProductFeatureTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceTradeProductTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceTransportEventTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceTransportationWasteMaterialComponentTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceTransportationWasteMaterialTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceVoucherTypeCodeList.js\";\nexport * from \"./models/typeCodes/uneceXHEParameterTypeCodeList.js\";\nexport * from \"./models/uneceCodeLists.js\";\nexport * from \"./models/uneceContextType.js\";\nexport * from \"./models/uneceContexts.js\";\nexport * from \"./models/uneceTypes.js\";\n"]}