@c-rex/interfaces 0.1.17 → 0.1.18

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/index.d.mts CHANGED
@@ -1,4 +1,4 @@
1
- import { LogLevelType, LogCategoriesType, WildCardType, ResultViewStyles, ResultTypes, articlePageLayoutType, FilesExtensions, DocumentsType, articleInfoItemType } from '@c-rex/types';
1
+ import { LogLevelType, LogCategoriesType, WildCardType, ResultViewStyles, ResultTypes, articlePageLayoutType, FilesExtensions, DocumentsType, articleInfoItemType, OperatorType, AdministrativeMetadataModelField, ProductLcpAfterUseModelField, InformationSubjectCollectionModelField, ComponentModelField, TopicTypeConceptModelField, InformationSubjectConformityModelField, SupplyConsumableModelField, ContentLifeCycleStatusModelField, ProductLcpDesignAndRealizationModelField, DirectoryNodeModelField, DirectoryNodeTypeModelField, DocumentationMetadataModelField, DocumentModelField, DocumentTypeModelField, DomainEntityModelField, PlanningDownTimeModelField, EventModelField, InformationSubjectFormalityModelField, TopicTypeFormModelField, FragmentModelField, InformationSubjectFunctionalityModelField, FunctionalMetadataModelField, VCardGroupModelField, SupplyHardwareToolModelField, IdentityModelField, IdentityDomainModelField, VCardIndividualModelField, InformationObjectModelField, InformationSubjectModelField, InformationTypeModelField, InformationUnitModelField, TopicTypeLearningModelField, VCardLocationModelField, SupplyLubricantModelField, PlanningMaintenanceIntervalModelField, SupplyOperatingModelField, VCardOrganizationModelField, PackageModelField, PartyModelField, PlanningTimeModelField, InformationSubjectProcessModelField, ProductFeatureModelField, ProductFunctionModelField, ProductLifeCyclePhaseModelField, ProductMetadataModelField, ProductPropertyModelField, ProductVariantModelField, ProductLcpPuttingToUseModelField, QualificationModelField, TopicTypeReferenceModelField, RenditionModelField, QualificationRoleModelField, InformationSubjectSafetyModelField, PlanningSetupTimeModelField, QualificationSkillLevelModelField, SupplySparePartModelField, SupplyModelField, TopicTypeTaskModelField, InformationSubjectTechnicalDataModelField, InformationSubjectTechnicalOverviewModelField, TopicModelField, TopicTypeModelField, TopicTypeTroubleShootingModelField, ProductLcpUseModelField, VCardModelField, InformationSubjectSafetyWarningMessageModelField, PlanningWorkingTimeModelField } from '@c-rex/types';
2
2
 
3
3
  interface DefaultCrexDirectories extends idShortID {
4
4
  labels: Labels[];
@@ -43,7 +43,7 @@ interface Tags {
43
43
  }[];
44
44
  shortId?: string;
45
45
  }[];
46
- }[];
46
+ };
47
47
  }
48
48
  interface DefaultPageInfo {
49
49
  pageNumber: number;
@@ -72,13 +72,13 @@ interface Link {
72
72
  }
73
73
  interface DefaultRequest<ItemsType> {
74
74
  items: ItemsType[];
75
- tags?: Tags;
75
+ tags?: Tags[];
76
76
  links: Link[];
77
77
  pageInfo: DefaultPageInfo;
78
78
  }
79
79
  interface DefaultResponse<ItemsType, TagsType> {
80
80
  items: ItemsType[];
81
- tags?: TagsType;
81
+ tags?: TagsType[];
82
82
  pageInfo: DefaultPageInfo;
83
83
  }
84
84
 
@@ -150,9 +150,7 @@ interface CustomerConfig {
150
150
  main: string;
151
151
  sub: string;
152
152
  };
153
- search: SearchSettings;
154
153
  languageSwitcher: LanguageSwitcherConfig;
155
- results: ResultsConfig;
156
154
  }
157
155
 
158
156
  interface DirectoryNodes extends DefaultCrexDirectories {
@@ -205,11 +203,16 @@ interface AutocompleteSuggestion {
205
203
  value: string;
206
204
  }[];
207
205
  }
206
+ interface SuggestionQueryParams {
207
+ maxHits?: number;
208
+ scopes?: string[];
209
+ lang?: string;
210
+ }
208
211
 
209
212
  interface TreeOfContent {
210
213
  label: string;
211
214
  id: string;
212
- link: string;
215
+ link?: string;
213
216
  active: boolean;
214
217
  children: TreeOfContent[];
215
218
  }
@@ -267,4 +270,3199 @@ interface CollectionResult {
267
270
  documentAvailableVersions: informationUnitsResponseItem[];
268
271
  }
269
272
 
