@wildix/wda-history-client 1.2.29 → 4.0.1

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 (108) hide show
  1. package/dist-cjs/WdaHistory.js +3 -3
  2. package/dist-cjs/WdaHistoryClient.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/GetCallAnnotationsCommand.js +10 -11
  6. package/dist-cjs/commands/GetCallCommand.js +10 -11
  7. package/dist-cjs/commands/GetCallTranscriptionCommand.js +10 -11
  8. package/dist-cjs/commands/GetCallTranscriptionTextCommand.js +10 -11
  9. package/dist-cjs/commands/GetChatAnnotationsCommand.js +10 -11
  10. package/dist-cjs/commands/GetChatCommand.js +10 -11
  11. package/dist-cjs/commands/GetChatTranscriptionCommand.js +10 -11
  12. package/dist-cjs/commands/GetChatTranscriptionTextCommand.js +10 -11
  13. package/dist-cjs/commands/GetConferenceAnnotationsCommand.js +10 -11
  14. package/dist-cjs/commands/GetConferenceCommand.js +10 -11
  15. package/dist-cjs/commands/GetConferenceTranscriptionCommand.js +10 -11
  16. package/dist-cjs/commands/GetConferenceTranscriptionTextCommand.js +10 -11
  17. package/dist-cjs/commands/QueryConversationsCommand.js +10 -11
  18. package/dist-cjs/commands/QueryUserCallsCommand.js +10 -11
  19. package/dist-cjs/commands/UpdateCallCommand.js +10 -11
  20. package/dist-cjs/commands/index.js +3 -3
  21. package/dist-cjs/endpoint/EndpointParameters.js +16 -0
  22. package/dist-cjs/endpoint/bdd.js +25 -0
  23. package/dist-cjs/endpoint/endpointResolver.js +16 -0
  24. package/dist-cjs/index.js +4 -1
  25. package/dist-cjs/models/WdaHistoryServiceException.js +3 -3
  26. package/dist-cjs/models/enums.js +204 -0
  27. package/dist-cjs/models/errors.js +147 -0
  28. package/dist-cjs/models/models_0.js +0 -413
  29. package/dist-cjs/runtimeConfig.browser.js +11 -11
  30. package/dist-cjs/runtimeConfig.js +22 -18
  31. package/dist-cjs/runtimeConfig.shared.js +30 -10
  32. package/dist-cjs/runtimeExtensions.js +6 -5
  33. package/dist-cjs/schemas/schemas_0.js +1047 -0
  34. package/dist-es/WdaHistory.js +4 -4
  35. package/dist-es/WdaHistoryClient.js +30 -22
  36. package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
  37. package/dist-es/auth/httpAuthSchemeProvider.js +52 -0
  38. package/dist-es/commands/GetCallAnnotationsCommand.js +9 -10
  39. package/dist-es/commands/GetCallCommand.js +9 -10
  40. package/dist-es/commands/GetCallTranscriptionCommand.js +9 -10
  41. package/dist-es/commands/GetCallTranscriptionTextCommand.js +9 -10
  42. package/dist-es/commands/GetChatAnnotationsCommand.js +9 -10
  43. package/dist-es/commands/GetChatCommand.js +9 -10
  44. package/dist-es/commands/GetChatTranscriptionCommand.js +9 -10
  45. package/dist-es/commands/GetChatTranscriptionTextCommand.js +9 -10
  46. package/dist-es/commands/GetConferenceAnnotationsCommand.js +9 -10
  47. package/dist-es/commands/GetConferenceCommand.js +9 -10
  48. package/dist-es/commands/GetConferenceTranscriptionCommand.js +9 -10
  49. package/dist-es/commands/GetConferenceTranscriptionTextCommand.js +9 -10
  50. package/dist-es/commands/QueryConversationsCommand.js +9 -10
  51. package/dist-es/commands/QueryUserCallsCommand.js +9 -10
  52. package/dist-es/commands/UpdateCallCommand.js +9 -10
  53. package/dist-es/commands/index.js +3 -3
  54. package/dist-es/endpoint/EndpointParameters.js +12 -0
  55. package/dist-es/endpoint/bdd.js +22 -0
  56. package/dist-es/endpoint/endpointResolver.js +12 -0
  57. package/dist-es/index.js +4 -1
  58. package/dist-es/models/WdaHistoryServiceException.js +1 -1
  59. package/dist-es/models/enums.js +201 -0
  60. package/dist-es/models/errors.js +133 -0
  61. package/dist-es/models/models_0.js +1 -400
  62. package/dist-es/runtimeConfig.browser.js +7 -7
  63. package/dist-es/runtimeConfig.js +17 -13
  64. package/dist-es/runtimeConfig.shared.js +24 -4
  65. package/dist-es/runtimeExtensions.js +6 -5
  66. package/dist-es/schemas/schemas_0.js +1042 -0
  67. package/dist-types/WdaHistory.d.ts +16 -16
  68. package/dist-types/WdaHistoryClient.d.ts +45 -27
  69. package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
  70. package/dist-types/auth/httpAuthSchemeProvider.d.ts +81 -0
  71. package/dist-types/commands/GetCallAnnotationsCommand.d.ts +11 -7
  72. package/dist-types/commands/GetCallCommand.d.ts +11 -7
  73. package/dist-types/commands/GetCallTranscriptionCommand.d.ts +11 -7
  74. package/dist-types/commands/GetCallTranscriptionTextCommand.d.ts +11 -7
  75. package/dist-types/commands/GetChatAnnotationsCommand.d.ts +11 -7
  76. package/dist-types/commands/GetChatCommand.d.ts +11 -7
  77. package/dist-types/commands/GetChatTranscriptionCommand.d.ts +11 -7
  78. package/dist-types/commands/GetChatTranscriptionTextCommand.d.ts +11 -7
  79. package/dist-types/commands/GetConferenceAnnotationsCommand.d.ts +11 -7
  80. package/dist-types/commands/GetConferenceCommand.d.ts +11 -7
  81. package/dist-types/commands/GetConferenceTranscriptionCommand.d.ts +11 -7
  82. package/dist-types/commands/GetConferenceTranscriptionTextCommand.d.ts +11 -7
  83. package/dist-types/commands/QueryConversationsCommand.d.ts +11 -7
  84. package/dist-types/commands/QueryUserCallsCommand.d.ts +11 -7
  85. package/dist-types/commands/UpdateCallCommand.d.ts +11 -7
  86. package/dist-types/commands/index.d.ts +3 -3
  87. package/dist-types/endpoint/EndpointParameters.d.ts +41 -0
  88. package/dist-types/endpoint/bdd.d.ts +2 -0
  89. package/dist-types/endpoint/endpointResolver.d.ts +8 -0
  90. package/dist-types/extensionConfiguration.d.ts +4 -3
  91. package/dist-types/index.d.ts +5 -1
  92. package/dist-types/models/WdaHistoryServiceException.d.ts +1 -1
  93. package/dist-types/models/enums.d.ts +505 -0
  94. package/dist-types/models/errors.d.ts +123 -0
  95. package/dist-types/models/models_0.d.ts +83 -692
  96. package/dist-types/runtimeConfig.browser.d.ts +35 -16
  97. package/dist-types/runtimeConfig.d.ts +34 -15
  98. package/dist-types/runtimeConfig.native.d.ts +36 -17
  99. package/dist-types/runtimeConfig.shared.d.ts +20 -3
  100. package/dist-types/runtimeExtensions.d.ts +1 -1
  101. package/dist-types/schemas/schemas_0.d.ts +127 -0
  102. package/package.json +14 -40
  103. package/dist-cjs/models/index.js +0 -4
  104. package/dist-cjs/protocols/Aws_restJson1.js +0 -868
  105. package/dist-es/models/index.js +0 -1
  106. package/dist-es/protocols/Aws_restJson1.js +0 -835
  107. package/dist-types/models/index.d.ts +0 -1
  108. package/dist-types/protocols/Aws_restJson1.d.ts +0 -137
