g-ten-security-sdk 1.0.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.
Files changed (97) hide show
  1. package/dist/auth/authenticate.d.ts +30 -0
  2. package/dist/auth/authenticate.js +52 -0
  3. package/dist/auth/interceptor.d.ts +13 -0
  4. package/dist/auth/interceptor.js +74 -0
  5. package/dist/auth/tokenStore.d.ts +17 -0
  6. package/dist/auth/tokenStore.js +36 -0
  7. package/dist/client.d.ts +109 -0
  8. package/dist/client.js +157 -0
  9. package/dist/generated/src/apis/AuthApi.d.ts +139 -0
  10. package/dist/generated/src/apis/AuthApi.js +429 -0
  11. package/dist/generated/src/apis/BranchesApi.d.ts +77 -0
  12. package/dist/generated/src/apis/BranchesApi.js +228 -0
  13. package/dist/generated/src/apis/ChatApi.d.ts +34 -0
  14. package/dist/generated/src/apis/ChatApi.js +92 -0
  15. package/dist/generated/src/apis/DataApi.d.ts +112 -0
  16. package/dist/generated/src/apis/DataApi.js +297 -0
  17. package/dist/generated/src/apis/DefaultApi.d.ts +109 -0
  18. package/dist/generated/src/apis/DefaultApi.js +306 -0
  19. package/dist/generated/src/apis/DemoApi.d.ts +46 -0
  20. package/dist/generated/src/apis/DemoApi.js +129 -0
  21. package/dist/generated/src/apis/FraudApi.d.ts +311 -0
  22. package/dist/generated/src/apis/FraudApi.js +809 -0
  23. package/dist/generated/src/apis/HealthApi.d.ts +31 -0
  24. package/dist/generated/src/apis/HealthApi.js +92 -0
  25. package/dist/generated/src/apis/SchemaApi.d.ts +31 -0
  26. package/dist/generated/src/apis/SchemaApi.js +92 -0
  27. package/dist/generated/src/apis/WorkflowApi.d.ts +94 -0
  28. package/dist/generated/src/apis/WorkflowApi.js +269 -0
  29. package/dist/generated/src/apis/index.d.ts +10 -0
  30. package/dist/generated/src/apis/index.js +28 -0
  31. package/dist/generated/src/index.d.ts +3 -0
  32. package/dist/generated/src/index.js +21 -0
  33. package/dist/generated/src/models/Account.d.ts +122 -0
  34. package/dist/generated/src/models/Account.js +92 -0
  35. package/dist/generated/src/models/AlertStatusUpdate.d.ts +32 -0
  36. package/dist/generated/src/models/AlertStatusUpdate.js +50 -0
  37. package/dist/generated/src/models/AssignRequest.d.ts +32 -0
  38. package/dist/generated/src/models/AssignRequest.js +48 -0
  39. package/dist/generated/src/models/BranchCreate.d.ts +44 -0
  40. package/dist/generated/src/models/BranchCreate.js +56 -0
  41. package/dist/generated/src/models/BranchUpdate.d.ts +38 -0
  42. package/dist/generated/src/models/BranchUpdate.js +50 -0
  43. package/dist/generated/src/models/ChatRequest.d.ts +39 -0
  44. package/dist/generated/src/models/ChatRequest.js +53 -0
  45. package/dist/generated/src/models/ChatResponse.d.ts +32 -0
  46. package/dist/generated/src/models/ChatResponse.js +50 -0
  47. package/dist/generated/src/models/HTTPValidationError.d.ts +33 -0
  48. package/dist/generated/src/models/HTTPValidationError.js +49 -0
  49. package/dist/generated/src/models/HistoryTurn.d.ts +38 -0
  50. package/dist/generated/src/models/HistoryTurn.js +54 -0
  51. package/dist/generated/src/models/InjectPatternRequest.d.ts +32 -0
  52. package/dist/generated/src/models/InjectPatternRequest.js +50 -0
  53. package/dist/generated/src/models/LocationInner.d.ts +26 -0
  54. package/dist/generated/src/models/LocationInner.js +38 -0
  55. package/dist/generated/src/models/NarrativeRequest.d.ts +44 -0
  56. package/dist/generated/src/models/NarrativeRequest.js +52 -0
  57. package/dist/generated/src/models/NoteCreate.d.ts +38 -0
  58. package/dist/generated/src/models/NoteCreate.js +52 -0
  59. package/dist/generated/src/models/PasswordUpdate.d.ts +32 -0
  60. package/dist/generated/src/models/PasswordUpdate.js +50 -0
  61. package/dist/generated/src/models/StreamConfigRequest.d.ts +32 -0
  62. package/dist/generated/src/models/StreamConfigRequest.js +50 -0
  63. package/dist/generated/src/models/Token.d.ts +46 -0
  64. package/dist/generated/src/models/Token.js +58 -0
  65. package/dist/generated/src/models/Transaction.d.ts +74 -0
  66. package/dist/generated/src/models/Transaction.js +78 -0
  67. package/dist/generated/src/models/UserCreate.d.ts +56 -0
  68. package/dist/generated/src/models/UserCreate.js +62 -0
  69. package/dist/generated/src/models/UserOut.d.ts +62 -0
  70. package/dist/generated/src/models/UserOut.js +66 -0
  71. package/dist/generated/src/models/ValidationError.d.ts +57 -0
  72. package/dist/generated/src/models/ValidationError.js +63 -0
  73. package/dist/generated/src/models/index.d.ts +20 -0
  74. package/dist/generated/src/models/index.js +38 -0
  75. package/dist/generated/src/runtime.d.ts +184 -0
  76. package/dist/generated/src/runtime.js +353 -0
  77. package/dist/index.d.ts +8 -0
  78. package/dist/index.js +40 -0
  79. package/dist/types/index.d.ts +85 -0
  80. package/dist/types/index.js +5 -0
  81. package/dist/utils/errors.d.ts +33 -0
  82. package/dist/utils/errors.js +52 -0
  83. package/dist/utils/validators.d.ts +10 -0
  84. package/dist/utils/validators.js +26 -0
  85. package/dist/wrappers/alerts.d.ts +29 -0
  86. package/dist/wrappers/alerts.js +52 -0
  87. package/dist/wrappers/analytics.d.ts +8 -0
  88. package/dist/wrappers/analytics.js +15 -0
  89. package/dist/wrappers/copilot.d.ts +8 -0
  90. package/dist/wrappers/copilot.js +20 -0
  91. package/dist/wrappers/data.d.ts +55 -0
  92. package/dist/wrappers/data.js +127 -0
  93. package/dist/wrappers/fraud.d.ts +46 -0
  94. package/dist/wrappers/fraud.js +84 -0
  95. package/dist/wrappers/investigation.d.ts +31 -0
  96. package/dist/wrappers/investigation.js +77 -0
  97. package/package.json +18 -0
