@qlik/api 2.4.0 → 2.4.1

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/apps.d.ts CHANGED
@@ -157,6 +157,9 @@ type DataModelMetadata = {
157
157
  usage?: UsageEnum;
158
158
  };
159
159
  type EngineGBSize = "0" | "40" | "60" | "80" | "120" | "160" | "200";
160
+ /**
161
+ * Engine size override for app placement on non reload engines.
162
+ */
160
163
  type EngineSize = {
161
164
  minEngineSize?: EngineGBSize;
162
165
  };
@@ -1634,9 +1637,9 @@ type UpdateAppOwnerHttpError = {
1634
1637
  status: 403 | 404;
1635
1638
  };
1636
1639
  /**
1640
+ * Removes the app size override for an app.
1637
1641
  *
1638
- *
1639
- * @param appId
1642
+ * @param appId Identifier of the app
1640
1643
  * @throws DeleteAppPlacementHttpError
1641
1644
  */
1642
1645
  declare function deleteAppPlacement(appId: string, options?: ApiCallOptions): Promise<DeleteAppPlacementHttpResponse>;
@@ -1651,9 +1654,9 @@ type DeleteAppPlacementHttpError = {
1651
1654
  status: number;
1652
1655
  };
1653
1656
  /**
1657
+ * Retrieves the app size override for an app.
1654
1658
  *
1655
- *
1656
- * @param appId
1659
+ * @param appId Identifier of the app
1657
1660
  * @throws GetAppPlacementHttpError
1658
1661
  */
1659
1662
  declare function getAppPlacement(appId: string, options?: ApiCallOptions): Promise<GetAppPlacementHttpResponse>;
@@ -1668,9 +1671,9 @@ type GetAppPlacementHttpError = {
1668
1671
  status: number;
1669
1672
  };
1670
1673
  /**
1674
+ * Sets the app size override for an app.
1671
1675
  *
1672
- *
1673
- * @param appId
1676
+ * @param appId Identifier of the app
1674
1677
  * @param body an object with the body content
1675
1678
  * @throws ReplaceAppPlacementHttpError
1676
1679
  */
@@ -2333,23 +2336,23 @@ type AppsAPI = {
2333
2336
  */
2334
2337
  updateAppOwner: typeof updateAppOwner;
2335
2338
  /**
2339
+ * Removes the app size override for an app.
2336
2340
  *
2337
- *
2338
- * @param appId
2341
+ * @param appId Identifier of the app
2339
2342
  * @throws DeleteAppPlacementHttpError
2340
2343
  */
2341
2344
  deleteAppPlacement: typeof deleteAppPlacement;
2342
2345
  /**
2346
+ * Retrieves the app size override for an app.
2343
2347
  *
2344
- *
2345
- * @param appId
2348
+ * @param appId Identifier of the app
2346
2349
  * @throws GetAppPlacementHttpError
2347
2350
  */
2348
2351
  getAppPlacement: typeof getAppPlacement;
2349
2352
  /**
2353
+ * Sets the app size override for an app.
2350
2354
  *
2351
- *
2352
- * @param appId
2355
+ * @param appId Identifier of the app
2353
2356
  * @param body an object with the body content
2354
2357
  * @throws ReplaceAppPlacementHttpError
2355
2358
  */
package/apps.js CHANGED
@@ -428,9 +428,9 @@ async function updateAppOwner(appId, body, options) {
428
428
  });
429
429
  }
430
430
  /**
431
+ * Removes the app size override for an app.
431
432
  *
432
- *
433
- * @param appId
433
+ * @param appId Identifier of the app
434
434
  * @throws DeleteAppPlacementHttpError
435
435
  */
436
436
  async function deleteAppPlacement(appId, options) {
@@ -442,9 +442,9 @@ async function deleteAppPlacement(appId, options) {
442
442
  });
443
443
  }
444
444
  /**
445
+ * Retrieves the app size override for an app.
445
446
  *
446
- *
447
- * @param appId
447
+ * @param appId Identifier of the app
448
448
  * @throws GetAppPlacementHttpError
449
449
  */
450
450
  async function getAppPlacement(appId, options) {
@@ -456,9 +456,9 @@ async function getAppPlacement(appId, options) {
456
456
  });
457
457
  }
458
458
  /**
459
+ * Sets the app size override for an app.
459
460
  *
460
- *
461
- * @param appId
461
+ * @param appId Identifier of the app
462
462
  * @param body an object with the body content
463
463
  * @throws ReplaceAppPlacementHttpError
464
464
  */
@@ -2,7 +2,7 @@ import { r as isBrowser } from "./utils-jkpLuYZR.js";
2
2
  import { n as getInvokeFetchRuntimeModule } from "./public-runtime-modules-2KfyI2qM.js";
3
3
 
4
4
  //#region src/public/invoke-fetch.ts
