@dolbyio/dolbyio-rest-apis-client 5.0.1 → 5.0.2
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.js
CHANGED
|
@@ -19,6 +19,11 @@ export interface Cluster {
|
|
|
19
19
|
/** Country of the cluster. */
|
|
20
20
|
country: string;
|
|
21
21
|
};
|
|
22
|
+
/** Features available in this cluster. */
|
|
23
|
+
features: {
|
|
24
|
+
/** Indicates whether the Transcoder feature is supported in the corresponding cluster. */
|
|
25
|
+
transcoding: boolean;
|
|
26
|
+
};
|
|
22
27
|
}
|
|
23
28
|
/**
|
|
24
29
|
* Represents the response to a {@link read} or {@link update} request.
|