Skip to content

Commit

Permalink
feat: qlik api updates (#30)
Browse files Browse the repository at this point in the history
Co-authored-by: qlikossbuild <[email protected]>
  • Loading branch information
qlikossbuild and qlikossbuild authored Feb 12, 2024
1 parent f6e7854 commit 642452e
Show file tree
Hide file tree
Showing 94 changed files with 850 additions and 644 deletions.
20 changes: 10 additions & 10 deletions api-keys.js
Original file line number Diff line number Diff line change
@@ -1,51 +1,51 @@
"use strict";Object.defineProperty(exports, "__esModule", {value: true});


var _TH75GYUYjs = require('./chunks/TH75GYUY.js');
require('./chunks/SEXEAWEC.js');
var _URIW2U5Mjs = require('./chunks/URIW2U5M.js');
require('./chunks/2YWCEGTS.js');
require('./chunks/4HB3TAEO.js');

// src/public/rest/api-keys.ts
var getApiKeys = async (query, options) => _TH75GYUYjs.invokeFetch.call(void 0, "api-keys", {
var getApiKeys = async (query, options) => _URIW2U5Mjs.invokeFetch.call(void 0, "api-keys", {
method: "get",
pathTemplate: "/api/v1/api-keys",
query,
options
});
var createApiKey = async (body, options) => _TH75GYUYjs.invokeFetch.call(void 0, "api-keys", {
var createApiKey = async (body, options) => _URIW2U5Mjs.invokeFetch.call(void 0, "api-keys", {
method: "post",
pathTemplate: "/api/v1/api-keys",
body,
contentType: "application/json",
options
});
var getApiKeysConfig = async (tenantId, options) => _TH75GYUYjs.invokeFetch.call(void 0, "api-keys", {
var getApiKeysConfig = async (tenantId, options) => _URIW2U5Mjs.invokeFetch.call(void 0, "api-keys", {
method: "get",
pathTemplate: "/api/v1/api-keys/configs/{tenantId}",
pathVariables: { tenantId },
options
});
var patchApiKeysConfig = async (tenantId, body, options) => _TH75GYUYjs.invokeFetch.call(void 0, "api-keys", {
var patchApiKeysConfig = async (tenantId, body, options) => _URIW2U5Mjs.invokeFetch.call(void 0, "api-keys", {
method: "patch",
pathTemplate: "/api/v1/api-keys/configs/{tenantId}",
pathVariables: { tenantId },
body,
contentType: "application/json",
options
});
var deleteApiKey = async (id, options) => _TH75GYUYjs.invokeFetch.call(void 0, "api-keys", {
var deleteApiKey = async (id, options) => _URIW2U5Mjs.invokeFetch.call(void 0, "api-keys", {
method: "delete",
pathTemplate: "/api/v1/api-keys/{id}",
pathVariables: { id },
options
});
var getApiKey = async (id, options) => _TH75GYUYjs.invokeFetch.call(void 0, "api-keys", {
var getApiKey = async (id, options) => _URIW2U5Mjs.invokeFetch.call(void 0, "api-keys", {
method: "get",
pathTemplate: "/api/v1/api-keys/{id}",
pathVariables: { id },
options
});
var patchApiKey = async (id, body, options) => _TH75GYUYjs.invokeFetch.call(void 0, "api-keys", {
var patchApiKey = async (id, body, options) => _URIW2U5Mjs.invokeFetch.call(void 0, "api-keys", {
method: "patch",
pathTemplate: "/api/v1/api-keys/{id}",
pathVariables: { id },
Expand All @@ -54,7 +54,7 @@ var patchApiKey = async (id, body, options) => _TH75GYUYjs.invokeFetch.call(void
options
});
function clearCache() {
return _TH75GYUYjs.clearApiCache.call(void 0, "api-keys");
return _URIW2U5Mjs.clearApiCache.call(void 0, "api-keys");
}
var apiKeysExport = {
getApiKeys,
Expand Down
4 changes: 2 additions & 2 deletions api-keys.mjs
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import {
clearApiCache,
invokeFetch
} from "./chunks/VCYQUP4Y.mjs";
import "./chunks/X474LM7J.mjs";
} from "./chunks/3YV6X7S6.mjs";
import "./chunks/EHAANYDL.mjs";
import "./chunks/VSY5YIQY.mjs";

// src/public/rest/api-keys.ts
Expand Down
Loading

0 comments on commit 642452e

Please sign in to comment.