@0xobelisk/ecs 1.2.0-pre.70 → 1.2.0-pre.71
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.js +20 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +20 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
- package/src/subscription.ts +6 -1
- package/src/world.ts +14 -0
package/dist/index.js
CHANGED
|
@@ -937,7 +937,12 @@ var ECSSubscription = class {
|
|
|
937
937
|
} catch (error) {
|
|
938
938
|
}
|
|
939
939
|
}
|
|
940
|
-
return [
|
|
940
|
+
return [
|
|
941
|
+
"createdAtTimestampMs",
|
|
942
|
+
"updatedAtTimestampMs",
|
|
943
|
+
"isDeleted",
|
|
944
|
+
"lastUpdateDigest"
|
|
945
|
+
];
|
|
941
946
|
}
|
|
942
947
|
/**
|
|
943
948
|
* Get fields to use for queries (priority: user specified > dubhe config auto-parsed > default fields)
|
|
@@ -1610,6 +1615,13 @@ var ComponentDiscoverer = class {
|
|
|
1610
1615
|
nullable: false,
|
|
1611
1616
|
isPrimaryKey: false,
|
|
1612
1617
|
isEnum: false
|
|
1618
|
+
},
|
|
1619
|
+
{
|
|
1620
|
+
name: "lastUpdateDigest",
|
|
1621
|
+
type: "String",
|
|
1622
|
+
nullable: false,
|
|
1623
|
+
isPrimaryKey: false,
|
|
1624
|
+
isEnum: false
|
|
1613
1625
|
}
|
|
1614
1626
|
);
|
|
1615
1627
|
if (primaryKeys.length !== 1) {
|
|
@@ -1769,6 +1781,13 @@ var ResourceDiscoverer = class {
|
|
|
1769
1781
|
nullable: false,
|
|
1770
1782
|
isPrimaryKey: false,
|
|
1771
1783
|
isEnum: false
|
|
1784
|
+
},
|
|
1785
|
+
{
|
|
1786
|
+
name: "lastUpdateDigest",
|
|
1787
|
+
type: "String",
|
|
1788
|
+
nullable: false,
|
|
1789
|
+
isPrimaryKey: false,
|
|
1790
|
+
isEnum: false
|
|
1772
1791
|
}
|
|
1773
1792
|
);
|
|
1774
1793
|
const resourceType = resourceName;
|