@formant/realtime-sdk 0.0.19 → 0.0.20
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/common/config/index.d.ts +2 -0
- package/dist/common/delay.d.ts +1 -1
- package/dist/common/isErrorType.d.ts +1 -0
- package/dist/common/narrowError.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/model/AnnotationAreaType.d.ts +2 -0
- package/dist/model/CognitoRegion.d.ts +2 -0
- package/dist/model/Feature.d.ts +2 -2
- package/dist/model/HealthStatus.d.ts +2 -0
- package/dist/model/HexRgbColor.d.ts +1 -0
- package/dist/model/IAccessScope.d.ts +5 -0
- package/dist/model/IAnnotationAreaTypeMap.d.ts +4 -0
- package/dist/model/IBattery.d.ts +6 -0
- package/dist/model/IBitset.d.ts +4 -0
- package/dist/model/IBoundingBox.d.ts +6 -0
- package/dist/model/IFile.d.ts +6 -0
- package/dist/model/IFilter.d.ts +10 -0
- package/dist/model/IGoal.d.ts +5 -0
- package/dist/model/IHealth.d.ts +5 -0
- package/dist/model/IImage.d.ts +6 -0
- package/dist/model/IImageAnnotation.d.ts +9 -0
- package/dist/model/ILocalization.d.ts +14 -0
- package/dist/model/ILocation.d.ts +6 -0
- package/dist/model/IMap.d.ts +10 -0
- package/dist/model/INumericSetEntry.d.ts +5 -0
- package/dist/model/IOdometry.d.ts +7 -0
- package/dist/model/IPath.d.ts +5 -0
- package/dist/model/IPointCloud.d.ts +6 -0
- package/dist/model/IRtcStream.d.ts +1 -0
- package/dist/model/IScopeFilter.d.ts +6 -0
- package/dist/model/IStreamTypeMap.d.ts +27 -0
- package/dist/model/ITagSets.d.ts +3 -0
- package/dist/model/ITransformNode.d.ts +8 -0
- package/dist/model/IUser.d.ts +11 -3
- package/dist/model/IVideo.d.ts +7 -0
- package/dist/model/LogLevel.d.ts +1 -1
- package/dist/model/Marker3DAction.d.ts +1 -1
- package/dist/model/Marker3DType.d.ts +1 -1
- package/dist/model/OrganizationPlan.d.ts +1 -1
- package/dist/model/RtcConnectionStatus.d.ts +1 -1
- package/dist/model/RtcIceServerProtocol.d.ts +1 -1
- package/dist/model/RtcIceTransportPolicy.d.ts +1 -1
- package/dist/model/RtcStreamType.d.ts +2 -2
- package/dist/model/StreamType.d.ts +2 -0
- package/dist/model/VideoMimeType.d.ts +2 -0
- package/dist/model/cognitoRegions.d.ts +1 -0
- package/dist/model/features.d.ts +1 -1
- package/dist/model/healthStatuses.d.ts +5 -0
- package/dist/model/videoMimeTypes.d.ts +1 -0
- package/dist/protos/api/signaling/v1/signaling_grpc_web_pb.d.ts +106 -120
- package/dist/rtc-client/DeadlineEnforcer.d.ts +4 -0
- package/dist/rtc-client/DeadlineReachedError.d.ts +3 -0
- package/dist/rtc-client/RtcClient.d.ts +2 -1
- package/dist/rtc-client/RtcClientV1.d.ts +1 -0
- package/dist/rtc-client/models/RtcChannelLabel.d.ts +1 -1
- package/dist/rtc-client/utils/garbageCollect.d.ts +1 -0
- package/dist/rtc-client/utils/getErrorMessage.d.ts +1 -0
- package/dist/version.txt +1 -0
- package/package.json +1 -1
|
@@ -18,3 +18,5 @@ export declare const jestWorkerId: string | undefined;
|
|
|
18
18
|
export declare const sheetExportMaxRowCount: number;
|
|
19
19
|
export declare const logToFile: boolean;
|
|
20
20
|
export declare const enableSelfServe: boolean;
|
|
21
|
+
export declare type UsageMetricsAggregateLevel = "day" | "hour" | "minute";
|
|
22
|
+
export declare const aggregateLevel: UsageMetricsAggregateLevel;
|
package/dist/common/delay.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const delay: (time?: number) => Promise<unknown>;
|
|
1
|
+
export declare const delay: (time?: number | undefined) => Promise<unknown>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function isErrorType<T extends Error>(error: unknown, constructor: new (...x: any[]) => T, predicate?: (t: T) => boolean): error is T;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare function narrowError<T>(error: unknown, constructor: new (...x: any[]) => T, predicate?: (t: T) => boolean): T;
|
|
1
|
+
export declare function narrowError<T extends Error>(error: unknown, constructor: new (...x: any[]) => T, predicate?: (t: T) => boolean): T;
|