@selfcommunity/api-services 0.5.0-live.111 → 0.5.0-live.113

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.
@@ -78,6 +78,7 @@ export declare class LiveStreamApiClient {
78
78
  static join(id: number | string, config?: AxiosRequestConfig): Promise<SCLiveStreamConnectionDetailsType>;
79
79
  /**
80
80
  * This endpoint remove participant from the specified live stream.
81
+ * If ban=true in the payload the user can no longer join the meet
81
82
  * @param id
82
83
  * @param data
83
84
  * @param config
@@ -87,6 +87,7 @@ class LiveStreamApiClient {
87
87
  }
88
88
  /**
89
89
  * This endpoint remove participant from the specified live stream.
90
+ * If ban=true in the payload the user can no longer join the meet
90
91
  * @param id
91
92
  * @param data
92
93
  * @param config
@@ -47,4 +47,8 @@ export interface LiveStreamRemoveParticipantParams {
47
47
  * Participant Id
48
48
  */
49
49
  participant_id?: string | number;
50
+ /**
51
+ * Ban participant
52
+ */
53
+ ban?: boolean;
50
54
  }
@@ -78,6 +78,7 @@ export declare class LiveStreamApiClient {
78
78
  static join(id: number | string, config?: AxiosRequestConfig): Promise<SCLiveStreamConnectionDetailsType>;
79
79
  /**
80
80
  * This endpoint remove participant from the specified live stream.
81
+ * If ban=true in the payload the user can no longer join the meet
81
82
  * @param id
82
83
  * @param data
83
84
  * @param config
@@ -84,6 +84,7 @@ export class LiveStreamApiClient {
84
84
  }
85
85
  /**
86
86
  * This endpoint remove participant from the specified live stream.
87
+ * If ban=true in the payload the user can no longer join the meet
87
88
  * @param id
88
89
  * @param data
89
90
  * @param config
@@ -47,4 +47,8 @@ export interface LiveStreamRemoveParticipantParams {
47
47
  * Participant Id
48
48
  */
49
49
  participant_id?: string | number;
50
+ /**
51
+ * Ban participant
52
+ */
53
+ ban?: boolean;
50
54
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@selfcommunity/api-services",
3
- "version": "0.5.0-live.111+918e362f7",
3
+ "version": "0.5.0-live.113+8fd917868",
4
4
  "license": "MIT",
5
5
  "private": false,
6
6
  "main": "./lib/cjs/index.js",
@@ -58,7 +58,7 @@
58
58
  "access": "public"
59
59
  },
60
60
  "dependencies": {
61
- "@selfcommunity/types": "0.6.0-live.111+918e362f7",
61
+ "@selfcommunity/types": "0.6.0-live.113+8fd917868",
62
62
  "@selfcommunity/utils": "^0.2.61-alpha.0",
63
63
  "axios": "^1.4.0",
64
64
  "jose": "^4.14.4"
@@ -115,5 +115,5 @@
115
115
  "bugs": {
116
116
  "url": "https://github.com/selfcommunity/community-js/issues"
117
117
  },
118
- "gitHead": "918e362f7b5e74d2fe1589e229a739c9f94330ec"
118
+ "gitHead": "8fd917868ceb30601b3599633d844c3323a33e95"
119
119
  }