@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
|
@@ -2016,6 +2016,7 @@ class FeedsApi {
|
|
|
2016
2016
|
};
|
|
2017
2017
|
const body = {
|
|
2018
2018
|
type: request?.type,
|
|
2019
|
+
create_notification_activity: request?.create_notification_activity,
|
|
2019
2020
|
custom: request?.custom,
|
|
2020
2021
|
};
|
|
2021
2022
|
const response = await this.apiClient.sendRequest('POST', '/api/v2/feeds/activities/{activity_id}/reactions', pathParams, undefined, body, 'application/json');
|
|
@@ -2110,6 +2111,7 @@ class FeedsApi {
|
|
|
2110
2111
|
comment: request?.comment,
|
|
2111
2112
|
object_id: request?.object_id,
|
|
2112
2113
|
object_type: request?.object_type,
|
|
2114
|
+
create_notification_activity: request?.create_notification_activity,
|
|
2113
2115
|
parent_id: request?.parent_id,
|
|
2114
2116
|
attachments: request?.attachments,
|
|
2115
2117
|
mentioned_user_ids: request?.mentioned_user_ids,
|
|
@@ -2173,6 +2175,7 @@ class FeedsApi {
|
|
|
2173
2175
|
};
|
|
2174
2176
|
const body = {
|
|
2175
2177
|
type: request?.type,
|
|
2178
|
+
create_notification_activity: request?.create_notification_activity,
|
|
2176
2179
|
custom: request?.custom,
|
|
2177
2180
|
};
|
|
2178
2181
|
const response = await this.apiClient.sendRequest('POST', '/api/v2/feeds/comments/{comment_id}/reactions', pathParams, undefined, body, 'application/json');
|
|
@@ -2398,6 +2401,7 @@ class FeedsApi {
|
|
|
2398
2401
|
const body = {
|
|
2399
2402
|
source: request?.source,
|
|
2400
2403
|
target: request?.target,
|
|
2404
|
+
create_notification_activity: request?.create_notification_activity,
|
|
2401
2405
|
follower_role: request?.follower_role,
|
|
2402
2406
|
push_preference: request?.push_preference,
|
|
2403
2407
|
custom: request?.custom,
|
|
@@ -2410,6 +2414,7 @@ class FeedsApi {
|
|
|
2410
2414
|
const body = {
|
|
2411
2415
|
source: request?.source,
|
|
2412
2416
|
target: request?.target,
|
|
2417
|
+
create_notification_activity: request?.create_notification_activity,
|
|
2413
2418
|
push_preference: request?.push_preference,
|
|
2414
2419
|
custom: request?.custom,
|
|
2415
2420
|
};
|