@c-rex/interfaces 0.1.19 → 0.1.20
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 +245 -272
- package/dist/index.d.ts +245 -272
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1,274 +1,4 @@
|
|
|
1
|
-
import { LogLevelType, LogCategoriesType, WildCardType, ResultViewStyles, ResultTypes, articlePageLayoutType, FilesExtensions, DocumentsType,
|
|
2
|
-
|
|
3
|
-
interface DefaultCrexDirectories extends idShortID {
|
|
4
|
-
labels: Labels[];
|
|
5
|
-
links: Link[];
|
|
6
|
-
class: ClassInterface;
|
|
7
|
-
childNodes?: ClassInterface[];
|
|
8
|
-
}
|
|
9
|
-
interface DefaultCrexRenditions extends DefaultCrexDirectories {
|
|
10
|
-
source: string;
|
|
11
|
-
format: string;
|
|
12
|
-
}
|
|
13
|
-
interface DefaultCrexObject extends idShortID {
|
|
14
|
-
directories: DefaultCrexDirectories[];
|
|
15
|
-
identities: DefaultCrexDirectories[];
|
|
16
|
-
class: ClassInterface;
|
|
17
|
-
labels: Labels[];
|
|
18
|
-
titles: Labels[];
|
|
19
|
-
versionOf: ClassInterface;
|
|
20
|
-
packages: idShortID[];
|
|
21
|
-
links: Link[];
|
|
22
|
-
renditions: DefaultCrexRenditions[];
|
|
23
|
-
iirdsVersion: {
|
|
24
|
-
value: string;
|
|
25
|
-
};
|
|
26
|
-
revision: string;
|
|
27
|
-
created: string;
|
|
28
|
-
score: number;
|
|
29
|
-
languages: string[];
|
|
30
|
-
}
|
|
31
|
-
interface ClassInterface extends idShortID {
|
|
32
|
-
labels: Labels[];
|
|
33
|
-
}
|
|
34
|
-
interface Tags {
|
|
35
|
-
[key: string]: {
|
|
36
|
-
labels: string[];
|
|
37
|
-
items: {
|
|
38
|
-
hits: number;
|
|
39
|
-
total: number;
|
|
40
|
-
labels: {
|
|
41
|
-
language?: string;
|
|
42
|
-
value: string;
|
|
43
|
-
}[];
|
|
44
|
-
shortId?: string;
|
|
45
|
-
}[];
|
|
46
|
-
};
|
|
47
|
-
}
|
|
48
|
-
interface DefaultPageInfo {
|
|
49
|
-
pageNumber: number;
|
|
50
|
-
pageSize: number;
|
|
51
|
-
pageCount: number;
|
|
52
|
-
totalItemCount: number;
|
|
53
|
-
firstItemOnPage: number;
|
|
54
|
-
lastItemOnPage: number;
|
|
55
|
-
hasPreviousPage: boolean;
|
|
56
|
-
hasNextPage: boolean;
|
|
57
|
-
isFirstPage: boolean;
|
|
58
|
-
isLastPage: boolean;
|
|
59
|
-
}
|
|
60
|
-
interface idShortID {
|
|
61
|
-
id: string;
|
|
62
|
-
shortId: string;
|
|
63
|
-
}
|
|
64
|
-
interface Labels {
|
|
65
|
-
language: string;
|
|
66
|
-
value: string;
|
|
67
|
-
}
|
|
68
|
-
interface Link {
|
|
69
|
-
rel: string;
|
|
70
|
-
href: string;
|
|
71
|
-
method: string;
|
|
72
|
-
}
|
|
73
|
-
interface DefaultRequest<ItemsType> {
|
|
74
|
-
items: ItemsType[];
|
|
75
|
-
tags?: Tags[];
|
|
76
|
-
links: Link[];
|
|
77
|
-
pageInfo: DefaultPageInfo;
|
|
78
|
-
}
|
|
79
|
-
interface DefaultResponse<ItemsType, TagsType> {
|
|
80
|
-
items: ItemsType[];
|
|
81
|
-
tags?: TagsType[];
|
|
82
|
-
pageInfo: DefaultPageInfo;
|
|
83
|
-
}
|
|
84
|
-
|
|
85
|
-
interface Filters {
|
|
86
|
-
key: string;
|
|
87
|
-
value: string;
|
|
88
|
-
operator?: string;
|
|
89
|
-
}
|
|
90
|
-
interface logInfo {
|
|
91
|
-
silent: boolean;
|
|
92
|
-
minimumLevel: LogLevelType;
|
|
93
|
-
categoriesLevel: LogCategoriesType[];
|
|
94
|
-
hostname: string;
|
|
95
|
-
port?: number;
|
|
96
|
-
app: string;
|
|
97
|
-
}
|
|
98
|
-
interface OIDCInterface {
|
|
99
|
-
enabled: boolean;
|
|
100
|
-
id: string;
|
|
101
|
-
secret: string;
|
|
102
|
-
issuer: string;
|
|
103
|
-
scope?: string;
|
|
104
|
-
userInfoEndPoint?: string;
|
|
105
|
-
}
|
|
106
|
-
interface SearchSettings {
|
|
107
|
-
fields: string[];
|
|
108
|
-
tags: string[];
|
|
109
|
-
restrict?: Filters[];
|
|
110
|
-
filter?: Filters[];
|
|
111
|
-
sparqlWhere?: string;
|
|
112
|
-
wildcard: WildCardType;
|
|
113
|
-
}
|
|
114
|
-
interface ResultsConfig {
|
|
115
|
-
resultViewStyle: ResultViewStyles;
|
|
116
|
-
disabledResults: ResultTypes[];
|
|
117
|
-
articlePageLayout: articlePageLayoutType;
|
|
118
|
-
filesEnabledToDownload?: FilesExtensions[];
|
|
119
|
-
filesEnabledToOpen?: FilesExtensions[];
|
|
120
|
-
resultsToHide?: ResultTypes[];
|
|
121
|
-
}
|
|
122
|
-
interface LanguageSwitcherConfig {
|
|
123
|
-
enabled: boolean;
|
|
124
|
-
default: string;
|
|
125
|
-
endpoint: string;
|
|
126
|
-
}
|
|
127
|
-
interface CookiesConfigs extends CustomerConfig {
|
|
128
|
-
publicNextApiUrl: string;
|
|
129
|
-
OIDC: {
|
|
130
|
-
clientEnabled: boolean;
|
|
131
|
-
userEnabled: boolean;
|
|
132
|
-
};
|
|
133
|
-
}
|
|
134
|
-
interface ConfigInterface extends CustomerConfig {
|
|
135
|
-
baseUrl: string;
|
|
136
|
-
OIDC: {
|
|
137
|
-
client: OIDCInterface;
|
|
138
|
-
user: OIDCInterface;
|
|
139
|
-
issuerMetadata?: any;
|
|
140
|
-
};
|
|
141
|
-
logs: {
|
|
142
|
-
console: Omit<logInfo, "hostname" | "app" | "categoriesLevel">;
|
|
143
|
-
graylog: logInfo;
|
|
144
|
-
matomo: logInfo;
|
|
145
|
-
};
|
|
146
|
-
}
|
|
147
|
-
interface CustomerConfig {
|
|
148
|
-
projectName: string;
|
|
149
|
-
titles: {
|
|
150
|
-
main: string;
|
|
151
|
-
sub: string;
|
|
152
|
-
};
|
|
153
|
-
languageSwitcher: LanguageSwitcherConfig;
|
|
154
|
-
}
|
|
155
|
-
|
|
156
|
-
interface DirectoryNodes extends DefaultCrexDirectories {
|
|
157
|
-
childNodes: DefaultCrexDirectories[];
|
|
158
|
-
parents: idShortID[];
|
|
159
|
-
ancestors: idShortID[][];
|
|
160
|
-
informationUnits: (idShortID & {
|
|
161
|
-
labels: Labels[];
|
|
162
|
-
})[];
|
|
163
|
-
}
|
|
164
|
-
interface DirectoryNodesResponse {
|
|
165
|
-
items: DirectoryNodes[];
|
|
166
|
-
pageInfo: DefaultPageInfo;
|
|
167
|
-
}
|
|
168
|
-
|
|
169
|
-
interface DocumentTypesItem extends idShortID {
|
|
170
|
-
labels: Labels[];
|
|
171
|
-
}
|
|
172
|
-
interface DocumentTypesResponse {
|
|
173
|
-
items: DocumentTypesItem[];
|
|
174
|
-
}
|
|
175
|
-
|
|
176
|
-
interface informationUnitsRenditions extends DefaultCrexDirectories {
|
|
177
|
-
source: string;
|
|
178
|
-
format: string;
|
|
179
|
-
}
|
|
180
|
-
interface informationUnitsItems extends DefaultCrexObject {
|
|
181
|
-
directoryNodes: DirectoryNodes[];
|
|
182
|
-
}
|
|
183
|
-
interface informationUnitsResponseItem {
|
|
184
|
-
language: string;
|
|
185
|
-
title: string;
|
|
186
|
-
type: string;
|
|
187
|
-
shortId: string;
|
|
188
|
-
localeType: string;
|
|
189
|
-
link: string;
|
|
190
|
-
disabled: boolean;
|
|
191
|
-
multipleVersions: string[];
|
|
192
|
-
revision: string;
|
|
193
|
-
files: DocumentsType;
|
|
194
|
-
}
|
|
195
|
-
interface informationUnitsResponse {
|
|
196
|
-
items: informationUnitsResponseItem[];
|
|
197
|
-
tags: any;
|
|
198
|
-
pageInfo: DefaultPageInfo;
|
|
199
|
-
}
|
|
200
|
-
interface AutocompleteSuggestion {
|
|
201
|
-
suggestions: {
|
|
202
|
-
type: string;
|
|
203
|
-
value: string;
|
|
204
|
-
}[];
|
|
205
|
-
}
|
|
206
|
-
interface SuggestionQueryParams {
|
|
207
|
-
maxHits?: number;
|
|
208
|
-
scopes?: string[];
|
|
209
|
-
lang?: string;
|
|
210
|
-
}
|
|
211
|
-
|
|
212
|
-
interface TreeOfContent {
|
|
213
|
-
label: string;
|
|
214
|
-
id: string;
|
|
215
|
-
linkId?: string;
|
|
216
|
-
active: boolean;
|
|
217
|
-
children: TreeOfContent[];
|
|
218
|
-
}
|
|
219
|
-
interface AvailableVersionsInterface {
|
|
220
|
-
shortId: string;
|
|
221
|
-
active: boolean;
|
|
222
|
-
lang: string;
|
|
223
|
-
country: string;
|
|
224
|
-
link: string;
|
|
225
|
-
}
|
|
226
|
-
|
|
227
|
-
interface TopicsResponseItem {
|
|
228
|
-
language: string;
|
|
229
|
-
title: string;
|
|
230
|
-
type: string;
|
|
231
|
-
shortId: string;
|
|
232
|
-
created: string;
|
|
233
|
-
localeType: string;
|
|
234
|
-
link: string;
|
|
235
|
-
disabled: boolean;
|
|
236
|
-
renditionUrl: string;
|
|
237
|
-
image: string | null;
|
|
238
|
-
description: string | null;
|
|
239
|
-
}
|
|
240
|
-
interface TopicsRequestItem extends DefaultCrexObject {
|
|
241
|
-
applicableForTypes?: {
|
|
242
|
-
labels: Labels[];
|
|
243
|
-
}[];
|
|
244
|
-
}
|
|
245
|
-
|
|
246
|
-
interface LanguageAndCountries {
|
|
247
|
-
country: string;
|
|
248
|
-
lang: string;
|
|
249
|
-
value: string;
|
|
250
|
-
}
|
|
251
|
-
|
|
252
|
-
interface CollectionContext {
|
|
253
|
-
id: string;
|
|
254
|
-
informationUnitsItem: informationUnitsItems;
|
|
255
|
-
rootNode: DirectoryNodes;
|
|
256
|
-
}
|
|
257
|
-
interface CollectionResult {
|
|
258
|
-
metaTags: {
|
|
259
|
-
name: string;
|
|
260
|
-
content: string;
|
|
261
|
-
}[];
|
|
262
|
-
articleHtml: string;
|
|
263
|
-
document: informationUnitsItems;
|
|
264
|
-
article: informationUnitsItems;
|
|
265
|
-
attachments?: DocumentsType;
|
|
266
|
-
articleInfo?: articleInfoItemType[];
|
|
267
|
-
documentInfo?: articleInfoItemType[];
|
|
268
|
-
rootNode: DirectoryNodes;
|
|
269
|
-
articleAvailableVersions: informationUnitsResponseItem[];
|
|
270
|
-
documentAvailableVersions: informationUnitsResponseItem[];
|
|
271
|
-
}
|
|
1
|
+
import { LogLevelType, LogCategoriesType, WildCardType, ResultViewStyles, ResultTypes, articlePageLayoutType, FilesExtensions, DocumentsType, 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';
|
|
272
2
|
|
|
273
3
|
/**
|
|
274
4
|
* Auto-generated from OpenAPI spec
|
|
@@ -1595,6 +1325,249 @@ interface VCardOrganizationModel {
|
|
|
1595
1325
|
/** Wildcards for Query [Flags] */
|
|
1596
1326
|
type Wildcards = 'None' | 'Start' | 'End' | 'Both';
|
|
1597
1327
|
|
|
1328
|
+
interface DefaultCrexDirectories extends idShortID {
|
|
1329
|
+
labels: Labels[];
|
|
1330
|
+
links: Link[];
|
|
1331
|
+
class: ClassInterface;
|
|
1332
|
+
childNodes?: ClassInterface[];
|
|
1333
|
+
}
|
|
1334
|
+
interface DefaultCrexRenditions extends DefaultCrexDirectories {
|
|
1335
|
+
source: string;
|
|
1336
|
+
format: string;
|
|
1337
|
+
}
|
|
1338
|
+
interface DefaultCrexObject extends idShortID {
|
|
1339
|
+
directories: DefaultCrexDirectories[];
|
|
1340
|
+
identities: DefaultCrexDirectories[];
|
|
1341
|
+
class: ClassInterface;
|
|
1342
|
+
labels: Labels[];
|
|
1343
|
+
titles: Labels[];
|
|
1344
|
+
versionOf: ClassInterface;
|
|
1345
|
+
packages: idShortID[];
|
|
1346
|
+
links: Link[];
|
|
1347
|
+
renditions: DefaultCrexRenditions[];
|
|
1348
|
+
iirdsVersion: {
|
|
1349
|
+
value: string;
|
|
1350
|
+
};
|
|
1351
|
+
revision: string;
|
|
1352
|
+
created: string;
|
|
1353
|
+
score: number;
|
|
1354
|
+
languages: string[];
|
|
1355
|
+
}
|
|
1356
|
+
interface ClassInterface extends idShortID {
|
|
1357
|
+
labels: Labels[];
|
|
1358
|
+
}
|
|
1359
|
+
interface Tags {
|
|
1360
|
+
[key: string]: {
|
|
1361
|
+
labels: string[];
|
|
1362
|
+
items: {
|
|
1363
|
+
hits: number;
|
|
1364
|
+
total: number;
|
|
1365
|
+
labels: {
|
|
1366
|
+
language?: string;
|
|
1367
|
+
value: string;
|
|
1368
|
+
}[];
|
|
1369
|
+
shortId?: string;
|
|
1370
|
+
}[];
|
|
1371
|
+
};
|
|
1372
|
+
}
|
|
1373
|
+
interface DefaultPageInfo {
|
|
1374
|
+
pageNumber: number;
|
|
1375
|
+
pageSize: number;
|
|
1376
|
+
pageCount: number;
|
|
1377
|
+
totalItemCount: number;
|
|
1378
|
+
firstItemOnPage: number;
|
|
1379
|
+
lastItemOnPage: number;
|
|
1380
|
+
hasPreviousPage: boolean;
|
|
1381
|
+
hasNextPage: boolean;
|
|
1382
|
+
isFirstPage: boolean;
|
|
1383
|
+
isLastPage: boolean;
|
|
1384
|
+
}
|
|
1385
|
+
interface idShortID {
|
|
1386
|
+
id: string;
|
|
1387
|
+
shortId: string;
|
|
1388
|
+
}
|
|
1389
|
+
interface Labels {
|
|
1390
|
+
language: string;
|
|
1391
|
+
value: string;
|
|
1392
|
+
}
|
|
1393
|
+
interface Link {
|
|
1394
|
+
rel: string;
|
|
1395
|
+
href: string;
|
|
1396
|
+
method: string;
|
|
1397
|
+
}
|
|
1398
|
+
interface DefaultRequest<ItemsType> {
|
|
1399
|
+
items: ItemsType[];
|
|
1400
|
+
tags?: Tags[];
|
|
1401
|
+
links: Link[];
|
|
1402
|
+
pageInfo: DefaultPageInfo;
|
|
1403
|
+
}
|
|
1404
|
+
interface DefaultResponse<ItemsType, TagsType> {
|
|
1405
|
+
items: ItemsType[];
|
|
1406
|
+
tags?: TagsType[];
|
|
1407
|
+
pageInfo: DefaultPageInfo;
|
|
1408
|
+
}
|
|
1409
|
+
type CommonItemsModel = (DocumentModel | ExternalProductGraphicModel | FragmentModel | InformationUnitModel | PackageModel | TopicModel);
|
|
1410
|
+
|
|
1411
|
+
interface Filters {
|
|
1412
|
+
key: string;
|
|
1413
|
+
value: string;
|
|
1414
|
+
operator?: string;
|
|
1415
|
+
}
|
|
1416
|
+
interface logInfo {
|
|
1417
|
+
silent: boolean;
|
|
1418
|
+
minimumLevel: LogLevelType;
|
|
1419
|
+
categoriesLevel: LogCategoriesType[];
|
|
1420
|
+
hostname: string;
|
|
1421
|
+
port?: number;
|
|
1422
|
+
app: string;
|
|
1423
|
+
}
|
|
1424
|
+
interface OIDCInterface {
|
|
1425
|
+
enabled: boolean;
|
|
1426
|
+
id: string;
|
|
1427
|
+
secret: string;
|
|
1428
|
+
issuer: string;
|
|
1429
|
+
scope?: string;
|
|
1430
|
+
userInfoEndPoint?: string;
|
|
1431
|
+
}
|
|
1432
|
+
interface SearchSettings {
|
|
1433
|
+
fields: string[];
|
|
1434
|
+
tags: string[];
|
|
1435
|
+
restrict?: Filters[];
|
|
1436
|
+
filter?: Filters[];
|
|
1437
|
+
sparqlWhere?: string;
|
|
1438
|
+
wildcard: WildCardType;
|
|
1439
|
+
}
|
|
1440
|
+
interface ResultsConfig {
|
|
1441
|
+
resultViewStyle: ResultViewStyles;
|
|
1442
|
+
disabledResults: ResultTypes[];
|
|
1443
|
+
articlePageLayout: articlePageLayoutType;
|
|
1444
|
+
filesEnabledToDownload?: FilesExtensions[];
|
|
1445
|
+
filesEnabledToOpen?: FilesExtensions[];
|
|
1446
|
+
resultsToHide?: ResultTypes[];
|
|
1447
|
+
}
|
|
1448
|
+
interface LanguageSwitcherConfig {
|
|
1449
|
+
enabled: boolean;
|
|
1450
|
+
default: string;
|
|
1451
|
+
endpoint: string;
|
|
1452
|
+
}
|
|
1453
|
+
interface CookiesConfigs extends CustomerConfig {
|
|
1454
|
+
publicNextApiUrl: string;
|
|
1455
|
+
OIDC: {
|
|
1456
|
+
clientEnabled: boolean;
|
|
1457
|
+
userEnabled: boolean;
|
|
1458
|
+
};
|
|
1459
|
+
}
|
|
1460
|
+
interface ConfigInterface extends CustomerConfig {
|
|
1461
|
+
baseUrl: string;
|
|
1462
|
+
OIDC: {
|
|
1463
|
+
client: OIDCInterface;
|
|
1464
|
+
user: OIDCInterface;
|
|
1465
|
+
issuerMetadata?: any;
|
|
1466
|
+
};
|
|
1467
|
+
logs: {
|
|
1468
|
+
console: Omit<logInfo, "hostname" | "app" | "categoriesLevel">;
|
|
1469
|
+
graylog: logInfo;
|
|
1470
|
+
matomo: logInfo;
|
|
1471
|
+
};
|
|
1472
|
+
}
|
|
1473
|
+
interface CustomerConfig {
|
|
1474
|
+
projectName: string;
|
|
1475
|
+
titles: {
|
|
1476
|
+
main: string;
|
|
1477
|
+
sub: string;
|
|
1478
|
+
};
|
|
1479
|
+
languageSwitcher: LanguageSwitcherConfig;
|
|
1480
|
+
}
|
|
1481
|
+
|
|
1482
|
+
interface DirectoryNodes extends DefaultCrexDirectories {
|
|
1483
|
+
childNodes: DefaultCrexDirectories[];
|
|
1484
|
+
parents: idShortID[];
|
|
1485
|
+
ancestors: idShortID[][];
|
|
1486
|
+
informationUnits: (idShortID & {
|
|
1487
|
+
labels: Labels[];
|
|
1488
|
+
})[];
|
|
1489
|
+
}
|
|
1490
|
+
interface DirectoryNodesResponse {
|
|
1491
|
+
items: DirectoryNodes[];
|
|
1492
|
+
pageInfo: DefaultPageInfo;
|
|
1493
|
+
}
|
|
1494
|
+
|
|
1495
|
+
interface informationUnitsRenditions extends DefaultCrexDirectories {
|
|
1496
|
+
source: string;
|
|
1497
|
+
format: string;
|
|
1498
|
+
}
|
|
1499
|
+
interface informationUnitsItems extends DefaultCrexObject {
|
|
1500
|
+
directoryNodes: DirectoryNodes[];
|
|
1501
|
+
}
|
|
1502
|
+
interface informationUnitsResponseItem {
|
|
1503
|
+
language: string;
|
|
1504
|
+
title: string;
|
|
1505
|
+
type: string;
|
|
1506
|
+
shortId: string;
|
|
1507
|
+
localeType: string;
|
|
1508
|
+
link: string;
|
|
1509
|
+
disabled: boolean;
|
|
1510
|
+
multipleVersions: string[];
|
|
1511
|
+
revision: string;
|
|
1512
|
+
files: DocumentsType;
|
|
1513
|
+
}
|
|
1514
|
+
interface informationUnitsResponse {
|
|
1515
|
+
items: informationUnitsResponseItem[];
|
|
1516
|
+
tags: any;
|
|
1517
|
+
pageInfo: DefaultPageInfo;
|
|
1518
|
+
}
|
|
1519
|
+
interface AutocompleteSuggestion {
|
|
1520
|
+
suggestions: {
|
|
1521
|
+
type: string;
|
|
1522
|
+
value: string;
|
|
1523
|
+
}[];
|
|
1524
|
+
}
|
|
1525
|
+
interface SuggestionQueryParams {
|
|
1526
|
+
maxHits?: number;
|
|
1527
|
+
scopes?: string[];
|
|
1528
|
+
lang?: string;
|
|
1529
|
+
}
|
|
1530
|
+
|
|
1531
|
+
interface TreeOfContent {
|
|
1532
|
+
label: string;
|
|
1533
|
+
id: string;
|
|
1534
|
+
linkId?: string;
|
|
1535
|
+
active: boolean;
|
|
1536
|
+
children: TreeOfContent[];
|
|
1537
|
+
}
|
|
1538
|
+
interface AvailableVersionsInterface {
|
|
1539
|
+
shortId: string;
|
|
1540
|
+
active: boolean;
|
|
1541
|
+
lang: string;
|
|
1542
|
+
country: string;
|
|
1543
|
+
link: string;
|
|
1544
|
+
}
|
|
1545
|
+
|
|
1546
|
+
interface TopicsResponseItem {
|
|
1547
|
+
language: string;
|
|
1548
|
+
title: string;
|
|
1549
|
+
type: string;
|
|
1550
|
+
shortId: string;
|
|
1551
|
+
created: string;
|
|
1552
|
+
localeType: string;
|
|
1553
|
+
link: string;
|
|
1554
|
+
disabled: boolean;
|
|
1555
|
+
renditionUrl: string;
|
|
1556
|
+
image: string | null;
|
|
1557
|
+
description: string | null;
|
|
1558
|
+
}
|
|
1559
|
+
interface TopicsRequestItem extends DefaultCrexObject {
|
|
1560
|
+
applicableForTypes?: {
|
|
1561
|
+
labels: Labels[];
|
|
1562
|
+
}[];
|
|
1563
|
+
}
|
|
1564
|
+
|
|
1565
|
+
interface LanguageAndCountries {
|
|
1566
|
+
country: string;
|
|
1567
|
+
lang: string;
|
|
1568
|
+
value: string;
|
|
1569
|
+
}
|
|
1570
|
+
|
|
1598
1571
|
/**
|
|
1599
1572
|
* Auto-generated from OpenAPI spec
|
|
1600
1573
|
* Source: https://staging.c-rex.net/ids/api/swagger/v1/swagger.json
|
|
@@ -3465,4 +3438,4 @@ interface FilterItem {
|
|
|
3465
3438
|
shortId: string;
|
|
3466
3439
|
}
|
|
3467
3440
|
|
|
3468
|
-
export type { AdministrativeMetadataGetAllQueryParams, AdministrativeMetadataGetByIdPathParams, AdministrativeMetadataGetByIdQueryParams, AdministrativeMetadataModel, AfterUsesGetAllQueryParams, AfterUsesGetByIdPathParams, AfterUsesGetByIdQueryParams, AuditStateModel, AuthStateModel, AutocompleteSuggestion, AvailableVersionsInterface, ClassInterface,
|
|
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 };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,274 +1,4 @@
|
|
|
1
|
-
import { LogLevelType, LogCategoriesType, WildCardType, ResultViewStyles, ResultTypes, articlePageLayoutType, FilesExtensions, DocumentsType,
|
|
2
|
-
|
|
3
|
-
interface DefaultCrexDirectories extends idShortID {
|
|
4
|
-
labels: Labels[];
|
|
5
|
-
links: Link[];
|
|
6
|
-
class: ClassInterface;
|
|
7
|
-
childNodes?: ClassInterface[];
|
|
8
|
-
}
|
|
9
|
-
interface DefaultCrexRenditions extends DefaultCrexDirectories {
|
|
10
|
-
source: string;
|
|
11
|
-
format: string;
|
|
12
|
-
}
|
|
13
|
-
interface DefaultCrexObject extends idShortID {
|
|
14
|
-
directories: DefaultCrexDirectories[];
|
|
15
|
-
identities: DefaultCrexDirectories[];
|
|
16
|
-
class: ClassInterface;
|
|
17
|
-
labels: Labels[];
|
|
18
|
-
titles: Labels[];
|
|
19
|
-
versionOf: ClassInterface;
|
|
20
|
-
packages: idShortID[];
|
|
21
|
-
links: Link[];
|
|
22
|
-
renditions: DefaultCrexRenditions[];
|
|
23
|
-
iirdsVersion: {
|
|
24
|
-
value: string;
|
|
25
|
-
};
|
|
26
|
-
revision: string;
|
|
27
|
-
created: string;
|
|
28
|
-
score: number;
|
|
29
|
-
languages: string[];
|
|
30
|
-
}
|
|
31
|
-
interface ClassInterface extends idShortID {
|
|
32
|
-
labels: Labels[];
|
|
33
|
-
}
|
|
34
|
-
interface Tags {
|
|
35
|
-
[key: string]: {
|
|
36
|
-
labels: string[];
|
|
37
|
-
items: {
|
|
38
|
-
hits: number;
|
|
39
|
-
total: number;
|
|
40
|
-
labels: {
|
|
41
|
-
language?: string;
|
|
42
|
-
value: string;
|
|
43
|
-
}[];
|
|
44
|
-
shortId?: string;
|
|
45
|
-
}[];
|
|
46
|
-
};
|
|
47
|
-
}
|
|
48
|
-
interface DefaultPageInfo {
|
|
49
|
-
pageNumber: number;
|
|
50
|
-
pageSize: number;
|
|
51
|
-
pageCount: number;
|
|
52
|
-
totalItemCount: number;
|
|
53
|
-
firstItemOnPage: number;
|
|
54
|
-
lastItemOnPage: number;
|
|
55
|
-
hasPreviousPage: boolean;
|
|
56
|
-
hasNextPage: boolean;
|
|
57
|
-
isFirstPage: boolean;
|
|
58
|
-
isLastPage: boolean;
|
|
59
|
-
}
|
|
60
|
-
interface idShortID {
|
|
61
|
-
id: string;
|
|
62
|
-
shortId: string;
|
|
63
|
-
}
|
|
64
|
-
interface Labels {
|
|
65
|
-
language: string;
|
|
66
|
-
value: string;
|
|
67
|
-
}
|
|
68
|
-
interface Link {
|
|
69
|
-
rel: string;
|
|
70
|
-
href: string;
|
|
71
|
-
method: string;
|
|
72
|
-
}
|
|
73
|
-
interface DefaultRequest<ItemsType> {
|
|
74
|
-
items: ItemsType[];
|
|
75
|
-
tags?: Tags[];
|
|
76
|
-
links: Link[];
|
|
77
|
-
pageInfo: DefaultPageInfo;
|
|
78
|
-
}
|
|
79
|
-
interface DefaultResponse<ItemsType, TagsType> {
|
|
80
|
-
items: ItemsType[];
|
|
81
|
-
tags?: TagsType[];
|
|
82
|
-
pageInfo: DefaultPageInfo;
|
|
83
|
-
}
|
|
84
|
-
|
|
85
|
-
interface Filters {
|
|
86
|
-
key: string;
|
|
87
|
-
value: string;
|
|
88
|
-
operator?: string;
|
|
89
|
-
}
|
|
90
|
-
interface logInfo {
|
|
91
|
-
silent: boolean;
|
|
92
|
-
minimumLevel: LogLevelType;
|
|
93
|
-
categoriesLevel: LogCategoriesType[];
|
|
94
|
-
hostname: string;
|
|
95
|
-
port?: number;
|
|
96
|
-
app: string;
|
|
97
|
-
}
|
|
98
|
-
interface OIDCInterface {
|
|
99
|
-
enabled: boolean;
|
|
100
|
-
id: string;
|
|
101
|
-
secret: string;
|
|
102
|
-
issuer: string;
|
|
103
|
-
scope?: string;
|
|
104
|
-
userInfoEndPoint?: string;
|
|
105
|
-
}
|
|
106
|
-
interface SearchSettings {
|
|
107
|
-
fields: string[];
|
|
108
|
-
tags: string[];
|
|
109
|
-
restrict?: Filters[];
|
|
110
|
-
filter?: Filters[];
|
|
111
|
-
sparqlWhere?: string;
|
|
112
|
-
wildcard: WildCardType;
|
|
113
|
-
}
|
|
114
|
-
interface ResultsConfig {
|
|
115
|
-
resultViewStyle: ResultViewStyles;
|
|
116
|
-
disabledResults: ResultTypes[];
|
|
117
|
-
articlePageLayout: articlePageLayoutType;
|
|
118
|
-
filesEnabledToDownload?: FilesExtensions[];
|
|
119
|
-
filesEnabledToOpen?: FilesExtensions[];
|
|
120
|
-
resultsToHide?: ResultTypes[];
|
|
121
|
-
}
|
|
122
|
-
interface LanguageSwitcherConfig {
|
|
123
|
-
enabled: boolean;
|
|
124
|
-
default: string;
|
|
125
|
-
endpoint: string;
|
|
126
|
-
}
|
|
127
|
-
interface CookiesConfigs extends CustomerConfig {
|
|
128
|
-
publicNextApiUrl: string;
|
|
129
|
-
OIDC: {
|
|
130
|
-
clientEnabled: boolean;
|
|
131
|
-
userEnabled: boolean;
|
|
132
|
-
};
|
|
133
|
-
}
|
|
134
|
-
interface ConfigInterface extends CustomerConfig {
|
|
135
|
-
baseUrl: string;
|
|
136
|
-
OIDC: {
|
|
137
|
-
client: OIDCInterface;
|
|
138
|
-
user: OIDCInterface;
|
|
139
|
-
issuerMetadata?: any;
|
|
140
|
-
};
|
|
141
|
-
logs: {
|
|
142
|
-
console: Omit<logInfo, "hostname" | "app" | "categoriesLevel">;
|
|
143
|
-
graylog: logInfo;
|
|
144
|
-
matomo: logInfo;
|
|
145
|
-
};
|
|
146
|
-
}
|
|
147
|
-
interface CustomerConfig {
|
|
148
|
-
projectName: string;
|
|
149
|
-
titles: {
|
|
150
|
-
main: string;
|
|
151
|
-
sub: string;
|
|
152
|
-
};
|
|
153
|
-
languageSwitcher: LanguageSwitcherConfig;
|
|
154
|
-
}
|
|
155
|
-
|
|
156
|
-
interface DirectoryNodes extends DefaultCrexDirectories {
|
|
157
|
-
childNodes: DefaultCrexDirectories[];
|
|
158
|
-
parents: idShortID[];
|
|
159
|
-
ancestors: idShortID[][];
|
|
160
|
-
informationUnits: (idShortID & {
|
|
161
|
-
labels: Labels[];
|
|
162
|
-
})[];
|
|
163
|
-
}
|
|
164
|
-
interface DirectoryNodesResponse {
|
|
165
|
-
items: DirectoryNodes[];
|
|
166
|
-
pageInfo: DefaultPageInfo;
|
|
167
|
-
}
|
|
168
|
-
|
|
169
|
-
interface DocumentTypesItem extends idShortID {
|
|
170
|
-
labels: Labels[];
|
|
171
|
-
}
|
|
172
|
-
interface DocumentTypesResponse {
|
|
173
|
-
items: DocumentTypesItem[];
|
|
174
|
-
}
|
|
175
|
-
|
|
176
|
-
interface informationUnitsRenditions extends DefaultCrexDirectories {
|
|
177
|
-
source: string;
|
|
178
|
-
format: string;
|
|
179
|
-
}
|
|
180
|
-
interface informationUnitsItems extends DefaultCrexObject {
|
|
181
|
-
directoryNodes: DirectoryNodes[];
|
|
182
|
-
}
|
|
183
|
-
interface informationUnitsResponseItem {
|
|
184
|
-
language: string;
|
|
185
|
-
title: string;
|
|
186
|
-
type: string;
|
|
187
|
-
shortId: string;
|
|
188
|
-
localeType: string;
|
|
189
|
-
link: string;
|
|
190
|
-
disabled: boolean;
|
|
191
|
-
multipleVersions: string[];
|
|
192
|
-
revision: string;
|
|
193
|
-
files: DocumentsType;
|
|
194
|
-
}
|
|
195
|
-
interface informationUnitsResponse {
|
|
196
|
-
items: informationUnitsResponseItem[];
|
|
197
|
-
tags: any;
|
|
198
|
-
pageInfo: DefaultPageInfo;
|
|
199
|
-
}
|
|
200
|
-
interface AutocompleteSuggestion {
|
|
201
|
-
suggestions: {
|
|
202
|
-
type: string;
|
|
203
|
-
value: string;
|
|
204
|
-
}[];
|
|
205
|
-
}
|
|
206
|
-
interface SuggestionQueryParams {
|
|
207
|
-
maxHits?: number;
|
|
208
|
-
scopes?: string[];
|
|
209
|
-
lang?: string;
|
|
210
|
-
}
|
|
211
|
-
|
|
212
|
-
interface TreeOfContent {
|
|
213
|
-
label: string;
|
|
214
|
-
id: string;
|
|
215
|
-
linkId?: string;
|
|
216
|
-
active: boolean;
|
|
217
|
-
children: TreeOfContent[];
|
|
218
|
-
}
|
|
219
|
-
interface AvailableVersionsInterface {
|
|
220
|
-
shortId: string;
|
|
221
|
-
active: boolean;
|
|
222
|
-
lang: string;
|
|
223
|
-
country: string;
|
|
224
|
-
link: string;
|
|
225
|
-
}
|
|
226
|
-
|
|
227
|
-
interface TopicsResponseItem {
|
|
228
|
-
language: string;
|
|
229
|
-
title: string;
|
|
230
|
-
type: string;
|
|
231
|
-
shortId: string;
|
|
232
|
-
created: string;
|
|
233
|
-
localeType: string;
|
|
234
|
-
link: string;
|
|
235
|
-
disabled: boolean;
|
|
236
|
-
renditionUrl: string;
|
|
237
|
-
image: string | null;
|
|
238
|
-
description: string | null;
|
|
239
|
-
}
|
|
240
|
-
interface TopicsRequestItem extends DefaultCrexObject {
|
|
241
|
-
applicableForTypes?: {
|
|
242
|
-
labels: Labels[];
|
|
243
|
-
}[];
|
|
244
|
-
}
|
|
245
|
-
|
|
246
|
-
interface LanguageAndCountries {
|
|
247
|
-
country: string;
|
|
248
|
-
lang: string;
|
|
249
|
-
value: string;
|
|
250
|
-
}
|
|
251
|
-
|
|
252
|
-
interface CollectionContext {
|
|
253
|
-
id: string;
|
|
254
|
-
informationUnitsItem: informationUnitsItems;
|
|
255
|
-
rootNode: DirectoryNodes;
|
|
256
|
-
}
|
|
257
|
-
interface CollectionResult {
|
|
258
|
-
metaTags: {
|
|
259
|
-
name: string;
|
|
260
|
-
content: string;
|
|
261
|
-
}[];
|
|
262
|
-
articleHtml: string;
|
|
263
|
-
document: informationUnitsItems;
|
|
264
|
-
article: informationUnitsItems;
|
|
265
|
-
attachments?: DocumentsType;
|
|
266
|
-
articleInfo?: articleInfoItemType[];
|
|
267
|
-
documentInfo?: articleInfoItemType[];
|
|
268
|
-
rootNode: DirectoryNodes;
|
|
269
|
-
articleAvailableVersions: informationUnitsResponseItem[];
|
|
270
|
-
documentAvailableVersions: informationUnitsResponseItem[];
|
|
271
|
-
}
|
|
1
|
+
import { LogLevelType, LogCategoriesType, WildCardType, ResultViewStyles, ResultTypes, articlePageLayoutType, FilesExtensions, DocumentsType, 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';
|
|
272
2
|
|
|
273
3
|
/**
|
|
274
4
|
* Auto-generated from OpenAPI spec
|
|
@@ -1595,6 +1325,249 @@ interface VCardOrganizationModel {
|
|
|
1595
1325
|
/** Wildcards for Query [Flags] */
|
|
1596
1326
|
type Wildcards = 'None' | 'Start' | 'End' | 'Both';
|
|
1597
1327
|
|
|
1328
|
+
interface DefaultCrexDirectories extends idShortID {
|
|
1329
|
+
labels: Labels[];
|
|
1330
|
+
links: Link[];
|
|
1331
|
+
class: ClassInterface;
|
|
1332
|
+
childNodes?: ClassInterface[];
|
|
1333
|
+
}
|
|
1334
|
+
interface DefaultCrexRenditions extends DefaultCrexDirectories {
|
|
1335
|
+
source: string;
|
|
1336
|
+
format: string;
|
|
1337
|
+
}
|
|
1338
|
+
interface DefaultCrexObject extends idShortID {
|
|
1339
|
+
directories: DefaultCrexDirectories[];
|
|
1340
|
+
identities: DefaultCrexDirectories[];
|
|
1341
|
+
class: ClassInterface;
|
|
1342
|
+
labels: Labels[];
|
|
1343
|
+
titles: Labels[];
|
|
1344
|
+
versionOf: ClassInterface;
|
|
1345
|
+
packages: idShortID[];
|
|
1346
|
+
links: Link[];
|
|
1347
|
+
renditions: DefaultCrexRenditions[];
|
|
1348
|
+
iirdsVersion: {
|
|
1349
|
+
value: string;
|
|
1350
|
+
};
|
|
1351
|
+
revision: string;
|
|
1352
|
+
created: string;
|
|
1353
|
+
score: number;
|
|
1354
|
+
languages: string[];
|
|
1355
|
+
}
|
|
1356
|
+
interface ClassInterface extends idShortID {
|
|
1357
|
+
labels: Labels[];
|
|
1358
|
+
}
|
|
1359
|
+
interface Tags {
|
|
1360
|
+
[key: string]: {
|
|
1361
|
+
labels: string[];
|
|
1362
|
+
items: {
|
|
1363
|
+
hits: number;
|
|
1364
|
+
total: number;
|
|
1365
|
+
labels: {
|
|
1366
|
+
language?: string;
|
|
1367
|
+
value: string;
|
|
1368
|
+
}[];
|
|
1369
|
+
shortId?: string;
|
|
1370
|
+
}[];
|
|
1371
|
+
};
|
|
1372
|
+
}
|
|
1373
|
+
interface DefaultPageInfo {
|
|
1374
|
+
pageNumber: number;
|
|
1375
|
+
pageSize: number;
|
|
1376
|
+
pageCount: number;
|
|
1377
|
+
totalItemCount: number;
|
|
1378
|
+
firstItemOnPage: number;
|
|
1379
|
+
lastItemOnPage: number;
|
|
1380
|
+
hasPreviousPage: boolean;
|
|
1381
|
+
hasNextPage: boolean;
|
|
1382
|
+
isFirstPage: boolean;
|
|
1383
|
+
isLastPage: boolean;
|
|
1384
|
+
}
|
|
1385
|
+
interface idShortID {
|
|
1386
|
+
id: string;
|
|
1387
|
+
shortId: string;
|
|
1388
|
+
}
|
|
1389
|
+
interface Labels {
|
|
1390
|
+
language: string;
|
|
1391
|
+
value: string;
|
|
1392
|
+
}
|
|
1393
|
+
interface Link {
|
|
1394
|
+
rel: string;
|
|
1395
|
+
href: string;
|
|
1396
|
+
method: string;
|
|
1397
|
+
}
|
|
1398
|
+
interface DefaultRequest<ItemsType> {
|
|
1399
|
+
items: ItemsType[];
|
|
1400
|
+
tags?: Tags[];
|
|
1401
|
+
links: Link[];
|
|
1402
|
+
pageInfo: DefaultPageInfo;
|
|
1403
|
+
}
|
|
1404
|
+
interface DefaultResponse<ItemsType, TagsType> {
|
|
1405
|
+
items: ItemsType[];
|
|
1406
|
+
tags?: TagsType[];
|
|
1407
|
+
pageInfo: DefaultPageInfo;
|
|
1408
|
+
}
|
|
1409
|
+
type CommonItemsModel = (DocumentModel | ExternalProductGraphicModel | FragmentModel | InformationUnitModel | PackageModel | TopicModel);
|
|
1410
|
+
|
|
1411
|
+
interface Filters {
|
|
1412
|
+
key: string;
|
|
1413
|
+
value: string;
|
|
1414
|
+
operator?: string;
|
|
1415
|
+
}
|
|
1416
|
+
interface logInfo {
|
|
1417
|
+
silent: boolean;
|
|
1418
|
+
minimumLevel: LogLevelType;
|
|
1419
|
+
categoriesLevel: LogCategoriesType[];
|
|
1420
|
+
hostname: string;
|
|
1421
|
+
port?: number;
|
|
1422
|
+
app: string;
|
|
1423
|
+
}
|
|
1424
|
+
interface OIDCInterface {
|
|
1425
|
+
enabled: boolean;
|
|
1426
|
+
id: string;
|
|
1427
|
+
secret: string;
|
|
1428
|
+
issuer: string;
|
|
1429
|
+
scope?: string;
|
|
1430
|
+
userInfoEndPoint?: string;
|
|
1431
|
+
}
|
|
1432
|
+
interface SearchSettings {
|
|
1433
|
+
fields: string[];
|
|
1434
|
+
tags: string[];
|
|
1435
|
+
restrict?: Filters[];
|
|
1436
|
+
filter?: Filters[];
|
|
1437
|
+
sparqlWhere?: string;
|
|
1438
|
+
wildcard: WildCardType;
|
|
1439
|
+
}
|
|
1440
|
+
interface ResultsConfig {
|
|
1441
|
+
resultViewStyle: ResultViewStyles;
|
|
1442
|
+
disabledResults: ResultTypes[];
|
|
1443
|
+
articlePageLayout: articlePageLayoutType;
|
|
1444
|
+
filesEnabledToDownload?: FilesExtensions[];
|
|
1445
|
+
filesEnabledToOpen?: FilesExtensions[];
|
|
1446
|
+
resultsToHide?: ResultTypes[];
|
|
1447
|
+
}
|
|
1448
|
+
interface LanguageSwitcherConfig {
|
|
1449
|
+
enabled: boolean;
|
|
1450
|
+
default: string;
|
|
1451
|
+
endpoint: string;
|
|
1452
|
+
}
|
|
1453
|
+
interface CookiesConfigs extends CustomerConfig {
|
|
1454
|
+
publicNextApiUrl: string;
|
|
1455
|
+
OIDC: {
|
|
1456
|
+
clientEnabled: boolean;
|
|
1457
|
+
userEnabled: boolean;
|
|
1458
|
+
};
|
|
1459
|
+
}
|
|
1460
|
+
interface ConfigInterface extends CustomerConfig {
|
|
1461
|
+
baseUrl: string;
|
|
1462
|
+
OIDC: {
|
|
1463
|
+
client: OIDCInterface;
|
|
1464
|
+
user: OIDCInterface;
|
|
1465
|
+
issuerMetadata?: any;
|
|
1466
|
+
};
|
|
1467
|
+
logs: {
|
|
1468
|
+
console: Omit<logInfo, "hostname" | "app" | "categoriesLevel">;
|
|
1469
|
+
graylog: logInfo;
|
|
1470
|
+
matomo: logInfo;
|
|
1471
|
+
};
|
|
1472
|
+
}
|
|
1473
|
+
interface CustomerConfig {
|
|
1474
|
+
projectName: string;
|
|
1475
|
+
titles: {
|
|
1476
|
+
main: string;
|
|
1477
|
+
sub: string;
|
|
1478
|
+
};
|
|
1479
|
+
languageSwitcher: LanguageSwitcherConfig;
|
|
1480
|
+
}
|
|
1481
|
+
|
|
1482
|
+
interface DirectoryNodes extends DefaultCrexDirectories {
|
|
1483
|
+
childNodes: DefaultCrexDirectories[];
|
|
1484
|
+
parents: idShortID[];
|
|
1485
|
+
ancestors: idShortID[][];
|
|
1486
|
+
informationUnits: (idShortID & {
|
|
1487
|
+
labels: Labels[];
|
|
1488
|
+
})[];
|
|
1489
|
+
}
|
|
1490
|
+
interface DirectoryNodesResponse {
|
|
1491
|
+
items: DirectoryNodes[];
|
|
1492
|
+
pageInfo: DefaultPageInfo;
|
|
1493
|
+
}
|
|
1494
|
+
|
|
1495
|
+
interface informationUnitsRenditions extends DefaultCrexDirectories {
|
|
1496
|
+
source: string;
|
|
1497
|
+
format: string;
|
|
1498
|
+
}
|
|
1499
|
+
interface informationUnitsItems extends DefaultCrexObject {
|
|
1500
|
+
directoryNodes: DirectoryNodes[];
|
|
1501
|
+
}
|
|
1502
|
+
interface informationUnitsResponseItem {
|
|
1503
|
+
language: string;
|
|
1504
|
+
title: string;
|
|
1505
|
+
type: string;
|
|
1506
|
+
shortId: string;
|
|
1507
|
+
localeType: string;
|
|
1508
|
+
link: string;
|
|
1509
|
+
disabled: boolean;
|
|
1510
|
+
multipleVersions: string[];
|
|
1511
|
+
revision: string;
|
|
1512
|
+
files: DocumentsType;
|
|
1513
|
+
}
|
|
1514
|
+
interface informationUnitsResponse {
|
|
1515
|
+
items: informationUnitsResponseItem[];
|
|
1516
|
+
tags: any;
|
|
1517
|
+
pageInfo: DefaultPageInfo;
|
|
1518
|
+
}
|
|
1519
|
+
interface AutocompleteSuggestion {
|
|
1520
|
+
suggestions: {
|
|
1521
|
+
type: string;
|
|
1522
|
+
value: string;
|
|
1523
|
+
}[];
|
|
1524
|
+
}
|
|
1525
|
+
interface SuggestionQueryParams {
|
|
1526
|
+
maxHits?: number;
|
|
1527
|
+
scopes?: string[];
|
|
1528
|
+
lang?: string;
|
|
1529
|
+
}
|
|
1530
|
+
|
|
1531
|
+
interface TreeOfContent {
|
|
1532
|
+
label: string;
|
|
1533
|
+
id: string;
|
|
1534
|
+
linkId?: string;
|
|
1535
|
+
active: boolean;
|
|
1536
|
+
children: TreeOfContent[];
|
|
1537
|
+
}
|
|
1538
|
+
interface AvailableVersionsInterface {
|
|
1539
|
+
shortId: string;
|
|
1540
|
+
active: boolean;
|
|
1541
|
+
lang: string;
|
|
1542
|
+
country: string;
|
|
1543
|
+
link: string;
|
|
1544
|
+
}
|
|
1545
|
+
|
|
1546
|
+
interface TopicsResponseItem {
|
|
1547
|
+
language: string;
|
|
1548
|
+
title: string;
|
|
1549
|
+
type: string;
|
|
1550
|
+
shortId: string;
|
|
1551
|
+
created: string;
|
|
1552
|
+
localeType: string;
|
|
1553
|
+
link: string;
|
|
1554
|
+
disabled: boolean;
|
|
1555
|
+
renditionUrl: string;
|
|
1556
|
+
image: string | null;
|
|
1557
|
+
description: string | null;
|
|
1558
|
+
}
|
|
1559
|
+
interface TopicsRequestItem extends DefaultCrexObject {
|
|
1560
|
+
applicableForTypes?: {
|
|
1561
|
+
labels: Labels[];
|
|
1562
|
+
}[];
|
|
1563
|
+
}
|
|
1564
|
+
|
|
1565
|
+
interface LanguageAndCountries {
|
|
1566
|
+
country: string;
|
|
1567
|
+
lang: string;
|
|
1568
|
+
value: string;
|
|
1569
|
+
}
|
|
1570
|
+
|
|
1598
1571
|
/**
|
|
1599
1572
|
* Auto-generated from OpenAPI spec
|
|
1600
1573
|
* Source: https://staging.c-rex.net/ids/api/swagger/v1/swagger.json
|
|
@@ -3465,4 +3438,4 @@ interface FilterItem {
|
|
|
3465
3438
|
shortId: string;
|
|
3466
3439
|
}
|
|
3467
3440
|
|
|
3468
|
-
export type { AdministrativeMetadataGetAllQueryParams, AdministrativeMetadataGetByIdPathParams, AdministrativeMetadataGetByIdQueryParams, AdministrativeMetadataModel, AfterUsesGetAllQueryParams, AfterUsesGetByIdPathParams, AfterUsesGetByIdQueryParams, AuditStateModel, AuthStateModel, AutocompleteSuggestion, AvailableVersionsInterface, ClassInterface,
|
|
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 };
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/index.ts"],"sourcesContent":["export * from './common'\nexport * from './config'\nexport * from './directoryNodes'\nexport * from './
|
|
1
|
+
{"version":3,"sources":["../src/index.ts"],"sourcesContent":["export * from './common'\nexport * from './config'\nexport * from './directoryNodes'\nexport * from './informationUnits'\nexport * from './treeOfContent'\nexport * from './topics'\nexport * from './languages'\nexport * from './generated/model'\nexport * from './generated/path-params'\nexport * from './generated/query-params'\n\n\n\nexport interface FilterItem {\n hits: number;\n total: number;\n label: string;\n active: boolean;\n shortId: string;\n}"],"mappings":";;;;;;;;;;;;;;;;AAAA;AAAA;","names":[]}
|