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