@stream-io/feeds-client 1.8.0 → 1.9.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/CHANGELOG.md +7 -0
- package/dist/cjs/index.js +1 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/react-bindings.js +1 -1
- package/dist/es/index.mjs +1 -1
- package/dist/es/index.mjs.map +1 -1
- package/dist/es/react-bindings.mjs +1 -1
- package/dist/{feeds-client-DMwcBcrU.mjs → feeds-client-B8GZsmau.mjs} +2 -2
- package/dist/{feeds-client-DMwcBcrU.mjs.map → feeds-client-B8GZsmau.mjs.map} +1 -1
- package/dist/{feeds-client-ARkwY0jo.js → feeds-client-C1uBsoNh.js} +2 -2
- package/dist/{feeds-client-ARkwY0jo.js.map → feeds-client-C1uBsoNh.js.map} +1 -1
- package/dist/tsconfig.lib.tsbuildinfo +1 -1
- package/dist/types/gen/models/index.d.ts +13 -0
- package/dist/types/gen/models/index.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/gen/models/index.ts +14 -0
package/package.json
CHANGED
package/src/gen/models/index.ts
CHANGED
|
@@ -3830,6 +3830,11 @@ export interface EnrichmentOptions {
|
|
|
3830
3830
|
*/
|
|
3831
3831
|
enrich_own_followings?: boolean;
|
|
3832
3832
|
|
|
3833
|
+
/**
|
|
3834
|
+
* Default: false. When true, includes the top-level flat 'activities' array in responses for aggregated feeds. By default, aggregated feeds only return 'aggregated_activities'.
|
|
3835
|
+
*/
|
|
3836
|
+
include_flat_activities?: boolean;
|
|
3837
|
+
|
|
3833
3838
|
/**
|
|
3834
3839
|
* Default: false. When true, includes score_vars in activity responses containing variable values used at ranking time.
|
|
3835
3840
|
*/
|
|
@@ -6877,6 +6882,9 @@ export interface PushPreferencesResponse {
|
|
|
6877
6882
|
export interface QueryActivitiesRequest {
|
|
6878
6883
|
enrich_own_fields?: boolean;
|
|
6879
6884
|
|
|
6885
|
+
/**
|
|
6886
|
+
* When true, include soft-deleted activities in the result.
|
|
6887
|
+
*/
|
|
6880
6888
|
include_soft_deleted_activities?: boolean;
|
|
6881
6889
|
|
|
6882
6890
|
limit?: number;
|
|
@@ -7459,6 +7467,9 @@ export interface QueryReviewQueueResponse {
|
|
|
7459
7467
|
}
|
|
7460
7468
|
|
|
7461
7469
|
export interface QueryUsersPayload {
|
|
7470
|
+
/**
|
|
7471
|
+
* Filter conditions to apply to the query
|
|
7472
|
+
*/
|
|
7462
7473
|
filter_conditions: Record<string, any>;
|
|
7463
7474
|
|
|
7464
7475
|
include_deactivated_users?: boolean;
|
|
@@ -7469,6 +7480,9 @@ export interface QueryUsersPayload {
|
|
|
7469
7480
|
|
|
7470
7481
|
presence?: boolean;
|
|
7471
7482
|
|
|
7483
|
+
/**
|
|
7484
|
+
* Array of sort parameters
|
|
7485
|
+
*/
|
|
7472
7486
|
sort?: SortParamRequest[];
|
|
7473
7487
|
}
|
|
7474
7488
|
|