270
- export type { AutocompleteSuggestion, AvailableVersionsInterface, ClassInterface, CollectionContext, CollectionResult, ConfigInterface, CookiesConfigs, CustomerConfig, DefaultCrexDirectories, DefaultCrexObject, DefaultCrexRenditions, DefaultPageInfo, DefaultRequest, DefaultResponse, DirectoryNodes, DirectoryNodesResponse, DocumentTypesItem, DocumentTypesResponse, Filters, Labels, LanguageAndCountries, LanguageSwitcherConfig, Link, OIDCInterface, ResultsConfig, SearchSettings, Tags, TopicsRequestItem, TopicsResponseItem, TreeOfContent, idShortID, informationUnitsItems, informationUnitsRenditions, informationUnitsResponse, informationUnitsResponseItem, logInfo };
273
+ /**
274
+ * Auto-generated from OpenAPI spec
275
+ * Source: https://staging.c-rex.net/ids/api/swagger/v1/swagger.json
276
+ * Generated: 2025-12-09T23:10:42.853Z
277
+ * Do not edit manually
278
+ */
279
+ /** Generic Result Container */
280
+
281
+ interface ResultContainerModel<T = unknown> {
282
+ items: T[];
283
+ pageInfo: ResultContainerPageInfoModel;
284
+ links: ResourceLink[];
285
+ tags?: Tags;
286
+ }
287
+ /** Data Model for Controller api */
288
+ interface AdministrativeMetadataModel {
289
+ id?: string | null;
290
+ shortId?: string | null;
291
+ score?: number | null;
292
+ class?: ObjectRefModel;
293
+ labels?: LiteralModel[] | null;
294
+ comments?: LiteralModel[] | null;
295
+ descriptions?: LiteralModel[] | null;
296
+ synonyms?: string[] | null;
297
+ packages?: ObjectRefModel[] | null;
298
+ links?: ResourceLink[] | null;
299
+ }
300
+ /** Data Model for AuditStateModel */
301
+ interface AuditStateModel {
302
+ id?: string | null;
303
+ state?: string | null;
304
+ }
305
+ /** Data Model for Controller api */
306
+ interface AuthStateModel {
307
+ state?: string | null;
308
+ licenses?: AuditStateModel[] | null;
309
+ roles?: AuditStateModel[] | null;
310
+ }
311
+ /** Data Model for Controller api */
312
+ interface ComponentModel {
313
+ id?: string | null;
314
+ shortId?: string | null;
315
+ score?: number | null;
316
+ class?: ObjectRefModel;
317
+ labels?: LiteralModel[] | null;
318
+ comments?: LiteralModel[] | null;
319
+ descriptions?: LiteralModel[] | null;
320
+ synonyms?: string[] | null;
321
+ packages?: ObjectRefModel[] | null;
322
+ links?: ResourceLink[] | null;
323
+ productGraphic?: ExternalProductGraphicModel;
324
+ titles?: LiteralModel[] | null;
325
+ parents?: ObjectRefModel[] | null;
326
+ ancestors?: ObjectRefModel[][] | null;
327
+ ancestorsOrSelf?: ObjectRefModel[][] | null;
328
+ components?: ObjectRefModel[] | null;
329
+ identities?: ObjectRefModel[] | null;
330
+ parties?: ObjectRefModel[] | null;
331
+ informationUnits?: ObjectRefModel[] | null;
332
+ seeAlso?: ExternalProductOntologyModel[] | null;
333
+ }
334
+ /** Data Model for Controller api */
335
+ interface ContentLifeCycleStatusModel {
336
+ id?: string | null;
337
+ shortId?: string | null;
338
+ score?: number | null;
339
+ class?: ObjectRefModel;
340
+ labels?: LiteralModel[] | null;
341
+ comments?: LiteralModel[] | null;
342
+ descriptions?: LiteralModel[] | null;
343
+ synonyms?: string[] | null;
344
+ packages?: ObjectRefModel[] | null;
345
+ links?: ResourceLink[] | null;
346
+ dateOfEffect?: string | null;
347
+ dateOfExpiry?: string | null;
348
+ dateOfStatus?: string | null;
349
+ purpose?: LiteralModel;
350
+ value?: ContentLifeCycleStatusValueModel;
351
+ parties?: ObjectRefModel[] | null;
352
+ }
353
+ /** Data Model for Controller api */
354
+ interface ContentLifeCycleStatusValueModel {
355
+ id?: string | null;
356
+ shortId?: string | null;
357
+ score?: number | null;
358
+ class?: ObjectRefModel;
359
+ labels?: LiteralModel[] | null;
360
+ comments?: LiteralModel[] | null;
361
+ descriptions?: LiteralModel[] | null;
362
+ synonyms?: string[] | null;
363
+ packages?: ObjectRefModel[] | null;
364
+ links?: ResourceLink[] | null;
365
+ }
366
+ /** Data Model for Controller api */
367
+ interface DirectoryNodeModel {
368
+ id?: string | null;
369
+ shortId?: string | null;
370
+ score?: number | null;
371
+ class?: ObjectRefModel;
372
+ labels?: LiteralModel[] | null;
373
+ comments?: LiteralModel[] | null;
374
+ descriptions?: LiteralModel[] | null;
375
+ synonyms?: string[] | null;
376
+ packages?: ObjectRefModel[] | null;
377
+ links?: ResourceLink[] | null;
378
+ structureType?: ObjectRefModel;
379
+ parents?: ObjectRefModel[] | null;
380
+ ancestors?: ObjectRefModel[][] | null;
381
+ ancestorsOrSelf?: ObjectRefModel[][] | null;
382
+ childNodes?: ObjectRefModel[] | null;
383
+ informationUnits?: ObjectRefModel[] | null;
384
+ }
385
+ /** Data Model for DirectoryNodeTypeModel */
386
+ interface DirectoryNodeTypeModel {
387
+ id?: string | null;
388
+ shortId?: string | null;
389
+ score?: number | null;
390
+ class?: ObjectRefModel;
391
+ labels?: LiteralModel[] | null;
392
+ comments?: LiteralModel[] | null;
393
+ descriptions?: LiteralModel[] | null;
394
+ synonyms?: string[] | null;
395
+ packages?: ObjectRefModel[] | null;
396
+ links?: ResourceLink[] | null;
397
+ }
398
+ /** Data Model for Controller api */
399
+ interface DocumentModel {
400
+ id?: string | null;
401
+ shortId?: string | null;
402
+ score?: number | null;
403
+ class?: ObjectRefModel;
404
+ labels?: LiteralModel[] | null;
405
+ comments?: LiteralModel[] | null;
406
+ descriptions?: LiteralModel[] | null;
407
+ synonyms?: string[] | null;
408
+ packages?: ObjectRefModel[] | null;
409
+ links?: ResourceLink[] | null;
410
+ revision?: string | null;
411
+ created?: string | null;
412
+ modified?: string | null;
413
+ abstract?: LiteralModel[] | null;
414
+ replaces?: ObjectRefModel;
415
+ versionOf?: ObjectRefModel;
416
+ titles?: LiteralModel[] | null;
417
+ languages?: string[] | null;
418
+ parties?: ObjectRefModel[] | null;
419
+ renditions?: RenditionModel[] | null;
420
+ identities?: ObjectRefModel[] | null;
421
+ components?: ObjectRefModel[] | null;
422
+ informationSubjects?: ObjectRefModel[] | null;
423
+ topicTypes?: ObjectRefModel[] | null;
424
+ documentTypes?: ObjectRefModel[] | null;
425
+ directoryNodes?: ObjectRefModel[] | null;
426
+ contentLifeCycleStatus?: ObjectRefModel[] | null;
427
+ applicableForTypes?: ObjectRefModel[] | null;
428
+ planningTimes?: ObjectRefModel[] | null;
429
+ events?: ObjectRefModel[] | null;
430
+ functionalMetadata?: ObjectRefModel[] | null;
431
+ informationUnits?: ObjectRefModel[] | null;
432
+ productFeatures?: ObjectRefModel[] | null;
433
+ productLifeCyclePhases?: ObjectRefModel[] | null;
434
+ productMetadata?: ObjectRefModel[] | null;
435
+ productVariants?: ObjectRefModel[] | null;
436
+ qualifications?: ObjectRefModel[] | null;
437
+ supplies?: ObjectRefModel[] | null;
438
+ }
439
+ /** Data Model for Controller api */
440
+ interface DocumentTypeModel {
441
+ id?: string | null;
442
+ shortId?: string | null;
443
+ score?: number | null;
444
+ class?: ObjectRefModel;
445
+ labels?: LiteralModel[] | null;
446
+ comments?: LiteralModel[] | null;
447
+ descriptions?: LiteralModel[] | null;
448
+ synonyms?: string[] | null;
449
+ packages?: ObjectRefModel[] | null;
450
+ links?: ResourceLink[] | null;
451
+ }
452
+ /** Data Model for Controller api */
453
+ interface DocumentationMetadataModel {
454
+ id?: string | null;
455
+ shortId?: string | null;
456
+ score?: number | null;
457
+ class?: ObjectRefModel;
458
+ labels?: LiteralModel[] | null;
459
+ comments?: LiteralModel[] | null;
460
+ descriptions?: LiteralModel[] | null;
461
+ synonyms?: string[] | null;
462
+ packages?: ObjectRefModel[] | null;
463
+ links?: ResourceLink[] | null;
464
+ }
465
+ /** Data Model for Controller api */
466
+ interface DomainEntityModel {
467
+ id?: string | null;
468
+ shortId?: string | null;
469
+ score?: number | null;
470
+ class?: ObjectRefModel;
471
+ labels?: LiteralModel[] | null;
472
+ comments?: LiteralModel[] | null;
473
+ descriptions?: LiteralModel[] | null;
474
+ synonyms?: string[] | null;
475
+ packages?: ObjectRefModel[] | null;
476
+ }
477
+ /** Data Model for Controller api */
478
+ interface EventModel {
479
+ id?: string | null;
480
+ shortId?: string | null;
481
+ score?: number | null;
482
+ class?: ObjectRefModel;
483
+ labels?: LiteralModel[] | null;
484
+ comments?: LiteralModel[] | null;
485
+ descriptions?: LiteralModel[] | null;
486
+ synonyms?: string[] | null;
487
+ packages?: ObjectRefModel[] | null;
488
+ links?: ResourceLink[] | null;
489
+ eventCode?: ObjectRefModel[] | null;
490
+ eventType?: ObjectRefModel[] | null;
491
+ }
492
+ /** Data Model for Controller api */
493
+ interface ExternalProductGraphicModel {
494
+ id?: string | null;
495
+ shortId?: string | null;
496
+ score?: number | null;
497
+ class?: ObjectRefModel;
498
+ labels?: LiteralModel[] | null;
499
+ comments?: LiteralModel[] | null;
500
+ descriptions?: LiteralModel[] | null;
501
+ synonyms?: string[] | null;
502
+ packages?: ObjectRefModel[] | null;
503
+ links?: ResourceLink[] | null;
504
+ revision?: string | null;
505
+ created?: string | null;
506
+ modified?: string | null;
507
+ abstract?: LiteralModel[] | null;
508
+ replaces?: ObjectRefModel;
509
+ versionOf?: ObjectRefModel;
510
+ titles?: LiteralModel[] | null;
511
+ languages?: string[] | null;
512
+ parties?: ObjectRefModel[] | null;
513
+ renditions?: RenditionModel[] | null;
514
+ identities?: ObjectRefModel[] | null;
515
+ components?: ObjectRefModel[] | null;
516
+ informationSubjects?: ObjectRefModel[] | null;
517
+ topicTypes?: ObjectRefModel[] | null;
518
+ documentTypes?: ObjectRefModel[] | null;
519
+ directoryNodes?: ObjectRefModel[] | null;
520
+ contentLifeCycleStatus?: ObjectRefModel[] | null;
521
+ applicableForTypes?: ObjectRefModel[] | null;
522
+ planningTimes?: ObjectRefModel[] | null;
523
+ events?: ObjectRefModel[] | null;
524
+ functionalMetadata?: ObjectRefModel[] | null;
525
+ informationUnits?: ObjectRefModel[] | null;
526
+ productFeatures?: ObjectRefModel[] | null;
527
+ productLifeCyclePhases?: ObjectRefModel[] | null;
528
+ productMetadata?: ObjectRefModel[] | null;
529
+ productVariants?: ObjectRefModel[] | null;
530
+ qualifications?: ObjectRefModel[] | null;
531
+ supplies?: ObjectRefModel[] | null;
532
+ }
533
+ /** Data Model for Controller api */
534
+ interface ExternalProductOntologyModel {
535
+ id?: string | null;
536
+ shortId?: string | null;
537
+ score?: number | null;
538
+ itemNumbers?: string[] | null;
539
+ productSeries?: string[] | null;
540
+ productModels?: string[] | null;
541
+ productNames?: string[] | null;
542
+ products?: ExternalProductOntologyModel[] | null;
543
+ }
544
+ /** Data Model for Controller api */
545
+ interface FragmentModel {
546
+ id?: string | null;
547
+ shortId?: string | null;
548
+ score?: number | null;
549
+ class?: ObjectRefModel;
550
+ labels?: LiteralModel[] | null;
551
+ comments?: LiteralModel[] | null;
552
+ descriptions?: LiteralModel[] | null;
553
+ synonyms?: string[] | null;
554
+ packages?: ObjectRefModel[] | null;
555
+ links?: ResourceLink[] | null;
556
+ revision?: string | null;
557
+ created?: string | null;
558
+ modified?: string | null;
559
+ abstract?: LiteralModel[] | null;
560
+ replaces?: ObjectRefModel;
561
+ versionOf?: ObjectRefModel;
562
+ titles?: LiteralModel[] | null;
563
+ languages?: string[] | null;
564
+ parties?: ObjectRefModel[] | null;
565
+ renditions?: RenditionModel[] | null;
566
+ identities?: ObjectRefModel[] | null;
567
+ components?: ObjectRefModel[] | null;
568
+ informationSubjects?: ObjectRefModel[] | null;
569
+ topicTypes?: ObjectRefModel[] | null;
570
+ documentTypes?: ObjectRefModel[] | null;
571
+ directoryNodes?: ObjectRefModel[] | null;
572
+ contentLifeCycleStatus?: ObjectRefModel[] | null;
573
+ applicableForTypes?: ObjectRefModel[] | null;
574
+ planningTimes?: ObjectRefModel[] | null;
575
+ events?: ObjectRefModel[] | null;
576
+ functionalMetadata?: ObjectRefModel[] | null;
577
+ informationUnits?: ObjectRefModel[] | null;
578
+ productFeatures?: ObjectRefModel[] | null;
579
+ productLifeCyclePhases?: ObjectRefModel[] | null;
580
+ productMetadata?: ObjectRefModel[] | null;
581
+ productVariants?: ObjectRefModel[] | null;
582
+ qualifications?: ObjectRefModel[] | null;
583
+ supplies?: ObjectRefModel[] | null;
584
+ }
585
+ /** Data Model for Controller api */
586
+ interface FunctionalMetadataModel {
587
+ id?: string | null;
588
+ shortId?: string | null;
589
+ score?: number | null;
590
+ class?: ObjectRefModel;
591
+ labels?: LiteralModel[] | null;
592
+ comments?: LiteralModel[] | null;
593
+ descriptions?: LiteralModel[] | null;
594
+ synonyms?: string[] | null;
595
+ packages?: ObjectRefModel[] | null;
596
+ links?: ResourceLink[] | null;
597
+ }
598
+ /** Data Model for Controller api */
599
+ interface IdentityDomainModel {
600
+ id?: string | null;
601
+ shortId?: string | null;
602
+ score?: number | null;
603
+ class?: ObjectRefModel;
604
+ labels?: LiteralModel[] | null;
605
+ comments?: LiteralModel[] | null;
606
+ descriptions?: LiteralModel[] | null;
607
+ synonyms?: string[] | null;
608
+ packages?: ObjectRefModel[] | null;
609
+ links?: ResourceLink[] | null;
610
+ parties?: ObjectRefModel[] | null;
611
+ }
612
+ /** Data Model for Controller api */
613
+ interface IdentityModel {
614
+ id?: string | null;
615
+ shortId?: string | null;
616
+ score?: number | null;
617
+ class?: ObjectRefModel;
618
+ labels?: LiteralModel[] | null;
619
+ comments?: LiteralModel[] | null;
620
+ descriptions?: LiteralModel[] | null;
621
+ synonyms?: string[] | null;
622
+ packages?: ObjectRefModel[] | null;
623
+ links?: ResourceLink[] | null;
624
+ identifier?: LiteralModel;
625
+ identityDomain?: ObjectRefModel;
626
+ }
627
+ /** Data Model for Controller api */
628
+ interface InformationObjectModel {
629
+ id?: string | null;
630
+ shortId?: string | null;
631
+ score?: number | null;
632
+ class?: ObjectRefModel;
633
+ labels?: LiteralModel[] | null;
634
+ comments?: LiteralModel[] | null;
635
+ descriptions?: LiteralModel[] | null;
636
+ synonyms?: string[] | null;
637
+ packages?: ObjectRefModel[] | null;
638
+ links?: ResourceLink[] | null;
639
+ identities?: ObjectRefModel[] | null;
640
+ }
641
+ /** Data Model for Controller api */
642
+ interface InformationSubjectCollectionModel {
643
+ id?: string | null;
644
+ shortId?: string | null;
645
+ score?: number | null;
646
+ class?: ObjectRefModel;
647
+ labels?: LiteralModel[] | null;
648
+ comments?: LiteralModel[] | null;
649
+ descriptions?: LiteralModel[] | null;
650
+ synonyms?: string[] | null;
651
+ packages?: ObjectRefModel[] | null;
652
+ links?: ResourceLink[] | null;
653
+ }
654
+ /** Data Model for Controller api */
655
+ interface InformationSubjectConformityModel {
656
+ id?: string | null;
657
+ shortId?: string | null;
658
+ score?: number | null;
659
+ class?: ObjectRefModel;
660
+ labels?: LiteralModel[] | null;
661
+ comments?: LiteralModel[] | null;
662
+ descriptions?: LiteralModel[] | null;
663
+ synonyms?: string[] | null;
664
+ packages?: ObjectRefModel[] | null;
665
+ links?: ResourceLink[] | null;
666
+ }
667
+ /** Data Model for Controller api */
668
+ interface InformationSubjectFormalityModel {
669
+ id?: string | null;
670
+ shortId?: string | null;
671
+ score?: number | null;
672
+ class?: ObjectRefModel;
673
+ labels?: LiteralModel[] | null;
674
+ comments?: LiteralModel[] | null;
675
+ descriptions?: LiteralModel[] | null;
676
+ synonyms?: string[] | null;
677
+ packages?: ObjectRefModel[] | null;
678
+ links?: ResourceLink[] | null;
679
+ }
680
+ /** Data Model for Controller api */
681
+ interface InformationSubjectFunctionalityModel {
682
+ id?: string | null;
683
+ shortId?: string | null;
684
+ score?: number | null;
685
+ class?: ObjectRefModel;
686
+ labels?: LiteralModel[] | null;
687
+ comments?: LiteralModel[] | null;
688
+ descriptions?: LiteralModel[] | null;
689
+ synonyms?: string[] | null;
690
+ packages?: ObjectRefModel[] | null;
691
+ links?: ResourceLink[] | null;
692
+ }
693
+ /** Data Model for Controller api */
694
+ interface InformationSubjectModel {
695
+ id?: string | null;
696
+ shortId?: string | null;
697
+ score?: number | null;
698
+ class?: ObjectRefModel;
699
+ labels?: LiteralModel[] | null;
700
+ comments?: LiteralModel[] | null;
701
+ descriptions?: LiteralModel[] | null;
702
+ synonyms?: string[] | null;
703
+ packages?: ObjectRefModel[] | null;
704
+ links?: ResourceLink[] | null;
705
+ }
706
+ /** Data Model for Controller api */
707
+ interface InformationSubjectProcessModel {
708
+ id?: string | null;
709
+ shortId?: string | null;
710
+ score?: number | null;
711
+ class?: ObjectRefModel;
712
+ labels?: LiteralModel[] | null;
713
+ comments?: LiteralModel[] | null;
714
+ descriptions?: LiteralModel[] | null;
715
+ synonyms?: string[] | null;
716
+ packages?: ObjectRefModel[] | null;
717
+ links?: ResourceLink[] | null;
718
+ }
719
+ /** Data Model for Controller api */
720
+ interface InformationSubjectSafetyModel {
721
+ id?: string | null;
722
+ shortId?: string | null;
723
+ score?: number | null;
724
+ class?: ObjectRefModel;
725
+ labels?: LiteralModel[] | null;
726
+ comments?: LiteralModel[] | null;
727
+ descriptions?: LiteralModel[] | null;
728
+ synonyms?: string[] | null;
729
+ packages?: ObjectRefModel[] | null;
730
+ links?: ResourceLink[] | null;
731
+ }
732
+ /** Data Model for Controller api */
733
+ interface InformationSubjectSafetyWarningMessageModel {
734
+ id?: string | null;
735
+ shortId?: string | null;
736
+ score?: number | null;
737
+ class?: ObjectRefModel;
738
+ labels?: LiteralModel[] | null;
739
+ comments?: LiteralModel[] | null;
740
+ descriptions?: LiteralModel[] | null;
741
+ synonyms?: string[] | null;
742
+ packages?: ObjectRefModel[] | null;
743
+ links?: ResourceLink[] | null;
744
+ }
745
+ /** Data Model for Controller api */
746
+ interface InformationSubjectTechnicalDataModel {
747
+ id?: string | null;
748
+ shortId?: string | null;
749
+ score?: number | null;
750
+ class?: ObjectRefModel;
751
+ labels?: LiteralModel[] | null;
752
+ comments?: LiteralModel[] | null;
753
+ descriptions?: LiteralModel[] | null;
754
+ synonyms?: string[] | null;
755
+ packages?: ObjectRefModel[] | null;
756
+ links?: ResourceLink[] | null;
757
+ }
758
+ /** Data Model for Controller api */
759
+ interface InformationSubjectTechnicalOverviewModel {
760
+ id?: string | null;
761
+ shortId?: string | null;
762
+ score?: number | null;
763
+ class?: ObjectRefModel;
764
+ labels?: LiteralModel[] | null;
765
+ comments?: LiteralModel[] | null;
766
+ descriptions?: LiteralModel[] | null;
767
+ synonyms?: string[] | null;
768
+ packages?: ObjectRefModel[] | null;
769
+ links?: ResourceLink[] | null;
770
+ }
771
+ /** Data Model for Controller api */
772
+ interface InformationTypeModel {
773
+ id?: string | null;
774
+ shortId?: string | null;
775
+ score?: number | null;
776
+ class?: ObjectRefModel;
777
+ labels?: LiteralModel[] | null;
778
+ comments?: LiteralModel[] | null;
779
+ descriptions?: LiteralModel[] | null;
780
+ synonyms?: string[] | null;
781
+ packages?: ObjectRefModel[] | null;
782
+ links?: ResourceLink[] | null;
783
+ }
784
+ /** Data Model for Controller api */
785
+ interface InformationUnitModel {
786
+ id?: string | null;
787
+ shortId?: string | null;
788
+ score?: number | null;
789
+ class?: ObjectRefModel;
790
+ labels?: LiteralModel[] | null;
791
+ comments?: LiteralModel[] | null;
792
+ descriptions?: LiteralModel[] | null;
793
+ synonyms?: string[] | null;
794
+ packages?: ObjectRefModel[] | null;
795
+ links?: ResourceLink[] | null;
796
+ revision?: string | null;
797
+ created?: string | null;
798
+ modified?: string | null;
799
+ abstract?: LiteralModel[] | null;
800
+ replaces?: ObjectRefModel;
801
+ versionOf?: ObjectRefModel;
802
+ titles?: LiteralModel[] | null;
803
+ languages?: string[] | null;
804
+ parties?: ObjectRefModel[] | null;
805
+ renditions?: RenditionModel[] | null;
806
+ identities?: ObjectRefModel[] | null;
807
+ components?: ObjectRefModel[] | null;
808
+ informationSubjects?: ObjectRefModel[] | null;
809
+ topicTypes?: ObjectRefModel[] | null;
810
+ documentTypes?: ObjectRefModel[] | null;
811
+ directoryNodes?: ObjectRefModel[] | null;
812
+ contentLifeCycleStatus?: ObjectRefModel[] | null;
813
+ applicableForTypes?: ObjectRefModel[] | null;
814
+ planningTimes?: ObjectRefModel[] | null;
815
+ events?: ObjectRefModel[] | null;
816
+ functionalMetadata?: ObjectRefModel[] | null;
817
+ informationUnits?: ObjectRefModel[] | null;
818
+ productFeatures?: ObjectRefModel[] | null;
819
+ productLifeCyclePhases?: ObjectRefModel[] | null;
820
+ productMetadata?: ObjectRefModel[] | null;
821
+ productVariants?: ObjectRefModel[] | null;
822
+ qualifications?: ObjectRefModel[] | null;
823
+ supplies?: ObjectRefModel[] | null;
824
+ }
825
+ /** Data Model for Controller api */
826
+ interface LiteralModel {
827
+ language?: string | null;
828
+ value?: string | null;
829
+ }
830
+ /** Data Model for Controller api */
831
+ interface ObjectRefModel {
832
+ id?: string | null;
833
+ shortId?: string | null;
834
+ score?: number | null;
835
+ class?: ObjectRefModel;
836
+ labels?: LiteralModel[] | null;
837
+ comments?: LiteralModel[] | null;
838
+ descriptions?: LiteralModel[] | null;
839
+ synonyms?: string[] | null;
840
+ packages?: ObjectRefModel[] | null;
841
+ links?: ResourceLink[] | null;
842
+ }
843
+ /** Operator for Query */
844
+ type Operator = 'OR' | 'AND' | 'AUTO';
845
+ /** Data Model for Controller api */
846
+ interface OwlClassModel {
847
+ id?: string | null;
848
+ shortId?: string | null;
849
+ score?: number | null;
850
+ class?: ObjectRefModel;
851
+ labels?: LiteralModel[] | null;
852
+ comments?: LiteralModel[] | null;
853
+ descriptions?: LiteralModel[] | null;
854
+ synonyms?: string[] | null;
855
+ packages?: ObjectRefModel[] | null;
856
+ }
857
+ /** Data Model for Controller api */
858
+ interface PackageModel {
859
+ id?: string | null;
860
+ shortId?: string | null;
861
+ score?: number | null;
862
+ class?: ObjectRefModel;
863
+ labels?: LiteralModel[] | null;
864
+ comments?: LiteralModel[] | null;
865
+ descriptions?: LiteralModel[] | null;
866
+ synonyms?: string[] | null;
867
+ packages?: ObjectRefModel[] | null;
868
+ links?: ResourceLink[] | null;
869
+ revision?: string | null;
870
+ created?: string | null;
871
+ modified?: string | null;
872
+ abstract?: LiteralModel[] | null;
873
+ replaces?: ObjectRefModel;
874
+ versionOf?: ObjectRefModel;
875
+ titles?: LiteralModel[] | null;
876
+ languages?: string[] | null;
877
+ parties?: ObjectRefModel[] | null;
878
+ renditions?: RenditionModel[] | null;
879
+ identities?: ObjectRefModel[] | null;
880
+ components?: ObjectRefModel[] | null;
881
+ informationSubjects?: ObjectRefModel[] | null;
882
+ topicTypes?: ObjectRefModel[] | null;
883
+ documentTypes?: ObjectRefModel[] | null;
884
+ directoryNodes?: ObjectRefModel[] | null;
885
+ contentLifeCycleStatus?: ObjectRefModel[] | null;
886
+ applicableForTypes?: ObjectRefModel[] | null;
887
+ planningTimes?: ObjectRefModel[] | null;
888
+ events?: ObjectRefModel[] | null;
889
+ functionalMetadata?: ObjectRefModel[] | null;
890
+ informationUnits?: ObjectRefModel[] | null;
891
+ productFeatures?: ObjectRefModel[] | null;
892
+ productLifeCyclePhases?: ObjectRefModel[] | null;
893
+ productMetadata?: ObjectRefModel[] | null;
894
+ productVariants?: ObjectRefModel[] | null;
895
+ qualifications?: ObjectRefModel[] | null;
896
+ supplies?: ObjectRefModel[] | null;
897
+ iirdsVersion?: LiteralModel;
898
+ formatRestriction?: LiteralModel;
899
+ directories?: ObjectRefModel[] | null;
900
+ }
901
+ /** Data Model for Controller api */
902
+ interface PartyModel {
903
+ id?: string | null;
904
+ shortId?: string | null;
905
+ score?: number | null;
906
+ class?: ObjectRefModel;
907
+ labels?: LiteralModel[] | null;
908
+ comments?: LiteralModel[] | null;
909
+ descriptions?: LiteralModel[] | null;
910
+ synonyms?: string[] | null;
911
+ packages?: ObjectRefModel[] | null;
912
+ links?: ResourceLink[] | null;
913
+ partyRole?: PartyRoleModel;
914
+ vcard?: ObjectRefModel;
915
+ }
916
+ /** Data Model for Controller api */
917
+ interface PartyRoleModel {
918
+ id?: string | null;
919
+ shortId?: string | null;
920
+ score?: number | null;
921
+ class?: ObjectRefModel;
922
+ labels?: LiteralModel[] | null;
923
+ comments?: LiteralModel[] | null;
924
+ descriptions?: LiteralModel[] | null;
925
+ synonyms?: string[] | null;
926
+ packages?: ObjectRefModel[] | null;
927
+ links?: ResourceLink[] | null;
928
+ }
929
+ /** Data Model for Controller api */
930
+ interface PlanningDownTimeModel {
931
+ id?: string | null;
932
+ shortId?: string | null;
933
+ score?: number | null;
934
+ class?: ObjectRefModel;
935
+ labels?: LiteralModel[] | null;
936
+ comments?: LiteralModel[] | null;
937
+ descriptions?: LiteralModel[] | null;
938
+ synonyms?: string[] | null;
939
+ packages?: ObjectRefModel[] | null;
940
+ links?: ResourceLink[] | null;
941
+ duration?: LiteralModel;
942
+ }
943
+ /** Data Model for Controller api */
944
+ interface PlanningMaintenanceIntervalModel {
945
+ id?: string | null;
946
+ shortId?: string | null;
947
+ score?: number | null;
948
+ class?: ObjectRefModel;
949
+ labels?: LiteralModel[] | null;
950
+ comments?: LiteralModel[] | null;
951
+ descriptions?: LiteralModel[] | null;
952
+ synonyms?: string[] | null;
953
+ packages?: ObjectRefModel[] | null;
954
+ links?: ResourceLink[] | null;
955
+ duration?: LiteralModel;
956
+ frequency?: LiteralModel;
957
+ }
958
+ /** Data Model for Controller api */
959
+ interface PlanningSetupTimeModel {
960
+ id?: string | null;
961
+ shortId?: string | null;
962
+ score?: number | null;
963
+ class?: ObjectRefModel;
964
+ labels?: LiteralModel[] | null;
965
+ comments?: LiteralModel[] | null;
966
+ descriptions?: LiteralModel[] | null;
967
+ synonyms?: string[] | null;
968
+ packages?: ObjectRefModel[] | null;
969
+ links?: ResourceLink[] | null;
970
+ duration?: LiteralModel;
971
+ }
972
+ /** Data Model for Controller api */
973
+ interface PlanningTimeModel {
974
+ id?: string | null;
975
+ shortId?: string | null;
976
+ score?: number | null;
977
+ class?: ObjectRefModel;
978
+ labels?: LiteralModel[] | null;
979
+ comments?: LiteralModel[] | null;
980
+ descriptions?: LiteralModel[] | null;
981
+ synonyms?: string[] | null;
982
+ packages?: ObjectRefModel[] | null;
983
+ links?: ResourceLink[] | null;
984
+ duration?: LiteralModel;
985
+ }
986
+ /** Data Model for Controller api */
987
+ interface PlanningWorkingTimeModel {
988
+ id?: string | null;
989
+ shortId?: string | null;
990
+ score?: number | null;
991
+ class?: ObjectRefModel;
992
+ labels?: LiteralModel[] | null;
993
+ comments?: LiteralModel[] | null;
994
+ descriptions?: LiteralModel[] | null;
995
+ synonyms?: string[] | null;
996
+ packages?: ObjectRefModel[] | null;
997
+ links?: ResourceLink[] | null;
998
+ duration?: LiteralModel;
999
+ }
1000
+ /** Data Model for Controller api */
1001
+ interface ProductFeatureModel {
1002
+ id?: string | null;
1003
+ shortId?: string | null;
1004
+ score?: number | null;
1005
+ class?: ObjectRefModel;
1006
+ labels?: LiteralModel[] | null;
1007
+ comments?: LiteralModel[] | null;
1008
+ descriptions?: LiteralModel[] | null;
1009
+ synonyms?: string[] | null;
1010
+ packages?: ObjectRefModel[] | null;
1011
+ links?: ResourceLink[] | null;
1012
+ }
1013
+ /** Data Model for Controller api */
1014
+ interface ProductFunctionModel {
1015
+ id?: string | null;
1016
+ shortId?: string | null;
1017
+ score?: number | null;
1018
+ class?: ObjectRefModel;
1019
+ labels?: LiteralModel[] | null;
1020
+ comments?: LiteralModel[] | null;
1021
+ descriptions?: LiteralModel[] | null;
1022
+ synonyms?: string[] | null;
1023
+ packages?: ObjectRefModel[] | null;
1024
+ links?: ResourceLink[] | null;
1025
+ }
1026
+ /** Data Model for Controller api */
1027
+ interface ProductLcpAfterUseModel {
1028
+ id?: string | null;
1029
+ shortId?: string | null;
1030
+ score?: number | null;
1031
+ class?: ObjectRefModel;
1032
+ labels?: LiteralModel[] | null;
1033
+ comments?: LiteralModel[] | null;
1034
+ descriptions?: LiteralModel[] | null;
1035
+ synonyms?: string[] | null;
1036
+ packages?: ObjectRefModel[] | null;
1037
+ links?: ResourceLink[] | null;
1038
+ }
1039
+ /** Data Model for Controller api */
1040
+ interface ProductLcpDesignAndRealizationModel {
1041
+ id?: string | null;
1042
+ shortId?: string | null;
1043
+ score?: number | null;
1044
+ class?: ObjectRefModel;
1045
+ labels?: LiteralModel[] | null;
1046
+ comments?: LiteralModel[] | null;
1047
+ descriptions?: LiteralModel[] | null;
1048
+ synonyms?: string[] | null;
1049
+ packages?: ObjectRefModel[] | null;
1050
+ links?: ResourceLink[] | null;
1051
+ }
1052
+ /** Data Model for Controller api */
1053
+ interface ProductLcpPuttingToUseModel {
1054
+ id?: string | null;
1055
+ shortId?: string | null;
1056
+ score?: number | null;
1057
+ class?: ObjectRefModel;
1058
+ labels?: LiteralModel[] | null;
1059
+ comments?: LiteralModel[] | null;
1060
+ descriptions?: LiteralModel[] | null;
1061
+ synonyms?: string[] | null;
1062
+ packages?: ObjectRefModel[] | null;
1063
+ links?: ResourceLink[] | null;
1064
+ }
1065
+ /** Data Model for Controller api */
1066
+ interface ProductLcpUseModel {
1067
+ id?: string | null;
1068
+ shortId?: string | null;
1069
+ score?: number | null;
1070
+ class?: ObjectRefModel;
1071
+ labels?: LiteralModel[] | null;
1072
+ comments?: LiteralModel[] | null;
1073
+ descriptions?: LiteralModel[] | null;
1074
+ synonyms?: string[] | null;
1075
+ packages?: ObjectRefModel[] | null;
1076
+ links?: ResourceLink[] | null;
1077
+ }
1078
+ /** Data Model for Controller api */
1079
+ interface ProductLifeCyclePhaseModel {
1080
+ id?: string | null;
1081
+ shortId?: string | null;
1082
+ score?: number | null;
1083
+ class?: ObjectRefModel;
1084
+ labels?: LiteralModel[] | null;
1085
+ comments?: LiteralModel[] | null;
1086
+ descriptions?: LiteralModel[] | null;
1087
+ synonyms?: string[] | null;
1088
+ packages?: ObjectRefModel[] | null;
1089
+ links?: ResourceLink[] | null;
1090
+ }
1091
+ /** Data Model for Controller api */
1092
+ interface ProductMetadataModel {
1093
+ id?: string | null;
1094
+ shortId?: string | null;
1095
+ score?: number | null;
1096
+ class?: ObjectRefModel;
1097
+ labels?: LiteralModel[] | null;
1098
+ comments?: LiteralModel[] | null;
1099
+ descriptions?: LiteralModel[] | null;
1100
+ synonyms?: string[] | null;
1101
+ packages?: ObjectRefModel[] | null;
1102
+ links?: ResourceLink[] | null;
1103
+ }
1104
+ /** Data Model for Controller api */
1105
+ interface ProductPropertyModel {
1106
+ id?: string | null;
1107
+ shortId?: string | null;
1108
+ score?: number | null;
1109
+ class?: ObjectRefModel;
1110
+ labels?: LiteralModel[] | null;
1111
+ comments?: LiteralModel[] | null;
1112
+ descriptions?: LiteralModel[] | null;
1113
+ synonyms?: string[] | null;
1114
+ packages?: ObjectRefModel[] | null;
1115
+ links?: ResourceLink[] | null;
1116
+ }
1117
+ /** Data Model for Controller api */
1118
+ interface ProductVariantModel {
1119
+ id?: string | null;
1120
+ shortId?: string | null;
1121
+ score?: number | null;
1122
+ class?: ObjectRefModel;
1123
+ labels?: LiteralModel[] | null;
1124
+ comments?: LiteralModel[] | null;
1125
+ descriptions?: LiteralModel[] | null;
1126
+ synonyms?: string[] | null;
1127
+ packages?: ObjectRefModel[] | null;
1128
+ links?: ResourceLink[] | null;
1129
+ identities?: ObjectRefModel[] | null;
1130
+ parties?: ObjectRefModel[] | null;
1131
+ }
1132
+ /** Data Model for Controller api */
1133
+ interface QualificationModel {
1134
+ id?: string | null;
1135
+ shortId?: string | null;
1136
+ score?: number | null;
1137
+ class?: ObjectRefModel;
1138
+ labels?: LiteralModel[] | null;
1139
+ comments?: LiteralModel[] | null;
1140
+ descriptions?: LiteralModel[] | null;
1141
+ synonyms?: string[] | null;
1142
+ packages?: ObjectRefModel[] | null;
1143
+ links?: ResourceLink[] | null;
1144
+ }
1145
+ /** Data Model for Controller api */
1146
+ interface QualificationRoleModel {
1147
+ id?: string | null;
1148
+ shortId?: string | null;
1149
+ score?: number | null;
1150
+ class?: ObjectRefModel;
1151
+ labels?: LiteralModel[] | null;
1152
+ comments?: LiteralModel[] | null;
1153
+ descriptions?: LiteralModel[] | null;
1154
+ synonyms?: string[] | null;
1155
+ packages?: ObjectRefModel[] | null;
1156
+ links?: ResourceLink[] | null;
1157
+ }
1158
+ /** Data Model for Controller api */
1159
+ interface QualificationSkillLevelModel {
1160
+ id?: string | null;
1161
+ shortId?: string | null;
1162
+ score?: number | null;
1163
+ class?: ObjectRefModel;
1164
+ labels?: LiteralModel[] | null;
1165
+ comments?: LiteralModel[] | null;
1166
+ descriptions?: LiteralModel[] | null;
1167
+ synonyms?: string[] | null;
1168
+ packages?: ObjectRefModel[] | null;
1169
+ links?: ResourceLink[] | null;
1170
+ }
1171
+ /** Data Model for Controller api */
1172
+ interface RenditionModel {
1173
+ id?: string | null;
1174
+ shortId?: string | null;
1175
+ score?: number | null;
1176
+ class?: ObjectRefModel;
1177
+ labels?: LiteralModel[] | null;
1178
+ comments?: LiteralModel[] | null;
1179
+ descriptions?: LiteralModel[] | null;
1180
+ synonyms?: string[] | null;
1181
+ packages?: ObjectRefModel[] | null;
1182
+ links?: ResourceLink[] | null;
1183
+ source?: string | null;
1184
+ format?: string | null;
1185
+ identities?: ObjectRefModel[] | null;
1186
+ selectors?: RenditionSelectorModel[] | null;
1187
+ informationUnits?: ObjectRefModel[] | null;
1188
+ }
1189
+ /** Data Model for Controller api */
1190
+ interface RenditionSelectorModel {
1191
+ id?: string | null;
1192
+ shortId?: string | null;
1193
+ score?: number | null;
1194
+ class?: ObjectRefModel;
1195
+ labels?: LiteralModel[] | null;
1196
+ comments?: LiteralModel[] | null;
1197
+ descriptions?: LiteralModel[] | null;
1198
+ synonyms?: string[] | null;
1199
+ packages?: ObjectRefModel[] | null;
1200
+ }
1201
+ /** Represents an HATEOAS Link */
1202
+ interface ResourceLink {
1203
+ /** The Relation Name */
1204
+ rel?: string | null;
1205
+ /** The Link of the Link ;) */
1206
+ href?: string | null;
1207
+ /** The HTTP Method
1208
+
1209
+ Values: HEAD, GET, POST, PUT, DELETE
1210
+ Default: GET */
1211
+ method?: string | null;
1212
+ }
1213
+ /** Paging information */
1214
+ interface ResultContainerPageInfoModel {
1215
+ /** The current page number */
1216
+ pageNumber?: number;
1217
+ /** The current page size */
1218
+ pageSize?: number;
1219
+ /** The total page count */
1220
+ pageCount?: number;
1221
+ /** The total item count */
1222
+ totalItemCount?: number;
1223
+ /** Is there a previous page available? */
1224
+ hasPreviousPage?: boolean;
1225
+ /** Is there a following page available? */
1226
+ hasNextPage?: boolean;
1227
+ /** Is it the first page? */
1228
+ isFirstPage?: boolean;
1229
+ /** Is it the last page? */
1230
+ isLastPage?: boolean;
1231
+ /** The item number of the first item on the current page */
1232
+ firstItemOnPage?: number;
1233
+ /** The item number of the last item on the current page */
1234
+ lastItemOnPage?: number;
1235
+ }
1236
+ /** Data Model for Controller api */
1237
+ interface SupplyConsumableModel {
1238
+ id?: string | null;
1239
+ shortId?: string | null;
1240
+ score?: number | null;
1241
+ class?: ObjectRefModel;
1242
+ labels?: LiteralModel[] | null;
1243
+ comments?: LiteralModel[] | null;
1244
+ descriptions?: LiteralModel[] | null;
1245
+ synonyms?: string[] | null;
1246
+ packages?: ObjectRefModel[] | null;
1247
+ links?: ResourceLink[] | null;
1248
+ }
1249
+ /** Data Model for Controller api */
1250
+ interface SupplyHardwareToolModel {
1251
+ id?: string | null;
1252
+ shortId?: string | null;
1253
+ score?: number | null;
1254
+ class?: ObjectRefModel;
1255
+ labels?: LiteralModel[] | null;
1256
+ comments?: LiteralModel[] | null;
1257
+ descriptions?: LiteralModel[] | null;
1258
+ synonyms?: string[] | null;
1259
+ packages?: ObjectRefModel[] | null;
1260
+ links?: ResourceLink[] | null;
1261
+ }
1262
+ /** Data Model for Controller api */
1263
+ interface SupplyLubricantModel {
1264
+ id?: string | null;
1265
+ shortId?: string | null;
1266
+ score?: number | null;
1267
+ class?: ObjectRefModel;
1268
+ labels?: LiteralModel[] | null;
1269
+ comments?: LiteralModel[] | null;
1270
+ descriptions?: LiteralModel[] | null;
1271
+ synonyms?: string[] | null;
1272
+ packages?: ObjectRefModel[] | null;
1273
+ links?: ResourceLink[] | null;
1274
+ }
1275
+ /** Data Model for Controller api */
1276
+ interface SupplyModel {
1277
+ id?: string | null;
1278
+ shortId?: string | null;
1279
+ score?: number | null;
1280
+ class?: ObjectRefModel;
1281
+ labels?: LiteralModel[] | null;
1282
+ comments?: LiteralModel[] | null;
1283
+ descriptions?: LiteralModel[] | null;
1284
+ synonyms?: string[] | null;
1285
+ packages?: ObjectRefModel[] | null;
1286
+ links?: ResourceLink[] | null;
1287
+ }
1288
+ /** Data Model for Controller api */
1289
+ interface SupplyOperatingModel {
1290
+ id?: string | null;
1291
+ shortId?: string | null;
1292
+ score?: number | null;
1293
+ class?: ObjectRefModel;
1294
+ labels?: LiteralModel[] | null;
1295
+ comments?: LiteralModel[] | null;
1296
+ descriptions?: LiteralModel[] | null;
1297
+ synonyms?: string[] | null;
1298
+ packages?: ObjectRefModel[] | null;
1299
+ links?: ResourceLink[] | null;
1300
+ }
1301
+ /** Data Model for Controller api */
1302
+ interface SupplySparePartModel {
1303
+ id?: string | null;
1304
+ shortId?: string | null;
1305
+ score?: number | null;
1306
+ class?: ObjectRefModel;
1307
+ labels?: LiteralModel[] | null;
1308
+ comments?: LiteralModel[] | null;
1309
+ descriptions?: LiteralModel[] | null;
1310
+ synonyms?: string[] | null;
1311
+ packages?: ObjectRefModel[] | null;
1312
+ links?: ResourceLink[] | null;
1313
+ }
1314
+ /** Data Model for Controller api */
1315
+ interface TopicModel {
1316
+ id?: string | null;
1317
+ shortId?: string | null;
1318
+ score?: number | null;
1319
+ class?: ObjectRefModel;
1320
+ labels?: LiteralModel[] | null;
1321
+ comments?: LiteralModel[] | null;
1322
+ descriptions?: LiteralModel[] | null;
1323
+ synonyms?: string[] | null;
1324
+ packages?: ObjectRefModel[] | null;
1325
+ links?: ResourceLink[] | null;
1326
+ revision?: string | null;
1327
+ created?: string | null;
1328
+ modified?: string | null;
1329
+ abstract?: LiteralModel[] | null;
1330
+ replaces?: ObjectRefModel;
1331
+ versionOf?: ObjectRefModel;
1332
+ titles?: LiteralModel[] | null;
1333
+ languages?: string[] | null;
1334
+ parties?: ObjectRefModel[] | null;
1335
+ renditions?: RenditionModel[] | null;
1336
+ identities?: ObjectRefModel[] | null;
1337
+ components?: ObjectRefModel[] | null;
1338
+ informationSubjects?: ObjectRefModel[] | null;
1339
+ topicTypes?: ObjectRefModel[] | null;
1340
+ documentTypes?: ObjectRefModel[] | null;
1341
+ directoryNodes?: ObjectRefModel[] | null;
1342
+ contentLifeCycleStatus?: ObjectRefModel[] | null;
1343
+ applicableForTypes?: ObjectRefModel[] | null;
1344
+ planningTimes?: ObjectRefModel[] | null;
1345
+ events?: ObjectRefModel[] | null;
1346
+ functionalMetadata?: ObjectRefModel[] | null;
1347
+ informationUnits?: ObjectRefModel[] | null;
1348
+ productFeatures?: ObjectRefModel[] | null;
1349
+ productLifeCyclePhases?: ObjectRefModel[] | null;
1350
+ productMetadata?: ObjectRefModel[] | null;
1351
+ productVariants?: ObjectRefModel[] | null;
1352
+ qualifications?: ObjectRefModel[] | null;
1353
+ supplies?: ObjectRefModel[] | null;
1354
+ }
1355
+ /** Data Model for Controller api */
1356
+ interface TopicTypeConceptModel {
1357
+ id?: string | null;
1358
+ shortId?: string | null;
1359
+ score?: number | null;
1360
+ class?: ObjectRefModel;
1361
+ labels?: LiteralModel[] | null;
1362
+ comments?: LiteralModel[] | null;
1363
+ descriptions?: LiteralModel[] | null;
1364
+ synonyms?: string[] | null;
1365
+ packages?: ObjectRefModel[] | null;
1366
+ links?: ResourceLink[] | null;
1367
+ }
1368
+ /** Data Model for Controller api */
1369
+ interface TopicTypeFormModel {
1370
+ id?: string | null;
1371
+ shortId?: string | null;
1372
+ score?: number | null;
1373
+ class?: ObjectRefModel;
1374
+ labels?: LiteralModel[] | null;
1375
+ comments?: LiteralModel[] | null;
1376
+ descriptions?: LiteralModel[] | null;
1377
+ synonyms?: string[] | null;
1378
+ packages?: ObjectRefModel[] | null;
1379
+ links?: ResourceLink[] | null;
1380
+ }
1381
+ /** Data Model for Controller api */
1382
+ interface TopicTypeLearningModel {
1383
+ id?: string | null;
1384
+ shortId?: string | null;
1385
+ score?: number | null;
1386
+ class?: ObjectRefModel;
1387
+ labels?: LiteralModel[] | null;
1388
+ comments?: LiteralModel[] | null;
1389
+ descriptions?: LiteralModel[] | null;
1390
+ synonyms?: string[] | null;
1391
+ packages?: ObjectRefModel[] | null;
1392
+ links?: ResourceLink[] | null;
1393
+ }
1394
+ /** Data Model for Controller api */
1395
+ interface TopicTypeModel {
1396
+ id?: string | null;
1397
+ shortId?: string | null;
1398
+ score?: number | null;
1399
+ class?: ObjectRefModel;
1400
+ labels?: LiteralModel[] | null;
1401
+ comments?: LiteralModel[] | null;
1402
+ descriptions?: LiteralModel[] | null;
1403
+ synonyms?: string[] | null;
1404
+ packages?: ObjectRefModel[] | null;
1405
+ links?: ResourceLink[] | null;
1406
+ }
1407
+ /** Data Model for Controller api */
1408
+ interface TopicTypeReferenceModel {
1409
+ id?: string | null;
1410
+ shortId?: string | null;
1411
+ score?: number | null;
1412
+ class?: ObjectRefModel;
1413
+ labels?: LiteralModel[] | null;
1414
+ comments?: LiteralModel[] | null;
1415
+ descriptions?: LiteralModel[] | null;
1416
+ synonyms?: string[] | null;
1417
+ packages?: ObjectRefModel[] | null;
1418
+ links?: ResourceLink[] | null;
1419
+ }
1420
+ /** Data Model for Controller api */
1421
+ interface TopicTypeTaskModel {
1422
+ id?: string | null;
1423
+ shortId?: string | null;
1424
+ score?: number | null;
1425
+ class?: ObjectRefModel;
1426
+ labels?: LiteralModel[] | null;
1427
+ comments?: LiteralModel[] | null;
1428
+ descriptions?: LiteralModel[] | null;
1429
+ synonyms?: string[] | null;
1430
+ packages?: ObjectRefModel[] | null;
1431
+ links?: ResourceLink[] | null;
1432
+ }
1433
+ /** Data Model for Controller api */
1434
+ interface TopicTypeTroubleShootingModel {
1435
+ id?: string | null;
1436
+ shortId?: string | null;
1437
+ score?: number | null;
1438
+ class?: ObjectRefModel;
1439
+ labels?: LiteralModel[] | null;
1440
+ comments?: LiteralModel[] | null;
1441
+ descriptions?: LiteralModel[] | null;
1442
+ synonyms?: string[] | null;
1443
+ packages?: ObjectRefModel[] | null;
1444
+ links?: ResourceLink[] | null;
1445
+ }
1446
+ /** Data Model for Controller api */
1447
+ interface VCardCalendarModel {
1448
+ id?: string | null;
1449
+ shortId?: string | null;
1450
+ score?: number | null;
1451
+ class?: ObjectRefModel;
1452
+ labels?: LiteralModel[] | null;
1453
+ comments?: LiteralModel[] | null;
1454
+ descriptions?: LiteralModel[] | null;
1455
+ synonyms?: string[] | null;
1456
+ packages?: ObjectRefModel[] | null;
1457
+ source?: string | null;
1458
+ }
1459
+ /** Data Model for Controller api */
1460
+ interface VCardGroupModel {
1461
+ id?: string | null;
1462
+ shortId?: string | null;
1463
+ score?: number | null;
1464
+ class?: ObjectRefModel;
1465
+ labels?: LiteralModel[] | null;
1466
+ comments?: LiteralModel[] | null;
1467
+ descriptions?: LiteralModel[] | null;
1468
+ synonyms?: string[] | null;
1469
+ packages?: ObjectRefModel[] | null;
1470
+ links?: ResourceLink[] | null;
1471
+ fullName?: string | null;
1472
+ photos?: VCardImageModel[] | null;
1473
+ emails?: VCardInfoModel[] | null;
1474
+ telephones?: VCardInfoModel[] | null;
1475
+ addresses?: VCardInfoModel[] | null;
1476
+ calendars?: VCardCalendarModel[] | null;
1477
+ urls?: VCardInfoModel[] | null;
1478
+ members?: ObjectRefModel[] | null;
1479
+ }
1480
+ /** Data Model for Controller api */
1481
+ interface VCardImageModel {
1482
+ id?: string | null;
1483
+ shortId?: string | null;
1484
+ score?: number | null;
1485
+ class?: ObjectRefModel;
1486
+ labels?: LiteralModel[] | null;
1487
+ comments?: LiteralModel[] | null;
1488
+ descriptions?: LiteralModel[] | null;
1489
+ synonyms?: string[] | null;
1490
+ packages?: ObjectRefModel[] | null;
1491
+ classes?: OwlClassModel[] | null;
1492
+ value?: string | null;
1493
+ source?: string | null;
1494
+ }
1495
+ /** Data Model for Controller api */
1496
+ interface VCardIndividualModel {
1497
+ id?: string | null;
1498
+ shortId?: string | null;
1499
+ score?: number | null;
1500
+ class?: ObjectRefModel;
1501
+ labels?: LiteralModel[] | null;
1502
+ comments?: LiteralModel[] | null;
1503
+ descriptions?: LiteralModel[] | null;
1504
+ synonyms?: string[] | null;
1505
+ packages?: ObjectRefModel[] | null;
1506
+ links?: ResourceLink[] | null;
1507
+ fullName?: string | null;
1508
+ photos?: VCardImageModel[] | null;
1509
+ emails?: VCardInfoModel[] | null;
1510
+ telephones?: VCardInfoModel[] | null;
1511
+ addresses?: VCardInfoModel[] | null;
1512
+ calendars?: VCardCalendarModel[] | null;
1513
+ urls?: VCardInfoModel[] | null;
1514
+ title?: string | null;
1515
+ role?: string | null;
1516
+ gender?: OwlClassModel;
1517
+ }
1518
+ /** Data Model for Controller api */
1519
+ interface VCardInfoModel {
1520
+ id?: string | null;
1521
+ shortId?: string | null;
1522
+ score?: number | null;
1523
+ classes?: OwlClassModel[] | null;
1524
+ value?: string | null;
1525
+ countryName?: string | null;
1526
+ locality?: string | null;
1527
+ postalCode?: string | null;
1528
+ streetAddress?: string | null;
1529
+ }
1530
+ /** Data Model for Controller api */
1531
+ interface VCardLocationModel {
1532
+ id?: string | null;
1533
+ shortId?: string | null;
1534
+ score?: number | null;
1535
+ class?: ObjectRefModel;
1536
+ labels?: LiteralModel[] | null;
1537
+ comments?: LiteralModel[] | null;
1538
+ descriptions?: LiteralModel[] | null;
1539
+ synonyms?: string[] | null;
1540
+ packages?: ObjectRefModel[] | null;
1541
+ links?: ResourceLink[] | null;
1542
+ fullName?: string | null;
1543
+ photos?: VCardImageModel[] | null;
1544
+ emails?: VCardInfoModel[] | null;
1545
+ telephones?: VCardInfoModel[] | null;
1546
+ addresses?: VCardInfoModel[] | null;
1547
+ calendars?: VCardCalendarModel[] | null;
1548
+ urls?: VCardInfoModel[] | null;
1549
+ members?: ObjectRefModel[] | null;
1550
+ }
1551
+ /** Data Model for Controller api */
1552
+ interface VCardModel {
1553
+ id?: string | null;
1554
+ shortId?: string | null;
1555
+ score?: number | null;
1556
+ class?: ObjectRefModel;
1557
+ labels?: LiteralModel[] | null;
1558
+ comments?: LiteralModel[] | null;
1559
+ descriptions?: LiteralModel[] | null;
1560
+ synonyms?: string[] | null;
1561
+ packages?: ObjectRefModel[] | null;
1562
+ links?: ResourceLink[] | null;
1563
+ fullName?: string | null;
1564
+ photos?: VCardImageModel[] | null;
1565
+ emails?: VCardInfoModel[] | null;
1566
+ telephones?: VCardInfoModel[] | null;
1567
+ addresses?: VCardInfoModel[] | null;
1568
+ calendars?: VCardCalendarModel[] | null;
1569
+ urls?: VCardInfoModel[] | null;
1570
+ }
1571
+ /** Data Model for Controller api */
1572
+ interface VCardOrganizationModel {
1573
+ id?: string | null;
1574
+ shortId?: string | null;
1575
+ score?: number | null;
1576
+ class?: ObjectRefModel;
1577
+ labels?: LiteralModel[] | null;
1578
+ comments?: LiteralModel[] | null;
1579
+ descriptions?: LiteralModel[] | null;
1580
+ synonyms?: string[] | null;
1581
+ packages?: ObjectRefModel[] | null;
1582
+ links?: ResourceLink[] | null;
1583
+ fullName?: string | null;
1584
+ photos?: VCardImageModel[] | null;
1585
+ emails?: VCardInfoModel[] | null;
1586
+ telephones?: VCardInfoModel[] | null;
1587
+ addresses?: VCardInfoModel[] | null;
1588
+ calendars?: VCardCalendarModel[] | null;
1589
+ urls?: VCardInfoModel[] | null;
1590
+ organizationName?: string | null;
1591
+ organizationUnit?: string | null;
1592
+ members?: ObjectRefModel[] | null;
1593
+ logos?: VCardImageModel[] | null;
1594
+ }
1595
+ /** Wildcards for Query [Flags] */
1596
+ type Wildcards = 'None' | 'Start' | 'End' | 'Both';
1597
+
1598
+ /**
1599
+ * Auto-generated from OpenAPI spec
1600
+ * Source: https://staging.c-rex.net/ids/api/swagger/v1/swagger.json
1601
+ * Generated: 2025-12-09T23:10:42.856Z
1602
+ * Do not edit manually
1603
+ */
1604
+ interface AdministrativeMetadataGetByIdPathParams {
1605
+ id: string;
1606
+ }
1607
+ interface AfterUsesGetByIdPathParams {
1608
+ id: string;
1609
+ }
1610
+ interface CollectionsGetByIdPathParams {
1611
+ id: string;
1612
+ }
1613
+ interface ComponentsGetByIdPathParams {
1614
+ id: string;
1615
+ }
1616
+ interface ConceptsGetByIdPathParams {
1617
+ id: string;
1618
+ }
1619
+ interface ConformitiesGetByIdPathParams {
1620
+ id: string;
1621
+ }
1622
+ interface ConsumablesGetByIdPathParams {
1623
+ id: string;
1624
+ }
1625
+ interface ContentLifeCycleStatusGetByIdPathParams {
1626
+ id: string;
1627
+ }
1628
+ interface DesignAndRealizationsGetByIdPathParams {
1629
+ id: string;
1630
+ }
1631
+ interface DirectoryNodesGetByIdPathParams {
1632
+ id: string;
1633
+ }
1634
+ interface DirectoryNodeTypesGetByIdPathParams {
1635
+ id: string;
1636
+ }
1637
+ interface DocumentationMetadataGetByIdPathParams {
1638
+ id: string;
1639
+ }
1640
+ interface DocumentsGetByIdPathParams {
1641
+ id: string;
1642
+ }
1643
+ interface DocumentTypesGetByIdPathParams {
1644
+ id: string;
1645
+ }
1646
+ interface DomainEntitiesGetByIdPathParams {
1647
+ id: string;
1648
+ }
1649
+ interface DownTimesGetByIdPathParams {
1650
+ id: string;
1651
+ }
1652
+ interface EventsGetByIdPathParams {
1653
+ id: string;
1654
+ }
1655
+ interface FormalitiesGetByIdPathParams {
1656
+ id: string;
1657
+ }
1658
+ interface FormsGetByIdPathParams {
1659
+ id: string;
1660
+ }
1661
+ interface FragmentsGetByIdPathParams {
1662
+ id: string;
1663
+ }
1664
+ interface FunctionalitiesGetByIdPathParams {
1665
+ id: string;
1666
+ }
1667
+ interface FunctionalMetadatasGetByIdPathParams {
1668
+ id: string;
1669
+ }
1670
+ interface GroupsGetByIdPathParams {
1671
+ id: string;
1672
+ }
1673
+ interface HardwareToolsGetByIdPathParams {
1674
+ id: string;
1675
+ }
1676
+ interface IdentitiesGetByIdPathParams {
1677
+ id: string;
1678
+ }
1679
+ interface IdentityDomainsGetByIdPathParams {
1680
+ id: string;
1681
+ }
1682
+ interface IndividualsGetByIdPathParams {
1683
+ id: string;
1684
+ }
1685
+ interface InformationObjectsGetByIdPathParams {
1686
+ id: string;
1687
+ }
1688
+ interface InformationSubjectsGetByIdPathParams {
1689
+ id: string;
1690
+ }
1691
+ interface InformationTypesGetByIdPathParams {
1692
+ id: string;
1693
+ }
1694
+ interface InformationUnitsGetByIdPathParams {
1695
+ id: string;
1696
+ }
1697
+ interface LearningsGetByIdPathParams {
1698
+ id: string;
1699
+ }
1700
+ interface LocationsGetByIdPathParams {
1701
+ id: string;
1702
+ }
1703
+ interface LubricantsGetByIdPathParams {
1704
+ id: string;
1705
+ }
1706
+ interface MaintenanceIntervalsGetByIdPathParams {
1707
+ id: string;
1708
+ }
1709
+ interface OperatingSuppliesGetByIdPathParams {
1710
+ id: string;
1711
+ }
1712
+ interface OrganizationsGetByIdPathParams {
1713
+ id: string;
1714
+ }
1715
+ interface PackagesGetByIdPathParams {
1716
+ id: string;
1717
+ }
1718
+ interface PartiesGetByIdPathParams {
1719
+ id: string;
1720
+ }
1721
+ interface PlanningTimesGetByIdPathParams {
1722
+ id: string;
1723
+ }
1724
+ interface ProcessesGetByIdPathParams {
1725
+ id: string;
1726
+ }
1727
+ interface ProductFeaturesGetByIdPathParams {
1728
+ id: string;
1729
+ }
1730
+ interface ProductFunctionsGetByIdPathParams {
1731
+ id: string;
1732
+ }
1733
+ interface ProductLifeCyclePhasesGetByIdPathParams {
1734
+ id: string;
1735
+ }
1736
+ interface ProductMetadataGetByIdPathParams {
1737
+ id: string;
1738
+ }
1739
+ interface ProductPropertiesGetByIdPathParams {
1740
+ id: string;
1741
+ }
1742
+ interface ProductVariantsGetByIdPathParams {
1743
+ id: string;
1744
+ }
1745
+ interface PuttingToUsesGetByIdPathParams {
1746
+ id: string;
1747
+ }
1748
+ interface QualificationsGetByIdPathParams {
1749
+ id: string;
1750
+ }
1751
+ interface ReferencesGetByIdPathParams {
1752
+ id: string;
1753
+ }
1754
+ interface RenditionsGetByIdPathParams {
1755
+ id: string;
1756
+ }
1757
+ interface RenditionsGetWithBinaryWithBinaryPathPathParams {
1758
+ id: string;
1759
+ binaryPath: string;
1760
+ }
1761
+ interface ResourcesDownloadResourcePathParams {
1762
+ renditionId: string;
1763
+ }
1764
+ interface ResourcesDownloadResourceWithBinaryPathPathParams {
1765
+ renditionId: string;
1766
+ binaryPath: string;
1767
+ }
1768
+ interface ResourcesGetPackagePathParams {
1769
+ id: string;
1770
+ }
1771
+ interface ResourcesGetSubjectFromPackagePathParams {
1772
+ id: string;
1773
+ }
1774
+ interface ResourcesViewResourcePathParams {
1775
+ renditionId: string;
1776
+ }
1777
+ interface ResourcesViewResourceWithBinaryPathPathParams {
1778
+ renditionId: string;
1779
+ binaryPath: string;
1780
+ }
1781
+ interface RolesGetByIdPathParams {
1782
+ id: string;
1783
+ }
1784
+ interface SafetiesGetByIdPathParams {
1785
+ id: string;
1786
+ }
1787
+ interface SetupTimesGetByIdPathParams {
1788
+ id: string;
1789
+ }
1790
+ interface SkillLevelsGetByIdPathParams {
1791
+ id: string;
1792
+ }
1793
+ interface SparePartsGetByIdPathParams {
1794
+ id: string;
1795
+ }
1796
+ interface SparQLExecuteSparQlPathParams {
1797
+ query: string;
1798
+ }
1799
+ interface SuppliesGetByIdPathParams {
1800
+ id: string;
1801
+ }
1802
+ interface TasksGetByIdPathParams {
1803
+ id: string;
1804
+ }
1805
+ interface TechnicalDataGetByIdPathParams {
1806
+ id: string;
1807
+ }
1808
+ interface TechnicalOverviewsGetByIdPathParams {
1809
+ id: string;
1810
+ }
1811
+ interface TopicsGetByIdPathParams {
1812
+ id: string;
1813
+ }
1814
+ interface TopicTypesGetByIdPathParams {
1815
+ id: string;
1816
+ }
1817
+ interface TroubleShootingsGetByIdPathParams {
1818
+ id: string;
1819
+ }
1820
+ interface UsesGetByIdPathParams {
1821
+ id: string;
1822
+ }
1823
+ interface VCardsGetByIdPathParams {
1824
+ id: string;
1825
+ }
1826
+ interface WarningMessagesGetByIdPathParams {
1827
+ id: string;
1828
+ }
1829
+ interface WorkingTimesGetByIdPathParams {
1830
+ id: string;
1831
+ }
1832
+ /** Empty path params for endpoints without path parameters */
1833
+ interface EmptyPathParams {
1834
+ }
1835
+
1836
+ /**
1837
+ * Auto-generated from OpenAPI spec
1838
+ * Source: https://staging.c-rex.net/ids/api/swagger/v1/swagger.json
1839
+ * Generated: 2025-12-09T23:10:42.857Z
1840
+ * Do not edit manually
1841
+ */
1842
+
1843
+ interface AdministrativeMetadataGetAllQueryParams {
1844
+ Query?: string[];
1845
+ QueryOperator?: OperatorType;
1846
+ SparqlWhere?: string;
1847
+ Restrict?: string[];
1848
+ Wildcard?: WildCardType;
1849
+ Like?: boolean;
1850
+ CaseSensitive?: boolean;
1851
+ Sort?: string[];
1852
+ PageNumber?: number;
1853
+ PageSize?: number;
1854
+ Filter?: string[];
1855
+ Fields?: AdministrativeMetadataModelField[];
1856
+ Embed?: string[];
1857
+ HitCount?: string[];
1858
+ Tags?: string[];
1859
+ Links?: boolean;
1860
+ }
1861
+ interface AdministrativeMetadataGetByIdQueryParams {
1862
+ Fields?: AdministrativeMetadataModelField[];
1863
+ Embed?: string[];
1864
+ Links?: boolean;
1865
+ }
1866
+ interface AfterUsesGetAllQueryParams {
1867
+ Query?: string[];
1868
+ QueryOperator?: OperatorType;
1869
+ SparqlWhere?: string;
1870
+ Restrict?: string[];
1871
+ Wildcard?: WildCardType;
1872
+ Like?: boolean;
1873
+ CaseSensitive?: boolean;
1874
+ Sort?: string[];
1875
+ PageNumber?: number;
1876
+ PageSize?: number;
1877
+ Filter?: string[];
1878
+ Fields?: ProductLcpAfterUseModelField[];
1879
+ Embed?: string[];
1880
+ HitCount?: string[];
1881
+ Tags?: string[];
1882
+ Links?: boolean;
1883
+ }
1884
+ interface AfterUsesGetByIdQueryParams {
1885
+ Fields?: ProductLcpAfterUseModelField[];
1886
+ Embed?: string[];
1887
+ Links?: boolean;
1888
+ }
1889
+ interface CollectionsGetAllQueryParams {
1890
+ Query?: string[];
1891
+ QueryOperator?: OperatorType;
1892
+ SparqlWhere?: string;
1893
+ Restrict?: string[];
1894
+ Wildcard?: WildCardType;
1895
+ Like?: boolean;
1896
+ CaseSensitive?: boolean;
1897
+ Sort?: string[];
1898
+ PageNumber?: number;
1899
+ PageSize?: number;
1900
+ Filter?: string[];
1901
+ Fields?: InformationSubjectCollectionModelField[];
1902
+ Embed?: string[];
1903
+ HitCount?: string[];
1904
+ Tags?: string[];
1905
+ Links?: boolean;
1906
+ }
1907
+ interface CollectionsGetByIdQueryParams {
1908
+ Fields?: InformationSubjectCollectionModelField[];
1909
+ Embed?: string[];
1910
+ Links?: boolean;
1911
+ }
1912
+ interface ComponentsGetAllQueryParams {
1913
+ Query?: string[];
1914
+ QueryOperator?: OperatorType;
1915
+ SparqlWhere?: string;
1916
+ Restrict?: string[];
1917
+ Wildcard?: WildCardType;
1918
+ Like?: boolean;
1919
+ CaseSensitive?: boolean;
1920
+ Sort?: string[];
1921
+ PageNumber?: number;
1922
+ PageSize?: number;
1923
+ Filter?: string[];
1924
+ Fields?: ComponentModelField[];
1925
+ Embed?: string[];
1926
+ HitCount?: string[];
1927
+ Tags?: string[];
1928
+ Links?: boolean;
1929
+ }
1930
+ interface ComponentsGetByIdQueryParams {
1931
+ Fields?: ComponentModelField[];
1932
+ Embed?: string[];
1933
+ Links?: boolean;
1934
+ }
1935
+ interface ConceptsGetAllQueryParams {
1936
+ Query?: string[];
1937
+ QueryOperator?: OperatorType;
1938
+ SparqlWhere?: string;
1939
+ Restrict?: string[];
1940
+ Wildcard?: WildCardType;
1941
+ Like?: boolean;
1942
+ CaseSensitive?: boolean;
1943
+ Sort?: string[];
1944
+ PageNumber?: number;
1945
+ PageSize?: number;
1946
+ Filter?: string[];
1947
+ Fields?: TopicTypeConceptModelField[];
1948
+ Embed?: string[];
1949
+ HitCount?: string[];
1950
+ Tags?: string[];
1951
+ Links?: boolean;
1952
+ }
1953
+ interface ConceptsGetByIdQueryParams {
1954
+ Fields?: TopicTypeConceptModelField[];
1955
+ Embed?: string[];
1956
+ Links?: boolean;
1957
+ }
1958
+ interface ConformitiesGetAllQueryParams {
1959
+ Query?: string[];
1960
+ QueryOperator?: OperatorType;
1961
+ SparqlWhere?: string;
1962
+ Restrict?: string[];
1963
+ Wildcard?: WildCardType;
1964
+ Like?: boolean;
1965
+ CaseSensitive?: boolean;
1966
+ Sort?: string[];
1967
+ PageNumber?: number;
1968
+ PageSize?: number;
1969
+ Filter?: string[];
1970
+ Fields?: InformationSubjectConformityModelField[];
1971
+ Embed?: string[];
1972
+ HitCount?: string[];
1973
+ Tags?: string[];
1974
+ Links?: boolean;
1975
+ }
1976
+ interface ConformitiesGetByIdQueryParams {
1977
+ Fields?: InformationSubjectConformityModelField[];
1978
+ Embed?: string[];
1979
+ Links?: boolean;
1980
+ }
1981
+ interface ConsumablesGetAllQueryParams {
1982
+ Query?: string[];
1983
+ QueryOperator?: OperatorType;
1984
+ SparqlWhere?: string;
1985
+ Restrict?: string[];
1986
+ Wildcard?: WildCardType;
1987
+ Like?: boolean;
1988
+ CaseSensitive?: boolean;
1989
+ Sort?: string[];
1990
+ PageNumber?: number;
1991
+ PageSize?: number;
1992
+ Filter?: string[];
1993
+ Fields?: SupplyConsumableModelField[];
1994
+ Embed?: string[];
1995
+ HitCount?: string[];
1996
+ Tags?: string[];
1997
+ Links?: boolean;
1998
+ }
1999
+ interface ConsumablesGetByIdQueryParams {
2000
+ Fields?: SupplyConsumableModelField[];
2001
+ Embed?: string[];
2002
+ Links?: boolean;
2003
+ }
2004
+ interface ContentLifeCycleStatusGetAllQueryParams {
2005
+ Query?: string[];
2006
+ QueryOperator?: OperatorType;
2007
+ SparqlWhere?: string;
2008
+ Restrict?: string[];
2009
+ Wildcard?: WildCardType;
2010
+ Like?: boolean;
2011
+ CaseSensitive?: boolean;
2012
+ Sort?: string[];
2013
+ PageNumber?: number;
2014
+ PageSize?: number;
2015
+ Filter?: string[];
2016
+ Fields?: ContentLifeCycleStatusModelField[];
2017
+ Embed?: string[];
2018
+ HitCount?: string[];
2019
+ Tags?: string[];
2020
+ Links?: boolean;
2021
+ }
2022
+ interface ContentLifeCycleStatusGetByIdQueryParams {
2023
+ Fields?: ContentLifeCycleStatusModelField[];
2024
+ Embed?: string[];
2025
+ Links?: boolean;
2026
+ }
2027
+ interface DesignAndRealizationsGetAllQueryParams {
2028
+ Query?: string[];
2029
+ QueryOperator?: OperatorType;
2030
+ SparqlWhere?: string;
2031
+ Restrict?: string[];
2032
+ Wildcard?: WildCardType;
2033
+ Like?: boolean;
2034
+ CaseSensitive?: boolean;
2035
+ Sort?: string[];
2036
+ PageNumber?: number;
2037
+ PageSize?: number;
2038
+ Filter?: string[];
2039
+ Fields?: ProductLcpDesignAndRealizationModelField[];
2040
+ Embed?: string[];
2041
+ HitCount?: string[];
2042
+ Tags?: string[];
2043
+ Links?: boolean;
2044
+ }
2045
+ interface DesignAndRealizationsGetByIdQueryParams {
2046
+ Fields?: ProductLcpDesignAndRealizationModelField[];
2047
+ Embed?: string[];
2048
+ Links?: boolean;
2049
+ }
2050
+ interface DirectoryNodesGetAllQueryParams {
2051
+ Query?: string[];
2052
+ QueryOperator?: OperatorType;
2053
+ SparqlWhere?: string;
2054
+ Restrict?: string[];
2055
+ Wildcard?: WildCardType;
2056
+ Like?: boolean;
2057
+ CaseSensitive?: boolean;
2058
+ Sort?: string[];
2059
+ PageNumber?: number;
2060
+ PageSize?: number;
2061
+ Filter?: string[];
2062
+ Fields?: DirectoryNodeModelField[];
2063
+ Embed?: string[];
2064
+ HitCount?: string[];
2065
+ Tags?: string[];
2066
+ Links?: boolean;
2067
+ }
2068
+ interface DirectoryNodesGetByIdQueryParams {
2069
+ Fields?: DirectoryNodeModelField[];
2070
+ Embed?: string[];
2071
+ Links?: boolean;
2072
+ }
2073
+ interface DirectoryNodeTypesGetAllQueryParams {
2074
+ Query?: string[];
2075
+ QueryOperator?: OperatorType;
2076
+ SparqlWhere?: string;
2077
+ Restrict?: string[];
2078
+ Wildcard?: WildCardType;
2079
+ Like?: boolean;
2080
+ CaseSensitive?: boolean;
2081
+ Sort?: string[];
2082
+ PageNumber?: number;
2083
+ PageSize?: number;
2084
+ Filter?: string[];
2085
+ Fields?: DirectoryNodeTypeModelField[];
2086
+ Embed?: string[];
2087
+ HitCount?: string[];
2088
+ Tags?: string[];
2089
+ Links?: boolean;
2090
+ }
2091
+ interface DirectoryNodeTypesGetByIdQueryParams {
2092
+ Fields?: DirectoryNodeTypeModelField[];
2093
+ Embed?: string[];
2094
+ Links?: boolean;
2095
+ }
2096
+ interface DocumentationMetadataGetAllQueryParams {
2097
+ Query?: string[];
2098
+ QueryOperator?: OperatorType;
2099
+ SparqlWhere?: string;
2100
+ Restrict?: string[];
2101
+ Wildcard?: WildCardType;
2102
+ Like?: boolean;
2103
+ CaseSensitive?: boolean;
2104
+ Sort?: string[];
2105
+ PageNumber?: number;
2106
+ PageSize?: number;
2107
+ Filter?: string[];
2108
+ Fields?: DocumentationMetadataModelField[];
2109
+ Embed?: string[];
2110
+ HitCount?: string[];
2111
+ Tags?: string[];
2112
+ Links?: boolean;
2113
+ }
2114
+ interface DocumentationMetadataGetByIdQueryParams {
2115
+ Fields?: DocumentationMetadataModelField[];
2116
+ Embed?: string[];
2117
+ Links?: boolean;
2118
+ }
2119
+ interface DocumentsGetAllQueryParams {
2120
+ Query?: string[];
2121
+ QueryOperator?: OperatorType;
2122
+ SparqlWhere?: string;
2123
+ Restrict?: string[];
2124
+ Wildcard?: WildCardType;
2125
+ Like?: boolean;
2126
+ CaseSensitive?: boolean;
2127
+ Sort?: string[];
2128
+ PageNumber?: number;
2129
+ PageSize?: number;
2130
+ Filter?: string[];
2131
+ Fields?: DocumentModelField[];
2132
+ Embed?: string[];
2133
+ HitCount?: string[];
2134
+ Tags?: string[];
2135
+ Links?: boolean;
2136
+ }
2137
+ interface DocumentsGetByIdQueryParams {
2138
+ Fields?: DocumentModelField[];
2139
+ Embed?: string[];
2140
+ Links?: boolean;
2141
+ }
2142
+ interface DocumentsLanguagesQueryParams {
2143
+ SparqlWhere?: string;
2144
+ Restrict?: string[];
2145
+ Sort?: string[];
2146
+ PageNumber?: number;
2147
+ PageSize?: number;
2148
+ }
2149
+ interface DocumentTypesGetAllQueryParams {
2150
+ Query?: string[];
2151
+ QueryOperator?: OperatorType;
2152
+ SparqlWhere?: string;
2153
+ Restrict?: string[];
2154
+ Wildcard?: WildCardType;
2155
+ Like?: boolean;
2156
+ CaseSensitive?: boolean;
2157
+ Sort?: string[];
2158
+ PageNumber?: number;
2159
+ PageSize?: number;
2160
+ Filter?: string[];
2161
+ Fields?: DocumentTypeModelField[];
2162
+ Embed?: string[];
2163
+ HitCount?: string[];
2164
+ Tags?: string[];
2165
+ Links?: boolean;
2166
+ }
2167
+ interface DocumentTypesGetByIdQueryParams {
2168
+ Fields?: DocumentTypeModelField[];
2169
+ Embed?: string[];
2170
+ Links?: boolean;
2171
+ }
2172
+ interface DomainEntitiesGetAllQueryParams {
2173
+ Query?: string[];
2174
+ QueryOperator?: OperatorType;
2175
+ SparqlWhere?: string;
2176
+ Restrict?: string[];
2177
+ Wildcard?: WildCardType;
2178
+ Like?: boolean;
2179
+ CaseSensitive?: boolean;
2180
+ Sort?: string[];
2181
+ PageNumber?: number;
2182
+ PageSize?: number;
2183
+ Filter?: string[];
2184
+ Fields?: DomainEntityModelField[];
2185
+ Embed?: string[];
2186
+ HitCount?: string[];
2187
+ Tags?: string[];
2188
+ Links?: boolean;
2189
+ }
2190
+ interface DomainEntitiesGetByIdQueryParams {
2191
+ Fields?: DomainEntityModelField[];
2192
+ Embed?: string[];
2193
+ Links?: boolean;
2194
+ }
2195
+ interface DownTimesGetAllQueryParams {
2196
+ Query?: string[];
2197
+ QueryOperator?: OperatorType;
2198
+ SparqlWhere?: string;
2199
+ Restrict?: string[];
2200
+ Wildcard?: WildCardType;
2201
+ Like?: boolean;
2202
+ CaseSensitive?: boolean;
2203
+ Sort?: string[];
2204
+ PageNumber?: number;
2205
+ PageSize?: number;
2206
+ Filter?: string[];
2207
+ Fields?: PlanningDownTimeModelField[];
2208
+ Embed?: string[];
2209
+ HitCount?: string[];
2210
+ Tags?: string[];
2211
+ Links?: boolean;
2212
+ }
2213
+ interface DownTimesGetByIdQueryParams {
2214
+ Fields?: PlanningDownTimeModelField[];
2215
+ Embed?: string[];
2216
+ Links?: boolean;
2217
+ }
2218
+ interface EventsGetAllQueryParams {
2219
+ Query?: string[];
2220
+ QueryOperator?: OperatorType;
2221
+ SparqlWhere?: string;
2222
+ Restrict?: string[];
2223
+ Wildcard?: WildCardType;
2224
+ Like?: boolean;
2225
+ CaseSensitive?: boolean;
2226
+ Sort?: string[];
2227
+ PageNumber?: number;
2228
+ PageSize?: number;
2229
+ Filter?: string[];
2230
+ Fields?: EventModelField[];
2231
+ Embed?: string[];
2232
+ HitCount?: string[];
2233
+ Tags?: string[];
2234
+ Links?: boolean;
2235
+ }
2236
+ interface EventsGetByIdQueryParams {
2237
+ Fields?: EventModelField[];
2238
+ Embed?: string[];
2239
+ Links?: boolean;
2240
+ }
2241
+ interface FormalitiesGetAllQueryParams {
2242
+ Query?: string[];
2243
+ QueryOperator?: OperatorType;
2244
+ SparqlWhere?: string;
2245
+ Restrict?: string[];
2246
+ Wildcard?: WildCardType;
2247
+ Like?: boolean;
2248
+ CaseSensitive?: boolean;
2249
+ Sort?: string[];
2250
+ PageNumber?: number;
2251
+ PageSize?: number;
2252
+ Filter?: string[];
2253
+ Fields?: InformationSubjectFormalityModelField[];
2254
+ Embed?: string[];
2255
+ HitCount?: string[];
2256
+ Tags?: string[];
2257
+ Links?: boolean;
2258
+ }
2259
+ interface FormalitiesGetByIdQueryParams {
2260
+ Fields?: InformationSubjectFormalityModelField[];
2261
+ Embed?: string[];
2262
+ Links?: boolean;
2263
+ }
2264
+ interface FormsGetAllQueryParams {
2265
+ Query?: string[];
2266
+ QueryOperator?: OperatorType;
2267
+ SparqlWhere?: string;
2268
+ Restrict?: string[];
2269
+ Wildcard?: WildCardType;
2270
+ Like?: boolean;
2271
+ CaseSensitive?: boolean;
2272
+ Sort?: string[];
2273
+ PageNumber?: number;
2274
+ PageSize?: number;
2275
+ Filter?: string[];
2276
+ Fields?: TopicTypeFormModelField[];
2277
+ Embed?: string[];
2278
+ HitCount?: string[];
2279
+ Tags?: string[];
2280
+ Links?: boolean;
2281
+ }
2282
+ interface FormsGetByIdQueryParams {
2283
+ Fields?: TopicTypeFormModelField[];
2284
+ Embed?: string[];
2285
+ Links?: boolean;
2286
+ }
2287
+ interface FragmentsGetAllQueryParams {
2288
+ Query?: string[];
2289
+ QueryOperator?: OperatorType;
2290
+ SparqlWhere?: string;
2291
+ Restrict?: string[];
2292
+ Wildcard?: WildCardType;
2293
+ Like?: boolean;
2294
+ CaseSensitive?: boolean;
2295
+ Sort?: string[];
2296
+ PageNumber?: number;
2297
+ PageSize?: number;
2298
+ Filter?: string[];
2299
+ Fields?: FragmentModelField[];
2300
+ Embed?: string[];
2301
+ HitCount?: string[];
2302
+ Tags?: string[];
2303
+ Links?: boolean;
2304
+ }
2305
+ interface FragmentsGetByIdQueryParams {
2306
+ Fields?: FragmentModelField[];
2307
+ Embed?: string[];
2308
+ Links?: boolean;
2309
+ }
2310
+ interface FragmentsLanguagesQueryParams {
2311
+ SparqlWhere?: string;
2312
+ Restrict?: string[];
2313
+ Sort?: string[];
2314
+ PageNumber?: number;
2315
+ PageSize?: number;
2316
+ }
2317
+ interface FunctionalitiesGetAllQueryParams {
2318
+ Query?: string[];
2319
+ QueryOperator?: OperatorType;
2320
+ SparqlWhere?: string;
2321
+ Restrict?: string[];
2322
+ Wildcard?: WildCardType;
2323
+ Like?: boolean;
2324
+ CaseSensitive?: boolean;
2325
+ Sort?: string[];
2326
+ PageNumber?: number;
2327
+ PageSize?: number;
2328
+ Filter?: string[];
2329
+ Fields?: InformationSubjectFunctionalityModelField[];
2330
+ Embed?: string[];
2331
+ HitCount?: string[];
2332
+ Tags?: string[];
2333
+ Links?: boolean;
2334
+ }
2335
+ interface FunctionalitiesGetByIdQueryParams {
2336
+ Fields?: InformationSubjectFunctionalityModelField[];
2337
+ Embed?: string[];
2338
+ Links?: boolean;
2339
+ }
2340
+ interface FunctionalMetadatasGetAllQueryParams {
2341
+ Query?: string[];
2342
+ QueryOperator?: OperatorType;
2343
+ SparqlWhere?: string;
2344
+ Restrict?: string[];
2345
+ Wildcard?: WildCardType;
2346
+ Like?: boolean;
2347
+ CaseSensitive?: boolean;
2348
+ Sort?: string[];
2349
+ PageNumber?: number;
2350
+ PageSize?: number;
2351
+ Filter?: string[];
2352
+ Fields?: FunctionalMetadataModelField[];
2353
+ Embed?: string[];
2354
+ HitCount?: string[];
2355
+ Tags?: string[];
2356
+ Links?: boolean;
2357
+ }
2358
+ interface FunctionalMetadatasGetByIdQueryParams {
2359
+ Fields?: FunctionalMetadataModelField[];
2360
+ Embed?: string[];
2361
+ Links?: boolean;
2362
+ }
2363
+ interface GroupsGetAllQueryParams {
2364
+ Query?: string[];
2365
+ QueryOperator?: OperatorType;
2366
+ SparqlWhere?: string;
2367
+ Restrict?: string[];
2368
+ Wildcard?: WildCardType;
2369
+ Like?: boolean;
2370
+ CaseSensitive?: boolean;
2371
+ Sort?: string[];
2372
+ PageNumber?: number;
2373
+ PageSize?: number;
2374
+ Filter?: string[];
2375
+ Fields?: VCardGroupModelField[];
2376
+ Embed?: string[];
2377
+ HitCount?: string[];
2378
+ Tags?: string[];
2379
+ Links?: boolean;
2380
+ }
2381
+ interface GroupsGetByIdQueryParams {
2382
+ Fields?: VCardGroupModelField[];
2383
+ Embed?: string[];
2384
+ Links?: boolean;
2385
+ }
2386
+ interface HardwareToolsGetAllQueryParams {
2387
+ Query?: string[];
2388
+ QueryOperator?: OperatorType;
2389
+ SparqlWhere?: string;
2390
+ Restrict?: string[];
2391
+ Wildcard?: WildCardType;
2392
+ Like?: boolean;
2393
+ CaseSensitive?: boolean;
2394
+ Sort?: string[];
2395
+ PageNumber?: number;
2396
+ PageSize?: number;
2397
+ Filter?: string[];
2398
+ Fields?: SupplyHardwareToolModelField[];
2399
+ Embed?: string[];
2400
+ HitCount?: string[];
2401
+ Tags?: string[];
2402
+ Links?: boolean;
2403
+ }
2404
+ interface HardwareToolsGetByIdQueryParams {
2405
+ Fields?: SupplyHardwareToolModelField[];
2406
+ Embed?: string[];
2407
+ Links?: boolean;
2408
+ }
2409
+ interface IdentitiesGetAllQueryParams {
2410
+ Query?: string[];
2411
+ QueryOperator?: OperatorType;
2412
+ SparqlWhere?: string;
2413
+ Restrict?: string[];
2414
+ Wildcard?: WildCardType;
2415
+ Like?: boolean;
2416
+ CaseSensitive?: boolean;
2417
+ Sort?: string[];
2418
+ PageNumber?: number;
2419
+ PageSize?: number;
2420
+ Filter?: string[];
2421
+ Fields?: IdentityModelField[];
2422
+ Embed?: string[];
2423
+ HitCount?: string[];
2424
+ Tags?: string[];
2425
+ Links?: boolean;
2426
+ }
2427
+ interface IdentitiesGetByIdQueryParams {
2428
+ Fields?: IdentityModelField[];
2429
+ Embed?: string[];
2430
+ Links?: boolean;
2431
+ }
2432
+ interface IdentityDomainsGetAllQueryParams {
2433
+ Query?: string[];
2434
+ QueryOperator?: OperatorType;
2435
+ SparqlWhere?: string;
2436
+ Restrict?: string[];
2437
+ Wildcard?: WildCardType;
2438
+ Like?: boolean;
2439
+ CaseSensitive?: boolean;
2440
+ Sort?: string[];
2441
+ PageNumber?: number;
2442
+ PageSize?: number;
2443
+ Filter?: string[];
2444
+ Fields?: IdentityDomainModelField[];
2445
+ Embed?: string[];
2446
+ HitCount?: string[];
2447
+ Tags?: string[];
2448
+ Links?: boolean;
2449
+ }
2450
+ interface IdentityDomainsGetByIdQueryParams {
2451
+ Fields?: IdentityDomainModelField[];
2452
+ Embed?: string[];
2453
+ Links?: boolean;
2454
+ }
2455
+ interface IndividualsGetAllQueryParams {
2456
+ Query?: string[];
2457
+ QueryOperator?: OperatorType;
2458
+ SparqlWhere?: string;
2459
+ Restrict?: string[];
2460
+ Wildcard?: WildCardType;
2461
+ Like?: boolean;
2462
+ CaseSensitive?: boolean;
2463
+ Sort?: string[];
2464
+ PageNumber?: number;
2465
+ PageSize?: number;
2466
+ Filter?: string[];
2467
+ Fields?: VCardIndividualModelField[];
2468
+ Embed?: string[];
2469
+ HitCount?: string[];
2470
+ Tags?: string[];
2471
+ Links?: boolean;
2472
+ }
2473
+ interface IndividualsGetByIdQueryParams {
2474
+ Fields?: VCardIndividualModelField[];
2475
+ Embed?: string[];
2476
+ Links?: boolean;
2477
+ }
2478
+ interface InformationObjectsGetAllQueryParams {
2479
+ Query?: string[];
2480
+ QueryOperator?: OperatorType;
2481
+ SparqlWhere?: string;
2482
+ Restrict?: string[];
2483
+ Wildcard?: WildCardType;
2484
+ Like?: boolean;
2485
+ CaseSensitive?: boolean;
2486
+ Sort?: string[];
2487
+ PageNumber?: number;
2488
+ PageSize?: number;
2489
+ Filter?: string[];
2490
+ Fields?: InformationObjectModelField[];
2491
+ Embed?: string[];
2492
+ HitCount?: string[];
2493
+ Tags?: string[];
2494
+ Links?: boolean;
2495
+ }
2496
+ interface InformationObjectsGetByIdQueryParams {
2497
+ Fields?: InformationObjectModelField[];
2498
+ Embed?: string[];
2499
+ Links?: boolean;
2500
+ }
2501
+ interface InformationSubjectsGetAllQueryParams {
2502
+ Query?: string[];
2503
+ QueryOperator?: OperatorType;
2504
+ SparqlWhere?: string;
2505
+ Restrict?: string[];
2506
+ Wildcard?: WildCardType;
2507
+ Like?: boolean;
2508
+ CaseSensitive?: boolean;
2509
+ Sort?: string[];
2510
+ PageNumber?: number;
2511
+ PageSize?: number;
2512
+ Filter?: string[];
2513
+ Fields?: InformationSubjectModelField[];
2514
+ Embed?: string[];
2515
+ HitCount?: string[];
2516
+ Tags?: string[];
2517
+ Links?: boolean;
2518
+ }
2519
+ interface InformationSubjectsGetByIdQueryParams {
2520
+ Fields?: InformationSubjectModelField[];
2521
+ Embed?: string[];
2522
+ Links?: boolean;
2523
+ }
2524
+ interface InformationTypesGetAllQueryParams {
2525
+ Query?: string[];
2526
+ QueryOperator?: OperatorType;
2527
+ SparqlWhere?: string;
2528
+ Restrict?: string[];
2529
+ Wildcard?: WildCardType;
2530
+ Like?: boolean;
2531
+ CaseSensitive?: boolean;
2532
+ Sort?: string[];
2533
+ PageNumber?: number;
2534
+ PageSize?: number;
2535
+ Filter?: string[];
2536
+ Fields?: InformationTypeModelField[];
2537
+ Embed?: string[];
2538
+ HitCount?: string[];
2539
+ Tags?: string[];
2540
+ Links?: boolean;
2541
+ }
2542
+ interface InformationTypesGetByIdQueryParams {
2543
+ Fields?: InformationTypeModelField[];
2544
+ Embed?: string[];
2545
+ Links?: boolean;
2546
+ }
2547
+ interface InformationUnitsGetAllQueryParams {
2548
+ Query?: string[];
2549
+ QueryOperator?: OperatorType;
2550
+ SparqlWhere?: string;
2551
+ Restrict?: string[];
2552
+ Wildcard?: WildCardType;
2553
+ Like?: boolean;
2554
+ CaseSensitive?: boolean;
2555
+ Sort?: string[];
2556
+ PageNumber?: number;
2557
+ PageSize?: number;
2558
+ Filter?: string[];
2559
+ Fields?: InformationUnitModelField[];
2560
+ Embed?: string[];
2561
+ HitCount?: string[];
2562
+ Tags?: string[];
2563
+ Links?: boolean;
2564
+ }
2565
+ interface InformationUnitsGetByIdQueryParams {
2566
+ Fields?: InformationUnitModelField[];
2567
+ Embed?: string[];
2568
+ Links?: boolean;
2569
+ }
2570
+ interface InformationUnitsLanguagesQueryParams {
2571
+ SparqlWhere?: string;
2572
+ Restrict?: string[];
2573
+ Sort?: string[];
2574
+ PageNumber?: number;
2575
+ PageSize?: number;
2576
+ }
2577
+ interface LearningsGetAllQueryParams {
2578
+ Query?: string[];
2579
+ QueryOperator?: OperatorType;
2580
+ SparqlWhere?: string;
2581
+ Restrict?: string[];
2582
+ Wildcard?: WildCardType;
2583
+ Like?: boolean;
2584
+ CaseSensitive?: boolean;
2585
+ Sort?: string[];
2586
+ PageNumber?: number;
2587
+ PageSize?: number;
2588
+ Filter?: string[];
2589
+ Fields?: TopicTypeLearningModelField[];
2590
+ Embed?: string[];
2591
+ HitCount?: string[];
2592
+ Tags?: string[];
2593
+ Links?: boolean;
2594
+ }
2595
+ interface LearningsGetByIdQueryParams {
2596
+ Fields?: TopicTypeLearningModelField[];
2597
+ Embed?: string[];
2598
+ Links?: boolean;
2599
+ }
2600
+ interface LocationsGetAllQueryParams {
2601
+ Query?: string[];
2602
+ QueryOperator?: OperatorType;
2603
+ SparqlWhere?: string;
2604
+ Restrict?: string[];
2605
+ Wildcard?: WildCardType;
2606
+ Like?: boolean;
2607
+ CaseSensitive?: boolean;
2608
+ Sort?: string[];
2609
+ PageNumber?: number;
2610
+ PageSize?: number;
2611
+ Filter?: string[];
2612
+ Fields?: VCardLocationModelField[];
2613
+ Embed?: string[];
2614
+ HitCount?: string[];
2615
+ Tags?: string[];
2616
+ Links?: boolean;
2617
+ }
2618
+ interface LocationsGetByIdQueryParams {
2619
+ Fields?: VCardLocationModelField[];
2620
+ Embed?: string[];
2621
+ Links?: boolean;
2622
+ }
2623
+ interface LubricantsGetAllQueryParams {
2624
+ Query?: string[];
2625
+ QueryOperator?: OperatorType;
2626
+ SparqlWhere?: string;
2627
+ Restrict?: string[];
2628
+ Wildcard?: WildCardType;
2629
+ Like?: boolean;
2630
+ CaseSensitive?: boolean;
2631
+ Sort?: string[];
2632
+ PageNumber?: number;
2633
+ PageSize?: number;
2634
+ Filter?: string[];
2635
+ Fields?: SupplyLubricantModelField[];
2636
+ Embed?: string[];
2637
+ HitCount?: string[];
2638
+ Tags?: string[];
2639
+ Links?: boolean;
2640
+ }
2641
+ interface LubricantsGetByIdQueryParams {
2642
+ Fields?: SupplyLubricantModelField[];
2643
+ Embed?: string[];
2644
+ Links?: boolean;
2645
+ }
2646
+ interface MaintenanceIntervalsGetAllQueryParams {
2647
+ Query?: string[];
2648
+ QueryOperator?: OperatorType;
2649
+ SparqlWhere?: string;
2650
+ Restrict?: string[];
2651
+ Wildcard?: WildCardType;
2652
+ Like?: boolean;
2653
+ CaseSensitive?: boolean;
2654
+ Sort?: string[];
2655
+ PageNumber?: number;
2656
+ PageSize?: number;
2657
+ Filter?: string[];
2658
+ Fields?: PlanningMaintenanceIntervalModelField[];
2659
+ Embed?: string[];
2660
+ HitCount?: string[];
2661
+ Tags?: string[];
2662
+ Links?: boolean;
2663
+ }
2664
+ interface MaintenanceIntervalsGetByIdQueryParams {
2665
+ Fields?: PlanningMaintenanceIntervalModelField[];
2666
+ Embed?: string[];
2667
+ Links?: boolean;
2668
+ }
2669
+ interface OperatingSuppliesGetAllQueryParams {
2670
+ Query?: string[];
2671
+ QueryOperator?: OperatorType;
2672
+ SparqlWhere?: string;
2673
+ Restrict?: string[];
2674
+ Wildcard?: WildCardType;
2675
+ Like?: boolean;
2676
+ CaseSensitive?: boolean;
2677
+ Sort?: string[];
2678
+ PageNumber?: number;
2679
+ PageSize?: number;
2680
+ Filter?: string[];
2681
+ Fields?: SupplyOperatingModelField[];
2682
+ Embed?: string[];
2683
+ HitCount?: string[];
2684
+ Tags?: string[];
2685
+ Links?: boolean;
2686
+ }
2687
+ interface OperatingSuppliesGetByIdQueryParams {
2688
+ Fields?: SupplyOperatingModelField[];
2689
+ Embed?: string[];
2690
+ Links?: boolean;
2691
+ }
2692
+ interface OrganizationsGetAllQueryParams {
2693
+ Query?: string[];
2694
+ QueryOperator?: OperatorType;
2695
+ SparqlWhere?: string;
2696
+ Restrict?: string[];
2697
+ Wildcard?: WildCardType;
2698
+ Like?: boolean;
2699
+ CaseSensitive?: boolean;
2700
+ Sort?: string[];
2701
+ PageNumber?: number;
2702
+ PageSize?: number;
2703
+ Filter?: string[];
2704
+ Fields?: VCardOrganizationModelField[];
2705
+ Embed?: string[];
2706
+ HitCount?: string[];
2707
+ Tags?: string[];
2708
+ Links?: boolean;
2709
+ }
2710
+ interface OrganizationsGetByIdQueryParams {
2711
+ Fields?: VCardOrganizationModelField[];
2712
+ Embed?: string[];
2713
+ Links?: boolean;
2714
+ }
2715
+ interface PackagesCreateClientAppQueryParams {
2716
+ id?: string[];
2717
+ name?: string;
2718
+ }
2719
+ interface PackagesGetAllQueryParams {
2720
+ Query?: string[];
2721
+ QueryOperator?: OperatorType;
2722
+ SparqlWhere?: string;
2723
+ Restrict?: string[];
2724
+ Wildcard?: WildCardType;
2725
+ Like?: boolean;
2726
+ CaseSensitive?: boolean;
2727
+ Sort?: string[];
2728
+ PageNumber?: number;
2729
+ PageSize?: number;
2730
+ Filter?: string[];
2731
+ Fields?: PackageModelField[];
2732
+ Embed?: string[];
2733
+ HitCount?: string[];
2734
+ Tags?: string[];
2735
+ Links?: boolean;
2736
+ }
2737
+ interface PackagesGetByIdQueryParams {
2738
+ Fields?: PackageModelField[];
2739
+ Embed?: string[];
2740
+ Links?: boolean;
2741
+ }
2742
+ interface PackagesLanguagesQueryParams {
2743
+ SparqlWhere?: string;
2744
+ Restrict?: string[];
2745
+ Sort?: string[];
2746
+ PageNumber?: number;
2747
+ PageSize?: number;
2748
+ }
2749
+ interface PartiesGetAllQueryParams {
2750
+ Query?: string[];
2751
+ QueryOperator?: OperatorType;
2752
+ SparqlWhere?: string;
2753
+ Restrict?: string[];
2754
+ Wildcard?: WildCardType;
2755
+ Like?: boolean;
2756
+ CaseSensitive?: boolean;
2757
+ Sort?: string[];
2758
+ PageNumber?: number;
2759
+ PageSize?: number;
2760
+ Filter?: string[];
2761
+ Fields?: PartyModelField[];
2762
+ Embed?: string[];
2763
+ HitCount?: string[];
2764
+ Tags?: string[];
2765
+ Links?: boolean;
2766
+ }
2767
+ interface PartiesGetByIdQueryParams {
2768
+ Fields?: PartyModelField[];
2769
+ Embed?: string[];
2770
+ Links?: boolean;
2771
+ }
2772
+ interface PlanningTimesGetAllQueryParams {
2773
+ Query?: string[];
2774
+ QueryOperator?: OperatorType;
2775
+ SparqlWhere?: string;
2776
+ Restrict?: string[];
2777
+ Wildcard?: WildCardType;
2778
+ Like?: boolean;
2779
+ CaseSensitive?: boolean;
2780
+ Sort?: string[];
2781
+ PageNumber?: number;
2782
+ PageSize?: number;
2783
+ Filter?: string[];
2784
+ Fields?: PlanningTimeModelField[];
2785
+ Embed?: string[];
2786
+ HitCount?: string[];
2787
+ Tags?: string[];
2788
+ Links?: boolean;
2789
+ }
2790
+ interface PlanningTimesGetByIdQueryParams {
2791
+ Fields?: PlanningTimeModelField[];
2792
+ Embed?: string[];
2793
+ Links?: boolean;
2794
+ }
2795
+ interface ProcessesGetAllQueryParams {
2796
+ Query?: string[];
2797
+ QueryOperator?: OperatorType;
2798
+ SparqlWhere?: string;
2799
+ Restrict?: string[];
2800
+ Wildcard?: WildCardType;
2801
+ Like?: boolean;
2802
+ CaseSensitive?: boolean;
2803
+ Sort?: string[];
2804
+ PageNumber?: number;
2805
+ PageSize?: number;
2806
+ Filter?: string[];
2807
+ Fields?: InformationSubjectProcessModelField[];
2808
+ Embed?: string[];
2809
+ HitCount?: string[];
2810
+ Tags?: string[];
2811
+ Links?: boolean;
2812
+ }
2813
+ interface ProcessesGetByIdQueryParams {
2814
+ Fields?: InformationSubjectProcessModelField[];
2815
+ Embed?: string[];
2816
+ Links?: boolean;
2817
+ }
2818
+ interface ProductFeaturesGetAllQueryParams {
2819
+ Query?: string[];
2820
+ QueryOperator?: OperatorType;
2821
+ SparqlWhere?: string;
2822
+ Restrict?: string[];
2823
+ Wildcard?: WildCardType;
2824
+ Like?: boolean;
2825
+ CaseSensitive?: boolean;
2826
+ Sort?: string[];
2827
+ PageNumber?: number;
2828
+ PageSize?: number;
2829
+ Filter?: string[];
2830
+ Fields?: ProductFeatureModelField[];
2831
+ Embed?: string[];
2832
+ HitCount?: string[];
2833
+ Tags?: string[];
2834
+ Links?: boolean;
2835
+ }
2836
+ interface ProductFeaturesGetByIdQueryParams {
2837
+ Fields?: ProductFeatureModelField[];
2838
+ Embed?: string[];
2839
+ Links?: boolean;
2840
+ }
2841
+ interface ProductFunctionsGetAllQueryParams {
2842
+ Query?: string[];
2843
+ QueryOperator?: OperatorType;
2844
+ SparqlWhere?: string;
2845
+ Restrict?: string[];
2846
+ Wildcard?: WildCardType;
2847
+ Like?: boolean;
2848
+ CaseSensitive?: boolean;
2849
+ Sort?: string[];
2850
+ PageNumber?: number;
2851
+ PageSize?: number;
2852
+ Filter?: string[];
2853
+ Fields?: ProductFunctionModelField[];
2854
+ Embed?: string[];
2855
+ HitCount?: string[];
2856
+ Tags?: string[];
2857
+ Links?: boolean;
2858
+ }
2859
+ interface ProductFunctionsGetByIdQueryParams {
2860
+ Fields?: ProductFunctionModelField[];
2861
+ Embed?: string[];
2862
+ Links?: boolean;
2863
+ }
2864
+ interface ProductLifeCyclePhasesGetAllQueryParams {
2865
+ Query?: string[];
2866
+ QueryOperator?: OperatorType;
2867
+ SparqlWhere?: string;
2868
+ Restrict?: string[];
2869
+ Wildcard?: WildCardType;
2870
+ Like?: boolean;
2871
+ CaseSensitive?: boolean;
2872
+ Sort?: string[];
2873
+ PageNumber?: number;
2874
+ PageSize?: number;
2875
+ Filter?: string[];
2876
+ Fields?: ProductLifeCyclePhaseModelField[];
2877
+ Embed?: string[];
2878
+ HitCount?: string[];
2879
+ Tags?: string[];
2880
+ Links?: boolean;
2881
+ }
2882
+ interface ProductLifeCyclePhasesGetByIdQueryParams {
2883
+ Fields?: ProductLifeCyclePhaseModelField[];
2884
+ Embed?: string[];
2885
+ Links?: boolean;
2886
+ }
2887
+ interface ProductMetadataGetAllQueryParams {
2888
+ Query?: string[];
2889
+ QueryOperator?: OperatorType;
2890
+ SparqlWhere?: string;
2891
+ Restrict?: string[];
2892
+ Wildcard?: WildCardType;
2893
+ Like?: boolean;
2894
+ CaseSensitive?: boolean;
2895
+ Sort?: string[];
2896
+ PageNumber?: number;
2897
+ PageSize?: number;
2898
+ Filter?: string[];
2899
+ Fields?: ProductMetadataModelField[];
2900
+ Embed?: string[];
2901
+ HitCount?: string[];
2902
+ Tags?: string[];
2903
+ Links?: boolean;
2904
+ }
2905
+ interface ProductMetadataGetByIdQueryParams {
2906
+ Fields?: ProductMetadataModelField[];
2907
+ Embed?: string[];
2908
+ Links?: boolean;
2909
+ }
2910
+ interface ProductPropertiesGetAllQueryParams {
2911
+ Query?: string[];
2912
+ QueryOperator?: OperatorType;
2913
+ SparqlWhere?: string;
2914
+ Restrict?: string[];
2915
+ Wildcard?: WildCardType;
2916
+ Like?: boolean;
2917
+ CaseSensitive?: boolean;
2918
+ Sort?: string[];
2919
+ PageNumber?: number;
2920
+ PageSize?: number;
2921
+ Filter?: string[];
2922
+ Fields?: ProductPropertyModelField[];
2923
+ Embed?: string[];
2924
+ HitCount?: string[];
2925
+ Tags?: string[];
2926
+ Links?: boolean;
2927
+ }
2928
+ interface ProductPropertiesGetByIdQueryParams {
2929
+ Fields?: ProductPropertyModelField[];
2930
+ Embed?: string[];
2931
+ Links?: boolean;
2932
+ }
2933
+ interface ProductVariantsGetAllQueryParams {
2934
+ Query?: string[];
2935
+ QueryOperator?: OperatorType;
2936
+ SparqlWhere?: string;
2937
+ Restrict?: string[];
2938
+ Wildcard?: WildCardType;
2939
+ Like?: boolean;
2940
+ CaseSensitive?: boolean;
2941
+ Sort?: string[];
2942
+ PageNumber?: number;
2943
+ PageSize?: number;
2944
+ Filter?: string[];
2945
+ Fields?: ProductVariantModelField[];
2946
+ Embed?: string[];
2947
+ HitCount?: string[];
2948
+ Tags?: string[];
2949
+ Links?: boolean;
2950
+ }
2951
+ interface ProductVariantsGetByIdQueryParams {
2952
+ Fields?: ProductVariantModelField[];
2953
+ Embed?: string[];
2954
+ Links?: boolean;
2955
+ }
2956
+ interface PuttingToUsesGetAllQueryParams {
2957
+ Query?: string[];
2958
+ QueryOperator?: OperatorType;
2959
+ SparqlWhere?: string;
2960
+ Restrict?: string[];
2961
+ Wildcard?: WildCardType;
2962
+ Like?: boolean;
2963
+ CaseSensitive?: boolean;
2964
+ Sort?: string[];
2965
+ PageNumber?: number;
2966
+ PageSize?: number;
2967
+ Filter?: string[];
2968
+ Fields?: ProductLcpPuttingToUseModelField[];
2969
+ Embed?: string[];
2970
+ HitCount?: string[];
2971
+ Tags?: string[];
2972
+ Links?: boolean;
2973
+ }
2974
+ interface PuttingToUsesGetByIdQueryParams {
2975
+ Fields?: ProductLcpPuttingToUseModelField[];
2976
+ Embed?: string[];
2977
+ Links?: boolean;
2978
+ }
2979
+ interface QualificationsGetAllQueryParams {
2980
+ Query?: string[];
2981
+ QueryOperator?: OperatorType;
2982
+ SparqlWhere?: string;
2983
+ Restrict?: string[];
2984
+ Wildcard?: WildCardType;
2985
+ Like?: boolean;
2986
+ CaseSensitive?: boolean;
2987
+ Sort?: string[];
2988
+ PageNumber?: number;
2989
+ PageSize?: number;
2990
+ Filter?: string[];
2991
+ Fields?: QualificationModelField[];
2992
+ Embed?: string[];
2993
+ HitCount?: string[];
2994
+ Tags?: string[];
2995
+ Links?: boolean;
2996
+ }
2997
+ interface QualificationsGetByIdQueryParams {
2998
+ Fields?: QualificationModelField[];
2999
+ Embed?: string[];
3000
+ Links?: boolean;
3001
+ }
3002
+ interface ReferencesGetAllQueryParams {
3003
+ Query?: string[];
3004
+ QueryOperator?: OperatorType;
3005
+ SparqlWhere?: string;
3006
+ Restrict?: string[];
3007
+ Wildcard?: WildCardType;
3008
+ Like?: boolean;
3009
+ CaseSensitive?: boolean;
3010
+ Sort?: string[];
3011
+ PageNumber?: number;
3012
+ PageSize?: number;
3013
+ Filter?: string[];
3014
+ Fields?: TopicTypeReferenceModelField[];
3015
+ Embed?: string[];
3016
+ HitCount?: string[];
3017
+ Tags?: string[];
3018
+ Links?: boolean;
3019
+ }
3020
+ interface ReferencesGetByIdQueryParams {
3021
+ Fields?: TopicTypeReferenceModelField[];
3022
+ Embed?: string[];
3023
+ Links?: boolean;
3024
+ }
3025
+ interface RenditionsGetAllQueryParams {
3026
+ Query?: string[];
3027
+ QueryOperator?: OperatorType;
3028
+ SparqlWhere?: string;
3029
+ Restrict?: string[];
3030
+ Wildcard?: WildCardType;
3031
+ Like?: boolean;
3032
+ CaseSensitive?: boolean;
3033
+ Sort?: string[];
3034
+ PageNumber?: number;
3035
+ PageSize?: number;
3036
+ Filter?: string[];
3037
+ Fields?: RenditionModelField[];
3038
+ Embed?: string[];
3039
+ HitCount?: string[];
3040
+ Tags?: string[];
3041
+ Links?: boolean;
3042
+ }
3043
+ interface RenditionsGetByIdQueryParams {
3044
+ Fields?: RenditionModelField[];
3045
+ Embed?: string[];
3046
+ Links?: boolean;
3047
+ }
3048
+ interface RenditionsGetWithBinaryWithBinaryPathQueryParams {
3049
+ }
3050
+ interface ResourcesDownloadResourceQueryParams {
3051
+ }
3052
+ interface ResourcesDownloadResourceWithBinaryPathQueryParams {
3053
+ }
3054
+ interface ResourcesGetPackageQueryParams {
3055
+ mimeType?: string;
3056
+ }
3057
+ interface ResourcesGetSubjectFromPackageQueryParams {
3058
+ mimeType?: string;
3059
+ }
3060
+ interface ResourcesViewResourceQueryParams {
3061
+ }
3062
+ interface ResourcesViewResourceWithBinaryPathQueryParams {
3063
+ }
3064
+ interface RolesGetAllQueryParams {
3065
+ Query?: string[];
3066
+ QueryOperator?: OperatorType;
3067
+ SparqlWhere?: string;
3068
+ Restrict?: string[];
3069
+ Wildcard?: WildCardType;
3070
+ Like?: boolean;
3071
+ CaseSensitive?: boolean;
3072
+ Sort?: string[];
3073
+ PageNumber?: number;
3074
+ PageSize?: number;
3075
+ Filter?: string[];
3076
+ Fields?: QualificationRoleModelField[];
3077
+ Embed?: string[];
3078
+ HitCount?: string[];
3079
+ Tags?: string[];
3080
+ Links?: boolean;
3081
+ }
3082
+ interface RolesGetByIdQueryParams {
3083
+ Fields?: QualificationRoleModelField[];
3084
+ Embed?: string[];
3085
+ Links?: boolean;
3086
+ }
3087
+ interface SafetiesGetAllQueryParams {
3088
+ Query?: string[];
3089
+ QueryOperator?: OperatorType;
3090
+ SparqlWhere?: string;
3091
+ Restrict?: string[];
3092
+ Wildcard?: WildCardType;
3093
+ Like?: boolean;
3094
+ CaseSensitive?: boolean;
3095
+ Sort?: string[];
3096
+ PageNumber?: number;
3097
+ PageSize?: number;
3098
+ Filter?: string[];
3099
+ Fields?: InformationSubjectSafetyModelField[];
3100
+ Embed?: string[];
3101
+ HitCount?: string[];
3102
+ Tags?: string[];
3103
+ Links?: boolean;
3104
+ }
3105
+ interface SafetiesGetByIdQueryParams {
3106
+ Fields?: InformationSubjectSafetyModelField[];
3107
+ Embed?: string[];
3108
+ Links?: boolean;
3109
+ }
3110
+ interface SearchGetAllQueryParams {
3111
+ Query?: string[];
3112
+ QueryOperator?: OperatorType;
3113
+ SparqlWhere?: string;
3114
+ Restrict?: string[];
3115
+ Wildcard?: WildCardType;
3116
+ Like?: boolean;
3117
+ CaseSensitive?: boolean;
3118
+ Sort?: string[];
3119
+ PageNumber?: number;
3120
+ PageSize?: number;
3121
+ Filter?: string[];
3122
+ Fields?: string[];
3123
+ Embed?: string[];
3124
+ HitCount?: string[];
3125
+ Tags?: string[];
3126
+ Links?: boolean;
3127
+ }
3128
+ interface SetupTimesGetAllQueryParams {
3129
+ Query?: string[];
3130
+ QueryOperator?: OperatorType;
3131
+ SparqlWhere?: string;
3132
+ Restrict?: string[];
3133
+ Wildcard?: WildCardType;
3134
+ Like?: boolean;
3135
+ CaseSensitive?: boolean;
3136
+ Sort?: string[];
3137
+ PageNumber?: number;
3138
+ PageSize?: number;
3139
+ Filter?: string[];
3140
+ Fields?: PlanningSetupTimeModelField[];
3141
+ Embed?: string[];
3142
+ HitCount?: string[];
3143
+ Tags?: string[];
3144
+ Links?: boolean;
3145
+ }
3146
+ interface SetupTimesGetByIdQueryParams {
3147
+ Fields?: PlanningSetupTimeModelField[];
3148
+ Embed?: string[];
3149
+ Links?: boolean;
3150
+ }
3151
+ interface SkillLevelsGetAllQueryParams {
3152
+ Query?: string[];
3153
+ QueryOperator?: OperatorType;
3154
+ SparqlWhere?: string;
3155
+ Restrict?: string[];
3156
+ Wildcard?: WildCardType;
3157
+ Like?: boolean;
3158
+ CaseSensitive?: boolean;
3159
+ Sort?: string[];
3160
+ PageNumber?: number;
3161
+ PageSize?: number;
3162
+ Filter?: string[];
3163
+ Fields?: QualificationSkillLevelModelField[];
3164
+ Embed?: string[];
3165
+ HitCount?: string[];
3166
+ Tags?: string[];
3167
+ Links?: boolean;
3168
+ }
3169
+ interface SkillLevelsGetByIdQueryParams {
3170
+ Fields?: QualificationSkillLevelModelField[];
3171
+ Embed?: string[];
3172
+ Links?: boolean;
3173
+ }
3174
+ interface SparePartsGetAllQueryParams {
3175
+ Query?: string[];
3176
+ QueryOperator?: OperatorType;
3177
+ SparqlWhere?: string;
3178
+ Restrict?: string[];
3179
+ Wildcard?: WildCardType;
3180
+ Like?: boolean;
3181
+ CaseSensitive?: boolean;
3182
+ Sort?: string[];
3183
+ PageNumber?: number;
3184
+ PageSize?: number;
3185
+ Filter?: string[];
3186
+ Fields?: SupplySparePartModelField[];
3187
+ Embed?: string[];
3188
+ HitCount?: string[];
3189
+ Tags?: string[];
3190
+ Links?: boolean;
3191
+ }
3192
+ interface SparePartsGetByIdQueryParams {
3193
+ Fields?: SupplySparePartModelField[];
3194
+ Embed?: string[];
3195
+ Links?: boolean;
3196
+ }
3197
+ interface SparQLExecuteSparQlQueryParams {
3198
+ }
3199
+ interface SuppliesGetAllQueryParams {
3200
+ Query?: string[];
3201
+ QueryOperator?: OperatorType;
3202
+ SparqlWhere?: string;
3203
+ Restrict?: string[];
3204
+ Wildcard?: WildCardType;
3205
+ Like?: boolean;
3206
+ CaseSensitive?: boolean;
3207
+ Sort?: string[];
3208
+ PageNumber?: number;
3209
+ PageSize?: number;
3210
+ Filter?: string[];
3211
+ Fields?: SupplyModelField[];
3212
+ Embed?: string[];
3213
+ HitCount?: string[];
3214
+ Tags?: string[];
3215
+ Links?: boolean;
3216
+ }
3217
+ interface SuppliesGetByIdQueryParams {
3218
+ Fields?: SupplyModelField[];
3219
+ Embed?: string[];
3220
+ Links?: boolean;
3221
+ }
3222
+ interface TasksGetAllQueryParams {
3223
+ Query?: string[];
3224
+ QueryOperator?: OperatorType;
3225
+ SparqlWhere?: string;
3226
+ Restrict?: string[];
3227
+ Wildcard?: WildCardType;
3228
+ Like?: boolean;
3229
+ CaseSensitive?: boolean;
3230
+ Sort?: string[];
3231
+ PageNumber?: number;
3232
+ PageSize?: number;
3233
+ Filter?: string[];
3234
+ Fields?: TopicTypeTaskModelField[];
3235
+ Embed?: string[];
3236
+ HitCount?: string[];
3237
+ Tags?: string[];
3238
+ Links?: boolean;
3239
+ }
3240
+ interface TasksGetByIdQueryParams {
3241
+ Fields?: TopicTypeTaskModelField[];
3242
+ Embed?: string[];
3243
+ Links?: boolean;
3244
+ }
3245
+ interface TechnicalDataGetAllQueryParams {
3246
+ Query?: string[];
3247
+ QueryOperator?: OperatorType;
3248
+ SparqlWhere?: string;
3249
+ Restrict?: string[];
3250
+ Wildcard?: WildCardType;
3251
+ Like?: boolean;
3252
+ CaseSensitive?: boolean;
3253
+ Sort?: string[];
3254
+ PageNumber?: number;
3255
+ PageSize?: number;
3256
+ Filter?: string[];
3257
+ Fields?: InformationSubjectTechnicalDataModelField[];
3258
+ Embed?: string[];
3259
+ HitCount?: string[];
3260
+ Tags?: string[];
3261
+ Links?: boolean;
3262
+ }
3263
+ interface TechnicalDataGetByIdQueryParams {
3264
+ Fields?: InformationSubjectTechnicalDataModelField[];
3265
+ Embed?: string[];
3266
+ Links?: boolean;
3267
+ }
3268
+ interface TechnicalOverviewsGetAllQueryParams {
3269
+ Query?: string[];
3270
+ QueryOperator?: OperatorType;
3271
+ SparqlWhere?: string;
3272
+ Restrict?: string[];
3273
+ Wildcard?: WildCardType;
3274
+ Like?: boolean;
3275
+ CaseSensitive?: boolean;
3276
+ Sort?: string[];
3277
+ PageNumber?: number;
3278
+ PageSize?: number;
3279
+ Filter?: string[];
3280
+ Fields?: InformationSubjectTechnicalOverviewModelField[];
3281
+ Embed?: string[];
3282
+ HitCount?: string[];
3283
+ Tags?: string[];
3284
+ Links?: boolean;
3285
+ }
3286
+ interface TechnicalOverviewsGetByIdQueryParams {
3287
+ Fields?: InformationSubjectTechnicalOverviewModelField[];
3288
+ Embed?: string[];
3289
+ Links?: boolean;
3290
+ }
3291
+ interface TopicsGetAllQueryParams {
3292
+ Query?: string[];
3293
+ QueryOperator?: OperatorType;
3294
+ SparqlWhere?: string;
3295
+ Restrict?: string[];
3296
+ Wildcard?: WildCardType;
3297
+ Like?: boolean;
3298
+ CaseSensitive?: boolean;
3299
+ Sort?: string[];
3300
+ PageNumber?: number;
3301
+ PageSize?: number;
3302
+ Filter?: string[];
3303
+ Fields?: TopicModelField[];
3304
+ Embed?: string[];
3305
+ HitCount?: string[];
3306
+ Tags?: string[];
3307
+ Links?: boolean;
3308
+ }
3309
+ interface TopicsGetByIdQueryParams {
3310
+ Fields?: TopicModelField[];
3311
+ Embed?: string[];
3312
+ Links?: boolean;
3313
+ }
3314
+ interface TopicsLanguagesQueryParams {
3315
+ SparqlWhere?: string;
3316
+ Restrict?: string[];
3317
+ Sort?: string[];
3318
+ PageNumber?: number;
3319
+ PageSize?: number;
3320
+ }
3321
+ interface TopicTypesGetAllQueryParams {
3322
+ Query?: string[];
3323
+ QueryOperator?: OperatorType;
3324
+ SparqlWhere?: string;
3325
+ Restrict?: string[];
3326
+ Wildcard?: WildCardType;
3327
+ Like?: boolean;
3328
+ CaseSensitive?: boolean;
3329
+ Sort?: string[];
3330
+ PageNumber?: number;
3331
+ PageSize?: number;
3332
+ Filter?: string[];
3333
+ Fields?: TopicTypeModelField[];
3334
+ Embed?: string[];
3335
+ HitCount?: string[];
3336
+ Tags?: string[];
3337
+ Links?: boolean;
3338
+ }
3339
+ interface TopicTypesGetByIdQueryParams {
3340
+ Fields?: TopicTypeModelField[];
3341
+ Embed?: string[];
3342
+ Links?: boolean;
3343
+ }
3344
+ interface TroubleShootingsGetAllQueryParams {
3345
+ Query?: string[];
3346
+ QueryOperator?: OperatorType;
3347
+ SparqlWhere?: string;
3348
+ Restrict?: string[];
3349
+ Wildcard?: WildCardType;
3350
+ Like?: boolean;
3351
+ CaseSensitive?: boolean;
3352
+ Sort?: string[];
3353
+ PageNumber?: number;
3354
+ PageSize?: number;
3355
+ Filter?: string[];
3356
+ Fields?: TopicTypeTroubleShootingModelField[];
3357
+ Embed?: string[];
3358
+ HitCount?: string[];
3359
+ Tags?: string[];
3360
+ Links?: boolean;
3361
+ }
3362
+ interface TroubleShootingsGetByIdQueryParams {
3363
+ Fields?: TopicTypeTroubleShootingModelField[];
3364
+ Embed?: string[];
3365
+ Links?: boolean;
3366
+ }
3367
+ interface UsesGetAllQueryParams {
3368
+ Query?: string[];
3369
+ QueryOperator?: OperatorType;
3370
+ SparqlWhere?: string;
3371
+ Restrict?: string[];
3372
+ Wildcard?: WildCardType;
3373
+ Like?: boolean;
3374
+ CaseSensitive?: boolean;
3375
+ Sort?: string[];
3376
+ PageNumber?: number;
3377
+ PageSize?: number;
3378
+ Filter?: string[];
3379
+ Fields?: ProductLcpUseModelField[];
3380
+ Embed?: string[];
3381
+ HitCount?: string[];
3382
+ Tags?: string[];
3383
+ Links?: boolean;
3384
+ }
3385
+ interface UsesGetByIdQueryParams {
3386
+ Fields?: ProductLcpUseModelField[];
3387
+ Embed?: string[];
3388
+ Links?: boolean;
3389
+ }
3390
+ interface VCardsGetAllQueryParams {
3391
+ Query?: string[];
3392
+ QueryOperator?: OperatorType;
3393
+ SparqlWhere?: string;
3394
+ Restrict?: string[];
3395
+ Wildcard?: WildCardType;
3396
+ Like?: boolean;
3397
+ CaseSensitive?: boolean;
3398
+ Sort?: string[];
3399
+ PageNumber?: number;
3400
+ PageSize?: number;
3401
+ Filter?: string[];
3402
+ Fields?: VCardModelField[];
3403
+ Embed?: string[];
3404
+ HitCount?: string[];
3405
+ Tags?: string[];
3406
+ Links?: boolean;
3407
+ }
3408
+ interface VCardsGetByIdQueryParams {
3409
+ Fields?: VCardModelField[];
3410
+ Embed?: string[];
3411
+ Links?: boolean;
3412
+ }
3413
+ interface WarningMessagesGetAllQueryParams {
3414
+ Query?: string[];
3415
+ QueryOperator?: OperatorType;
3416
+ SparqlWhere?: string;
3417
+ Restrict?: string[];
3418
+ Wildcard?: WildCardType;
3419
+ Like?: boolean;
3420
+ CaseSensitive?: boolean;
3421
+ Sort?: string[];
3422
+ PageNumber?: number;
3423
+ PageSize?: number;
3424
+ Filter?: string[];
3425
+ Fields?: InformationSubjectSafetyWarningMessageModelField[];
3426
+ Embed?: string[];
3427
+ HitCount?: string[];
3428
+ Tags?: string[];
3429
+ Links?: boolean;
3430
+ }
3431
+ interface WarningMessagesGetByIdQueryParams {
3432
+ Fields?: InformationSubjectSafetyWarningMessageModelField[];
3433
+ Embed?: string[];
3434
+ Links?: boolean;
3435
+ }
3436
+ interface WorkingTimesGetAllQueryParams {
3437
+ Query?: string[];
3438
+ QueryOperator?: OperatorType;
3439
+ SparqlWhere?: string;
3440
+ Restrict?: string[];
3441
+ Wildcard?: WildCardType;
3442
+ Like?: boolean;
3443
+ CaseSensitive?: boolean;
3444
+ Sort?: string[];
3445
+ PageNumber?: number;
3446
+ PageSize?: number;
3447
+ Filter?: string[];
3448
+ Fields?: PlanningWorkingTimeModelField[];
3449
+ Embed?: string[];
3450
+ HitCount?: string[];
3451
+ Tags?: string[];
3452
+ Links?: boolean;
3453
+ }
3454
+ interface WorkingTimesGetByIdQueryParams {
3455
+ Fields?: PlanningWorkingTimeModelField[];
3456
+ Embed?: string[];
3457
+ Links?: boolean;
3458
+ }
3459
+
3460
+ interface FilterItem {
3461
+ hits: number;
3462
+ total: number;
3463
+ label: string;
3464
+ active: boolean;
3465
+ shortId: string;
3466
+ }
3467
+
3468
+ export type { AdministrativeMetadataGetAllQueryParams, AdministrativeMetadataGetByIdPathParams, AdministrativeMetadataGetByIdQueryParams, AdministrativeMetadataModel, AfterUsesGetAllQueryParams, AfterUsesGetByIdPathParams, AfterUsesGetByIdQueryParams, AuditStateModel, AuthStateModel, AutocompleteSuggestion, AvailableVersionsInterface, ClassInterface, CollectionContext, CollectionResult, CollectionsGetAllQueryParams, CollectionsGetByIdPathParams, CollectionsGetByIdQueryParams, ComponentModel, ComponentsGetAllQueryParams, ComponentsGetByIdPathParams, ComponentsGetByIdQueryParams, ConceptsGetAllQueryParams, ConceptsGetByIdPathParams, ConceptsGetByIdQueryParams, ConfigInterface, ConformitiesGetAllQueryParams, ConformitiesGetByIdPathParams, ConformitiesGetByIdQueryParams, ConsumablesGetAllQueryParams, ConsumablesGetByIdPathParams, ConsumablesGetByIdQueryParams, ContentLifeCycleStatusGetAllQueryParams, ContentLifeCycleStatusGetByIdPathParams, ContentLifeCycleStatusGetByIdQueryParams, ContentLifeCycleStatusModel, ContentLifeCycleStatusValueModel, CookiesConfigs, CustomerConfig, DefaultCrexDirectories, DefaultCrexObject, DefaultCrexRenditions, DefaultPageInfo, DefaultRequest, DefaultResponse, DesignAndRealizationsGetAllQueryParams, DesignAndRealizationsGetByIdPathParams, DesignAndRealizationsGetByIdQueryParams, DirectoryNodeModel, DirectoryNodeTypeModel, DirectoryNodeTypesGetAllQueryParams, DirectoryNodeTypesGetByIdPathParams, DirectoryNodeTypesGetByIdQueryParams, DirectoryNodes, DirectoryNodesGetAllQueryParams, DirectoryNodesGetByIdPathParams, DirectoryNodesGetByIdQueryParams, DirectoryNodesResponse, DocumentModel, DocumentTypeModel, DocumentTypesGetAllQueryParams, DocumentTypesGetByIdPathParams, DocumentTypesGetByIdQueryParams, DocumentTypesItem, DocumentTypesResponse, DocumentationMetadataGetAllQueryParams, DocumentationMetadataGetByIdPathParams, DocumentationMetadataGetByIdQueryParams, DocumentationMetadataModel, DocumentsGetAllQueryParams, DocumentsGetByIdPathParams, DocumentsGetByIdQueryParams, DocumentsLanguagesQueryParams, DomainEntitiesGetAllQueryParams, DomainEntitiesGetByIdPathParams, DomainEntitiesGetByIdQueryParams, DomainEntityModel, DownTimesGetAllQueryParams, DownTimesGetByIdPathParams, DownTimesGetByIdQueryParams, EmptyPathParams, EventModel, EventsGetAllQueryParams, EventsGetByIdPathParams, EventsGetByIdQueryParams, ExternalProductGraphicModel, ExternalProductOntologyModel, FilterItem, Filters, FormalitiesGetAllQueryParams, FormalitiesGetByIdPathParams, FormalitiesGetByIdQueryParams, FormsGetAllQueryParams, FormsGetByIdPathParams, FormsGetByIdQueryParams, FragmentModel, FragmentsGetAllQueryParams, FragmentsGetByIdPathParams, FragmentsGetByIdQueryParams, FragmentsLanguagesQueryParams, FunctionalMetadataModel, FunctionalMetadatasGetAllQueryParams, FunctionalMetadatasGetByIdPathParams, FunctionalMetadatasGetByIdQueryParams, FunctionalitiesGetAllQueryParams, FunctionalitiesGetByIdPathParams, FunctionalitiesGetByIdQueryParams, GroupsGetAllQueryParams, GroupsGetByIdPathParams, GroupsGetByIdQueryParams, HardwareToolsGetAllQueryParams, HardwareToolsGetByIdPathParams, HardwareToolsGetByIdQueryParams, IdentitiesGetAllQueryParams, IdentitiesGetByIdPathParams, IdentitiesGetByIdQueryParams, IdentityDomainModel, IdentityDomainsGetAllQueryParams, IdentityDomainsGetByIdPathParams, IdentityDomainsGetByIdQueryParams, IdentityModel, IndividualsGetAllQueryParams, IndividualsGetByIdPathParams, IndividualsGetByIdQueryParams, InformationObjectModel, InformationObjectsGetAllQueryParams, InformationObjectsGetByIdPathParams, InformationObjectsGetByIdQueryParams, InformationSubjectCollectionModel, InformationSubjectConformityModel, InformationSubjectFormalityModel, InformationSubjectFunctionalityModel, InformationSubjectModel, InformationSubjectProcessModel, InformationSubjectSafetyModel, InformationSubjectSafetyWarningMessageModel, InformationSubjectTechnicalDataModel, InformationSubjectTechnicalOverviewModel, InformationSubjectsGetAllQueryParams, InformationSubjectsGetByIdPathParams, InformationSubjectsGetByIdQueryParams, InformationTypeModel, InformationTypesGetAllQueryParams, InformationTypesGetByIdPathParams, InformationTypesGetByIdQueryParams, InformationUnitModel, InformationUnitsGetAllQueryParams, InformationUnitsGetByIdPathParams, InformationUnitsGetByIdQueryParams, InformationUnitsLanguagesQueryParams, Labels, LanguageAndCountries, LanguageSwitcherConfig, LearningsGetAllQueryParams, LearningsGetByIdPathParams, LearningsGetByIdQueryParams, Link, LiteralModel, LocationsGetAllQueryParams, LocationsGetByIdPathParams, LocationsGetByIdQueryParams, LubricantsGetAllQueryParams, LubricantsGetByIdPathParams, LubricantsGetByIdQueryParams, MaintenanceIntervalsGetAllQueryParams, MaintenanceIntervalsGetByIdPathParams, MaintenanceIntervalsGetByIdQueryParams, OIDCInterface, ObjectRefModel, OperatingSuppliesGetAllQueryParams, OperatingSuppliesGetByIdPathParams, OperatingSuppliesGetByIdQueryParams, Operator, OrganizationsGetAllQueryParams, OrganizationsGetByIdPathParams, OrganizationsGetByIdQueryParams, OwlClassModel, PackageModel, PackagesCreateClientAppQueryParams, PackagesGetAllQueryParams, PackagesGetByIdPathParams, PackagesGetByIdQueryParams, PackagesLanguagesQueryParams, PartiesGetAllQueryParams, PartiesGetByIdPathParams, PartiesGetByIdQueryParams, PartyModel, PartyRoleModel, PlanningDownTimeModel, PlanningMaintenanceIntervalModel, PlanningSetupTimeModel, PlanningTimeModel, PlanningTimesGetAllQueryParams, PlanningTimesGetByIdPathParams, PlanningTimesGetByIdQueryParams, PlanningWorkingTimeModel, ProcessesGetAllQueryParams, ProcessesGetByIdPathParams, ProcessesGetByIdQueryParams, ProductFeatureModel, ProductFeaturesGetAllQueryParams, ProductFeaturesGetByIdPathParams, ProductFeaturesGetByIdQueryParams, ProductFunctionModel, ProductFunctionsGetAllQueryParams, ProductFunctionsGetByIdPathParams, ProductFunctionsGetByIdQueryParams, ProductLcpAfterUseModel, ProductLcpDesignAndRealizationModel, ProductLcpPuttingToUseModel, ProductLcpUseModel, ProductLifeCyclePhaseModel, ProductLifeCyclePhasesGetAllQueryParams, ProductLifeCyclePhasesGetByIdPathParams, ProductLifeCyclePhasesGetByIdQueryParams, ProductMetadataGetAllQueryParams, ProductMetadataGetByIdPathParams, ProductMetadataGetByIdQueryParams, ProductMetadataModel, ProductPropertiesGetAllQueryParams, ProductPropertiesGetByIdPathParams, ProductPropertiesGetByIdQueryParams, ProductPropertyModel, ProductVariantModel, ProductVariantsGetAllQueryParams, ProductVariantsGetByIdPathParams, ProductVariantsGetByIdQueryParams, PuttingToUsesGetAllQueryParams, PuttingToUsesGetByIdPathParams, PuttingToUsesGetByIdQueryParams, QualificationModel, QualificationRoleModel, QualificationSkillLevelModel, QualificationsGetAllQueryParams, QualificationsGetByIdPathParams, QualificationsGetByIdQueryParams, ReferencesGetAllQueryParams, ReferencesGetByIdPathParams, ReferencesGetByIdQueryParams, RenditionModel, RenditionSelectorModel, RenditionsGetAllQueryParams, RenditionsGetByIdPathParams, RenditionsGetByIdQueryParams, RenditionsGetWithBinaryWithBinaryPathPathParams, RenditionsGetWithBinaryWithBinaryPathQueryParams, ResourceLink, ResourcesDownloadResourcePathParams, ResourcesDownloadResourceQueryParams, ResourcesDownloadResourceWithBinaryPathPathParams, ResourcesDownloadResourceWithBinaryPathQueryParams, ResourcesGetPackagePathParams, ResourcesGetPackageQueryParams, ResourcesGetSubjectFromPackagePathParams, ResourcesGetSubjectFromPackageQueryParams, ResourcesViewResourcePathParams, ResourcesViewResourceQueryParams, ResourcesViewResourceWithBinaryPathPathParams, ResourcesViewResourceWithBinaryPathQueryParams, ResultContainerModel, ResultContainerPageInfoModel, ResultsConfig, RolesGetAllQueryParams, RolesGetByIdPathParams, RolesGetByIdQueryParams, SafetiesGetAllQueryParams, SafetiesGetByIdPathParams, SafetiesGetByIdQueryParams, SearchGetAllQueryParams, SearchSettings, SetupTimesGetAllQueryParams, SetupTimesGetByIdPathParams, SetupTimesGetByIdQueryParams, SkillLevelsGetAllQueryParams, SkillLevelsGetByIdPathParams, SkillLevelsGetByIdQueryParams, SparQLExecuteSparQlPathParams, SparQLExecuteSparQlQueryParams, SparePartsGetAllQueryParams, SparePartsGetByIdPathParams, SparePartsGetByIdQueryParams, SuggestionQueryParams, SuppliesGetAllQueryParams, SuppliesGetByIdPathParams, SuppliesGetByIdQueryParams, SupplyConsumableModel, SupplyHardwareToolModel, SupplyLubricantModel, SupplyModel, SupplyOperatingModel, SupplySparePartModel, Tags, TasksGetAllQueryParams, TasksGetByIdPathParams, TasksGetByIdQueryParams, TechnicalDataGetAllQueryParams, TechnicalDataGetByIdPathParams, TechnicalDataGetByIdQueryParams, TechnicalOverviewsGetAllQueryParams, TechnicalOverviewsGetByIdPathParams, TechnicalOverviewsGetByIdQueryParams, TopicModel, TopicTypeConceptModel, TopicTypeFormModel, TopicTypeLearningModel, TopicTypeModel, TopicTypeReferenceModel, TopicTypeTaskModel, TopicTypeTroubleShootingModel, TopicTypesGetAllQueryParams, TopicTypesGetByIdPathParams, TopicTypesGetByIdQueryParams, TopicsGetAllQueryParams, TopicsGetByIdPathParams, TopicsGetByIdQueryParams, TopicsLanguagesQueryParams, TopicsRequestItem, TopicsResponseItem, TreeOfContent, TroubleShootingsGetAllQueryParams, TroubleShootingsGetByIdPathParams, TroubleShootingsGetByIdQueryParams, UsesGetAllQueryParams, UsesGetByIdPathParams, UsesGetByIdQueryParams, VCardCalendarModel, VCardGroupModel, VCardImageModel, VCardIndividualModel, VCardInfoModel, VCardLocationModel, VCardModel, VCardOrganizationModel, VCardsGetAllQueryParams, VCardsGetByIdPathParams, VCardsGetByIdQueryParams, WarningMessagesGetAllQueryParams, WarningMessagesGetByIdPathParams, WarningMessagesGetByIdQueryParams, Wildcards, WorkingTimesGetAllQueryParams, WorkingTimesGetByIdPathParams, WorkingTimesGetByIdQueryParams, idShortID, informationUnitsItems, informationUnitsRenditions, informationUnitsResponse, informationUnitsResponseItem, logInfo };