@aws-sdk/client-ivs-realtime 3.410.0 → 3.412.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.
@@ -70,6 +70,9 @@ export interface CreateParticipantTokenRequest {
70
70
  /**
71
71
  * @public
72
72
  * <p>Object specifying a participant token in a stage.</p>
73
+ * <p>
74
+ * <b>Important</b>: Treat tokens as opaque; i.e., do not build functionality
75
+ * based on token contents. The format of tokens could change in the future.</p>
73
76
  */
74
77
  export interface ParticipantToken {
75
78
  /**
@@ -101,7 +104,8 @@ export interface ParticipantToken {
101
104
  attributes?: Record<string, string>;
102
105
  /**
103
106
  * @public
104
- * <p>Duration (in minutes), after which the participant token expires. Default: 720 (12 hours).</p>
107
+ * <p>Duration (in minutes), after which the participant token expires. Default: 720 (12
108
+ * hours).</p>
105
109
  */
106
110
  duration?: number;
107
111
  /**
@@ -606,14 +610,13 @@ export interface Event {
606
610
  * @public
607
611
  * <p>If the event is an error event, the error code is provided to give insight into the
608
612
  * specific error that occurred. If the event is not an error event, this field is null.
609
- * <code>INSUFFICIENT_CAPABILITIES</code> indicates that the participant tried to take an action that the
610
- * participant’s token is not allowed to do. For more information about participant
611
- * capabilities, see the <code>capabilities</code> field in <a>CreateParticipantToken</a>.
612
- * <code>QUOTA_EXCEEDED</code> indicates that the number of participants who want to publish/subscribe to a
613
- * stage exceeds the quota; for more information, see <a href="https://docs.aws.amazon.com/ivs/latest/RealTimeUserGuide/service-quotas.html">Service Quotas</a>.
614
- * <code>PUBLISHER_NOT_FOUND</code> indicates that the participant tried to subscribe to a publisher
615
- * that doesn’t exist.
616
- * </p>
613
+ * <code>INSUFFICIENT_CAPABILITIES</code> indicates that the participant tried to take an
614
+ * action that the participant’s token is not allowed to do. For more information about
615
+ * participant capabilities, see the <code>capabilities</code> field in <a>CreateParticipantToken</a>. <code>QUOTA_EXCEEDED</code> indicates that the
616
+ * number of participants who want to publish/subscribe to a stage exceeds the quota; for more
617
+ * information, see <a href="https://docs.aws.amazon.com/ivs/latest/RealTimeUserGuide/service-quotas.html">Service Quotas</a>.
618
+ * <code>PUBLISHER_NOT_FOUND</code> indicates that the participant tried to subscribe to a
619
+ * publisher that doesn’t exist. </p>
617
620
  */
618
621
  errorCode?: EventErrorCode | string;
619
622
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-ivs-realtime",
3
3
  "description": "AWS SDK for JavaScript Ivs Realtime Client for Node.js, Browser and React Native",
4
- "version": "3.410.0",
4
+ "version": "3.412.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",