@computec/uibase 1.0.2

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.
Files changed (86) hide show
  1. package/dist/communication/HttpClient.d.ts +248 -0
  2. package/dist/communication/HttpClient.d.ts.map +1 -0
  3. package/dist/communication/HttpClient.js +355 -0
  4. package/dist/communication/HttpClientCacheOptions.d.ts +9 -0
  5. package/dist/communication/HttpClientCacheOptions.d.ts.map +1 -0
  6. package/dist/communication/HttpClientCacheOptions.js +25 -0
  7. package/dist/communication/IBaseHttpClientOptions.d.ts +17 -0
  8. package/dist/communication/IBaseHttpClientOptions.d.ts.map +1 -0
  9. package/dist/communication/IBaseHttpClientOptions.js +2 -0
  10. package/dist/helpers/ErrorHelper.d.ts +15 -0
  11. package/dist/helpers/ErrorHelper.d.ts.map +1 -0
  12. package/dist/helpers/ErrorHelper.js +37 -0
  13. package/dist/helpers/HttpClientHelper.d.ts +42 -0
  14. package/dist/helpers/HttpClientHelper.d.ts.map +1 -0
  15. package/dist/helpers/HttpClientHelper.js +175 -0
  16. package/dist/index.d.ts +23 -0
  17. package/dist/index.d.ts.map +1 -0
  18. package/dist/index.js +50 -0
  19. package/dist/models/AppEngineException.d.ts +11 -0
  20. package/dist/models/AppEngineException.d.ts.map +1 -0
  21. package/dist/models/AppEngineException.js +21 -0
  22. package/dist/models/BaseBusinessObject.d.ts +158 -0
  23. package/dist/models/BaseBusinessObject.d.ts.map +1 -0
  24. package/dist/models/BaseBusinessObject.js +187 -0
  25. package/dist/models/LocalStorage.d.ts +9 -0
  26. package/dist/models/LocalStorage.d.ts.map +1 -0
  27. package/dist/models/LocalStorage.js +54 -0
  28. package/dist/models/Session.d.ts +18 -0
  29. package/dist/models/Session.d.ts.map +1 -0
  30. package/dist/models/Session.js +5 -0
  31. package/dist/models/enums/HeadersContentTypeEnum.d.ts +8 -0
  32. package/dist/models/enums/HeadersContentTypeEnum.d.ts.map +1 -0
  33. package/dist/models/enums/HeadersContentTypeEnum.js +10 -0
  34. package/dist/models/enums/StorageTypeEnum.d.ts +5 -0
  35. package/dist/models/enums/StorageTypeEnum.d.ts.map +1 -0
  36. package/dist/models/enums/StorageTypeEnum.js +8 -0
  37. package/dist/models/interfaces/IAppEngineException.d.ts +7 -0
  38. package/dist/models/interfaces/IAppEngineException.d.ts.map +1 -0
  39. package/dist/models/interfaces/IAppEngineException.js +2 -0
  40. package/dist-ui5/resources/computec/appengine/uibase/.library +15 -0
  41. package/dist-ui5/resources/computec/appengine/uibase/communication/HttpClient-dbg.js +485 -0
  42. package/dist-ui5/resources/computec/appengine/uibase/communication/HttpClient.js +2 -0
  43. package/dist-ui5/resources/computec/appengine/uibase/communication/HttpClient.js.map +1 -0
  44. package/dist-ui5/resources/computec/appengine/uibase/communication/HttpClientCacheOptions-dbg.js +41 -0
  45. package/dist-ui5/resources/computec/appengine/uibase/communication/HttpClientCacheOptions.js +2 -0
  46. package/dist-ui5/resources/computec/appengine/uibase/communication/HttpClientCacheOptions.js.map +1 -0
  47. package/dist-ui5/resources/computec/appengine/uibase/communication/IBaseHttpClientOptions-dbg.js +1 -0
  48. package/dist-ui5/resources/computec/appengine/uibase/communication/IBaseHttpClientOptions.js +2 -0
  49. package/dist-ui5/resources/computec/appengine/uibase/communication/IBaseHttpClientOptions.js.map +1 -0
  50. package/dist-ui5/resources/computec/appengine/uibase/helpers/ErrorHelper-dbg.js +57 -0
  51. package/dist-ui5/resources/computec/appengine/uibase/helpers/ErrorHelper.js +2 -0
  52. package/dist-ui5/resources/computec/appengine/uibase/helpers/ErrorHelper.js.map +1 -0
  53. package/dist-ui5/resources/computec/appengine/uibase/helpers/HttpClientHelper-dbg.js +310 -0
  54. package/dist-ui5/resources/computec/appengine/uibase/helpers/HttpClientHelper.js +2 -0
  55. package/dist-ui5/resources/computec/appengine/uibase/helpers/HttpClientHelper.js.map +1 -0
  56. package/dist-ui5/resources/computec/appengine/uibase/index-dbg.js +43 -0
  57. package/dist-ui5/resources/computec/appengine/uibase/index.js +2 -0
  58. package/dist-ui5/resources/computec/appengine/uibase/index.js.map +1 -0
  59. package/dist-ui5/resources/computec/appengine/uibase/library-dbg.js +27 -0
  60. package/dist-ui5/resources/computec/appengine/uibase/library-preload.js +47 -0
  61. package/dist-ui5/resources/computec/appengine/uibase/library-preload.js.map +1 -0
  62. package/dist-ui5/resources/computec/appengine/uibase/library.js +2 -0
  63. package/dist-ui5/resources/computec/appengine/uibase/library.js.map +1 -0
  64. package/dist-ui5/resources/computec/appengine/uibase/manifest.json +35 -0
  65. package/dist-ui5/resources/computec/appengine/uibase/models/AppEngineException-dbg.js +37 -0
  66. package/dist-ui5/resources/computec/appengine/uibase/models/AppEngineException.js +2 -0
  67. package/dist-ui5/resources/computec/appengine/uibase/models/AppEngineException.js.map +1 -0
  68. package/dist-ui5/resources/computec/appengine/uibase/models/BaseBusinessObject-dbg.js +231 -0
  69. package/dist-ui5/resources/computec/appengine/uibase/models/BaseBusinessObject.js +2 -0
  70. package/dist-ui5/resources/computec/appengine/uibase/models/BaseBusinessObject.js.map +1 -0
  71. package/dist-ui5/resources/computec/appengine/uibase/models/LocalStorage-dbg.js +75 -0
  72. package/dist-ui5/resources/computec/appengine/uibase/models/LocalStorage.js +2 -0
  73. package/dist-ui5/resources/computec/appengine/uibase/models/LocalStorage.js.map +1 -0
  74. package/dist-ui5/resources/computec/appengine/uibase/models/Session-dbg.js +15 -0
  75. package/dist-ui5/resources/computec/appengine/uibase/models/Session.js +2 -0
  76. package/dist-ui5/resources/computec/appengine/uibase/models/Session.js.map +1 -0
  77. package/dist-ui5/resources/computec/appengine/uibase/models/enums/HeadersContentTypeEnum-dbg.js +14 -0
  78. package/dist-ui5/resources/computec/appengine/uibase/models/enums/HeadersContentTypeEnum.js +2 -0
  79. package/dist-ui5/resources/computec/appengine/uibase/models/enums/HeadersContentTypeEnum.js.map +1 -0
  80. package/dist-ui5/resources/computec/appengine/uibase/models/enums/StorageTypeEnum-dbg.js +16 -0
  81. package/dist-ui5/resources/computec/appengine/uibase/models/enums/StorageTypeEnum.js +2 -0
  82. package/dist-ui5/resources/computec/appengine/uibase/models/enums/StorageTypeEnum.js.map +1 -0
  83. package/dist-ui5/resources/computec/appengine/uibase/models/interfaces/IAppEngineException-dbg.js +7 -0
  84. package/dist-ui5/resources/computec/appengine/uibase/models/interfaces/IAppEngineException.js +2 -0
  85. package/dist-ui5/resources/computec/appengine/uibase/models/interfaces/IAppEngineException.js.map +1 -0
  86. package/package.json +92 -0
