@vectorize-io/hindsight-client 0.4.20 → 0.4.22
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.d.mts +383 -13
- package/dist/index.d.ts +383 -13
- package/dist/index.js +4 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4 -0
- package/dist/index.mjs.map +1 -1
- package/generated/sdk.gen.ts +34 -0
- package/generated/types.gen.ts +404 -12
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -857,6 +857,7 @@ var createClient = (config = {}) => {
|
|
|
857
857
|
var sdk_gen_exports = {};
|
|
858
858
|
__export(sdk_gen_exports, {
|
|
859
859
|
addBankBackground: () => addBankBackground,
|
|
860
|
+
auditLogStats: () => auditLogStats,
|
|
860
861
|
cancelOperation: () => cancelOperation,
|
|
861
862
|
clearBankMemories: () => clearBankMemories,
|
|
862
863
|
clearMemoryObservations: () => clearMemoryObservations,
|
|
@@ -886,6 +887,7 @@ __export(sdk_gen_exports, {
|
|
|
886
887
|
getOperationStatus: () => getOperationStatus,
|
|
887
888
|
getVersion: () => getVersion,
|
|
888
889
|
healthEndpointHealthGet: () => healthEndpointHealthGet,
|
|
890
|
+
listAuditLogs: () => listAuditLogs,
|
|
889
891
|
listBanks: () => listBanks,
|
|
890
892
|
listDirectives: () => listDirectives,
|
|
891
893
|
listDocuments: () => listDocuments,
|
|
@@ -1131,6 +1133,8 @@ var fileRetain = (options) => (options.client ?? client).post({
|
|
|
1131
1133
|
...options.headers
|
|
1132
1134
|
}
|
|
1133
1135
|
});
|
|
1136
|
+
var listAuditLogs = (options) => (options.client ?? client).get({ url: "/v1/default/banks/{bank_id}/audit-logs", ...options });
|
|
1137
|
+
var auditLogStats = (options) => (options.client ?? client).get({ url: "/v1/default/banks/{bank_id}/audit-logs/stats", ...options });
|
|
1134
1138
|
|
|
1135
1139
|
// src/index.ts
|
|
1136
1140
|
var HindsightError = class extends Error {
|