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.
- package/dist/auth/authenticate.d.ts +30 -0
- package/dist/auth/authenticate.js +52 -0
- package/dist/auth/interceptor.d.ts +13 -0
- package/dist/auth/interceptor.js +74 -0
- package/dist/auth/tokenStore.d.ts +17 -0
- package/dist/auth/tokenStore.js +36 -0
- package/dist/client.d.ts +109 -0
- package/dist/client.js +157 -0
- package/dist/generated/src/apis/AuthApi.d.ts +139 -0
- package/dist/generated/src/apis/AuthApi.js +429 -0
- package/dist/generated/src/apis/BranchesApi.d.ts +77 -0
- package/dist/generated/src/apis/BranchesApi.js +228 -0
- package/dist/generated/src/apis/ChatApi.d.ts +34 -0
- package/dist/generated/src/apis/ChatApi.js +92 -0
- package/dist/generated/src/apis/DataApi.d.ts +112 -0
- package/dist/generated/src/apis/DataApi.js +297 -0
- package/dist/generated/src/apis/DefaultApi.d.ts +109 -0
- package/dist/generated/src/apis/DefaultApi.js +306 -0
- package/dist/generated/src/apis/DemoApi.d.ts +46 -0
- package/dist/generated/src/apis/DemoApi.js +129 -0
- package/dist/generated/src/apis/FraudApi.d.ts +311 -0
- package/dist/generated/src/apis/FraudApi.js +809 -0
- package/dist/generated/src/apis/HealthApi.d.ts +31 -0
- package/dist/generated/src/apis/HealthApi.js +92 -0
- package/dist/generated/src/apis/SchemaApi.d.ts +31 -0
- package/dist/generated/src/apis/SchemaApi.js +92 -0
- package/dist/generated/src/apis/WorkflowApi.d.ts +94 -0
- package/dist/generated/src/apis/WorkflowApi.js +269 -0
- package/dist/generated/src/apis/index.d.ts +10 -0
- package/dist/generated/src/apis/index.js +28 -0
- package/dist/generated/src/index.d.ts +3 -0
- package/dist/generated/src/index.js +21 -0
- package/dist/generated/src/models/Account.d.ts +122 -0
- package/dist/generated/src/models/Account.js +92 -0
- package/dist/generated/src/models/AlertStatusUpdate.d.ts +32 -0
- package/dist/generated/src/models/AlertStatusUpdate.js +50 -0
- package/dist/generated/src/models/AssignRequest.d.ts +32 -0
- package/dist/generated/src/models/AssignRequest.js +48 -0
- package/dist/generated/src/models/BranchCreate.d.ts +44 -0
- package/dist/generated/src/models/BranchCreate.js +56 -0
- package/dist/generated/src/models/BranchUpdate.d.ts +38 -0
- package/dist/generated/src/models/BranchUpdate.js +50 -0
- package/dist/generated/src/models/ChatRequest.d.ts +39 -0
- package/dist/generated/src/models/ChatRequest.js +53 -0
- package/dist/generated/src/models/ChatResponse.d.ts +32 -0
- package/dist/generated/src/models/ChatResponse.js +50 -0
- package/dist/generated/src/models/HTTPValidationError.d.ts +33 -0
- package/dist/generated/src/models/HTTPValidationError.js +49 -0
- package/dist/generated/src/models/HistoryTurn.d.ts +38 -0
- package/dist/generated/src/models/HistoryTurn.js +54 -0
- package/dist/generated/src/models/InjectPatternRequest.d.ts +32 -0
- package/dist/generated/src/models/InjectPatternRequest.js +50 -0
- package/dist/generated/src/models/LocationInner.d.ts +26 -0
- package/dist/generated/src/models/LocationInner.js +38 -0
- package/dist/generated/src/models/NarrativeRequest.d.ts +44 -0
- package/dist/generated/src/models/NarrativeRequest.js +52 -0
- package/dist/generated/src/models/NoteCreate.d.ts +38 -0
- package/dist/generated/src/models/NoteCreate.js +52 -0
- package/dist/generated/src/models/PasswordUpdate.d.ts +32 -0
- package/dist/generated/src/models/PasswordUpdate.js +50 -0
- package/dist/generated/src/models/StreamConfigRequest.d.ts +32 -0
- package/dist/generated/src/models/StreamConfigRequest.js +50 -0
- package/dist/generated/src/models/Token.d.ts +46 -0
- package/dist/generated/src/models/Token.js +58 -0
- package/dist/generated/src/models/Transaction.d.ts +74 -0
- package/dist/generated/src/models/Transaction.js +78 -0
- package/dist/generated/src/models/UserCreate.d.ts +56 -0
- package/dist/generated/src/models/UserCreate.js +62 -0
- package/dist/generated/src/models/UserOut.d.ts +62 -0
- package/dist/generated/src/models/UserOut.js +66 -0
- package/dist/generated/src/models/ValidationError.d.ts +57 -0
- package/dist/generated/src/models/ValidationError.js +63 -0
- package/dist/generated/src/models/index.d.ts +20 -0
- package/dist/generated/src/models/index.js +38 -0
- package/dist/generated/src/runtime.d.ts +184 -0
- package/dist/generated/src/runtime.js +353 -0
- package/dist/index.d.ts +8 -0
- package/dist/index.js +40 -0
- package/dist/types/index.d.ts +85 -0
- package/dist/types/index.js +5 -0
- package/dist/utils/errors.d.ts +33 -0
- package/dist/utils/errors.js +52 -0
- package/dist/utils/validators.d.ts +10 -0
- package/dist/utils/validators.js +26 -0
- package/dist/wrappers/alerts.d.ts +29 -0
- package/dist/wrappers/alerts.js +52 -0
- package/dist/wrappers/analytics.d.ts +8 -0
- package/dist/wrappers/analytics.js +15 -0
- package/dist/wrappers/copilot.d.ts +8 -0
- package/dist/wrappers/copilot.js +20 -0
- package/dist/wrappers/data.d.ts +55 -0
- package/dist/wrappers/data.js +127 -0
- package/dist/wrappers/fraud.d.ts +46 -0
- package/dist/wrappers/fraud.js +84 -0
- package/dist/wrappers/investigation.d.ts +31 -0
- package/dist/wrappers/investigation.js +77 -0
- package/package.json +18 -0
|
@@ -0,0 +1,297 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* G-TEN
|
|
6
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 0.1.0
|
|
9
|
+
*
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
16
|
+
if (k2 === undefined) k2 = k;
|
|
17
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
18
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
19
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
20
|
+
}
|
|
21
|
+
Object.defineProperty(o, k2, desc);
|
|
22
|
+
}) : (function(o, m, k, k2) {
|
|
23
|
+
if (k2 === undefined) k2 = k;
|
|
24
|
+
o[k2] = m[k];
|
|
25
|
+
}));
|
|
26
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
27
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
28
|
+
}) : function(o, v) {
|
|
29
|
+
o["default"] = v;
|
|
30
|
+
});
|
|
31
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
32
|
+
var ownKeys = function(o) {
|
|
33
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
34
|
+
var ar = [];
|
|
35
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
36
|
+
return ar;
|
|
37
|
+
};
|
|
38
|
+
return ownKeys(o);
|
|
39
|
+
};
|
|
40
|
+
return function (mod) {
|
|
41
|
+
if (mod && mod.__esModule) return mod;
|
|
42
|
+
var result = {};
|
|
43
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
44
|
+
__setModuleDefault(result, mod);
|
|
45
|
+
return result;
|
|
46
|
+
};
|
|
47
|
+
})();
|
|
48
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
49
|
+
exports.DataApi = void 0;
|
|
50
|
+
const runtime = __importStar(require("../runtime"));
|
|
51
|
+
const NoteCreate_1 = require("../models/NoteCreate");
|
|
52
|
+
/**
|
|
53
|
+
*
|
|
54
|
+
*/
|
|
55
|
+
class DataApi extends runtime.BaseAPI {
|
|
56
|
+
/**
|
|
57
|
+
* Creates request options for addAccountNoteApiV1AccountsAccountIdNotesPost without sending the request
|
|
58
|
+
*/
|
|
59
|
+
async addAccountNoteApiV1AccountsAccountIdNotesPostRequestOpts(requestParameters) {
|
|
60
|
+
if (requestParameters['accountId'] == null) {
|
|
61
|
+
throw new runtime.RequiredError('accountId', 'Required parameter "accountId" was null or undefined when calling addAccountNoteApiV1AccountsAccountIdNotesPost().');
|
|
62
|
+
}
|
|
63
|
+
if (requestParameters['noteCreate'] == null) {
|
|
64
|
+
throw new runtime.RequiredError('noteCreate', 'Required parameter "noteCreate" was null or undefined when calling addAccountNoteApiV1AccountsAccountIdNotesPost().');
|
|
65
|
+
}
|
|
66
|
+
const queryParameters = {};
|
|
67
|
+
const headerParameters = {};
|
|
68
|
+
headerParameters['Content-Type'] = 'application/json';
|
|
69
|
+
let urlPath = `/api/v1/accounts/{account_id}/notes`;
|
|
70
|
+
urlPath = urlPath.replace('{account_id}', encodeURIComponent(String(requestParameters['accountId'])));
|
|
71
|
+
return {
|
|
72
|
+
path: urlPath,
|
|
73
|
+
method: 'POST',
|
|
74
|
+
headers: headerParameters,
|
|
75
|
+
query: queryParameters,
|
|
76
|
+
body: (0, NoteCreate_1.NoteCreateToJSON)(requestParameters['noteCreate']),
|
|
77
|
+
};
|
|
78
|
+
}
|
|
79
|
+
/**
|
|
80
|
+
* Add Account Note
|
|
81
|
+
*/
|
|
82
|
+
async addAccountNoteApiV1AccountsAccountIdNotesPostRaw(requestParameters, initOverrides) {
|
|
83
|
+
const requestOptions = await this.addAccountNoteApiV1AccountsAccountIdNotesPostRequestOpts(requestParameters);
|
|
84
|
+
const response = await this.request(requestOptions, initOverrides);
|
|
85
|
+
if (this.isJsonMime(response.headers.get('content-type'))) {
|
|
86
|
+
return new runtime.JSONApiResponse(response);
|
|
87
|
+
}
|
|
88
|
+
else {
|
|
89
|
+
return new runtime.TextApiResponse(response);
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
/**
|
|
93
|
+
* Add Account Note
|
|
94
|
+
*/
|
|
95
|
+
async addAccountNoteApiV1AccountsAccountIdNotesPost(requestParameters, initOverrides) {
|
|
96
|
+
const response = await this.addAccountNoteApiV1AccountsAccountIdNotesPostRaw(requestParameters, initOverrides);
|
|
97
|
+
return await response.value();
|
|
98
|
+
}
|
|
99
|
+
/**
|
|
100
|
+
* Creates request options for getAccountApiV1AccountsAccountIdGet without sending the request
|
|
101
|
+
*/
|
|
102
|
+
async getAccountApiV1AccountsAccountIdGetRequestOpts(requestParameters) {
|
|
103
|
+
if (requestParameters['accountId'] == null) {
|
|
104
|
+
throw new runtime.RequiredError('accountId', 'Required parameter "accountId" was null or undefined when calling getAccountApiV1AccountsAccountIdGet().');
|
|
105
|
+
}
|
|
106
|
+
const queryParameters = {};
|
|
107
|
+
const headerParameters = {};
|
|
108
|
+
let urlPath = `/api/v1/accounts/{account_id}`;
|
|
109
|
+
urlPath = urlPath.replace('{account_id}', encodeURIComponent(String(requestParameters['accountId'])));
|
|
110
|
+
return {
|
|
111
|
+
path: urlPath,
|
|
112
|
+
method: 'GET',
|
|
113
|
+
headers: headerParameters,
|
|
114
|
+
query: queryParameters,
|
|
115
|
+
};
|
|
116
|
+
}
|
|
117
|
+
/**
|
|
118
|
+
* Get Account
|
|
119
|
+
*/
|
|
120
|
+
async getAccountApiV1AccountsAccountIdGetRaw(requestParameters, initOverrides) {
|
|
121
|
+
const requestOptions = await this.getAccountApiV1AccountsAccountIdGetRequestOpts(requestParameters);
|
|
122
|
+
const response = await this.request(requestOptions, initOverrides);
|
|
123
|
+
if (this.isJsonMime(response.headers.get('content-type'))) {
|
|
124
|
+
return new runtime.JSONApiResponse(response);
|
|
125
|
+
}
|
|
126
|
+
else {
|
|
127
|
+
return new runtime.TextApiResponse(response);
|
|
128
|
+
}
|
|
129
|
+
}
|
|
130
|
+
/**
|
|
131
|
+
* Get Account
|
|
132
|
+
*/
|
|
133
|
+
async getAccountApiV1AccountsAccountIdGet(requestParameters, initOverrides) {
|
|
134
|
+
const response = await this.getAccountApiV1AccountsAccountIdGetRaw(requestParameters, initOverrides);
|
|
135
|
+
return await response.value();
|
|
136
|
+
}
|
|
137
|
+
/**
|
|
138
|
+
* Creates request options for getAccountNotesApiV1AccountsAccountIdNotesGet without sending the request
|
|
139
|
+
*/
|
|
140
|
+
async getAccountNotesApiV1AccountsAccountIdNotesGetRequestOpts(requestParameters) {
|
|
141
|
+
if (requestParameters['accountId'] == null) {
|
|
142
|
+
throw new runtime.RequiredError('accountId', 'Required parameter "accountId" was null or undefined when calling getAccountNotesApiV1AccountsAccountIdNotesGet().');
|
|
143
|
+
}
|
|
144
|
+
const queryParameters = {};
|
|
145
|
+
const headerParameters = {};
|
|
146
|
+
let urlPath = `/api/v1/accounts/{account_id}/notes`;
|
|
147
|
+
urlPath = urlPath.replace('{account_id}', encodeURIComponent(String(requestParameters['accountId'])));
|
|
148
|
+
return {
|
|
149
|
+
path: urlPath,
|
|
150
|
+
method: 'GET',
|
|
151
|
+
headers: headerParameters,
|
|
152
|
+
query: queryParameters,
|
|
153
|
+
};
|
|
154
|
+
}
|
|
155
|
+
/**
|
|
156
|
+
* Get Account Notes
|
|
157
|
+
*/
|
|
158
|
+
async getAccountNotesApiV1AccountsAccountIdNotesGetRaw(requestParameters, initOverrides) {
|
|
159
|
+
const requestOptions = await this.getAccountNotesApiV1AccountsAccountIdNotesGetRequestOpts(requestParameters);
|
|
160
|
+
const response = await this.request(requestOptions, initOverrides);
|
|
161
|
+
if (this.isJsonMime(response.headers.get('content-type'))) {
|
|
162
|
+
return new runtime.JSONApiResponse(response);
|
|
163
|
+
}
|
|
164
|
+
else {
|
|
165
|
+
return new runtime.TextApiResponse(response);
|
|
166
|
+
}
|
|
167
|
+
}
|
|
168
|
+
/**
|
|
169
|
+
* Get Account Notes
|
|
170
|
+
*/
|
|
171
|
+
async getAccountNotesApiV1AccountsAccountIdNotesGet(requestParameters, initOverrides) {
|
|
172
|
+
const response = await this.getAccountNotesApiV1AccountsAccountIdNotesGetRaw(requestParameters, initOverrides);
|
|
173
|
+
return await response.value();
|
|
174
|
+
}
|
|
175
|
+
/**
|
|
176
|
+
* Creates request options for getAllAccountsApiV1AccountsGet without sending the request
|
|
177
|
+
*/
|
|
178
|
+
async getAllAccountsApiV1AccountsGetRequestOpts(requestParameters) {
|
|
179
|
+
const queryParameters = {};
|
|
180
|
+
if (requestParameters['skip'] != null) {
|
|
181
|
+
queryParameters['skip'] = requestParameters['skip'];
|
|
182
|
+
}
|
|
183
|
+
if (requestParameters['limit'] != null) {
|
|
184
|
+
queryParameters['limit'] = requestParameters['limit'];
|
|
185
|
+
}
|
|
186
|
+
if (requestParameters['branchCode'] != null) {
|
|
187
|
+
queryParameters['branch_code'] = requestParameters['branchCode'];
|
|
188
|
+
}
|
|
189
|
+
const headerParameters = {};
|
|
190
|
+
let urlPath = `/api/v1/accounts`;
|
|
191
|
+
return {
|
|
192
|
+
path: urlPath,
|
|
193
|
+
method: 'GET',
|
|
194
|
+
headers: headerParameters,
|
|
195
|
+
query: queryParameters,
|
|
196
|
+
};
|
|
197
|
+
}
|
|
198
|
+
/**
|
|
199
|
+
* Get All Accounts
|
|
200
|
+
*/
|
|
201
|
+
async getAllAccountsApiV1AccountsGetRaw(requestParameters, initOverrides) {
|
|
202
|
+
const requestOptions = await this.getAllAccountsApiV1AccountsGetRequestOpts(requestParameters);
|
|
203
|
+
const response = await this.request(requestOptions, initOverrides);
|
|
204
|
+
if (this.isJsonMime(response.headers.get('content-type'))) {
|
|
205
|
+
return new runtime.JSONApiResponse(response);
|
|
206
|
+
}
|
|
207
|
+
else {
|
|
208
|
+
return new runtime.TextApiResponse(response);
|
|
209
|
+
}
|
|
210
|
+
}
|
|
211
|
+
/**
|
|
212
|
+
* Get All Accounts
|
|
213
|
+
*/
|
|
214
|
+
async getAllAccountsApiV1AccountsGet(requestParameters = {}, initOverrides) {
|
|
215
|
+
const response = await this.getAllAccountsApiV1AccountsGetRaw(requestParameters, initOverrides);
|
|
216
|
+
return await response.value();
|
|
217
|
+
}
|
|
218
|
+
/**
|
|
219
|
+
* Creates request options for getAllTransactionsApiV1TransactionsGet without sending the request
|
|
220
|
+
*/
|
|
221
|
+
async getAllTransactionsApiV1TransactionsGetRequestOpts(requestParameters) {
|
|
222
|
+
const queryParameters = {};
|
|
223
|
+
if (requestParameters['skip'] != null) {
|
|
224
|
+
queryParameters['skip'] = requestParameters['skip'];
|
|
225
|
+
}
|
|
226
|
+
if (requestParameters['limit'] != null) {
|
|
227
|
+
queryParameters['limit'] = requestParameters['limit'];
|
|
228
|
+
}
|
|
229
|
+
const headerParameters = {};
|
|
230
|
+
let urlPath = `/api/v1/transactions`;
|
|
231
|
+
return {
|
|
232
|
+
path: urlPath,
|
|
233
|
+
method: 'GET',
|
|
234
|
+
headers: headerParameters,
|
|
235
|
+
query: queryParameters,
|
|
236
|
+
};
|
|
237
|
+
}
|
|
238
|
+
/**
|
|
239
|
+
* Get All Transactions
|
|
240
|
+
*/
|
|
241
|
+
async getAllTransactionsApiV1TransactionsGetRaw(requestParameters, initOverrides) {
|
|
242
|
+
const requestOptions = await this.getAllTransactionsApiV1TransactionsGetRequestOpts(requestParameters);
|
|
243
|
+
const response = await this.request(requestOptions, initOverrides);
|
|
244
|
+
if (this.isJsonMime(response.headers.get('content-type'))) {
|
|
245
|
+
return new runtime.JSONApiResponse(response);
|
|
246
|
+
}
|
|
247
|
+
else {
|
|
248
|
+
return new runtime.TextApiResponse(response);
|
|
249
|
+
}
|
|
250
|
+
}
|
|
251
|
+
/**
|
|
252
|
+
* Get All Transactions
|
|
253
|
+
*/
|
|
254
|
+
async getAllTransactionsApiV1TransactionsGet(requestParameters = {}, initOverrides) {
|
|
255
|
+
const response = await this.getAllTransactionsApiV1TransactionsGetRaw(requestParameters, initOverrides);
|
|
256
|
+
return await response.value();
|
|
257
|
+
}
|
|
258
|
+
/**
|
|
259
|
+
* Creates request options for getTransactionApiV1TransactionsTxnIdGet without sending the request
|
|
260
|
+
*/
|
|
261
|
+
async getTransactionApiV1TransactionsTxnIdGetRequestOpts(requestParameters) {
|
|
262
|
+
if (requestParameters['txnId'] == null) {
|
|
263
|
+
throw new runtime.RequiredError('txnId', 'Required parameter "txnId" was null or undefined when calling getTransactionApiV1TransactionsTxnIdGet().');
|
|
264
|
+
}
|
|
265
|
+
const queryParameters = {};
|
|
266
|
+
const headerParameters = {};
|
|
267
|
+
let urlPath = `/api/v1/transactions/{txn_id}`;
|
|
268
|
+
urlPath = urlPath.replace('{txn_id}', encodeURIComponent(String(requestParameters['txnId'])));
|
|
269
|
+
return {
|
|
270
|
+
path: urlPath,
|
|
271
|
+
method: 'GET',
|
|
272
|
+
headers: headerParameters,
|
|
273
|
+
query: queryParameters,
|
|
274
|
+
};
|
|
275
|
+
}
|
|
276
|
+
/**
|
|
277
|
+
* Get Transaction
|
|
278
|
+
*/
|
|
279
|
+
async getTransactionApiV1TransactionsTxnIdGetRaw(requestParameters, initOverrides) {
|
|
280
|
+
const requestOptions = await this.getTransactionApiV1TransactionsTxnIdGetRequestOpts(requestParameters);
|
|
281
|
+
const response = await this.request(requestOptions, initOverrides);
|
|
282
|
+
if (this.isJsonMime(response.headers.get('content-type'))) {
|
|
283
|
+
return new runtime.JSONApiResponse(response);
|
|
284
|
+
}
|
|
285
|
+
else {
|
|
286
|
+
return new runtime.TextApiResponse(response);
|
|
287
|
+
}
|
|
288
|
+
}
|
|
289
|
+
/**
|
|
290
|
+
* Get Transaction
|
|
291
|
+
*/
|
|
292
|
+
async getTransactionApiV1TransactionsTxnIdGet(requestParameters, initOverrides) {
|
|
293
|
+
const response = await this.getTransactionApiV1TransactionsTxnIdGetRaw(requestParameters, initOverrides);
|
|
294
|
+
return await response.value();
|
|
295
|
+
}
|
|
296
|
+
}
|
|
297
|
+
exports.DataApi = DataApi;
|
|
@@ -0,0 +1,109 @@
|
|
|
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 InjectPatternRequest } from '../models/InjectPatternRequest';
|
|
14
|
+
import { type StreamConfigRequest } from '../models/StreamConfigRequest';
|
|
15
|
+
export interface ConfigStreamApiV1StreamConfigPostRequest {
|
|
16
|
+
streamConfigRequest: StreamConfigRequest;
|
|
17
|
+
}
|
|
18
|
+
export interface InjectFraudApiV1StreamInjectPostRequest {
|
|
19
|
+
injectPatternRequest: InjectPatternRequest;
|
|
20
|
+
}
|
|
21
|
+
/**
|
|
22
|
+
*
|
|
23
|
+
*/
|
|
24
|
+
export declare class DefaultApi extends runtime.BaseAPI {
|
|
25
|
+
/**
|
|
26
|
+
* Creates request options for configStreamApiV1StreamConfigPost without sending the request
|
|
27
|
+
*/
|
|
28
|
+
configStreamApiV1StreamConfigPostRequestOpts(requestParameters: ConfigStreamApiV1StreamConfigPostRequest): Promise<runtime.RequestOpts>;
|
|
29
|
+
/**
|
|
30
|
+
* Config Stream
|
|
31
|
+
*/
|
|
32
|
+
configStreamApiV1StreamConfigPostRaw(requestParameters: ConfigStreamApiV1StreamConfigPostRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<any>>;
|
|
33
|
+
/**
|
|
34
|
+
* Config Stream
|
|
35
|
+
*/
|
|
36
|
+
configStreamApiV1StreamConfigPost(requestParameters: ConfigStreamApiV1StreamConfigPostRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<any>;
|
|
37
|
+
/**
|
|
38
|
+
* Creates request options for injectFraudApiV1StreamInjectPost without sending the request
|
|
39
|
+
*/
|
|
40
|
+
injectFraudApiV1StreamInjectPostRequestOpts(requestParameters: InjectFraudApiV1StreamInjectPostRequest): Promise<runtime.RequestOpts>;
|
|
41
|
+
/**
|
|
42
|
+
* Inject Fraud
|
|
43
|
+
*/
|
|
44
|
+
injectFraudApiV1StreamInjectPostRaw(requestParameters: InjectFraudApiV1StreamInjectPostRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<any>>;
|
|
45
|
+
/**
|
|
46
|
+
* Inject Fraud
|
|
47
|
+
*/
|
|
48
|
+
injectFraudApiV1StreamInjectPost(requestParameters: InjectFraudApiV1StreamInjectPostRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<any>;
|
|
49
|
+
/**
|
|
50
|
+
* Creates request options for readRootGet without sending the request
|
|
51
|
+
*/
|
|
52
|
+
readRootGetRequestOpts(): Promise<runtime.RequestOpts>;
|
|
53
|
+
/**
|
|
54
|
+
* Read Root
|
|
55
|
+
*/
|
|
56
|
+
readRootGetRaw(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<any>>;
|
|
57
|
+
/**
|
|
58
|
+
* Read Root
|
|
59
|
+
*/
|
|
60
|
+
readRootGet(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<any>;
|
|
61
|
+
/**
|
|
62
|
+
* Creates request options for resetDemoDataApiV1StreamResetDelete without sending the request
|
|
63
|
+
*/
|
|
64
|
+
resetDemoDataApiV1StreamResetDeleteRequestOpts(): Promise<runtime.RequestOpts>;
|
|
65
|
+
/**
|
|
66
|
+
* Reset Demo Data
|
|
67
|
+
*/
|
|
68
|
+
resetDemoDataApiV1StreamResetDeleteRaw(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<any>>;
|
|
69
|
+
/**
|
|
70
|
+
* Reset Demo Data
|
|
71
|
+
*/
|
|
72
|
+
resetDemoDataApiV1StreamResetDelete(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<any>;
|
|
73
|
+
/**
|
|
74
|
+
* Creates request options for startStreamApiV1StreamStartPost without sending the request
|
|
75
|
+
*/
|
|
76
|
+
startStreamApiV1StreamStartPostRequestOpts(): Promise<runtime.RequestOpts>;
|
|
77
|
+
/**
|
|
78
|
+
* Start Stream
|
|
79
|
+
*/
|
|
80
|
+
startStreamApiV1StreamStartPostRaw(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<any>>;
|
|
81
|
+
/**
|
|
82
|
+
* Start Stream
|
|
83
|
+
*/
|
|
84
|
+
startStreamApiV1StreamStartPost(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<any>;
|
|
85
|
+
/**
|
|
86
|
+
* Creates request options for stopStreamApiV1StreamStopPost without sending the request
|
|
87
|
+
*/
|
|
88
|
+
stopStreamApiV1StreamStopPostRequestOpts(): Promise<runtime.RequestOpts>;
|
|
89
|
+
/**
|
|
90
|
+
* Stop Stream
|
|
91
|
+
*/
|
|
92
|
+
stopStreamApiV1StreamStopPostRaw(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<any>>;
|
|
93
|
+
/**
|
|
94
|
+
* Stop Stream
|
|
95
|
+
*/
|
|
96
|
+
stopStreamApiV1StreamStopPost(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<any>;
|
|
97
|
+
/**
|
|
98
|
+
* Creates request options for streamStatusApiV1StreamStatusGet without sending the request
|
|
99
|
+
*/
|
|
100
|
+
streamStatusApiV1StreamStatusGetRequestOpts(): Promise<runtime.RequestOpts>;
|
|
101
|
+
/**
|
|
102
|
+
* Stream Status
|
|
103
|
+
*/
|
|
104
|
+
streamStatusApiV1StreamStatusGetRaw(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<any>>;
|
|
105
|
+
/**
|
|
106
|
+
* Stream Status
|
|
107
|
+
*/
|
|
108
|
+
streamStatusApiV1StreamStatusGet(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<any>;
|
|
109
|
+
}
|