@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.cjs
CHANGED
|
@@ -1627,6 +1627,7 @@ class FeedsApi {
|
|
|
1627
1627
|
};
|
|
1628
1628
|
const body = {
|
|
1629
1629
|
type: request?.type,
|
|
1630
|
+
create_notification_activity: request?.create_notification_activity,
|
|
1630
1631
|
custom: request?.custom,
|
|
1631
1632
|
};
|
|
1632
1633
|
const response = await this.apiClient.sendRequest('POST', '/api/v2/feeds/activities/{activity_id}/reactions', pathParams, undefined, body, 'application/json');
|
|
@@ -1721,6 +1722,7 @@ class FeedsApi {
|
|
|
1721
1722
|
comment: request?.comment,
|
|
1722
1723
|
object_id: request?.object_id,
|
|
1723
1724
|
object_type: request?.object_type,
|
|
1725
|
+
create_notification_activity: request?.create_notification_activity,
|
|
1724
1726
|
parent_id: request?.parent_id,
|
|
1725
1727
|
attachments: request?.attachments,
|
|
1726
1728
|
mentioned_user_ids: request?.mentioned_user_ids,
|
|
@@ -1784,6 +1786,7 @@ class FeedsApi {
|
|
|
1784
1786
|
};
|
|
1785
1787
|
const body = {
|
|
1786
1788
|
type: request?.type,
|
|
1789
|
+
create_notification_activity: request?.create_notification_activity,
|
|
1787
1790
|
custom: request?.custom,
|
|
1788
1791
|
};
|
|
1789
1792
|
const response = await this.apiClient.sendRequest('POST', '/api/v2/feeds/comments/{comment_id}/reactions', pathParams, undefined, body, 'application/json');
|
|
@@ -2009,6 +2012,7 @@ class FeedsApi {
|
|
|
2009
2012
|
const body = {
|
|
2010
2013
|
source: request?.source,
|
|
2011
2014
|
target: request?.target,
|
|
2015
|
+
create_notification_activity: request?.create_notification_activity,
|
|
2012
2016
|
follower_role: request?.follower_role,
|
|
2013
2017
|
push_preference: request?.push_preference,
|
|
2014
2018
|
custom: request?.custom,
|
|
@@ -2021,6 +2025,7 @@ class FeedsApi {
|
|
|
2021
2025
|
const body = {
|
|
2022
2026
|
source: request?.source,
|
|
2023
2027
|
target: request?.target,
|
|
2028
|
+
create_notification_activity: request?.create_notification_activity,
|
|
2024
2029
|
push_preference: request?.push_preference,
|
|
2025
2030
|
custom: request?.custom,
|
|
2026
2031
|
};
|