@veeroute/lss-registry-angular 7.25.3009
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/README.md +185 -0
- package/api/api.d.ts +13 -0
- package/api/backupsService.d.ts +56 -0
- package/api/backupsServiceInterface.d.ts +35 -0
- package/api/configurationsService.d.ts +256 -0
- package/api/configurationsServiceInterface.d.ts +132 -0
- package/api/explorerService.d.ts +279 -0
- package/api/explorerServiceInterface.d.ts +132 -0
- package/api/systemService.d.ts +78 -0
- package/api/systemServiceInterface.d.ts +37 -0
- package/api.base.service.d.ts +21 -0
- package/api.module.d.ts +11 -0
- package/cfg/process_types.json +172 -0
- package/configuration.d.ts +106 -0
- package/encoder.d.ts +11 -0
- package/esm2022/api/api.mjs +14 -0
- package/esm2022/api/backupsService.mjs +135 -0
- package/esm2022/api/backupsServiceInterface.mjs +2 -0
- package/esm2022/api/configurationsService.mjs +563 -0
- package/esm2022/api/configurationsServiceInterface.mjs +2 -0
- package/esm2022/api/explorerService.mjs +594 -0
- package/esm2022/api/explorerServiceInterface.mjs +2 -0
- package/esm2022/api/systemService.mjs +149 -0
- package/esm2022/api/systemServiceInterface.mjs +2 -0
- package/esm2022/api.base.service.mjs +79 -0
- package/esm2022/api.module.mjs +40 -0
- package/esm2022/configuration.mjs +145 -0
- package/esm2022/encoder.mjs +19 -0
- package/esm2022/index.mjs +8 -0
- package/esm2022/model/attribute.mjs +11 -0
- package/esm2022/model/checkResult.mjs +11 -0
- package/esm2022/model/configuration.mjs +2 -0
- package/esm2022/model/fileNamePath.mjs +11 -0
- package/esm2022/model/fileSpecification.mjs +11 -0
- package/esm2022/model/filesystem.mjs +2 -0
- package/esm2022/model/filesystemColumnType.mjs +23 -0
- package/esm2022/model/filesystemCounters.mjs +2 -0
- package/esm2022/model/filesystemPath.mjs +2 -0
- package/esm2022/model/folder.mjs +2 -0
- package/esm2022/model/folderCounters.mjs +11 -0
- package/esm2022/model/folderSpecification.mjs +2 -0
- package/esm2022/model/folderType.mjs +18 -0
- package/esm2022/model/general400.mjs +2 -0
- package/esm2022/model/general402.mjs +2 -0
- package/esm2022/model/general403.mjs +2 -0
- package/esm2022/model/general404.mjs +2 -0
- package/esm2022/model/general404Detail.mjs +2 -0
- package/esm2022/model/general429.mjs +2 -0
- package/esm2022/model/general500.mjs +2 -0
- package/esm2022/model/models.mjs +30 -0
- package/esm2022/model/schemaError.mjs +11 -0
- package/esm2022/model/service.mjs +26 -0
- package/esm2022/model/tableConfiguration.mjs +2 -0
- package/esm2022/model/tableConfigurationColumnType.mjs +22 -0
- package/esm2022/model/tableConfigurationList.mjs +2 -0
- package/esm2022/model/tableListCounters.mjs +2 -0
- package/esm2022/model/tableListCountersDetail.mjs +11 -0
- package/esm2022/model/tracedata.mjs +2 -0
- package/esm2022/model/versionResult.mjs +11 -0
- package/esm2022/param.mjs +2 -0
- package/esm2022/provide-api.mjs +15 -0
- package/esm2022/variables.mjs +9 -0
- package/esm2022/veeroute-lss-registry-angular.mjs +5 -0
- package/fesm2022/veeroute-lss-registry-angular.mjs +1887 -0
- package/fesm2022/veeroute-lss-registry-angular.mjs.map +1 -0
- package/index.d.ts +7 -0
- package/model/attribute.d.ts +23 -0
- package/model/checkResult.d.ts +19 -0
- package/model/configuration.d.ts +37 -0
- package/model/fileNamePath.d.ts +23 -0
- package/model/fileSpecification.d.ts +27 -0
- package/model/filesystem.d.ts +23 -0
- package/model/filesystemColumnType.d.ts +21 -0
- package/model/filesystemCounters.d.ts +24 -0
- package/model/filesystemPath.d.ts +20 -0
- package/model/folder.d.ts +60 -0
- package/model/folderCounters.d.ts +23 -0
- package/model/folderSpecification.d.ts +40 -0
- package/model/folderType.d.ts +16 -0
- package/model/general400.d.ts +26 -0
- package/model/general402.d.ts +21 -0
- package/model/general403.d.ts +21 -0
- package/model/general404.d.ts +21 -0
- package/model/general404Detail.d.ts +17 -0
- package/model/general429.d.ts +21 -0
- package/model/general500.d.ts +21 -0
- package/model/models.d.ts +29 -0
- package/model/schemaError.d.ts +23 -0
- package/model/service.d.ts +24 -0
- package/model/tableConfiguration.d.ts +29 -0
- package/model/tableConfigurationColumnType.d.ts +20 -0
- package/model/tableConfigurationList.d.ts +22 -0
- package/model/tableListCounters.d.ts +24 -0
- package/model/tableListCountersDetail.d.ts +19 -0
- package/model/tracedata.d.ts +49 -0
- package/model/versionResult.d.ts +27 -0
- package/package.json +33 -0
- package/param.d.ts +37 -0
- package/provide-api.d.ts +3 -0
- package/variables.d.ts +8 -0
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* VRt.Registry [RG]
|
|
3
|
+
*
|
|
4
|
+
* The version of the OpenAPI document: 7.25.3009
|
|
5
|
+
* Contact: servicedesk@veeroute.com
|
|
6
|
+
*
|
|
7
|
+
* NOTE: This class is auto generated by OpenAPI Generator.
|
|
8
|
+
* Do not edit the class manually.
|
|
9
|
+
*/
|
|
10
|
+
/**
|
|
11
|
+
* File specification.
|
|
12
|
+
*/
|
|
13
|
+
export interface FileSpecificationRegistry {
|
|
14
|
+
[key: string]: any | any;
|
|
15
|
+
/**
|
|
16
|
+
* File name.
|
|
17
|
+
*/
|
|
18
|
+
name: string;
|
|
19
|
+
/**
|
|
20
|
+
* File comment.
|
|
21
|
+
*/
|
|
22
|
+
comment: string | null;
|
|
23
|
+
/**
|
|
24
|
+
* Key, unique identifier.
|
|
25
|
+
*/
|
|
26
|
+
folder_key: string;
|
|
27
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* VRt.Registry [RG]
|
|
3
|
+
*
|
|
4
|
+
* The version of the OpenAPI document: 7.25.3009
|
|
5
|
+
* Contact: servicedesk@veeroute.com
|
|
6
|
+
*
|
|
7
|
+
* NOTE: This class is auto generated by OpenAPI Generator.
|
|
8
|
+
* Do not edit the class manually.
|
|
9
|
+
*/
|
|
10
|
+
import { TableListCountersRegistry } from './tableListCounters';
|
|
11
|
+
import { FolderRegistry } from './folder';
|
|
12
|
+
/**
|
|
13
|
+
* Virtual filesystem.
|
|
14
|
+
*/
|
|
15
|
+
export interface FilesystemRegistry {
|
|
16
|
+
[key: string]: any | any;
|
|
17
|
+
current_folder: FolderRegistry;
|
|
18
|
+
/**
|
|
19
|
+
* List of folders.
|
|
20
|
+
*/
|
|
21
|
+
folders: Array<FolderRegistry>;
|
|
22
|
+
counters: TableListCountersRegistry;
|
|
23
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* VRt.Registry [RG]
|
|
3
|
+
*
|
|
4
|
+
* The version of the OpenAPI document: 7.25.3009
|
|
5
|
+
* Contact: servicedesk@veeroute.com
|
|
6
|
+
*
|
|
7
|
+
* NOTE: This class is auto generated by OpenAPI Generator.
|
|
8
|
+
* Do not edit the class manually.
|
|
9
|
+
*/
|
|
10
|
+
/**
|
|
11
|
+
* The name of the column in the table with folders.
|
|
12
|
+
*/
|
|
13
|
+
export declare enum FilesystemColumnTypeRegistry {
|
|
14
|
+
NAME = "NAME",
|
|
15
|
+
OWNER_COMPANY_KEY = "OWNER_COMPANY_KEY",
|
|
16
|
+
OWNER_USERNAME = "OWNER_USERNAME",
|
|
17
|
+
CREATION_DATE = "CREATION_DATE",
|
|
18
|
+
EXPIRATION_DATE = "EXPIRATION_DATE",
|
|
19
|
+
FOLDERS_COUNT = "FOLDERS_COUNT",
|
|
20
|
+
FILES_COUNT = "FILES_COUNT"
|
|
21
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* VRt.Registry [RG]
|
|
3
|
+
*
|
|
4
|
+
* The version of the OpenAPI document: 7.25.3009
|
|
5
|
+
* Contact: servicedesk@veeroute.com
|
|
6
|
+
*
|
|
7
|
+
* NOTE: This class is auto generated by OpenAPI Generator.
|
|
8
|
+
* Do not edit the class manually.
|
|
9
|
+
*/
|
|
10
|
+
import { FolderCountersRegistry } from './folderCounters';
|
|
11
|
+
/**
|
|
12
|
+
* Counters across the entire virtual file system.
|
|
13
|
+
*/
|
|
14
|
+
export interface FilesystemCountersRegistry {
|
|
15
|
+
[key: string]: any | any;
|
|
16
|
+
/**
|
|
17
|
+
* Current number of available folders/files.
|
|
18
|
+
*/
|
|
19
|
+
current: FolderCountersRegistry;
|
|
20
|
+
/**
|
|
21
|
+
* Max number of available folders/files.
|
|
22
|
+
*/
|
|
23
|
+
max: FolderCountersRegistry;
|
|
24
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* VRt.Registry [RG]
|
|
3
|
+
*
|
|
4
|
+
* The version of the OpenAPI document: 7.25.3009
|
|
5
|
+
* Contact: servicedesk@veeroute.com
|
|
6
|
+
*
|
|
7
|
+
* NOTE: This class is auto generated by OpenAPI Generator.
|
|
8
|
+
* Do not edit the class manually.
|
|
9
|
+
*/
|
|
10
|
+
import { FolderRegistry } from './folder';
|
|
11
|
+
/**
|
|
12
|
+
* Path from file/folder to the root of the virtual file system.
|
|
13
|
+
*/
|
|
14
|
+
export interface FilesystemPathRegistry {
|
|
15
|
+
[key: string]: any | any;
|
|
16
|
+
/**
|
|
17
|
+
* List of folders.
|
|
18
|
+
*/
|
|
19
|
+
folders: Array<FolderRegistry>;
|
|
20
|
+
}
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* VRt.Registry [RG]
|
|
3
|
+
*
|
|
4
|
+
* The version of the OpenAPI document: 7.25.3009
|
|
5
|
+
* Contact: servicedesk@veeroute.com
|
|
6
|
+
*
|
|
7
|
+
* NOTE: This class is auto generated by OpenAPI Generator.
|
|
8
|
+
* Do not edit the class manually.
|
|
9
|
+
*/
|
|
10
|
+
import { AttributeRegistry } from './attribute';
|
|
11
|
+
import { FolderCountersRegistry } from './folderCounters';
|
|
12
|
+
import { FolderTypeRegistry } from './folderType';
|
|
13
|
+
/**
|
|
14
|
+
* Folder is an element of a virtual file system.
|
|
15
|
+
*/
|
|
16
|
+
export interface FolderRegistry {
|
|
17
|
+
[key: string]: any | any;
|
|
18
|
+
/**
|
|
19
|
+
* Key, unique identifier.
|
|
20
|
+
*/
|
|
21
|
+
key: string;
|
|
22
|
+
type: FolderTypeRegistry;
|
|
23
|
+
/**
|
|
24
|
+
* Parent folder key, `null` if the folder is root.
|
|
25
|
+
*/
|
|
26
|
+
parent_key?: string | null;
|
|
27
|
+
/**
|
|
28
|
+
* Folder name.
|
|
29
|
+
*/
|
|
30
|
+
name: string;
|
|
31
|
+
/**
|
|
32
|
+
* Folder comment.
|
|
33
|
+
*/
|
|
34
|
+
comment?: string | null;
|
|
35
|
+
/**
|
|
36
|
+
* Folder color.
|
|
37
|
+
*/
|
|
38
|
+
color?: string | null;
|
|
39
|
+
/**
|
|
40
|
+
* Attributes. Used to add service information.
|
|
41
|
+
*/
|
|
42
|
+
attributes?: Array<AttributeRegistry>;
|
|
43
|
+
/**
|
|
44
|
+
* Unique company key.
|
|
45
|
+
*/
|
|
46
|
+
owner_company_key?: string | null;
|
|
47
|
+
/**
|
|
48
|
+
* Unique username for login.
|
|
49
|
+
*/
|
|
50
|
+
owner_username?: string | null;
|
|
51
|
+
/**
|
|
52
|
+
* Creation date and time in the [ISO 8601](https://tools.ietf.org/html/rfc3339#section-5.6) format.
|
|
53
|
+
*/
|
|
54
|
+
creation_date?: string | null;
|
|
55
|
+
/**
|
|
56
|
+
* Date and time of automatic deletion in the [ISO 8601](https://tools.ietf.org/html/rfc3339#section-5.6) format. Null means that automatic deletion does not occur.
|
|
57
|
+
*/
|
|
58
|
+
expiration_date?: string | null;
|
|
59
|
+
counters: FolderCountersRegistry;
|
|
60
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* VRt.Registry [RG]
|
|
3
|
+
*
|
|
4
|
+
* The version of the OpenAPI document: 7.25.3009
|
|
5
|
+
* Contact: servicedesk@veeroute.com
|
|
6
|
+
*
|
|
7
|
+
* NOTE: This class is auto generated by OpenAPI Generator.
|
|
8
|
+
* Do not edit the class manually.
|
|
9
|
+
*/
|
|
10
|
+
/**
|
|
11
|
+
* Current folder counters.
|
|
12
|
+
*/
|
|
13
|
+
export interface FolderCountersRegistry {
|
|
14
|
+
[key: string]: any | any;
|
|
15
|
+
/**
|
|
16
|
+
* The number of subfolders.
|
|
17
|
+
*/
|
|
18
|
+
folders_count: number;
|
|
19
|
+
/**
|
|
20
|
+
* The number of files.
|
|
21
|
+
*/
|
|
22
|
+
files_count: number;
|
|
23
|
+
}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* VRt.Registry [RG]
|
|
3
|
+
*
|
|
4
|
+
* The version of the OpenAPI document: 7.25.3009
|
|
5
|
+
* Contact: servicedesk@veeroute.com
|
|
6
|
+
*
|
|
7
|
+
* NOTE: This class is auto generated by OpenAPI Generator.
|
|
8
|
+
* Do not edit the class manually.
|
|
9
|
+
*/
|
|
10
|
+
import { AttributeRegistry } from './attribute';
|
|
11
|
+
/**
|
|
12
|
+
* Folder specification.
|
|
13
|
+
*/
|
|
14
|
+
export interface FolderSpecificationRegistry {
|
|
15
|
+
[key: string]: any | any;
|
|
16
|
+
/**
|
|
17
|
+
* Parent folder key, `null` if the folder is root.
|
|
18
|
+
*/
|
|
19
|
+
parent_key?: string | null;
|
|
20
|
+
/**
|
|
21
|
+
* Folder name.
|
|
22
|
+
*/
|
|
23
|
+
name: string;
|
|
24
|
+
/**
|
|
25
|
+
* Folder comment.
|
|
26
|
+
*/
|
|
27
|
+
comment?: string | null;
|
|
28
|
+
/**
|
|
29
|
+
* Folder color.
|
|
30
|
+
*/
|
|
31
|
+
color?: string | null;
|
|
32
|
+
/**
|
|
33
|
+
* Date and time of automatic deletion in the [ISO 8601](https://tools.ietf.org/html/rfc3339#section-5.6) format. Null means that automatic deletion does not occur.
|
|
34
|
+
*/
|
|
35
|
+
expiration_date?: string | null;
|
|
36
|
+
/**
|
|
37
|
+
* Attributes. Used to add service information.
|
|
38
|
+
*/
|
|
39
|
+
attributes?: Array<AttributeRegistry>;
|
|
40
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* VRt.Registry [RG]
|
|
3
|
+
*
|
|
4
|
+
* The version of the OpenAPI document: 7.25.3009
|
|
5
|
+
* Contact: servicedesk@veeroute.com
|
|
6
|
+
*
|
|
7
|
+
* NOTE: This class is auto generated by OpenAPI Generator.
|
|
8
|
+
* Do not edit the class manually.
|
|
9
|
+
*/
|
|
10
|
+
/**
|
|
11
|
+
* Element type: * `ROOT` - root object * `FOLDER` - folder
|
|
12
|
+
*/
|
|
13
|
+
export declare enum FolderTypeRegistry {
|
|
14
|
+
ROOT = "ROOT",
|
|
15
|
+
FOLDER = "FOLDER"
|
|
16
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* VRt.Registry [RG]
|
|
3
|
+
*
|
|
4
|
+
* The version of the OpenAPI document: 7.25.3009
|
|
5
|
+
* Contact: servicedesk@veeroute.com
|
|
6
|
+
*
|
|
7
|
+
* NOTE: This class is auto generated by OpenAPI Generator.
|
|
8
|
+
* Do not edit the class manually.
|
|
9
|
+
*/
|
|
10
|
+
import { SchemaErrorRegistry } from './schemaError';
|
|
11
|
+
import { TracedataRegistry } from './tracedata';
|
|
12
|
+
/**
|
|
13
|
+
* 400 Error details.
|
|
14
|
+
*/
|
|
15
|
+
export interface General400Registry {
|
|
16
|
+
[key: string]: any | any;
|
|
17
|
+
tracedata: TracedataRegistry;
|
|
18
|
+
/**
|
|
19
|
+
* Error message.
|
|
20
|
+
*/
|
|
21
|
+
message?: string | null;
|
|
22
|
+
/**
|
|
23
|
+
* List of syntax errors - data does not match the schema.
|
|
24
|
+
*/
|
|
25
|
+
schema_errors?: Array<SchemaErrorRegistry>;
|
|
26
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* VRt.Registry [RG]
|
|
3
|
+
*
|
|
4
|
+
* The version of the OpenAPI document: 7.25.3009
|
|
5
|
+
* Contact: servicedesk@veeroute.com
|
|
6
|
+
*
|
|
7
|
+
* NOTE: This class is auto generated by OpenAPI Generator.
|
|
8
|
+
* Do not edit the class manually.
|
|
9
|
+
*/
|
|
10
|
+
import { TracedataRegistry } from './tracedata';
|
|
11
|
+
/**
|
|
12
|
+
* 402 Error details.
|
|
13
|
+
*/
|
|
14
|
+
export interface General402Registry {
|
|
15
|
+
[key: string]: any | any;
|
|
16
|
+
tracedata: TracedataRegistry;
|
|
17
|
+
/**
|
|
18
|
+
* Error message.
|
|
19
|
+
*/
|
|
20
|
+
message?: string | null;
|
|
21
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* VRt.Registry [RG]
|
|
3
|
+
*
|
|
4
|
+
* The version of the OpenAPI document: 7.25.3009
|
|
5
|
+
* Contact: servicedesk@veeroute.com
|
|
6
|
+
*
|
|
7
|
+
* NOTE: This class is auto generated by OpenAPI Generator.
|
|
8
|
+
* Do not edit the class manually.
|
|
9
|
+
*/
|
|
10
|
+
import { TracedataRegistry } from './tracedata';
|
|
11
|
+
/**
|
|
12
|
+
* 403 Error details.
|
|
13
|
+
*/
|
|
14
|
+
export interface General403Registry {
|
|
15
|
+
[key: string]: any | any;
|
|
16
|
+
tracedata: TracedataRegistry;
|
|
17
|
+
/**
|
|
18
|
+
* Error message.
|
|
19
|
+
*/
|
|
20
|
+
message?: string | null;
|
|
21
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* VRt.Registry [RG]
|
|
3
|
+
*
|
|
4
|
+
* The version of the OpenAPI document: 7.25.3009
|
|
5
|
+
* Contact: servicedesk@veeroute.com
|
|
6
|
+
*
|
|
7
|
+
* NOTE: This class is auto generated by OpenAPI Generator.
|
|
8
|
+
* Do not edit the class manually.
|
|
9
|
+
*/
|
|
10
|
+
import { General404DetailRegistry } from './general404Detail';
|
|
11
|
+
/**
|
|
12
|
+
* 404 Error details.
|
|
13
|
+
*/
|
|
14
|
+
export interface General404Registry {
|
|
15
|
+
[key: string]: any | any;
|
|
16
|
+
/**
|
|
17
|
+
* Resource identifier.
|
|
18
|
+
*/
|
|
19
|
+
resource_key?: string | null;
|
|
20
|
+
detail?: General404DetailRegistry | null;
|
|
21
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* VRt.Registry [RG]
|
|
3
|
+
*
|
|
4
|
+
* The version of the OpenAPI document: 7.25.3009
|
|
5
|
+
* Contact: servicedesk@veeroute.com
|
|
6
|
+
*
|
|
7
|
+
* NOTE: This class is auto generated by OpenAPI Generator.
|
|
8
|
+
* Do not edit the class manually.
|
|
9
|
+
*/
|
|
10
|
+
import { TracedataRegistry } from './tracedata';
|
|
11
|
+
/**
|
|
12
|
+
* Resource details.
|
|
13
|
+
*/
|
|
14
|
+
export interface General404DetailRegistry {
|
|
15
|
+
[key: string]: any | any;
|
|
16
|
+
tracedata: TracedataRegistry;
|
|
17
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* VRt.Registry [RG]
|
|
3
|
+
*
|
|
4
|
+
* The version of the OpenAPI document: 7.25.3009
|
|
5
|
+
* Contact: servicedesk@veeroute.com
|
|
6
|
+
*
|
|
7
|
+
* NOTE: This class is auto generated by OpenAPI Generator.
|
|
8
|
+
* Do not edit the class manually.
|
|
9
|
+
*/
|
|
10
|
+
import { TracedataRegistry } from './tracedata';
|
|
11
|
+
/**
|
|
12
|
+
* 429 Error details.
|
|
13
|
+
*/
|
|
14
|
+
export interface General429Registry {
|
|
15
|
+
[key: string]: any | any;
|
|
16
|
+
tracedata: TracedataRegistry;
|
|
17
|
+
/**
|
|
18
|
+
* Error Message.
|
|
19
|
+
*/
|
|
20
|
+
message?: string | null;
|
|
21
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* VRt.Registry [RG]
|
|
3
|
+
*
|
|
4
|
+
* The version of the OpenAPI document: 7.25.3009
|
|
5
|
+
* Contact: servicedesk@veeroute.com
|
|
6
|
+
*
|
|
7
|
+
* NOTE: This class is auto generated by OpenAPI Generator.
|
|
8
|
+
* Do not edit the class manually.
|
|
9
|
+
*/
|
|
10
|
+
import { TracedataRegistry } from './tracedata';
|
|
11
|
+
/**
|
|
12
|
+
* 500 Error details.
|
|
13
|
+
*/
|
|
14
|
+
export interface General500Registry {
|
|
15
|
+
[key: string]: any | any;
|
|
16
|
+
tracedata: TracedataRegistry;
|
|
17
|
+
/**
|
|
18
|
+
* Error message.
|
|
19
|
+
*/
|
|
20
|
+
message?: string | null;
|
|
21
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
export * from './attribute';
|
|
2
|
+
export * from './checkResult';
|
|
3
|
+
export * from './configuration';
|
|
4
|
+
export * from './fileNamePath';
|
|
5
|
+
export * from './fileSpecification';
|
|
6
|
+
export * from './filesystemColumnType';
|
|
7
|
+
export * from './filesystemCounters';
|
|
8
|
+
export * from './filesystemPath';
|
|
9
|
+
export * from './filesystem';
|
|
10
|
+
export * from './folderCounters';
|
|
11
|
+
export * from './folder';
|
|
12
|
+
export * from './folderSpecification';
|
|
13
|
+
export * from './folderType';
|
|
14
|
+
export * from './general400';
|
|
15
|
+
export * from './general402';
|
|
16
|
+
export * from './general403';
|
|
17
|
+
export * from './general404Detail';
|
|
18
|
+
export * from './general404';
|
|
19
|
+
export * from './general429';
|
|
20
|
+
export * from './general500';
|
|
21
|
+
export * from './schemaError';
|
|
22
|
+
export * from './service';
|
|
23
|
+
export * from './tableConfigurationColumnType';
|
|
24
|
+
export * from './tableConfigurationList';
|
|
25
|
+
export * from './tableConfiguration';
|
|
26
|
+
export * from './tableListCountersDetail';
|
|
27
|
+
export * from './tableListCounters';
|
|
28
|
+
export * from './tracedata';
|
|
29
|
+
export * from './versionResult';
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* VRt.Registry [RG]
|
|
3
|
+
*
|
|
4
|
+
* The version of the OpenAPI document: 7.25.3009
|
|
5
|
+
* Contact: servicedesk@veeroute.com
|
|
6
|
+
*
|
|
7
|
+
* NOTE: This class is auto generated by OpenAPI Generator.
|
|
8
|
+
* Do not edit the class manually.
|
|
9
|
+
*/
|
|
10
|
+
/**
|
|
11
|
+
* Data error by schema.
|
|
12
|
+
*/
|
|
13
|
+
export interface SchemaErrorRegistry {
|
|
14
|
+
[key: string]: any | any;
|
|
15
|
+
/**
|
|
16
|
+
* Target entity identifier.
|
|
17
|
+
*/
|
|
18
|
+
entity: string | null;
|
|
19
|
+
/**
|
|
20
|
+
* Error message.
|
|
21
|
+
*/
|
|
22
|
+
message: string;
|
|
23
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* VRt.Registry [RG]
|
|
3
|
+
*
|
|
4
|
+
* The version of the OpenAPI document: 7.25.3009
|
|
5
|
+
* Contact: servicedesk@veeroute.com
|
|
6
|
+
*
|
|
7
|
+
* NOTE: This class is auto generated by OpenAPI Generator.
|
|
8
|
+
* Do not edit the class manually.
|
|
9
|
+
*/
|
|
10
|
+
/**
|
|
11
|
+
* Service name.
|
|
12
|
+
*/
|
|
13
|
+
export declare enum ServiceRegistry {
|
|
14
|
+
UNIVERSAL = "UNIVERSAL",
|
|
15
|
+
ROUTING = "ROUTING",
|
|
16
|
+
ACCOUNT = "ACCOUNT",
|
|
17
|
+
ADMIN = "ADMIN",
|
|
18
|
+
STUDIO = "STUDIO",
|
|
19
|
+
MONITOR = "MONITOR",
|
|
20
|
+
PACKER = "PACKER",
|
|
21
|
+
AGRO = "AGRO",
|
|
22
|
+
REGISTRY = "REGISTRY",
|
|
23
|
+
SUPPORT = "SUPPORT"
|
|
24
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* VRt.Registry [RG]
|
|
3
|
+
*
|
|
4
|
+
* The version of the OpenAPI document: 7.25.3009
|
|
5
|
+
* Contact: servicedesk@veeroute.com
|
|
6
|
+
*
|
|
7
|
+
* NOTE: This class is auto generated by OpenAPI Generator.
|
|
8
|
+
* Do not edit the class manually.
|
|
9
|
+
*/
|
|
10
|
+
import { FileSpecificationRegistry } from './fileSpecification';
|
|
11
|
+
/**
|
|
12
|
+
* Configuration (table).
|
|
13
|
+
*/
|
|
14
|
+
export interface TableConfigurationRegistry {
|
|
15
|
+
[key: string]: any | any;
|
|
16
|
+
/**
|
|
17
|
+
* Key, unique identifier.
|
|
18
|
+
*/
|
|
19
|
+
essence_key: string;
|
|
20
|
+
specification: FileSpecificationRegistry;
|
|
21
|
+
/**
|
|
22
|
+
* Last file edit date and time in the [ISO 8601](https://tools.ietf.org/html/rfc3339#section-5.6) format.
|
|
23
|
+
*/
|
|
24
|
+
edit_date: string;
|
|
25
|
+
/**
|
|
26
|
+
* File creation date and time in the [ISO 8601](https://tools.ietf.org/html/rfc3339#section-5.6) format.
|
|
27
|
+
*/
|
|
28
|
+
creation_date: string;
|
|
29
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* VRt.Registry [RG]
|
|
3
|
+
*
|
|
4
|
+
* The version of the OpenAPI document: 7.25.3009
|
|
5
|
+
* Contact: servicedesk@veeroute.com
|
|
6
|
+
*
|
|
7
|
+
* NOTE: This class is auto generated by OpenAPI Generator.
|
|
8
|
+
* Do not edit the class manually.
|
|
9
|
+
*/
|
|
10
|
+
/**
|
|
11
|
+
* Column name in the table with waves: * `ESSENCE_KEY` - configuration key
|
|
12
|
+
*/
|
|
13
|
+
export declare enum TableConfigurationColumnTypeRegistry {
|
|
14
|
+
ESSENCE_KEY = "ESSENCE_KEY",
|
|
15
|
+
CREATION_DATE = "CREATION_DATE",
|
|
16
|
+
EDIT_DATE = "EDIT_DATE",
|
|
17
|
+
SPECIFICATION_NAME = "SPECIFICATION_NAME",
|
|
18
|
+
SPECIFICATION_COMMENT = "SPECIFICATION_COMMENT",
|
|
19
|
+
SPECIFICATION_FOLDER_KEY = "SPECIFICATION_FOLDER_KEY"
|
|
20
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* VRt.Registry [RG]
|
|
3
|
+
*
|
|
4
|
+
* The version of the OpenAPI document: 7.25.3009
|
|
5
|
+
* Contact: servicedesk@veeroute.com
|
|
6
|
+
*
|
|
7
|
+
* NOTE: This class is auto generated by OpenAPI Generator.
|
|
8
|
+
* Do not edit the class manually.
|
|
9
|
+
*/
|
|
10
|
+
import { TableConfigurationRegistry } from './tableConfiguration';
|
|
11
|
+
import { TableListCountersRegistry } from './tableListCounters';
|
|
12
|
+
/**
|
|
13
|
+
* A list of configurations (table).
|
|
14
|
+
*/
|
|
15
|
+
export interface TableConfigurationListRegistry {
|
|
16
|
+
[key: string]: any | any;
|
|
17
|
+
/**
|
|
18
|
+
* A list of configurations.
|
|
19
|
+
*/
|
|
20
|
+
essences: Array<TableConfigurationRegistry>;
|
|
21
|
+
counters: TableListCountersRegistry;
|
|
22
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* VRt.Registry [RG]
|
|
3
|
+
*
|
|
4
|
+
* The version of the OpenAPI document: 7.25.3009
|
|
5
|
+
* Contact: servicedesk@veeroute.com
|
|
6
|
+
*
|
|
7
|
+
* NOTE: This class is auto generated by OpenAPI Generator.
|
|
8
|
+
* Do not edit the class manually.
|
|
9
|
+
*/
|
|
10
|
+
import { TableListCountersDetailRegistry } from './tableListCountersDetail';
|
|
11
|
+
/**
|
|
12
|
+
* Counters by list.
|
|
13
|
+
*/
|
|
14
|
+
export interface TableListCountersRegistry {
|
|
15
|
+
[key: string]: any | any;
|
|
16
|
+
/**
|
|
17
|
+
* General statistics, does not depend on the filter.
|
|
18
|
+
*/
|
|
19
|
+
overall: TableListCountersDetailRegistry;
|
|
20
|
+
/**
|
|
21
|
+
* Filtered statistics.
|
|
22
|
+
*/
|
|
23
|
+
filter: TableListCountersDetailRegistry;
|
|
24
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* VRt.Registry [RG]
|
|
3
|
+
*
|
|
4
|
+
* The version of the OpenAPI document: 7.25.3009
|
|
5
|
+
* Contact: servicedesk@veeroute.com
|
|
6
|
+
*
|
|
7
|
+
* NOTE: This class is auto generated by OpenAPI Generator.
|
|
8
|
+
* Do not edit the class manually.
|
|
9
|
+
*/
|
|
10
|
+
/**
|
|
11
|
+
* Detail counters by list.
|
|
12
|
+
*/
|
|
13
|
+
export interface TableListCountersDetailRegistry {
|
|
14
|
+
[key: string]: any | any;
|
|
15
|
+
/**
|
|
16
|
+
* Count.
|
|
17
|
+
*/
|
|
18
|
+
total: number;
|
|
19
|
+
}
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* VRt.Registry [RG]
|
|
3
|
+
*
|
|
4
|
+
* The version of the OpenAPI document: 7.25.3009
|
|
5
|
+
* Contact: servicedesk@veeroute.com
|
|
6
|
+
*
|
|
7
|
+
* NOTE: This class is auto generated by OpenAPI Generator.
|
|
8
|
+
* Do not edit the class manually.
|
|
9
|
+
*/
|
|
10
|
+
import { ServiceRegistry } from './service';
|
|
11
|
+
/**
|
|
12
|
+
* Data for request tracing.
|
|
13
|
+
*/
|
|
14
|
+
export interface TracedataRegistry {
|
|
15
|
+
[key: string]: any | any;
|
|
16
|
+
/**
|
|
17
|
+
* Unique process identifier. One is created per process, the same for different requests for the same process.
|
|
18
|
+
*/
|
|
19
|
+
process_code: string;
|
|
20
|
+
/**
|
|
21
|
+
* Unique identifier of the request. A new one is created for each request.
|
|
22
|
+
*/
|
|
23
|
+
request_code: string;
|
|
24
|
+
/**
|
|
25
|
+
* Unique username for login.
|
|
26
|
+
*/
|
|
27
|
+
username: string;
|
|
28
|
+
/**
|
|
29
|
+
* Unique company key.
|
|
30
|
+
*/
|
|
31
|
+
company: string;
|
|
32
|
+
service: ServiceRegistry;
|
|
33
|
+
/**
|
|
34
|
+
* Operation (request) name.
|
|
35
|
+
*/
|
|
36
|
+
operation: string;
|
|
37
|
+
/**
|
|
38
|
+
* Environment identifier.
|
|
39
|
+
*/
|
|
40
|
+
env: string;
|
|
41
|
+
/**
|
|
42
|
+
* Pod identifier.
|
|
43
|
+
*/
|
|
44
|
+
pod: string;
|
|
45
|
+
/**
|
|
46
|
+
* Date and time service method run in the [ISO 8601](https://tools.ietf.org/html/rfc3339#section-5.6) format.
|
|
47
|
+
*/
|
|
48
|
+
time: string;
|
|
49
|
+
}
|