@quillsql/react 2.16.30 → 2.16.31
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 +13 -6
- package/dist/index.js +13 -6
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -21403,7 +21403,8 @@ async function fetchReportName({
|
|
|
21403
21403
|
reportId,
|
|
21404
21404
|
client,
|
|
21405
21405
|
getToken,
|
|
21406
|
-
abortSignal
|
|
21406
|
+
abortSignal,
|
|
21407
|
+
tenants
|
|
21407
21408
|
}) {
|
|
21408
21409
|
const fetchResult = await quillFetch({
|
|
21409
21410
|
client,
|
|
@@ -21411,7 +21412,8 @@ async function fetchReportName({
|
|
|
21411
21412
|
metadata: {
|
|
21412
21413
|
reportId,
|
|
21413
21414
|
clientId: client.publicKey,
|
|
21414
|
-
databaseType: client.databaseType
|
|
21415
|
+
databaseType: client.databaseType,
|
|
21416
|
+
tenants
|
|
21415
21417
|
},
|
|
21416
21418
|
abortSignal,
|
|
21417
21419
|
getToken
|
|
@@ -54114,7 +54116,8 @@ var useReportBuilderInternal = ({
|
|
|
54114
54116
|
client,
|
|
54115
54117
|
task: "report-builder-state",
|
|
54116
54118
|
metadata: {
|
|
54117
|
-
reportId: reportId2
|
|
54119
|
+
reportId: reportId2,
|
|
54120
|
+
tenants
|
|
54118
54121
|
}
|
|
54119
54122
|
});
|
|
54120
54123
|
if (error) {
|
|
@@ -61414,7 +61417,8 @@ async function fetchReportBuilderStateByReportId({
|
|
|
61414
61417
|
reportId,
|
|
61415
61418
|
client,
|
|
61416
61419
|
getToken,
|
|
61417
|
-
draftSessionId
|
|
61420
|
+
draftSessionId,
|
|
61421
|
+
tenants
|
|
61418
61422
|
}) {
|
|
61419
61423
|
try {
|
|
61420
61424
|
const { data, error, status } = await quillFetch({
|
|
@@ -61422,6 +61426,7 @@ async function fetchReportBuilderStateByReportId({
|
|
|
61422
61426
|
task: "report-builder-state",
|
|
61423
61427
|
metadata: {
|
|
61424
61428
|
reportId,
|
|
61429
|
+
tenants,
|
|
61425
61430
|
...draftSessionId ? { draftSessionId: String(draftSessionId).trim() } : {}
|
|
61426
61431
|
},
|
|
61427
61432
|
getToken
|
|
@@ -61657,7 +61662,8 @@ async function loadPivotTemplateInParallelWithReportTask({
|
|
|
61657
61662
|
reportId,
|
|
61658
61663
|
client,
|
|
61659
61664
|
getToken,
|
|
61660
|
-
draftSessionId
|
|
61665
|
+
draftSessionId,
|
|
61666
|
+
tenants
|
|
61661
61667
|
})
|
|
61662
61668
|
]);
|
|
61663
61669
|
const withFetchedReportBuilderState = (result) => applyFetchedReportBuilderState(result, fetchedReportBuilderState);
|
|
@@ -63135,7 +63141,8 @@ function useReport(reportIdArg, options = {}) {
|
|
|
63135
63141
|
return fetchReportName({
|
|
63136
63142
|
reportId: reportNameQueryReportId,
|
|
63137
63143
|
client,
|
|
63138
|
-
getToken
|
|
63144
|
+
getToken,
|
|
63145
|
+
tenants
|
|
63139
63146
|
});
|
|
63140
63147
|
}),
|
|
63141
63148
|
enabled: Boolean(reportNameQueryReportId) && Boolean(client),
|
package/dist/index.js
CHANGED
|
@@ -21407,7 +21407,8 @@ async function fetchReportName({
|
|
|
21407
21407
|
reportId,
|
|
21408
21408
|
client,
|
|
21409
21409
|
getToken,
|
|
21410
|
-
abortSignal
|
|
21410
|
+
abortSignal,
|
|
21411
|
+
tenants
|
|
21411
21412
|
}) {
|
|
21412
21413
|
const fetchResult = await quillFetch({
|
|
21413
21414
|
client,
|
|
@@ -21415,7 +21416,8 @@ async function fetchReportName({
|
|
|
21415
21416
|
metadata: {
|
|
21416
21417
|
reportId,
|
|
21417
21418
|
clientId: client.publicKey,
|
|
21418
|
-
databaseType: client.databaseType
|
|
21419
|
+
databaseType: client.databaseType,
|
|
21420
|
+
tenants
|
|
21419
21421
|
},
|
|
21420
21422
|
abortSignal,
|
|
21421
21423
|
getToken
|
|
@@ -54280,7 +54282,8 @@ var useReportBuilderInternal = ({
|
|
|
54280
54282
|
client,
|
|
54281
54283
|
task: "report-builder-state",
|
|
54282
54284
|
metadata: {
|
|
54283
|
-
reportId: reportId2
|
|
54285
|
+
reportId: reportId2,
|
|
54286
|
+
tenants
|
|
54284
54287
|
}
|
|
54285
54288
|
});
|
|
54286
54289
|
if (error) {
|
|
@@ -61629,7 +61632,8 @@ async function fetchReportBuilderStateByReportId({
|
|
|
61629
61632
|
reportId,
|
|
61630
61633
|
client,
|
|
61631
61634
|
getToken,
|
|
61632
|
-
draftSessionId
|
|
61635
|
+
draftSessionId,
|
|
61636
|
+
tenants
|
|
61633
61637
|
}) {
|
|
61634
61638
|
try {
|
|
61635
61639
|
const { data, error, status } = await quillFetch({
|
|
@@ -61637,6 +61641,7 @@ async function fetchReportBuilderStateByReportId({
|
|
|
61637
61641
|
task: "report-builder-state",
|
|
61638
61642
|
metadata: {
|
|
61639
61643
|
reportId,
|
|
61644
|
+
tenants,
|
|
61640
61645
|
...draftSessionId ? { draftSessionId: String(draftSessionId).trim() } : {}
|
|
61641
61646
|
},
|
|
61642
61647
|
getToken
|
|
@@ -61872,7 +61877,8 @@ async function loadPivotTemplateInParallelWithReportTask({
|
|
|
61872
61877
|
reportId,
|
|
61873
61878
|
client,
|
|
61874
61879
|
getToken,
|
|
61875
|
-
draftSessionId
|
|
61880
|
+
draftSessionId,
|
|
61881
|
+
tenants
|
|
61876
61882
|
})
|
|
61877
61883
|
]);
|
|
61878
61884
|
const withFetchedReportBuilderState = (result) => applyFetchedReportBuilderState(result, fetchedReportBuilderState);
|
|
@@ -63350,7 +63356,8 @@ function useReport(reportIdArg, options = {}) {
|
|
|
63350
63356
|
return fetchReportName({
|
|
63351
63357
|
reportId: reportNameQueryReportId,
|
|
63352
63358
|
client,
|
|
63353
|
-
getToken
|
|
63359
|
+
getToken,
|
|
63360
|
+
tenants
|
|
63354
63361
|
});
|
|
63355
63362
|
}),
|
|
63356
63363
|
enabled: Boolean(reportNameQueryReportId) && Boolean(client),
|