@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
|
+
* Service version.
|
|
12
|
+
*/
|
|
13
|
+
export interface VersionResultRegistry {
|
|
14
|
+
[key: string]: any | any;
|
|
15
|
+
/**
|
|
16
|
+
* Product version. Within a single version, compatibility of common data structures between services is guaranteed. A version change indicates changes that are incompatible with previous versions of the product (and all services).
|
|
17
|
+
*/
|
|
18
|
+
major: number;
|
|
19
|
+
/**
|
|
20
|
+
* Minor version of the service. A version change indicates new functionality. The update is backward compatible with the major version of the service.
|
|
21
|
+
*/
|
|
22
|
+
minor: number;
|
|
23
|
+
/**
|
|
24
|
+
* Build version. Contains backwards compatible bug fixes and docs update.
|
|
25
|
+
*/
|
|
26
|
+
build: string;
|
|
27
|
+
}
|
package/package.json
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@veeroute/lss-registry-angular",
|
|
3
|
+
"version": "7.25.3009",
|
|
4
|
+
"description": "OpenAPI client for @veeroute/lss-registry-angular",
|
|
5
|
+
"author": "Veeroute Team",
|
|
6
|
+
"keywords": [
|
|
7
|
+
"veeroute",
|
|
8
|
+
"openapi",
|
|
9
|
+
"logistics"
|
|
10
|
+
],
|
|
11
|
+
"license": "Veeroute",
|
|
12
|
+
"peerDependencies": {
|
|
13
|
+
"@angular/core": "^17.3.0",
|
|
14
|
+
"rxjs": "^7.8.1"
|
|
15
|
+
},
|
|
16
|
+
"module": "fesm2022/veeroute-lss-registry-angular.mjs",
|
|
17
|
+
"typings": "index.d.ts",
|
|
18
|
+
"exports": {
|
|
19
|
+
"./package.json": {
|
|
20
|
+
"default": "./package.json"
|
|
21
|
+
},
|
|
22
|
+
".": {
|
|
23
|
+
"types": "./index.d.ts",
|
|
24
|
+
"esm2022": "./esm2022/veeroute-lss-registry-angular.mjs",
|
|
25
|
+
"esm": "./esm2022/veeroute-lss-registry-angular.mjs",
|
|
26
|
+
"default": "./fesm2022/veeroute-lss-registry-angular.mjs"
|
|
27
|
+
}
|
|
28
|
+
},
|
|
29
|
+
"sideEffects": false,
|
|
30
|
+
"dependencies": {
|
|
31
|
+
"tslib": "^2.3.0"
|
|
32
|
+
}
|
|
33
|
+
}
|
package/param.d.ts
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Standard parameter styles defined by OpenAPI spec
|
|
3
|
+
*/
|
|
4
|
+
export type StandardParamStyle = 'matrix' | 'label' | 'form' | 'simple' | 'spaceDelimited' | 'pipeDelimited' | 'deepObject';
|
|
5
|
+
/**
|
|
6
|
+
* The OpenAPI standard {@link StandardParamStyle}s may be extended by custom styles by the user.
|
|
7
|
+
*/
|
|
8
|
+
export type ParamStyle = StandardParamStyle | string;
|
|
9
|
+
/**
|
|
10
|
+
* Standard parameter locations defined by OpenAPI spec
|
|
11
|
+
*/
|
|
12
|
+
export type ParamLocation = 'query' | 'header' | 'path' | 'cookie';
|
|
13
|
+
/**
|
|
14
|
+
* Standard types as defined in <a href="https://swagger.io/specification/#data-types">OpenAPI Specification: Data Types</a>
|
|
15
|
+
*/
|
|
16
|
+
export type StandardDataType = "integer" | "number" | "boolean" | "string" | "object" | "array";
|
|
17
|
+
/**
|
|
18
|
+
* Standard {@link DataType}s plus your own types/classes.
|
|
19
|
+
*/
|
|
20
|
+
export type DataType = StandardDataType | string;
|
|
21
|
+
/**
|
|
22
|
+
* Standard formats as defined in <a href="https://swagger.io/specification/#data-types">OpenAPI Specification: Data Types</a>
|
|
23
|
+
*/
|
|
24
|
+
export type StandardDataFormat = "int32" | "int64" | "float" | "double" | "byte" | "binary" | "date" | "date-time" | "password";
|
|
25
|
+
export type DataFormat = StandardDataFormat | string;
|
|
26
|
+
/**
|
|
27
|
+
* The parameter to encode.
|
|
28
|
+
*/
|
|
29
|
+
export interface Param {
|
|
30
|
+
name: string;
|
|
31
|
+
value: unknown;
|
|
32
|
+
in: ParamLocation;
|
|
33
|
+
style: ParamStyle;
|
|
34
|
+
explode: boolean;
|
|
35
|
+
dataType: DataType;
|
|
36
|
+
dataFormat: DataFormat | undefined;
|
|
37
|
+
}
|
package/provide-api.d.ts
ADDED