@c-rex/services 0.1.15 → 0.1.17
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/client-requests.d.mts +304 -0
- package/dist/client-requests.d.ts +304 -0
- package/dist/client-requests.js +795 -0
- package/dist/client-requests.js.map +1 -0
- package/dist/client-requests.mjs +620 -0
- package/dist/client-requests.mjs.map +1 -0
- package/dist/server-requests.d.mts +311 -0
- package/dist/server-requests.d.ts +311 -0
- package/dist/server-requests.js +787 -0
- package/dist/server-requests.js.map +1 -0
- package/dist/server-requests.mjs +612 -0
- package/dist/server-requests.mjs.map +1 -0
- package/package.json +16 -4
- package/dist/index.d.mts +0 -226
- package/dist/index.d.ts +0 -226
- package/dist/index.js +0 -682
- package/dist/index.js.map +0 -1
- package/dist/index.mjs +0 -650
- package/dist/index.mjs.map +0 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/base-client-request.ts","../src/generated/client-requests.ts"],"sourcesContent":["export const baseClientRequest = async <T>(\n endpoint: string,\n queryParams?: Record<string, string | number | boolean | (string | number | boolean)[] | undefined>\n): Promise<T> => {\n\n const res = await fetch(`/api/rpc`, {\n method: 'POST',\n headers: { 'Content-Type': 'application/json' },\n body: JSON.stringify({\n method: \"CrexApi.execute\",\n params: {\n url: endpoint,\n method: \"GET\",\n params: queryParams\n }\n }),\n credentials: 'include',\n });\n\n const json = await res.json();\n\n if (!res.ok) throw new Error(json.error || 'Unknown error');\n\n return json.data;\n}","/**\n * Auto-generated request functions from OpenAPI spec\n * Source: https://staging.c-rex.net/ids/api/swagger/v1/swagger.json\n * Generated: 2025-12-22T14:05:43.687Z\n * Do not edit manually\n */\nimport { baseClientRequest } from '../base-client-request';\nimport type {\n AdministrativeMetadataGetAllQueryParams,\n AdministrativeMetadataGetByIdPathParams,\n AdministrativeMetadataGetByIdQueryParams,\n AdministrativeMetadataModel,\n AfterUsesGetAllQueryParams,\n AfterUsesGetByIdPathParams,\n AfterUsesGetByIdQueryParams,\n CollectionsGetAllQueryParams,\n CollectionsGetByIdPathParams,\n CollectionsGetByIdQueryParams,\n ComponentModel,\n ComponentsGetAllQueryParams,\n ComponentsGetByIdPathParams,\n ComponentsGetByIdQueryParams,\n ConceptsGetAllQueryParams,\n ConceptsGetByIdPathParams,\n ConceptsGetByIdQueryParams,\n ConformitiesGetAllQueryParams,\n ConformitiesGetByIdPathParams,\n ConformitiesGetByIdQueryParams,\n ConsumablesGetAllQueryParams,\n ConsumablesGetByIdPathParams,\n ConsumablesGetByIdQueryParams,\n ContentLifeCycleStatusGetAllQueryParams,\n ContentLifeCycleStatusGetByIdPathParams,\n ContentLifeCycleStatusGetByIdQueryParams,\n ContentLifeCycleStatusModel,\n DesignAndRealizationsGetAllQueryParams,\n DesignAndRealizationsGetByIdPathParams,\n DesignAndRealizationsGetByIdQueryParams,\n DirectoryNodeModel,\n DirectoryNodeTypeModel,\n DirectoryNodeTypesGetAllQueryParams,\n DirectoryNodeTypesGetByIdPathParams,\n DirectoryNodeTypesGetByIdQueryParams,\n DirectoryNodesGetAllQueryParams,\n DirectoryNodesGetByIdPathParams,\n DirectoryNodesGetByIdQueryParams,\n DocumentModel,\n DocumentTypeModel,\n DocumentTypesGetAllQueryParams,\n DocumentTypesGetByIdPathParams,\n DocumentTypesGetByIdQueryParams,\n DocumentationMetadataGetAllQueryParams,\n DocumentationMetadataGetByIdPathParams,\n DocumentationMetadataGetByIdQueryParams,\n DocumentationMetadataModel,\n DocumentsGetAllQueryParams,\n DocumentsGetByIdPathParams,\n DocumentsGetByIdQueryParams,\n DocumentsLanguagesQueryParams,\n DomainEntitiesGetAllQueryParams,\n DomainEntitiesGetByIdPathParams,\n DomainEntitiesGetByIdQueryParams,\n DomainEntityModel,\n DownTimesGetAllQueryParams,\n DownTimesGetByIdPathParams,\n DownTimesGetByIdQueryParams,\n EventModel,\n EventsGetAllQueryParams,\n EventsGetByIdPathParams,\n EventsGetByIdQueryParams,\n FormalitiesGetAllQueryParams,\n FormalitiesGetByIdPathParams,\n FormalitiesGetByIdQueryParams,\n FormsGetAllQueryParams,\n FormsGetByIdPathParams,\n FormsGetByIdQueryParams,\n FragmentModel,\n FragmentsGetAllQueryParams,\n FragmentsGetByIdPathParams,\n FragmentsGetByIdQueryParams,\n FragmentsLanguagesQueryParams,\n FunctionalMetadataModel,\n FunctionalMetadatasGetAllQueryParams,\n FunctionalMetadatasGetByIdPathParams,\n FunctionalMetadatasGetByIdQueryParams,\n FunctionalitiesGetAllQueryParams,\n FunctionalitiesGetByIdPathParams,\n FunctionalitiesGetByIdQueryParams,\n GroupsGetAllQueryParams,\n GroupsGetByIdPathParams,\n GroupsGetByIdQueryParams,\n HardwareToolsGetAllQueryParams,\n HardwareToolsGetByIdPathParams,\n HardwareToolsGetByIdQueryParams,\n IdentitiesGetAllQueryParams,\n IdentitiesGetByIdPathParams,\n IdentitiesGetByIdQueryParams,\n IdentityDomainModel,\n IdentityDomainsGetAllQueryParams,\n IdentityDomainsGetByIdPathParams,\n IdentityDomainsGetByIdQueryParams,\n IdentityModel,\n IndividualsGetAllQueryParams,\n IndividualsGetByIdPathParams,\n IndividualsGetByIdQueryParams,\n InformationObjectModel,\n InformationObjectsGetAllQueryParams,\n InformationObjectsGetByIdPathParams,\n InformationObjectsGetByIdQueryParams,\n InformationSubjectCollectionModel,\n InformationSubjectConformityModel,\n InformationSubjectFormalityModel,\n InformationSubjectFunctionalityModel,\n InformationSubjectModel,\n InformationSubjectProcessModel,\n InformationSubjectSafetyModel,\n InformationSubjectSafetyWarningMessageModel,\n InformationSubjectTechnicalDataModel,\n InformationSubjectTechnicalOverviewModel,\n InformationSubjectsGetAllQueryParams,\n InformationSubjectsGetByIdPathParams,\n InformationSubjectsGetByIdQueryParams,\n InformationTypeModel,\n InformationTypesGetAllQueryParams,\n InformationTypesGetByIdPathParams,\n InformationTypesGetByIdQueryParams,\n InformationUnitModel,\n InformationUnitsGetAllQueryParams,\n InformationUnitsGetByIdPathParams,\n InformationUnitsGetByIdQueryParams,\n InformationUnitsLanguagesQueryParams,\n LearningsGetAllQueryParams,\n LearningsGetByIdPathParams,\n LearningsGetByIdQueryParams,\n LocationsGetAllQueryParams,\n LocationsGetByIdPathParams,\n LocationsGetByIdQueryParams,\n LubricantsGetAllQueryParams,\n LubricantsGetByIdPathParams,\n LubricantsGetByIdQueryParams,\n MaintenanceIntervalsGetAllQueryParams,\n MaintenanceIntervalsGetByIdPathParams,\n MaintenanceIntervalsGetByIdQueryParams,\n OperatingSuppliesGetAllQueryParams,\n OperatingSuppliesGetByIdPathParams,\n OperatingSuppliesGetByIdQueryParams,\n OrganizationsGetAllQueryParams,\n OrganizationsGetByIdPathParams,\n OrganizationsGetByIdQueryParams,\n PackageModel,\n PackagesCreateClientAppQueryParams,\n PackagesGetAllQueryParams,\n PackagesGetByIdPathParams,\n PackagesGetByIdQueryParams,\n PackagesLanguagesQueryParams,\n PartiesGetAllQueryParams,\n PartiesGetByIdPathParams,\n PartiesGetByIdQueryParams,\n PartyModel,\n PlanningDownTimeModel,\n PlanningMaintenanceIntervalModel,\n PlanningSetupTimeModel,\n PlanningTimeModel,\n PlanningTimesGetAllQueryParams,\n PlanningTimesGetByIdPathParams,\n PlanningTimesGetByIdQueryParams,\n PlanningWorkingTimeModel,\n ProcessesGetAllQueryParams,\n ProcessesGetByIdPathParams,\n ProcessesGetByIdQueryParams,\n ProductFeatureModel,\n ProductFeaturesGetAllQueryParams,\n ProductFeaturesGetByIdPathParams,\n ProductFeaturesGetByIdQueryParams,\n ProductFunctionModel,\n ProductFunctionsGetAllQueryParams,\n ProductFunctionsGetByIdPathParams,\n ProductFunctionsGetByIdQueryParams,\n ProductLcpAfterUseModel,\n ProductLcpDesignAndRealizationModel,\n ProductLcpPuttingToUseModel,\n ProductLcpUseModel,\n ProductLifeCyclePhaseModel,\n ProductLifeCyclePhasesGetAllQueryParams,\n ProductLifeCyclePhasesGetByIdPathParams,\n ProductLifeCyclePhasesGetByIdQueryParams,\n ProductMetadataGetAllQueryParams,\n ProductMetadataGetByIdPathParams,\n ProductMetadataGetByIdQueryParams,\n ProductMetadataModel,\n ProductPropertiesGetAllQueryParams,\n ProductPropertiesGetByIdPathParams,\n ProductPropertiesGetByIdQueryParams,\n ProductPropertyModel,\n ProductVariantModel,\n ProductVariantsGetAllQueryParams,\n ProductVariantsGetByIdPathParams,\n ProductVariantsGetByIdQueryParams,\n PuttingToUsesGetAllQueryParams,\n PuttingToUsesGetByIdPathParams,\n PuttingToUsesGetByIdQueryParams,\n QualificationModel,\n QualificationRoleModel,\n QualificationSkillLevelModel,\n QualificationsGetAllQueryParams,\n QualificationsGetByIdPathParams,\n QualificationsGetByIdQueryParams,\n ReferencesGetAllQueryParams,\n ReferencesGetByIdPathParams,\n ReferencesGetByIdQueryParams,\n RenditionModel,\n RenditionsGetAllQueryParams,\n RenditionsGetByIdPathParams,\n RenditionsGetByIdQueryParams,\n RenditionsGetWithBinaryWithBinaryPathPathParams,\n ResourcesDownloadResourcePathParams,\n ResourcesDownloadResourceWithBinaryPathPathParams,\n ResourcesGetPackagePathParams,\n ResourcesGetPackageQueryParams,\n ResourcesGetSubjectFromPackagePathParams,\n ResourcesGetSubjectFromPackageQueryParams,\n ResourcesViewResourcePathParams,\n ResourcesViewResourceWithBinaryPathPathParams,\n ResultContainerModel,\n RolesGetAllQueryParams,\n RolesGetByIdPathParams,\n RolesGetByIdQueryParams,\n SafetiesGetAllQueryParams,\n SafetiesGetByIdPathParams,\n SafetiesGetByIdQueryParams,\n SearchGetAllQueryParams,\n SetupTimesGetAllQueryParams,\n SetupTimesGetByIdPathParams,\n SetupTimesGetByIdQueryParams,\n SkillLevelsGetAllQueryParams,\n SkillLevelsGetByIdPathParams,\n SkillLevelsGetByIdQueryParams,\n SparQLExecuteSparQlPathParams,\n SparePartsGetAllQueryParams,\n SparePartsGetByIdPathParams,\n SparePartsGetByIdQueryParams,\n SuppliesGetAllQueryParams,\n SuppliesGetByIdPathParams,\n SuppliesGetByIdQueryParams,\n SupplyConsumableModel,\n SupplyHardwareToolModel,\n SupplyLubricantModel,\n SupplyModel,\n SupplyOperatingModel,\n SupplySparePartModel,\n TasksGetAllQueryParams,\n TasksGetByIdPathParams,\n TasksGetByIdQueryParams,\n TechnicalDataGetAllQueryParams,\n TechnicalDataGetByIdPathParams,\n TechnicalDataGetByIdQueryParams,\n TechnicalOverviewsGetAllQueryParams,\n TechnicalOverviewsGetByIdPathParams,\n TechnicalOverviewsGetByIdQueryParams,\n TopicModel,\n TopicTypeConceptModel,\n TopicTypeFormModel,\n TopicTypeLearningModel,\n TopicTypeModel,\n TopicTypeReferenceModel,\n TopicTypeTaskModel,\n TopicTypeTroubleShootingModel,\n TopicTypesGetAllQueryParams,\n TopicTypesGetByIdPathParams,\n TopicTypesGetByIdQueryParams,\n TopicsGetAllQueryParams,\n TopicsGetByIdPathParams,\n TopicsGetByIdQueryParams,\n TopicsLanguagesQueryParams,\n TroubleShootingsGetAllQueryParams,\n TroubleShootingsGetByIdPathParams,\n TroubleShootingsGetByIdQueryParams,\n UsesGetAllQueryParams,\n UsesGetByIdPathParams,\n UsesGetByIdQueryParams,\n VCardGroupModel,\n VCardIndividualModel,\n VCardLocationModel,\n VCardModel,\n VCardOrganizationModel,\n VCardsGetAllQueryParams,\n VCardsGetByIdPathParams,\n VCardsGetByIdQueryParams,\n WarningMessagesGetAllQueryParams,\n WarningMessagesGetByIdPathParams,\n WarningMessagesGetByIdQueryParams,\n WorkingTimesGetAllQueryParams,\n WorkingTimesGetByIdPathParams,\n WorkingTimesGetByIdQueryParams\n} from '@c-rex/interfaces';\n\n/** Get all entities by given criteria */\nexport const administrativeMetadataGetAllClient = async (query?: Partial<AdministrativeMetadataGetAllQueryParams>): Promise<ResultContainerModel<AdministrativeMetadataModel>> => {\n return baseClientRequest<ResultContainerModel<AdministrativeMetadataModel>>('AdministrativeMetadata', query);\n};\n\n/** Get an entity by its id */\nexport const administrativeMetadataGetByIdClient = async (params: AdministrativeMetadataGetByIdPathParams, query?: Partial<AdministrativeMetadataGetByIdQueryParams>): Promise<AdministrativeMetadataModel> => {\n return baseClientRequest<AdministrativeMetadataModel>(`AdministrativeMetadata/${params.id}`, query);\n};\n\n/** Get all entities by given criteria */\nexport const afterUsesGetAllClient = async (query?: Partial<AfterUsesGetAllQueryParams>): Promise<ResultContainerModel<ProductLcpAfterUseModel>> => {\n return baseClientRequest<ResultContainerModel<ProductLcpAfterUseModel>>('AfterUses', query);\n};\n\n/** Get an entity by its id */\nexport const afterUsesGetByIdClient = async (params: AfterUsesGetByIdPathParams, query?: Partial<AfterUsesGetByIdQueryParams>): Promise<ProductLcpAfterUseModel> => {\n return baseClientRequest<ProductLcpAfterUseModel>(`AfterUses/${params.id}`, query);\n};\n\n/** Get all entities by given criteria */\nexport const collectionsGetAllClient = async (query?: Partial<CollectionsGetAllQueryParams>): Promise<ResultContainerModel<InformationSubjectCollectionModel>> => {\n return baseClientRequest<ResultContainerModel<InformationSubjectCollectionModel>>('Collections', query);\n};\n\n/** Get an entity by its id */\nexport const collectionsGetByIdClient = async (params: CollectionsGetByIdPathParams, query?: Partial<CollectionsGetByIdQueryParams>): Promise<InformationSubjectCollectionModel> => {\n return baseClientRequest<InformationSubjectCollectionModel>(`Collections/${params.id}`, query);\n};\n\n/** Get all entities by given criteria */\nexport const componentsGetAllClient = async (query?: Partial<ComponentsGetAllQueryParams>): Promise<ResultContainerModel<ComponentModel>> => {\n return baseClientRequest<ResultContainerModel<ComponentModel>>('Components', query);\n};\n\n/** Get an entity by its id */\nexport const componentsGetByIdClient = async (params: ComponentsGetByIdPathParams, query?: Partial<ComponentsGetByIdQueryParams>): Promise<ComponentModel> => {\n return baseClientRequest<ComponentModel>(`Components/${params.id}`, query);\n};\n\n/** Get all entities by given criteria */\nexport const conceptsGetAllClient = async (query?: Partial<ConceptsGetAllQueryParams>): Promise<ResultContainerModel<TopicTypeConceptModel>> => {\n return baseClientRequest<ResultContainerModel<TopicTypeConceptModel>>('Concepts', query);\n};\n\n/** Get an entity by its id */\nexport const conceptsGetByIdClient = async (params: ConceptsGetByIdPathParams, query?: Partial<ConceptsGetByIdQueryParams>): Promise<TopicTypeConceptModel> => {\n return baseClientRequest<TopicTypeConceptModel>(`Concepts/${params.id}`, query);\n};\n\n/** Get all entities by given criteria */\nexport const conformitiesGetAllClient = async (query?: Partial<ConformitiesGetAllQueryParams>): Promise<ResultContainerModel<InformationSubjectConformityModel>> => {\n return baseClientRequest<ResultContainerModel<InformationSubjectConformityModel>>('Conformities', query);\n};\n\n/** Get an entity by its id */\nexport const conformitiesGetByIdClient = async (params: ConformitiesGetByIdPathParams, query?: Partial<ConformitiesGetByIdQueryParams>): Promise<InformationSubjectConformityModel> => {\n return baseClientRequest<InformationSubjectConformityModel>(`Conformities/${params.id}`, query);\n};\n\n/** Get all entities by given criteria */\nexport const consumablesGetAllClient = async (query?: Partial<ConsumablesGetAllQueryParams>): Promise<ResultContainerModel<SupplyConsumableModel>> => {\n return baseClientRequest<ResultContainerModel<SupplyConsumableModel>>('Consumables', query);\n};\n\n/** Get an entity by its id */\nexport const consumablesGetByIdClient = async (params: ConsumablesGetByIdPathParams, query?: Partial<ConsumablesGetByIdQueryParams>): Promise<SupplyConsumableModel> => {\n return baseClientRequest<SupplyConsumableModel>(`Consumables/${params.id}`, query);\n};\n\n/** Get all entities by given criteria */\nexport const contentLifeCycleStatusGetAllClient = async (query?: Partial<ContentLifeCycleStatusGetAllQueryParams>): Promise<ResultContainerModel<ContentLifeCycleStatusModel>> => {\n return baseClientRequest<ResultContainerModel<ContentLifeCycleStatusModel>>('ContentLifeCycleStatus', query);\n};\n\n/** Get an entity by its id */\nexport const contentLifeCycleStatusGetByIdClient = async (params: ContentLifeCycleStatusGetByIdPathParams, query?: Partial<ContentLifeCycleStatusGetByIdQueryParams>): Promise<ContentLifeCycleStatusModel> => {\n return baseClientRequest<ContentLifeCycleStatusModel>(`ContentLifeCycleStatus/${params.id}`, query);\n};\n\n/** Get all entities by given criteria */\nexport const designAndRealizationsGetAllClient = async (query?: Partial<DesignAndRealizationsGetAllQueryParams>): Promise<ResultContainerModel<ProductLcpDesignAndRealizationModel>> => {\n return baseClientRequest<ResultContainerModel<ProductLcpDesignAndRealizationModel>>('DesignAndRealizations', query);\n};\n\n/** Get an entity by its id */\nexport const designAndRealizationsGetByIdClient = async (params: DesignAndRealizationsGetByIdPathParams, query?: Partial<DesignAndRealizationsGetByIdQueryParams>): Promise<ProductLcpDesignAndRealizationModel> => {\n return baseClientRequest<ProductLcpDesignAndRealizationModel>(`DesignAndRealizations/${params.id}`, query);\n};\n\n/** Get all entities by given criteria */\nexport const directoryNodesGetAllClient = async (query?: Partial<DirectoryNodesGetAllQueryParams>): Promise<ResultContainerModel<DirectoryNodeModel>> => {\n return baseClientRequest<ResultContainerModel<DirectoryNodeModel>>('DirectoryNodes', query);\n};\n\n/** Get an entity by its id */\nexport const directoryNodesGetByIdClient = async (params: DirectoryNodesGetByIdPathParams, query?: Partial<DirectoryNodesGetByIdQueryParams>): Promise<DirectoryNodeModel> => {\n return baseClientRequest<DirectoryNodeModel>(`DirectoryNodes/${params.id}`, query);\n};\n\n/** Get all entities by given criteria */\nexport const directoryNodeTypesGetAllClient = async (query?: Partial<DirectoryNodeTypesGetAllQueryParams>): Promise<ResultContainerModel<DirectoryNodeTypeModel>> => {\n return baseClientRequest<ResultContainerModel<DirectoryNodeTypeModel>>('DirectoryNodeTypes', query);\n};\n\n/** Get an entity by its id */\nexport const directoryNodeTypesGetByIdClient = async (params: DirectoryNodeTypesGetByIdPathParams, query?: Partial<DirectoryNodeTypesGetByIdQueryParams>): Promise<DirectoryNodeTypeModel> => {\n return baseClientRequest<DirectoryNodeTypeModel>(`DirectoryNodeTypes/${params.id}`, query);\n};\n\n/** Get all entities by given criteria */\nexport const documentationMetadataGetAllClient = async (query?: Partial<DocumentationMetadataGetAllQueryParams>): Promise<ResultContainerModel<DocumentationMetadataModel>> => {\n return baseClientRequest<ResultContainerModel<DocumentationMetadataModel>>('DocumentationMetadata', query);\n};\n\n/** Get an entity by its id */\nexport const documentationMetadataGetByIdClient = async (params: DocumentationMetadataGetByIdPathParams, query?: Partial<DocumentationMetadataGetByIdQueryParams>): Promise<DocumentationMetadataModel> => {\n return baseClientRequest<DocumentationMetadataModel>(`DocumentationMetadata/${params.id}`, query);\n};\n\n/** Get all entities by given criteria */\nexport const documentsGetAllClient = async (query?: Partial<DocumentsGetAllQueryParams>): Promise<ResultContainerModel<DocumentModel>> => {\n return baseClientRequest<ResultContainerModel<DocumentModel>>('Documents', query);\n};\n\n/** Get an entity by its id */\nexport const documentsGetByIdClient = async (params: DocumentsGetByIdPathParams, query?: Partial<DocumentsGetByIdQueryParams>): Promise<DocumentModel> => {\n return baseClientRequest<DocumentModel>(`Documents/${params.id}`, query);\n};\n\n/** Languages used by indexed terms */\nexport const documentsLanguagesClient = async (query?: Partial<DocumentsLanguagesQueryParams>): Promise<unknown> => {\n return baseClientRequest<unknown>('Documents/Languages', query);\n};\n\n/** Get all entities by given criteria */\nexport const documentTypesGetAllClient = async (query?: Partial<DocumentTypesGetAllQueryParams>): Promise<ResultContainerModel<DocumentTypeModel>> => {\n return baseClientRequest<ResultContainerModel<DocumentTypeModel>>('DocumentTypes', query);\n};\n\n/** Get an entity by its id */\nexport const documentTypesGetByIdClient = async (params: DocumentTypesGetByIdPathParams, query?: Partial<DocumentTypesGetByIdQueryParams>): Promise<DocumentTypeModel> => {\n return baseClientRequest<DocumentTypeModel>(`DocumentTypes/${params.id}`, query);\n};\n\n/** Get all entities by given criteria */\nexport const domainEntitiesGetAllClient = async (query?: Partial<DomainEntitiesGetAllQueryParams>): Promise<ResultContainerModel<DomainEntityModel>> => {\n return baseClientRequest<ResultContainerModel<DomainEntityModel>>('DomainEntities', query);\n};\n\n/** Get an entity by its id */\nexport const domainEntitiesGetByIdClient = async (params: DomainEntitiesGetByIdPathParams, query?: Partial<DomainEntitiesGetByIdQueryParams>): Promise<DomainEntityModel> => {\n return baseClientRequest<DomainEntityModel>(`DomainEntities/${params.id}`, query);\n};\n\n/** Get all entities by given criteria */\nexport const downTimesGetAllClient = async (query?: Partial<DownTimesGetAllQueryParams>): Promise<ResultContainerModel<PlanningDownTimeModel>> => {\n return baseClientRequest<ResultContainerModel<PlanningDownTimeModel>>('DownTimes', query);\n};\n\n/** Get an entity by its id */\nexport const downTimesGetByIdClient = async (params: DownTimesGetByIdPathParams, query?: Partial<DownTimesGetByIdQueryParams>): Promise<PlanningDownTimeModel> => {\n return baseClientRequest<PlanningDownTimeModel>(`DownTimes/${params.id}`, query);\n};\n\n/** Get all entities by given criteria */\nexport const eventsGetAllClient = async (query?: Partial<EventsGetAllQueryParams>): Promise<ResultContainerModel<EventModel>> => {\n return baseClientRequest<ResultContainerModel<EventModel>>('Events', query);\n};\n\n/** Get an entity by its id */\nexport const eventsGetByIdClient = async (params: EventsGetByIdPathParams, query?: Partial<EventsGetByIdQueryParams>): Promise<EventModel> => {\n return baseClientRequest<EventModel>(`Events/${params.id}`, query);\n};\n\n/** Get all entities by given criteria */\nexport const formalitiesGetAllClient = async (query?: Partial<FormalitiesGetAllQueryParams>): Promise<ResultContainerModel<InformationSubjectFormalityModel>> => {\n return baseClientRequest<ResultContainerModel<InformationSubjectFormalityModel>>('Formalities', query);\n};\n\n/** Get an entity by its id */\nexport const formalitiesGetByIdClient = async (params: FormalitiesGetByIdPathParams, query?: Partial<FormalitiesGetByIdQueryParams>): Promise<InformationSubjectFormalityModel> => {\n return baseClientRequest<InformationSubjectFormalityModel>(`Formalities/${params.id}`, query);\n};\n\n/** Get all entities by given criteria */\nexport const formsGetAllClient = async (query?: Partial<FormsGetAllQueryParams>): Promise<ResultContainerModel<TopicTypeFormModel>> => {\n return baseClientRequest<ResultContainerModel<TopicTypeFormModel>>('Forms', query);\n};\n\n/** Get an entity by its id */\nexport const formsGetByIdClient = async (params: FormsGetByIdPathParams, query?: Partial<FormsGetByIdQueryParams>): Promise<TopicTypeFormModel> => {\n return baseClientRequest<TopicTypeFormModel>(`Forms/${params.id}`, query);\n};\n\n/** Get all entities by given criteria */\nexport const fragmentsGetAllClient = async (query?: Partial<FragmentsGetAllQueryParams>): Promise<ResultContainerModel<FragmentModel>> => {\n return baseClientRequest<ResultContainerModel<FragmentModel>>('Fragments', query);\n};\n\n/** Get an entity by its id */\nexport const fragmentsGetByIdClient = async (params: FragmentsGetByIdPathParams, query?: Partial<FragmentsGetByIdQueryParams>): Promise<FragmentModel> => {\n return baseClientRequest<FragmentModel>(`Fragments/${params.id}`, query);\n};\n\n/** Languages used by indexed terms */\nexport const fragmentsLanguagesClient = async (query?: Partial<FragmentsLanguagesQueryParams>): Promise<unknown> => {\n return baseClientRequest<unknown>('Fragments/Languages', query);\n};\n\n/** Get all entities by given criteria */\nexport const functionalitiesGetAllClient = async (query?: Partial<FunctionalitiesGetAllQueryParams>): Promise<ResultContainerModel<InformationSubjectFunctionalityModel>> => {\n return baseClientRequest<ResultContainerModel<InformationSubjectFunctionalityModel>>('Functionalities', query);\n};\n\n/** Get an entity by its id */\nexport const functionalitiesGetByIdClient = async (params: FunctionalitiesGetByIdPathParams, query?: Partial<FunctionalitiesGetByIdQueryParams>): Promise<InformationSubjectFunctionalityModel> => {\n return baseClientRequest<InformationSubjectFunctionalityModel>(`Functionalities/${params.id}`, query);\n};\n\n/** Get all entities by given criteria */\nexport const functionalMetadatasGetAllClient = async (query?: Partial<FunctionalMetadatasGetAllQueryParams>): Promise<ResultContainerModel<FunctionalMetadataModel>> => {\n return baseClientRequest<ResultContainerModel<FunctionalMetadataModel>>('FunctionalMetadatas', query);\n};\n\n/** Get an entity by its id */\nexport const functionalMetadatasGetByIdClient = async (params: FunctionalMetadatasGetByIdPathParams, query?: Partial<FunctionalMetadatasGetByIdQueryParams>): Promise<FunctionalMetadataModel> => {\n return baseClientRequest<FunctionalMetadataModel>(`FunctionalMetadatas/${params.id}`, query);\n};\n\n/** Get all entities by given criteria */\nexport const groupsGetAllClient = async (query?: Partial<GroupsGetAllQueryParams>): Promise<ResultContainerModel<VCardGroupModel>> => {\n return baseClientRequest<ResultContainerModel<VCardGroupModel>>('Groups', query);\n};\n\n/** Get an entity by its id */\nexport const groupsGetByIdClient = async (params: GroupsGetByIdPathParams, query?: Partial<GroupsGetByIdQueryParams>): Promise<VCardGroupModel> => {\n return baseClientRequest<VCardGroupModel>(`Groups/${params.id}`, query);\n};\n\n/** Get all entities by given criteria */\nexport const hardwareToolsGetAllClient = async (query?: Partial<HardwareToolsGetAllQueryParams>): Promise<ResultContainerModel<SupplyHardwareToolModel>> => {\n return baseClientRequest<ResultContainerModel<SupplyHardwareToolModel>>('HardwareTools', query);\n};\n\n/** Get an entity by its id */\nexport const hardwareToolsGetByIdClient = async (params: HardwareToolsGetByIdPathParams, query?: Partial<HardwareToolsGetByIdQueryParams>): Promise<SupplyHardwareToolModel> => {\n return baseClientRequest<SupplyHardwareToolModel>(`HardwareTools/${params.id}`, query);\n};\n\n/** Get all entities by given criteria */\nexport const identitiesGetAllClient = async (query?: Partial<IdentitiesGetAllQueryParams>): Promise<ResultContainerModel<IdentityModel>> => {\n return baseClientRequest<ResultContainerModel<IdentityModel>>('Identities', query);\n};\n\n/** Get an entity by its id */\nexport const identitiesGetByIdClient = async (params: IdentitiesGetByIdPathParams, query?: Partial<IdentitiesGetByIdQueryParams>): Promise<IdentityModel> => {\n return baseClientRequest<IdentityModel>(`Identities/${params.id}`, query);\n};\n\n/** Get all entities by given criteria */\nexport const identityDomainsGetAllClient = async (query?: Partial<IdentityDomainsGetAllQueryParams>): Promise<ResultContainerModel<IdentityDomainModel>> => {\n return baseClientRequest<ResultContainerModel<IdentityDomainModel>>('IdentityDomains', query);\n};\n\n/** Get an entity by its id */\nexport const identityDomainsGetByIdClient = async (params: IdentityDomainsGetByIdPathParams, query?: Partial<IdentityDomainsGetByIdQueryParams>): Promise<IdentityDomainModel> => {\n return baseClientRequest<IdentityDomainModel>(`IdentityDomains/${params.id}`, query);\n};\n\n/** Get all entities by given criteria */\nexport const individualsGetAllClient = async (query?: Partial<IndividualsGetAllQueryParams>): Promise<ResultContainerModel<VCardIndividualModel>> => {\n return baseClientRequest<ResultContainerModel<VCardIndividualModel>>('Individuals', query);\n};\n\n/** Get an entity by its id */\nexport const individualsGetByIdClient = async (params: IndividualsGetByIdPathParams, query?: Partial<IndividualsGetByIdQueryParams>): Promise<VCardIndividualModel> => {\n return baseClientRequest<VCardIndividualModel>(`Individuals/${params.id}`, query);\n};\n\n/** Get all entities by given criteria */\nexport const informationObjectsGetAllClient = async (query?: Partial<InformationObjectsGetAllQueryParams>): Promise<ResultContainerModel<InformationObjectModel>> => {\n return baseClientRequest<ResultContainerModel<InformationObjectModel>>('InformationObjects', query);\n};\n\n/** Get an entity by its id */\nexport const informationObjectsGetByIdClient = async (params: InformationObjectsGetByIdPathParams, query?: Partial<InformationObjectsGetByIdQueryParams>): Promise<InformationObjectModel> => {\n return baseClientRequest<InformationObjectModel>(`InformationObjects/${params.id}`, query);\n};\n\n/** Get all entities by given criteria */\nexport const informationSubjectsGetAllClient = async (query?: Partial<InformationSubjectsGetAllQueryParams>): Promise<ResultContainerModel<InformationSubjectModel>> => {\n return baseClientRequest<ResultContainerModel<InformationSubjectModel>>('InformationSubjects', query);\n};\n\n/** Get an entity by its id */\nexport const informationSubjectsGetByIdClient = async (params: InformationSubjectsGetByIdPathParams, query?: Partial<InformationSubjectsGetByIdQueryParams>): Promise<InformationSubjectModel> => {\n return baseClientRequest<InformationSubjectModel>(`InformationSubjects/${params.id}`, query);\n};\n\n/** Get all entities by given criteria */\nexport const informationTypesGetAllClient = async (query?: Partial<InformationTypesGetAllQueryParams>): Promise<ResultContainerModel<InformationTypeModel>> => {\n return baseClientRequest<ResultContainerModel<InformationTypeModel>>('InformationTypes', query);\n};\n\n/** Get an entity by its id */\nexport const informationTypesGetByIdClient = async (params: InformationTypesGetByIdPathParams, query?: Partial<InformationTypesGetByIdQueryParams>): Promise<InformationTypeModel> => {\n return baseClientRequest<InformationTypeModel>(`InformationTypes/${params.id}`, query);\n};\n\n/** Get all entities by given criteria */\nexport const informationUnitsGetAllClient = async (query?: Partial<InformationUnitsGetAllQueryParams>): Promise<ResultContainerModel<InformationUnitModel>> => {\n return baseClientRequest<ResultContainerModel<InformationUnitModel>>('InformationUnits', query);\n};\n\n/** Get an entity by its id */\nexport const informationUnitsGetByIdClient = async (params: InformationUnitsGetByIdPathParams, query?: Partial<InformationUnitsGetByIdQueryParams>): Promise<InformationUnitModel> => {\n return baseClientRequest<InformationUnitModel>(`InformationUnits/${params.id}`, query);\n};\n\n/** Languages used by indexed terms */\nexport const informationUnitsLanguagesClient = async (query?: Partial<InformationUnitsLanguagesQueryParams>): Promise<unknown> => {\n return baseClientRequest<unknown>('InformationUnits/Languages', query);\n};\n\n/** Get all entities by given criteria */\nexport const learningsGetAllClient = async (query?: Partial<LearningsGetAllQueryParams>): Promise<ResultContainerModel<TopicTypeLearningModel>> => {\n return baseClientRequest<ResultContainerModel<TopicTypeLearningModel>>('Learnings', query);\n};\n\n/** Get an entity by its id */\nexport const learningsGetByIdClient = async (params: LearningsGetByIdPathParams, query?: Partial<LearningsGetByIdQueryParams>): Promise<TopicTypeLearningModel> => {\n return baseClientRequest<TopicTypeLearningModel>(`Learnings/${params.id}`, query);\n};\n\n/** Get all entities by given criteria */\nexport const locationsGetAllClient = async (query?: Partial<LocationsGetAllQueryParams>): Promise<ResultContainerModel<VCardLocationModel>> => {\n return baseClientRequest<ResultContainerModel<VCardLocationModel>>('Locations', query);\n};\n\n/** Get an entity by its id */\nexport const locationsGetByIdClient = async (params: LocationsGetByIdPathParams, query?: Partial<LocationsGetByIdQueryParams>): Promise<VCardLocationModel> => {\n return baseClientRequest<VCardLocationModel>(`Locations/${params.id}`, query);\n};\n\n/** Get all entities by given criteria */\nexport const lubricantsGetAllClient = async (query?: Partial<LubricantsGetAllQueryParams>): Promise<ResultContainerModel<SupplyLubricantModel>> => {\n return baseClientRequest<ResultContainerModel<SupplyLubricantModel>>('Lubricants', query);\n};\n\n/** Get an entity by its id */\nexport const lubricantsGetByIdClient = async (params: LubricantsGetByIdPathParams, query?: Partial<LubricantsGetByIdQueryParams>): Promise<SupplyLubricantModel> => {\n return baseClientRequest<SupplyLubricantModel>(`Lubricants/${params.id}`, query);\n};\n\n/** Get all entities by given criteria */\nexport const maintenanceIntervalsGetAllClient = async (query?: Partial<MaintenanceIntervalsGetAllQueryParams>): Promise<ResultContainerModel<PlanningMaintenanceIntervalModel>> => {\n return baseClientRequest<ResultContainerModel<PlanningMaintenanceIntervalModel>>('MaintenanceIntervals', query);\n};\n\n/** Get an entity by its id */\nexport const maintenanceIntervalsGetByIdClient = async (params: MaintenanceIntervalsGetByIdPathParams, query?: Partial<MaintenanceIntervalsGetByIdQueryParams>): Promise<PlanningMaintenanceIntervalModel> => {\n return baseClientRequest<PlanningMaintenanceIntervalModel>(`MaintenanceIntervals/${params.id}`, query);\n};\n\n/** Get all entities by given criteria */\nexport const operatingSuppliesGetAllClient = async (query?: Partial<OperatingSuppliesGetAllQueryParams>): Promise<ResultContainerModel<SupplyOperatingModel>> => {\n return baseClientRequest<ResultContainerModel<SupplyOperatingModel>>('OperatingSupplies', query);\n};\n\n/** Get an entity by its id */\nexport const operatingSuppliesGetByIdClient = async (params: OperatingSuppliesGetByIdPathParams, query?: Partial<OperatingSuppliesGetByIdQueryParams>): Promise<SupplyOperatingModel> => {\n return baseClientRequest<SupplyOperatingModel>(`OperatingSupplies/${params.id}`, query);\n};\n\n/** Get all entities by given criteria */\nexport const organizationsGetAllClient = async (query?: Partial<OrganizationsGetAllQueryParams>): Promise<ResultContainerModel<VCardOrganizationModel>> => {\n return baseClientRequest<ResultContainerModel<VCardOrganizationModel>>('Organizations', query);\n};\n\n/** Get an entity by its id */\nexport const organizationsGetByIdClient = async (params: OrganizationsGetByIdPathParams, query?: Partial<OrganizationsGetByIdQueryParams>): Promise<VCardOrganizationModel> => {\n return baseClientRequest<VCardOrganizationModel>(`Organizations/${params.id}`, query);\n};\n\n/** Create an Offline Client App from the given Repositories */\nexport const packagesCreateClientAppClient = async (query?: Partial<PackagesCreateClientAppQueryParams>): Promise<unknown> => {\n return baseClientRequest<unknown>('ids/v1/Packages/CreateClientApp', query);\n};\n\n/** Get all entities by given criteria */\nexport const packagesGetAllClient = async (query?: Partial<PackagesGetAllQueryParams>): Promise<ResultContainerModel<PackageModel>> => {\n return baseClientRequest<ResultContainerModel<PackageModel>>('Packages', query);\n};\n\n/** Get an entity by its id */\nexport const packagesGetByIdClient = async (params: PackagesGetByIdPathParams, query?: Partial<PackagesGetByIdQueryParams>): Promise<PackageModel> => {\n return baseClientRequest<PackageModel>(`Packages/${params.id}`, query);\n};\n\n/** Languages used by indexed terms */\nexport const packagesLanguagesClient = async (query?: Partial<PackagesLanguagesQueryParams>): Promise<unknown> => {\n return baseClientRequest<unknown>('Packages/Languages', query);\n};\n\n/** Get all entities by given criteria */\nexport const partiesGetAllClient = async (query?: Partial<PartiesGetAllQueryParams>): Promise<ResultContainerModel<PartyModel>> => {\n return baseClientRequest<ResultContainerModel<PartyModel>>('Parties', query);\n};\n\n/** Get an entity by its id */\nexport const partiesGetByIdClient = async (params: PartiesGetByIdPathParams, query?: Partial<PartiesGetByIdQueryParams>): Promise<PartyModel> => {\n return baseClientRequest<PartyModel>(`Parties/${params.id}`, query);\n};\n\n/** Get all entities by given criteria */\nexport const planningTimesGetAllClient = async (query?: Partial<PlanningTimesGetAllQueryParams>): Promise<ResultContainerModel<PlanningTimeModel>> => {\n return baseClientRequest<ResultContainerModel<PlanningTimeModel>>('PlanningTimes', query);\n};\n\n/** Get an entity by its id */\nexport const planningTimesGetByIdClient = async (params: PlanningTimesGetByIdPathParams, query?: Partial<PlanningTimesGetByIdQueryParams>): Promise<PlanningTimeModel> => {\n return baseClientRequest<PlanningTimeModel>(`PlanningTimes/${params.id}`, query);\n};\n\n/** Get all entities by given criteria */\nexport const processesGetAllClient = async (query?: Partial<ProcessesGetAllQueryParams>): Promise<ResultContainerModel<InformationSubjectProcessModel>> => {\n return baseClientRequest<ResultContainerModel<InformationSubjectProcessModel>>('Processes', query);\n};\n\n/** Get an entity by its id */\nexport const processesGetByIdClient = async (params: ProcessesGetByIdPathParams, query?: Partial<ProcessesGetByIdQueryParams>): Promise<InformationSubjectProcessModel> => {\n return baseClientRequest<InformationSubjectProcessModel>(`Processes/${params.id}`, query);\n};\n\n/** Get all entities by given criteria */\nexport const productFeaturesGetAllClient = async (query?: Partial<ProductFeaturesGetAllQueryParams>): Promise<ResultContainerModel<ProductFeatureModel>> => {\n return baseClientRequest<ResultContainerModel<ProductFeatureModel>>('ProductFeatures', query);\n};\n\n/** Get an entity by its id */\nexport const productFeaturesGetByIdClient = async (params: ProductFeaturesGetByIdPathParams, query?: Partial<ProductFeaturesGetByIdQueryParams>): Promise<ProductFeatureModel> => {\n return baseClientRequest<ProductFeatureModel>(`ProductFeatures/${params.id}`, query);\n};\n\n/** Get all entities by given criteria */\nexport const productFunctionsGetAllClient = async (query?: Partial<ProductFunctionsGetAllQueryParams>): Promise<ResultContainerModel<ProductFunctionModel>> => {\n return baseClientRequest<ResultContainerModel<ProductFunctionModel>>('ProductFunctions', query);\n};\n\n/** Get an entity by its id */\nexport const productFunctionsGetByIdClient = async (params: ProductFunctionsGetByIdPathParams, query?: Partial<ProductFunctionsGetByIdQueryParams>): Promise<ProductFunctionModel> => {\n return baseClientRequest<ProductFunctionModel>(`ProductFunctions/${params.id}`, query);\n};\n\n/** Get all entities by given criteria */\nexport const productLifeCyclePhasesGetAllClient = async (query?: Partial<ProductLifeCyclePhasesGetAllQueryParams>): Promise<ResultContainerModel<ProductLifeCyclePhaseModel>> => {\n return baseClientRequest<ResultContainerModel<ProductLifeCyclePhaseModel>>('ProductLifeCyclePhases', query);\n};\n\n/** Get an entity by its id */\nexport const productLifeCyclePhasesGetByIdClient = async (params: ProductLifeCyclePhasesGetByIdPathParams, query?: Partial<ProductLifeCyclePhasesGetByIdQueryParams>): Promise<ProductLifeCyclePhaseModel> => {\n return baseClientRequest<ProductLifeCyclePhaseModel>(`ProductLifeCyclePhases/${params.id}`, query);\n};\n\n/** Get all entities by given criteria */\nexport const productMetadataGetAllClient = async (query?: Partial<ProductMetadataGetAllQueryParams>): Promise<ResultContainerModel<ProductMetadataModel>> => {\n return baseClientRequest<ResultContainerModel<ProductMetadataModel>>('ProductMetadata', query);\n};\n\n/** Get an entity by its id */\nexport const productMetadataGetByIdClient = async (params: ProductMetadataGetByIdPathParams, query?: Partial<ProductMetadataGetByIdQueryParams>): Promise<ProductMetadataModel> => {\n return baseClientRequest<ProductMetadataModel>(`ProductMetadata/${params.id}`, query);\n};\n\n/** Get all entities by given criteria */\nexport const productPropertiesGetAllClient = async (query?: Partial<ProductPropertiesGetAllQueryParams>): Promise<ResultContainerModel<ProductPropertyModel>> => {\n return baseClientRequest<ResultContainerModel<ProductPropertyModel>>('ProductProperties', query);\n};\n\n/** Get an entity by its id */\nexport const productPropertiesGetByIdClient = async (params: ProductPropertiesGetByIdPathParams, query?: Partial<ProductPropertiesGetByIdQueryParams>): Promise<ProductPropertyModel> => {\n return baseClientRequest<ProductPropertyModel>(`ProductProperties/${params.id}`, query);\n};\n\n/** Get all entities by given criteria */\nexport const productVariantsGetAllClient = async (query?: Partial<ProductVariantsGetAllQueryParams>): Promise<ResultContainerModel<ProductVariantModel>> => {\n return baseClientRequest<ResultContainerModel<ProductVariantModel>>('ProductVariants', query);\n};\n\n/** Get an entity by its id */\nexport const productVariantsGetByIdClient = async (params: ProductVariantsGetByIdPathParams, query?: Partial<ProductVariantsGetByIdQueryParams>): Promise<ProductVariantModel> => {\n return baseClientRequest<ProductVariantModel>(`ProductVariants/${params.id}`, query);\n};\n\n/** Get all entities by given criteria */\nexport const puttingToUsesGetAllClient = async (query?: Partial<PuttingToUsesGetAllQueryParams>): Promise<ResultContainerModel<ProductLcpPuttingToUseModel>> => {\n return baseClientRequest<ResultContainerModel<ProductLcpPuttingToUseModel>>('PuttingToUses', query);\n};\n\n/** Get an entity by its id */\nexport const puttingToUsesGetByIdClient = async (params: PuttingToUsesGetByIdPathParams, query?: Partial<PuttingToUsesGetByIdQueryParams>): Promise<ProductLcpPuttingToUseModel> => {\n return baseClientRequest<ProductLcpPuttingToUseModel>(`PuttingToUses/${params.id}`, query);\n};\n\n/** Get all entities by given criteria */\nexport const qualificationsGetAllClient = async (query?: Partial<QualificationsGetAllQueryParams>): Promise<ResultContainerModel<QualificationModel>> => {\n return baseClientRequest<ResultContainerModel<QualificationModel>>('Qualifications', query);\n};\n\n/** Get an entity by its id */\nexport const qualificationsGetByIdClient = async (params: QualificationsGetByIdPathParams, query?: Partial<QualificationsGetByIdQueryParams>): Promise<QualificationModel> => {\n return baseClientRequest<QualificationModel>(`Qualifications/${params.id}`, query);\n};\n\n/** Get all entities by given criteria */\nexport const referencesGetAllClient = async (query?: Partial<ReferencesGetAllQueryParams>): Promise<ResultContainerModel<TopicTypeReferenceModel>> => {\n return baseClientRequest<ResultContainerModel<TopicTypeReferenceModel>>('References', query);\n};\n\n/** Get an entity by its id */\nexport const referencesGetByIdClient = async (params: ReferencesGetByIdPathParams, query?: Partial<ReferencesGetByIdQueryParams>): Promise<TopicTypeReferenceModel> => {\n return baseClientRequest<TopicTypeReferenceModel>(`References/${params.id}`, query);\n};\n\n/** Get all entities by given criteria */\nexport const renditionsGetAllClient = async (query?: Partial<RenditionsGetAllQueryParams>): Promise<ResultContainerModel<RenditionModel>> => {\n return baseClientRequest<ResultContainerModel<RenditionModel>>('Renditions', query);\n};\n\n/** Get an entity by its id */\nexport const renditionsGetByIdClient = async (params: RenditionsGetByIdPathParams, query?: Partial<RenditionsGetByIdQueryParams>): Promise<RenditionModel> => {\n return baseClientRequest<RenditionModel>(`Renditions/${params.id}`, query);\n};\n\n/** Get the rendition for the given url */\nexport const renditionsGetWithBinaryWithBinaryPathClient = async (params: RenditionsGetWithBinaryWithBinaryPathPathParams): Promise<RenditionModel> => {\n return baseClientRequest<RenditionModel>(`Renditions/${params.id}/${params.binaryPath}`);\n};\n\n/** Get the binary stream */\nexport const resourcesDownloadResourceClient = async (params: ResourcesDownloadResourcePathParams): Promise<unknown> => {\n return baseClientRequest<unknown>(`ids/v1/Resources/${params.renditionId}`);\n};\n\n/** Get the binary stream */\nexport const resourcesDownloadResourceWithBinaryPathClient = async (params: ResourcesDownloadResourceWithBinaryPathPathParams): Promise<unknown> => {\n return baseClientRequest<unknown>(`ids/v1/Resources/${params.renditionId}/${params.binaryPath}`);\n};\n\n/** Query package with id\ndefault mediatypes application/json\nchange mediatype by Adding accept-Header (like application/rdf+xml application/rdf+json, and more) */\nexport const resourcesGetPackageClient = async (params: ResourcesGetPackagePathParams, query?: Partial<ResourcesGetPackageQueryParams>): Promise<unknown> => {\n return baseClientRequest<unknown>(`Resources/packages/${params.id}`, query);\n};\n\n/** Request any resource in tiple store from packages */\nexport const resourcesGetSubjectFromPackageClient = async (params: ResourcesGetSubjectFromPackagePathParams, query?: Partial<ResourcesGetSubjectFromPackageQueryParams>): Promise<unknown> => {\n return baseClientRequest<unknown>(`Resources/subjects/${params.id}`, query);\n};\n\n/** Get the binary stream */\nexport const resourcesViewResourceClient = async (params: ResourcesViewResourcePathParams): Promise<unknown> => {\n return baseClientRequest<unknown>(`ids/v1/Resources/view/${params.renditionId}`);\n};\n\n/** Get the binary stream */\nexport const resourcesViewResourceWithBinaryPathClient = async (params: ResourcesViewResourceWithBinaryPathPathParams): Promise<unknown> => {\n return baseClientRequest<unknown>(`ids/v1/Resources/view/${params.renditionId}/${params.binaryPath}`);\n};\n\n/** Get all entities by given criteria */\nexport const rolesGetAllClient = async (query?: Partial<RolesGetAllQueryParams>): Promise<ResultContainerModel<QualificationRoleModel>> => {\n return baseClientRequest<ResultContainerModel<QualificationRoleModel>>('Roles', query);\n};\n\n/** Get an entity by its id */\nexport const rolesGetByIdClient = async (params: RolesGetByIdPathParams, query?: Partial<RolesGetByIdQueryParams>): Promise<QualificationRoleModel> => {\n return baseClientRequest<QualificationRoleModel>(`Roles/${params.id}`, query);\n};\n\n/** Get all entities by given criteria */\nexport const safetiesGetAllClient = async (query?: Partial<SafetiesGetAllQueryParams>): Promise<ResultContainerModel<InformationSubjectSafetyModel>> => {\n return baseClientRequest<ResultContainerModel<InformationSubjectSafetyModel>>('Safeties', query);\n};\n\n/** Get an entity by its id */\nexport const safetiesGetByIdClient = async (params: SafetiesGetByIdPathParams, query?: Partial<SafetiesGetByIdQueryParams>): Promise<InformationSubjectSafetyModel> => {\n return baseClientRequest<InformationSubjectSafetyModel>(`Safeties/${params.id}`, query);\n};\n\n/** Get all entities by given criteria */\nexport const searchGetAllClient = async (query?: Partial<SearchGetAllQueryParams>): Promise<ResultContainerModel<unknown>> => {\n return baseClientRequest<ResultContainerModel<unknown>>('ids/v1/Search/Facets', query);\n};\n\n/** Get all entities by given criteria */\nexport const setupTimesGetAllClient = async (query?: Partial<SetupTimesGetAllQueryParams>): Promise<ResultContainerModel<PlanningSetupTimeModel>> => {\n return baseClientRequest<ResultContainerModel<PlanningSetupTimeModel>>('SetupTimes', query);\n};\n\n/** Get an entity by its id */\nexport const setupTimesGetByIdClient = async (params: SetupTimesGetByIdPathParams, query?: Partial<SetupTimesGetByIdQueryParams>): Promise<PlanningSetupTimeModel> => {\n return baseClientRequest<PlanningSetupTimeModel>(`SetupTimes/${params.id}`, query);\n};\n\n/** Get all entities by given criteria */\nexport const skillLevelsGetAllClient = async (query?: Partial<SkillLevelsGetAllQueryParams>): Promise<ResultContainerModel<QualificationSkillLevelModel>> => {\n return baseClientRequest<ResultContainerModel<QualificationSkillLevelModel>>('SkillLevels', query);\n};\n\n/** Get an entity by its id */\nexport const skillLevelsGetByIdClient = async (params: SkillLevelsGetByIdPathParams, query?: Partial<SkillLevelsGetByIdQueryParams>): Promise<QualificationSkillLevelModel> => {\n return baseClientRequest<QualificationSkillLevelModel>(`SkillLevels/${params.id}`, query);\n};\n\n/** Get all entities by given criteria */\nexport const sparePartsGetAllClient = async (query?: Partial<SparePartsGetAllQueryParams>): Promise<ResultContainerModel<SupplySparePartModel>> => {\n return baseClientRequest<ResultContainerModel<SupplySparePartModel>>('SpareParts', query);\n};\n\n/** Get an entity by its id */\nexport const sparePartsGetByIdClient = async (params: SparePartsGetByIdPathParams, query?: Partial<SparePartsGetByIdQueryParams>): Promise<SupplySparePartModel> => {\n return baseClientRequest<SupplySparePartModel>(`SpareParts/${params.id}`, query);\n};\n\n/** Query Iirds storage by SparQL */\nexport const sparQLExecuteSparQlClient = async (params: SparQLExecuteSparQlPathParams): Promise<Record<string, string>[]> => {\n return baseClientRequest<Record<string, string>[]>(`SparQL/${params.query}`);\n};\n\n/** Get all entities by given criteria */\nexport const suppliesGetAllClient = async (query?: Partial<SuppliesGetAllQueryParams>): Promise<ResultContainerModel<SupplyModel>> => {\n return baseClientRequest<ResultContainerModel<SupplyModel>>('Supplies', query);\n};\n\n/** Get an entity by its id */\nexport const suppliesGetByIdClient = async (params: SuppliesGetByIdPathParams, query?: Partial<SuppliesGetByIdQueryParams>): Promise<SupplyModel> => {\n return baseClientRequest<SupplyModel>(`Supplies/${params.id}`, query);\n};\n\n/** Get all entities by given criteria */\nexport const tasksGetAllClient = async (query?: Partial<TasksGetAllQueryParams>): Promise<ResultContainerModel<TopicTypeTaskModel>> => {\n return baseClientRequest<ResultContainerModel<TopicTypeTaskModel>>('Tasks', query);\n};\n\n/** Get an entity by its id */\nexport const tasksGetByIdClient = async (params: TasksGetByIdPathParams, query?: Partial<TasksGetByIdQueryParams>): Promise<TopicTypeTaskModel> => {\n return baseClientRequest<TopicTypeTaskModel>(`Tasks/${params.id}`, query);\n};\n\n/** Get all entities by given criteria */\nexport const technicalDataGetAllClient = async (query?: Partial<TechnicalDataGetAllQueryParams>): Promise<ResultContainerModel<InformationSubjectTechnicalDataModel>> => {\n return baseClientRequest<ResultContainerModel<InformationSubjectTechnicalDataModel>>('TechnicalData', query);\n};\n\n/** Get an entity by its id */\nexport const technicalDataGetByIdClient = async (params: TechnicalDataGetByIdPathParams, query?: Partial<TechnicalDataGetByIdQueryParams>): Promise<InformationSubjectTechnicalDataModel> => {\n return baseClientRequest<InformationSubjectTechnicalDataModel>(`TechnicalData/${params.id}`, query);\n};\n\n/** Get all entities by given criteria */\nexport const technicalOverviewsGetAllClient = async (query?: Partial<TechnicalOverviewsGetAllQueryParams>): Promise<ResultContainerModel<InformationSubjectTechnicalOverviewModel>> => {\n return baseClientRequest<ResultContainerModel<InformationSubjectTechnicalOverviewModel>>('TechnicalOverviews', query);\n};\n\n/** Get an entity by its id */\nexport const technicalOverviewsGetByIdClient = async (params: TechnicalOverviewsGetByIdPathParams, query?: Partial<TechnicalOverviewsGetByIdQueryParams>): Promise<InformationSubjectTechnicalOverviewModel> => {\n return baseClientRequest<InformationSubjectTechnicalOverviewModel>(`TechnicalOverviews/${params.id}`, query);\n};\n\n/** Get all entities by given criteria */\nexport const topicsGetAllClient = async (query?: Partial<TopicsGetAllQueryParams>): Promise<ResultContainerModel<TopicModel>> => {\n return baseClientRequest<ResultContainerModel<TopicModel>>('Topics', query);\n};\n\n/** Get an entity by its id */\nexport const topicsGetByIdClient = async (params: TopicsGetByIdPathParams, query?: Partial<TopicsGetByIdQueryParams>): Promise<TopicModel> => {\n return baseClientRequest<TopicModel>(`Topics/${params.id}`, query);\n};\n\n/** Languages used by indexed terms */\nexport const topicsLanguagesClient = async (query?: Partial<TopicsLanguagesQueryParams>): Promise<unknown> => {\n return baseClientRequest<unknown>('Topics/Languages', query);\n};\n\n/** Get all entities by given criteria */\nexport const topicTypesGetAllClient = async (query?: Partial<TopicTypesGetAllQueryParams>): Promise<ResultContainerModel<TopicTypeModel>> => {\n return baseClientRequest<ResultContainerModel<TopicTypeModel>>('TopicTypes', query);\n};\n\n/** Get an entity by its id */\nexport const topicTypesGetByIdClient = async (params: TopicTypesGetByIdPathParams, query?: Partial<TopicTypesGetByIdQueryParams>): Promise<TopicTypeModel> => {\n return baseClientRequest<TopicTypeModel>(`TopicTypes/${params.id}`, query);\n};\n\n/** Get all entities by given criteria */\nexport const troubleShootingsGetAllClient = async (query?: Partial<TroubleShootingsGetAllQueryParams>): Promise<ResultContainerModel<TopicTypeTroubleShootingModel>> => {\n return baseClientRequest<ResultContainerModel<TopicTypeTroubleShootingModel>>('TroubleShootings', query);\n};\n\n/** Get an entity by its id */\nexport const troubleShootingsGetByIdClient = async (params: TroubleShootingsGetByIdPathParams, query?: Partial<TroubleShootingsGetByIdQueryParams>): Promise<TopicTypeTroubleShootingModel> => {\n return baseClientRequest<TopicTypeTroubleShootingModel>(`TroubleShootings/${params.id}`, query);\n};\n\n/** Get all entities by given criteria */\nexport const usesGetAllClient = async (query?: Partial<UsesGetAllQueryParams>): Promise<ResultContainerModel<ProductLcpUseModel>> => {\n return baseClientRequest<ResultContainerModel<ProductLcpUseModel>>('Uses', query);\n};\n\n/** Get an entity by its id */\nexport const usesGetByIdClient = async (params: UsesGetByIdPathParams, query?: Partial<UsesGetByIdQueryParams>): Promise<ProductLcpUseModel> => {\n return baseClientRequest<ProductLcpUseModel>(`Uses/${params.id}`, query);\n};\n\n/** Get all entities by given criteria */\nexport const vCardsGetAllClient = async (query?: Partial<VCardsGetAllQueryParams>): Promise<ResultContainerModel<VCardModel>> => {\n return baseClientRequest<ResultContainerModel<VCardModel>>('VCards', query);\n};\n\n/** Get an entity by its id */\nexport const vCardsGetByIdClient = async (params: VCardsGetByIdPathParams, query?: Partial<VCardsGetByIdQueryParams>): Promise<VCardModel> => {\n return baseClientRequest<VCardModel>(`VCards/${params.id}`, query);\n};\n\n/** Get all entities by given criteria */\nexport const warningMessagesGetAllClient = async (query?: Partial<WarningMessagesGetAllQueryParams>): Promise<ResultContainerModel<InformationSubjectSafetyWarningMessageModel>> => {\n return baseClientRequest<ResultContainerModel<InformationSubjectSafetyWarningMessageModel>>('WarningMessages', query);\n};\n\n/** Get an entity by its id */\nexport const warningMessagesGetByIdClient = async (params: WarningMessagesGetByIdPathParams, query?: Partial<WarningMessagesGetByIdQueryParams>): Promise<InformationSubjectSafetyWarningMessageModel> => {\n return baseClientRequest<InformationSubjectSafetyWarningMessageModel>(`WarningMessages/${params.id}`, query);\n};\n\n/** Get all entities by given criteria */\nexport const workingTimesGetAllClient = async (query?: Partial<WorkingTimesGetAllQueryParams>): Promise<ResultContainerModel<PlanningWorkingTimeModel>> => {\n return baseClientRequest<ResultContainerModel<PlanningWorkingTimeModel>>('WorkingTimes', query);\n};\n\n/** Get an entity by its id */\nexport const workingTimesGetByIdClient = async (params: WorkingTimesGetByIdPathParams, query?: Partial<WorkingTimesGetByIdQueryParams>): Promise<PlanningWorkingTimeModel> => {\n return baseClientRequest<PlanningWorkingTimeModel>(`WorkingTimes/${params.id}`, query);\n};\n"],"mappings":"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","names":[]}
|
|
@@ -0,0 +1,311 @@
|
|
|
1
|
+
import { AdministrativeMetadataGetAllQueryParams, ResultContainerModel, AdministrativeMetadataModel, AdministrativeMetadataGetByIdPathParams, AdministrativeMetadataGetByIdQueryParams, AfterUsesGetAllQueryParams, ProductLcpAfterUseModel, AfterUsesGetByIdPathParams, AfterUsesGetByIdQueryParams, CollectionsGetAllQueryParams, InformationSubjectCollectionModel, CollectionsGetByIdPathParams, CollectionsGetByIdQueryParams, ComponentsGetAllQueryParams, ComponentModel, ComponentsGetByIdPathParams, ComponentsGetByIdQueryParams, ConceptsGetAllQueryParams, TopicTypeConceptModel, ConceptsGetByIdPathParams, ConceptsGetByIdQueryParams, ConformitiesGetAllQueryParams, InformationSubjectConformityModel, ConformitiesGetByIdPathParams, ConformitiesGetByIdQueryParams, ConsumablesGetAllQueryParams, SupplyConsumableModel, ConsumablesGetByIdPathParams, ConsumablesGetByIdQueryParams, ContentLifeCycleStatusGetAllQueryParams, ContentLifeCycleStatusModel, ContentLifeCycleStatusGetByIdPathParams, ContentLifeCycleStatusGetByIdQueryParams, DesignAndRealizationsGetAllQueryParams, ProductLcpDesignAndRealizationModel, DesignAndRealizationsGetByIdPathParams, DesignAndRealizationsGetByIdQueryParams, DirectoryNodesGetAllQueryParams, DirectoryNodeModel, DirectoryNodesGetByIdPathParams, DirectoryNodesGetByIdQueryParams, DirectoryNodeTypesGetAllQueryParams, DirectoryNodeTypeModel, DirectoryNodeTypesGetByIdPathParams, DirectoryNodeTypesGetByIdQueryParams, DocumentationMetadataGetAllQueryParams, DocumentationMetadataModel, DocumentationMetadataGetByIdPathParams, DocumentationMetadataGetByIdQueryParams, DocumentsGetAllQueryParams, DocumentModel, DocumentsGetByIdPathParams, DocumentsGetByIdQueryParams, DocumentsLanguagesQueryParams, DocumentTypesGetAllQueryParams, DocumentTypeModel, DocumentTypesGetByIdPathParams, DocumentTypesGetByIdQueryParams, DomainEntitiesGetAllQueryParams, DomainEntityModel, DomainEntitiesGetByIdPathParams, DomainEntitiesGetByIdQueryParams, DownTimesGetAllQueryParams, PlanningDownTimeModel, DownTimesGetByIdPathParams, DownTimesGetByIdQueryParams, EventsGetAllQueryParams, EventModel, EventsGetByIdPathParams, EventsGetByIdQueryParams, FormalitiesGetAllQueryParams, InformationSubjectFormalityModel, FormalitiesGetByIdPathParams, FormalitiesGetByIdQueryParams, FormsGetAllQueryParams, TopicTypeFormModel, FormsGetByIdPathParams, FormsGetByIdQueryParams, FragmentsGetAllQueryParams, FragmentModel, FragmentsGetByIdPathParams, FragmentsGetByIdQueryParams, FragmentsLanguagesQueryParams, FunctionalitiesGetAllQueryParams, InformationSubjectFunctionalityModel, FunctionalitiesGetByIdPathParams, FunctionalitiesGetByIdQueryParams, FunctionalMetadatasGetAllQueryParams, FunctionalMetadataModel, FunctionalMetadatasGetByIdPathParams, FunctionalMetadatasGetByIdQueryParams, GroupsGetAllQueryParams, VCardGroupModel, GroupsGetByIdPathParams, GroupsGetByIdQueryParams, HardwareToolsGetAllQueryParams, SupplyHardwareToolModel, HardwareToolsGetByIdPathParams, HardwareToolsGetByIdQueryParams, IdentitiesGetAllQueryParams, IdentityModel, IdentitiesGetByIdPathParams, IdentitiesGetByIdQueryParams, IdentityDomainsGetAllQueryParams, IdentityDomainModel, IdentityDomainsGetByIdPathParams, IdentityDomainsGetByIdQueryParams, IndividualsGetAllQueryParams, VCardIndividualModel, IndividualsGetByIdPathParams, IndividualsGetByIdQueryParams, InformationObjectsGetAllQueryParams, InformationObjectModel, InformationObjectsGetByIdPathParams, InformationObjectsGetByIdQueryParams, InformationSubjectsGetAllQueryParams, InformationSubjectModel, InformationSubjectsGetByIdPathParams, InformationSubjectsGetByIdQueryParams, InformationTypesGetAllQueryParams, InformationTypeModel, InformationTypesGetByIdPathParams, InformationTypesGetByIdQueryParams, InformationUnitsGetAllQueryParams, InformationUnitModel, InformationUnitsGetByIdPathParams, InformationUnitsGetByIdQueryParams, InformationUnitsLanguagesQueryParams, LearningsGetAllQueryParams, TopicTypeLearningModel, LearningsGetByIdPathParams, LearningsGetByIdQueryParams, LocationsGetAllQueryParams, VCardLocationModel, LocationsGetByIdPathParams, LocationsGetByIdQueryParams, LubricantsGetAllQueryParams, SupplyLubricantModel, LubricantsGetByIdPathParams, LubricantsGetByIdQueryParams, MaintenanceIntervalsGetAllQueryParams, PlanningMaintenanceIntervalModel, MaintenanceIntervalsGetByIdPathParams, MaintenanceIntervalsGetByIdQueryParams, OperatingSuppliesGetAllQueryParams, SupplyOperatingModel, OperatingSuppliesGetByIdPathParams, OperatingSuppliesGetByIdQueryParams, OrganizationsGetAllQueryParams, VCardOrganizationModel, OrganizationsGetByIdPathParams, OrganizationsGetByIdQueryParams, PackagesCreateClientAppQueryParams, PackagesGetAllQueryParams, PackageModel, PackagesGetByIdPathParams, PackagesGetByIdQueryParams, PackagesLanguagesQueryParams, PartiesGetAllQueryParams, PartyModel, PartiesGetByIdPathParams, PartiesGetByIdQueryParams, PlanningTimesGetAllQueryParams, PlanningTimeModel, PlanningTimesGetByIdPathParams, PlanningTimesGetByIdQueryParams, ProcessesGetAllQueryParams, InformationSubjectProcessModel, ProcessesGetByIdPathParams, ProcessesGetByIdQueryParams, ProductFeaturesGetAllQueryParams, ProductFeatureModel, ProductFeaturesGetByIdPathParams, ProductFeaturesGetByIdQueryParams, ProductFunctionsGetAllQueryParams, ProductFunctionModel, ProductFunctionsGetByIdPathParams, ProductFunctionsGetByIdQueryParams, ProductLifeCyclePhasesGetAllQueryParams, ProductLifeCyclePhaseModel, ProductLifeCyclePhasesGetByIdPathParams, ProductLifeCyclePhasesGetByIdQueryParams, ProductMetadataGetAllQueryParams, ProductMetadataModel, ProductMetadataGetByIdPathParams, ProductMetadataGetByIdQueryParams, ProductPropertiesGetAllQueryParams, ProductPropertyModel, ProductPropertiesGetByIdPathParams, ProductPropertiesGetByIdQueryParams, ProductVariantsGetAllQueryParams, ProductVariantModel, ProductVariantsGetByIdPathParams, ProductVariantsGetByIdQueryParams, PuttingToUsesGetAllQueryParams, ProductLcpPuttingToUseModel, PuttingToUsesGetByIdPathParams, PuttingToUsesGetByIdQueryParams, QualificationsGetAllQueryParams, QualificationModel, QualificationsGetByIdPathParams, QualificationsGetByIdQueryParams, ReferencesGetAllQueryParams, TopicTypeReferenceModel, ReferencesGetByIdPathParams, ReferencesGetByIdQueryParams, RenditionsGetAllQueryParams, RenditionModel, RenditionsGetByIdPathParams, RenditionsGetByIdQueryParams, RenditionsGetWithBinaryWithBinaryPathPathParams, ResourcesDownloadResourcePathParams, ResourcesDownloadResourceWithBinaryPathPathParams, ResourcesGetPackagePathParams, ResourcesGetPackageQueryParams, ResourcesGetSubjectFromPackagePathParams, ResourcesGetSubjectFromPackageQueryParams, ResourcesViewResourcePathParams, ResourcesViewResourceWithBinaryPathPathParams, RolesGetAllQueryParams, QualificationRoleModel, RolesGetByIdPathParams, RolesGetByIdQueryParams, SafetiesGetAllQueryParams, InformationSubjectSafetyModel, SafetiesGetByIdPathParams, SafetiesGetByIdQueryParams, SearchGetAllQueryParams, SetupTimesGetAllQueryParams, PlanningSetupTimeModel, SetupTimesGetByIdPathParams, SetupTimesGetByIdQueryParams, SkillLevelsGetAllQueryParams, QualificationSkillLevelModel, SkillLevelsGetByIdPathParams, SkillLevelsGetByIdQueryParams, SparePartsGetAllQueryParams, SupplySparePartModel, SparePartsGetByIdPathParams, SparePartsGetByIdQueryParams, SparQLExecuteSparQlPathParams, SuppliesGetAllQueryParams, SupplyModel, SuppliesGetByIdPathParams, SuppliesGetByIdQueryParams, TasksGetAllQueryParams, TopicTypeTaskModel, TasksGetByIdPathParams, TasksGetByIdQueryParams, TechnicalDataGetAllQueryParams, InformationSubjectTechnicalDataModel, TechnicalDataGetByIdPathParams, TechnicalDataGetByIdQueryParams, TechnicalOverviewsGetAllQueryParams, InformationSubjectTechnicalOverviewModel, TechnicalOverviewsGetByIdPathParams, TechnicalOverviewsGetByIdQueryParams, TopicsGetAllQueryParams, TopicModel, TopicsGetByIdPathParams, TopicsGetByIdQueryParams, TopicsLanguagesQueryParams, TopicTypesGetAllQueryParams, TopicTypeModel, TopicTypesGetByIdPathParams, TopicTypesGetByIdQueryParams, TroubleShootingsGetAllQueryParams, TopicTypeTroubleShootingModel, TroubleShootingsGetByIdPathParams, TroubleShootingsGetByIdQueryParams, UsesGetAllQueryParams, ProductLcpUseModel, UsesGetByIdPathParams, UsesGetByIdQueryParams, VCardsGetAllQueryParams, VCardModel, VCardsGetByIdPathParams, VCardsGetByIdQueryParams, WarningMessagesGetAllQueryParams, InformationSubjectSafetyWarningMessageModel, WarningMessagesGetByIdPathParams, WarningMessagesGetByIdQueryParams, WorkingTimesGetAllQueryParams, PlanningWorkingTimeModel, WorkingTimesGetByIdPathParams, WorkingTimesGetByIdQueryParams } from '@c-rex/interfaces';
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* Auto-generated request functions from OpenAPI spec
|
|
5
|
+
* Source: https://staging.c-rex.net/ids/api/swagger/v1/swagger.json
|
|
6
|
+
* Generated: 2025-12-22T14:05:43.687Z
|
|
7
|
+
* Do not edit manually
|
|
8
|
+
*/
|
|
9
|
+
|
|
10
|
+
/** Get all entities by given criteria */
|
|
11
|
+
declare const administrativeMetadataGetAllServer: (query?: Partial<AdministrativeMetadataGetAllQueryParams>) => Promise<ResultContainerModel<AdministrativeMetadataModel>>;
|
|
12
|
+
/** Get an entity by its id */
|
|
13
|
+
declare const administrativeMetadataGetByIdServer: (params: AdministrativeMetadataGetByIdPathParams, query?: Partial<AdministrativeMetadataGetByIdQueryParams>) => Promise<AdministrativeMetadataModel>;
|
|
14
|
+
/** Get all entities by given criteria */
|
|
15
|
+
declare const afterUsesGetAllServer: (query?: Partial<AfterUsesGetAllQueryParams>) => Promise<ResultContainerModel<ProductLcpAfterUseModel>>;
|
|
16
|
+
/** Get an entity by its id */
|
|
17
|
+
declare const afterUsesGetByIdServer: (params: AfterUsesGetByIdPathParams, query?: Partial<AfterUsesGetByIdQueryParams>) => Promise<ProductLcpAfterUseModel>;
|
|
18
|
+
/** Get all entities by given criteria */
|
|
19
|
+
declare const collectionsGetAllServer: (query?: Partial<CollectionsGetAllQueryParams>) => Promise<ResultContainerModel<InformationSubjectCollectionModel>>;
|
|
20
|
+
/** Get an entity by its id */
|
|
21
|
+
declare const collectionsGetByIdServer: (params: CollectionsGetByIdPathParams, query?: Partial<CollectionsGetByIdQueryParams>) => Promise<InformationSubjectCollectionModel>;
|
|
22
|
+
/** Get all entities by given criteria */
|
|
23
|
+
declare const componentsGetAllServer: (query?: Partial<ComponentsGetAllQueryParams>) => Promise<ResultContainerModel<ComponentModel>>;
|
|
24
|
+
/** Get an entity by its id */
|
|
25
|
+
declare const componentsGetByIdServer: (params: ComponentsGetByIdPathParams, query?: Partial<ComponentsGetByIdQueryParams>) => Promise<ComponentModel>;
|
|
26
|
+
/** Get all entities by given criteria */
|
|
27
|
+
declare const conceptsGetAllServer: (query?: Partial<ConceptsGetAllQueryParams>) => Promise<ResultContainerModel<TopicTypeConceptModel>>;
|
|
28
|
+
/** Get an entity by its id */
|
|
29
|
+
declare const conceptsGetByIdServer: (params: ConceptsGetByIdPathParams, query?: Partial<ConceptsGetByIdQueryParams>) => Promise<TopicTypeConceptModel>;
|
|
30
|
+
/** Get all entities by given criteria */
|
|
31
|
+
declare const conformitiesGetAllServer: (query?: Partial<ConformitiesGetAllQueryParams>) => Promise<ResultContainerModel<InformationSubjectConformityModel>>;
|
|
32
|
+
/** Get an entity by its id */
|
|
33
|
+
declare const conformitiesGetByIdServer: (params: ConformitiesGetByIdPathParams, query?: Partial<ConformitiesGetByIdQueryParams>) => Promise<InformationSubjectConformityModel>;
|
|
34
|
+
/** Get all entities by given criteria */
|
|
35
|
+
declare const consumablesGetAllServer: (query?: Partial<ConsumablesGetAllQueryParams>) => Promise<ResultContainerModel<SupplyConsumableModel>>;
|
|
36
|
+
/** Get an entity by its id */
|
|
37
|
+
declare const consumablesGetByIdServer: (params: ConsumablesGetByIdPathParams, query?: Partial<ConsumablesGetByIdQueryParams>) => Promise<SupplyConsumableModel>;
|
|
38
|
+
/** Get all entities by given criteria */
|
|
39
|
+
declare const contentLifeCycleStatusGetAllServer: (query?: Partial<ContentLifeCycleStatusGetAllQueryParams>) => Promise<ResultContainerModel<ContentLifeCycleStatusModel>>;
|
|
40
|
+
/** Get an entity by its id */
|
|
41
|
+
declare const contentLifeCycleStatusGetByIdServer: (params: ContentLifeCycleStatusGetByIdPathParams, query?: Partial<ContentLifeCycleStatusGetByIdQueryParams>) => Promise<ContentLifeCycleStatusModel>;
|
|
42
|
+
/** Get all entities by given criteria */
|
|
43
|
+
declare const designAndRealizationsGetAllServer: (query?: Partial<DesignAndRealizationsGetAllQueryParams>) => Promise<ResultContainerModel<ProductLcpDesignAndRealizationModel>>;
|
|
44
|
+
/** Get an entity by its id */
|
|
45
|
+
declare const designAndRealizationsGetByIdServer: (params: DesignAndRealizationsGetByIdPathParams, query?: Partial<DesignAndRealizationsGetByIdQueryParams>) => Promise<ProductLcpDesignAndRealizationModel>;
|
|
46
|
+
/** Get all entities by given criteria */
|
|
47
|
+
declare const directoryNodesGetAllServer: (query?: Partial<DirectoryNodesGetAllQueryParams>) => Promise<ResultContainerModel<DirectoryNodeModel>>;
|
|
48
|
+
/** Get an entity by its id */
|
|
49
|
+
declare const directoryNodesGetByIdServer: (params: DirectoryNodesGetByIdPathParams, query?: Partial<DirectoryNodesGetByIdQueryParams>) => Promise<DirectoryNodeModel>;
|
|
50
|
+
/** Get all entities by given criteria */
|
|
51
|
+
declare const directoryNodeTypesGetAllServer: (query?: Partial<DirectoryNodeTypesGetAllQueryParams>) => Promise<ResultContainerModel<DirectoryNodeTypeModel>>;
|
|
52
|
+
/** Get an entity by its id */
|
|
53
|
+
declare const directoryNodeTypesGetByIdServer: (params: DirectoryNodeTypesGetByIdPathParams, query?: Partial<DirectoryNodeTypesGetByIdQueryParams>) => Promise<DirectoryNodeTypeModel>;
|
|
54
|
+
/** Get all entities by given criteria */
|
|
55
|
+
declare const documentationMetadataGetAllServer: (query?: Partial<DocumentationMetadataGetAllQueryParams>) => Promise<ResultContainerModel<DocumentationMetadataModel>>;
|
|
56
|
+
/** Get an entity by its id */
|
|
57
|
+
declare const documentationMetadataGetByIdServer: (params: DocumentationMetadataGetByIdPathParams, query?: Partial<DocumentationMetadataGetByIdQueryParams>) => Promise<DocumentationMetadataModel>;
|
|
58
|
+
/** Get all entities by given criteria */
|
|
59
|
+
declare const documentsGetAllServer: (query?: Partial<DocumentsGetAllQueryParams>) => Promise<ResultContainerModel<DocumentModel>>;
|
|
60
|
+
/** Get an entity by its id */
|
|
61
|
+
declare const documentsGetByIdServer: (params: DocumentsGetByIdPathParams, query?: Partial<DocumentsGetByIdQueryParams>) => Promise<DocumentModel>;
|
|
62
|
+
/** Languages used by indexed terms */
|
|
63
|
+
declare const documentsLanguagesServer: (query?: Partial<DocumentsLanguagesQueryParams>) => Promise<unknown>;
|
|
64
|
+
/** Get all entities by given criteria */
|
|
65
|
+
declare const documentTypesGetAllServer: (query?: Partial<DocumentTypesGetAllQueryParams>) => Promise<ResultContainerModel<DocumentTypeModel>>;
|
|
66
|
+
/** Get an entity by its id */
|
|
67
|
+
declare const documentTypesGetByIdServer: (params: DocumentTypesGetByIdPathParams, query?: Partial<DocumentTypesGetByIdQueryParams>) => Promise<DocumentTypeModel>;
|
|
68
|
+
/** Get all entities by given criteria */
|
|
69
|
+
declare const domainEntitiesGetAllServer: (query?: Partial<DomainEntitiesGetAllQueryParams>) => Promise<ResultContainerModel<DomainEntityModel>>;
|
|
70
|
+
/** Get an entity by its id */
|
|
71
|
+
declare const domainEntitiesGetByIdServer: (params: DomainEntitiesGetByIdPathParams, query?: Partial<DomainEntitiesGetByIdQueryParams>) => Promise<DomainEntityModel>;
|
|
72
|
+
/** Get all entities by given criteria */
|
|
73
|
+
declare const downTimesGetAllServer: (query?: Partial<DownTimesGetAllQueryParams>) => Promise<ResultContainerModel<PlanningDownTimeModel>>;
|
|
74
|
+
/** Get an entity by its id */
|
|
75
|
+
declare const downTimesGetByIdServer: (params: DownTimesGetByIdPathParams, query?: Partial<DownTimesGetByIdQueryParams>) => Promise<PlanningDownTimeModel>;
|
|
76
|
+
/** Get all entities by given criteria */
|
|
77
|
+
declare const eventsGetAllServer: (query?: Partial<EventsGetAllQueryParams>) => Promise<ResultContainerModel<EventModel>>;
|
|
78
|
+
/** Get an entity by its id */
|
|
79
|
+
declare const eventsGetByIdServer: (params: EventsGetByIdPathParams, query?: Partial<EventsGetByIdQueryParams>) => Promise<EventModel>;
|
|
80
|
+
/** Get all entities by given criteria */
|
|
81
|
+
declare const formalitiesGetAllServer: (query?: Partial<FormalitiesGetAllQueryParams>) => Promise<ResultContainerModel<InformationSubjectFormalityModel>>;
|
|
82
|
+
/** Get an entity by its id */
|
|
83
|
+
declare const formalitiesGetByIdServer: (params: FormalitiesGetByIdPathParams, query?: Partial<FormalitiesGetByIdQueryParams>) => Promise<InformationSubjectFormalityModel>;
|
|
84
|
+
/** Get all entities by given criteria */
|
|
85
|
+
declare const formsGetAllServer: (query?: Partial<FormsGetAllQueryParams>) => Promise<ResultContainerModel<TopicTypeFormModel>>;
|
|
86
|
+
/** Get an entity by its id */
|
|
87
|
+
declare const formsGetByIdServer: (params: FormsGetByIdPathParams, query?: Partial<FormsGetByIdQueryParams>) => Promise<TopicTypeFormModel>;
|
|
88
|
+
/** Get all entities by given criteria */
|
|
89
|
+
declare const fragmentsGetAllServer: (query?: Partial<FragmentsGetAllQueryParams>) => Promise<ResultContainerModel<FragmentModel>>;
|
|
90
|
+
/** Get an entity by its id */
|
|
91
|
+
declare const fragmentsGetByIdServer: (params: FragmentsGetByIdPathParams, query?: Partial<FragmentsGetByIdQueryParams>) => Promise<FragmentModel>;
|
|
92
|
+
/** Languages used by indexed terms */
|
|
93
|
+
declare const fragmentsLanguagesServer: (query?: Partial<FragmentsLanguagesQueryParams>) => Promise<unknown>;
|
|
94
|
+
/** Get all entities by given criteria */
|
|
95
|
+
declare const functionalitiesGetAllServer: (query?: Partial<FunctionalitiesGetAllQueryParams>) => Promise<ResultContainerModel<InformationSubjectFunctionalityModel>>;
|
|
96
|
+
/** Get an entity by its id */
|
|
97
|
+
declare const functionalitiesGetByIdServer: (params: FunctionalitiesGetByIdPathParams, query?: Partial<FunctionalitiesGetByIdQueryParams>) => Promise<InformationSubjectFunctionalityModel>;
|
|
98
|
+
/** Get all entities by given criteria */
|
|
99
|
+
declare const functionalMetadatasGetAllServer: (query?: Partial<FunctionalMetadatasGetAllQueryParams>) => Promise<ResultContainerModel<FunctionalMetadataModel>>;
|
|
100
|
+
/** Get an entity by its id */
|
|
101
|
+
declare const functionalMetadatasGetByIdServer: (params: FunctionalMetadatasGetByIdPathParams, query?: Partial<FunctionalMetadatasGetByIdQueryParams>) => Promise<FunctionalMetadataModel>;
|
|
102
|
+
/** Get all entities by given criteria */
|
|
103
|
+
declare const groupsGetAllServer: (query?: Partial<GroupsGetAllQueryParams>) => Promise<ResultContainerModel<VCardGroupModel>>;
|
|
104
|
+
/** Get an entity by its id */
|
|
105
|
+
declare const groupsGetByIdServer: (params: GroupsGetByIdPathParams, query?: Partial<GroupsGetByIdQueryParams>) => Promise<VCardGroupModel>;
|
|
106
|
+
/** Get all entities by given criteria */
|
|
107
|
+
declare const hardwareToolsGetAllServer: (query?: Partial<HardwareToolsGetAllQueryParams>) => Promise<ResultContainerModel<SupplyHardwareToolModel>>;
|
|
108
|
+
/** Get an entity by its id */
|
|
109
|
+
declare const hardwareToolsGetByIdServer: (params: HardwareToolsGetByIdPathParams, query?: Partial<HardwareToolsGetByIdQueryParams>) => Promise<SupplyHardwareToolModel>;
|
|
110
|
+
/** Get all entities by given criteria */
|
|
111
|
+
declare const identitiesGetAllServer: (query?: Partial<IdentitiesGetAllQueryParams>) => Promise<ResultContainerModel<IdentityModel>>;
|
|
112
|
+
/** Get an entity by its id */
|
|
113
|
+
declare const identitiesGetByIdServer: (params: IdentitiesGetByIdPathParams, query?: Partial<IdentitiesGetByIdQueryParams>) => Promise<IdentityModel>;
|
|
114
|
+
/** Get all entities by given criteria */
|
|
115
|
+
declare const identityDomainsGetAllServer: (query?: Partial<IdentityDomainsGetAllQueryParams>) => Promise<ResultContainerModel<IdentityDomainModel>>;
|
|
116
|
+
/** Get an entity by its id */
|
|
117
|
+
declare const identityDomainsGetByIdServer: (params: IdentityDomainsGetByIdPathParams, query?: Partial<IdentityDomainsGetByIdQueryParams>) => Promise<IdentityDomainModel>;
|
|
118
|
+
/** Get all entities by given criteria */
|
|
119
|
+
declare const individualsGetAllServer: (query?: Partial<IndividualsGetAllQueryParams>) => Promise<ResultContainerModel<VCardIndividualModel>>;
|
|
120
|
+
/** Get an entity by its id */
|
|
121
|
+
declare const individualsGetByIdServer: (params: IndividualsGetByIdPathParams, query?: Partial<IndividualsGetByIdQueryParams>) => Promise<VCardIndividualModel>;
|
|
122
|
+
/** Get all entities by given criteria */
|
|
123
|
+
declare const informationObjectsGetAllServer: (query?: Partial<InformationObjectsGetAllQueryParams>) => Promise<ResultContainerModel<InformationObjectModel>>;
|
|
124
|
+
/** Get an entity by its id */
|
|
125
|
+
declare const informationObjectsGetByIdServer: (params: InformationObjectsGetByIdPathParams, query?: Partial<InformationObjectsGetByIdQueryParams>) => Promise<InformationObjectModel>;
|
|
126
|
+
/** Get all entities by given criteria */
|
|
127
|
+
declare const informationSubjectsGetAllServer: (query?: Partial<InformationSubjectsGetAllQueryParams>) => Promise<ResultContainerModel<InformationSubjectModel>>;
|
|
128
|
+
/** Get an entity by its id */
|
|
129
|
+
declare const informationSubjectsGetByIdServer: (params: InformationSubjectsGetByIdPathParams, query?: Partial<InformationSubjectsGetByIdQueryParams>) => Promise<InformationSubjectModel>;
|
|
130
|
+
/** Get all entities by given criteria */
|
|
131
|
+
declare const informationTypesGetAllServer: (query?: Partial<InformationTypesGetAllQueryParams>) => Promise<ResultContainerModel<InformationTypeModel>>;
|
|
132
|
+
/** Get an entity by its id */
|
|
133
|
+
declare const informationTypesGetByIdServer: (params: InformationTypesGetByIdPathParams, query?: Partial<InformationTypesGetByIdQueryParams>) => Promise<InformationTypeModel>;
|
|
134
|
+
/** Get all entities by given criteria */
|
|
135
|
+
declare const informationUnitsGetAllServer: (query?: Partial<InformationUnitsGetAllQueryParams>) => Promise<ResultContainerModel<InformationUnitModel>>;
|
|
136
|
+
/** Get an entity by its id */
|
|
137
|
+
declare const informationUnitsGetByIdServer: (params: InformationUnitsGetByIdPathParams, query?: Partial<InformationUnitsGetByIdQueryParams>) => Promise<InformationUnitModel>;
|
|
138
|
+
/** Languages used by indexed terms */
|
|
139
|
+
declare const informationUnitsLanguagesServer: (query?: Partial<InformationUnitsLanguagesQueryParams>) => Promise<unknown>;
|
|
140
|
+
/** Get all entities by given criteria */
|
|
141
|
+
declare const learningsGetAllServer: (query?: Partial<LearningsGetAllQueryParams>) => Promise<ResultContainerModel<TopicTypeLearningModel>>;
|
|
142
|
+
/** Get an entity by its id */
|
|
143
|
+
declare const learningsGetByIdServer: (params: LearningsGetByIdPathParams, query?: Partial<LearningsGetByIdQueryParams>) => Promise<TopicTypeLearningModel>;
|
|
144
|
+
/** Get all entities by given criteria */
|
|
145
|
+
declare const locationsGetAllServer: (query?: Partial<LocationsGetAllQueryParams>) => Promise<ResultContainerModel<VCardLocationModel>>;
|
|
146
|
+
/** Get an entity by its id */
|
|
147
|
+
declare const locationsGetByIdServer: (params: LocationsGetByIdPathParams, query?: Partial<LocationsGetByIdQueryParams>) => Promise<VCardLocationModel>;
|
|
148
|
+
/** Get all entities by given criteria */
|
|
149
|
+
declare const lubricantsGetAllServer: (query?: Partial<LubricantsGetAllQueryParams>) => Promise<ResultContainerModel<SupplyLubricantModel>>;
|
|
150
|
+
/** Get an entity by its id */
|
|
151
|
+
declare const lubricantsGetByIdServer: (params: LubricantsGetByIdPathParams, query?: Partial<LubricantsGetByIdQueryParams>) => Promise<SupplyLubricantModel>;
|
|
152
|
+
/** Get all entities by given criteria */
|
|
153
|
+
declare const maintenanceIntervalsGetAllServer: (query?: Partial<MaintenanceIntervalsGetAllQueryParams>) => Promise<ResultContainerModel<PlanningMaintenanceIntervalModel>>;
|
|
154
|
+
/** Get an entity by its id */
|
|
155
|
+
declare const maintenanceIntervalsGetByIdServer: (params: MaintenanceIntervalsGetByIdPathParams, query?: Partial<MaintenanceIntervalsGetByIdQueryParams>) => Promise<PlanningMaintenanceIntervalModel>;
|
|
156
|
+
/** Get all entities by given criteria */
|
|
157
|
+
declare const operatingSuppliesGetAllServer: (query?: Partial<OperatingSuppliesGetAllQueryParams>) => Promise<ResultContainerModel<SupplyOperatingModel>>;
|
|
158
|
+
/** Get an entity by its id */
|
|
159
|
+
declare const operatingSuppliesGetByIdServer: (params: OperatingSuppliesGetByIdPathParams, query?: Partial<OperatingSuppliesGetByIdQueryParams>) => Promise<SupplyOperatingModel>;
|
|
160
|
+
/** Get all entities by given criteria */
|
|
161
|
+
declare const organizationsGetAllServer: (query?: Partial<OrganizationsGetAllQueryParams>) => Promise<ResultContainerModel<VCardOrganizationModel>>;
|
|
162
|
+
/** Get an entity by its id */
|
|
163
|
+
declare const organizationsGetByIdServer: (params: OrganizationsGetByIdPathParams, query?: Partial<OrganizationsGetByIdQueryParams>) => Promise<VCardOrganizationModel>;
|
|
164
|
+
/** Create an Offline Client App from the given Repositories */
|
|
165
|
+
declare const packagesCreateClientAppServer: (query?: Partial<PackagesCreateClientAppQueryParams>) => Promise<unknown>;
|
|
166
|
+
/** Get all entities by given criteria */
|
|
167
|
+
declare const packagesGetAllServer: (query?: Partial<PackagesGetAllQueryParams>) => Promise<ResultContainerModel<PackageModel>>;
|
|
168
|
+
/** Get an entity by its id */
|
|
169
|
+
declare const packagesGetByIdServer: (params: PackagesGetByIdPathParams, query?: Partial<PackagesGetByIdQueryParams>) => Promise<PackageModel>;
|
|
170
|
+
/** Languages used by indexed terms */
|
|
171
|
+
declare const packagesLanguagesServer: (query?: Partial<PackagesLanguagesQueryParams>) => Promise<unknown>;
|
|
172
|
+
/** Get all entities by given criteria */
|
|
173
|
+
declare const partiesGetAllServer: (query?: Partial<PartiesGetAllQueryParams>) => Promise<ResultContainerModel<PartyModel>>;
|
|
174
|
+
/** Get an entity by its id */
|
|
175
|
+
declare const partiesGetByIdServer: (params: PartiesGetByIdPathParams, query?: Partial<PartiesGetByIdQueryParams>) => Promise<PartyModel>;
|
|
176
|
+
/** Get all entities by given criteria */
|
|
177
|
+
declare const planningTimesGetAllServer: (query?: Partial<PlanningTimesGetAllQueryParams>) => Promise<ResultContainerModel<PlanningTimeModel>>;
|
|
178
|
+
/** Get an entity by its id */
|
|
179
|
+
declare const planningTimesGetByIdServer: (params: PlanningTimesGetByIdPathParams, query?: Partial<PlanningTimesGetByIdQueryParams>) => Promise<PlanningTimeModel>;
|
|
180
|
+
/** Get all entities by given criteria */
|
|
181
|
+
declare const processesGetAllServer: (query?: Partial<ProcessesGetAllQueryParams>) => Promise<ResultContainerModel<InformationSubjectProcessModel>>;
|
|
182
|
+
/** Get an entity by its id */
|
|
183
|
+
declare const processesGetByIdServer: (params: ProcessesGetByIdPathParams, query?: Partial<ProcessesGetByIdQueryParams>) => Promise<InformationSubjectProcessModel>;
|
|
184
|
+
/** Get all entities by given criteria */
|
|
185
|
+
declare const productFeaturesGetAllServer: (query?: Partial<ProductFeaturesGetAllQueryParams>) => Promise<ResultContainerModel<ProductFeatureModel>>;
|
|
186
|
+
/** Get an entity by its id */
|
|
187
|
+
declare const productFeaturesGetByIdServer: (params: ProductFeaturesGetByIdPathParams, query?: Partial<ProductFeaturesGetByIdQueryParams>) => Promise<ProductFeatureModel>;
|
|
188
|
+
/** Get all entities by given criteria */
|
|
189
|
+
declare const productFunctionsGetAllServer: (query?: Partial<ProductFunctionsGetAllQueryParams>) => Promise<ResultContainerModel<ProductFunctionModel>>;
|
|
190
|
+
/** Get an entity by its id */
|
|
191
|
+
declare const productFunctionsGetByIdServer: (params: ProductFunctionsGetByIdPathParams, query?: Partial<ProductFunctionsGetByIdQueryParams>) => Promise<ProductFunctionModel>;
|
|
192
|
+
/** Get all entities by given criteria */
|
|
193
|
+
declare const productLifeCyclePhasesGetAllServer: (query?: Partial<ProductLifeCyclePhasesGetAllQueryParams>) => Promise<ResultContainerModel<ProductLifeCyclePhaseModel>>;
|
|
194
|
+
/** Get an entity by its id */
|
|
195
|
+
declare const productLifeCyclePhasesGetByIdServer: (params: ProductLifeCyclePhasesGetByIdPathParams, query?: Partial<ProductLifeCyclePhasesGetByIdQueryParams>) => Promise<ProductLifeCyclePhaseModel>;
|
|
196
|
+
/** Get all entities by given criteria */
|
|
197
|
+
declare const productMetadataGetAllServer: (query?: Partial<ProductMetadataGetAllQueryParams>) => Promise<ResultContainerModel<ProductMetadataModel>>;
|
|
198
|
+
/** Get an entity by its id */
|
|
199
|
+
declare const productMetadataGetByIdServer: (params: ProductMetadataGetByIdPathParams, query?: Partial<ProductMetadataGetByIdQueryParams>) => Promise<ProductMetadataModel>;
|
|
200
|
+
/** Get all entities by given criteria */
|
|
201
|
+
declare const productPropertiesGetAllServer: (query?: Partial<ProductPropertiesGetAllQueryParams>) => Promise<ResultContainerModel<ProductPropertyModel>>;
|
|
202
|
+
/** Get an entity by its id */
|
|
203
|
+
declare const productPropertiesGetByIdServer: (params: ProductPropertiesGetByIdPathParams, query?: Partial<ProductPropertiesGetByIdQueryParams>) => Promise<ProductPropertyModel>;
|
|
204
|
+
/** Get all entities by given criteria */
|
|
205
|
+
declare const productVariantsGetAllServer: (query?: Partial<ProductVariantsGetAllQueryParams>) => Promise<ResultContainerModel<ProductVariantModel>>;
|
|
206
|
+
/** Get an entity by its id */
|
|
207
|
+
declare const productVariantsGetByIdServer: (params: ProductVariantsGetByIdPathParams, query?: Partial<ProductVariantsGetByIdQueryParams>) => Promise<ProductVariantModel>;
|
|
208
|
+
/** Get all entities by given criteria */
|
|
209
|
+
declare const puttingToUsesGetAllServer: (query?: Partial<PuttingToUsesGetAllQueryParams>) => Promise<ResultContainerModel<ProductLcpPuttingToUseModel>>;
|
|
210
|
+
/** Get an entity by its id */
|
|
211
|
+
declare const puttingToUsesGetByIdServer: (params: PuttingToUsesGetByIdPathParams, query?: Partial<PuttingToUsesGetByIdQueryParams>) => Promise<ProductLcpPuttingToUseModel>;
|
|
212
|
+
/** Get all entities by given criteria */
|
|
213
|
+
declare const qualificationsGetAllServer: (query?: Partial<QualificationsGetAllQueryParams>) => Promise<ResultContainerModel<QualificationModel>>;
|
|
214
|
+
/** Get an entity by its id */
|
|
215
|
+
declare const qualificationsGetByIdServer: (params: QualificationsGetByIdPathParams, query?: Partial<QualificationsGetByIdQueryParams>) => Promise<QualificationModel>;
|
|
216
|
+
/** Get all entities by given criteria */
|
|
217
|
+
declare const referencesGetAllServer: (query?: Partial<ReferencesGetAllQueryParams>) => Promise<ResultContainerModel<TopicTypeReferenceModel>>;
|
|
218
|
+
/** Get an entity by its id */
|
|
219
|
+
declare const referencesGetByIdServer: (params: ReferencesGetByIdPathParams, query?: Partial<ReferencesGetByIdQueryParams>) => Promise<TopicTypeReferenceModel>;
|
|
220
|
+
/** Get all entities by given criteria */
|
|
221
|
+
declare const renditionsGetAllServer: (query?: Partial<RenditionsGetAllQueryParams>) => Promise<ResultContainerModel<RenditionModel>>;
|
|
222
|
+
/** Get an entity by its id */
|
|
223
|
+
declare const renditionsGetByIdServer: (params: RenditionsGetByIdPathParams, query?: Partial<RenditionsGetByIdQueryParams>) => Promise<RenditionModel>;
|
|
224
|
+
/** Get the rendition for the given url */
|
|
225
|
+
declare const renditionsGetWithBinaryWithBinaryPathServer: (params: RenditionsGetWithBinaryWithBinaryPathPathParams) => Promise<RenditionModel>;
|
|
226
|
+
/** Get the binary stream */
|
|
227
|
+
declare const resourcesDownloadResourceServer: (params: ResourcesDownloadResourcePathParams) => Promise<unknown>;
|
|
228
|
+
/** Get the binary stream */
|
|
229
|
+
declare const resourcesDownloadResourceWithBinaryPathServer: (params: ResourcesDownloadResourceWithBinaryPathPathParams) => Promise<unknown>;
|
|
230
|
+
/** Query package with id
|
|
231
|
+
default mediatypes application/json
|
|
232
|
+
change mediatype by Adding accept-Header (like application/rdf+xml application/rdf+json, and more) */
|
|
233
|
+
declare const resourcesGetPackageServer: (params: ResourcesGetPackagePathParams, query?: Partial<ResourcesGetPackageQueryParams>) => Promise<unknown>;
|
|
234
|
+
/** Request any resource in tiple store from packages */
|
|
235
|
+
declare const resourcesGetSubjectFromPackageServer: (params: ResourcesGetSubjectFromPackagePathParams, query?: Partial<ResourcesGetSubjectFromPackageQueryParams>) => Promise<unknown>;
|
|
236
|
+
/** Get the binary stream */
|
|
237
|
+
declare const resourcesViewResourceServer: (params: ResourcesViewResourcePathParams) => Promise<unknown>;
|
|
238
|
+
/** Get the binary stream */
|
|
239
|
+
declare const resourcesViewResourceWithBinaryPathServer: (params: ResourcesViewResourceWithBinaryPathPathParams) => Promise<unknown>;
|
|
240
|
+
/** Get all entities by given criteria */
|
|
241
|
+
declare const rolesGetAllServer: (query?: Partial<RolesGetAllQueryParams>) => Promise<ResultContainerModel<QualificationRoleModel>>;
|
|
242
|
+
/** Get an entity by its id */
|
|
243
|
+
declare const rolesGetByIdServer: (params: RolesGetByIdPathParams, query?: Partial<RolesGetByIdQueryParams>) => Promise<QualificationRoleModel>;
|
|
244
|
+
/** Get all entities by given criteria */
|
|
245
|
+
declare const safetiesGetAllServer: (query?: Partial<SafetiesGetAllQueryParams>) => Promise<ResultContainerModel<InformationSubjectSafetyModel>>;
|
|
246
|
+
/** Get an entity by its id */
|
|
247
|
+
declare const safetiesGetByIdServer: (params: SafetiesGetByIdPathParams, query?: Partial<SafetiesGetByIdQueryParams>) => Promise<InformationSubjectSafetyModel>;
|
|
248
|
+
/** Get all entities by given criteria */
|
|
249
|
+
declare const searchGetAllServer: (query?: Partial<SearchGetAllQueryParams>) => Promise<ResultContainerModel<unknown>>;
|
|
250
|
+
/** Get all entities by given criteria */
|
|
251
|
+
declare const setupTimesGetAllServer: (query?: Partial<SetupTimesGetAllQueryParams>) => Promise<ResultContainerModel<PlanningSetupTimeModel>>;
|
|
252
|
+
/** Get an entity by its id */
|
|
253
|
+
declare const setupTimesGetByIdServer: (params: SetupTimesGetByIdPathParams, query?: Partial<SetupTimesGetByIdQueryParams>) => Promise<PlanningSetupTimeModel>;
|
|
254
|
+
/** Get all entities by given criteria */
|
|
255
|
+
declare const skillLevelsGetAllServer: (query?: Partial<SkillLevelsGetAllQueryParams>) => Promise<ResultContainerModel<QualificationSkillLevelModel>>;
|
|
256
|
+
/** Get an entity by its id */
|
|
257
|
+
declare const skillLevelsGetByIdServer: (params: SkillLevelsGetByIdPathParams, query?: Partial<SkillLevelsGetByIdQueryParams>) => Promise<QualificationSkillLevelModel>;
|
|
258
|
+
/** Get all entities by given criteria */
|
|
259
|
+
declare const sparePartsGetAllServer: (query?: Partial<SparePartsGetAllQueryParams>) => Promise<ResultContainerModel<SupplySparePartModel>>;
|
|
260
|
+
/** Get an entity by its id */
|
|
261
|
+
declare const sparePartsGetByIdServer: (params: SparePartsGetByIdPathParams, query?: Partial<SparePartsGetByIdQueryParams>) => Promise<SupplySparePartModel>;
|
|
262
|
+
/** Query Iirds storage by SparQL */
|
|
263
|
+
declare const sparQLExecuteSparQlServer: (params: SparQLExecuteSparQlPathParams) => Promise<Record<string, string>[]>;
|
|
264
|
+
/** Get all entities by given criteria */
|
|
265
|
+
declare const suppliesGetAllServer: (query?: Partial<SuppliesGetAllQueryParams>) => Promise<ResultContainerModel<SupplyModel>>;
|
|
266
|
+
/** Get an entity by its id */
|
|
267
|
+
declare const suppliesGetByIdServer: (params: SuppliesGetByIdPathParams, query?: Partial<SuppliesGetByIdQueryParams>) => Promise<SupplyModel>;
|
|
268
|
+
/** Get all entities by given criteria */
|
|
269
|
+
declare const tasksGetAllServer: (query?: Partial<TasksGetAllQueryParams>) => Promise<ResultContainerModel<TopicTypeTaskModel>>;
|
|
270
|
+
/** Get an entity by its id */
|
|
271
|
+
declare const tasksGetByIdServer: (params: TasksGetByIdPathParams, query?: Partial<TasksGetByIdQueryParams>) => Promise<TopicTypeTaskModel>;
|
|
272
|
+
/** Get all entities by given criteria */
|
|
273
|
+
declare const technicalDataGetAllServer: (query?: Partial<TechnicalDataGetAllQueryParams>) => Promise<ResultContainerModel<InformationSubjectTechnicalDataModel>>;
|
|
274
|
+
/** Get an entity by its id */
|
|
275
|
+
declare const technicalDataGetByIdServer: (params: TechnicalDataGetByIdPathParams, query?: Partial<TechnicalDataGetByIdQueryParams>) => Promise<InformationSubjectTechnicalDataModel>;
|
|
276
|
+
/** Get all entities by given criteria */
|
|
277
|
+
declare const technicalOverviewsGetAllServer: (query?: Partial<TechnicalOverviewsGetAllQueryParams>) => Promise<ResultContainerModel<InformationSubjectTechnicalOverviewModel>>;
|
|
278
|
+
/** Get an entity by its id */
|
|
279
|
+
declare const technicalOverviewsGetByIdServer: (params: TechnicalOverviewsGetByIdPathParams, query?: Partial<TechnicalOverviewsGetByIdQueryParams>) => Promise<InformationSubjectTechnicalOverviewModel>;
|
|
280
|
+
/** Get all entities by given criteria */
|
|
281
|
+
declare const topicsGetAllServer: (query?: Partial<TopicsGetAllQueryParams>) => Promise<ResultContainerModel<TopicModel>>;
|
|
282
|
+
/** Get an entity by its id */
|
|
283
|
+
declare const topicsGetByIdServer: (params: TopicsGetByIdPathParams, query?: Partial<TopicsGetByIdQueryParams>) => Promise<TopicModel>;
|
|
284
|
+
/** Languages used by indexed terms */
|
|
285
|
+
declare const topicsLanguagesServer: (query?: Partial<TopicsLanguagesQueryParams>) => Promise<unknown>;
|
|
286
|
+
/** Get all entities by given criteria */
|
|
287
|
+
declare const topicTypesGetAllServer: (query?: Partial<TopicTypesGetAllQueryParams>) => Promise<ResultContainerModel<TopicTypeModel>>;
|
|
288
|
+
/** Get an entity by its id */
|
|
289
|
+
declare const topicTypesGetByIdServer: (params: TopicTypesGetByIdPathParams, query?: Partial<TopicTypesGetByIdQueryParams>) => Promise<TopicTypeModel>;
|
|
290
|
+
/** Get all entities by given criteria */
|
|
291
|
+
declare const troubleShootingsGetAllServer: (query?: Partial<TroubleShootingsGetAllQueryParams>) => Promise<ResultContainerModel<TopicTypeTroubleShootingModel>>;
|
|
292
|
+
/** Get an entity by its id */
|
|
293
|
+
declare const troubleShootingsGetByIdServer: (params: TroubleShootingsGetByIdPathParams, query?: Partial<TroubleShootingsGetByIdQueryParams>) => Promise<TopicTypeTroubleShootingModel>;
|
|
294
|
+
/** Get all entities by given criteria */
|
|
295
|
+
declare const usesGetAllServer: (query?: Partial<UsesGetAllQueryParams>) => Promise<ResultContainerModel<ProductLcpUseModel>>;
|
|
296
|
+
/** Get an entity by its id */
|
|
297
|
+
declare const usesGetByIdServer: (params: UsesGetByIdPathParams, query?: Partial<UsesGetByIdQueryParams>) => Promise<ProductLcpUseModel>;
|
|
298
|
+
/** Get all entities by given criteria */
|
|
299
|
+
declare const vCardsGetAllServer: (query?: Partial<VCardsGetAllQueryParams>) => Promise<ResultContainerModel<VCardModel>>;
|
|
300
|
+
/** Get an entity by its id */
|
|
301
|
+
declare const vCardsGetByIdServer: (params: VCardsGetByIdPathParams, query?: Partial<VCardsGetByIdQueryParams>) => Promise<VCardModel>;
|
|
302
|
+
/** Get all entities by given criteria */
|
|
303
|
+
declare const warningMessagesGetAllServer: (query?: Partial<WarningMessagesGetAllQueryParams>) => Promise<ResultContainerModel<InformationSubjectSafetyWarningMessageModel>>;
|
|
304
|
+
/** Get an entity by its id */
|
|
305
|
+
declare const warningMessagesGetByIdServer: (params: WarningMessagesGetByIdPathParams, query?: Partial<WarningMessagesGetByIdQueryParams>) => Promise<InformationSubjectSafetyWarningMessageModel>;
|
|
306
|
+
/** Get all entities by given criteria */
|
|
307
|
+
declare const workingTimesGetAllServer: (query?: Partial<WorkingTimesGetAllQueryParams>) => Promise<ResultContainerModel<PlanningWorkingTimeModel>>;
|
|
308
|
+
/** Get an entity by its id */
|
|
309
|
+
declare const workingTimesGetByIdServer: (params: WorkingTimesGetByIdPathParams, query?: Partial<WorkingTimesGetByIdQueryParams>) => Promise<PlanningWorkingTimeModel>;
|
|
310
|
+
|
|
311
|
+
export { administrativeMetadataGetAllServer, administrativeMetadataGetByIdServer, afterUsesGetAllServer, afterUsesGetByIdServer, collectionsGetAllServer, collectionsGetByIdServer, componentsGetAllServer, componentsGetByIdServer, conceptsGetAllServer, conceptsGetByIdServer, conformitiesGetAllServer, conformitiesGetByIdServer, consumablesGetAllServer, consumablesGetByIdServer, contentLifeCycleStatusGetAllServer, contentLifeCycleStatusGetByIdServer, designAndRealizationsGetAllServer, designAndRealizationsGetByIdServer, directoryNodeTypesGetAllServer, directoryNodeTypesGetByIdServer, directoryNodesGetAllServer, directoryNodesGetByIdServer, documentTypesGetAllServer, documentTypesGetByIdServer, documentationMetadataGetAllServer, documentationMetadataGetByIdServer, documentsGetAllServer, documentsGetByIdServer, documentsLanguagesServer, domainEntitiesGetAllServer, domainEntitiesGetByIdServer, downTimesGetAllServer, downTimesGetByIdServer, eventsGetAllServer, eventsGetByIdServer, formalitiesGetAllServer, formalitiesGetByIdServer, formsGetAllServer, formsGetByIdServer, fragmentsGetAllServer, fragmentsGetByIdServer, fragmentsLanguagesServer, functionalMetadatasGetAllServer, functionalMetadatasGetByIdServer, functionalitiesGetAllServer, functionalitiesGetByIdServer, groupsGetAllServer, groupsGetByIdServer, hardwareToolsGetAllServer, hardwareToolsGetByIdServer, identitiesGetAllServer, identitiesGetByIdServer, identityDomainsGetAllServer, identityDomainsGetByIdServer, individualsGetAllServer, individualsGetByIdServer, informationObjectsGetAllServer, informationObjectsGetByIdServer, informationSubjectsGetAllServer, informationSubjectsGetByIdServer, informationTypesGetAllServer, informationTypesGetByIdServer, informationUnitsGetAllServer, informationUnitsGetByIdServer, informationUnitsLanguagesServer, learningsGetAllServer, learningsGetByIdServer, locationsGetAllServer, locationsGetByIdServer, lubricantsGetAllServer, lubricantsGetByIdServer, maintenanceIntervalsGetAllServer, maintenanceIntervalsGetByIdServer, operatingSuppliesGetAllServer, operatingSuppliesGetByIdServer, organizationsGetAllServer, organizationsGetByIdServer, packagesCreateClientAppServer, packagesGetAllServer, packagesGetByIdServer, packagesLanguagesServer, partiesGetAllServer, partiesGetByIdServer, planningTimesGetAllServer, planningTimesGetByIdServer, processesGetAllServer, processesGetByIdServer, productFeaturesGetAllServer, productFeaturesGetByIdServer, productFunctionsGetAllServer, productFunctionsGetByIdServer, productLifeCyclePhasesGetAllServer, productLifeCyclePhasesGetByIdServer, productMetadataGetAllServer, productMetadataGetByIdServer, productPropertiesGetAllServer, productPropertiesGetByIdServer, productVariantsGetAllServer, productVariantsGetByIdServer, puttingToUsesGetAllServer, puttingToUsesGetByIdServer, qualificationsGetAllServer, qualificationsGetByIdServer, referencesGetAllServer, referencesGetByIdServer, renditionsGetAllServer, renditionsGetByIdServer, renditionsGetWithBinaryWithBinaryPathServer, resourcesDownloadResourceServer, resourcesDownloadResourceWithBinaryPathServer, resourcesGetPackageServer, resourcesGetSubjectFromPackageServer, resourcesViewResourceServer, resourcesViewResourceWithBinaryPathServer, rolesGetAllServer, rolesGetByIdServer, safetiesGetAllServer, safetiesGetByIdServer, searchGetAllServer, setupTimesGetAllServer, setupTimesGetByIdServer, skillLevelsGetAllServer, skillLevelsGetByIdServer, sparQLExecuteSparQlServer, sparePartsGetAllServer, sparePartsGetByIdServer, suppliesGetAllServer, suppliesGetByIdServer, tasksGetAllServer, tasksGetByIdServer, technicalDataGetAllServer, technicalDataGetByIdServer, technicalOverviewsGetAllServer, technicalOverviewsGetByIdServer, topicTypesGetAllServer, topicTypesGetByIdServer, topicsGetAllServer, topicsGetByIdServer, topicsLanguagesServer, troubleShootingsGetAllServer, troubleShootingsGetByIdServer, usesGetAllServer, usesGetByIdServer, vCardsGetAllServer, vCardsGetByIdServer, warningMessagesGetAllServer, warningMessagesGetByIdServer, workingTimesGetAllServer, workingTimesGetByIdServer };
|