@wildix/wda-stream-client 1.1.67 → 3.1.69

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.
Files changed (111) hide show
  1. package/dist-cjs/WdaStream.js +3 -3
  2. package/dist-cjs/WdaStreamClient.js +34 -26
  3. package/dist-cjs/auth/httpAuthExtensionConfiguration.js +43 -0
  4. package/dist-cjs/auth/httpAuthSchemeProvider.js +58 -0
  5. package/dist-cjs/commands/ConsumeEventCommand.js +10 -11
  6. package/dist-cjs/commands/DescribeEventCommand.js +10 -11
  7. package/dist-cjs/commands/GetConferenceIdCommand.js +10 -11
  8. package/dist-cjs/commands/GetOngoingCallAnnotationsCommand.js +10 -11
  9. package/dist-cjs/commands/GetOngoingCallCommand.js +10 -11
  10. package/dist-cjs/commands/GetOngoingCallTranscriptionCommand.js +10 -11
  11. package/dist-cjs/commands/GetOngoingChatAnnotationsCommand.js +10 -11
  12. package/dist-cjs/commands/GetOngoingConferenceAnnotationsCommand.js +10 -11
  13. package/dist-cjs/commands/GetOngoingConferenceCommand.js +10 -11
  14. package/dist-cjs/commands/GetOngoingConferenceTranscriptionCommand.js +10 -11
  15. package/dist-cjs/commands/ListServicesCommand.js +10 -11
  16. package/dist-cjs/commands/QueryConversationsCommand.js +10 -11
  17. package/dist-cjs/commands/QueryPresenceCommand.js +10 -11
  18. package/dist-cjs/commands/QueryPresencesCommand.js +10 -11
  19. package/dist-cjs/commands/UpdatePresenceLastSeenCommand.js +10 -11
  20. package/dist-cjs/commands/index.js +2 -2
  21. package/dist-cjs/endpoint/EndpointParameters.js +16 -0
  22. package/dist-cjs/endpoint/bdd.js +28 -0
  23. package/dist-cjs/endpoint/endpointResolver.js +16 -0
  24. package/dist-cjs/index.js +5 -1
  25. package/dist-cjs/models/WdaStreamServiceException.js +3 -3
  26. package/dist-cjs/models/enums.js +508 -0
  27. package/dist-cjs/models/errors.js +56 -0
  28. package/dist-cjs/models/models_0.js +0 -660
  29. package/dist-cjs/models/models_1.js +0 -48
  30. package/dist-cjs/runtimeConfig.browser.js +11 -11
  31. package/dist-cjs/runtimeConfig.js +22 -18
  32. package/dist-cjs/runtimeConfig.shared.js +30 -10
  33. package/dist-cjs/runtimeExtensions.js +6 -5
  34. package/dist-cjs/schemas/schemas_0.js +2528 -0
  35. package/dist-es/WdaStream.js +2 -2
  36. package/dist-es/WdaStreamClient.js +30 -22
  37. package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
  38. package/dist-es/auth/httpAuthSchemeProvider.js +52 -0
  39. package/dist-es/commands/ConsumeEventCommand.js +9 -10
  40. package/dist-es/commands/DescribeEventCommand.js +9 -10
  41. package/dist-es/commands/GetConferenceIdCommand.js +9 -10
  42. package/dist-es/commands/GetOngoingCallAnnotationsCommand.js +9 -10
  43. package/dist-es/commands/GetOngoingCallCommand.js +9 -10
  44. package/dist-es/commands/GetOngoingCallTranscriptionCommand.js +9 -10
  45. package/dist-es/commands/GetOngoingChatAnnotationsCommand.js +9 -10
  46. package/dist-es/commands/GetOngoingConferenceAnnotationsCommand.js +9 -10
  47. package/dist-es/commands/GetOngoingConferenceCommand.js +9 -10
  48. package/dist-es/commands/GetOngoingConferenceTranscriptionCommand.js +9 -10
  49. package/dist-es/commands/ListServicesCommand.js +9 -10
  50. package/dist-es/commands/QueryConversationsCommand.js +9 -10
  51. package/dist-es/commands/QueryPresenceCommand.js +9 -10
  52. package/dist-es/commands/QueryPresencesCommand.js +9 -10
  53. package/dist-es/commands/UpdatePresenceLastSeenCommand.js +9 -10
  54. package/dist-es/commands/index.js +2 -2
  55. package/dist-es/endpoint/EndpointParameters.js +12 -0
  56. package/dist-es/endpoint/bdd.js +25 -0
  57. package/dist-es/endpoint/endpointResolver.js +12 -0
  58. package/dist-es/index.js +5 -1
  59. package/dist-es/models/WdaStreamServiceException.js +1 -1
  60. package/dist-es/models/enums.js +504 -0
  61. package/dist-es/models/errors.js +49 -0
  62. package/dist-es/models/models_0.js +1 -656
  63. package/dist-es/models/models_1.js +1 -45
  64. package/dist-es/runtimeConfig.browser.js +7 -7
  65. package/dist-es/runtimeConfig.js +17 -13
  66. package/dist-es/runtimeConfig.shared.js +24 -4
  67. package/dist-es/runtimeExtensions.js +6 -5
  68. package/dist-es/schemas/schemas_0.js +2519 -0
  69. package/dist-types/WdaStream.d.ts +16 -16
  70. package/dist-types/WdaStreamClient.d.ts +45 -27
  71. package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
  72. package/dist-types/auth/httpAuthSchemeProvider.d.ts +81 -0
  73. package/dist-types/commands/ConsumeEventCommand.d.ts +16 -7
  74. package/dist-types/commands/DescribeEventCommand.d.ts +24 -18
  75. package/dist-types/commands/GetConferenceIdCommand.d.ts +11 -7
  76. package/dist-types/commands/GetOngoingCallAnnotationsCommand.d.ts +13 -9
  77. package/dist-types/commands/GetOngoingCallCommand.d.ts +13 -9
  78. package/dist-types/commands/GetOngoingCallTranscriptionCommand.d.ts +14 -10
  79. package/dist-types/commands/GetOngoingChatAnnotationsCommand.d.ts +11 -7
  80. package/dist-types/commands/GetOngoingConferenceAnnotationsCommand.d.ts +11 -7
  81. package/dist-types/commands/GetOngoingConferenceCommand.d.ts +11 -7
  82. package/dist-types/commands/GetOngoingConferenceTranscriptionCommand.d.ts +11 -7
  83. package/dist-types/commands/ListServicesCommand.d.ts +11 -7
  84. package/dist-types/commands/QueryConversationsCommand.d.ts +13 -9
  85. package/dist-types/commands/QueryPresenceCommand.d.ts +12 -7
  86. package/dist-types/commands/QueryPresencesCommand.d.ts +11 -7
  87. package/dist-types/commands/UpdatePresenceLastSeenCommand.d.ts +11 -7
  88. package/dist-types/commands/index.d.ts +2 -2
  89. package/dist-types/endpoint/EndpointParameters.d.ts +41 -0
  90. package/dist-types/endpoint/bdd.d.ts +2 -0
  91. package/dist-types/endpoint/endpointResolver.d.ts +8 -0
  92. package/dist-types/extensionConfiguration.d.ts +4 -3
  93. package/dist-types/index.d.ts +6 -1
  94. package/dist-types/models/WdaStreamServiceException.d.ts +1 -1
  95. package/dist-types/models/enums.d.ts +1088 -0
  96. package/dist-types/models/errors.d.ts +46 -0
  97. package/dist-types/models/models_0.d.ts +1111 -1206
  98. package/dist-types/models/models_1.d.ts +3 -982
  99. package/dist-types/runtimeConfig.browser.d.ts +35 -16
  100. package/dist-types/runtimeConfig.d.ts +34 -15
  101. package/dist-types/runtimeConfig.native.d.ts +36 -17
  102. package/dist-types/runtimeConfig.shared.d.ts +20 -3
  103. package/dist-types/runtimeExtensions.d.ts +1 -1
  104. package/dist-types/schemas/schemas_0.d.ts +333 -0
  105. package/package.json +14 -40
  106. package/dist-cjs/models/index.js +0 -5
  107. package/dist-cjs/protocols/Aws_restJson1.js +0 -1340
  108. package/dist-es/models/index.js +0 -2
  109. package/dist-es/protocols/Aws_restJson1.js +0 -1307
  110. package/dist-types/models/index.d.ts +0 -2
  111. package/dist-types/protocols/Aws_restJson1.d.ts +0 -137
