@seedprotocol/sdk 0.1.95 → 0.1.96
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-3sREmGEH.js → index-BQyyVgww.js} +8 -4
- package/dist/{index-3sREmGEH.js.map → index-BQyyVgww.js.map} +1 -1
- package/dist/{index-Cnez8pwA.js → index-FUHLT3vP.js} +2 -2
- package/dist/{index-Cnez8pwA.js.map → index-FUHLT3vP.js.map} +1 -1
- package/dist/main.js +1 -1
- package/dist/{seed.schema.config-mWDkZ4po.js → seed.schema.config-BmtNH9HT.js} +2 -2
- package/dist/{seed.schema.config-mWDkZ4po.js.map → seed.schema.config-BmtNH9HT.js.map} +1 -1
- package/dist/src/actors.ts +273 -33
- package/dist/src/getPublishPayload.ts +7 -0
- package/dist/src/index.ts +43 -28
- 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-FUHLT3vP.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-BmtNH9HT.js');
|
|
2626
2626
|
const allModels = Object.assign(Object.assign({}, SeedModels), models$1);
|
|
2627
2627
|
let hasModelsInDb = false;
|
|
2628
2628
|
const schemaDefsByModelName = new Map();
|
|
@@ -5842,6 +5842,10 @@ const getPublishPayload = (seedLocalId) => __awaiter(void 0, void 0, void 0, fun
|
|
|
5842
5842
|
itemProperty.propertyDef.ref) {
|
|
5843
5843
|
propertyNameForSchema = `${propertyName}Ids`;
|
|
5844
5844
|
}
|
|
5845
|
+
if (itemProperty.propertyDef.storageType &&
|
|
5846
|
+
itemProperty.propertyDef.storageType === 'ItemStorage') {
|
|
5847
|
+
continue;
|
|
5848
|
+
}
|
|
5845
5849
|
const foundPropertySchema = yield getSchemaForItemProperty({
|
|
5846
5850
|
schemaUid: itemProperty.schemaUid,
|
|
5847
5851
|
propertyName: propertyNameForSchema,
|
|
@@ -6667,7 +6671,7 @@ const client = {
|
|
|
6667
6671
|
console.error('fs listeners not ready during init');
|
|
6668
6672
|
}
|
|
6669
6673
|
globalService.send({ type: 'init', endpoints, models, addresses });
|
|
6670
|
-
import('./seed.schema.config-
|
|
6674
|
+
import('./seed.schema.config-BmtNH9HT.js').then(({ models }) => {
|
|
6671
6675
|
for (const [key, value] of Object.entries(models)) {
|
|
6672
6676
|
setModel(key, value);
|
|
6673
6677
|
}
|
|
@@ -7612,4 +7616,4 @@ if (isNode()) {
|
|
|
7612
7616
|
}
|
|
7613
7617
|
|
|
7614
7618
|
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 };
|
|
7615
|
-
//# sourceMappingURL=index-
|
|
7619
|
+
//# sourceMappingURL=index-BQyyVgww.js.map
|