@qlik/api 1.31.0 → 1.32.0

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.
Files changed (95) hide show
  1. package/api-keys.js +2 -2
  2. package/apps.js +2 -2
  3. package/assistants.d.ts +1301 -0
  4. package/assistants.js +273 -0
  5. package/audits.js +2 -2
  6. package/auth.js +2 -2
  7. package/automation-connections.d.ts +366 -0
  8. package/automation-connections.js +91 -0
  9. package/automations.js +2 -2
  10. package/automl-deployments.d.ts +97 -0
  11. package/automl-deployments.js +27 -0
  12. package/automl-predictions.d.ts +214 -0
  13. package/automl-predictions.js +72 -0
  14. package/brands.js +2 -2
  15. package/chunks/{GUU3KZGK.js → RCLKKVYB.js} +1 -1
  16. package/chunks/{YKZ2QYHN.js → VVD2DPKQ.js} +2 -2
  17. package/chunks/{KBSD75QL.js → YTT2FEVE.js} +1 -1
  18. package/collections.js +2 -2
  19. package/conditions.d.ts +662 -0
  20. package/conditions.js +113 -0
  21. package/consumption.d.ts +182 -0
  22. package/consumption.js +24 -0
  23. package/csp-origins.js +2 -2
  24. package/csrf-token.d.ts +62 -0
  25. package/csrf-token.js +23 -0
  26. package/data-alerts.d.ts +1004 -0
  27. package/data-alerts.js +155 -0
  28. package/data-assets.js +2 -2
  29. package/data-connections.js +2 -2
  30. package/data-credentials.js +2 -2
  31. package/data-files.js +2 -2
  32. package/data-qualities.d.ts +175 -0
  33. package/data-qualities.js +44 -0
  34. package/data-sets.d.ts +424 -0
  35. package/data-sets.js +75 -0
  36. package/data-sources.d.ts +268 -0
  37. package/data-sources.js +39 -0
  38. package/data-stores.d.ts +537 -0
  39. package/data-stores.js +108 -0
  40. package/dcaas.d.ts +192 -0
  41. package/dcaas.js +39 -0
  42. package/di-projects.d.ts +673 -0
  43. package/di-projects.js +164 -0
  44. package/encryption.d.ts +370 -0
  45. package/encryption.js +98 -0
  46. package/extensions.js +2 -2
  47. package/glossaries.js +2 -2
  48. package/groups.js +2 -2
  49. package/identity-providers.js +2 -2
  50. package/index.d.ts +105 -1
  51. package/index.js +556 -4
  52. package/items.js +2 -2
  53. package/knowledgebases.d.ts +890 -0
  54. package/knowledgebases.js +169 -0
  55. package/licenses.d.ts +1 -1
  56. package/licenses.js +2 -2
  57. package/lineage-graphs.d.ts +712 -0
  58. package/lineage-graphs.js +92 -0
  59. package/ml.d.ts +2628 -0
  60. package/ml.js +384 -0
  61. package/notes.d.ts +110 -0
  62. package/notes.js +31 -0
  63. package/notifications.d.ts +98 -0
  64. package/notifications.js +24 -0
  65. package/oauth-clients.js +2 -2
  66. package/oauth-tokens.d.ts +126 -0
  67. package/oauth-tokens.js +31 -0
  68. package/package.json +28 -2
  69. package/qix.d.ts +1 -1
  70. package/qix.js +2 -2
  71. package/questions.d.ts +364 -0
  72. package/questions.js +34 -0
  73. package/quotas.js +2 -2
  74. package/reload-tasks.js +2 -2
  75. package/reloads.js +2 -2
  76. package/report-templates.d.ts +287 -0
  77. package/report-templates.js +80 -0
  78. package/reports.js +2 -2
  79. package/roles.js +2 -2
  80. package/sharing-tasks.d.ts +952 -0
  81. package/sharing-tasks.js +105 -0
  82. package/spaces.js +2 -2
  83. package/tasks.d.ts +564 -0
  84. package/tasks.js +106 -0
  85. package/temp-contents.js +2 -2
  86. package/tenants.js +2 -2
  87. package/themes.js +2 -2
  88. package/transports.js +2 -2
  89. package/ui-config.d.ts +274 -0
  90. package/ui-config.js +77 -0
  91. package/users.js +2 -2
  92. package/web-integrations.js +2 -2
  93. package/web-notifications.js +2 -2
  94. package/webhooks.js +2 -2
  95. /package/chunks/{DLKLPD7T.js → LTNGXTXG.js} +0 -0
