@aws-sdk/client-kinesis-video-archived-media 3.1075.0 → 3.1076.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.
- package/dist-cjs/index.js +644 -15
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +7 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +7 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +7 -1
- package/package.json +8 -8
- package/dist-cjs/auth/httpAuthSchemeProvider.js +0 -40
- package/dist-cjs/endpoint/bdd.js +0 -46
- package/dist-cjs/endpoint/endpointResolver.js +0 -14
- package/dist-cjs/models/KinesisVideoArchivedMediaServiceException.js +0 -8
- package/dist-cjs/models/errors.js +0 -127
- package/dist-cjs/runtimeConfig.browser.js +0 -32
- package/dist-cjs/runtimeConfig.js +0 -45
- package/dist-cjs/runtimeConfig.native.js +0 -12
- package/dist-cjs/runtimeConfig.shared.js +0 -39
- package/dist-cjs/schemas/schemas_0.js +0 -317
package/dist-cjs/index.js
CHANGED
|
@@ -1,21 +1,57 @@
|
|
|
1
|
-
|
|
2
|
-
const { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
1
|
+
const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
3
2
|
const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
|
|
4
|
-
const { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
3
|
+
const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
5
4
|
exports.$Command = Command;
|
|
6
5
|
exports.__Client = Client;
|
|
7
|
-
const { resolveRegionConfig } = require("@smithy/core/config");
|
|
8
|
-
const { resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
9
|
-
const { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
10
|
-
const { resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
11
|
-
const { getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
12
|
-
const {
|
|
13
|
-
const {
|
|
14
|
-
const {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
6
|
+
const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
|
|
7
|
+
const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
8
|
+
const { parseUrl, getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
9
|
+
const { DEFAULT_RETRY_MODE, NODE_RETRY_MODE_CONFIG_OPTIONS, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
10
|
+
const { TypeRegistry, getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
11
|
+
const { resolveAwsSdkSigV4Config, AwsSdkSigV4Signer, NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } = require("@aws-sdk/core/httpAuthSchemes");
|
|
12
|
+
const { defaultProvider } = require("@aws-sdk/credential-provider-node");
|
|
13
|
+
const { toUtf8, fromUtf8, sdkStreamMixin, toBase64, fromBase64, Hash, calculateBodyLength } = require("@smithy/core/serde");
|
|
14
|
+
const { streamCollector, NodeHttpHandler } = require("@smithy/node-http-handler");
|
|
15
|
+
const { AwsRestJsonProtocol } = require("@aws-sdk/core/protocols");
|
|
16
|
+
|
|
17
|
+
const defaultKinesisVideoArchivedMediaHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
18
|
+
return {
|
|
19
|
+
operation: getSmithyContext(context).operation,
|
|
20
|
+
region: await normalizeProvider(config.region)() || (() => {
|
|
21
|
+
throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
|
|
22
|
+
})(),
|
|
23
|
+
};
|
|
24
|
+
};
|
|
25
|
+
function createAwsAuthSigv4HttpAuthOption(authParameters) {
|
|
26
|
+
return {
|
|
27
|
+
schemeId: "aws.auth#sigv4",
|
|
28
|
+
signingProperties: {
|
|
29
|
+
name: "kinesisvideo",
|
|
30
|
+
region: authParameters.region,
|
|
31
|
+
},
|
|
32
|
+
propertiesExtractor: (config, context) => ({
|
|
33
|
+
signingProperties: {
|
|
34
|
+
config,
|
|
35
|
+
context,
|
|
36
|
+
},
|
|
37
|
+
}),
|
|
38
|
+
};
|
|
39
|
+
}
|
|
40
|
+
const defaultKinesisVideoArchivedMediaHttpAuthSchemeProvider = (authParameters) => {
|
|
41
|
+
const options = [];
|
|
42
|
+
switch (authParameters.operation) {
|
|
43
|
+
default: {
|
|
44
|
+
options.push(createAwsAuthSigv4HttpAuthOption(authParameters));
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
return options;
|
|
48
|
+
};
|
|
49
|
+
const resolveHttpAuthSchemeConfig = (config) => {
|
|
50
|
+
const config_0 = resolveAwsSdkSigV4Config(config);
|
|
51
|
+
return Object.assign(config_0, {
|
|
52
|
+
authSchemePreference: normalizeProvider(config.authSchemePreference ?? []),
|
|
53
|
+
});
|
|
54
|
+
};
|
|
19
55
|
|
|
20
56
|
const resolveClientEndpointParameters = (options) => {
|
|
21
57
|
return Object.assign(options, {
|
|
@@ -31,6 +67,550 @@ const commonParams = {
|
|
|
31
67
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
32
68
|
};
|
|
33
69
|
|
|
70
|
+
var version = "3.1075.0";
|
|
71
|
+
var packageInfo = {
|
|
72
|
+
version: version};
|
|
73
|
+
|
|
74
|
+
const k = "ref";
|
|
75
|
+
const a = -1, b = true, c = "isSet", d = "PartitionResult", e = "booleanEquals", f = "getAttr", g = { [k]: "Endpoint" }, h = { [k]: d }, i = {}, j = [{ [k]: "Region" }];
|
|
76
|
+
const _data = {
|
|
77
|
+
conditions: [
|
|
78
|
+
[c, [g]],
|
|
79
|
+
[c, j],
|
|
80
|
+
["aws.partition", j, d],
|
|
81
|
+
[e, [{ [k]: "UseFIPS" }, b]],
|
|
82
|
+
[e, [{ [k]: "UseDualStack" }, b]],
|
|
83
|
+
[e, [{ fn: f, argv: [h, "supportsDualStack"] }, b]],
|
|
84
|
+
[e, [{ fn: f, argv: [h, "supportsFIPS"] }, b]]
|
|
85
|
+
],
|
|
86
|
+
results: [
|
|
87
|
+
[a],
|
|
88
|
+
[a, "Invalid Configuration: FIPS and custom endpoint are not supported"],
|
|
89
|
+
[a, "Invalid Configuration: Dualstack and custom endpoint are not supported"],
|
|
90
|
+
[g, i],
|
|
91
|
+
["https://kinesisvideo-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
92
|
+
[a, "FIPS and DualStack are enabled, but this partition does not support one or both"],
|
|
93
|
+
["https://kinesisvideo-fips.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
94
|
+
[a, "FIPS is enabled but this partition does not support FIPS"],
|
|
95
|
+
["https://kinesisvideo.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
96
|
+
[a, "DualStack is enabled but this partition does not support DualStack"],
|
|
97
|
+
["https://kinesisvideo.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
98
|
+
[a, "Invalid Configuration: Missing Region"]
|
|
99
|
+
]
|
|
100
|
+
};
|
|
101
|
+
const root = 2;
|
|
102
|
+
const r = 100_000_000;
|
|
103
|
+
const nodes = new Int32Array([
|
|
104
|
+
-1, 1, -1,
|
|
105
|
+
0, 12, 3,
|
|
106
|
+
1, 4, r + 11,
|
|
107
|
+
2, 5, r + 11,
|
|
108
|
+
3, 8, 6,
|
|
109
|
+
4, 7, r + 10,
|
|
110
|
+
5, r + 8, r + 9,
|
|
111
|
+
4, 10, 9,
|
|
112
|
+
6, r + 6, r + 7,
|
|
113
|
+
5, 11, r + 5,
|
|
114
|
+
6, r + 4, r + 5,
|
|
115
|
+
3, r + 1, 13,
|
|
116
|
+
4, r + 2, r + 3,
|
|
117
|
+
]);
|
|
118
|
+
const bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
|
|
119
|
+
|
|
120
|
+
const cache = new EndpointCache({
|
|
121
|
+
size: 50,
|
|
122
|
+
params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
|
|
123
|
+
});
|
|
124
|
+
const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
125
|
+
return cache.get(endpointParams, () => decideEndpoint(bdd, {
|
|
126
|
+
endpointParams: endpointParams,
|
|
127
|
+
logger: context.logger,
|
|
128
|
+
}));
|
|
129
|
+
};
|
|
130
|
+
customEndpointFunctions.aws = awsEndpointFunctions;
|
|
131
|
+
|
|
132
|
+
class KinesisVideoArchivedMediaServiceException extends ServiceException {
|
|
133
|
+
constructor(options) {
|
|
134
|
+
super(options);
|
|
135
|
+
Object.setPrototypeOf(this, KinesisVideoArchivedMediaServiceException.prototype);
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
class ClientLimitExceededException extends KinesisVideoArchivedMediaServiceException {
|
|
140
|
+
name = "ClientLimitExceededException";
|
|
141
|
+
$fault = "client";
|
|
142
|
+
Message;
|
|
143
|
+
constructor(opts) {
|
|
144
|
+
super({
|
|
145
|
+
name: "ClientLimitExceededException",
|
|
146
|
+
$fault: "client",
|
|
147
|
+
...opts,
|
|
148
|
+
});
|
|
149
|
+
Object.setPrototypeOf(this, ClientLimitExceededException.prototype);
|
|
150
|
+
this.Message = opts.Message;
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
class InvalidArgumentException extends KinesisVideoArchivedMediaServiceException {
|
|
154
|
+
name = "InvalidArgumentException";
|
|
155
|
+
$fault = "client";
|
|
156
|
+
Message;
|
|
157
|
+
constructor(opts) {
|
|
158
|
+
super({
|
|
159
|
+
name: "InvalidArgumentException",
|
|
160
|
+
$fault: "client",
|
|
161
|
+
...opts,
|
|
162
|
+
});
|
|
163
|
+
Object.setPrototypeOf(this, InvalidArgumentException.prototype);
|
|
164
|
+
this.Message = opts.Message;
|
|
165
|
+
}
|
|
166
|
+
}
|
|
167
|
+
class InvalidCodecPrivateDataException extends KinesisVideoArchivedMediaServiceException {
|
|
168
|
+
name = "InvalidCodecPrivateDataException";
|
|
169
|
+
$fault = "client";
|
|
170
|
+
Message;
|
|
171
|
+
constructor(opts) {
|
|
172
|
+
super({
|
|
173
|
+
name: "InvalidCodecPrivateDataException",
|
|
174
|
+
$fault: "client",
|
|
175
|
+
...opts,
|
|
176
|
+
});
|
|
177
|
+
Object.setPrototypeOf(this, InvalidCodecPrivateDataException.prototype);
|
|
178
|
+
this.Message = opts.Message;
|
|
179
|
+
}
|
|
180
|
+
}
|
|
181
|
+
class InvalidMediaFrameException extends KinesisVideoArchivedMediaServiceException {
|
|
182
|
+
name = "InvalidMediaFrameException";
|
|
183
|
+
$fault = "client";
|
|
184
|
+
Message;
|
|
185
|
+
constructor(opts) {
|
|
186
|
+
super({
|
|
187
|
+
name: "InvalidMediaFrameException",
|
|
188
|
+
$fault: "client",
|
|
189
|
+
...opts,
|
|
190
|
+
});
|
|
191
|
+
Object.setPrototypeOf(this, InvalidMediaFrameException.prototype);
|
|
192
|
+
this.Message = opts.Message;
|
|
193
|
+
}
|
|
194
|
+
}
|
|
195
|
+
class MissingCodecPrivateDataException extends KinesisVideoArchivedMediaServiceException {
|
|
196
|
+
name = "MissingCodecPrivateDataException";
|
|
197
|
+
$fault = "client";
|
|
198
|
+
Message;
|
|
199
|
+
constructor(opts) {
|
|
200
|
+
super({
|
|
201
|
+
name: "MissingCodecPrivateDataException",
|
|
202
|
+
$fault: "client",
|
|
203
|
+
...opts,
|
|
204
|
+
});
|
|
205
|
+
Object.setPrototypeOf(this, MissingCodecPrivateDataException.prototype);
|
|
206
|
+
this.Message = opts.Message;
|
|
207
|
+
}
|
|
208
|
+
}
|
|
209
|
+
class NoDataRetentionException extends KinesisVideoArchivedMediaServiceException {
|
|
210
|
+
name = "NoDataRetentionException";
|
|
211
|
+
$fault = "client";
|
|
212
|
+
Message;
|
|
213
|
+
constructor(opts) {
|
|
214
|
+
super({
|
|
215
|
+
name: "NoDataRetentionException",
|
|
216
|
+
$fault: "client",
|
|
217
|
+
...opts,
|
|
218
|
+
});
|
|
219
|
+
Object.setPrototypeOf(this, NoDataRetentionException.prototype);
|
|
220
|
+
this.Message = opts.Message;
|
|
221
|
+
}
|
|
222
|
+
}
|
|
223
|
+
class NotAuthorizedException extends KinesisVideoArchivedMediaServiceException {
|
|
224
|
+
name = "NotAuthorizedException";
|
|
225
|
+
$fault = "client";
|
|
226
|
+
Message;
|
|
227
|
+
constructor(opts) {
|
|
228
|
+
super({
|
|
229
|
+
name: "NotAuthorizedException",
|
|
230
|
+
$fault: "client",
|
|
231
|
+
...opts,
|
|
232
|
+
});
|
|
233
|
+
Object.setPrototypeOf(this, NotAuthorizedException.prototype);
|
|
234
|
+
this.Message = opts.Message;
|
|
235
|
+
}
|
|
236
|
+
}
|
|
237
|
+
class ResourceNotFoundException extends KinesisVideoArchivedMediaServiceException {
|
|
238
|
+
name = "ResourceNotFoundException";
|
|
239
|
+
$fault = "client";
|
|
240
|
+
Message;
|
|
241
|
+
constructor(opts) {
|
|
242
|
+
super({
|
|
243
|
+
name: "ResourceNotFoundException",
|
|
244
|
+
$fault: "client",
|
|
245
|
+
...opts,
|
|
246
|
+
});
|
|
247
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
248
|
+
this.Message = opts.Message;
|
|
249
|
+
}
|
|
250
|
+
}
|
|
251
|
+
class UnsupportedStreamMediaTypeException extends KinesisVideoArchivedMediaServiceException {
|
|
252
|
+
name = "UnsupportedStreamMediaTypeException";
|
|
253
|
+
$fault = "client";
|
|
254
|
+
Message;
|
|
255
|
+
constructor(opts) {
|
|
256
|
+
super({
|
|
257
|
+
name: "UnsupportedStreamMediaTypeException",
|
|
258
|
+
$fault: "client",
|
|
259
|
+
...opts,
|
|
260
|
+
});
|
|
261
|
+
Object.setPrototypeOf(this, UnsupportedStreamMediaTypeException.prototype);
|
|
262
|
+
this.Message = opts.Message;
|
|
263
|
+
}
|
|
264
|
+
}
|
|
265
|
+
|
|
266
|
+
const _CF = "ContainerFormat";
|
|
267
|
+
const _CFS = "ClipFragmentSelector";
|
|
268
|
+
const _CLEE = "ClientLimitExceededException";
|
|
269
|
+
const _CT = "ContentType";
|
|
270
|
+
const _CTR = "ClipTimestampRange";
|
|
271
|
+
const _CT_ = "Content-Type";
|
|
272
|
+
const _DASHFS = "DASHFragmentSelector";
|
|
273
|
+
const _DASHSSURL = "DASHStreamingSessionURL";
|
|
274
|
+
const _DASHTR = "DASHTimestampRange";
|
|
275
|
+
const _DFN = "DisplayFragmentNumber";
|
|
276
|
+
const _DFT = "DisplayFragmentTimestamp";
|
|
277
|
+
const _DM = "DiscontinuityMode";
|
|
278
|
+
const _E = "Expires";
|
|
279
|
+
const _ET = "EndTimestamp";
|
|
280
|
+
const _Er = "Error";
|
|
281
|
+
const _F = "Fragment";
|
|
282
|
+
const _FC = "FormatConfig";
|
|
283
|
+
const _FL = "FragmentList";
|
|
284
|
+
const _FLIM = "FragmentLengthInMilliseconds";
|
|
285
|
+
const _FN = "FragmentNumber";
|
|
286
|
+
const _FS = "FragmentSelector";
|
|
287
|
+
const _FSIB = "FragmentSizeInBytes";
|
|
288
|
+
const _FST = "FragmentSelectorType";
|
|
289
|
+
const _Fo = "Format";
|
|
290
|
+
const _Fr = "Fragments";
|
|
291
|
+
const _GC = "GetClip";
|
|
292
|
+
const _GCI = "GetClipInput";
|
|
293
|
+
const _GCO = "GetClipOutput";
|
|
294
|
+
const _GDASHSSURL = "GetDASHStreamingSessionURL";
|
|
295
|
+
const _GDASHSSURLI = "GetDASHStreamingSessionURLInput";
|
|
296
|
+
const _GDASHSSURLO = "GetDASHStreamingSessionURLOutput";
|
|
297
|
+
const _GHLSSSURL = "GetHLSStreamingSessionURL";
|
|
298
|
+
const _GHLSSSURLI = "GetHLSStreamingSessionURLInput";
|
|
299
|
+
const _GHLSSSURLO = "GetHLSStreamingSessionURLOutput";
|
|
300
|
+
const _GI = "GetImages";
|
|
301
|
+
const _GII = "GetImagesInput";
|
|
302
|
+
const _GIO = "GetImagesOutput";
|
|
303
|
+
const _GMFFL = "GetMediaForFragmentList";
|
|
304
|
+
const _GMFFLI = "GetMediaForFragmentListInput";
|
|
305
|
+
const _GMFFLO = "GetMediaForFragmentListOutput";
|
|
306
|
+
const _HLSFS = "HLSFragmentSelector";
|
|
307
|
+
const _HLSSSURL = "HLSStreamingSessionURL";
|
|
308
|
+
const _HLSTR = "HLSTimestampRange";
|
|
309
|
+
const _HP = "HeightPixels";
|
|
310
|
+
const _I = "Images";
|
|
311
|
+
const _IAE = "InvalidArgumentException";
|
|
312
|
+
const _IC = "ImageContent";
|
|
313
|
+
const _ICPDE = "InvalidCodecPrivateDataException";
|
|
314
|
+
const _IMFE = "InvalidMediaFrameException";
|
|
315
|
+
const _IST = "ImageSelectorType";
|
|
316
|
+
const _Im = "Image";
|
|
317
|
+
const _LF = "ListFragments";
|
|
318
|
+
const _LFI = "ListFragmentsInput";
|
|
319
|
+
const _LFO = "ListFragmentsOutput";
|
|
320
|
+
const _M = "Message";
|
|
321
|
+
const _MCPDE = "MissingCodecPrivateDataException";
|
|
322
|
+
const _MMFR = "MaxManifestFragmentResults";
|
|
323
|
+
const _MMPFR = "MaxMediaPlaylistFragmentResults";
|
|
324
|
+
const _MR = "MaxResults";
|
|
325
|
+
const _NAE = "NotAuthorizedException";
|
|
326
|
+
const _NDRE = "NoDataRetentionException";
|
|
327
|
+
const _NT = "NextToken";
|
|
328
|
+
const _P = "Payload";
|
|
329
|
+
const _PM = "PlaybackMode";
|
|
330
|
+
const _PT = "ProducerTimestamp";
|
|
331
|
+
const _RNFE = "ResourceNotFoundException";
|
|
332
|
+
const _SARN = "StreamARN";
|
|
333
|
+
const _SI = "SamplingInterval";
|
|
334
|
+
const _SN = "StreamName";
|
|
335
|
+
const _ST = "StartTimestamp";
|
|
336
|
+
const _STe = "ServerTimestamp";
|
|
337
|
+
const _TR = "TimestampRange";
|
|
338
|
+
const _TS = "TimeStamp";
|
|
339
|
+
const _USMTE = "UnsupportedStreamMediaTypeException";
|
|
340
|
+
const _WP = "WidthPixels";
|
|
341
|
+
const _c = "client";
|
|
342
|
+
const _e = "error";
|
|
343
|
+
const _h = "http";
|
|
344
|
+
const _hE = "httpError";
|
|
345
|
+
const _hH = "httpHeader";
|
|
346
|
+
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.kinesisvideoarchivedmedia";
|
|
347
|
+
const _st = "streaming";
|
|
348
|
+
const n0 = "com.amazonaws.kinesisvideoarchivedmedia";
|
|
349
|
+
const _s_registry = TypeRegistry.for(_s);
|
|
350
|
+
var KinesisVideoArchivedMediaServiceException$ = [-3, _s, "KinesisVideoArchivedMediaServiceException", 0, [], []];
|
|
351
|
+
_s_registry.registerError(KinesisVideoArchivedMediaServiceException$, KinesisVideoArchivedMediaServiceException);
|
|
352
|
+
const n0_registry = TypeRegistry.for(n0);
|
|
353
|
+
var ClientLimitExceededException$ = [-3, n0, _CLEE,
|
|
354
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
355
|
+
[_M],
|
|
356
|
+
[0]
|
|
357
|
+
];
|
|
358
|
+
n0_registry.registerError(ClientLimitExceededException$, ClientLimitExceededException);
|
|
359
|
+
var InvalidArgumentException$ = [-3, n0, _IAE,
|
|
360
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
361
|
+
[_M],
|
|
362
|
+
[0]
|
|
363
|
+
];
|
|
364
|
+
n0_registry.registerError(InvalidArgumentException$, InvalidArgumentException);
|
|
365
|
+
var InvalidCodecPrivateDataException$ = [-3, n0, _ICPDE,
|
|
366
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
367
|
+
[_M],
|
|
368
|
+
[0]
|
|
369
|
+
];
|
|
370
|
+
n0_registry.registerError(InvalidCodecPrivateDataException$, InvalidCodecPrivateDataException);
|
|
371
|
+
var InvalidMediaFrameException$ = [-3, n0, _IMFE,
|
|
372
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
373
|
+
[_M],
|
|
374
|
+
[0]
|
|
375
|
+
];
|
|
376
|
+
n0_registry.registerError(InvalidMediaFrameException$, InvalidMediaFrameException);
|
|
377
|
+
var MissingCodecPrivateDataException$ = [-3, n0, _MCPDE,
|
|
378
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
379
|
+
[_M],
|
|
380
|
+
[0]
|
|
381
|
+
];
|
|
382
|
+
n0_registry.registerError(MissingCodecPrivateDataException$, MissingCodecPrivateDataException);
|
|
383
|
+
var NoDataRetentionException$ = [-3, n0, _NDRE,
|
|
384
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
385
|
+
[_M],
|
|
386
|
+
[0]
|
|
387
|
+
];
|
|
388
|
+
n0_registry.registerError(NoDataRetentionException$, NoDataRetentionException);
|
|
389
|
+
var NotAuthorizedException$ = [-3, n0, _NAE,
|
|
390
|
+
{ [_e]: _c, [_hE]: 401 },
|
|
391
|
+
[_M],
|
|
392
|
+
[0]
|
|
393
|
+
];
|
|
394
|
+
n0_registry.registerError(NotAuthorizedException$, NotAuthorizedException);
|
|
395
|
+
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
396
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
397
|
+
[_M],
|
|
398
|
+
[0]
|
|
399
|
+
];
|
|
400
|
+
n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
401
|
+
var UnsupportedStreamMediaTypeException$ = [-3, n0, _USMTE,
|
|
402
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
403
|
+
[_M],
|
|
404
|
+
[0]
|
|
405
|
+
];
|
|
406
|
+
n0_registry.registerError(UnsupportedStreamMediaTypeException$, UnsupportedStreamMediaTypeException);
|
|
407
|
+
const errorTypeRegistries = [
|
|
408
|
+
_s_registry,
|
|
409
|
+
n0_registry,
|
|
410
|
+
];
|
|
411
|
+
var Payload = [0, n0, _P, { [_st]: 1 }, 42];
|
|
412
|
+
var ClipFragmentSelector$ = [3, n0, _CFS,
|
|
413
|
+
0,
|
|
414
|
+
[_FST, _TR],
|
|
415
|
+
[0, () => ClipTimestampRange$], 2
|
|
416
|
+
];
|
|
417
|
+
var ClipTimestampRange$ = [3, n0, _CTR,
|
|
418
|
+
0,
|
|
419
|
+
[_ST, _ET],
|
|
420
|
+
[4, 4], 2
|
|
421
|
+
];
|
|
422
|
+
var DASHFragmentSelector$ = [3, n0, _DASHFS,
|
|
423
|
+
0,
|
|
424
|
+
[_FST, _TR],
|
|
425
|
+
[0, () => DASHTimestampRange$]
|
|
426
|
+
];
|
|
427
|
+
var DASHTimestampRange$ = [3, n0, _DASHTR,
|
|
428
|
+
0,
|
|
429
|
+
[_ST, _ET],
|
|
430
|
+
[4, 4]
|
|
431
|
+
];
|
|
432
|
+
var Fragment$ = [3, n0, _F,
|
|
433
|
+
0,
|
|
434
|
+
[_FN, _FSIB, _PT, _STe, _FLIM],
|
|
435
|
+
[0, 1, 4, 4, 1]
|
|
436
|
+
];
|
|
437
|
+
var FragmentSelector$ = [3, n0, _FS,
|
|
438
|
+
0,
|
|
439
|
+
[_FST, _TR],
|
|
440
|
+
[0, () => TimestampRange$], 2
|
|
441
|
+
];
|
|
442
|
+
var GetClipInput$ = [3, n0, _GCI,
|
|
443
|
+
0,
|
|
444
|
+
[_CFS, _SN, _SARN],
|
|
445
|
+
[() => ClipFragmentSelector$, 0, 0], 1
|
|
446
|
+
];
|
|
447
|
+
var GetClipOutput$ = [3, n0, _GCO,
|
|
448
|
+
0,
|
|
449
|
+
[_CT, _P],
|
|
450
|
+
[[0, { [_hH]: _CT_ }], [() => Payload, 16]]
|
|
451
|
+
];
|
|
452
|
+
var GetDASHStreamingSessionURLInput$ = [3, n0, _GDASHSSURLI,
|
|
453
|
+
0,
|
|
454
|
+
[_SN, _SARN, _PM, _DFT, _DFN, _DASHFS, _E, _MMFR],
|
|
455
|
+
[0, 0, 0, 0, 0, () => DASHFragmentSelector$, 1, 1]
|
|
456
|
+
];
|
|
457
|
+
var GetDASHStreamingSessionURLOutput$ = [3, n0, _GDASHSSURLO,
|
|
458
|
+
0,
|
|
459
|
+
[_DASHSSURL],
|
|
460
|
+
[0]
|
|
461
|
+
];
|
|
462
|
+
var GetHLSStreamingSessionURLInput$ = [3, n0, _GHLSSSURLI,
|
|
463
|
+
0,
|
|
464
|
+
[_SN, _SARN, _PM, _HLSFS, _CF, _DM, _DFT, _E, _MMPFR],
|
|
465
|
+
[0, 0, 0, () => HLSFragmentSelector$, 0, 0, 0, 1, 1]
|
|
466
|
+
];
|
|
467
|
+
var GetHLSStreamingSessionURLOutput$ = [3, n0, _GHLSSSURLO,
|
|
468
|
+
0,
|
|
469
|
+
[_HLSSSURL],
|
|
470
|
+
[0]
|
|
471
|
+
];
|
|
472
|
+
var GetImagesInput$ = [3, n0, _GII,
|
|
473
|
+
0,
|
|
474
|
+
[_IST, _ST, _ET, _Fo, _SN, _SARN, _SI, _FC, _WP, _HP, _MR, _NT],
|
|
475
|
+
[0, 4, 4, 0, 0, 0, 1, 128 | 0, 1, 1, 1, 0], 4
|
|
476
|
+
];
|
|
477
|
+
var GetImagesOutput$ = [3, n0, _GIO,
|
|
478
|
+
0,
|
|
479
|
+
[_I, _NT],
|
|
480
|
+
[() => Images, 0]
|
|
481
|
+
];
|
|
482
|
+
var GetMediaForFragmentListInput$ = [3, n0, _GMFFLI,
|
|
483
|
+
0,
|
|
484
|
+
[_Fr, _SN, _SARN],
|
|
485
|
+
[64 | 0, 0, 0], 1
|
|
486
|
+
];
|
|
487
|
+
var GetMediaForFragmentListOutput$ = [3, n0, _GMFFLO,
|
|
488
|
+
0,
|
|
489
|
+
[_CT, _P],
|
|
490
|
+
[[0, { [_hH]: _CT_ }], [() => Payload, 16]]
|
|
491
|
+
];
|
|
492
|
+
var HLSFragmentSelector$ = [3, n0, _HLSFS,
|
|
493
|
+
0,
|
|
494
|
+
[_FST, _TR],
|
|
495
|
+
[0, () => HLSTimestampRange$]
|
|
496
|
+
];
|
|
497
|
+
var HLSTimestampRange$ = [3, n0, _HLSTR,
|
|
498
|
+
0,
|
|
499
|
+
[_ST, _ET],
|
|
500
|
+
[4, 4]
|
|
501
|
+
];
|
|
502
|
+
var Image$ = [3, n0, _Im,
|
|
503
|
+
0,
|
|
504
|
+
[_TS, _Er, _IC],
|
|
505
|
+
[4, 0, 0]
|
|
506
|
+
];
|
|
507
|
+
var ListFragmentsInput$ = [3, n0, _LFI,
|
|
508
|
+
0,
|
|
509
|
+
[_SN, _SARN, _MR, _NT, _FS],
|
|
510
|
+
[0, 0, 1, 0, () => FragmentSelector$]
|
|
511
|
+
];
|
|
512
|
+
var ListFragmentsOutput$ = [3, n0, _LFO,
|
|
513
|
+
0,
|
|
514
|
+
[_Fr, _NT],
|
|
515
|
+
[() => FragmentList, 0]
|
|
516
|
+
];
|
|
517
|
+
var TimestampRange$ = [3, n0, _TR,
|
|
518
|
+
0,
|
|
519
|
+
[_ST, _ET],
|
|
520
|
+
[4, 4], 2
|
|
521
|
+
];
|
|
522
|
+
var FragmentList = [1, n0, _FL,
|
|
523
|
+
0, () => Fragment$
|
|
524
|
+
];
|
|
525
|
+
var Images = [1, n0, _I,
|
|
526
|
+
0, () => Image$
|
|
527
|
+
];
|
|
528
|
+
var GetClip$ = [9, n0, _GC,
|
|
529
|
+
{ [_h]: ["POST", "/getClip", 200] }, () => GetClipInput$, () => GetClipOutput$
|
|
530
|
+
];
|
|
531
|
+
var GetDASHStreamingSessionURL$ = [9, n0, _GDASHSSURL,
|
|
532
|
+
{ [_h]: ["POST", "/getDASHStreamingSessionURL", 200] }, () => GetDASHStreamingSessionURLInput$, () => GetDASHStreamingSessionURLOutput$
|
|
533
|
+
];
|
|
534
|
+
var GetHLSStreamingSessionURL$ = [9, n0, _GHLSSSURL,
|
|
535
|
+
{ [_h]: ["POST", "/getHLSStreamingSessionURL", 200] }, () => GetHLSStreamingSessionURLInput$, () => GetHLSStreamingSessionURLOutput$
|
|
536
|
+
];
|
|
537
|
+
var GetImages$ = [9, n0, _GI,
|
|
538
|
+
{ [_h]: ["POST", "/getImages", 200] }, () => GetImagesInput$, () => GetImagesOutput$
|
|
539
|
+
];
|
|
540
|
+
var GetMediaForFragmentList$ = [9, n0, _GMFFL,
|
|
541
|
+
{ [_h]: ["POST", "/getMediaForFragmentList", 200] }, () => GetMediaForFragmentListInput$, () => GetMediaForFragmentListOutput$
|
|
542
|
+
];
|
|
543
|
+
var ListFragments$ = [9, n0, _LF,
|
|
544
|
+
{ [_h]: ["POST", "/listFragments", 200] }, () => ListFragmentsInput$, () => ListFragmentsOutput$
|
|
545
|
+
];
|
|
546
|
+
|
|
547
|
+
const getRuntimeConfig$1 = (config) => {
|
|
548
|
+
return {
|
|
549
|
+
apiVersion: "2017-09-30",
|
|
550
|
+
base64Decoder: config?.base64Decoder ?? fromBase64,
|
|
551
|
+
base64Encoder: config?.base64Encoder ?? toBase64,
|
|
552
|
+
disableHostPrefix: config?.disableHostPrefix ?? false,
|
|
553
|
+
endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
|
|
554
|
+
extensions: config?.extensions ?? [],
|
|
555
|
+
httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultKinesisVideoArchivedMediaHttpAuthSchemeProvider,
|
|
556
|
+
httpAuthSchemes: config?.httpAuthSchemes ?? [
|
|
557
|
+
{
|
|
558
|
+
schemeId: "aws.auth#sigv4",
|
|
559
|
+
identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
|
|
560
|
+
signer: new AwsSdkSigV4Signer(),
|
|
561
|
+
},
|
|
562
|
+
],
|
|
563
|
+
logger: config?.logger ?? new NoOpLogger(),
|
|
564
|
+
protocol: config?.protocol ?? AwsRestJsonProtocol,
|
|
565
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
566
|
+
defaultNamespace: "com.amazonaws.kinesisvideoarchivedmedia",
|
|
567
|
+
errorTypeRegistries,
|
|
568
|
+
version: "2017-09-30",
|
|
569
|
+
serviceTarget: "AWSAcuityReader",
|
|
570
|
+
},
|
|
571
|
+
sdkStreamMixin: config?.sdkStreamMixin ?? sdkStreamMixin,
|
|
572
|
+
serviceId: config?.serviceId ?? "Kinesis Video Archived Media",
|
|
573
|
+
urlParser: config?.urlParser ?? parseUrl,
|
|
574
|
+
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|
|
575
|
+
utf8Encoder: config?.utf8Encoder ?? toUtf8,
|
|
576
|
+
};
|
|
577
|
+
};
|
|
578
|
+
|
|
579
|
+
const getRuntimeConfig = (config) => {
|
|
580
|
+
emitWarningIfUnsupportedVersion(process.version);
|
|
581
|
+
const defaultsMode = resolveDefaultsModeConfig(config);
|
|
582
|
+
const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
|
|
583
|
+
const clientSharedValues = getRuntimeConfig$1(config);
|
|
584
|
+
emitWarningIfUnsupportedVersion$1(process.version);
|
|
585
|
+
const loaderConfig = {
|
|
586
|
+
profile: config?.profile,
|
|
587
|
+
logger: clientSharedValues.logger,
|
|
588
|
+
};
|
|
589
|
+
return {
|
|
590
|
+
...clientSharedValues,
|
|
591
|
+
...config,
|
|
592
|
+
runtime: "node",
|
|
593
|
+
defaultsMode,
|
|
594
|
+
authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
595
|
+
bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
|
|
596
|
+
credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
|
|
597
|
+
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
598
|
+
maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
|
|
599
|
+
region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
|
|
600
|
+
requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
601
|
+
retryMode: config?.retryMode ??
|
|
602
|
+
loadConfig({
|
|
603
|
+
...NODE_RETRY_MODE_CONFIG_OPTIONS,
|
|
604
|
+
default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
|
|
605
|
+
}, config),
|
|
606
|
+
sha256: config?.sha256 ?? Hash.bind(null, "sha256"),
|
|
607
|
+
streamCollector: config?.streamCollector ?? streamCollector,
|
|
608
|
+
useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
609
|
+
useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
610
|
+
userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
|
|
611
|
+
};
|
|
612
|
+
};
|
|
613
|
+
|
|
34
614
|
const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
|
|
35
615
|
const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
|
|
36
616
|
let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
|
|
@@ -266,28 +846,77 @@ const FragmentSelectorType = {
|
|
|
266
846
|
SERVER_TIMESTAMP: "SERVER_TIMESTAMP",
|
|
267
847
|
};
|
|
268
848
|
|
|
849
|
+
exports.ClientLimitExceededException = ClientLimitExceededException;
|
|
850
|
+
exports.ClientLimitExceededException$ = ClientLimitExceededException$;
|
|
851
|
+
exports.ClipFragmentSelector$ = ClipFragmentSelector$;
|
|
269
852
|
exports.ClipFragmentSelectorType = ClipFragmentSelectorType;
|
|
853
|
+
exports.ClipTimestampRange$ = ClipTimestampRange$;
|
|
270
854
|
exports.ContainerFormat = ContainerFormat;
|
|
271
855
|
exports.DASHDisplayFragmentNumber = DASHDisplayFragmentNumber;
|
|
272
856
|
exports.DASHDisplayFragmentTimestamp = DASHDisplayFragmentTimestamp;
|
|
857
|
+
exports.DASHFragmentSelector$ = DASHFragmentSelector$;
|
|
273
858
|
exports.DASHFragmentSelectorType = DASHFragmentSelectorType;
|
|
274
859
|
exports.DASHPlaybackMode = DASHPlaybackMode;
|
|
860
|
+
exports.DASHTimestampRange$ = DASHTimestampRange$;
|
|
275
861
|
exports.Format = Format;
|
|
276
862
|
exports.FormatConfigKey = FormatConfigKey;
|
|
863
|
+
exports.Fragment$ = Fragment$;
|
|
864
|
+
exports.FragmentSelector$ = FragmentSelector$;
|
|
277
865
|
exports.FragmentSelectorType = FragmentSelectorType;
|
|
866
|
+
exports.GetClip$ = GetClip$;
|
|
278
867
|
exports.GetClipCommand = GetClipCommand;
|
|
868
|
+
exports.GetClipInput$ = GetClipInput$;
|
|
869
|
+
exports.GetClipOutput$ = GetClipOutput$;
|
|
870
|
+
exports.GetDASHStreamingSessionURL$ = GetDASHStreamingSessionURL$;
|
|
279
871
|
exports.GetDASHStreamingSessionURLCommand = GetDASHStreamingSessionURLCommand;
|
|
872
|
+
exports.GetDASHStreamingSessionURLInput$ = GetDASHStreamingSessionURLInput$;
|
|
873
|
+
exports.GetDASHStreamingSessionURLOutput$ = GetDASHStreamingSessionURLOutput$;
|
|
874
|
+
exports.GetHLSStreamingSessionURL$ = GetHLSStreamingSessionURL$;
|
|
280
875
|
exports.GetHLSStreamingSessionURLCommand = GetHLSStreamingSessionURLCommand;
|
|
876
|
+
exports.GetHLSStreamingSessionURLInput$ = GetHLSStreamingSessionURLInput$;
|
|
877
|
+
exports.GetHLSStreamingSessionURLOutput$ = GetHLSStreamingSessionURLOutput$;
|
|
878
|
+
exports.GetImages$ = GetImages$;
|
|
281
879
|
exports.GetImagesCommand = GetImagesCommand;
|
|
880
|
+
exports.GetImagesInput$ = GetImagesInput$;
|
|
881
|
+
exports.GetImagesOutput$ = GetImagesOutput$;
|
|
882
|
+
exports.GetMediaForFragmentList$ = GetMediaForFragmentList$;
|
|
282
883
|
exports.GetMediaForFragmentListCommand = GetMediaForFragmentListCommand;
|
|
884
|
+
exports.GetMediaForFragmentListInput$ = GetMediaForFragmentListInput$;
|
|
885
|
+
exports.GetMediaForFragmentListOutput$ = GetMediaForFragmentListOutput$;
|
|
283
886
|
exports.HLSDiscontinuityMode = HLSDiscontinuityMode;
|
|
284
887
|
exports.HLSDisplayFragmentTimestamp = HLSDisplayFragmentTimestamp;
|
|
888
|
+
exports.HLSFragmentSelector$ = HLSFragmentSelector$;
|
|
285
889
|
exports.HLSFragmentSelectorType = HLSFragmentSelectorType;
|
|
286
890
|
exports.HLSPlaybackMode = HLSPlaybackMode;
|
|
891
|
+
exports.HLSTimestampRange$ = HLSTimestampRange$;
|
|
892
|
+
exports.Image$ = Image$;
|
|
287
893
|
exports.ImageError = ImageError;
|
|
288
894
|
exports.ImageSelectorType = ImageSelectorType;
|
|
895
|
+
exports.InvalidArgumentException = InvalidArgumentException;
|
|
896
|
+
exports.InvalidArgumentException$ = InvalidArgumentException$;
|
|
897
|
+
exports.InvalidCodecPrivateDataException = InvalidCodecPrivateDataException;
|
|
898
|
+
exports.InvalidCodecPrivateDataException$ = InvalidCodecPrivateDataException$;
|
|
899
|
+
exports.InvalidMediaFrameException = InvalidMediaFrameException;
|
|
900
|
+
exports.InvalidMediaFrameException$ = InvalidMediaFrameException$;
|
|
289
901
|
exports.KinesisVideoArchivedMedia = KinesisVideoArchivedMedia;
|
|
290
902
|
exports.KinesisVideoArchivedMediaClient = KinesisVideoArchivedMediaClient;
|
|
903
|
+
exports.KinesisVideoArchivedMediaServiceException = KinesisVideoArchivedMediaServiceException;
|
|
904
|
+
exports.KinesisVideoArchivedMediaServiceException$ = KinesisVideoArchivedMediaServiceException$;
|
|
905
|
+
exports.ListFragments$ = ListFragments$;
|
|
291
906
|
exports.ListFragmentsCommand = ListFragmentsCommand;
|
|
907
|
+
exports.ListFragmentsInput$ = ListFragmentsInput$;
|
|
908
|
+
exports.ListFragmentsOutput$ = ListFragmentsOutput$;
|
|
909
|
+
exports.MissingCodecPrivateDataException = MissingCodecPrivateDataException;
|
|
910
|
+
exports.MissingCodecPrivateDataException$ = MissingCodecPrivateDataException$;
|
|
911
|
+
exports.NoDataRetentionException = NoDataRetentionException;
|
|
912
|
+
exports.NoDataRetentionException$ = NoDataRetentionException$;
|
|
913
|
+
exports.NotAuthorizedException = NotAuthorizedException;
|
|
914
|
+
exports.NotAuthorizedException$ = NotAuthorizedException$;
|
|
915
|
+
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
916
|
+
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
917
|
+
exports.TimestampRange$ = TimestampRange$;
|
|
918
|
+
exports.UnsupportedStreamMediaTypeException = UnsupportedStreamMediaTypeException;
|
|
919
|
+
exports.UnsupportedStreamMediaTypeException$ = UnsupportedStreamMediaTypeException$;
|
|
920
|
+
exports.errorTypeRegistries = errorTypeRegistries;
|
|
292
921
|
exports.paginateGetImages = paginateGetImages;
|
|
293
922
|
exports.paginateListFragments = paginateListFragments;
|