@@ -1,2 +0,0 @@
1
- export * from "./models_0";
2
- export * from "./models_1";
@@ -1,137 +0,0 @@
1
- import { ConsumeEventCommandInput, ConsumeEventCommandOutput } from "../commands/ConsumeEventCommand";
2
- import { DescribeEventCommandInput, DescribeEventCommandOutput } from "../commands/DescribeEventCommand";
3
- import { GetConferenceIdCommandInput, GetConferenceIdCommandOutput } from "../commands/GetConferenceIdCommand";
4
- import { GetOngoingCallAnnotationsCommandInput, GetOngoingCallAnnotationsCommandOutput } from "../commands/GetOngoingCallAnnotationsCommand";
5
- import { GetOngoingCallCommandInput, GetOngoingCallCommandOutput } from "../commands/GetOngoingCallCommand";
6
- import { GetOngoingCallTranscriptionCommandInput, GetOngoingCallTranscriptionCommandOutput } from "../commands/GetOngoingCallTranscriptionCommand";
7
- import { GetOngoingChatAnnotationsCommandInput, GetOngoingChatAnnotationsCommandOutput } from "../commands/GetOngoingChatAnnotationsCommand";
8
- import { GetOngoingConferenceAnnotationsCommandInput, GetOngoingConferenceAnnotationsCommandOutput } from "../commands/GetOngoingConferenceAnnotationsCommand";
9
- import { GetOngoingConferenceCommandInput, GetOngoingConferenceCommandOutput } from "../commands/GetOngoingConferenceCommand";
10
- import { GetOngoingConferenceTranscriptionCommandInput, GetOngoingConferenceTranscriptionCommandOutput } from "../commands/GetOngoingConferenceTranscriptionCommand";
11
- import { ListServicesCommandInput, ListServicesCommandOutput } from "../commands/ListServicesCommand";
12
- import { QueryConversationsCommandInput, QueryConversationsCommandOutput } from "../commands/QueryConversationsCommand";
13
- import { QueryPresenceCommandInput, QueryPresenceCommandOutput } from "../commands/QueryPresenceCommand";
14
- import { QueryPresencesCommandInput, QueryPresencesCommandOutput } from "../commands/QueryPresencesCommand";
15
- import { UpdatePresenceLastSeenCommandInput, UpdatePresenceLastSeenCommandOutput } from "../commands/UpdatePresenceLastSeenCommand";
16
- import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
17
- import { SerdeContext as __SerdeContext } from "@smithy/types";
18
- /**
19
- * serializeAws_restJson1ConsumeEventCommand
20
- */
21
- export declare const se_ConsumeEventCommand: (input: ConsumeEventCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
22
- /**
23
- * serializeAws_restJson1DescribeEventCommand
24
- */
25
- export declare const se_DescribeEventCommand: (input: DescribeEventCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
26
- /**
27
- * serializeAws_restJson1GetConferenceIdCommand
28
- */
29
- export declare const se_GetConferenceIdCommand: (input: GetConferenceIdCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
30
- /**
31
- * serializeAws_restJson1GetOngoingCallCommand
32
- */
33
- export declare const se_GetOngoingCallCommand: (input: GetOngoingCallCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
34
- /**
35
- * serializeAws_restJson1GetOngoingCallAnnotationsCommand
36
- */
37
- export declare const se_GetOngoingCallAnnotationsCommand: (input: GetOngoingCallAnnotationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
38
- /**
39
- * serializeAws_restJson1GetOngoingCallTranscriptionCommand
40
- */
41
- export declare const se_GetOngoingCallTranscriptionCommand: (input: GetOngoingCallTranscriptionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
42
- /**
43
- * serializeAws_restJson1GetOngoingChatAnnotationsCommand
44
- */
45
- export declare const se_GetOngoingChatAnnotationsCommand: (input: GetOngoingChatAnnotationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
46
- /**
47
- * serializeAws_restJson1GetOngoingConferenceCommand
48
- */
49
- export declare const se_GetOngoingConferenceCommand: (input: GetOngoingConferenceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
50
- /**
51
- * serializeAws_restJson1GetOngoingConferenceAnnotationsCommand
52
- */
53
- export declare const se_GetOngoingConferenceAnnotationsCommand: (input: GetOngoingConferenceAnnotationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
54
- /**
55
- * serializeAws_restJson1GetOngoingConferenceTranscriptionCommand
56
- */
57
- export declare const se_GetOngoingConferenceTranscriptionCommand: (input: GetOngoingConferenceTranscriptionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
58
- /**
59
- * serializeAws_restJson1ListServicesCommand
60
- */
61
- export declare const se_ListServicesCommand: (input: ListServicesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
62
- /**
63
- * serializeAws_restJson1QueryConversationsCommand
64
- */
65
- export declare const se_QueryConversationsCommand: (input: QueryConversationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
66
- /**
67
- * serializeAws_restJson1QueryPresenceCommand
68
- */
69
- export declare const se_QueryPresenceCommand: (input: QueryPresenceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
70
- /**
71
- * serializeAws_restJson1QueryPresencesCommand
72
- */
73
- export declare const se_QueryPresencesCommand: (input: QueryPresencesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
74
- /**
75
- * serializeAws_restJson1UpdatePresenceLastSeenCommand
76
- */
77
- export declare const se_UpdatePresenceLastSeenCommand: (input: UpdatePresenceLastSeenCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
78
- /**
79
- * deserializeAws_restJson1ConsumeEventCommand
80
- */
81
- export declare const de_ConsumeEventCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ConsumeEventCommandOutput>;
82
- /**
83
- * deserializeAws_restJson1DescribeEventCommand
84
- */
85
- export declare const de_DescribeEventCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeEventCommandOutput>;
86
- /**
87
- * deserializeAws_restJson1GetConferenceIdCommand
88
- */
89
- export declare const de_GetConferenceIdCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetConferenceIdCommandOutput>;
90
- /**
91
- * deserializeAws_restJson1GetOngoingCallCommand
92
- */
93
- export declare const de_GetOngoingCallCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetOngoingCallCommandOutput>;
94
- /**
95
- * deserializeAws_restJson1GetOngoingCallAnnotationsCommand
96
- */
97
- export declare const de_GetOngoingCallAnnotationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetOngoingCallAnnotationsCommandOutput>;
98
- /**
99
- * deserializeAws_restJson1GetOngoingCallTranscriptionCommand
100
- */
101
- export declare const de_GetOngoingCallTranscriptionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetOngoingCallTranscriptionCommandOutput>;
102
- /**
103
- * deserializeAws_restJson1GetOngoingChatAnnotationsCommand
104
- */
105
- export declare const de_GetOngoingChatAnnotationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetOngoingChatAnnotationsCommandOutput>;
106
- /**
107
- * deserializeAws_restJson1GetOngoingConferenceCommand
108
- */
109
- export declare const de_GetOngoingConferenceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetOngoingConferenceCommandOutput>;
110
- /**
111
- * deserializeAws_restJson1GetOngoingConferenceAnnotationsCommand
112
- */
113
- export declare const de_GetOngoingConferenceAnnotationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetOngoingConferenceAnnotationsCommandOutput>;
114
- /**
115
- * deserializeAws_restJson1GetOngoingConferenceTranscriptionCommand
116
- */
117
- export declare const de_GetOngoingConferenceTranscriptionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetOngoingConferenceTranscriptionCommandOutput>;
118
- /**
119
- * deserializeAws_restJson1ListServicesCommand
120
- */
121
- export declare const de_ListServicesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListServicesCommandOutput>;
122
- /**
123
- * deserializeAws_restJson1QueryConversationsCommand
124
- */
125
- export declare const de_QueryConversationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<QueryConversationsCommandOutput>;
126
- /**
127
- * deserializeAws_restJson1QueryPresenceCommand
128
- */
129
- export declare const de_QueryPresenceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<QueryPresenceCommandOutput>;
130
- /**
131
- * deserializeAws_restJson1QueryPresencesCommand
132
- */
133
- export declare const de_QueryPresencesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<QueryPresencesCommandOutput>;
134
- /**
135
- * deserializeAws_restJson1UpdatePresenceLastSeenCommand
136
- */
137
- export declare const de_UpdatePresenceLastSeenCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdatePresenceLastSeenCommandOutput>;