@adins/ucsearch 2.2.7 → 2.2.8
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 +12 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -3,6 +3,9 @@
|
|
|
3
3
|
This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 7.2.0.
|
|
4
4
|
|
|
5
5
|
## Version
|
|
6
|
+
Version 2.2.8
|
|
7
|
+
1. update ReadMe
|
|
8
|
+
|
|
6
9
|
Version 2.2.7
|
|
7
10
|
1. join query dengan API luar
|
|
8
11
|
2. update InputSearchObj
|
|
@@ -248,6 +251,15 @@ InputSearchObj :
|
|
|
248
251
|
value: "CF4W"
|
|
249
252
|
}
|
|
250
253
|
] *optional // list value for headerList type switch
|
|
254
|
+
- isJoinExAPI : boolean // to determine if query join external API
|
|
255
|
+
- integrationObj : {// mandatory information that needed to be send if isJoinExAPI true
|
|
256
|
+
baseUrl: environment url
|
|
257
|
+
apiPath: routing url
|
|
258
|
+
requestObj: request object for the external API
|
|
259
|
+
leftColumnToJoin: querystring join query external API // written from the alias select from querystring and query external API
|
|
260
|
+
rightColumnToJoin: query external API join querystring // written from the alias select from querystring and query external API
|
|
261
|
+
} IntegrationObj (object)
|
|
262
|
+
*notes : querystring and query external API cannot select the same column from the same table
|
|
251
263
|
|
|
252
264
|
search.json :
|
|
253
265
|
``` javascript
|