@stream-io/feeds-client 0.1.3 → 0.1.4
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/CHANGELOG.md +5 -0
- package/dist/index-react-bindings.browser.cjs +5 -0
- package/dist/index-react-bindings.browser.cjs.map +1 -1
- package/dist/index-react-bindings.browser.js +5 -0
- package/dist/index-react-bindings.browser.js.map +1 -1
- package/dist/index-react-bindings.node.cjs +5 -0
- package/dist/index-react-bindings.node.cjs.map +1 -1
- package/dist/index-react-bindings.node.js +5 -0
- package/dist/index-react-bindings.node.js.map +1 -1
- package/dist/index.browser.cjs +5 -0
- package/dist/index.browser.cjs.map +1 -1
- package/dist/index.browser.js +5 -0
- package/dist/index.browser.js.map +1 -1
- package/dist/index.node.cjs +5 -0
- package/dist/index.node.cjs.map +1 -1
- package/dist/index.node.js +5 -0
- package/dist/index.node.js.map +1 -1
- package/dist/src/gen/models/index.d.ts +92 -15
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/src/gen/feeds/FeedsApi.ts +5 -0
- package/src/gen/models/index.ts +143 -17
package/dist/index.browser.js
CHANGED
|
@@ -1625,6 +1625,7 @@ class FeedsApi {
|
|
|
1625
1625
|
};
|
|
1626
1626
|
const body = {
|
|
1627
1627
|
type: request?.type,
|
|
1628
|
+
create_notification_activity: request?.create_notification_activity,
|
|
1628
1629
|
custom: request?.custom,
|
|
1629
1630
|
};
|
|
1630
1631
|
const response = await this.apiClient.sendRequest('POST', '/api/v2/feeds/activities/{activity_id}/reactions', pathParams, undefined, body, 'application/json');
|
|
@@ -1719,6 +1720,7 @@ class FeedsApi {
|
|
|
1719
1720
|
comment: request?.comment,
|
|
1720
1721
|
object_id: request?.object_id,
|
|
1721
1722
|
object_type: request?.object_type,
|
|
1723
|
+
create_notification_activity: request?.create_notification_activity,
|
|
1722
1724
|
parent_id: request?.parent_id,
|
|
1723
1725
|
attachments: request?.attachments,
|
|
1724
1726
|
mentioned_user_ids: request?.mentioned_user_ids,
|
|
@@ -1782,6 +1784,7 @@ class FeedsApi {
|
|
|
1782
1784
|
};
|
|
1783
1785
|
const body = {
|
|
1784
1786
|
type: request?.type,
|
|
1787
|
+
create_notification_activity: request?.create_notification_activity,
|
|
1785
1788
|
custom: request?.custom,
|
|
1786
1789
|
};
|
|
1787
1790
|
const response = await this.apiClient.sendRequest('POST', '/api/v2/feeds/comments/{comment_id}/reactions', pathParams, undefined, body, 'application/json');
|
|
@@ -2007,6 +2010,7 @@ class FeedsApi {
|
|
|
2007
2010
|
const body = {
|
|
2008
2011
|
source: request?.source,
|
|
2009
2012
|
target: request?.target,
|
|
2013
|
+
create_notification_activity: request?.create_notification_activity,
|
|
2010
2014
|
follower_role: request?.follower_role,
|
|
2011
2015
|
push_preference: request?.push_preference,
|
|
2012
2016
|
custom: request?.custom,
|
|
@@ -2019,6 +2023,7 @@ class FeedsApi {
|
|
|
2019
2023
|
const body = {
|
|
2020
2024
|
source: request?.source,
|
|
2021
2025
|
target: request?.target,
|
|
2026
|
+
create_notification_activity: request?.create_notification_activity,
|
|
2022
2027
|
push_preference: request?.push_preference,
|
|
2023
2028
|
custom: request?.custom,
|
|
2024
2029
|
};
|