@@ -0,0 +1,91 @@
1
+ import {
2
+ clearApiCache,
3
+ invokeFetch
4
+ } from "./chunks/VVD2DPKQ.js";
5
+ import "./chunks/LTNGXTXG.js";
6
+ import "./chunks/2ZQ3ZX7F.js";
7
+
8
+ // src/public/rest/automation-connections.ts
9
+ var getAutomationConnections = async (query, options) => invokeFetch("automation-connections", {
10
+ method: "get",
11
+ pathTemplate: "/api/v1/automation-connections",
12
+ query,
13
+ options
14
+ });
15
+ var createAutomationConnection = async (body, options) => invokeFetch("automation-connections", {
16
+ method: "post",
17
+ pathTemplate: "/api/v1/automation-connections",
18
+ body,
19
+ contentType: "application/json",
20
+ options
21
+ });
22
+ var deleteAutomationConnection = async (id, query, options) => invokeFetch("automation-connections", {
23
+ method: "delete",
24
+ pathTemplate: "/api/v1/automation-connections/{id}",
25
+ pathVariables: { id },
26
+ query,
27
+ options
28
+ });
29
+ var getAutomationConnection = async (id, options) => invokeFetch("automation-connections", {
30
+ method: "get",
31
+ pathTemplate: "/api/v1/automation-connections/{id}",
32
+ pathVariables: { id },
33
+ options
34
+ });
35
+ var updateAutomationConnection = async (id, body, options) => invokeFetch("automation-connections", {
36
+ method: "put",
37
+ pathTemplate: "/api/v1/automation-connections/{id}",
38
+ pathVariables: { id },
39
+ body,
40
+ contentType: "application/json",
41
+ options
42
+ });
43
+ var changeOwnerAutomationConnection = async (id, body, options) => invokeFetch("automation-connections", {
44
+ method: "post",
45
+ pathTemplate: "/api/v1/automation-connections/{id}/actions/change-owner",
46
+ pathVariables: { id },
47
+ body,
48
+ contentType: "application/json",
49
+ options
50
+ });
51
+ var changeSpaceAutomationConnection = async (id, body, options) => invokeFetch("automation-connections", {
52
+ method: "post",
53
+ pathTemplate: "/api/v1/automation-connections/{id}/actions/change-space",
54
+ pathVariables: { id },
55
+ body,
56
+ contentType: "application/json",
57
+ options
58
+ });
59
+ var checkAutomationConnection = async (id, options) => invokeFetch("automation-connections", {
60
+ method: "post",
61
+ pathTemplate: "/api/v1/automation-connections/{id}/actions/check",
62
+ pathVariables: { id },
63
+ options
64
+ });
65
+ function clearCache() {
66
+ return clearApiCache("automation-connections");
67
+ }
68
+ var automationConnectionsExport = {
69
+ getAutomationConnections,
70
+ createAutomationConnection,
71
+ deleteAutomationConnection,
72
+ getAutomationConnection,
73
+ updateAutomationConnection,
74
+ changeOwnerAutomationConnection,
75
+ changeSpaceAutomationConnection,
76
+ checkAutomationConnection,
77
+ clearCache
78
+ };
79
+ var automation_connections_default = automationConnectionsExport;
80
+ export {
81
+ changeOwnerAutomationConnection,
82
+ changeSpaceAutomationConnection,
83
+ checkAutomationConnection,
84
+ clearCache,
85
+ createAutomationConnection,
86
+ automation_connections_default as default,
87
+ deleteAutomationConnection,
88
+ getAutomationConnection,
89
+ getAutomationConnections,
90
+ updateAutomationConnection
91
+ };
package/automations.js CHANGED
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  clearApiCache,
3
3
  invokeFetch
4
- } from "./chunks/YKZ2QYHN.js";
5
- import "./chunks/DLKLPD7T.js";
4
+ } from "./chunks/VVD2DPKQ.js";
5
+ import "./chunks/LTNGXTXG.js";
6
6
  import "./chunks/2ZQ3ZX7F.js";
7
7
 
8
8
  // src/public/rest/automations.ts
