@sap-ux/axios-extension 1.10.2 → 1.11.1
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/abap/index.d.ts
CHANGED
|
@@ -5,5 +5,5 @@ export { AppIndex, AppIndexService } from './app-index-service';
|
|
|
5
5
|
export * from './message';
|
|
6
6
|
export * from './catalog';
|
|
7
7
|
export * from './adt-catalog';
|
|
8
|
-
export { TenantType, ArchiveFileNode } from './types';
|
|
8
|
+
export { TenantType, ArchiveFileNode, AtoSettings } from './types';
|
|
9
9
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -65,10 +65,19 @@ export declare enum TenantType {
|
|
|
65
65
|
SAP = "SAP",
|
|
66
66
|
Customer = "CUSTOMER"
|
|
67
67
|
}
|
|
68
|
+
export type OperationsType = 'C' | 'P';
|
|
68
69
|
/**
|
|
69
|
-
*
|
|
70
|
+
* ATO Settings properties
|
|
71
|
+
*
|
|
72
|
+
* @typedef AtoSettings
|
|
73
|
+
* @property {string} developmentPackage Local package name i.e YY1_TEST_PACKAGE
|
|
74
|
+
* @property {string} developmentPrefix Describes a custom prefix that is used for your packages and transports i.e.YY1_ | ZZ1_
|
|
75
|
+
* @property {OperationsType} operationsType Hosting type i.e. Cloud | onPremise
|
|
76
|
+
* @property {boolean} isExtensibilityDevelopmentSystem Whether target system is a extensible development tenant, true | false
|
|
77
|
+
* @property {TenantType} tenantType Type of tenant exposed i.e. SAP | CUSTOMER
|
|
78
|
+
* @property {boolean} isTransportRequestRequired Whether Transport Request (TR) is required during deployment, true | false
|
|
79
|
+
* @property {boolean} isConfigured Whether ATO is enabled on target system, true | false
|
|
70
80
|
*/
|
|
71
|
-
export type OperationsType = 'C' | 'P';
|
|
72
81
|
export interface AtoSettings {
|
|
73
82
|
developmentPackage?: string;
|
|
74
83
|
developmentPrefix?: string;
|
|
@@ -76,6 +85,7 @@ export interface AtoSettings {
|
|
|
76
85
|
isExtensibilityDevelopmentSystem?: boolean;
|
|
77
86
|
tenantType?: TenantType;
|
|
78
87
|
isTransportRequestRequired?: boolean;
|
|
88
|
+
isConfigured?: boolean;
|
|
79
89
|
}
|
|
80
90
|
export type AdtTransportStatus = 'S' | 'E';
|
|
81
91
|
export declare const LocalPackageText: string[];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sap-ux/axios-extension",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.11.1",
|
|
4
4
|
"description": "Extension of the Axios module adding convenience methods to interact with SAP systems especially with OData services.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"qs": "6.7.3",
|
|
23
23
|
"xpath": "0.0.33",
|
|
24
24
|
"@xmldom/xmldom": "0.8.10",
|
|
25
|
-
"@sap-ux/btp-utils": "0.
|
|
25
|
+
"@sap-ux/btp-utils": "0.14.0",
|
|
26
26
|
"@sap-ux/logger": "0.5.0"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|