openxiangda 1.0.248 → 1.0.249
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/package.json +1 -1
- package/packages/sdk/dist/runtime/index.cjs +3 -3
- package/packages/sdk/dist/runtime/index.cjs.map +1 -1
- package/packages/sdk/dist/runtime/index.mjs +3 -3
- package/packages/sdk/dist/runtime/index.mjs.map +1 -1
- package/packages/sdk/dist/runtime/react.cjs +3 -3
- package/packages/sdk/dist/runtime/react.cjs.map +1 -1
- package/packages/sdk/dist/runtime/react.mjs +3 -3
- package/packages/sdk/dist/runtime/react.mjs.map +1 -1
- package/packages/sdk/source/admin-list/dataSources.ts +3 -3
package/package.json
CHANGED
|
@@ -45904,7 +45904,7 @@ function createFormAdminListSource(options) {
|
|
|
45904
45904
|
filterOperators: options.filterOperators || {}
|
|
45905
45905
|
});
|
|
45906
45906
|
return {
|
|
45907
|
-
key: `form:${appType}:${options.formUuid}`,
|
|
45907
|
+
key: `form:${appType}:${options.formUuid}:${options.listKey}`,
|
|
45908
45908
|
preferences: createAdminListPreferenceStore(options.sdk, appType),
|
|
45909
45909
|
async query(query) {
|
|
45910
45910
|
const filters = {
|
|
@@ -45935,7 +45935,7 @@ function createDataViewAdminListSource(options) {
|
|
|
45935
45935
|
filterOperators: options.filterOperators || {}
|
|
45936
45936
|
});
|
|
45937
45937
|
return {
|
|
45938
|
-
key: `data-view:${appType}:${options.dataViewCode}`,
|
|
45938
|
+
key: `data-view:${appType}:${options.dataViewCode}:${options.listKey}`,
|
|
45939
45939
|
preferences: createAdminListPreferenceStore(options.sdk, appType),
|
|
45940
45940
|
async query(query) {
|
|
45941
45941
|
const filters = {
|
|
@@ -45966,7 +45966,7 @@ function createFunctionAdminListSource(options) {
|
|
|
45966
45966
|
functionCode: options.functionCode
|
|
45967
45967
|
});
|
|
45968
45968
|
return {
|
|
45969
|
-
key: `function:${appType}:${options.functionCode}`,
|
|
45969
|
+
key: `function:${appType}:${options.functionCode}:${options.listKey}`,
|
|
45970
45970
|
preferences: createAdminListPreferenceStore(options.sdk, appType),
|
|
45971
45971
|
async query(query) {
|
|
45972
45972
|
const response = await options.sdk.function.invoke(options.functionCode, {
|