@@ -0,0 +1,97 @@
1
+ import { A as ApiCallOptions } from './invoke-fetch-types-Cq7bjkqn.js';
2
+ import './auth-types-DqfMuSRX.js';
3
+
4
+ type AppErrorResponse = {
5
+ errors?: Error[];
6
+ };
7
+ type Error = {
8
+ /** The argument */
9
+ argument?: string;
10
+ /** The unique code for the error */
11
+ code: string;
12
+ /** The unique id of the error instance */
13
+ errorId?: string;
14
+ /** The issue code */
15
+ issue?: string;
16
+ meta?: {
17
+ /** The argument */
18
+ argument?: string;
19
+ /** Extra details for what may have caused the error */
20
+ details?: string;
21
+ /** The unique id of the error instance */
22
+ errorId?: string;
23
+ /** The resource type that the error occurred on */
24
+ resource?: string;
25
+ /** The resource id that the error occurred on */
26
+ resourceId?: string;
27
+ };
28
+ /** The resource type that the error occurred on */
29
+ resource?: string;
30
+ /** The resource id that the error occurred on */
31
+ resourceId?: string;
32
+ /** A summary of what went wrong */
33
+ title?: string;
34
+ };
35
+ type RealTimePredictionInputSchema = {
36
+ /** The name of a feature in the dataset. */
37
+ name?: string;
38
+ };
39
+ type RealtimePredictionInput = {
40
+ /** The rows of the dataset to produce predictions from. Date features must be in ISO 8601 format. */
41
+ rows?: string[][];
42
+ /** The schema of the input dataset. */
43
+ schema?: RealTimePredictionInputSchema[];
44
+ };
45
+ /**
46
+ * Generates predictions in a synchronous request and response.
47
+ *
48
+ * @param deploymentId The ID of the ML deployed model that will be employed to produce predictions.
49
+ * @param query an object with query parameters
50
+ * @param body an object with the body content
51
+ * @throws CreateAutomlDeploymentRealtimePredictionHttpError
52
+ */
53
+ declare const createAutomlDeploymentRealtimePrediction: (deploymentId: string, query: {
54
+ /** If true, will include a column with the reason why a prediction was not produced. */
55
+ includeNotPredictedReason?: boolean;
56
+ /** If true, the shapley values will be included in the response. */
57
+ includeShap?: boolean;
58
+ /** If true, the source data will be included in the response */
59
+ includeSource?: boolean;
60
+ /** The name of the feature in the source data to use as an index in the response data. The column will be included with its original name and values. This is intended to allow the caller to join results with source data. */
61
+ index?: string;
62
+ }, body: RealtimePredictionInput, options?: ApiCallOptions) => Promise<CreateAutomlDeploymentRealtimePredictionHttpResponse>;
63
+ type CreateAutomlDeploymentRealtimePredictionHttpResponse = {
64
+ data: void;
65
+ headers: Headers;
66
+ status: 200;
67
+ };
68
+ type CreateAutomlDeploymentRealtimePredictionHttpError = {
69
+ data: AppErrorResponse;
70
+ headers: Headers;
71
+ status: 400 | 401 | 403 | 404 | 409 | 503;
72
+ };
73
+ /**
74
+ * Clears the cache for automl-deployments api requests.
75
+ */
76
+ declare function clearCache(): void;
77
+ interface AutomlDeploymentsAPI {
78
+ /**
79
+ * Generates predictions in a synchronous request and response.
80
+ *
81
+ * @param deploymentId The ID of the ML deployed model that will be employed to produce predictions.
82
+ * @param query an object with query parameters
83
+ * @param body an object with the body content
84
+ * @throws CreateAutomlDeploymentRealtimePredictionHttpError
85
+ */
86
+ createAutomlDeploymentRealtimePrediction: typeof createAutomlDeploymentRealtimePrediction;
87
+ /**
88
+ * Clears the cache for automl-deployments api requests.
89
+ */
90
+ clearCache: typeof clearCache;
91
+ }
92
+ /**
93
+ * Functions for the automl-deployments api
94
+ */
95
+ declare const automlDeploymentsExport: AutomlDeploymentsAPI;
96
+
97
+ export { type AppErrorResponse, type AutomlDeploymentsAPI, type CreateAutomlDeploymentRealtimePredictionHttpError, type CreateAutomlDeploymentRealtimePredictionHttpResponse, type Error, type RealTimePredictionInputSchema, type RealtimePredictionInput, clearCache, createAutomlDeploymentRealtimePrediction, automlDeploymentsExport as default };
@@ -0,0 +1,27 @@
1
+ import {
2
+ clearApiCache,
3
+ invokeFetch
4
+ } from "./chunks/VVD2DPKQ.js";
5
+ import "./chunks/LTNGXTXG.js";
6
+ import "./chunks/2ZQ3ZX7F.js";
7
+
8
+ // src/public/rest/automl-deployments.ts
9
+ var createAutomlDeploymentRealtimePrediction = async (deploymentId, query, body, options) => invokeFetch("automl-deployments", {
10
+ method: "post",
11
+ pathTemplate: "/api/v1/automl-deployments/{deploymentId}/realtime-predictions",
12
+ pathVariables: { deploymentId },
13
+ query,
14
+ body,
15
+ contentType: "application/json",
16
+ options
17
+ });
18
+ function clearCache() {
19
+ return clearApiCache("automl-deployments");
20
+ }
21
+ var automlDeploymentsExport = { createAutomlDeploymentRealtimePrediction, clearCache };
22
+ var automl_deployments_default = automlDeploymentsExport;
23
+ export {
24
+ clearCache,
25
+ createAutomlDeploymentRealtimePrediction,
26
+ automl_deployments_default as default
27
+ };
@@ -0,0 +1,214 @@
1
+ import { A as ApiCallOptions } from './invoke-fetch-types-Cq7bjkqn.js';
2
+ import './auth-types-DqfMuSRX.js';
3
+
4
+ type AppErrorResponse = {
5
+ errors?: Error[];
6
+ };
7
+ type Error = {
8
+ /** The argument */
9
+ argument?: string;
10
+ /** The unique code for the error */
11
+ code: string;
12
+ /** The unique id of the error instance */
13
+ errorId?: string;
14
+ /** The issue code */
15
+ issue?: string;
16
+ meta?: {
17
+ /** The argument */
18
+ argument?: string;
19
+ /** Extra details for what may have caused the error */
20
+ details?: string;
21
+ /** The unique id of the error instance */
22
+ errorId?: string;
23
+ /** The resource type that the error occurred on */
24
+ resource?: string;
25
+ /** The resource id that the error occurred on */
26
+ resourceId?: string;
27
+ };
28
+ /** The resource type that the error occurred on */
29
+ resource?: string;
30
+ /** The resource id that the error occurred on */
31
+ resourceId?: string;
32
+ /** A summary of what went wrong */
33
+ title?: string;
34
+ };
35
+ /**
36
+ * Returns a file containing the shapley values in coordinate form that are associated with a prediction ID.
37
+ *
38
+ * @param predictionId The ID of the prediction configuration object that provides parameters to be applied when the prediction is produced.
39
+ * @param query an object with query parameters
40
+ * @throws GetAutomlPredictionCoordinateShapHttpError
41
+ */
42
+ declare const getAutomlPredictionCoordinateShap: (predictionId: string, query: {
43
+ refId?: string;
44
+ }, options?: ApiCallOptions) => Promise<GetAutomlPredictionCoordinateShapHttpResponse>;
45
+ type GetAutomlPredictionCoordinateShapHttpResponse = {
46
+ data: string;
47
+ headers: Headers;
48
+ status: 200;
49
+ };
50
+ type GetAutomlPredictionCoordinateShapHttpError = {
51
+ data: AppErrorResponse;
52
+ headers: Headers;
53
+ status: 400 | 401 | 403 | 404 | 409 | 503;
54
+ };
55
+ /**
56
+ * Retrieve jobs that are associated with a prediction. Job with correlation type `prediction`.
57
+ *
58
+ * @param predictionId The ID of the prediction configuration object that provides parameters to be applied when the prediction is produced.
59
+ * @throws CreateAutomlPredictionJobHttpError
60
+ */
61
+ declare const createAutomlPredictionJob: (predictionId: string, options?: ApiCallOptions) => Promise<CreateAutomlPredictionJobHttpResponse>;
62
+ type CreateAutomlPredictionJobHttpResponse = {
63
+ data: void;
64
+ headers: Headers;
65
+ status: 200;
66
+ };
67
+ type CreateAutomlPredictionJobHttpError = {
68
+ data: AppErrorResponse;
69
+ headers: Headers;
70
+ status: 400 | 401 | 403 | 404 | 409 | 503;
71
+ };
72
+ /**
73
+ * Returns a file containing any rows in a prediction operation where a prediction was unable to be produced.
74
+ *
75
+ * @param predictionId The ID of the prediction configuration object that provides parameters to be applied when the prediction is produced.
76
+ * @param query an object with query parameters
77
+ * @throws GetAutomlPredictionNotPredictedReasonsHttpError
78
+ */
79
+ declare const getAutomlPredictionNotPredictedReasons: (predictionId: string, query: {
80
+ refId?: string;
81
+ }, options?: ApiCallOptions) => Promise<GetAutomlPredictionNotPredictedReasonsHttpResponse>;
82
+ type GetAutomlPredictionNotPredictedReasonsHttpResponse = {
83
+ data: string;
84
+ headers: Headers;
85
+ status: 200;
86
+ };
87
+ type GetAutomlPredictionNotPredictedReasonsHttpError = {
88
+ data: AppErrorResponse;
89
+ headers: Headers;
90
+ status: 400 | 401 | 403 | 404 | 409 | 503;
91
+ };
92
+ /**
93
+ * Returns a file containing the predicted values that are associated with a prediction ID.
94
+ *
95
+ * @param predictionId The ID of the prediction configuration object that provides parameters to be applied when the prediction is produced.
96
+ * @param query an object with query parameters
97
+ * @throws GetAutomlPredictionPredictionsHttpError
98
+ */
99
+ declare const getAutomlPredictionPredictions: (predictionId: string, query: {
100
+ refId?: string;
101
+ }, options?: ApiCallOptions) => Promise<GetAutomlPredictionPredictionsHttpResponse>;
102
+ type GetAutomlPredictionPredictionsHttpResponse = {
103
+ data: void;
104
+ headers: Headers;
105
+ status: 200;
106
+ };
107
+ type GetAutomlPredictionPredictionsHttpError = {
108
+ data: AppErrorResponse;
109
+ headers: Headers;
110
+ status: 400 | 401 | 403 | 404 | 409 | 503;
111
+ };
112
+ /**
113
+ * Returns a file containing the shapley values that are associated with a prediction ID.
114
+ *
115
+ * @param predictionId The ID of the prediction configuration object that provides parameters to be applied when the prediction is produced.
116
+ * @param query an object with query parameters
117
+ * @throws GetAutomlPredictionShapHttpError
118
+ */
119
+ declare const getAutomlPredictionShap: (predictionId: string, query: {
120
+ refId?: string;
121
+ }, options?: ApiCallOptions) => Promise<GetAutomlPredictionShapHttpResponse>;
122
+ type GetAutomlPredictionShapHttpResponse = {
123
+ data: void;
124
+ headers: Headers;
125
+ status: 200;
126
+ };
127
+ type GetAutomlPredictionShapHttpError = {
128
+ data: AppErrorResponse;
129
+ headers: Headers;
130
+ status: 400 | 401 | 403 | 404 | 409 | 503;
131
+ };
132
+ /**
133
+ * Returns a file containing the source values and an index field that are associated with a prediction ID.
134
+ *
135
+ * @param predictionId The ID of the prediction configuration object that provides parameters to be applied when the prediction is produced.
136
+ * @param query an object with query parameters
137
+ * @throws GetAutomlPredictionSourceHttpError
138
+ */
139
+ declare const getAutomlPredictionSource: (predictionId: string, query: {
140
+ refId?: string;
141
+ }, options?: ApiCallOptions) => Promise<GetAutomlPredictionSourceHttpResponse>;
142
+ type GetAutomlPredictionSourceHttpResponse = {
143
+ data: string;
144
+ headers: Headers;
145
+ status: 200;
146
+ };
147
+ type GetAutomlPredictionSourceHttpError = {
148
+ data: AppErrorResponse;
149
+ headers: Headers;
150
+ status: 400 | 401 | 403 | 404 | 409 | 503;
151
+ };
152
+ /**
153
+ * Clears the cache for automl-predictions api requests.
154
+ */
155
+ declare function clearCache(): void;
156
+ interface AutomlPredictionsAPI {
157
+ /**
158
+ * Returns a file containing the shapley values in coordinate form that are associated with a prediction ID.
159
+ *
160
+ * @param predictionId The ID of the prediction configuration object that provides parameters to be applied when the prediction is produced.
161
+ * @param query an object with query parameters
162
+ * @throws GetAutomlPredictionCoordinateShapHttpError
163
+ */
164
+ getAutomlPredictionCoordinateShap: typeof getAutomlPredictionCoordinateShap;
165
+ /**
166
+ * Retrieve jobs that are associated with a prediction. Job with correlation type `prediction`.
167
+ *
168
+ * @param predictionId The ID of the prediction configuration object that provides parameters to be applied when the prediction is produced.
169
+ * @throws CreateAutomlPredictionJobHttpError
170
+ */
171
+ createAutomlPredictionJob: typeof createAutomlPredictionJob;
172
+ /**
173
+ * Returns a file containing any rows in a prediction operation where a prediction was unable to be produced.
174
+ *
175
+ * @param predictionId The ID of the prediction configuration object that provides parameters to be applied when the prediction is produced.
176
+ * @param query an object with query parameters
177
+ * @throws GetAutomlPredictionNotPredictedReasonsHttpError
178
+ */
179
+ getAutomlPredictionNotPredictedReasons: typeof getAutomlPredictionNotPredictedReasons;
180
+ /**
181
+ * Returns a file containing the predicted values that are associated with a prediction ID.
182
+ *
183
+ * @param predictionId The ID of the prediction configuration object that provides parameters to be applied when the prediction is produced.
184
+ * @param query an object with query parameters
185
+ * @throws GetAutomlPredictionPredictionsHttpError
186
+ */
187
+ getAutomlPredictionPredictions: typeof getAutomlPredictionPredictions;
188
+ /**
189
+ * Returns a file containing the shapley values that are associated with a prediction ID.
190
+ *
191
+ * @param predictionId The ID of the prediction configuration object that provides parameters to be applied when the prediction is produced.
192
+ * @param query an object with query parameters
193
+ * @throws GetAutomlPredictionShapHttpError
194
+ */
195
+ getAutomlPredictionShap: typeof getAutomlPredictionShap;
196
+ /**
197
+ * Returns a file containing the source values and an index field that are associated with a prediction ID.
198
+ *
199
+ * @param predictionId The ID of the prediction configuration object that provides parameters to be applied when the prediction is produced.
200
+ * @param query an object with query parameters
201
+ * @throws GetAutomlPredictionSourceHttpError
202
+ */
203
+ getAutomlPredictionSource: typeof getAutomlPredictionSource;
204
+ /**
205
+ * Clears the cache for automl-predictions api requests.
206
+ */
207
+ clearCache: typeof clearCache;
208
+ }
209
+ /**
210
+ * Functions for the automl-predictions api
211
+ */
212
+ declare const automlPredictionsExport: AutomlPredictionsAPI;
213
+
214
+ export { type AppErrorResponse, type AutomlPredictionsAPI, type CreateAutomlPredictionJobHttpError, type CreateAutomlPredictionJobHttpResponse, type Error, type GetAutomlPredictionCoordinateShapHttpError, type GetAutomlPredictionCoordinateShapHttpResponse, type GetAutomlPredictionNotPredictedReasonsHttpError, type GetAutomlPredictionNotPredictedReasonsHttpResponse, type GetAutomlPredictionPredictionsHttpError, type GetAutomlPredictionPredictionsHttpResponse, type GetAutomlPredictionShapHttpError, type GetAutomlPredictionShapHttpResponse, type GetAutomlPredictionSourceHttpError, type GetAutomlPredictionSourceHttpResponse, clearCache, createAutomlPredictionJob, automlPredictionsExport as default, getAutomlPredictionCoordinateShap, getAutomlPredictionNotPredictedReasons, getAutomlPredictionPredictions, getAutomlPredictionShap, getAutomlPredictionSource };
@@ -0,0 +1,72 @@
1
+ import {
2
+ clearApiCache,
3
+ invokeFetch
4
+ } from "./chunks/VVD2DPKQ.js";
5
+ import "./chunks/LTNGXTXG.js";
6
+ import "./chunks/2ZQ3ZX7F.js";
7
+
8
+ // src/public/rest/automl-predictions.ts
9
+ var getAutomlPredictionCoordinateShap = async (predictionId, query, options) => invokeFetch("automl-predictions", {
10
+ method: "get",
11
+ pathTemplate: "/api/v1/automl-predictions/{predictionId}/coordinate-shap",
12
+ pathVariables: { predictionId },
13
+ query,
14
+ options
15
+ });
16
+ var createAutomlPredictionJob = async (predictionId, options) => invokeFetch("automl-predictions", {
17
+ method: "post",
18
+ pathTemplate: "/api/v1/automl-predictions/{predictionId}/jobs",
19
+ pathVariables: { predictionId },
20
+ options
21
+ });
22
+ var getAutomlPredictionNotPredictedReasons = async (predictionId, query, options) => invokeFetch("automl-predictions", {
23
+ method: "get",
24
+ pathTemplate: "/api/v1/automl-predictions/{predictionId}/not-predicted-reasons",
25
+ pathVariables: { predictionId },
26
+ query,
27
+ options
28
+ });
29
+ var getAutomlPredictionPredictions = async (predictionId, query, options) => invokeFetch("automl-predictions", {
30
+ method: "get",
31
+ pathTemplate: "/api/v1/automl-predictions/{predictionId}/predictions",
32
+ pathVariables: { predictionId },
33
+ query,
34
+ options
35
+ });
36
+ var getAutomlPredictionShap = async (predictionId, query, options) => invokeFetch("automl-predictions", {
37
+ method: "get",
38
+ pathTemplate: "/api/v1/automl-predictions/{predictionId}/shap",
39
+ pathVariables: { predictionId },
40
+ query,
41
+ options
42
+ });
43
+ var getAutomlPredictionSource = async (predictionId, query, options) => invokeFetch("automl-predictions", {
44
+ method: "get",
45
+ pathTemplate: "/api/v1/automl-predictions/{predictionId}/source",
46
+ pathVariables: { predictionId },
47
+ query,
48
+ options
49
+ });
50
+ function clearCache() {
51
+ return clearApiCache("automl-predictions");
52
+ }
53
+ var automlPredictionsExport = {
54
+ getAutomlPredictionCoordinateShap,
55
+ createAutomlPredictionJob,
56
+ getAutomlPredictionNotPredictedReasons,
57
+ getAutomlPredictionPredictions,
58
+ getAutomlPredictionShap,
59
+ getAutomlPredictionSource,
60
+ clearCache
61
+ };
62
+ var automl_predictions_default = automlPredictionsExport;
63
+ export {
64
+ clearCache,
65
+ createAutomlPredictionJob,
66
+ automl_predictions_default as default,
67
+ getAutomlPredictionCoordinateShap,
68
+ getAutomlPredictionNotPredictedReasons,
69
+ getAutomlPredictionPredictions,
70
+ getAutomlPredictionShap,
71
+ getAutomlPredictionSource
72
+ };
package/brands.js CHANGED
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  clearApiCache,
3
3
  invokeFetch
