@c-rex/interfaces 0.1.21 → 0.1.22
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 +182 -41
- package/dist/index.d.ts +182 -41
- package/dist/index.js.map +1 -1
- package/package.json +27 -26
package/dist/index.d.mts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { LogLevelType, LogCategoriesType,
|
|
1
|
+
import { LogLevelType, LogCategoriesType, ResultViewStyles, ResultTypes, articlePageLayoutType, FilesExtensions, WildCardType, DocumentsType, OperatorType, AdministrativeMetadataModelField, ProductLcpAfterUseModelField, CategoryModelField, InformationSubjectCollectionModelField, ComponentModelField, TopicTypeConceptModelField, InformationSubjectConformityModelField, SupplyConsumableModelField, ContentLifeCycleStatusModelField, ProductLcpDesignAndRealizationModelField, DirectoryNodeTypeModelField, DirectoryNodeModelField, DocumentTypeModelField, DocumentationMetadataModelField, DocumentModelField, DomainEntityModelField, PlanningDownTimeModelField, EventModelField, InformationSubjectFormalityModelField, TopicTypeFormModelField, FragmentModelField, FunctionalMetadataModelField, InformationSubjectFunctionalityModelField, 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, TopicTypeModelField, TopicModelField, TopicTypeTroubleShootingModelField, ProductLcpUseModelField, VCardModelField, InformationSubjectSafetyWarningMessageModelField, PlanningWorkingTimeModelField } from '@c-rex/types';
|
|
2
2
|
|
|
3
3
|
/**
|
|
4
4
|
* Auto-generated from OpenAPI spec
|
|
5
5
|
* Source: https://staging.c-rex.net/ids/api/swagger/v1/swagger.json
|
|
6
|
-
* Generated:
|
|
6
|
+
* Generated: 2026-02-28T18:07:46.983Z
|
|
7
7
|
* Do not edit manually
|
|
8
8
|
*/
|
|
9
9
|
/** Generic Result Container */
|
|
@@ -12,7 +12,7 @@ interface ResultContainerModel<T = unknown> {
|
|
|
12
12
|
items: T[];
|
|
13
13
|
pageInfo: ResultContainerPageInfoModel;
|
|
14
14
|
links: ResourceLink[];
|
|
15
|
-
tags
|
|
15
|
+
tags: Tags;
|
|
16
16
|
}
|
|
17
17
|
/** Data Model for Controller api */
|
|
18
18
|
interface AdministrativeMetadataModel {
|
|
@@ -25,6 +25,7 @@ interface AdministrativeMetadataModel {
|
|
|
25
25
|
descriptions?: LiteralModel[] | null;
|
|
26
26
|
synonyms?: string[] | null;
|
|
27
27
|
packages?: ObjectRefModel[] | null;
|
|
28
|
+
hasInformationUnits?: boolean | null;
|
|
28
29
|
links?: ResourceLink[] | null;
|
|
29
30
|
}
|
|
30
31
|
/** Data Model for AuditStateModel */
|
|
@@ -38,6 +39,24 @@ interface AuthStateModel {
|
|
|
38
39
|
licenses?: AuditStateModel[] | null;
|
|
39
40
|
roles?: AuditStateModel[] | null;
|
|
40
41
|
}
|
|
42
|
+
/** Data Model for CategoryModel */
|
|
43
|
+
interface CategoryModel {
|
|
44
|
+
id?: string | null;
|
|
45
|
+
shortId?: string | null;
|
|
46
|
+
score?: number | null;
|
|
47
|
+
class?: ObjectRefModel;
|
|
48
|
+
labels?: LiteralModel[] | null;
|
|
49
|
+
comments?: LiteralModel[] | null;
|
|
50
|
+
descriptions?: LiteralModel[] | null;
|
|
51
|
+
synonyms?: string[] | null;
|
|
52
|
+
packages?: ObjectRefModel[] | null;
|
|
53
|
+
hasInformationUnits?: boolean | null;
|
|
54
|
+
links?: ResourceLink[] | null;
|
|
55
|
+
parents?: ObjectRefModel[] | null;
|
|
56
|
+
ancestors?: ObjectRefModel[][] | null;
|
|
57
|
+
ancestorsOrSelf?: ObjectRefModel[][] | null;
|
|
58
|
+
categories?: ObjectRefModel[] | null;
|
|
59
|
+
}
|
|
41
60
|
/** Data Model for Controller api */
|
|
42
61
|
interface ComponentModel {
|
|
43
62
|
id?: string | null;
|
|
@@ -49,6 +68,7 @@ interface ComponentModel {
|
|
|
49
68
|
descriptions?: LiteralModel[] | null;
|
|
50
69
|
synonyms?: string[] | null;
|
|
51
70
|
packages?: ObjectRefModel[] | null;
|
|
71
|
+
hasInformationUnits?: boolean | null;
|
|
52
72
|
links?: ResourceLink[] | null;
|
|
53
73
|
productGraphic?: ExternalProductGraphicModel;
|
|
54
74
|
titles?: LiteralModel[] | null;
|
|
@@ -72,6 +92,7 @@ interface ContentLifeCycleStatusModel {
|
|
|
72
92
|
descriptions?: LiteralModel[] | null;
|
|
73
93
|
synonyms?: string[] | null;
|
|
74
94
|
packages?: ObjectRefModel[] | null;
|
|
95
|
+
hasInformationUnits?: boolean | null;
|
|
75
96
|
links?: ResourceLink[] | null;
|
|
76
97
|
dateOfEffect?: string | null;
|
|
77
98
|
dateOfExpiry?: string | null;
|
|
@@ -91,6 +112,7 @@ interface ContentLifeCycleStatusValueModel {
|
|
|
91
112
|
descriptions?: LiteralModel[] | null;
|
|
92
113
|
synonyms?: string[] | null;
|
|
93
114
|
packages?: ObjectRefModel[] | null;
|
|
115
|
+
hasInformationUnits?: boolean | null;
|
|
94
116
|
links?: ResourceLink[] | null;
|
|
95
117
|
}
|
|
96
118
|
/** Data Model for Controller api */
|
|
@@ -104,6 +126,7 @@ interface DirectoryNodeModel {
|
|
|
104
126
|
descriptions?: LiteralModel[] | null;
|
|
105
127
|
synonyms?: string[] | null;
|
|
106
128
|
packages?: ObjectRefModel[] | null;
|
|
129
|
+
hasInformationUnits?: boolean | null;
|
|
107
130
|
links?: ResourceLink[] | null;
|
|
108
131
|
structureType?: ObjectRefModel;
|
|
109
132
|
parents?: ObjectRefModel[] | null;
|
|
@@ -123,6 +146,7 @@ interface DirectoryNodeTypeModel {
|
|
|
123
146
|
descriptions?: LiteralModel[] | null;
|
|
124
147
|
synonyms?: string[] | null;
|
|
125
148
|
packages?: ObjectRefModel[] | null;
|
|
149
|
+
hasInformationUnits?: boolean | null;
|
|
126
150
|
links?: ResourceLink[] | null;
|
|
127
151
|
}
|
|
128
152
|
/** Data Model for Controller api */
|
|
@@ -136,6 +160,7 @@ interface DocumentModel {
|
|
|
136
160
|
descriptions?: LiteralModel[] | null;
|
|
137
161
|
synonyms?: string[] | null;
|
|
138
162
|
packages?: ObjectRefModel[] | null;
|
|
163
|
+
hasInformationUnits?: boolean | null;
|
|
139
164
|
links?: ResourceLink[] | null;
|
|
140
165
|
revision?: string | null;
|
|
141
166
|
created?: string | null;
|
|
@@ -177,6 +202,7 @@ interface DocumentTypeModel {
|
|
|
177
202
|
descriptions?: LiteralModel[] | null;
|
|
178
203
|
synonyms?: string[] | null;
|
|
179
204
|
packages?: ObjectRefModel[] | null;
|
|
205
|
+
hasInformationUnits?: boolean | null;
|
|
180
206
|
links?: ResourceLink[] | null;
|
|
181
207
|
}
|
|
182
208
|
/** Data Model for Controller api */
|
|
@@ -190,6 +216,7 @@ interface DocumentationMetadataModel {
|
|
|
190
216
|
descriptions?: LiteralModel[] | null;
|
|
191
217
|
synonyms?: string[] | null;
|
|
192
218
|
packages?: ObjectRefModel[] | null;
|
|
219
|
+
hasInformationUnits?: boolean | null;
|
|
193
220
|
links?: ResourceLink[] | null;
|
|
194
221
|
}
|
|
195
222
|
/** Data Model for Controller api */
|
|
@@ -203,6 +230,7 @@ interface DomainEntityModel {
|
|
|
203
230
|
descriptions?: LiteralModel[] | null;
|
|
204
231
|
synonyms?: string[] | null;
|
|
205
232
|
packages?: ObjectRefModel[] | null;
|
|
233
|
+
hasInformationUnits?: boolean | null;
|
|
206
234
|
}
|
|
207
235
|
/** Data Model for Controller api */
|
|
208
236
|
interface EventModel {
|
|
@@ -215,6 +243,7 @@ interface EventModel {
|
|
|
215
243
|
descriptions?: LiteralModel[] | null;
|
|
216
244
|
synonyms?: string[] | null;
|
|
217
245
|
packages?: ObjectRefModel[] | null;
|
|
246
|
+
hasInformationUnits?: boolean | null;
|
|
218
247
|
links?: ResourceLink[] | null;
|
|
219
248
|
eventCode?: ObjectRefModel[] | null;
|
|
220
249
|
eventType?: ObjectRefModel[] | null;
|
|
@@ -230,6 +259,7 @@ interface ExternalProductGraphicModel {
|
|
|
230
259
|
descriptions?: LiteralModel[] | null;
|
|
231
260
|
synonyms?: string[] | null;
|
|
232
261
|
packages?: ObjectRefModel[] | null;
|
|
262
|
+
hasInformationUnits?: boolean | null;
|
|
233
263
|
links?: ResourceLink[] | null;
|
|
234
264
|
revision?: string | null;
|
|
235
265
|
created?: string | null;
|
|
@@ -282,6 +312,7 @@ interface FragmentModel {
|
|
|
282
312
|
descriptions?: LiteralModel[] | null;
|
|
283
313
|
synonyms?: string[] | null;
|
|
284
314
|
packages?: ObjectRefModel[] | null;
|
|
315
|
+
hasInformationUnits?: boolean | null;
|
|
285
316
|
links?: ResourceLink[] | null;
|
|
286
317
|
revision?: string | null;
|
|
287
318
|
created?: string | null;
|
|
@@ -323,6 +354,7 @@ interface FunctionalMetadataModel {
|
|
|
323
354
|
descriptions?: LiteralModel[] | null;
|
|
324
355
|
synonyms?: string[] | null;
|
|
325
356
|
packages?: ObjectRefModel[] | null;
|
|
357
|
+
hasInformationUnits?: boolean | null;
|
|
326
358
|
links?: ResourceLink[] | null;
|
|
327
359
|
}
|
|
328
360
|
/** Data Model for Controller api */
|
|
@@ -336,6 +368,7 @@ interface IdentityDomainModel {
|
|
|
336
368
|
descriptions?: LiteralModel[] | null;
|
|
337
369
|
synonyms?: string[] | null;
|
|
338
370
|
packages?: ObjectRefModel[] | null;
|
|
371
|
+
hasInformationUnits?: boolean | null;
|
|
339
372
|
links?: ResourceLink[] | null;
|
|
340
373
|
parties?: ObjectRefModel[] | null;
|
|
341
374
|
}
|
|
@@ -350,6 +383,7 @@ interface IdentityModel {
|
|
|
350
383
|
descriptions?: LiteralModel[] | null;
|
|
351
384
|
synonyms?: string[] | null;
|
|
352
385
|
packages?: ObjectRefModel[] | null;
|
|
386
|
+
hasInformationUnits?: boolean | null;
|
|
353
387
|
links?: ResourceLink[] | null;
|
|
354
388
|
identifier?: LiteralModel;
|
|
355
389
|
identityDomain?: ObjectRefModel;
|
|
@@ -365,6 +399,7 @@ interface InformationObjectModel {
|
|
|
365
399
|
descriptions?: LiteralModel[] | null;
|
|
366
400
|
synonyms?: string[] | null;
|
|
367
401
|
packages?: ObjectRefModel[] | null;
|
|
402
|
+
hasInformationUnits?: boolean | null;
|
|
368
403
|
links?: ResourceLink[] | null;
|
|
369
404
|
identities?: ObjectRefModel[] | null;
|
|
370
405
|
}
|
|
@@ -379,6 +414,7 @@ interface InformationSubjectCollectionModel {
|
|
|
379
414
|
descriptions?: LiteralModel[] | null;
|
|
380
415
|
synonyms?: string[] | null;
|
|
381
416
|
packages?: ObjectRefModel[] | null;
|
|
417
|
+
hasInformationUnits?: boolean | null;
|
|
382
418
|
links?: ResourceLink[] | null;
|
|
383
419
|
}
|
|
384
420
|
/** Data Model for Controller api */
|
|
@@ -392,6 +428,7 @@ interface InformationSubjectConformityModel {
|
|
|
392
428
|
descriptions?: LiteralModel[] | null;
|
|
393
429
|
synonyms?: string[] | null;
|
|
394
430
|
packages?: ObjectRefModel[] | null;
|
|
431
|
+
hasInformationUnits?: boolean | null;
|
|
395
432
|
links?: ResourceLink[] | null;
|
|
396
433
|
}
|
|
397
434
|
/** Data Model for Controller api */
|
|
@@ -405,6 +442,7 @@ interface InformationSubjectFormalityModel {
|
|
|
405
442
|
descriptions?: LiteralModel[] | null;
|
|
406
443
|
synonyms?: string[] | null;
|
|
407
444
|
packages?: ObjectRefModel[] | null;
|
|
445
|
+
hasInformationUnits?: boolean | null;
|
|
408
446
|
links?: ResourceLink[] | null;
|
|
409
447
|
}
|
|
410
448
|
/** Data Model for Controller api */
|
|
@@ -418,6 +456,7 @@ interface InformationSubjectFunctionalityModel {
|
|
|
418
456
|
descriptions?: LiteralModel[] | null;
|
|
419
457
|
synonyms?: string[] | null;
|
|
420
458
|
packages?: ObjectRefModel[] | null;
|
|
459
|
+
hasInformationUnits?: boolean | null;
|
|
421
460
|
links?: ResourceLink[] | null;
|
|
422
461
|
}
|
|
423
462
|
/** Data Model for Controller api */
|
|
@@ -431,6 +470,7 @@ interface InformationSubjectModel {
|
|
|
431
470
|
descriptions?: LiteralModel[] | null;
|
|
432
471
|
synonyms?: string[] | null;
|
|
433
472
|
packages?: ObjectRefModel[] | null;
|
|
473
|
+
hasInformationUnits?: boolean | null;
|
|
434
474
|
links?: ResourceLink[] | null;
|
|
435
475
|
}
|
|
436
476
|
/** Data Model for Controller api */
|
|
@@ -444,6 +484,7 @@ interface InformationSubjectProcessModel {
|
|
|
444
484
|
descriptions?: LiteralModel[] | null;
|
|
445
485
|
synonyms?: string[] | null;
|
|
446
486
|
packages?: ObjectRefModel[] | null;
|
|
487
|
+
hasInformationUnits?: boolean | null;
|
|
447
488
|
links?: ResourceLink[] | null;
|
|
448
489
|
}
|
|
449
490
|
/** Data Model for Controller api */
|
|
@@ -457,6 +498,7 @@ interface InformationSubjectSafetyModel {
|
|
|
457
498
|
descriptions?: LiteralModel[] | null;
|
|
458
499
|
synonyms?: string[] | null;
|
|
459
500
|
packages?: ObjectRefModel[] | null;
|
|
501
|
+
hasInformationUnits?: boolean | null;
|
|
460
502
|
links?: ResourceLink[] | null;
|
|
461
503
|
}
|
|
462
504
|
/** Data Model for Controller api */
|
|
@@ -470,6 +512,7 @@ interface InformationSubjectSafetyWarningMessageModel {
|
|
|
470
512
|
descriptions?: LiteralModel[] | null;
|
|
471
513
|
synonyms?: string[] | null;
|
|
472
514
|
packages?: ObjectRefModel[] | null;
|
|
515
|
+
hasInformationUnits?: boolean | null;
|
|
473
516
|
links?: ResourceLink[] | null;
|
|
474
517
|
}
|
|
475
518
|
/** Data Model for Controller api */
|
|
@@ -483,6 +526,7 @@ interface InformationSubjectTechnicalDataModel {
|
|
|
483
526
|
descriptions?: LiteralModel[] | null;
|
|
484
527
|
synonyms?: string[] | null;
|
|
485
528
|
packages?: ObjectRefModel[] | null;
|
|
529
|
+
hasInformationUnits?: boolean | null;
|
|
486
530
|
links?: ResourceLink[] | null;
|
|
487
531
|
}
|
|
488
532
|
/** Data Model for Controller api */
|
|
@@ -496,6 +540,7 @@ interface InformationSubjectTechnicalOverviewModel {
|
|
|
496
540
|
descriptions?: LiteralModel[] | null;
|
|
497
541
|
synonyms?: string[] | null;
|
|
498
542
|
packages?: ObjectRefModel[] | null;
|
|
543
|
+
hasInformationUnits?: boolean | null;
|
|
499
544
|
links?: ResourceLink[] | null;
|
|
500
545
|
}
|
|
501
546
|
/** Data Model for Controller api */
|
|
@@ -509,6 +554,7 @@ interface InformationTypeModel {
|
|
|
509
554
|
descriptions?: LiteralModel[] | null;
|
|
510
555
|
synonyms?: string[] | null;
|
|
511
556
|
packages?: ObjectRefModel[] | null;
|
|
557
|
+
hasInformationUnits?: boolean | null;
|
|
512
558
|
links?: ResourceLink[] | null;
|
|
513
559
|
}
|
|
514
560
|
/** Data Model for Controller api */
|
|
@@ -522,6 +568,7 @@ interface InformationUnitModel {
|
|
|
522
568
|
descriptions?: LiteralModel[] | null;
|
|
523
569
|
synonyms?: string[] | null;
|
|
524
570
|
packages?: ObjectRefModel[] | null;
|
|
571
|
+
hasInformationUnits?: boolean | null;
|
|
525
572
|
links?: ResourceLink[] | null;
|
|
526
573
|
revision?: string | null;
|
|
527
574
|
created?: string | null;
|
|
@@ -568,10 +615,11 @@ interface ObjectRefModel {
|
|
|
568
615
|
descriptions?: LiteralModel[] | null;
|
|
569
616
|
synonyms?: string[] | null;
|
|
570
617
|
packages?: ObjectRefModel[] | null;
|
|
618
|
+
hasInformationUnits?: boolean | null;
|
|
571
619
|
links?: ResourceLink[] | null;
|
|
572
620
|
}
|
|
573
|
-
/**
|
|
574
|
-
type Operator = '
|
|
621
|
+
/** Data Model for Operator */
|
|
622
|
+
type Operator = 'or' | 'and' | 'auto';
|
|
575
623
|
/** Data Model for Controller api */
|
|
576
624
|
interface OwlClassModel {
|
|
577
625
|
id?: string | null;
|
|
@@ -583,6 +631,7 @@ interface OwlClassModel {
|
|
|
583
631
|
descriptions?: LiteralModel[] | null;
|
|
584
632
|
synonyms?: string[] | null;
|
|
585
633
|
packages?: ObjectRefModel[] | null;
|
|
634
|
+
hasInformationUnits?: boolean | null;
|
|
586
635
|
}
|
|
587
636
|
/** Data Model for Controller api */
|
|
588
637
|
interface PackageModel {
|
|
@@ -595,6 +644,7 @@ interface PackageModel {
|
|
|
595
644
|
descriptions?: LiteralModel[] | null;
|
|
596
645
|
synonyms?: string[] | null;
|
|
597
646
|
packages?: ObjectRefModel[] | null;
|
|
647
|
+
hasInformationUnits?: boolean | null;
|
|
598
648
|
links?: ResourceLink[] | null;
|
|
599
649
|
revision?: string | null;
|
|
600
650
|
created?: string | null;
|
|
@@ -639,6 +689,7 @@ interface PartyModel {
|
|
|
639
689
|
descriptions?: LiteralModel[] | null;
|
|
640
690
|
synonyms?: string[] | null;
|
|
641
691
|
packages?: ObjectRefModel[] | null;
|
|
692
|
+
hasInformationUnits?: boolean | null;
|
|
642
693
|
links?: ResourceLink[] | null;
|
|
643
694
|
partyRole?: PartyRoleModel;
|
|
644
695
|
vcard?: ObjectRefModel;
|
|
@@ -654,6 +705,7 @@ interface PartyRoleModel {
|
|
|
654
705
|
descriptions?: LiteralModel[] | null;
|
|
655
706
|
synonyms?: string[] | null;
|
|
656
707
|
packages?: ObjectRefModel[] | null;
|
|
708
|
+
hasInformationUnits?: boolean | null;
|
|
657
709
|
links?: ResourceLink[] | null;
|
|
658
710
|
}
|
|
659
711
|
/** Data Model for Controller api */
|
|
@@ -667,6 +719,7 @@ interface PlanningDownTimeModel {
|
|
|
667
719
|
descriptions?: LiteralModel[] | null;
|
|
668
720
|
synonyms?: string[] | null;
|
|
669
721
|
packages?: ObjectRefModel[] | null;
|
|
722
|
+
hasInformationUnits?: boolean | null;
|
|
670
723
|
links?: ResourceLink[] | null;
|
|
671
724
|
duration?: LiteralModel;
|
|
672
725
|
}
|
|
@@ -681,6 +734,7 @@ interface PlanningMaintenanceIntervalModel {
|
|
|
681
734
|
descriptions?: LiteralModel[] | null;
|
|
682
735
|
synonyms?: string[] | null;
|
|
683
736
|
packages?: ObjectRefModel[] | null;
|
|
737
|
+
hasInformationUnits?: boolean | null;
|
|
684
738
|
links?: ResourceLink[] | null;
|
|
685
739
|
duration?: LiteralModel;
|
|
686
740
|
frequency?: LiteralModel;
|
|
@@ -696,6 +750,7 @@ interface PlanningSetupTimeModel {
|
|
|
696
750
|
descriptions?: LiteralModel[] | null;
|
|
697
751
|
synonyms?: string[] | null;
|
|
698
752
|
packages?: ObjectRefModel[] | null;
|
|
753
|
+
hasInformationUnits?: boolean | null;
|
|
699
754
|
links?: ResourceLink[] | null;
|
|
700
755
|
duration?: LiteralModel;
|
|
701
756
|
}
|
|
@@ -710,6 +765,7 @@ interface PlanningTimeModel {
|
|
|
710
765
|
descriptions?: LiteralModel[] | null;
|
|
711
766
|
synonyms?: string[] | null;
|
|
712
767
|
packages?: ObjectRefModel[] | null;
|
|
768
|
+
hasInformationUnits?: boolean | null;
|
|
713
769
|
links?: ResourceLink[] | null;
|
|
714
770
|
duration?: LiteralModel;
|
|
715
771
|
}
|
|
@@ -724,6 +780,7 @@ interface PlanningWorkingTimeModel {
|
|
|
724
780
|
descriptions?: LiteralModel[] | null;
|
|
725
781
|
synonyms?: string[] | null;
|
|
726
782
|
packages?: ObjectRefModel[] | null;
|
|
783
|
+
hasInformationUnits?: boolean | null;
|
|
727
784
|
links?: ResourceLink[] | null;
|
|
728
785
|
duration?: LiteralModel;
|
|
729
786
|
}
|
|
@@ -738,6 +795,7 @@ interface ProductFeatureModel {
|
|
|
738
795
|
descriptions?: LiteralModel[] | null;
|
|
739
796
|
synonyms?: string[] | null;
|
|
740
797
|
packages?: ObjectRefModel[] | null;
|
|
798
|
+
hasInformationUnits?: boolean | null;
|
|
741
799
|
links?: ResourceLink[] | null;
|
|
742
800
|
}
|
|
743
801
|
/** Data Model for Controller api */
|
|
@@ -751,6 +809,7 @@ interface ProductFunctionModel {
|
|
|
751
809
|
descriptions?: LiteralModel[] | null;
|
|
752
810
|
synonyms?: string[] | null;
|
|
753
811
|
packages?: ObjectRefModel[] | null;
|
|
812
|
+
hasInformationUnits?: boolean | null;
|
|
754
813
|
links?: ResourceLink[] | null;
|
|
755
814
|
}
|
|
756
815
|
/** Data Model for Controller api */
|
|
@@ -764,6 +823,7 @@ interface ProductLcpAfterUseModel {
|
|
|
764
823
|
descriptions?: LiteralModel[] | null;
|
|
765
824
|
synonyms?: string[] | null;
|
|
766
825
|
packages?: ObjectRefModel[] | null;
|
|
826
|
+
hasInformationUnits?: boolean | null;
|
|
767
827
|
links?: ResourceLink[] | null;
|
|
768
828
|
}
|
|
769
829
|
/** Data Model for Controller api */
|
|
@@ -777,6 +837,7 @@ interface ProductLcpDesignAndRealizationModel {
|
|
|
777
837
|
descriptions?: LiteralModel[] | null;
|
|
778
838
|
synonyms?: string[] | null;
|
|
779
839
|
packages?: ObjectRefModel[] | null;
|
|
840
|
+
hasInformationUnits?: boolean | null;
|
|
780
841
|
links?: ResourceLink[] | null;
|
|
781
842
|
}
|
|
782
843
|
/** Data Model for Controller api */
|
|
@@ -790,6 +851,7 @@ interface ProductLcpPuttingToUseModel {
|
|
|
790
851
|
descriptions?: LiteralModel[] | null;
|
|
791
852
|
synonyms?: string[] | null;
|
|
792
853
|
packages?: ObjectRefModel[] | null;
|
|
854
|
+
hasInformationUnits?: boolean | null;
|
|
793
855
|
links?: ResourceLink[] | null;
|
|
794
856
|
}
|
|
795
857
|
/** Data Model for Controller api */
|
|
@@ -803,6 +865,7 @@ interface ProductLcpUseModel {
|
|
|
803
865
|
descriptions?: LiteralModel[] | null;
|
|
804
866
|
synonyms?: string[] | null;
|
|
805
867
|
packages?: ObjectRefModel[] | null;
|
|
868
|
+
hasInformationUnits?: boolean | null;
|
|
806
869
|
links?: ResourceLink[] | null;
|
|
807
870
|
}
|
|
808
871
|
/** Data Model for Controller api */
|
|
@@ -816,6 +879,7 @@ interface ProductLifeCyclePhaseModel {
|
|
|
816
879
|
descriptions?: LiteralModel[] | null;
|
|
817
880
|
synonyms?: string[] | null;
|
|
818
881
|
packages?: ObjectRefModel[] | null;
|
|
882
|
+
hasInformationUnits?: boolean | null;
|
|
819
883
|
links?: ResourceLink[] | null;
|
|
820
884
|
}
|
|
821
885
|
/** Data Model for Controller api */
|
|
@@ -829,6 +893,7 @@ interface ProductMetadataModel {
|
|
|
829
893
|
descriptions?: LiteralModel[] | null;
|
|
830
894
|
synonyms?: string[] | null;
|
|
831
895
|
packages?: ObjectRefModel[] | null;
|
|
896
|
+
hasInformationUnits?: boolean | null;
|
|
832
897
|
links?: ResourceLink[] | null;
|
|
833
898
|
}
|
|
834
899
|
/** Data Model for Controller api */
|
|
@@ -842,6 +907,7 @@ interface ProductPropertyModel {
|
|
|
842
907
|
descriptions?: LiteralModel[] | null;
|
|
843
908
|
synonyms?: string[] | null;
|
|
844
909
|
packages?: ObjectRefModel[] | null;
|
|
910
|
+
hasInformationUnits?: boolean | null;
|
|
845
911
|
links?: ResourceLink[] | null;
|
|
846
912
|
}
|
|
847
913
|
/** Data Model for Controller api */
|
|
@@ -855,6 +921,7 @@ interface ProductVariantModel {
|
|
|
855
921
|
descriptions?: LiteralModel[] | null;
|
|
856
922
|
synonyms?: string[] | null;
|
|
857
923
|
packages?: ObjectRefModel[] | null;
|
|
924
|
+
hasInformationUnits?: boolean | null;
|
|
858
925
|
links?: ResourceLink[] | null;
|
|
859
926
|
identities?: ObjectRefModel[] | null;
|
|
860
927
|
parties?: ObjectRefModel[] | null;
|
|
@@ -870,6 +937,7 @@ interface QualificationModel {
|
|
|
870
937
|
descriptions?: LiteralModel[] | null;
|
|
871
938
|
synonyms?: string[] | null;
|
|
872
939
|
packages?: ObjectRefModel[] | null;
|
|
940
|
+
hasInformationUnits?: boolean | null;
|
|
873
941
|
links?: ResourceLink[] | null;
|
|
874
942
|
}
|
|
875
943
|
/** Data Model for Controller api */
|
|
@@ -883,6 +951,7 @@ interface QualificationRoleModel {
|
|
|
883
951
|
descriptions?: LiteralModel[] | null;
|
|
884
952
|
synonyms?: string[] | null;
|
|
885
953
|
packages?: ObjectRefModel[] | null;
|
|
954
|
+
hasInformationUnits?: boolean | null;
|
|
886
955
|
links?: ResourceLink[] | null;
|
|
887
956
|
}
|
|
888
957
|
/** Data Model for Controller api */
|
|
@@ -896,6 +965,7 @@ interface QualificationSkillLevelModel {
|
|
|
896
965
|
descriptions?: LiteralModel[] | null;
|
|
897
966
|
synonyms?: string[] | null;
|
|
898
967
|
packages?: ObjectRefModel[] | null;
|
|
968
|
+
hasInformationUnits?: boolean | null;
|
|
899
969
|
links?: ResourceLink[] | null;
|
|
900
970
|
}
|
|
901
971
|
/** Data Model for Controller api */
|
|
@@ -909,6 +979,7 @@ interface RenditionModel {
|
|
|
909
979
|
descriptions?: LiteralModel[] | null;
|
|
910
980
|
synonyms?: string[] | null;
|
|
911
981
|
packages?: ObjectRefModel[] | null;
|
|
982
|
+
hasInformationUnits?: boolean | null;
|
|
912
983
|
links?: ResourceLink[] | null;
|
|
913
984
|
source?: string | null;
|
|
914
985
|
format?: string | null;
|
|
@@ -927,40 +998,25 @@ interface RenditionSelectorModel {
|
|
|
927
998
|
descriptions?: LiteralModel[] | null;
|
|
928
999
|
synonyms?: string[] | null;
|
|
929
1000
|
packages?: ObjectRefModel[] | null;
|
|
1001
|
+
hasInformationUnits?: boolean | null;
|
|
930
1002
|
}
|
|
931
|
-
/**
|
|
1003
|
+
/** Data Model for ResourceLink */
|
|
932
1004
|
interface ResourceLink {
|
|
933
|
-
/** The Relation Name */
|
|
934
1005
|
rel?: string | null;
|
|
935
|
-
/** The Link of the Link ;) */
|
|
936
1006
|
href?: string | null;
|
|
937
|
-
/** The HTTP Method
|
|
938
|
-
|
|
939
|
-
Values: HEAD, GET, POST, PUT, DELETE
|
|
940
|
-
Default: GET */
|
|
941
1007
|
method?: string | null;
|
|
942
1008
|
}
|
|
943
|
-
/**
|
|
1009
|
+
/** Data Model for ResultContainerPageInfoModel */
|
|
944
1010
|
interface ResultContainerPageInfoModel {
|
|
945
|
-
/** The current page number */
|
|
946
1011
|
pageNumber?: number;
|
|
947
|
-
/** The current page size */
|
|
948
1012
|
pageSize?: number;
|
|
949
|
-
/** The total page count */
|
|
950
1013
|
pageCount?: number;
|
|
951
|
-
/** The total item count */
|
|
952
1014
|
totalItemCount?: number;
|
|
953
|
-
/** Is there a previous page available? */
|
|
954
1015
|
hasPreviousPage?: boolean;
|
|
955
|
-
/** Is there a following page available? */
|
|
956
1016
|
hasNextPage?: boolean;
|
|
957
|
-
/** Is it the first page? */
|
|
958
1017
|
isFirstPage?: boolean;
|
|
959
|
-
/** Is it the last page? */
|
|
960
1018
|
isLastPage?: boolean;
|
|
961
|
-
/** The item number of the first item on the current page */
|
|
962
1019
|
firstItemOnPage?: number;
|
|
963
|
-
/** The item number of the last item on the current page */
|
|
964
1020
|
lastItemOnPage?: number;
|
|
965
1021
|
}
|
|
966
1022
|
/** Data Model for Controller api */
|
|
@@ -974,6 +1030,7 @@ interface SupplyConsumableModel {
|
|
|
974
1030
|
descriptions?: LiteralModel[] | null;
|
|
975
1031
|
synonyms?: string[] | null;
|
|
976
1032
|
packages?: ObjectRefModel[] | null;
|
|
1033
|
+
hasInformationUnits?: boolean | null;
|
|
977
1034
|
links?: ResourceLink[] | null;
|
|
978
1035
|
}
|
|
979
1036
|
/** Data Model for Controller api */
|
|
@@ -987,6 +1044,7 @@ interface SupplyHardwareToolModel {
|
|
|
987
1044
|
descriptions?: LiteralModel[] | null;
|
|
988
1045
|
synonyms?: string[] | null;
|
|
989
1046
|
packages?: ObjectRefModel[] | null;
|
|
1047
|
+
hasInformationUnits?: boolean | null;
|
|
990
1048
|
links?: ResourceLink[] | null;
|
|
991
1049
|
}
|
|
992
1050
|
/** Data Model for Controller api */
|
|
@@ -1000,6 +1058,7 @@ interface SupplyLubricantModel {
|
|
|
1000
1058
|
descriptions?: LiteralModel[] | null;
|
|
1001
1059
|
synonyms?: string[] | null;
|
|
1002
1060
|
packages?: ObjectRefModel[] | null;
|
|
1061
|
+
hasInformationUnits?: boolean | null;
|
|
1003
1062
|
links?: ResourceLink[] | null;
|
|
1004
1063
|
}
|
|
1005
1064
|
/** Data Model for Controller api */
|
|
@@ -1013,6 +1072,7 @@ interface SupplyModel {
|
|
|
1013
1072
|
descriptions?: LiteralModel[] | null;
|
|
1014
1073
|
synonyms?: string[] | null;
|
|
1015
1074
|
packages?: ObjectRefModel[] | null;
|
|
1075
|
+
hasInformationUnits?: boolean | null;
|
|
1016
1076
|
links?: ResourceLink[] | null;
|
|
1017
1077
|
}
|
|
1018
1078
|
/** Data Model for Controller api */
|
|
@@ -1026,6 +1086,7 @@ interface SupplyOperatingModel {
|
|
|
1026
1086
|
descriptions?: LiteralModel[] | null;
|
|
1027
1087
|
synonyms?: string[] | null;
|
|
1028
1088
|
packages?: ObjectRefModel[] | null;
|
|
1089
|
+
hasInformationUnits?: boolean | null;
|
|
1029
1090
|
links?: ResourceLink[] | null;
|
|
1030
1091
|
}
|
|
1031
1092
|
/** Data Model for Controller api */
|
|
@@ -1039,6 +1100,7 @@ interface SupplySparePartModel {
|
|
|
1039
1100
|
descriptions?: LiteralModel[] | null;
|
|
1040
1101
|
synonyms?: string[] | null;
|
|
1041
1102
|
packages?: ObjectRefModel[] | null;
|
|
1103
|
+
hasInformationUnits?: boolean | null;
|
|
1042
1104
|
links?: ResourceLink[] | null;
|
|
1043
1105
|
}
|
|
1044
1106
|
/** Data Model for Controller api */
|
|
@@ -1052,6 +1114,7 @@ interface TopicModel {
|
|
|
1052
1114
|
descriptions?: LiteralModel[] | null;
|
|
1053
1115
|
synonyms?: string[] | null;
|
|
1054
1116
|
packages?: ObjectRefModel[] | null;
|
|
1117
|
+
hasInformationUnits?: boolean | null;
|
|
1055
1118
|
links?: ResourceLink[] | null;
|
|
1056
1119
|
revision?: string | null;
|
|
1057
1120
|
created?: string | null;
|
|
@@ -1093,6 +1156,7 @@ interface TopicTypeConceptModel {
|
|
|
1093
1156
|
descriptions?: LiteralModel[] | null;
|
|
1094
1157
|
synonyms?: string[] | null;
|
|
1095
1158
|
packages?: ObjectRefModel[] | null;
|
|
1159
|
+
hasInformationUnits?: boolean | null;
|
|
1096
1160
|
links?: ResourceLink[] | null;
|
|
1097
1161
|
}
|
|
1098
1162
|
/** Data Model for Controller api */
|
|
@@ -1106,6 +1170,7 @@ interface TopicTypeFormModel {
|
|
|
1106
1170
|
descriptions?: LiteralModel[] | null;
|
|
1107
1171
|
synonyms?: string[] | null;
|
|
1108
1172
|
packages?: ObjectRefModel[] | null;
|
|
1173
|
+
hasInformationUnits?: boolean | null;
|
|
1109
1174
|
links?: ResourceLink[] | null;
|
|
1110
1175
|
}
|
|
1111
1176
|
/** Data Model for Controller api */
|
|
@@ -1119,6 +1184,7 @@ interface TopicTypeLearningModel {
|
|
|
1119
1184
|
descriptions?: LiteralModel[] | null;
|
|
1120
1185
|
synonyms?: string[] | null;
|
|
1121
1186
|
packages?: ObjectRefModel[] | null;
|
|
1187
|
+
hasInformationUnits?: boolean | null;
|
|
1122
1188
|
links?: ResourceLink[] | null;
|
|
1123
1189
|
}
|
|
1124
1190
|
/** Data Model for Controller api */
|
|
@@ -1132,6 +1198,7 @@ interface TopicTypeModel {
|
|
|
1132
1198
|
descriptions?: LiteralModel[] | null;
|
|
1133
1199
|
synonyms?: string[] | null;
|
|
1134
1200
|
packages?: ObjectRefModel[] | null;
|
|
1201
|
+
hasInformationUnits?: boolean | null;
|
|
1135
1202
|
links?: ResourceLink[] | null;
|
|
1136
1203
|
}
|
|
1137
1204
|
/** Data Model for Controller api */
|
|
@@ -1145,6 +1212,7 @@ interface TopicTypeReferenceModel {
|
|
|
1145
1212
|
descriptions?: LiteralModel[] | null;
|
|
1146
1213
|
synonyms?: string[] | null;
|
|
1147
1214
|
packages?: ObjectRefModel[] | null;
|
|
1215
|
+
hasInformationUnits?: boolean | null;
|
|
1148
1216
|
links?: ResourceLink[] | null;
|
|
1149
1217
|
}
|
|
1150
1218
|
/** Data Model for Controller api */
|
|
@@ -1158,6 +1226,7 @@ interface TopicTypeTaskModel {
|
|
|
1158
1226
|
descriptions?: LiteralModel[] | null;
|
|
1159
1227
|
synonyms?: string[] | null;
|
|
1160
1228
|
packages?: ObjectRefModel[] | null;
|
|
1229
|
+
hasInformationUnits?: boolean | null;
|
|
1161
1230
|
links?: ResourceLink[] | null;
|
|
1162
1231
|
}
|
|
1163
1232
|
/** Data Model for Controller api */
|
|
@@ -1171,6 +1240,7 @@ interface TopicTypeTroubleShootingModel {
|
|
|
1171
1240
|
descriptions?: LiteralModel[] | null;
|
|
1172
1241
|
synonyms?: string[] | null;
|
|
1173
1242
|
packages?: ObjectRefModel[] | null;
|
|
1243
|
+
hasInformationUnits?: boolean | null;
|
|
1174
1244
|
links?: ResourceLink[] | null;
|
|
1175
1245
|
}
|
|
1176
1246
|
/** Data Model for Controller api */
|
|
@@ -1184,6 +1254,7 @@ interface VCardCalendarModel {
|
|
|
1184
1254
|
descriptions?: LiteralModel[] | null;
|
|
1185
1255
|
synonyms?: string[] | null;
|
|
1186
1256
|
packages?: ObjectRefModel[] | null;
|
|
1257
|
+
hasInformationUnits?: boolean | null;
|
|
1187
1258
|
source?: string | null;
|
|
1188
1259
|
}
|
|
1189
1260
|
/** Data Model for Controller api */
|
|
@@ -1197,6 +1268,7 @@ interface VCardGroupModel {
|
|
|
1197
1268
|
descriptions?: LiteralModel[] | null;
|
|
1198
1269
|
synonyms?: string[] | null;
|
|
1199
1270
|
packages?: ObjectRefModel[] | null;
|
|
1271
|
+
hasInformationUnits?: boolean | null;
|
|
1200
1272
|
links?: ResourceLink[] | null;
|
|
1201
1273
|
fullName?: string | null;
|
|
1202
1274
|
photos?: VCardImageModel[] | null;
|
|
@@ -1218,6 +1290,7 @@ interface VCardImageModel {
|
|
|
1218
1290
|
descriptions?: LiteralModel[] | null;
|
|
1219
1291
|
synonyms?: string[] | null;
|
|
1220
1292
|
packages?: ObjectRefModel[] | null;
|
|
1293
|
+
hasInformationUnits?: boolean | null;
|
|
1221
1294
|
classes?: OwlClassModel[] | null;
|
|
1222
1295
|
value?: string | null;
|
|
1223
1296
|
source?: string | null;
|
|
@@ -1233,6 +1306,7 @@ interface VCardIndividualModel {
|
|
|
1233
1306
|
descriptions?: LiteralModel[] | null;
|
|
1234
1307
|
synonyms?: string[] | null;
|
|
1235
1308
|
packages?: ObjectRefModel[] | null;
|
|
1309
|
+
hasInformationUnits?: boolean | null;
|
|
1236
1310
|
links?: ResourceLink[] | null;
|
|
1237
1311
|
fullName?: string | null;
|
|
1238
1312
|
photos?: VCardImageModel[] | null;
|
|
@@ -1251,6 +1325,7 @@ interface VCardInfoModel {
|
|
|
1251
1325
|
shortId?: string | null;
|
|
1252
1326
|
score?: number | null;
|
|
1253
1327
|
classes?: OwlClassModel[] | null;
|
|
1328
|
+
types?: string[] | null;
|
|
1254
1329
|
value?: string | null;
|
|
1255
1330
|
countryName?: string | null;
|
|
1256
1331
|
locality?: string | null;
|
|
@@ -1268,6 +1343,7 @@ interface VCardLocationModel {
|
|
|
1268
1343
|
descriptions?: LiteralModel[] | null;
|
|
1269
1344
|
synonyms?: string[] | null;
|
|
1270
1345
|
packages?: ObjectRefModel[] | null;
|
|
1346
|
+
hasInformationUnits?: boolean | null;
|
|
1271
1347
|
links?: ResourceLink[] | null;
|
|
1272
1348
|
fullName?: string | null;
|
|
1273
1349
|
photos?: VCardImageModel[] | null;
|
|
@@ -1289,6 +1365,7 @@ interface VCardModel {
|
|
|
1289
1365
|
descriptions?: LiteralModel[] | null;
|
|
1290
1366
|
synonyms?: string[] | null;
|
|
1291
1367
|
packages?: ObjectRefModel[] | null;
|
|
1368
|
+
hasInformationUnits?: boolean | null;
|
|
1292
1369
|
links?: ResourceLink[] | null;
|
|
1293
1370
|
fullName?: string | null;
|
|
1294
1371
|
photos?: VCardImageModel[] | null;
|
|
@@ -1309,6 +1386,7 @@ interface VCardOrganizationModel {
|
|
|
1309
1386
|
descriptions?: LiteralModel[] | null;
|
|
1310
1387
|
synonyms?: string[] | null;
|
|
1311
1388
|
packages?: ObjectRefModel[] | null;
|
|
1389
|
+
hasInformationUnits?: boolean | null;
|
|
1312
1390
|
links?: ResourceLink[] | null;
|
|
1313
1391
|
fullName?: string | null;
|
|
1314
1392
|
photos?: VCardImageModel[] | null;
|
|
@@ -1322,8 +1400,8 @@ interface VCardOrganizationModel {
|
|
|
1322
1400
|
members?: ObjectRefModel[] | null;
|
|
1323
1401
|
logos?: VCardImageModel[] | null;
|
|
1324
1402
|
}
|
|
1325
|
-
/**
|
|
1326
|
-
type Wildcards = '
|
|
1403
|
+
/** Data Model for Wildcards */
|
|
1404
|
+
type Wildcards = 'none' | 'start' | 'end' | 'both';
|
|
1327
1405
|
|
|
1328
1406
|
interface DefaultCrexDirectories extends idShortID {
|
|
1329
1407
|
labels: Labels[];
|
|
@@ -1420,6 +1498,8 @@ interface logInfo {
|
|
|
1420
1498
|
hostname: string;
|
|
1421
1499
|
port?: number;
|
|
1422
1500
|
app: string;
|
|
1501
|
+
siteId?: number;
|
|
1502
|
+
tokenAuth?: string;
|
|
1423
1503
|
}
|
|
1424
1504
|
interface OIDCInterface {
|
|
1425
1505
|
enabled: boolean;
|
|
@@ -1450,6 +1530,10 @@ interface LanguageSwitcherConfig {
|
|
|
1450
1530
|
default: string;
|
|
1451
1531
|
endpoint: string;
|
|
1452
1532
|
}
|
|
1533
|
+
interface OrganizationConfig {
|
|
1534
|
+
vcardId?: string;
|
|
1535
|
+
logoFallbackSrc?: string;
|
|
1536
|
+
}
|
|
1453
1537
|
interface CookiesConfigs extends CustomerConfig {
|
|
1454
1538
|
publicNextApiUrl: string;
|
|
1455
1539
|
OIDC: {
|
|
@@ -1477,6 +1561,7 @@ interface CustomerConfig {
|
|
|
1477
1561
|
sub: string;
|
|
1478
1562
|
};
|
|
1479
1563
|
languageSwitcher: LanguageSwitcherConfig;
|
|
1564
|
+
organization?: OrganizationConfig;
|
|
1480
1565
|
}
|
|
1481
1566
|
|
|
1482
1567
|
interface DirectoryNodes extends DefaultCrexDirectories {
|
|
@@ -1571,7 +1656,7 @@ interface LanguageAndCountries {
|
|
|
1571
1656
|
/**
|
|
1572
1657
|
* Auto-generated from OpenAPI spec
|
|
1573
1658
|
* Source: https://staging.c-rex.net/ids/api/swagger/v1/swagger.json
|
|
1574
|
-
* Generated:
|
|
1659
|
+
* Generated: 2026-02-28T18:07:46.986Z
|
|
1575
1660
|
* Do not edit manually
|
|
1576
1661
|
*/
|
|
1577
1662
|
interface AdministrativeMetadataGetByIdPathParams {
|
|
@@ -1580,6 +1665,9 @@ interface AdministrativeMetadataGetByIdPathParams {
|
|
|
1580
1665
|
interface AfterUsesGetByIdPathParams {
|
|
1581
1666
|
id: string;
|
|
1582
1667
|
}
|
|
1668
|
+
interface CategoriesGetByIdPathParams {
|
|
1669
|
+
id: string;
|
|
1670
|
+
}
|
|
1583
1671
|
interface CollectionsGetByIdPathParams {
|
|
1584
1672
|
id: string;
|
|
1585
1673
|
}
|
|
@@ -1738,16 +1826,16 @@ interface ResourcesDownloadResourceWithBinaryPathPathParams {
|
|
|
1738
1826
|
renditionId: string;
|
|
1739
1827
|
binaryPath: string;
|
|
1740
1828
|
}
|
|
1741
|
-
interface
|
|
1829
|
+
interface ResourcesPackagesGetPackagePathParams {
|
|
1742
1830
|
id: string;
|
|
1743
1831
|
}
|
|
1744
|
-
interface
|
|
1832
|
+
interface ResourcesSubjectsGetSubjectFromPackagePathParams {
|
|
1745
1833
|
id: string;
|
|
1746
1834
|
}
|
|
1747
|
-
interface
|
|
1835
|
+
interface ResourcesViewViewResourcePathParams {
|
|
1748
1836
|
renditionId: string;
|
|
1749
1837
|
}
|
|
1750
|
-
interface
|
|
1838
|
+
interface ResourcesViewViewResourceWithBinaryPathPathParams {
|
|
1751
1839
|
renditionId: string;
|
|
1752
1840
|
binaryPath: string;
|
|
1753
1841
|
}
|
|
@@ -1809,7 +1897,7 @@ interface EmptyPathParams {
|
|
|
1809
1897
|
/**
|
|
1810
1898
|
* Auto-generated from OpenAPI spec
|
|
1811
1899
|
* Source: https://staging.c-rex.net/ids/api/swagger/v1/swagger.json
|
|
1812
|
-
* Generated:
|
|
1900
|
+
* Generated: 2026-02-28T18:07:46.987Z
|
|
1813
1901
|
* Do not edit manually
|
|
1814
1902
|
*/
|
|
1815
1903
|
|
|
@@ -1859,6 +1947,29 @@ interface AfterUsesGetByIdQueryParams {
|
|
|
1859
1947
|
Embed?: string[];
|
|
1860
1948
|
Links?: boolean;
|
|
1861
1949
|
}
|
|
1950
|
+
interface CategoriesGetAllQueryParams {
|
|
1951
|
+
Query?: string[];
|
|
1952
|
+
QueryOperator?: OperatorType;
|
|
1953
|
+
SparqlWhere?: string;
|
|
1954
|
+
Restrict?: string[];
|
|
1955
|
+
Wildcard?: WildCardType;
|
|
1956
|
+
Like?: boolean;
|
|
1957
|
+
CaseSensitive?: boolean;
|
|
1958
|
+
Sort?: string[];
|
|
1959
|
+
PageNumber?: number;
|
|
1960
|
+
PageSize?: number;
|
|
1961
|
+
Filter?: string[];
|
|
1962
|
+
Fields?: CategoryModelField[];
|
|
1963
|
+
Embed?: string[];
|
|
1964
|
+
HitCount?: string[];
|
|
1965
|
+
Tags?: string[];
|
|
1966
|
+
Links?: boolean;
|
|
1967
|
+
}
|
|
1968
|
+
interface CategoriesGetByIdQueryParams {
|
|
1969
|
+
Fields?: CategoryModelField[];
|
|
1970
|
+
Embed?: string[];
|
|
1971
|
+
Links?: boolean;
|
|
1972
|
+
}
|
|
1862
1973
|
interface CollectionsGetAllQueryParams {
|
|
1863
1974
|
Query?: string[];
|
|
1864
1975
|
QueryOperator?: OperatorType;
|
|
@@ -2113,11 +2224,17 @@ interface DocumentsGetByIdQueryParams {
|
|
|
2113
2224
|
Links?: boolean;
|
|
2114
2225
|
}
|
|
2115
2226
|
interface DocumentsLanguagesQueryParams {
|
|
2227
|
+
Query?: string[];
|
|
2228
|
+
QueryOperator?: OperatorType;
|
|
2116
2229
|
SparqlWhere?: string;
|
|
2117
2230
|
Restrict?: string[];
|
|
2231
|
+
Wildcard?: WildCardType;
|
|
2232
|
+
Like?: boolean;
|
|
2233
|
+
CaseSensitive?: boolean;
|
|
2118
2234
|
Sort?: string[];
|
|
2119
2235
|
PageNumber?: number;
|
|
2120
2236
|
PageSize?: number;
|
|
2237
|
+
Filter?: string[];
|
|
2121
2238
|
}
|
|
2122
2239
|
interface DocumentTypesGetAllQueryParams {
|
|
2123
2240
|
Query?: string[];
|
|
@@ -2281,11 +2398,17 @@ interface FragmentsGetByIdQueryParams {
|
|
|
2281
2398
|
Links?: boolean;
|
|
2282
2399
|
}
|
|
2283
2400
|
interface FragmentsLanguagesQueryParams {
|
|
2401
|
+
Query?: string[];
|
|
2402
|
+
QueryOperator?: OperatorType;
|
|
2284
2403
|
SparqlWhere?: string;
|
|
2285
2404
|
Restrict?: string[];
|
|
2405
|
+
Wildcard?: WildCardType;
|
|
2406
|
+
Like?: boolean;
|
|
2407
|
+
CaseSensitive?: boolean;
|
|
2286
2408
|
Sort?: string[];
|
|
2287
2409
|
PageNumber?: number;
|
|
2288
2410
|
PageSize?: number;
|
|
2411
|
+
Filter?: string[];
|
|
2289
2412
|
}
|
|
2290
2413
|
interface FunctionalitiesGetAllQueryParams {
|
|
2291
2414
|
Query?: string[];
|
|
@@ -2541,11 +2664,17 @@ interface InformationUnitsGetByIdQueryParams {
|
|
|
2541
2664
|
Links?: boolean;
|
|
2542
2665
|
}
|
|
2543
2666
|
interface InformationUnitsLanguagesQueryParams {
|
|
2667
|
+
Query?: string[];
|
|
2668
|
+
QueryOperator?: OperatorType;
|
|
2544
2669
|
SparqlWhere?: string;
|
|
2545
2670
|
Restrict?: string[];
|
|
2671
|
+
Wildcard?: WildCardType;
|
|
2672
|
+
Like?: boolean;
|
|
2673
|
+
CaseSensitive?: boolean;
|
|
2546
2674
|
Sort?: string[];
|
|
2547
2675
|
PageNumber?: number;
|
|
2548
2676
|
PageSize?: number;
|
|
2677
|
+
Filter?: string[];
|
|
2549
2678
|
}
|
|
2550
2679
|
interface LearningsGetAllQueryParams {
|
|
2551
2680
|
Query?: string[];
|
|
@@ -2686,8 +2815,8 @@ interface OrganizationsGetByIdQueryParams {
|
|
|
2686
2815
|
Links?: boolean;
|
|
2687
2816
|
}
|
|
2688
2817
|
interface PackagesCreateClientAppQueryParams {
|
|
2689
|
-
|
|
2690
|
-
|
|
2818
|
+
Id?: string[];
|
|
2819
|
+
Name?: string;
|
|
2691
2820
|
}
|
|
2692
2821
|
interface PackagesGetAllQueryParams {
|
|
2693
2822
|
Query?: string[];
|
|
@@ -2713,11 +2842,17 @@ interface PackagesGetByIdQueryParams {
|
|
|
2713
2842
|
Links?: boolean;
|
|
2714
2843
|
}
|
|
2715
2844
|
interface PackagesLanguagesQueryParams {
|
|
2845
|
+
Query?: string[];
|
|
2846
|
+
QueryOperator?: OperatorType;
|
|
2716
2847
|
SparqlWhere?: string;
|
|
2717
2848
|
Restrict?: string[];
|
|
2849
|
+
Wildcard?: WildCardType;
|
|
2850
|
+
Like?: boolean;
|
|
2851
|
+
CaseSensitive?: boolean;
|
|
2718
2852
|
Sort?: string[];
|
|
2719
2853
|
PageNumber?: number;
|
|
2720
2854
|
PageSize?: number;
|
|
2855
|
+
Filter?: string[];
|
|
2721
2856
|
}
|
|
2722
2857
|
interface PartiesGetAllQueryParams {
|
|
2723
2858
|
Query?: string[];
|
|
@@ -3024,15 +3159,15 @@ interface ResourcesDownloadResourceQueryParams {
|
|
|
3024
3159
|
}
|
|
3025
3160
|
interface ResourcesDownloadResourceWithBinaryPathQueryParams {
|
|
3026
3161
|
}
|
|
3027
|
-
interface
|
|
3028
|
-
|
|
3162
|
+
interface ResourcesPackagesGetPackageQueryParams {
|
|
3163
|
+
MimeType?: string;
|
|
3029
3164
|
}
|
|
3030
|
-
interface
|
|
3031
|
-
|
|
3165
|
+
interface ResourcesSubjectsGetSubjectFromPackageQueryParams {
|
|
3166
|
+
MimeType?: string;
|
|
3032
3167
|
}
|
|
3033
|
-
interface
|
|
3168
|
+
interface ResourcesViewViewResourceQueryParams {
|
|
3034
3169
|
}
|
|
3035
|
-
interface
|
|
3170
|
+
interface ResourcesViewViewResourceWithBinaryPathQueryParams {
|
|
3036
3171
|
}
|
|
3037
3172
|
interface RolesGetAllQueryParams {
|
|
3038
3173
|
Query?: string[];
|
|
@@ -3080,7 +3215,7 @@ interface SafetiesGetByIdQueryParams {
|
|
|
3080
3215
|
Embed?: string[];
|
|
3081
3216
|
Links?: boolean;
|
|
3082
3217
|
}
|
|
3083
|
-
interface
|
|
3218
|
+
interface SearchFacetsGetAllQueryParams {
|
|
3084
3219
|
Query?: string[];
|
|
3085
3220
|
QueryOperator?: OperatorType;
|
|
3086
3221
|
SparqlWhere?: string;
|
|
@@ -3285,11 +3420,17 @@ interface TopicsGetByIdQueryParams {
|
|
|
3285
3420
|
Links?: boolean;
|
|
3286
3421
|
}
|
|
3287
3422
|
interface TopicsLanguagesQueryParams {
|
|
3423
|
+
Query?: string[];
|
|
3424
|
+
QueryOperator?: OperatorType;
|
|
3288
3425
|
SparqlWhere?: string;
|
|
3289
3426
|
Restrict?: string[];
|
|
3427
|
+
Wildcard?: WildCardType;
|
|
3428
|
+
Like?: boolean;
|
|
3429
|
+
CaseSensitive?: boolean;
|
|
3290
3430
|
Sort?: string[];
|
|
3291
3431
|
PageNumber?: number;
|
|
3292
3432
|
PageSize?: number;
|
|
3433
|
+
Filter?: string[];
|
|
3293
3434
|
}
|
|
3294
3435
|
interface TopicTypesGetAllQueryParams {
|
|
3295
3436
|
Query?: string[];
|
|
@@ -3438,4 +3579,4 @@ interface FilterItem {
|
|
|
3438
3579
|
shortId: string;
|
|
3439
3580
|
}
|
|
3440
3581
|
|
|
3441
|
-
export type { AdministrativeMetadataGetAllQueryParams, AdministrativeMetadataGetByIdPathParams, AdministrativeMetadataGetByIdQueryParams, AdministrativeMetadataModel, AfterUsesGetAllQueryParams, AfterUsesGetByIdPathParams, AfterUsesGetByIdQueryParams, AuditStateModel, AuthStateModel, AutocompleteSuggestion, AvailableVersionsInterface, ClassInterface, CollectionsGetAllQueryParams, CollectionsGetByIdPathParams, CollectionsGetByIdQueryParams, CommonItemsModel, 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, 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 };
|
|
3582
|
+
export type { AdministrativeMetadataGetAllQueryParams, AdministrativeMetadataGetByIdPathParams, AdministrativeMetadataGetByIdQueryParams, AdministrativeMetadataModel, AfterUsesGetAllQueryParams, AfterUsesGetByIdPathParams, AfterUsesGetByIdQueryParams, AuditStateModel, AuthStateModel, AutocompleteSuggestion, AvailableVersionsInterface, CategoriesGetAllQueryParams, CategoriesGetByIdPathParams, CategoriesGetByIdQueryParams, CategoryModel, ClassInterface, CollectionsGetAllQueryParams, CollectionsGetByIdPathParams, CollectionsGetByIdQueryParams, CommonItemsModel, 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, 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, OrganizationConfig, 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, ResourcesPackagesGetPackagePathParams, ResourcesPackagesGetPackageQueryParams, ResourcesSubjectsGetSubjectFromPackagePathParams, ResourcesSubjectsGetSubjectFromPackageQueryParams, ResourcesViewViewResourcePathParams, ResourcesViewViewResourceQueryParams, ResourcesViewViewResourceWithBinaryPathPathParams, ResourcesViewViewResourceWithBinaryPathQueryParams, ResultContainerModel, ResultContainerPageInfoModel, ResultsConfig, RolesGetAllQueryParams, RolesGetByIdPathParams, RolesGetByIdQueryParams, SafetiesGetAllQueryParams, SafetiesGetByIdPathParams, SafetiesGetByIdQueryParams, SearchFacetsGetAllQueryParams, 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 };
|