@@ -0,0 +1,311 @@
1
+ /**
2
+ * G-TEN
3
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
+ *
5
+ * The version of the OpenAPI document: 0.1.0
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ import * as runtime from '../runtime';
13
+ import { type Account } from '../models/Account';
14
+ import { type AlertStatusUpdate } from '../models/AlertStatusUpdate';
15
+ import { type NarrativeRequest } from '../models/NarrativeRequest';
16
+ import { type Transaction } from '../models/Transaction';
17
+ export interface CreateAccountApiV1AccountsPostRequest {
18
+ account: Account;
19
+ }
20
+ export interface CreateTransactionApiV1TransactionsPostRequest {
21
+ transaction: Transaction;
22
+ }
23
+ export interface GetAlertDetailsApiV1AlertsAlertIdGetRequest {
24
+ alertId: string;
25
+ }
26
+ export interface GetAlertsQuickApiV1AlertsQuickGetRequest {
27
+ limit?: number;
28
+ branchCode?: string | null;
29
+ }
30
+ export interface GetDormantExplanationApiV1ExplainAccountIdDormantGetRequest {
31
+ accountId: string;
32
+ }
33
+ export interface GetDormantExplanationApiV1ExplainDormantAccountIdGetRequest {
34
+ accountId: string;
35
+ }
36
+ export interface GetFullExplanationApiV1ExplainAccountIdGetRequest {
37
+ accountId: string;
38
+ }
39
+ export interface GetKycExplanationApiV1ExplainAccountIdKycGetRequest {
40
+ accountId: string;
41
+ }
42
+ export interface GetKycMismatchExplanationApiV1ExplainKycMismatchAccountIdGetRequest {
43
+ accountId: string;
44
+ }
45
+ export interface GetLiveFeedApiV1FeedGetRequest {
46
+ limit?: number;
47
+ }
48
+ export interface GetNarrativeApiV1NarrativeAccountIdPostRequest {
49
+ accountId: string;
50
+ narrativeRequest: NarrativeRequest;
51
+ }
52
+ export interface GetReportApiV1ReportAccountIdGetRequest {
53
+ accountId: string;
54
+ }
55
+ export interface GetScoreApiV1ScoreAccountIdGetRequest {
56
+ accountId: string;
57
+ }
58
+ export interface GetSmurfingExplanationApiV1ExplainAccountIdSmurfingGetRequest {
59
+ accountId: string;
60
+ }
61
+ export interface GetSmurfingExplanationApiV1ExplainSmurfingAccountIdGetRequest {
62
+ accountId: string;
63
+ }
64
+ export interface GetStatsApiV1StatsGetRequest {
65
+ branchCode?: string | null;
66
+ }
67
+ export interface GetTraceApiV1TraceAccountIdGetRequest {
68
+ accountId: string;
69
+ hint?: string;
70
+ }
71
+ export interface UpdateAlertStatusApiV1AlertsAlertIdStatusPatchRequest {
72
+ alertId: string;
73
+ alertStatusUpdate: AlertStatusUpdate;
74
+ }
75
+ /**
76
+ *
77
+ */
78
+ export declare class FraudApi extends runtime.BaseAPI {
79
+ /**
80
+ * Creates request options for createAccountApiV1AccountsPost without sending the request
81
+ */
82
+ createAccountApiV1AccountsPostRequestOpts(requestParameters: CreateAccountApiV1AccountsPostRequest): Promise<runtime.RequestOpts>;
83
+ /**
84
+ * Create Account
85
+ */
86
+ createAccountApiV1AccountsPostRaw(requestParameters: CreateAccountApiV1AccountsPostRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<any>>;
87
+ /**
88
+ * Create Account
89
+ */
90
+ createAccountApiV1AccountsPost(requestParameters: CreateAccountApiV1AccountsPostRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<any>;
91
+ /**
92
+ * Creates request options for createTransactionApiV1TransactionsPost without sending the request
93
+ */
94
+ createTransactionApiV1TransactionsPostRequestOpts(requestParameters: CreateTransactionApiV1TransactionsPostRequest): Promise<runtime.RequestOpts>;
95
+ /**
96
+ * Create Transaction
97
+ */
98
+ createTransactionApiV1TransactionsPostRaw(requestParameters: CreateTransactionApiV1TransactionsPostRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<any>>;
99
+ /**
100
+ * Create Transaction
101
+ */
102
+ createTransactionApiV1TransactionsPost(requestParameters: CreateTransactionApiV1TransactionsPostRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<any>;
103
+ /**
104
+ * Creates request options for getAlertDetailsApiV1AlertsAlertIdGet without sending the request
105
+ */
106
+ getAlertDetailsApiV1AlertsAlertIdGetRequestOpts(requestParameters: GetAlertDetailsApiV1AlertsAlertIdGetRequest): Promise<runtime.RequestOpts>;
107
+ /**
108
+ * Get Alert Details
109
+ */
110
+ getAlertDetailsApiV1AlertsAlertIdGetRaw(requestParameters: GetAlertDetailsApiV1AlertsAlertIdGetRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<any>>;
111
+ /**
112
+ * Get Alert Details
113
+ */
114
+ getAlertDetailsApiV1AlertsAlertIdGet(requestParameters: GetAlertDetailsApiV1AlertsAlertIdGetRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<any>;
115
+ /**
116
+ * Creates request options for getAlertsQuickApiV1AlertsQuickGet without sending the request
117
+ */
118
+ getAlertsQuickApiV1AlertsQuickGetRequestOpts(requestParameters: GetAlertsQuickApiV1AlertsQuickGetRequest): Promise<runtime.RequestOpts>;
119
+ /**
120
+ * Read pre-generated Alert nodes from Neo4j. Instant — no ML inference.
121
+ * Get Alerts Quick
122
+ */
123
+ getAlertsQuickApiV1AlertsQuickGetRaw(requestParameters: GetAlertsQuickApiV1AlertsQuickGetRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<any>>;
124
+ /**
125
+ * Read pre-generated Alert nodes from Neo4j. Instant — no ML inference.
126
+ * Get Alerts Quick
127
+ */
128
+ getAlertsQuickApiV1AlertsQuickGet(requestParameters?: GetAlertsQuickApiV1AlertsQuickGetRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<any>;
129
+ /**
130
+ * Creates request options for getBranchChannelAnalyticsApiV1AnalyticsBranchChannelGet without sending the request
131
+ */
132
+ getBranchChannelAnalyticsApiV1AnalyticsBranchChannelGetRequestOpts(): Promise<runtime.RequestOpts>;
133
+ /**
134
+ * Aggregate branch risk and channel abuse metrics from PostgreSQL.
135
+ * Get Branch Channel Analytics
136
+ */
137
+ getBranchChannelAnalyticsApiV1AnalyticsBranchChannelGetRaw(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<any>>;
138
+ /**
139
+ * Aggregate branch risk and channel abuse metrics from PostgreSQL.
140
+ * Get Branch Channel Analytics
141
+ */
142
+ getBranchChannelAnalyticsApiV1AnalyticsBranchChannelGet(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<any>;
143
+ /**
144
+ * Creates request options for getDormantExplanationApiV1ExplainAccountIdDormantGet without sending the request
145
+ */
146
+ getDormantExplanationApiV1ExplainAccountIdDormantGetRequestOpts(requestParameters: GetDormantExplanationApiV1ExplainAccountIdDormantGetRequest): Promise<runtime.RequestOpts>;
147
+ /**
148
+ * Get Dormant Explanation
149
+ */
150
+ getDormantExplanationApiV1ExplainAccountIdDormantGetRaw(requestParameters: GetDormantExplanationApiV1ExplainAccountIdDormantGetRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<any>>;
151
+ /**
152
+ * Get Dormant Explanation
153
+ */
154
+ getDormantExplanationApiV1ExplainAccountIdDormantGet(requestParameters: GetDormantExplanationApiV1ExplainAccountIdDormantGetRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<any>;
155
+ /**
156
+ * Creates request options for getDormantExplanationApiV1ExplainDormantAccountIdGet without sending the request
157
+ */
158
+ getDormantExplanationApiV1ExplainDormantAccountIdGetRequestOpts(requestParameters: GetDormantExplanationApiV1ExplainDormantAccountIdGetRequest): Promise<runtime.RequestOpts>;
159
+ /**
160
+ * Get Dormant Explanation
161
+ */
162
+ getDormantExplanationApiV1ExplainDormantAccountIdGetRaw(requestParameters: GetDormantExplanationApiV1ExplainDormantAccountIdGetRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<any>>;
163
+ /**
164
+ * Get Dormant Explanation
165
+ */
166
+ getDormantExplanationApiV1ExplainDormantAccountIdGet(requestParameters: GetDormantExplanationApiV1ExplainDormantAccountIdGetRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<any>;
167
+ /**
168
+ * Creates request options for getFullExplanationApiV1ExplainAccountIdGet without sending the request
169
+ */
170
+ getFullExplanationApiV1ExplainAccountIdGetRequestOpts(requestParameters: GetFullExplanationApiV1ExplainAccountIdGetRequest): Promise<runtime.RequestOpts>;
171
+ /**
172
+ * Get Full Explanation
173
+ */
174
+ getFullExplanationApiV1ExplainAccountIdGetRaw(requestParameters: GetFullExplanationApiV1ExplainAccountIdGetRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<any>>;
175
+ /**
176
+ * Get Full Explanation
177
+ */
178
+ getFullExplanationApiV1ExplainAccountIdGet(requestParameters: GetFullExplanationApiV1ExplainAccountIdGetRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<any>;
179
+ /**
180
+ * Creates request options for getKycExplanationApiV1ExplainAccountIdKycGet without sending the request
181
+ */
182
+ getKycExplanationApiV1ExplainAccountIdKycGetRequestOpts(requestParameters: GetKycExplanationApiV1ExplainAccountIdKycGetRequest): Promise<runtime.RequestOpts>;
183
+ /**
184
+ * Get Kyc Explanation
185
+ */
186
+ getKycExplanationApiV1ExplainAccountIdKycGetRaw(requestParameters: GetKycExplanationApiV1ExplainAccountIdKycGetRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<any>>;
187
+ /**
188
+ * Get Kyc Explanation
189
+ */
190
+ getKycExplanationApiV1ExplainAccountIdKycGet(requestParameters: GetKycExplanationApiV1ExplainAccountIdKycGetRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<any>;
191
+ /**
192
+ * Creates request options for getKycMismatchExplanationApiV1ExplainKycMismatchAccountIdGet without sending the request
193
+ */
194
+ getKycMismatchExplanationApiV1ExplainKycMismatchAccountIdGetRequestOpts(requestParameters: GetKycMismatchExplanationApiV1ExplainKycMismatchAccountIdGetRequest): Promise<runtime.RequestOpts>;
195
+ /**
196
+ * Get Kyc Mismatch Explanation
197
+ */
198
+ getKycMismatchExplanationApiV1ExplainKycMismatchAccountIdGetRaw(requestParameters: GetKycMismatchExplanationApiV1ExplainKycMismatchAccountIdGetRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<any>>;
199
+ /**
200
+ * Get Kyc Mismatch Explanation
201
+ */
202
+ getKycMismatchExplanationApiV1ExplainKycMismatchAccountIdGet(requestParameters: GetKycMismatchExplanationApiV1ExplainKycMismatchAccountIdGetRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<any>;
203
+ /**
204
+ * Creates request options for getLiveFeedApiV1FeedGet without sending the request
205
+ */
206
+ getLiveFeedApiV1FeedGetRequestOpts(requestParameters: GetLiveFeedApiV1FeedGetRequest): Promise<runtime.RequestOpts>;
207
+ /**
208
+ * Get Live Feed
209
+ */
210
+ getLiveFeedApiV1FeedGetRaw(requestParameters: GetLiveFeedApiV1FeedGetRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<any>>;
211
+ /**
212
+ * Get Live Feed
213
+ */
214
+ getLiveFeedApiV1FeedGet(requestParameters?: GetLiveFeedApiV1FeedGetRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<any>;
215
+ /**
216
+ * Creates request options for getNarrativeApiV1NarrativeAccountIdPost without sending the request
217
+ */
218
+ getNarrativeApiV1NarrativeAccountIdPostRequestOpts(requestParameters: GetNarrativeApiV1NarrativeAccountIdPostRequest): Promise<runtime.RequestOpts>;
219
+ /**
220
+ * Get Narrative
221
+ */
222
+ getNarrativeApiV1NarrativeAccountIdPostRaw(requestParameters: GetNarrativeApiV1NarrativeAccountIdPostRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<any>>;
223
+ /**
224
+ * Get Narrative
225
+ */
226
+ getNarrativeApiV1NarrativeAccountIdPost(requestParameters: GetNarrativeApiV1NarrativeAccountIdPostRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<any>;
227
+ /**
228
+ * Creates request options for getReportApiV1ReportAccountIdGet without sending the request
229
+ */
230
+ getReportApiV1ReportAccountIdGetRequestOpts(requestParameters: GetReportApiV1ReportAccountIdGetRequest): Promise<runtime.RequestOpts>;
231
+ /**
232
+ * Get Report
233
+ */
234
+ getReportApiV1ReportAccountIdGetRaw(requestParameters: GetReportApiV1ReportAccountIdGetRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<any>>;
235
+ /**
236
+ * Get Report
237
+ */
238
+ getReportApiV1ReportAccountIdGet(requestParameters: GetReportApiV1ReportAccountIdGetRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<any>;
239
+ /**
240
+ * Creates request options for getScoreApiV1ScoreAccountIdGet without sending the request
241
+ */
242
+ getScoreApiV1ScoreAccountIdGetRequestOpts(requestParameters: GetScoreApiV1ScoreAccountIdGetRequest): Promise<runtime.RequestOpts>;
243
+ /**
244
+ * Get Score
245
+ */
246
+ getScoreApiV1ScoreAccountIdGetRaw(requestParameters: GetScoreApiV1ScoreAccountIdGetRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<any>>;
247
+ /**
248
+ * Get Score
249
+ */
250
+ getScoreApiV1ScoreAccountIdGet(requestParameters: GetScoreApiV1ScoreAccountIdGetRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<any>;
251
+ /**
252
+ * Creates request options for getSmurfingExplanationApiV1ExplainAccountIdSmurfingGet without sending the request
253
+ */
254
+ getSmurfingExplanationApiV1ExplainAccountIdSmurfingGetRequestOpts(requestParameters: GetSmurfingExplanationApiV1ExplainAccountIdSmurfingGetRequest): Promise<runtime.RequestOpts>;
255
+ /**
256
+ * Get Smurfing Explanation
257
+ */
258
+ getSmurfingExplanationApiV1ExplainAccountIdSmurfingGetRaw(requestParameters: GetSmurfingExplanationApiV1ExplainAccountIdSmurfingGetRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<any>>;
259
+ /**
260
+ * Get Smurfing Explanation
261
+ */
262
+ getSmurfingExplanationApiV1ExplainAccountIdSmurfingGet(requestParameters: GetSmurfingExplanationApiV1ExplainAccountIdSmurfingGetRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<any>;
263
+ /**
264
+ * Creates request options for getSmurfingExplanationApiV1ExplainSmurfingAccountIdGet without sending the request
265
+ */
266
+ getSmurfingExplanationApiV1ExplainSmurfingAccountIdGetRequestOpts(requestParameters: GetSmurfingExplanationApiV1ExplainSmurfingAccountIdGetRequest): Promise<runtime.RequestOpts>;
267
+ /**
268
+ * Get Smurfing Explanation
269
+ */
270
+ getSmurfingExplanationApiV1ExplainSmurfingAccountIdGetRaw(requestParameters: GetSmurfingExplanationApiV1ExplainSmurfingAccountIdGetRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<any>>;
271
+ /**
272
+ * Get Smurfing Explanation
273
+ */
274
+ getSmurfingExplanationApiV1ExplainSmurfingAccountIdGet(requestParameters: GetSmurfingExplanationApiV1ExplainSmurfingAccountIdGetRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<any>;
275
+ /**
276
+ * Creates request options for getStatsApiV1StatsGet without sending the request
277
+ */
278
+ getStatsApiV1StatsGetRequestOpts(requestParameters: GetStatsApiV1StatsGetRequest): Promise<runtime.RequestOpts>;
279
+ /**
280
+ * Get Stats
281
+ */
282
+ getStatsApiV1StatsGetRaw(requestParameters: GetStatsApiV1StatsGetRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<any>>;
283
+ /**
284
+ * Get Stats
285
+ */
286
+ getStatsApiV1StatsGet(requestParameters?: GetStatsApiV1StatsGetRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<any>;
287
+ /**
288
+ * Creates request options for getTraceApiV1TraceAccountIdGet without sending the request
289
+ */
290
+ getTraceApiV1TraceAccountIdGetRequestOpts(requestParameters: GetTraceApiV1TraceAccountIdGetRequest): Promise<runtime.RequestOpts>;
291
+ /**
292
+ * Get Trace
293
+ */
294
+ getTraceApiV1TraceAccountIdGetRaw(requestParameters: GetTraceApiV1TraceAccountIdGetRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<any>>;
295
+ /**
296
+ * Get Trace
297
+ */
298
+ getTraceApiV1TraceAccountIdGet(requestParameters: GetTraceApiV1TraceAccountIdGetRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<any>;
299
+ /**
300
+ * Creates request options for updateAlertStatusApiV1AlertsAlertIdStatusPatch without sending the request
301
+ */
302
+ updateAlertStatusApiV1AlertsAlertIdStatusPatchRequestOpts(requestParameters: UpdateAlertStatusApiV1AlertsAlertIdStatusPatchRequest): Promise<runtime.RequestOpts>;
303
+ /**
304
+ * Update Alert Status
305
+ */
306
+ updateAlertStatusApiV1AlertsAlertIdStatusPatchRaw(requestParameters: UpdateAlertStatusApiV1AlertsAlertIdStatusPatchRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<any>>;
307
+ /**
308
+ * Update Alert Status
309
+ */
310
+ updateAlertStatusApiV1AlertsAlertIdStatusPatch(requestParameters: UpdateAlertStatusApiV1AlertsAlertIdStatusPatchRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<any>;
311
+ }