@@ -0,0 +1,187 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ /**
4
+ * @experimental
5
+ * It is possible that this class will be removed or change name in the future.
6
+ * @class
7
+ * @abstract
8
+ * This abstract class is used to transform data from the server to business logic.
9
+ * It's currently marked as experimental, which means it may change in the future.
10
+ *
11
+ * **Static methods**:
12
+ *
13
+ * @static {function} `create` - This method is used to create a new instance of the class filled with the provided data.
14
+ * @static {function} `createMany` - This method is used to create multiple new instances of the class filled with the provided data.
15
+ *
16
+ * **Methods and properties**:
17
+ *
18
+ * @property {boolean} `USE_RAW_DATA` - This property is used to determine if the instance should use the raw data from the server.
19
+ * @property {function} `fillData` - This method is used to fill the instance with data from the server.
20
+ * @property {function} `clone` - This abstract method should be implemented in child classes to clone the instance.
21
+ * @property {function} `toJSON` - This method is used to remove the _rawData property from the object before converting it to JSON.
22
+ * @property {function} `getField` - This method is used to retrieve the value of a specific field from the _rawData object.
23
+ * @property {function} `cleanRaw` - This method is to reset the _rawData property to an empty object.
24
+ */
25
+ class BaseBusinessObject {
26
+ constructor() {
27
+ /**
28
+ * This property is used to determine if the instance should use the raw data from the server.
29
+ * If set to true, the instance will store the raw data in the _rawData property.
30
+ * This property is set to false by default.
31
+ * @method getField - This method is used to retrieve the value of a specific field from the _rawData object.
32
+ */
33
+ this.USE_RAW_DATA = false;
34
+ /**
35
+ * This property is used to store the raw data from the server.
36
+ * It is an empty object by default.
37
+ * The property is only used if the USE_RAW_DATA property is set to true.
38
+ * _rawData can be usefull when you need initial data to be able to revert the object to its original state.
39
+ * @method getField - This method is used to retrieve the value of a specific field from the _rawData object.
40
+ * @private
41
+ * @type {Record<string, unknown>}
42
+ * @memberof BaseBusinessObject
43
+ */
44
+ this._rawData = {};
45
+ }
46
+ /**
47
+ * This method is to reset the _rawData property to an empty object.
48
+ *
49
+ * **Recommendations**
50
+ *
51
+ * - Use this method aware that you will lose the initial data of the object.
52
+ * - **IMPORTANT** The method is recommended to use in `fillData` method when you don't use `getField` method in `toJSON` method.
53
+ * - It is useful when you need to clean the raw data from the object or you want to optimize the memory usage.
54
+ * @returns {}
55
+ */
56
+ cleanRaw() {
57
+ return (this._rawData = {});
58
+ }
59
+ /**
60
+ * Creates a new instance of the class filled with the provided data.
61
+ *
62
+ * @template T The type of the instance to create.
63
+ * @param {new () => T} this The constructor of the class to create an instance of.
64
+ * @param {Record<string, unknown>} data The data to fill the instance with.
65
+ * @returns {T} The new instance of the class filled with the provided data.
66
+ *
67
+ * @example
68
+ * // Example data from the server
69
+ * const data = { Code: 'US', Name: 'United States' };
70
+ *
71
+ * // Create a new Country instance filled with the data
72
+ * const country = Country.create(data);
73
+ *
74
+ * console.log(country.Code); // 'US'
75
+ * console.log(country.Name); // 'United States'
76
+ */
77
+ static create(data) {
78
+ const instance = new this();
79
+ instance.fillData(data);
80
+ return instance;
81
+ }
82
+ /**
83
+ * Creates multiple new instances of the class filled with the provided data.
84
+ *
85
+ * @template T The type of the instances to create.
86
+ * @param {new () => T} this The constructor of the class to create instances of.
87
+ * @param {Record<string, unknown>[]} data The array of data to fill the instances with.
88
+ * @returns {T[]} The new instances of the class filled with the provided data.
89
+ *
90
+ * @example
91
+ * // Example array of data from the server
92
+ * const dataArray = [{ Code: 'US', Name: 'United States' }, { Code: 'CA', Name: 'Canada' }];
93
+ *
94
+ * // Create new Country instances filled with the data
95
+ * const countries = Country.createMany(dataArray);
96
+ *
97
+ * console.log(countries[0].Code); // 'US'
98
+ * console.log(countries[0].Name); // 'United States'
99
+ * console.log(countries[1].Code); // 'CA'
100
+ * console.log(countries[1].Name); // 'Canada'
101
+ */
102
+ static createMany(data) {
103
+ return (data || []).map((item) => this.create(item));
104
+ }
105
+ /**
106
+ * This method is used to retrieve the value of a specific field from the _rawData object.
107
+ * It takes in a field parameter which represents the name of the field to retrieve.
108
+ * It tries to access the value of the field from the _rawData object using the provided field name.
109
+ * If the field exists, it returns the value casted to the specified type T.
110
+ * If the field does not exist or an error occurs, it returns null.
111
+ *
112
+ * @param field The name of the field to retrieve.
113
+ * @returns The value of the specified field casted to type T, or null if the field does not exist or an error occurs.
114
+ */
115
+ getField(field) {
116
+ try {
117
+ return this._rawData[field];
118
+ }
119
+ catch (error) {
120
+ return null;
121
+ }
122
+ }
123
+ /**
124
+ * Fills the instance with data from the server.
125
+ *
126
+ * @param {Record<string, unknown>} data - The data from the server.
127
+ * @returns {BaseBusinessObject} The instance of the class filled with the server data.
128
+ */
129
+ fillData(data) {
130
+ const useRawData = this.USE_RAW_DATA;
131
+ const result = (data || {});
132
+ result["_rawData"] = undefined;
133
+ Object.assign(this, result);
134
+ if (useRawData)
135
+ this._rawData = result;
136
+ return this;
137
+ }
138
+ /**
139
+ * Creates a clone of the instance.
140
+ *
141
+ * It is more optimized than structuredClone method. It is recommended to use this method when you don't need to deep clone the object.
142
+ *
143
+ * **Recommendations**
144
+ *
145
+ * - Use this method when you don't need to deep clone the object.
146
+ * - It is useful when you need to create a new instance of the class filled with the same data as the original instance.
147
+ * - Remember that the method doesn't clone the lower level objects.
148
+ *
149
+ * @returns {BaseBusinessObject} A clone of the instance.
150
+ */
151
+ clone() {
152
+ return this.cloneInternal(this);
153
+ }
154
+ /**
155
+ * Creates a structured clone of the instance.
156
+ *
157
+ * Simple method that use `create` method to create a new instance of the class filled with the same data as the original instance.
158
+ *
159
+ * It is more expensive than the `clone` method. It is recommended to use this method when you need to deep clone the object.
160
+ *
161
+ * **Important**
162
+ * - Remember that you decide what nested objects is cloned. Please check `fillData` method.
163
+ * - `fillData` method give possibility to clone nested objects that what you need to clone.
164
+ *
165
+ * **Recommendations**
166
+ *
167
+ * - Use this method when you need to deep clone the object.
168
+ * - The method is more expensive than the `clone` method.
169
+ *
170
+ * @returns {BaseBusinessObject} A clone of the instance.
171
+ */
172
+ structuredClone() {
173
+ return this.constructor.create(this);
174
+ }
175
+ cloneInternal(objectToClone) {
176
+ return Object.assign(new this.constructor(), objectToClone);
177
+ }
178
+ /**
179
+ * Remove the _rawData property from the object before converting it to JSON.
180
+ * https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/JSON/stringify
181
+ * @returns Record<string, unknown>
182
+ */
183
+ toJSON() {
184
+ return Object.assign(Object.assign({}, this), { _rawData: undefined, USE_RAW_DATA: undefined });
185
+ }
186
+ }
187
+ exports.default = BaseBusinessObject;
@@ -0,0 +1,9 @@
1
+ import { StorageTypeEnum } from "./enums/StorageTypeEnum";
2
+ export default class LocalStorage {
3
+ static put<T>(key: string, value: T, type?: StorageTypeEnum): void;
4
+ static get<T>(key: string, type?: StorageTypeEnum): T | null;
5
+ static remove(key: string, type?: StorageTypeEnum): void;
6
+ private static _prepareValueForStorage;
7
+ private static _parseValue;
8
+ }
9
+ //# sourceMappingURL=LocalStorage.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"LocalStorage.d.ts","sourceRoot":"","sources":["../../src/models/LocalStorage.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,yBAAyB,CAAC;AAE1D,MAAM,CAAC,OAAO,OAAO,YAAY;WAClB,GAAG,CAAC,CAAC,EAAE,GAAG,EAAE,MAAM,EAAE,KAAK,EAAE,CAAC,EAAE,IAAI,GAAE,eAAyC;WAU7E,GAAG,CAAC,CAAC,EAAE,GAAG,EAAE,MAAM,EAAE,IAAI,GAAE,eAAyC,GAAG,CAAC,GAAG,IAAI;WAiB9E,MAAM,CAAC,GAAG,EAAE,MAAM,EAAE,IAAI,GAAE,eAAyC;IAQjF,OAAO,CAAC,MAAM,CAAC,uBAAuB;IAItC,OAAO,CAAC,MAAM,CAAC,WAAW;CAO1B"}
@@ -0,0 +1,54 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const StorageTypeEnum_1 = require("./enums/StorageTypeEnum");
4
+ class LocalStorage {
5
+ static put(key, value, type = StorageTypeEnum_1.StorageTypeEnum.session) {
6
+ const valueToStore = this._prepareValueForStorage(value);
7
+ if (valueToStore === null)
8
+ return;
9
+ if (type === StorageTypeEnum_1.StorageTypeEnum.session) {
10
+ window.sessionStorage.setItem(key, valueToStore);
11
+ }
12
+ else if (type == StorageTypeEnum_1.StorageTypeEnum.local) {
13
+ window.localStorage.setItem(key, valueToStore);
14
+ }
15
+ }
16
+ static get(key, type = StorageTypeEnum_1.StorageTypeEnum.session) {
17
+ let value;
18
+ switch (type) {
19
+ case StorageTypeEnum_1.StorageTypeEnum.session:
20
+ value = window.sessionStorage.getItem(key);
21
+ break;
22
+ case StorageTypeEnum_1.StorageTypeEnum.local:
23
+ value = window.localStorage.getItem(key);
24
+ break;
25
+ default:
26
+ return null;
27
+ }
28
+ if (value === null)
29
+ return null;
30
+ return this._parseValue(value);
31
+ }
32
+ static remove(key, type = StorageTypeEnum_1.StorageTypeEnum.session) {
33
+ if (type === StorageTypeEnum_1.StorageTypeEnum.session) {
34
+ window.sessionStorage.removeItem(key);
35
+ }
36
+ else if (type === StorageTypeEnum_1.StorageTypeEnum.local) {
37
+ window.localStorage.removeItem(key);
38
+ }
39
+ }
40
+ static _prepareValueForStorage(value) {
41
+ if (typeof value === "object" && value !== null)
42
+ return JSON.stringify(value);
43
+ return value;
44
+ }
45
+ static _parseValue(str) {
46
+ try {
47
+ JSON.parse(str);
48
+ return JSON.parse(str);
49
+ }
50
+ catch (_a) { }
51
+ return str;
52
+ }
53
+ }
54
+ exports.default = LocalStorage;
@@ -0,0 +1,18 @@
1
+ export default class Session {
2
+ CompanyId: string;
3
+ ApiKey?: string;
4
+ UserName: string;
5
+ Language: string;
6
+ ClientId: string;
7
+ FormMode: boolean;
8
+ AppType: string;
9
+ SAPWebClient: boolean;
10
+ CompanyName: string;
11
+ CompanyDB: string;
12
+ ServerAddress: string;
13
+ ServerDescription: string;
14
+ SLDServerAddress: string;
15
+ SLDServerDescription: string;
16
+ Theme?: string;
17
+ }
18
+ //# sourceMappingURL=Session.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Session.d.ts","sourceRoot":"","sources":["../../src/models/Session.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,OAAO,OAAO,OAAO;IACpB,SAAS,EAAE,MAAM,CAAC;IAClB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,QAAQ,EAAE,MAAM,CAAC;IACjB,QAAQ,EAAE,MAAM,CAAC;IACjB,QAAQ,EAAE,MAAM,CAAC;IACjB,QAAQ,EAAE,OAAO,CAAC;IAClB,OAAO,EAAE,MAAM,CAAC;IAChB,YAAY,EAAE,OAAO,CAAC;IACtB,WAAW,EAAE,MAAM,CAAC;IACpB,SAAS,EAAE,MAAM,CAAC;IAClB,aAAa,EAAE,MAAM,CAAC;IACtB,iBAAiB,EAAE,MAAM,CAAC;IAC1B,gBAAgB,EAAE,MAAM,CAAC;IACzB,oBAAoB,EAAE,MAAM,CAAC;IAC7B,KAAK,CAAC,EAAE,MAAM,CAAC;CACtB"}
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ class Session {
4
+ }
5
+ exports.default = Session;
@@ -0,0 +1,8 @@
1
+ declare enum HeadersContentTypeEnum {
2
+ Json = "application/json",
3
+ Text = "text/plain",
4
+ OctetStream = "application/octet-stream",
5
+ Null = "null"
6
+ }
7
+ export default HeadersContentTypeEnum;
8
+ //# sourceMappingURL=HeadersContentTypeEnum.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"HeadersContentTypeEnum.d.ts","sourceRoot":"","sources":["../../../src/models/enums/HeadersContentTypeEnum.ts"],"names":[],"mappings":"AAAA,aAAK,sBAAsB;IACzB,IAAI,qBAAqB;IACzB,IAAI,eAAe;IACnB,WAAW,6BAA6B;IACxC,IAAI,SAAS;CACd;AAED,eAAe,sBAAsB,CAAC"}
@@ -0,0 +1,10 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ var HeadersContentTypeEnum;
4
+ (function (HeadersContentTypeEnum) {
5
+ HeadersContentTypeEnum["Json"] = "application/json";
6
+ HeadersContentTypeEnum["Text"] = "text/plain";
7
+ HeadersContentTypeEnum["OctetStream"] = "application/octet-stream";
8
+ HeadersContentTypeEnum["Null"] = "null";
9
+ })(HeadersContentTypeEnum || (HeadersContentTypeEnum = {}));
10
+ exports.default = HeadersContentTypeEnum;
@@ -0,0 +1,5 @@
1
+ export declare enum StorageTypeEnum {
2
+ session = 0,
3
+ local = 1
4
+ }
5
+ //# sourceMappingURL=StorageTypeEnum.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"StorageTypeEnum.d.ts","sourceRoot":"","sources":["../../../src/models/enums/StorageTypeEnum.ts"],"names":[],"mappings":"AAAA,oBAAY,eAAe;IAC1B,OAAO,IAAA;IACP,KAAK,IAAA;CACL"}
@@ -0,0 +1,8 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.StorageTypeEnum = void 0;
4
+ var StorageTypeEnum;
5
+ (function (StorageTypeEnum) {
6
+ StorageTypeEnum[StorageTypeEnum["session"] = 0] = "session";
7
+ StorageTypeEnum[StorageTypeEnum["local"] = 1] = "local";
8
+ })(StorageTypeEnum || (exports.StorageTypeEnum = StorageTypeEnum = {}));
@@ -0,0 +1,7 @@
1
+ export default interface IAppEngineException {
2
+ Title?: string;
3
+ Detail?: string;
4
+ title?: string;
5
+ detail?: string;
6
+ }
7
+ //# sourceMappingURL=IAppEngineException.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"IAppEngineException.d.ts","sourceRoot":"","sources":["../../../src/models/interfaces/IAppEngineException.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,OAAO,WAAW,mBAAmB;IAC1C,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,MAAM,CAAC,EAAE,MAAM,CAAC;CACjB"}
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,15 @@
1
+ <?xml version="1.0"?>
2
+ <library xmlns="http://www.sap.com/sap.ui.library.xsd">
3
+ <name>computec.appengine.uibase</name>
4
+ <vendor>CompuTec S.A.</vendor>
5
+ <version>1.0.2</version>
6
+ <copyright>Copyright (c) CompuTec S.A.2025</copyright>
7
+ <title>uibase</title>
8
+ <documentation>Core library required by AppEngine plugins</documentation>
9
+ <dependencies>
10
+ <dependency>
11
+ <libraryName>sap.ui.core</libraryName>
12
+ <libraryName>sap.m</libraryName>
13
+ </dependency>
14
+ </dependencies>
15
+ </library>