@seedprotocol/sdk 0.1.92 → 0.1.93
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-BVJPyy1u.js → index-DOiudQnZ.js} +16 -5
- package/dist/{index-BVJPyy1u.js.map → index-DOiudQnZ.js.map} +1 -1
- package/dist/{index-BQ8Rxqfu.js → index-DRR_FeN7.js} +2 -2
- package/dist/{index-BQ8Rxqfu.js.map → index-DRR_FeN7.js.map} +1 -1
- package/dist/main.js +1 -1
- package/dist/{seed.schema.config-wUSjIpif.js → seed.schema.config-CmrNDFvc.js} +2 -2
- package/dist/{seed.schema.config-wUSjIpif.js.map → seed.schema.config-CmrNDFvc.js.map} +1 -1
- package/dist/src/getPublishPayload.ts +17 -1
- package/dist/src/index.ts +21 -4
- package/dist/types/src/browser/db/read/getPublishPayload.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -1068,7 +1068,7 @@ const hydrateFromDb = fromCallback(({ sendBack, input: { context } }) => {
|
|
|
1068
1068
|
if (propertyRecordSchema &&
|
|
1069
1069
|
propertyRecordSchema.storageType &&
|
|
1070
1070
|
propertyRecordSchema.storageType === 'ItemStorage') {
|
|
1071
|
-
const { Item } = yield import('./index-
|
|
1071
|
+
const { Item } = yield import('./index-DRR_FeN7.js');
|
|
1072
1072
|
const item = yield Item.find({
|
|
1073
1073
|
seedLocalId,
|
|
1074
1074
|
modelName: itemModelName,
|
|
@@ -2622,7 +2622,7 @@ const addModelsToDb = fromCallback(({ sendBack, input: { context } }) => {
|
|
|
2622
2622
|
if (!models$1) {
|
|
2623
2623
|
return;
|
|
2624
2624
|
}
|
|
2625
|
-
const { models: SeedModels } = yield import('./seed.schema.config-
|
|
2625
|
+
const { models: SeedModels } = yield import('./seed.schema.config-CmrNDFvc.js');
|
|
2626
2626
|
const allModels = Object.assign(Object.assign({}, SeedModels), models$1);
|
|
2627
2627
|
let hasModelsInDb = false;
|
|
2628
2628
|
const schemaDefsByModelName = new Map();
|
|
@@ -5834,7 +5834,18 @@ const getPublishPayload = (seedLocalId) => __awaiter(void 0, void 0, void 0, fun
|
|
|
5834
5834
|
if (!itemProperty.value || !itemProperty.propertyDef) {
|
|
5835
5835
|
continue;
|
|
5836
5836
|
}
|
|
5837
|
-
|
|
5837
|
+
let propertyNameForSchema = propertyName;
|
|
5838
|
+
if (itemProperty.propertyDef.dataType === 'Relation') {
|
|
5839
|
+
propertyNameForSchema = `${propertyName}Id`;
|
|
5840
|
+
}
|
|
5841
|
+
if (itemProperty.propertyDef.dataType === 'List' &&
|
|
5842
|
+
itemProperty.propertyDef.ref) {
|
|
5843
|
+
propertyNameForSchema = `${propertyName}Ids`;
|
|
5844
|
+
}
|
|
5845
|
+
const foundPropertySchema = yield getSchemaForItemProperty({
|
|
5846
|
+
schemaUid: itemProperty.schemaUid,
|
|
5847
|
+
propertyName: propertyNameForSchema,
|
|
5848
|
+
});
|
|
5838
5849
|
if (!foundPropertySchema) {
|
|
5839
5850
|
throw new Error(`No schema found for property ${itemProperty.propertyName} ${itemProperty.localId}`);
|
|
5840
5851
|
}
|
|
@@ -6652,7 +6663,7 @@ const client = {
|
|
|
6652
6663
|
console.error('fs listeners not ready during init');
|
|
6653
6664
|
}
|
|
6654
6665
|
globalService.send({ type: 'init', endpoints, models, addresses });
|
|
6655
|
-
import('./seed.schema.config-
|
|
6666
|
+
import('./seed.schema.config-CmrNDFvc.js').then(({ models }) => {
|
|
6656
6667
|
for (const [key, value] of Object.entries(models)) {
|
|
6657
6668
|
setModel(key, value);
|
|
6658
6669
|
}
|
|
@@ -7597,4 +7608,4 @@ if (isNode()) {
|
|
|
7597
7608
|
}
|
|
7598
7609
|
|
|
7599
7610
|
export { GET_SCHEMAS as G, Item as I, Json as J, List as L, Model as M, Property as P, Relation as R, Text as T, GET_SCHEMA_BY_NAME as a, GET_SEEDS as b, GET_SEED_IDS as c, GET_STORAGE_TRANSACTION_ID as d, GET_VERSIONS as e, GET_PROPERTIES as f, GET_ALL_PROPERTIES_FOR_ALL_VERSIONS as g, itemMachineAll as h, itemMachineSingle as i, ImageSrc as j, ItemProperty as k, useItem as l, useItemProperties as m, useCreateItem as n, useItemProperty as o, useDeleteItem as p, useGlobalServiceStatus as q, useServices as r, getGlobalService as s, client as t, useItems as u, getCorrectId as v, withSeed as w };
|
|
7600
|
-
//# sourceMappingURL=index-
|
|
7611
|
+
//# sourceMappingURL=index-DOiudQnZ.js.map
|