UNPKG
@eldev/business-central-api
Version:
latest (0.5.1)
0.5.1
0.5.0
0.4.0
0.2.0
A Dynamics 365 Business Central client for TypeScript
@eldev/business-central-api
/
dist
/
pages
/
api-query.js
11 lines
•
311 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
{
ApiPage
}
from
"./api-page.js"
;
export
class
ApiQuery
{ #apiPage;
constructor
(
client, endpoint, schema
) {
this
.#apiPage =
new
ApiPage
(client, endpoint, schema); }
list
(
query, pOpts
) {
return
this
.#apiPage.
list
(query, pOpts); } }
//# sourceMappingURL=api-query.js.map