@@ -1 +0,0 @@
1
- export * from "./models_0";
@@ -1,137 +0,0 @@
1
- import { GetCallAnnotationsCommandInput, GetCallAnnotationsCommandOutput } from "../commands/GetCallAnnotationsCommand";
2
- import { GetCallCommandInput, GetCallCommandOutput } from "../commands/GetCallCommand";
3
- import { GetCallTranscriptionCommandInput, GetCallTranscriptionCommandOutput } from "../commands/GetCallTranscriptionCommand";
4
- import { GetCallTranscriptionTextCommandInput, GetCallTranscriptionTextCommandOutput } from "../commands/GetCallTranscriptionTextCommand";
5
- import { GetChatAnnotationsCommandInput, GetChatAnnotationsCommandOutput } from "../commands/GetChatAnnotationsCommand";
6
- import { GetChatCommandInput, GetChatCommandOutput } from "../commands/GetChatCommand";
7
- import { GetChatTranscriptionCommandInput, GetChatTranscriptionCommandOutput } from "../commands/GetChatTranscriptionCommand";
8
- import { GetChatTranscriptionTextCommandInput, GetChatTranscriptionTextCommandOutput } from "../commands/GetChatTranscriptionTextCommand";
9
- import { GetConferenceAnnotationsCommandInput, GetConferenceAnnotationsCommandOutput } from "../commands/GetConferenceAnnotationsCommand";
10
- import { GetConferenceCommandInput, GetConferenceCommandOutput } from "../commands/GetConferenceCommand";
11
- import { GetConferenceTranscriptionCommandInput, GetConferenceTranscriptionCommandOutput } from "../commands/GetConferenceTranscriptionCommand";
12
- import { GetConferenceTranscriptionTextCommandInput, GetConferenceTranscriptionTextCommandOutput } from "../commands/GetConferenceTranscriptionTextCommand";
13
- import { QueryConversationsCommandInput, QueryConversationsCommandOutput } from "../commands/QueryConversationsCommand";
14
- import { QueryUserCallsCommandInput, QueryUserCallsCommandOutput } from "../commands/QueryUserCallsCommand";
15
- import { UpdateCallCommandInput, UpdateCallCommandOutput } from "../commands/UpdateCallCommand";
16
- import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
17
- import { SerdeContext as __SerdeContext } from "@smithy/types";
18
- /**
19
- * serializeAws_restJson1GetCallCommand
20
- */
21
- export declare const se_GetCallCommand: (input: GetCallCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
22
- /**
23
- * serializeAws_restJson1GetCallAnnotationsCommand
24
- */
25
- export declare const se_GetCallAnnotationsCommand: (input: GetCallAnnotationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
26
- /**
27
- * serializeAws_restJson1GetCallTranscriptionCommand
28
- */
29
- export declare const se_GetCallTranscriptionCommand: (input: GetCallTranscriptionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
30
- /**
31
- * serializeAws_restJson1GetCallTranscriptionTextCommand
32
- */
33
- export declare const se_GetCallTranscriptionTextCommand: (input: GetCallTranscriptionTextCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
34
- /**
35
- * serializeAws_restJson1GetChatCommand
36
- */
37
- export declare const se_GetChatCommand: (input: GetChatCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
38
- /**
39
- * serializeAws_restJson1GetChatAnnotationsCommand
40
- */
41
- export declare const se_GetChatAnnotationsCommand: (input: GetChatAnnotationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
42
- /**
43
- * serializeAws_restJson1GetChatTranscriptionCommand
44
- */
45
- export declare const se_GetChatTranscriptionCommand: (input: GetChatTranscriptionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
46
- /**
47
- * serializeAws_restJson1GetChatTranscriptionTextCommand
48
- */
49
- export declare const se_GetChatTranscriptionTextCommand: (input: GetChatTranscriptionTextCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
50
- /**
51
- * serializeAws_restJson1GetConferenceCommand
52
- */
53
- export declare const se_GetConferenceCommand: (input: GetConferenceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
54
- /**
55
- * serializeAws_restJson1GetConferenceAnnotationsCommand
56
- */
57
- export declare const se_GetConferenceAnnotationsCommand: (input: GetConferenceAnnotationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
58
- /**
59
- * serializeAws_restJson1GetConferenceTranscriptionCommand
60
- */
61
- export declare const se_GetConferenceTranscriptionCommand: (input: GetConferenceTranscriptionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
62
- /**
63
- * serializeAws_restJson1GetConferenceTranscriptionTextCommand
64
- */
65
- export declare const se_GetConferenceTranscriptionTextCommand: (input: GetConferenceTranscriptionTextCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
66
- /**
67
- * serializeAws_restJson1QueryConversationsCommand
68
- */
69
- export declare const se_QueryConversationsCommand: (input: QueryConversationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
70
- /**
71
- * serializeAws_restJson1QueryUserCallsCommand
72
- */
73
- export declare const se_QueryUserCallsCommand: (input: QueryUserCallsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
74
- /**
75
- * serializeAws_restJson1UpdateCallCommand
76
- */
77
- export declare const se_UpdateCallCommand: (input: UpdateCallCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
78
- /**
79
- * deserializeAws_restJson1GetCallCommand
80
- */
81
- export declare const de_GetCallCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetCallCommandOutput>;
82
- /**
83
- * deserializeAws_restJson1GetCallAnnotationsCommand
84
- */
85
- export declare const de_GetCallAnnotationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetCallAnnotationsCommandOutput>;
86
- /**
87
- * deserializeAws_restJson1GetCallTranscriptionCommand
88
- */
89
- export declare const de_GetCallTranscriptionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetCallTranscriptionCommandOutput>;
90
- /**
91
- * deserializeAws_restJson1GetCallTranscriptionTextCommand
92
- */
93
- export declare const de_GetCallTranscriptionTextCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetCallTranscriptionTextCommandOutput>;
94
- /**
95
- * deserializeAws_restJson1GetChatCommand
96
- */
97
- export declare const de_GetChatCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetChatCommandOutput>;
98
- /**
99
- * deserializeAws_restJson1GetChatAnnotationsCommand
100
- */
101
- export declare const de_GetChatAnnotationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetChatAnnotationsCommandOutput>;
102
- /**
103
- * deserializeAws_restJson1GetChatTranscriptionCommand
104
- */
105
- export declare const de_GetChatTranscriptionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetChatTranscriptionCommandOutput>;
106
- /**
107
- * deserializeAws_restJson1GetChatTranscriptionTextCommand
108
- */
109
- export declare const de_GetChatTranscriptionTextCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetChatTranscriptionTextCommandOutput>;
110
- /**
111
- * deserializeAws_restJson1GetConferenceCommand
112
- */
113
- export declare const de_GetConferenceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetConferenceCommandOutput>;
114
- /**
115
- * deserializeAws_restJson1GetConferenceAnnotationsCommand
116
- */
117
- export declare const de_GetConferenceAnnotationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetConferenceAnnotationsCommandOutput>;
118
- /**
119
- * deserializeAws_restJson1GetConferenceTranscriptionCommand
120
- */
121
- export declare const de_GetConferenceTranscriptionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetConferenceTranscriptionCommandOutput>;
122
- /**
123
- * deserializeAws_restJson1GetConferenceTranscriptionTextCommand
124
- */
125
- export declare const de_GetConferenceTranscriptionTextCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetConferenceTranscriptionTextCommandOutput>;
126
- /**
127
- * deserializeAws_restJson1QueryConversationsCommand
128
- */
129
- export declare const de_QueryConversationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<QueryConversationsCommandOutput>;
130
- /**
131
- * deserializeAws_restJson1QueryUserCallsCommand
132
- */
133
- export declare const de_QueryUserCallsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<QueryUserCallsCommandOutput>;
134
- /**
135
- * deserializeAws_restJson1UpdateCallCommand
136
- */
137
- export declare const de_UpdateCallCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateCallCommandOutput>;