@objectstack/service-feed 4.2.0 → 5.1.0
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.d.cts +18 -0
- package/dist/index.d.ts +18 -0
- package/package.json +3 -3
package/dist/index.d.cts
CHANGED
|
@@ -737,6 +737,12 @@ declare const FeedItem: Omit<{
|
|
|
737
737
|
recordTypes?: string[] | undefined;
|
|
738
738
|
sharingModel?: "private" | "read" | "full" | "read_write" | undefined;
|
|
739
739
|
keyPrefix?: string | undefined;
|
|
740
|
+
detail?: {
|
|
741
|
+
[x: string]: unknown;
|
|
742
|
+
renderViaSchema?: boolean | undefined;
|
|
743
|
+
hideReferenceRail?: boolean | undefined;
|
|
744
|
+
hideRelatedTab?: boolean | undefined;
|
|
745
|
+
} | undefined;
|
|
740
746
|
actions?: {
|
|
741
747
|
name: string;
|
|
742
748
|
label: string;
|
|
@@ -4762,6 +4768,12 @@ declare const FeedReaction: Omit<{
|
|
|
4762
4768
|
recordTypes?: string[] | undefined;
|
|
4763
4769
|
sharingModel?: "private" | "read" | "full" | "read_write" | undefined;
|
|
4764
4770
|
keyPrefix?: string | undefined;
|
|
4771
|
+
detail?: {
|
|
4772
|
+
[x: string]: unknown;
|
|
4773
|
+
renderViaSchema?: boolean | undefined;
|
|
4774
|
+
hideReferenceRail?: boolean | undefined;
|
|
4775
|
+
hideRelatedTab?: boolean | undefined;
|
|
4776
|
+
} | undefined;
|
|
4765
4777
|
actions?: {
|
|
4766
4778
|
name: string;
|
|
4767
4779
|
label: string;
|
|
@@ -6334,6 +6346,12 @@ declare const RecordSubscription: Omit<{
|
|
|
6334
6346
|
recordTypes?: string[] | undefined;
|
|
6335
6347
|
sharingModel?: "private" | "read" | "full" | "read_write" | undefined;
|
|
6336
6348
|
keyPrefix?: string | undefined;
|
|
6349
|
+
detail?: {
|
|
6350
|
+
[x: string]: unknown;
|
|
6351
|
+
renderViaSchema?: boolean | undefined;
|
|
6352
|
+
hideReferenceRail?: boolean | undefined;
|
|
6353
|
+
hideRelatedTab?: boolean | undefined;
|
|
6354
|
+
} | undefined;
|
|
6337
6355
|
actions?: {
|
|
6338
6356
|
name: string;
|
|
6339
6357
|
label: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -737,6 +737,12 @@ declare const FeedItem: Omit<{
|
|
|
737
737
|
recordTypes?: string[] | undefined;
|
|
738
738
|
sharingModel?: "private" | "read" | "full" | "read_write" | undefined;
|
|
739
739
|
keyPrefix?: string | undefined;
|
|
740
|
+
detail?: {
|
|
741
|
+
[x: string]: unknown;
|
|
742
|
+
renderViaSchema?: boolean | undefined;
|
|
743
|
+
hideReferenceRail?: boolean | undefined;
|
|
744
|
+
hideRelatedTab?: boolean | undefined;
|
|
745
|
+
} | undefined;
|
|
740
746
|
actions?: {
|
|
741
747
|
name: string;
|
|
742
748
|
label: string;
|
|
@@ -4762,6 +4768,12 @@ declare const FeedReaction: Omit<{
|
|
|
4762
4768
|
recordTypes?: string[] | undefined;
|
|
4763
4769
|
sharingModel?: "private" | "read" | "full" | "read_write" | undefined;
|
|
4764
4770
|
keyPrefix?: string | undefined;
|
|
4771
|
+
detail?: {
|
|
4772
|
+
[x: string]: unknown;
|
|
4773
|
+
renderViaSchema?: boolean | undefined;
|
|
4774
|
+
hideReferenceRail?: boolean | undefined;
|
|
4775
|
+
hideRelatedTab?: boolean | undefined;
|
|
4776
|
+
} | undefined;
|
|
4765
4777
|
actions?: {
|
|
4766
4778
|
name: string;
|
|
4767
4779
|
label: string;
|
|
@@ -6334,6 +6346,12 @@ declare const RecordSubscription: Omit<{
|
|
|
6334
6346
|
recordTypes?: string[] | undefined;
|
|
6335
6347
|
sharingModel?: "private" | "read" | "full" | "read_write" | undefined;
|
|
6336
6348
|
keyPrefix?: string | undefined;
|
|
6349
|
+
detail?: {
|
|
6350
|
+
[x: string]: unknown;
|
|
6351
|
+
renderViaSchema?: boolean | undefined;
|
|
6352
|
+
hideReferenceRail?: boolean | undefined;
|
|
6353
|
+
hideRelatedTab?: boolean | undefined;
|
|
6354
|
+
} | undefined;
|
|
6337
6355
|
actions?: {
|
|
6338
6356
|
name: string;
|
|
6339
6357
|
label: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@objectstack/service-feed",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "5.1.0",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"description": "Feed/Chatter Service for ObjectStack — implements IFeedService with in-memory adapter for comments, reactions, field changes, and record subscriptions",
|
|
6
6
|
"type": "module",
|
|
@@ -14,8 +14,8 @@
|
|
|
14
14
|
}
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"@objectstack/core": "
|
|
18
|
-
"@objectstack/spec": "
|
|
17
|
+
"@objectstack/core": "5.1.0",
|
|
18
|
+
"@objectstack/spec": "5.1.0"
|
|
19
19
|
},
|
|
20
20
|
"devDependencies": {
|
|
21
21
|
"@types/node": "^25.9.1",
|