4
- } from "./chunks/YKZ2QYHN.js";
5
- import "./chunks/DLKLPD7T.js";
4
+ } from "./chunks/VVD2DPKQ.js";
5
+ import "./chunks/LTNGXTXG.js";
6
6
  import "./chunks/2ZQ3ZX7F.js";
7
7
 
8
8
  // src/public/rest/brands.ts
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  getAuthRuntimeModule
3
- } from "./DLKLPD7T.js";
3
+ } from "./LTNGXTXG.js";
4
4
 
5
5
  // src/public/auth.ts
6
6
  function registerAuthModule(name, authModule) {
@@ -1,12 +1,12 @@
1
1
  import {
2
2
  getInvokeFetchRuntimeModule
3
- } from "./DLKLPD7T.js";
3
+ } from "./LTNGXTXG.js";
4
4
  import {
5
5
  isBrowser
6
6
  } from "./2ZQ3ZX7F.js";
7
7
 
8
8
  // src/public/invoke-fetch.ts
9
- var defaultUserAgent = "qlik-api/1.31.0";
9
+ var defaultUserAgent = "qlik-api/1.32.0";
10
10
  async function invokeFetch(api, props) {
11
11
  const hostConfig = props.options?.hostConfig;
12
12
  let userAgent;
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  getQixRuntimeModule
3
- } from "./DLKLPD7T.js";
3
+ } from "./LTNGXTXG.js";
4
4
 
5
5
  // src/public/qix.ts
6
6
  function openAppSession(appSessionProps) {
package/collections.js CHANGED
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  clearApiCache,
3
3
  invokeFetch
4
- } from "./chunks/YKZ2QYHN.js";
5
- import "./chunks/DLKLPD7T.js";
4
+ } from "./chunks/VVD2DPKQ.js";
5
+ import "./chunks/LTNGXTXG.js";
6
6
  import "./chunks/2ZQ3ZX7F.js";
7
7
 
8
8
  // src/public/rest/collections.ts