@stream-io/node-sdk 0.7.42 → 0.7.43
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/dist/index.cjs.js +254 -10
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.mjs +254 -10
- package/dist/index.es.mjs.map +1 -1
- package/dist/src/gen/chat/ChatApi.d.ts +5 -4
- package/dist/src/gen/common/CommonApi.d.ts +32 -1
- package/dist/src/gen/feeds/FeedsApi.d.ts +6 -3
- package/dist/src/gen/models/index.d.ts +360 -50
- package/package.json +1 -1
- package/src/gen/chat/ChatApi.ts +37 -8
- package/src/gen/common/CommonApi.ts +199 -0
- package/src/gen/feeds/FeedsApi.ts +25 -3
- package/src/gen/model-decoders/decoders.ts +173 -2
- package/src/gen/models/index.ts +628 -84
- package/src/gen/moderation/ModerationApi.ts +2 -1
|
@@ -496,15 +496,16 @@ export class ModerationApi {
|
|
|
496
496
|
const body = {
|
|
497
497
|
name: request?.name,
|
|
498
498
|
rule_type: request?.rule_type,
|
|
499
|
-
action: request?.action,
|
|
500
499
|
cooldown_period: request?.cooldown_period,
|
|
501
500
|
description: request?.description,
|
|
502
501
|
enabled: request?.enabled,
|
|
503
502
|
logic: request?.logic,
|
|
504
503
|
team: request?.team,
|
|
504
|
+
action_sequences: request?.action_sequences,
|
|
505
505
|
conditions: request?.conditions,
|
|
506
506
|
config_keys: request?.config_keys,
|
|
507
507
|
groups: request?.groups,
|
|
508
|
+
action: request?.action,
|
|
508
509
|
};
|
|
509
510
|
|
|
510
511
|
const response = await this.apiClient.sendRequest<
|