@delopay/sdk 0.1.5 → 0.1.6
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/index.cjs +2 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -154,12 +154,12 @@ var AuditLogs = class {
|
|
|
154
154
|
this.request = request;
|
|
155
155
|
}
|
|
156
156
|
async list(params) {
|
|
157
|
-
return this.request("GET", "/audit", {
|
|
157
|
+
return this.request("GET", "/admin-portal/audit", {
|
|
158
158
|
query: params
|
|
159
159
|
});
|
|
160
160
|
}
|
|
161
161
|
async retrieve(logId) {
|
|
162
|
-
return this.request("GET", `/audit/${logId}`);
|
|
162
|
+
return this.request("GET", `/admin-portal/audit/${logId}`);
|
|
163
163
|
}
|
|
164
164
|
};
|
|
165
165
|
|