@techextensor/tab-sdk 0.0.29 → 0.0.32
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 +24 -24
- package/esm2022/lib/app/analytics.service.mjs +1 -1
- package/esm2022/lib/app/app.service.mjs +1 -1
- package/esm2022/lib/app/file.service.mjs +1 -1
- package/esm2022/lib/app/release.service.mjs +1 -1
- package/esm2022/lib/app/report.service.mjs +1 -1
- package/esm2022/lib/app/translator.service.mjs +1 -1
- package/esm2022/lib/auth/auth.service.mjs +1 -1
- package/esm2022/lib/crud/crud.service.mjs +3 -3
- package/esm2022/lib/enum/store.enum.mjs +1 -1
- package/esm2022/lib/enum/ui.enum.mjs +1 -1
- package/esm2022/lib/http/http.service.mjs +1 -1
- package/esm2022/lib/interface/http.interface.mjs +1 -1
- package/esm2022/lib/interface/ui.interface.mjs +1 -1
- package/esm2022/lib/store/store.service.mjs +1 -1
- package/esm2022/lib/tab-sdk.service.mjs +1 -1
- package/esm2022/lib/ui/form.service.mjs +1 -1
- package/esm2022/lib/ui/ui.service.mjs +1 -1
- package/esm2022/lib/util/util.service.mjs +1 -1
- package/esm2022/lib/workflow/transition.service.mjs +1 -1
- package/esm2022/public-api.mjs +1 -1
- package/fesm2022/techextensor-tab-sdk.mjs +2 -2
- package/fesm2022/techextensor-tab-sdk.mjs.map +1 -1
- package/lib/crud/crud.service.d.ts +1 -1
- package/lib/ui/ui.service.d.ts +5 -5
- package/package.json +2 -2
|
@@ -66,7 +66,7 @@ export declare class CrudService {
|
|
|
66
66
|
* @param parameters - Optional parameters to pass to the select query.
|
|
67
67
|
* @returns A promise that resolves to a common API response containing the result of executing the select query.
|
|
68
68
|
*/
|
|
69
|
-
executeSelectQuery(selectQueryId: string, parameters?: any): Promise<CommonApiResponse>;
|
|
69
|
+
executeSelectQuery(selectQueryId: string, parameters?: any, additionalConfig?: any): Promise<CommonApiResponse>;
|
|
70
70
|
/**
|
|
71
71
|
* Executes a select query using the provided select query data.
|
|
72
72
|
*
|
package/lib/ui/ui.service.d.ts
CHANGED
|
@@ -68,31 +68,31 @@ export declare class UiService {
|
|
|
68
68
|
*
|
|
69
69
|
* @param options The options for the notification.
|
|
70
70
|
*/
|
|
71
|
-
notify(options: NotificationOptions):
|
|
71
|
+
notify(options: NotificationOptions): any;
|
|
72
72
|
/**
|
|
73
73
|
* Displays a success notification to the user.
|
|
74
74
|
*
|
|
75
75
|
* @param options - The options for the notification, including message, title, and configuration.
|
|
76
76
|
*/
|
|
77
|
-
showSuccess(options: BaseNotificationOptions):
|
|
77
|
+
showSuccess(options: BaseNotificationOptions): any;
|
|
78
78
|
/**
|
|
79
79
|
* Displays a warning notification to the user.
|
|
80
80
|
*
|
|
81
81
|
* @param options - The options for the notification, including message, title, and configuration.
|
|
82
82
|
*/
|
|
83
|
-
showWarning(options: BaseNotificationOptions):
|
|
83
|
+
showWarning(options: BaseNotificationOptions): any;
|
|
84
84
|
/**
|
|
85
85
|
* Displays an info notification to the user.
|
|
86
86
|
*
|
|
87
87
|
* @param options - The options for the notification, including message, title, and configuration.
|
|
88
88
|
*/
|
|
89
|
-
showInfo(options: BaseNotificationOptions):
|
|
89
|
+
showInfo(options: BaseNotificationOptions): any;
|
|
90
90
|
/**
|
|
91
91
|
* Displays an error notification to the user.
|
|
92
92
|
*
|
|
93
93
|
* @param options - The options for the notification, including message, title, and configuration.
|
|
94
94
|
*/
|
|
95
|
-
showError(options: BaseNotificationOptions):
|
|
95
|
+
showError(options: BaseNotificationOptions): any;
|
|
96
96
|
/**
|
|
97
97
|
* Clears a notification by ID.
|
|
98
98
|
*
|
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@techextensor/tab-sdk",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.32",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/common": "^17.3.0",
|
|
6
6
|
"@angular/core": "^17.3.0",
|
|
7
|
-
"@techextensor/tab-core-utility": "^2.2.
|
|
7
|
+
"@techextensor/tab-core-utility": "^2.2.172"
|
|
8
8
|
},
|
|
9
9
|
"dependencies": {
|
|
10
10
|
"tslib": "^2.3.0"
|