5
- const defaultUserAgent = "qlik-api/2.4.0";
5
+ const defaultUserAgent = "qlik-api/2.4.1";
6
6
  async function invokeFetch(api, props) {
7
7
  const hostConfig = props.options?.hostConfig;
8
8
  let userAgent;
@@ -1,7 +1,7 @@
1
1
  import { HostConfig } from "../auth-types.js";
2
2
 
3
3
  //#region src/qix/types/engine-schema.d.ts
4
- declare const QIX_SCHEMA_VERSION = "12.2697.0";
4
+ declare const QIX_SCHEMA_VERSION = "12.2703.0";
5
5
  type AlfaNumString = {
6
6
  /**
7
7
  * Calculated value.
@@ -62,6 +62,8 @@ type SamplingConfiguration = {
62
62
  sampleSize?: number;
63
63
  };
64
64
  /**
65
+ * @deprecated
66
+ *
65
67
  * Triggers the computation of data quality.
66
68
  *
67
69
  * @param body an object with the body content
@@ -79,6 +81,8 @@ type TriggerDataQualitiesComputationHttpError = {
79
81
  status: 400 | 401 | 403 | 500 | 503;
80
82
  };
81
83
  /**
84
+ * @deprecated
85
+ *
82
86
  * Returns the execution status of a data quality computation.
83
87
  * @example
84
88
  * getDataQualitiesComputation(
@@ -100,6 +104,8 @@ type GetDataQualitiesComputationHttpError = {
100
104
  status: 400 | 401 | 403 | 404 | 500 | 503;
101
105
  };
102
106
  /**
107
+ * @deprecated
108
+ *
103
109
  * Returns the global data results for a dataset, including counts of total, valid, invalid, and empty sample cells.
104
110
  *
105
111
  * @param query an object with query parameters
@@ -125,6 +131,8 @@ type GetDataQualitiesGlobalResultsHttpError = {
125
131
  declare function clearCache(): void;
126
132
  type DataQualitiesAPI = {
127
133
  /**
134
+ * @deprecated
135
+ *
128
136
  * Triggers the computation of data quality.
129
137
  *
130
138
  * @param body an object with the body content
@@ -132,6 +140,8 @@ type DataQualitiesAPI = {
132
140
  */
133
141
  triggerDataQualitiesComputation: typeof triggerDataQualitiesComputation;
134
142
  /**
143
+ * @deprecated
144
+ *
135
145
  * Returns the execution status of a data quality computation.
136
146
  * @example
137
147
  * getDataQualitiesComputation(
@@ -143,6 +153,8 @@ type DataQualitiesAPI = {
143
153
  */
144
154
  getDataQualitiesComputation: typeof getDataQualitiesComputation;
145
155
  /**
156
+ * @deprecated
157
+ *
146
158
  * Returns the global data results for a dataset, including counts of total, valid, invalid, and empty sample cells.
147
159
  *
148
160
  * @param query an object with query parameters
package/data-qualities.js CHANGED
@@ -3,6 +3,8 @@ import { n as invokeFetch, t as clearApiCache } from "./chunks/invoke-fetch-DMAi
3
3
 
4
4
  //#region src/public/rest/data-qualities.ts
5
5
  /**
6
+ * @deprecated
7
+ *
6
8
  * Triggers the computation of data quality.
7
9
  *
8
10
  * @param body an object with the body content
@@ -18,6 +20,8 @@ async function triggerDataQualitiesComputation(body, options) {
18
20
  });
19
21
  }
20
22
  /**
23
+ * @deprecated
24
+ *
21
25
  * Returns the execution status of a data quality computation.
22
26
  * @example
23
27
  * getDataQualitiesComputation(
@@ -36,6 +40,8 @@ async function getDataQualitiesComputation(computationId, options) {
36
40
  });
37
41
  }
38
42
  /**
43
+ * @deprecated
44
+ *
39
45
  * Returns the global data results for a dataset, including counts of total, valid, invalid, and empty sample cells.
40
46
  *
41
47
  * @param query an object with query parameters
package/index.d.ts CHANGED
@@ -2,7 +2,7 @@ import { HostConfig } from "./auth-types.js";
2
2
  import "./chunks/invoke-fetch-DFc3yzaj.js";
3
3
  import { InterceptorsAPI, createInterceptors } from "./interceptors.js";
4
4
  import { AuthAPI, getAccessToken, getWebResourceAuthParams, registerAuthModule, registerHostConfig, setDefaultHostConfig, unregisterHostConfig } from "./auth.js";
5
- import "./chunks/qix-types-y_di0roE.js";
5
+ import "./chunks/qix-types-Bjha7sch.js";
6
6
  import { QixAPI } from "./qix.js";
7
7
  import { ChangeStoresAPI } from "./analytics/change-stores.js";
8
8
  import { AnalyticsAPI } from "./analytics.js";
package/package.json CHANGED
@@ -94,5 +94,5 @@
94
94
  "./interceptors": "./interceptors.js",
95
95
  "./qix": "./qix.js"
96
96
  },
97
- "version": "2.4.0"
97
+ "version": "2.4.1"
98
98
  }
package/qix.d.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  import { HostConfig } from "./auth-types.js";
2
2
  import "./auth.js";
3
- import { $ as MeasureListData, $a as OleDbProvider, $i as NxListObjectExpressionDef, $n as GenericObjectEntry, $o as StateEnumType, $r as NxCalcCond, $t as DataTableEx, A as GenericObjectLayoutNodeLevel4, Aa as NxSortIndicatorType, Ai as NxFieldSelectionMode, An as FieldList, Ao as SearchGroupItem, Ar as MediaListItem, As as VariableListDef, At as BookmarkFieldPage, B as UndoInfoObject, Ba as NxTreeMultiRangeSelectInfo, Bi as NxHighlightRanges, Bn as FolderItem, Bo as SearchResult, Br as NativeVariableFunctions, Bt as CharRange, C as GenericDimension, Ca as NxRange, Ci as NxExportFileType, Cn as FailureData, Co as SearchFieldDictionary, Cr as ListObject, Cs as TreeDataDef, Ct as BNFDef, D as GenericObjectLayoutNode, Da as NxSelectionInfo, Di as NxFieldProperties, Dn as FieldDescription, Do as SearchFieldSelectionMode, Dr as MeasureList, Ds as ValueExpr, Dt as Bookmark, E as GenericObject, Ea as NxSelectionCellType, Ei as NxFieldDescription, En as FieldDefEx, Eo as SearchFieldMatchesItem, Er as LogOnType, Es as UsageEnum, Et as Blob, F as GenericObjectPropertiesNodeLevel3, Fa as NxTempBookmarkOptions, Fi as NxGroupDef, Fn as FieldValue, Fo as SearchGroupType, Fr as NativeGenericDimensionFunctions, Ft as BookmarkListDef, G as DimensionListItem, Ga as NxTrendlineDef, Gi as NxLTrendlineType, Gn as GenericBookmarkLayout, Go as SearchValuePage, Gr as NxAttrExprDef, Gt as Connection, H as BookmarkListData, Ha as NxTreeRangeSelectInfo, Hi as NxInfo, Hn as FrequencyDistributionData, Ho as SearchSuggestionResult, Hr as NxAppProperties, Ht as ChildListDef, I as GenericObjectPropertiesNodeLevel4, Ia as NxTickCell, Ii as NxGroupMemberClass, In as FileDataFormat, Io as SearchMatchCombination, Ir as NativeGenericMeasureFunctions, It as BookmarkStateFieldPages, J as ExpandedFieldListItem, Ja as NxVariableListItem, Ji as NxLibraryDimensionDef, Jn as GenericDimensionInfo, Jo as SelectionObject, Jr as NxAttributeExpressionValues, Jt as CustomConnector, K as DynamicAppViewListData, Ka as NxTrendlineMode, Ki as NxLayoutErrors, Kn as GenericBookmarkProperties, Ko as SearchValueResult, Kr as NxAttrExprInfo, Kt as ContentLibraryList, L as GenericObjectPropertiesNodeLevel5, La as NxTreeDataOption, Li as NxGroupObjectId, Ln as FileType, Lo as SearchMatchCombinations, Lr as NativeGenericObjectFunctions, Lt as BookmarkVariableItem, M as GenericObjectLayoutNodeRec, Ma as NxStackedPivotCell, Mi as NxFrequencyMode, Mn as FieldOrColumn, Mo as SearchGroupItemOptions, Mr as NativeDocFunctions, Mt as BookmarkFieldVerifyResultState, N as GenericObjectPropertiesNode, Na as NxStateCounts, Ni as NxGetBookmarkOptions, Nn as FieldScores, No as SearchGroupItemType, Nr as NativeFieldFunctions, Nt as BookmarkFieldVerifyWarning, O as GenericObjectLayoutNodeLevel2, Oa as NxSimpleDimValue, Oi as NxFieldResourceId, On as FieldInTableData, Oo as SearchFieldValueItem, Or as MeasureListDef, Os as ValueExpression, Ot as BookmarkApplyAndVerifyResult, P as GenericObjectPropertiesNodeLevel2, Pa as NxStreamListEntry, Pi as NxGetObjectOptions, Pn as FieldType, Po as SearchGroupOptions, Pr as NativeGenericBookmarkFunctions, Pt as BookmarkList, Q as MasterObjectListItem, Qa as OdbcDsn, Qi as NxListObjectExpression, Qn as GenericMeasureProperties, Qo as SourceKeyRecord, Qr as NxBookmark, Qt as DataTable, R as GenericObjectPropertiesNodeRec, Ra as NxTreeDimensionDef, Ri as NxGroupTail, Rn as FilterInfo, Ro as SearchObjectOptions, Rr as NativeGenericVariableFunctions, Rt as CalendarStrings, S as GenericBookmark, Sa as NxPivotValuePoint, Si as NxEngineVersion, Sn as ExtensionListDef, So as SearchContextType, Sr as LineageInfo, Ss as TreeData, St as AssociationScore, T as GenericMeasure, Ta as NxSelectionCell, Ti as NxFeature, Tn as FieldAttributes, To as SearchFieldMatchType, Tr as LocaleInfo, Ts as UndoInfoDef, Tt as BNFType, U as BookmarkListItem, Ua as NxTreeValue, Ui as NxInlineDimensionDef, Un as FunctionGroup, Uo as SearchTermResult, Ur as NxAttrDimDef, Ut as CodePage, V as RpcObject, Va as NxTreeNode, Vi as NxHypercubeMode, Vn as FolderItemType, Vo as SearchSuggestItem, Vr as NxAppLayout, Vt as ChildList, W as DimensionListData, Wa as NxTrendline, Wi as NxInlineMeasureDef, Wn as GenericBookmarkEntry, Wo as SearchValueOptions, Wr as NxAttrDimInfo, Wt as CondDef, X as ListItem, Xa as NxViewPort, Xi as NxLibraryMeasureDef, Xn as GenericDimensionProperties, Xo as Size, Xr as NxAxisData, Xt as DataField, Y as ListBoxProperties, Ya as NxVariableProperties, Yi as NxLibraryMeasure, Yn as GenericDimensionLayout, Yo as SelectionObjectDef, Yr as NxAutoSortByStateDef, Yt as CyclicGroupPosition, Z as MasterObjectListData, Za as ObjectInterface, Zi as NxLinkedObjectInfo, Zn as GenericMeasureLayout, Zo as SortCriteria, Zr as NxAxisTicks, Zt as DataRecord, _ as AnyGenericObjectLayout, _a as NxPatch, _i as NxDimension, _n as ErrorDataCode, _o as ScrollPosition, _r as InteractType, _s as TableViewTableWinSaveInfo, _t as AppScriptMeta, a as OpenAppSessionProps, aa as NxMeasureInfo, ai as NxContinuousDataOptions, an as DimensionList, ao as PositionMark, ar as GenericVariableLayout, as as StringExpr, at as SheetListDataCellBounds, b as Field, ba as NxPivotDimensionCell, bi as NxDownloadInfo, bn as ExtendedPivotStateData, bo as SearchCharRange, br as LayoutExclude, bs as TransformAppParameters, bt as ApplyGroupStatesResult, c as CombinedWebSocketStateEvent, ca as NxMiniChart, ci as NxCurrentSelectionItem, cn as DoReloadExParams, co as QFunction, cr as GraphMode, cs as SymbolValue, ct as StoryListItem, d as ListFunctions, da as NxMiniChartDef, di as NxDataReductionMode, dn as DriveInfo, do as QRange, dr as GroupStateInfo, ds as TableRow, dt as AlfaNumString, ea as NxLocalizedErrorCode, ei as NxCardinalities, en as Database, eo as OtherLimitMode, er as GenericObjectLayout, es as StateFieldValues, et as MeasureListItem, f as ModalFunctions, fa as NxMiniChartRows, fi as NxDerivedField, fn as DriveType, fo as RangeSelectInfo, fr as HyperCube, fs as TableViewBroomPointSaveInfo, ft as AlternateStateData, g as Global, ga as NxPageTreeNode, gi as NxDimCellType, gn as ErrorData, go as ScriptSyntaxError, gr as InteractDef, gs as TableViewSaveInfo, gt as AppScript, h as StandardFunctions, ha as NxPageTreeLevel, hi as NxDerivedGroup, hn as EmbeddedSnapshotDef, ho as SampleResult, hr as InterFieldSortData, hs as TableViewDlgSaveInfo, ht as AppObjectListDef, i as NativeReactHooks, ia as NxMeasure, ii as NxContainerEntry, in as DerivedFieldsInTableData, io as Point, ir as GenericVariableConstraints, is as StaticContentUrlDef, it as SheetListDataCell, j as GenericObjectLayoutNodeLevel5, ja as NxStackPage, ji as NxFieldTableResourceId, jn as FieldListDef, jo as SearchGroupItemMatch, jr as MetaData, jt as BookmarkFieldPageEx, k as GenericObjectLayoutNodeLevel3, ka as NxSimpleValue, ki as NxFieldSelectionInfo, kn as FieldInTableProfilingData, ko as SearchGroup, kr as MediaListDef, ks as VariableList, kt as BookmarkFieldItem, l as WebSocketEvent, la as NxMiniChartCell, li as NxDataAreaPage, ln as DoReloadExResult, lo as QIX_SCHEMA_VERSION, lr as GroupBookmarkData, ls as TableProfilingData, lt as VariableListData, m as SpecialObjectFunctions, ma as NxPage, mi as NxDerivedFieldsData, mn as EmbeddedSnapshot, mo as ReloadError, mr as InputFieldItem, ms as TableViewCtlSaveInfo, mt as AppObjectList, n as CloseProps, na as NxMatchingFieldInfo, ni as NxCellPosition, nn as DatabaseOwner, no as OtherSortMode, nr as GenericObjectProperties, ns as StaticContentListItem, nt as ODAGAppLinkListItem, o as UseAppHook, oa as NxMeta, oi as NxContinuousMode, on as DimensionListDef, oo as ProgressData, or as GenericVariableProperties, os as StringExpression, ot as SheetListItem, p as ObjectHelperFunctions, pa as NxMultiRangeSelectInfo, pi as NxDerivedFieldDescriptionList, pn as EditorBreakpoint, po as Rect, pr as HyperCubeDef, ps as TableViewConnectionPointSaveInfo, pt as AppEntry, q as DynamicAppViewListItem, qa as NxValidationError, qi as NxLibraryDimension, qn as GenericConnectMachine, qo as SelectInfo, qr as NxAttributeDimValues, qt as ContentLibraryListItem, r as DocAction, ra as NxMatchingFieldMode, ri as NxCellRows, rn as DelimiterInfo, ro as OtherTotalSpecProp, rr as GenericObjectPropertiesAdditionalProperties, rs as StaticContentUrl, rt as SheetListData, s as WorkloadType, sa as NxMetaDef, si as NxContinuousRangeSelectInfo, sn as DimensionReference, so as ProgressMessage, sr as GenericVariableType, ss as SymbolFrequency, st as StoryListData, t as AppSession, ta as NxLocalizedWarningCode, ti as NxCell, tn as DatabaseInfo, to as OtherMode, tr as GenericObjectLayoutAdditionalProperties, ts as StaticContentList, tt as ODAGAppLinkListData, u as Doc, ua as NxMiniChartData, ui as NxDataPage, un as DocListEntry, uo as QMediaList, ur as GroupState, us as TableRecord, ut as VariableListItem, v as AnyGenericObjectProperties, va as NxPatchOperationType, vi as NxDimensionInfo, vn as ExpansionData, vo as SearchAssociationResult, vr as KeyType, vs as TextMacro, vt as ApplyGroupStateWarning, w as GenericListObject, wa as NxRangeSelectInfo, wi as NxExportState, wn as FieldAttrType, wo as SearchFieldMatch, wr as ListObjectDef, ws as UndoInfo, wt as BNFDefMetaType, x as FieldListObject, xa as NxPivotPage, xi as NxDownloadOptions, xn as ExtensionList, xo as SearchCombinationOptions, xr as LayoutFieldInfo, xs as TransformAppResult, xt as ArrayOfNxValuePoint, y as CurrentSelections, ya as NxPatches, yi as NxDimensionType, yn as ExtendedLayoutBookmarkData, yo as SearchAttribute, yr as LayoutBookmarkData, ys as TotalMode, yt as ApplyGroupStateWarningType, z as GenericVariable, za as NxTreeDimensionInfo, zi as NxGrpType, zn as FilterType, zo as SearchPage, zr as NativeGlobalFunctions, zt as CharEncodingType } from "./chunks/qix-types-y_di0roE.js";
3
+ import { $ as MeasureListData, $a as OleDbProvider, $i as NxListObjectExpressionDef, $n as GenericObjectEntry, $o as StateEnumType, $r as NxCalcCond, $t as DataTableEx, A as GenericObjectLayoutNodeLevel4, Aa as NxSortIndicatorType, Ai as NxFieldSelectionMode, An as FieldList, Ao as SearchGroupItem, Ar as MediaListItem, As as VariableListDef, At as BookmarkFieldPage, B as UndoInfoObject, Ba as NxTreeMultiRangeSelectInfo, Bi as NxHighlightRanges, Bn as FolderItem, Bo as SearchResult, Br as NativeVariableFunctions, Bt as CharRange, C as GenericDimension, Ca as NxRange, Ci as NxExportFileType, Cn as FailureData, Co as SearchFieldDictionary, Cr as ListObject, Cs as TreeDataDef, Ct as BNFDef, D as GenericObjectLayoutNode, Da as NxSelectionInfo, Di as NxFieldProperties, Dn as FieldDescription, Do as SearchFieldSelectionMode, Dr as MeasureList, Ds as ValueExpr, Dt as Bookmark, E as GenericObject, Ea as NxSelectionCellType, Ei as NxFieldDescription, En as FieldDefEx, Eo as SearchFieldMatchesItem, Er as LogOnType, Es as UsageEnum, Et as Blob, F as GenericObjectPropertiesNodeLevel3, Fa as NxTempBookmarkOptions, Fi as NxGroupDef, Fn as FieldValue, Fo as SearchGroupType, Fr as NativeGenericDimensionFunctions, Ft as BookmarkListDef, G as DimensionListItem, Ga as NxTrendlineDef, Gi as NxLTrendlineType, Gn as GenericBookmarkLayout, Go as SearchValuePage, Gr as NxAttrExprDef, Gt as Connection, H as BookmarkListData, Ha as NxTreeRangeSelectInfo, Hi as NxInfo, Hn as FrequencyDistributionData, Ho as SearchSuggestionResult, Hr as NxAppProperties, Ht as ChildListDef, I as GenericObjectPropertiesNodeLevel4, Ia as NxTickCell, Ii as NxGroupMemberClass, In as FileDataFormat, Io as SearchMatchCombination, Ir as NativeGenericMeasureFunctions, It as BookmarkStateFieldPages, J as ExpandedFieldListItem, Ja as NxVariableListItem, Ji as NxLibraryDimensionDef, Jn as GenericDimensionInfo, Jo as SelectionObject, Jr as NxAttributeExpressionValues, Jt as CustomConnector, K as DynamicAppViewListData, Ka as NxTrendlineMode, Ki as NxLayoutErrors, Kn as GenericBookmarkProperties, Ko as SearchValueResult, Kr as NxAttrExprInfo, Kt as ContentLibraryList, L as GenericObjectPropertiesNodeLevel5, La as NxTreeDataOption, Li as NxGroupObjectId, Ln as FileType, Lo as SearchMatchCombinations, Lr as NativeGenericObjectFunctions, Lt as BookmarkVariableItem, M as GenericObjectLayoutNodeRec, Ma as NxStackedPivotCell, Mi as NxFrequencyMode, Mn as FieldOrColumn, Mo as SearchGroupItemOptions, Mr as NativeDocFunctions, Mt as BookmarkFieldVerifyResultState, N as GenericObjectPropertiesNode, Na as NxStateCounts, Ni as NxGetBookmarkOptions, Nn as FieldScores, No as SearchGroupItemType, Nr as NativeFieldFunctions, Nt as BookmarkFieldVerifyWarning, O as GenericObjectLayoutNodeLevel2, Oa as NxSimpleDimValue, Oi as NxFieldResourceId, On as FieldInTableData, Oo as SearchFieldValueItem, Or as MeasureListDef, Os as ValueExpression, Ot as BookmarkApplyAndVerifyResult, P as GenericObjectPropertiesNodeLevel2, Pa as NxStreamListEntry, Pi as NxGetObjectOptions, Pn as FieldType, Po as SearchGroupOptions, Pr as NativeGenericBookmarkFunctions, Pt as BookmarkList, Q as MasterObjectListItem, Qa as OdbcDsn, Qi as NxListObjectExpression, Qn as GenericMeasureProperties, Qo as SourceKeyRecord, Qr as NxBookmark, Qt as DataTable, R as GenericObjectPropertiesNodeRec, Ra as NxTreeDimensionDef, Ri as NxGroupTail, Rn as FilterInfo, Ro as SearchObjectOptions, Rr as NativeGenericVariableFunctions, Rt as CalendarStrings, S as GenericBookmark, Sa as NxPivotValuePoint, Si as NxEngineVersion, Sn as ExtensionListDef, So as SearchContextType, Sr as LineageInfo, Ss as TreeData, St as AssociationScore, T as GenericMeasure, Ta as NxSelectionCell, Ti as NxFeature, Tn as FieldAttributes, To as SearchFieldMatchType, Tr as LocaleInfo, Ts as UndoInfoDef, Tt as BNFType, U as BookmarkListItem, Ua as NxTreeValue, Ui as NxInlineDimensionDef, Un as FunctionGroup, Uo as SearchTermResult, Ur as NxAttrDimDef, Ut as CodePage, V as RpcObject, Va as NxTreeNode, Vi as NxHypercubeMode, Vn as FolderItemType, Vo as SearchSuggestItem, Vr as NxAppLayout, Vt as ChildList, W as DimensionListData, Wa as NxTrendline, Wi as NxInlineMeasureDef, Wn as GenericBookmarkEntry, Wo as SearchValueOptions, Wr as NxAttrDimInfo, Wt as CondDef, X as ListItem, Xa as NxViewPort, Xi as NxLibraryMeasureDef, Xn as GenericDimensionProperties, Xo as Size, Xr as NxAxisData, Xt as DataField, Y as ListBoxProperties, Ya as NxVariableProperties, Yi as NxLibraryMeasure, Yn as GenericDimensionLayout, Yo as SelectionObjectDef, Yr as NxAutoSortByStateDef, Yt as CyclicGroupPosition, Z as MasterObjectListData, Za as ObjectInterface, Zi as NxLinkedObjectInfo, Zn as GenericMeasureLayout, Zo as SortCriteria, Zr as NxAxisTicks, Zt as DataRecord, _ as AnyGenericObjectLayout, _a as NxPatch, _i as NxDimension, _n as ErrorDataCode, _o as ScrollPosition, _r as InteractType, _s as TableViewTableWinSaveInfo, _t as AppScriptMeta, a as OpenAppSessionProps, aa as NxMeasureInfo, ai as NxContinuousDataOptions, an as DimensionList, ao as PositionMark, ar as GenericVariableLayout, as as StringExpr, at as SheetListDataCellBounds, b as Field, ba as NxPivotDimensionCell, bi as NxDownloadInfo, bn as ExtendedPivotStateData, bo as SearchCharRange, br as LayoutExclude, bs as TransformAppParameters, bt as ApplyGroupStatesResult, c as CombinedWebSocketStateEvent, ca as NxMiniChart, ci as NxCurrentSelectionItem, cn as DoReloadExParams, co as QFunction, cr as GraphMode, cs as SymbolValue, ct as StoryListItem, d as ListFunctions, da as NxMiniChartDef, di as NxDataReductionMode, dn as DriveInfo, do as QRange, dr as GroupStateInfo, ds as TableRow, dt as AlfaNumString, ea as NxLocalizedErrorCode, ei as NxCardinalities, en as Database, eo as OtherLimitMode, er as GenericObjectLayout, es as StateFieldValues, et as MeasureListItem, f as ModalFunctions, fa as NxMiniChartRows, fi as NxDerivedField, fn as DriveType, fo as RangeSelectInfo, fr as HyperCube, fs as TableViewBroomPointSaveInfo, ft as AlternateStateData, g as Global, ga as NxPageTreeNode, gi as NxDimCellType, gn as ErrorData, go as ScriptSyntaxError, gr as InteractDef, gs as TableViewSaveInfo, gt as AppScript, h as StandardFunctions, ha as NxPageTreeLevel, hi as NxDerivedGroup, hn as EmbeddedSnapshotDef, ho as SampleResult, hr as InterFieldSortData, hs as TableViewDlgSaveInfo, ht as AppObjectListDef, i as NativeReactHooks, ia as NxMeasure, ii as NxContainerEntry, in as DerivedFieldsInTableData, io as Point, ir as GenericVariableConstraints, is as StaticContentUrlDef, it as SheetListDataCell, j as GenericObjectLayoutNodeLevel5, ja as NxStackPage, ji as NxFieldTableResourceId, jn as FieldListDef, jo as SearchGroupItemMatch, jr as MetaData, jt as BookmarkFieldPageEx, k as GenericObjectLayoutNodeLevel3, ka as NxSimpleValue, ki as NxFieldSelectionInfo, kn as FieldInTableProfilingData, ko as SearchGroup, kr as MediaListDef, ks as VariableList, kt as BookmarkFieldItem, l as WebSocketEvent, la as NxMiniChartCell, li as NxDataAreaPage, ln as DoReloadExResult, lo as QIX_SCHEMA_VERSION, lr as GroupBookmarkData, ls as TableProfilingData, lt as VariableListData, m as SpecialObjectFunctions, ma as NxPage, mi as NxDerivedFieldsData, mn as EmbeddedSnapshot, mo as ReloadError, mr as InputFieldItem, ms as TableViewCtlSaveInfo, mt as AppObjectList, n as CloseProps, na as NxMatchingFieldInfo, ni as NxCellPosition, nn as DatabaseOwner, no as OtherSortMode, nr as GenericObjectProperties, ns as StaticContentListItem, nt as ODAGAppLinkListItem, o as UseAppHook, oa as NxMeta, oi as NxContinuousMode, on as DimensionListDef, oo as ProgressData, or as GenericVariableProperties, os as StringExpression, ot as SheetListItem, p as ObjectHelperFunctions, pa as NxMultiRangeSelectInfo, pi as NxDerivedFieldDescriptionList, pn as EditorBreakpoint, po as Rect, pr as HyperCubeDef, ps as TableViewConnectionPointSaveInfo, pt as AppEntry, q as DynamicAppViewListItem, qa as NxValidationError, qi as NxLibraryDimension, qn as GenericConnectMachine, qo as SelectInfo, qr as NxAttributeDimValues, qt as ContentLibraryListItem, r as DocAction, ra as NxMatchingFieldMode, ri as NxCellRows, rn as DelimiterInfo, ro as OtherTotalSpecProp, rr as GenericObjectPropertiesAdditionalProperties, rs as StaticContentUrl, rt as SheetListData, s as WorkloadType, sa as NxMetaDef, si as NxContinuousRangeSelectInfo, sn as DimensionReference, so as ProgressMessage, sr as GenericVariableType, ss as SymbolFrequency, st as StoryListData, t as AppSession, ta as NxLocalizedWarningCode, ti as NxCell, tn as DatabaseInfo, to as OtherMode, tr as GenericObjectLayoutAdditionalProperties, ts as StaticContentList, tt as ODAGAppLinkListData, u as Doc, ua as NxMiniChartData, ui as NxDataPage, un as DocListEntry, uo as QMediaList, ur as GroupState, us as TableRecord, ut as VariableListItem, v as AnyGenericObjectProperties, va as NxPatchOperationType, vi as NxDimensionInfo, vn as ExpansionData, vo as SearchAssociationResult, vr as KeyType, vs as TextMacro, vt as ApplyGroupStateWarning, w as GenericListObject, wa as NxRangeSelectInfo, wi as NxExportState, wn as FieldAttrType, wo as SearchFieldMatch, wr as ListObjectDef, ws as UndoInfo, wt as BNFDefMetaType, x as FieldListObject, xa as NxPivotPage, xi as NxDownloadOptions, xn as ExtensionList, xo as SearchCombinationOptions, xr as LayoutFieldInfo, xs as TransformAppResult, xt as ArrayOfNxValuePoint, y as CurrentSelections, ya as NxPatches, yi as NxDimensionType, yn as ExtendedLayoutBookmarkData, yo as SearchAttribute, yr as LayoutBookmarkData, ys as TotalMode, yt as ApplyGroupStateWarningType, z as GenericVariable, za as NxTreeDimensionInfo, zi as NxGrpType, zn as FilterType, zo as SearchPage, zr as NativeGlobalFunctions, zt as CharEncodingType } from "./chunks/qix-types-Bjha7sch.js";
4
4
 
5
5
  //#region src/public/qix.d.ts
6
6
  declare function openAppSession(appSessionProps: OpenAppSessionProps): {
package/reloads.d.ts CHANGED
@@ -63,6 +63,9 @@ type ReloadRequest = {
63
63
  variables?: Record<string, string>; /** The weight of the reload for the same tenant. The higher the weight, the sooner the reload will be scheduled relative to other reloads for the same tenant. The personal app will be always set as 1. */
64
64
  weight?: Weight;
65
65
  };
66
+ type ReloadStatus = {
67
+ /** The status of the reload. */status?: "QUEUED" | "RELOADING" | "CANCELING" | "SUCCEEDED" | "FAILED" | "CANCELED" | "EXCEEDED_LIMIT";
68
+ };
66
69
  type Reloads = {
67
70
  data: Reload[];
68
71
  links: ReloadsLinks;
@@ -172,10 +175,16 @@ type GetReloadHttpError = {
172
175
  * @throws CancelReloadHttpError
173
176
  */
174
177
  declare function cancelReload(reloadId: string, options?: ApiCallOptions): Promise<CancelReloadHttpResponse>;
175
- type CancelReloadHttpResponse = {
178
+ type CancelReloadHttpResponse = CancelReload202HttpResponse | CancelReload204HttpResponse;
179
+ type CancelReload202HttpResponse = {
180
+ data: ReloadStatus;
181
+ headers: Headers;
182
+ status: 202;
183
+ };
184
+ type CancelReload204HttpResponse = {
176
185
  data: void;
177
186
  headers: Headers;
178
- status: 202 | 204;
187
+ status: 204;
179
188
  };
180
189
  type CancelReloadHttpError = {
181
190
  data: Errors;
@@ -232,4 +241,4 @@ type ReloadsAPI = {
232
241
  */
233
242
  declare const reloadsExport: ReloadsAPI;
234
243
  //#endregion
235
- export { CancelReloadHttpError, CancelReloadHttpResponse, Error, Errors, GetReloadHttpError, GetReloadHttpResponse, GetReloadsHttpError, GetReloadsHttpResponse, Href, Partial, QueueReloadHttpError, QueueReloadHttpResponse, Reload, ReloadLinks, ReloadRequest, Reloads, ReloadsAPI, ReloadsLinks, Status, Type, Weight, cancelReload, clearCache, reloadsExport as default, getReload, getReloads, queueReload };
244
+ export { CancelReload202HttpResponse, CancelReload204HttpResponse, CancelReloadHttpError, CancelReloadHttpResponse, Error, Errors, GetReloadHttpError, GetReloadHttpResponse, GetReloadsHttpError, GetReloadsHttpResponse, Href, Partial, QueueReloadHttpError, QueueReloadHttpResponse, Reload, ReloadLinks, ReloadRequest, ReloadStatus, Reloads, ReloadsAPI, ReloadsLinks, Status, Type, Weight, cancelReload, clearCache, reloadsExport as default, getReload, getReloads, queueReload };