@quba/sensitive-data-protection 0.0.5 → 0.0.7
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/README.md +4 -4
- package/dist/index.cjs +411 -370
- package/dist/index.d.cts +330 -296
- package/dist/index.d.mts +330 -296
- package/dist/index.mjs +330 -294
- package/docs/AnonymizeRequestBody.md +2 -0
- package/docs/AnonymizeResponseBody.md +2 -2
- package/docs/{MapValueInner.md → AnonymizeResponseBodySpansInner.md} +10 -10
- package/docs/ModelResult.md +45 -0
- package/docs/{ModelSpan.md → RegexResult.md} +11 -13
- package/docs/{RegexSpan.md → TextRange.md} +5 -9
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -184,7 +184,7 @@ declare class TextApiResponse {
|
|
|
184
184
|
value(): Promise<string>;
|
|
185
185
|
}
|
|
186
186
|
//#endregion
|
|
187
|
-
//#region src/models/
|
|
187
|
+
//#region src/models/Entities.d.ts
|
|
188
188
|
/**
|
|
189
189
|
* Sensitive Data Protection API
|
|
190
190
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
@@ -199,287 +199,287 @@ declare class TextApiResponse {
|
|
|
199
199
|
/**
|
|
200
200
|
*
|
|
201
201
|
* @export
|
|
202
|
-
* @interface
|
|
202
|
+
* @interface Entities
|
|
203
203
|
*/
|
|
204
|
-
interface
|
|
204
|
+
interface Entities {}
|
|
205
205
|
/**
|
|
206
|
-
* Check if a given object implements the
|
|
206
|
+
* Check if a given object implements the Entities interface.
|
|
207
207
|
*/
|
|
208
|
-
declare function
|
|
209
|
-
declare function
|
|
210
|
-
declare function
|
|
211
|
-
declare function
|
|
212
|
-
declare function
|
|
208
|
+
declare function instanceOfEntities(value: object): value is Entities;
|
|
209
|
+
declare function EntitiesFromJSON(json: any): Entities;
|
|
210
|
+
declare function EntitiesFromJSONTyped(json: any, ignoreDiscriminator: boolean): Entities;
|
|
211
|
+
declare function EntitiesToJSON(json: any): Entities;
|
|
212
|
+
declare function EntitiesToJSONTyped(value?: Entities | null, ignoreDiscriminator?: boolean): any;
|
|
213
213
|
//#endregion
|
|
214
|
-
//#region src/models/
|
|
214
|
+
//#region src/models/EncryptRule.d.ts
|
|
215
215
|
/**
|
|
216
216
|
*
|
|
217
217
|
* @export
|
|
218
|
-
* @interface
|
|
218
|
+
* @interface EncryptRule
|
|
219
219
|
*/
|
|
220
|
-
interface
|
|
220
|
+
interface EncryptRule {
|
|
221
221
|
/**
|
|
222
222
|
*
|
|
223
223
|
* @type {string}
|
|
224
|
-
* @memberof
|
|
224
|
+
* @memberof EncryptRule
|
|
225
225
|
*/
|
|
226
|
-
|
|
226
|
+
type?: EncryptRuleTypeEnum;
|
|
227
227
|
/**
|
|
228
228
|
*
|
|
229
|
-
* @type {
|
|
230
|
-
* @memberof
|
|
229
|
+
* @type {Entities}
|
|
230
|
+
* @memberof EncryptRule
|
|
231
231
|
*/
|
|
232
|
-
|
|
232
|
+
entities: Entities;
|
|
233
233
|
/**
|
|
234
234
|
*
|
|
235
235
|
* @type {string}
|
|
236
|
-
* @memberof
|
|
236
|
+
* @memberof EncryptRule
|
|
237
237
|
*/
|
|
238
238
|
key?: string;
|
|
239
239
|
}
|
|
240
240
|
/**
|
|
241
241
|
* @export
|
|
242
242
|
*/
|
|
243
|
-
declare const
|
|
243
|
+
declare const EncryptRuleTypeEnum: {
|
|
244
244
|
readonly encrypt: "encrypt";
|
|
245
245
|
};
|
|
246
|
-
type
|
|
246
|
+
type EncryptRuleTypeEnum = typeof EncryptRuleTypeEnum[keyof typeof EncryptRuleTypeEnum];
|
|
247
247
|
/**
|
|
248
|
-
* Check if a given object implements the
|
|
248
|
+
* Check if a given object implements the EncryptRule interface.
|
|
249
249
|
*/
|
|
250
|
-
declare function
|
|
251
|
-
declare function
|
|
252
|
-
declare function
|
|
253
|
-
declare function
|
|
254
|
-
declare function
|
|
250
|
+
declare function instanceOfEncryptRule(value: object): value is EncryptRule;
|
|
251
|
+
declare function EncryptRuleFromJSON(json: any): EncryptRule;
|
|
252
|
+
declare function EncryptRuleFromJSONTyped(json: any, ignoreDiscriminator: boolean): EncryptRule;
|
|
253
|
+
declare function EncryptRuleToJSON(json: any): EncryptRule;
|
|
254
|
+
declare function EncryptRuleToJSONTyped(value?: EncryptRule | null, ignoreDiscriminator?: boolean): any;
|
|
255
255
|
//#endregion
|
|
256
|
-
//#region src/models/
|
|
256
|
+
//#region src/models/MaskRule.d.ts
|
|
257
257
|
/**
|
|
258
258
|
*
|
|
259
259
|
* @export
|
|
260
|
-
* @interface
|
|
260
|
+
* @interface MaskRule
|
|
261
261
|
*/
|
|
262
|
-
interface
|
|
262
|
+
interface MaskRule {
|
|
263
263
|
/**
|
|
264
264
|
*
|
|
265
265
|
* @type {string}
|
|
266
|
-
* @memberof
|
|
266
|
+
* @memberof MaskRule
|
|
267
267
|
*/
|
|
268
|
-
|
|
268
|
+
type?: MaskRuleTypeEnum;
|
|
269
269
|
/**
|
|
270
270
|
*
|
|
271
|
-
* @type {
|
|
272
|
-
* @memberof
|
|
271
|
+
* @type {Entities}
|
|
272
|
+
* @memberof MaskRule
|
|
273
273
|
*/
|
|
274
|
-
|
|
274
|
+
entities: Entities;
|
|
275
275
|
/**
|
|
276
276
|
*
|
|
277
277
|
* @type {string}
|
|
278
|
-
* @memberof
|
|
278
|
+
* @memberof MaskRule
|
|
279
279
|
*/
|
|
280
280
|
masking_char?: string;
|
|
281
281
|
/**
|
|
282
282
|
*
|
|
283
283
|
* @type {number}
|
|
284
|
-
* @memberof
|
|
284
|
+
* @memberof MaskRule
|
|
285
285
|
*/
|
|
286
286
|
chars_to_mask?: number | null;
|
|
287
287
|
/**
|
|
288
288
|
*
|
|
289
289
|
* @type {boolean}
|
|
290
|
-
* @memberof
|
|
290
|
+
* @memberof MaskRule
|
|
291
291
|
*/
|
|
292
292
|
from_end?: boolean;
|
|
293
293
|
}
|
|
294
294
|
/**
|
|
295
295
|
* @export
|
|
296
296
|
*/
|
|
297
|
-
declare const
|
|
297
|
+
declare const MaskRuleTypeEnum: {
|
|
298
298
|
readonly mask: "mask";
|
|
299
299
|
};
|
|
300
|
-
type
|
|
300
|
+
type MaskRuleTypeEnum = typeof MaskRuleTypeEnum[keyof typeof MaskRuleTypeEnum];
|
|
301
301
|
/**
|
|
302
|
-
* Check if a given object implements the
|
|
302
|
+
* Check if a given object implements the MaskRule interface.
|
|
303
303
|
*/
|
|
304
|
-
declare function
|
|
305
|
-
declare function
|
|
306
|
-
declare function
|
|
307
|
-
declare function
|
|
308
|
-
declare function
|
|
304
|
+
declare function instanceOfMaskRule(value: object): value is MaskRule;
|
|
305
|
+
declare function MaskRuleFromJSON(json: any): MaskRule;
|
|
306
|
+
declare function MaskRuleFromJSONTyped(json: any, ignoreDiscriminator: boolean): MaskRule;
|
|
307
|
+
declare function MaskRuleToJSON(json: any): MaskRule;
|
|
308
|
+
declare function MaskRuleToJSONTyped(value?: MaskRule | null, ignoreDiscriminator?: boolean): any;
|
|
309
309
|
//#endregion
|
|
310
|
-
//#region src/models/
|
|
310
|
+
//#region src/models/RedactRule.d.ts
|
|
311
311
|
/**
|
|
312
312
|
*
|
|
313
313
|
* @export
|
|
314
|
-
* @interface
|
|
314
|
+
* @interface RedactRule
|
|
315
315
|
*/
|
|
316
|
-
interface
|
|
316
|
+
interface RedactRule {
|
|
317
317
|
/**
|
|
318
318
|
*
|
|
319
319
|
* @type {string}
|
|
320
|
-
* @memberof
|
|
320
|
+
* @memberof RedactRule
|
|
321
321
|
*/
|
|
322
|
-
|
|
322
|
+
type?: RedactRuleTypeEnum;
|
|
323
323
|
/**
|
|
324
324
|
*
|
|
325
|
-
* @type {
|
|
326
|
-
* @memberof
|
|
325
|
+
* @type {Entities}
|
|
326
|
+
* @memberof RedactRule
|
|
327
327
|
*/
|
|
328
|
-
|
|
328
|
+
entities: Entities;
|
|
329
329
|
}
|
|
330
330
|
/**
|
|
331
331
|
* @export
|
|
332
332
|
*/
|
|
333
|
-
declare const
|
|
333
|
+
declare const RedactRuleTypeEnum: {
|
|
334
334
|
readonly redact: "redact";
|
|
335
335
|
};
|
|
336
|
-
type
|
|
336
|
+
type RedactRuleTypeEnum = typeof RedactRuleTypeEnum[keyof typeof RedactRuleTypeEnum];
|
|
337
337
|
/**
|
|
338
|
-
* Check if a given object implements the
|
|
338
|
+
* Check if a given object implements the RedactRule interface.
|
|
339
339
|
*/
|
|
340
|
-
declare function
|
|
341
|
-
declare function
|
|
342
|
-
declare function
|
|
343
|
-
declare function
|
|
344
|
-
declare function
|
|
340
|
+
declare function instanceOfRedactRule(value: object): value is RedactRule;
|
|
341
|
+
declare function RedactRuleFromJSON(json: any): RedactRule;
|
|
342
|
+
declare function RedactRuleFromJSONTyped(json: any, ignoreDiscriminator: boolean): RedactRule;
|
|
343
|
+
declare function RedactRuleToJSON(json: any): RedactRule;
|
|
344
|
+
declare function RedactRuleToJSONTyped(value?: RedactRule | null, ignoreDiscriminator?: boolean): any;
|
|
345
345
|
//#endregion
|
|
346
|
-
//#region src/models/
|
|
346
|
+
//#region src/models/ReplaceRule.d.ts
|
|
347
347
|
/**
|
|
348
348
|
*
|
|
349
349
|
* @export
|
|
350
|
-
* @interface
|
|
350
|
+
* @interface ReplaceRule
|
|
351
351
|
*/
|
|
352
|
-
interface
|
|
352
|
+
interface ReplaceRule {
|
|
353
353
|
/**
|
|
354
354
|
*
|
|
355
355
|
* @type {string}
|
|
356
|
-
* @memberof
|
|
356
|
+
* @memberof ReplaceRule
|
|
357
357
|
*/
|
|
358
|
-
|
|
358
|
+
type?: ReplaceRuleTypeEnum;
|
|
359
359
|
/**
|
|
360
360
|
*
|
|
361
|
-
* @type {
|
|
362
|
-
* @memberof
|
|
361
|
+
* @type {Entities}
|
|
362
|
+
* @memberof ReplaceRule
|
|
363
363
|
*/
|
|
364
|
-
|
|
364
|
+
entities: Entities;
|
|
365
365
|
/**
|
|
366
366
|
*
|
|
367
367
|
* @type {string}
|
|
368
|
-
* @memberof
|
|
368
|
+
* @memberof ReplaceRule
|
|
369
369
|
*/
|
|
370
370
|
replacement?: string;
|
|
371
371
|
}
|
|
372
372
|
/**
|
|
373
373
|
* @export
|
|
374
374
|
*/
|
|
375
|
-
declare const
|
|
375
|
+
declare const ReplaceRuleTypeEnum: {
|
|
376
376
|
readonly replace: "replace";
|
|
377
377
|
};
|
|
378
|
-
type
|
|
378
|
+
type ReplaceRuleTypeEnum = typeof ReplaceRuleTypeEnum[keyof typeof ReplaceRuleTypeEnum];
|
|
379
379
|
/**
|
|
380
|
-
* Check if a given object implements the
|
|
380
|
+
* Check if a given object implements the ReplaceRule interface.
|
|
381
381
|
*/
|
|
382
|
-
declare function
|
|
383
|
-
declare function
|
|
384
|
-
declare function
|
|
385
|
-
declare function
|
|
386
|
-
declare function
|
|
382
|
+
declare function instanceOfReplaceRule(value: object): value is ReplaceRule;
|
|
383
|
+
declare function ReplaceRuleFromJSON(json: any): ReplaceRule;
|
|
384
|
+
declare function ReplaceRuleFromJSONTyped(json: any, ignoreDiscriminator: boolean): ReplaceRule;
|
|
385
|
+
declare function ReplaceRuleToJSON(json: any): ReplaceRule;
|
|
386
|
+
declare function ReplaceRuleToJSONTyped(value?: ReplaceRule | null, ignoreDiscriminator?: boolean): any;
|
|
387
387
|
//#endregion
|
|
388
|
-
//#region src/models/
|
|
388
|
+
//#region src/models/SHA256Rule.d.ts
|
|
389
389
|
/**
|
|
390
390
|
*
|
|
391
391
|
* @export
|
|
392
|
-
* @interface
|
|
392
|
+
* @interface SHA256Rule
|
|
393
393
|
*/
|
|
394
|
-
interface
|
|
394
|
+
interface SHA256Rule {
|
|
395
395
|
/**
|
|
396
396
|
*
|
|
397
397
|
* @type {string}
|
|
398
|
-
* @memberof
|
|
398
|
+
* @memberof SHA256Rule
|
|
399
399
|
*/
|
|
400
|
-
|
|
400
|
+
type?: SHA256RuleTypeEnum;
|
|
401
401
|
/**
|
|
402
402
|
*
|
|
403
|
-
* @type {
|
|
404
|
-
* @memberof
|
|
403
|
+
* @type {Entities}
|
|
404
|
+
* @memberof SHA256Rule
|
|
405
405
|
*/
|
|
406
|
-
|
|
406
|
+
entities: Entities;
|
|
407
407
|
}
|
|
408
408
|
/**
|
|
409
409
|
* @export
|
|
410
410
|
*/
|
|
411
|
-
declare const
|
|
411
|
+
declare const SHA256RuleTypeEnum: {
|
|
412
412
|
readonly sha256: "sha256";
|
|
413
413
|
};
|
|
414
|
-
type
|
|
414
|
+
type SHA256RuleTypeEnum = typeof SHA256RuleTypeEnum[keyof typeof SHA256RuleTypeEnum];
|
|
415
415
|
/**
|
|
416
|
-
* Check if a given object implements the
|
|
416
|
+
* Check if a given object implements the SHA256Rule interface.
|
|
417
417
|
*/
|
|
418
|
-
declare function
|
|
419
|
-
declare function
|
|
420
|
-
declare function
|
|
421
|
-
declare function
|
|
422
|
-
declare function
|
|
418
|
+
declare function instanceOfSHA256Rule(value: object): value is SHA256Rule;
|
|
419
|
+
declare function SHA256RuleFromJSON(json: any): SHA256Rule;
|
|
420
|
+
declare function SHA256RuleFromJSONTyped(json: any, ignoreDiscriminator: boolean): SHA256Rule;
|
|
421
|
+
declare function SHA256RuleToJSON(json: any): SHA256Rule;
|
|
422
|
+
declare function SHA256RuleToJSONTyped(value?: SHA256Rule | null, ignoreDiscriminator?: boolean): any;
|
|
423
423
|
//#endregion
|
|
424
|
-
//#region src/models/
|
|
424
|
+
//#region src/models/SHA512Rule.d.ts
|
|
425
425
|
/**
|
|
426
426
|
*
|
|
427
427
|
* @export
|
|
428
|
-
* @interface
|
|
428
|
+
* @interface SHA512Rule
|
|
429
429
|
*/
|
|
430
|
-
interface
|
|
430
|
+
interface SHA512Rule {
|
|
431
431
|
/**
|
|
432
432
|
*
|
|
433
433
|
* @type {string}
|
|
434
|
-
* @memberof
|
|
434
|
+
* @memberof SHA512Rule
|
|
435
435
|
*/
|
|
436
|
-
|
|
436
|
+
type?: SHA512RuleTypeEnum;
|
|
437
437
|
/**
|
|
438
438
|
*
|
|
439
|
-
* @type {
|
|
440
|
-
* @memberof
|
|
439
|
+
* @type {Entities}
|
|
440
|
+
* @memberof SHA512Rule
|
|
441
441
|
*/
|
|
442
|
-
|
|
442
|
+
entities: Entities;
|
|
443
443
|
}
|
|
444
444
|
/**
|
|
445
445
|
* @export
|
|
446
446
|
*/
|
|
447
|
-
declare const
|
|
447
|
+
declare const SHA512RuleTypeEnum: {
|
|
448
448
|
readonly sha512: "sha512";
|
|
449
449
|
};
|
|
450
|
-
type
|
|
450
|
+
type SHA512RuleTypeEnum = typeof SHA512RuleTypeEnum[keyof typeof SHA512RuleTypeEnum];
|
|
451
451
|
/**
|
|
452
|
-
* Check if a given object implements the
|
|
452
|
+
* Check if a given object implements the SHA512Rule interface.
|
|
453
453
|
*/
|
|
454
|
-
declare function
|
|
455
|
-
declare function
|
|
456
|
-
declare function
|
|
457
|
-
declare function
|
|
458
|
-
declare function
|
|
454
|
+
declare function instanceOfSHA512Rule(value: object): value is SHA512Rule;
|
|
455
|
+
declare function SHA512RuleFromJSON(json: any): SHA512Rule;
|
|
456
|
+
declare function SHA512RuleFromJSONTyped(json: any, ignoreDiscriminator: boolean): SHA512Rule;
|
|
457
|
+
declare function SHA512RuleToJSON(json: any): SHA512Rule;
|
|
458
|
+
declare function SHA512RuleToJSONTyped(value?: SHA512Rule | null, ignoreDiscriminator?: boolean): any;
|
|
459
459
|
//#endregion
|
|
460
|
-
//#region src/models/
|
|
460
|
+
//#region src/models/AnonymizeRequestBodyRulesInner.d.ts
|
|
461
461
|
/**
|
|
462
|
-
* @type
|
|
462
|
+
* @type AnonymizeRequestBodyRulesInner
|
|
463
463
|
*
|
|
464
464
|
* @export
|
|
465
465
|
*/
|
|
466
|
-
type
|
|
467
|
-
|
|
468
|
-
} &
|
|
469
|
-
|
|
470
|
-
} &
|
|
471
|
-
|
|
472
|
-
} &
|
|
473
|
-
|
|
474
|
-
} &
|
|
475
|
-
|
|
476
|
-
} &
|
|
477
|
-
|
|
478
|
-
} &
|
|
479
|
-
declare function
|
|
480
|
-
declare function
|
|
481
|
-
declare function
|
|
482
|
-
declare function
|
|
466
|
+
type AnonymizeRequestBodyRulesInner = {
|
|
467
|
+
type: 'encrypt';
|
|
468
|
+
} & EncryptRule | {
|
|
469
|
+
type: 'mask';
|
|
470
|
+
} & MaskRule | {
|
|
471
|
+
type: 'redact';
|
|
472
|
+
} & RedactRule | {
|
|
473
|
+
type: 'replace';
|
|
474
|
+
} & ReplaceRule | {
|
|
475
|
+
type: 'sha256';
|
|
476
|
+
} & SHA256Rule | {
|
|
477
|
+
type: 'sha512';
|
|
478
|
+
} & SHA512Rule;
|
|
479
|
+
declare function AnonymizeRequestBodyRulesInnerFromJSON(json: any): AnonymizeRequestBodyRulesInner;
|
|
480
|
+
declare function AnonymizeRequestBodyRulesInnerFromJSONTyped(json: any, ignoreDiscriminator: boolean): AnonymizeRequestBodyRulesInner;
|
|
481
|
+
declare function AnonymizeRequestBodyRulesInnerToJSON(json: any): any;
|
|
482
|
+
declare function AnonymizeRequestBodyRulesInnerToJSONTyped(value?: AnonymizeRequestBodyRulesInner | null, ignoreDiscriminator?: boolean): any;
|
|
483
483
|
//#endregion
|
|
484
484
|
//#region src/models/AnonymizeRequestBody.d.ts
|
|
485
485
|
/**
|
|
@@ -496,10 +496,16 @@ interface AnonymizeRequestBody {
|
|
|
496
496
|
text: string;
|
|
497
497
|
/**
|
|
498
498
|
*
|
|
499
|
-
* @type {Array<
|
|
499
|
+
* @type {Array<AnonymizeRequestBodyRulesInner>}
|
|
500
500
|
* @memberof AnonymizeRequestBody
|
|
501
501
|
*/
|
|
502
|
-
|
|
502
|
+
rules: Array<AnonymizeRequestBodyRulesInner>;
|
|
503
|
+
/**
|
|
504
|
+
*
|
|
505
|
+
* @type {number}
|
|
506
|
+
* @memberof AnonymizeRequestBody
|
|
507
|
+
*/
|
|
508
|
+
confidence_threshold?: number | null;
|
|
503
509
|
}
|
|
504
510
|
/**
|
|
505
511
|
* Check if a given object implements the AnonymizeRequestBody interface.
|
|
@@ -510,7 +516,7 @@ declare function AnonymizeRequestBodyFromJSONTyped(json: any, ignoreDiscriminato
|
|
|
510
516
|
declare function AnonymizeRequestBodyToJSON(json: any): AnonymizeRequestBody;
|
|
511
517
|
declare function AnonymizeRequestBodyToJSONTyped(value?: AnonymizeRequestBody | null, ignoreDiscriminator?: boolean): any;
|
|
512
518
|
//#endregion
|
|
513
|
-
//#region src/models/
|
|
519
|
+
//#region src/models/TextRange.d.ts
|
|
514
520
|
/**
|
|
515
521
|
* Sensitive Data Protection API
|
|
516
522
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
@@ -523,144 +529,174 @@ declare function AnonymizeRequestBodyToJSONTyped(value?: AnonymizeRequestBody |
|
|
|
523
529
|
* Do not edit the class manually.
|
|
524
530
|
*/
|
|
525
531
|
/**
|
|
526
|
-
* A
|
|
532
|
+
* A character range within a text, carrying the substring it covers.
|
|
527
533
|
* @export
|
|
528
|
-
* @interface
|
|
534
|
+
* @interface TextRange
|
|
529
535
|
*/
|
|
530
|
-
interface
|
|
536
|
+
interface TextRange {
|
|
531
537
|
/**
|
|
532
|
-
*
|
|
533
|
-
* @type {string}
|
|
534
|
-
* @memberof EntitySpanResult
|
|
535
|
-
*/
|
|
536
|
-
target?: EntitySpanResultTargetEnum;
|
|
537
|
-
/**
|
|
538
|
-
*
|
|
538
|
+
* Start character offset (inclusive).
|
|
539
539
|
* @type {number}
|
|
540
|
-
* @memberof
|
|
540
|
+
* @memberof TextRange
|
|
541
541
|
*/
|
|
542
542
|
start: number;
|
|
543
543
|
/**
|
|
544
|
-
*
|
|
544
|
+
* End character offset (exclusive).
|
|
545
545
|
* @type {number}
|
|
546
|
-
* @memberof
|
|
546
|
+
* @memberof TextRange
|
|
547
547
|
*/
|
|
548
548
|
end: number;
|
|
549
549
|
/**
|
|
550
|
-
*
|
|
550
|
+
* The substring at [start, end).
|
|
551
551
|
* @type {string}
|
|
552
|
-
* @memberof
|
|
552
|
+
* @memberof TextRange
|
|
553
553
|
*/
|
|
554
|
-
|
|
554
|
+
value: string;
|
|
555
|
+
}
|
|
556
|
+
/**
|
|
557
|
+
* Check if a given object implements the TextRange interface.
|
|
558
|
+
*/
|
|
559
|
+
declare function instanceOfTextRange(value: object): value is TextRange;
|
|
560
|
+
declare function TextRangeFromJSON(json: any): TextRange;
|
|
561
|
+
declare function TextRangeFromJSONTyped(json: any, ignoreDiscriminator: boolean): TextRange;
|
|
562
|
+
declare function TextRangeToJSON(json: any): TextRange;
|
|
563
|
+
declare function TextRangeToJSONTyped(value?: TextRange | null, ignoreDiscriminator?: boolean): any;
|
|
564
|
+
//#endregion
|
|
565
|
+
//#region src/models/ModelResult.d.ts
|
|
566
|
+
/**
|
|
567
|
+
* Record of an AI model detection and its anonymization.
|
|
568
|
+
*
|
|
569
|
+
* Created when an AI model identifies an entity (e.g. PERSON, EMAIL)
|
|
570
|
+
* and a rule anonymizes the matched text.
|
|
571
|
+
* @export
|
|
572
|
+
* @interface ModelResult
|
|
573
|
+
*/
|
|
574
|
+
interface ModelResult {
|
|
555
575
|
/**
|
|
556
576
|
*
|
|
557
577
|
* @type {string}
|
|
558
|
-
* @memberof
|
|
578
|
+
* @memberof ModelResult
|
|
559
579
|
*/
|
|
560
|
-
|
|
580
|
+
type?: ModelResultTypeEnum;
|
|
561
581
|
/**
|
|
562
|
-
*
|
|
582
|
+
* The rule type that was applied, e.g. 'replace', 'mask'.
|
|
583
|
+
* @type {string}
|
|
584
|
+
* @memberof ModelResult
|
|
585
|
+
*/
|
|
586
|
+
rule: string;
|
|
587
|
+
/**
|
|
588
|
+
* The model entity type that matched, e.g. 'PERSON'.
|
|
589
|
+
* @type {string}
|
|
590
|
+
* @memberof ModelResult
|
|
591
|
+
*/
|
|
592
|
+
value: string;
|
|
593
|
+
/**
|
|
594
|
+
* The detected range in the original text.
|
|
595
|
+
* @type {TextRange}
|
|
596
|
+
* @memberof ModelResult
|
|
597
|
+
*/
|
|
598
|
+
input: TextRange;
|
|
599
|
+
/**
|
|
600
|
+
* The anonymized range in the result text.
|
|
601
|
+
* @type {TextRange}
|
|
602
|
+
* @memberof ModelResult
|
|
603
|
+
*/
|
|
604
|
+
output: TextRange;
|
|
605
|
+
/**
|
|
606
|
+
* Confidence score from the AI model (0.0–1.0).
|
|
563
607
|
* @type {number}
|
|
564
|
-
* @memberof
|
|
608
|
+
* @memberof ModelResult
|
|
565
609
|
*/
|
|
566
610
|
score?: number;
|
|
567
611
|
}
|
|
568
612
|
/**
|
|
569
613
|
* @export
|
|
570
614
|
*/
|
|
571
|
-
declare const
|
|
572
|
-
readonly
|
|
615
|
+
declare const ModelResultTypeEnum: {
|
|
616
|
+
readonly model: "model";
|
|
573
617
|
};
|
|
574
|
-
type
|
|
618
|
+
type ModelResultTypeEnum = typeof ModelResultTypeEnum[keyof typeof ModelResultTypeEnum];
|
|
575
619
|
/**
|
|
576
|
-
* Check if a given object implements the
|
|
620
|
+
* Check if a given object implements the ModelResult interface.
|
|
577
621
|
*/
|
|
578
|
-
declare function
|
|
579
|
-
declare function
|
|
580
|
-
declare function
|
|
581
|
-
declare function
|
|
582
|
-
declare function
|
|
622
|
+
declare function instanceOfModelResult(value: object): value is ModelResult;
|
|
623
|
+
declare function ModelResultFromJSON(json: any): ModelResult;
|
|
624
|
+
declare function ModelResultFromJSONTyped(json: any, ignoreDiscriminator: boolean): ModelResult;
|
|
625
|
+
declare function ModelResultToJSON(json: any): ModelResult;
|
|
626
|
+
declare function ModelResultToJSONTyped(value?: ModelResult | null, ignoreDiscriminator?: boolean): any;
|
|
583
627
|
//#endregion
|
|
584
|
-
//#region src/models/
|
|
628
|
+
//#region src/models/RegexResult.d.ts
|
|
585
629
|
/**
|
|
586
|
-
*
|
|
587
|
-
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
588
|
-
*
|
|
589
|
-
* The version of the OpenAPI document: 0.0.1
|
|
630
|
+
* Record of a regex detection and its anonymization.
|
|
590
631
|
*
|
|
591
|
-
*
|
|
592
|
-
*
|
|
593
|
-
* https://openapi-generator.tech
|
|
594
|
-
* Do not edit the class manually.
|
|
595
|
-
*/
|
|
596
|
-
/**
|
|
597
|
-
* A detected regex span.
|
|
632
|
+
* Created when a regex pattern matches text
|
|
633
|
+
* and a rule anonymizes the matched text.
|
|
598
634
|
* @export
|
|
599
|
-
* @interface
|
|
635
|
+
* @interface RegexResult
|
|
600
636
|
*/
|
|
601
|
-
interface
|
|
637
|
+
interface RegexResult {
|
|
602
638
|
/**
|
|
603
639
|
*
|
|
604
640
|
* @type {string}
|
|
605
|
-
* @memberof
|
|
641
|
+
* @memberof RegexResult
|
|
606
642
|
*/
|
|
607
|
-
|
|
643
|
+
type?: RegexResultTypeEnum;
|
|
608
644
|
/**
|
|
609
|
-
*
|
|
610
|
-
* @type {
|
|
611
|
-
* @memberof
|
|
645
|
+
* The rule type that was applied, e.g. 'replace', 'mask'.
|
|
646
|
+
* @type {string}
|
|
647
|
+
* @memberof RegexResult
|
|
612
648
|
*/
|
|
613
|
-
|
|
649
|
+
rule: string;
|
|
614
650
|
/**
|
|
615
|
-
*
|
|
616
|
-
* @type {
|
|
617
|
-
* @memberof
|
|
651
|
+
* The regex pattern that matched.
|
|
652
|
+
* @type {string}
|
|
653
|
+
* @memberof RegexResult
|
|
618
654
|
*/
|
|
619
|
-
|
|
655
|
+
value: string;
|
|
620
656
|
/**
|
|
621
|
-
*
|
|
622
|
-
* @type {
|
|
623
|
-
* @memberof
|
|
657
|
+
* The detected range in the original text.
|
|
658
|
+
* @type {TextRange}
|
|
659
|
+
* @memberof RegexResult
|
|
624
660
|
*/
|
|
625
|
-
|
|
661
|
+
input: TextRange;
|
|
626
662
|
/**
|
|
627
|
-
*
|
|
628
|
-
* @type {
|
|
629
|
-
* @memberof
|
|
663
|
+
* The anonymized range in the result text.
|
|
664
|
+
* @type {TextRange}
|
|
665
|
+
* @memberof RegexResult
|
|
630
666
|
*/
|
|
631
|
-
|
|
667
|
+
output: TextRange;
|
|
632
668
|
}
|
|
633
669
|
/**
|
|
634
670
|
* @export
|
|
635
671
|
*/
|
|
636
|
-
declare const
|
|
672
|
+
declare const RegexResultTypeEnum: {
|
|
637
673
|
readonly regex: "regex";
|
|
638
674
|
};
|
|
639
|
-
type
|
|
675
|
+
type RegexResultTypeEnum = typeof RegexResultTypeEnum[keyof typeof RegexResultTypeEnum];
|
|
640
676
|
/**
|
|
641
|
-
* Check if a given object implements the
|
|
677
|
+
* Check if a given object implements the RegexResult interface.
|
|
642
678
|
*/
|
|
643
|
-
declare function
|
|
644
|
-
declare function
|
|
645
|
-
declare function
|
|
646
|
-
declare function
|
|
647
|
-
declare function
|
|
679
|
+
declare function instanceOfRegexResult(value: object): value is RegexResult;
|
|
680
|
+
declare function RegexResultFromJSON(json: any): RegexResult;
|
|
681
|
+
declare function RegexResultFromJSONTyped(json: any, ignoreDiscriminator: boolean): RegexResult;
|
|
682
|
+
declare function RegexResultToJSON(json: any): RegexResult;
|
|
683
|
+
declare function RegexResultToJSONTyped(value?: RegexResult | null, ignoreDiscriminator?: boolean): any;
|
|
648
684
|
//#endregion
|
|
649
|
-
//#region src/models/
|
|
685
|
+
//#region src/models/AnonymizeResponseBodySpansInner.d.ts
|
|
650
686
|
/**
|
|
651
|
-
* @type
|
|
687
|
+
* @type AnonymizeResponseBodySpansInner
|
|
652
688
|
*
|
|
653
689
|
* @export
|
|
654
690
|
*/
|
|
655
|
-
type
|
|
656
|
-
|
|
657
|
-
} &
|
|
658
|
-
|
|
659
|
-
} &
|
|
660
|
-
declare function
|
|
661
|
-
declare function
|
|
662
|
-
declare function
|
|
663
|
-
declare function
|
|
691
|
+
type AnonymizeResponseBodySpansInner = {
|
|
692
|
+
type: 'model';
|
|
693
|
+
} & ModelResult | {
|
|
694
|
+
type: 'regex';
|
|
695
|
+
} & RegexResult;
|
|
696
|
+
declare function AnonymizeResponseBodySpansInnerFromJSON(json: any): AnonymizeResponseBodySpansInner;
|
|
697
|
+
declare function AnonymizeResponseBodySpansInnerFromJSONTyped(json: any, ignoreDiscriminator: boolean): AnonymizeResponseBodySpansInner;
|
|
698
|
+
declare function AnonymizeResponseBodySpansInnerToJSON(json: any): any;
|
|
699
|
+
declare function AnonymizeResponseBodySpansInnerToJSONTyped(value?: AnonymizeResponseBodySpansInner | null, ignoreDiscriminator?: boolean): any;
|
|
664
700
|
//#endregion
|
|
665
701
|
//#region src/models/AnonymizeResponseBody.d.ts
|
|
666
702
|
/**
|
|
@@ -677,12 +713,10 @@ interface AnonymizeResponseBody {
|
|
|
677
713
|
text: string;
|
|
678
714
|
/**
|
|
679
715
|
*
|
|
680
|
-
* @type {
|
|
716
|
+
* @type {Array<AnonymizeResponseBodySpansInner>}
|
|
681
717
|
* @memberof AnonymizeResponseBody
|
|
682
718
|
*/
|
|
683
|
-
|
|
684
|
-
[key: string]: Array<MapValueInner>;
|
|
685
|
-
};
|
|
719
|
+
spans?: Array<AnonymizeResponseBodySpansInner>;
|
|
686
720
|
}
|
|
687
721
|
/**
|
|
688
722
|
* Check if a given object implements the AnonymizeResponseBody interface.
|
|
@@ -693,7 +727,7 @@ declare function AnonymizeResponseBodyFromJSONTyped(json: any, ignoreDiscriminat
|
|
|
693
727
|
declare function AnonymizeResponseBodyToJSON(json: any): AnonymizeResponseBody;
|
|
694
728
|
declare function AnonymizeResponseBodyToJSONTyped(value?: AnonymizeResponseBody | null, ignoreDiscriminator?: boolean): any;
|
|
695
729
|
//#endregion
|
|
696
|
-
//#region src/models/
|
|
730
|
+
//#region src/models/ModelEntity.d.ts
|
|
697
731
|
/**
|
|
698
732
|
* Sensitive Data Protection API
|
|
699
733
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
@@ -708,37 +742,100 @@ declare function AnonymizeResponseBodyToJSONTyped(value?: AnonymizeResponseBody
|
|
|
708
742
|
/**
|
|
709
743
|
*
|
|
710
744
|
* @export
|
|
711
|
-
* @interface
|
|
745
|
+
* @interface ModelEntity
|
|
712
746
|
*/
|
|
713
|
-
interface
|
|
747
|
+
interface ModelEntity {
|
|
714
748
|
/**
|
|
715
749
|
*
|
|
716
750
|
* @type {string}
|
|
717
|
-
* @memberof
|
|
751
|
+
* @memberof ModelEntity
|
|
718
752
|
*/
|
|
719
|
-
|
|
753
|
+
type?: ModelEntityTypeEnum;
|
|
720
754
|
/**
|
|
721
755
|
*
|
|
722
756
|
* @type {string}
|
|
723
|
-
* @memberof
|
|
757
|
+
* @memberof ModelEntity
|
|
724
758
|
*/
|
|
725
|
-
|
|
759
|
+
value: string;
|
|
760
|
+
}
|
|
761
|
+
/**
|
|
762
|
+
* @export
|
|
763
|
+
*/
|
|
764
|
+
declare const ModelEntityTypeEnum: {
|
|
765
|
+
readonly model: "model";
|
|
766
|
+
};
|
|
767
|
+
type ModelEntityTypeEnum = typeof ModelEntityTypeEnum[keyof typeof ModelEntityTypeEnum];
|
|
768
|
+
/**
|
|
769
|
+
* Check if a given object implements the ModelEntity interface.
|
|
770
|
+
*/
|
|
771
|
+
declare function instanceOfModelEntity(value: object): value is ModelEntity;
|
|
772
|
+
declare function ModelEntityFromJSON(json: any): ModelEntity;
|
|
773
|
+
declare function ModelEntityFromJSONTyped(json: any, ignoreDiscriminator: boolean): ModelEntity;
|
|
774
|
+
declare function ModelEntityToJSON(json: any): ModelEntity;
|
|
775
|
+
declare function ModelEntityToJSONTyped(value?: ModelEntity | null, ignoreDiscriminator?: boolean): any;
|
|
776
|
+
//#endregion
|
|
777
|
+
//#region src/models/RegexEntity.d.ts
|
|
778
|
+
/**
|
|
779
|
+
* Sensitive Data Protection API
|
|
780
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
781
|
+
*
|
|
782
|
+
* The version of the OpenAPI document: 0.0.1
|
|
783
|
+
*
|
|
784
|
+
*
|
|
785
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
786
|
+
* https://openapi-generator.tech
|
|
787
|
+
* Do not edit the class manually.
|
|
788
|
+
*/
|
|
789
|
+
/**
|
|
790
|
+
*
|
|
791
|
+
* @export
|
|
792
|
+
* @interface RegexEntity
|
|
793
|
+
*/
|
|
794
|
+
interface RegexEntity {
|
|
795
|
+
/**
|
|
796
|
+
*
|
|
797
|
+
* @type {string}
|
|
798
|
+
* @memberof RegexEntity
|
|
799
|
+
*/
|
|
800
|
+
type?: RegexEntityTypeEnum;
|
|
801
|
+
/**
|
|
802
|
+
*
|
|
803
|
+
* @type {string}
|
|
804
|
+
* @memberof RegexEntity
|
|
805
|
+
*/
|
|
806
|
+
value: string;
|
|
726
807
|
}
|
|
727
808
|
/**
|
|
728
809
|
* @export
|
|
729
810
|
*/
|
|
730
|
-
declare const
|
|
731
|
-
readonly
|
|
811
|
+
declare const RegexEntityTypeEnum: {
|
|
812
|
+
readonly regex: "regex";
|
|
732
813
|
};
|
|
733
|
-
type
|
|
814
|
+
type RegexEntityTypeEnum = typeof RegexEntityTypeEnum[keyof typeof RegexEntityTypeEnum];
|
|
815
|
+
/**
|
|
816
|
+
* Check if a given object implements the RegexEntity interface.
|
|
817
|
+
*/
|
|
818
|
+
declare function instanceOfRegexEntity(value: object): value is RegexEntity;
|
|
819
|
+
declare function RegexEntityFromJSON(json: any): RegexEntity;
|
|
820
|
+
declare function RegexEntityFromJSONTyped(json: any, ignoreDiscriminator: boolean): RegexEntity;
|
|
821
|
+
declare function RegexEntityToJSON(json: any): RegexEntity;
|
|
822
|
+
declare function RegexEntityToJSONTyped(value?: RegexEntity | null, ignoreDiscriminator?: boolean): any;
|
|
823
|
+
//#endregion
|
|
824
|
+
//#region src/models/EntitiesAnyOfInner.d.ts
|
|
734
825
|
/**
|
|
735
|
-
*
|
|
826
|
+
* @type EntitiesAnyOfInner
|
|
827
|
+
*
|
|
828
|
+
* @export
|
|
736
829
|
*/
|
|
737
|
-
|
|
738
|
-
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
|
|
830
|
+
type EntitiesAnyOfInner = {
|
|
831
|
+
type: 'model';
|
|
832
|
+
} & ModelEntity | {
|
|
833
|
+
type: 'regex';
|
|
834
|
+
} & RegexEntity;
|
|
835
|
+
declare function EntitiesAnyOfInnerFromJSON(json: any): EntitiesAnyOfInner;
|
|
836
|
+
declare function EntitiesAnyOfInnerFromJSONTyped(json: any, ignoreDiscriminator: boolean): EntitiesAnyOfInner;
|
|
837
|
+
declare function EntitiesAnyOfInnerToJSON(json: any): any;
|
|
838
|
+
declare function EntitiesAnyOfInnerToJSONTyped(value?: EntitiesAnyOfInner | null, ignoreDiscriminator?: boolean): any;
|
|
742
839
|
//#endregion
|
|
743
840
|
//#region src/models/ValidationErrorLocInner.d.ts
|
|
744
841
|
/**
|
|
@@ -825,53 +922,6 @@ declare function HTTPValidationErrorFromJSONTyped(json: any, ignoreDiscriminator
|
|
|
825
922
|
declare function HTTPValidationErrorToJSON(json: any): HTTPValidationError;
|
|
826
923
|
declare function HTTPValidationErrorToJSONTyped(value?: HTTPValidationError | null, ignoreDiscriminator?: boolean): any;
|
|
827
924
|
//#endregion
|
|
828
|
-
//#region src/models/RegexTarget.d.ts
|
|
829
|
-
/**
|
|
830
|
-
* Sensitive Data Protection API
|
|
831
|
-
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
832
|
-
*
|
|
833
|
-
* The version of the OpenAPI document: 0.0.1
|
|
834
|
-
*
|
|
835
|
-
*
|
|
836
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
837
|
-
* https://openapi-generator.tech
|
|
838
|
-
* Do not edit the class manually.
|
|
839
|
-
*/
|
|
840
|
-
/**
|
|
841
|
-
*
|
|
842
|
-
* @export
|
|
843
|
-
* @interface RegexTarget
|
|
844
|
-
*/
|
|
845
|
-
interface RegexTarget {
|
|
846
|
-
/**
|
|
847
|
-
*
|
|
848
|
-
* @type {string}
|
|
849
|
-
* @memberof RegexTarget
|
|
850
|
-
*/
|
|
851
|
-
id?: RegexTargetIdEnum;
|
|
852
|
-
/**
|
|
853
|
-
*
|
|
854
|
-
* @type {string}
|
|
855
|
-
* @memberof RegexTarget
|
|
856
|
-
*/
|
|
857
|
-
pattern: string;
|
|
858
|
-
}
|
|
859
|
-
/**
|
|
860
|
-
* @export
|
|
861
|
-
*/
|
|
862
|
-
declare const RegexTargetIdEnum: {
|
|
863
|
-
readonly regex: "regex";
|
|
864
|
-
};
|
|
865
|
-
type RegexTargetIdEnum = typeof RegexTargetIdEnum[keyof typeof RegexTargetIdEnum];
|
|
866
|
-
/**
|
|
867
|
-
* Check if a given object implements the RegexTarget interface.
|
|
868
|
-
*/
|
|
869
|
-
declare function instanceOfRegexTarget(value: object): value is RegexTarget;
|
|
870
|
-
declare function RegexTargetFromJSON(json: any): RegexTarget;
|
|
871
|
-
declare function RegexTargetFromJSONTyped(json: any, ignoreDiscriminator: boolean): RegexTarget;
|
|
872
|
-
declare function RegexTargetToJSON(json: any): RegexTarget;
|
|
873
|
-
declare function RegexTargetToJSONTyped(value?: RegexTarget | null, ignoreDiscriminator?: boolean): any;
|
|
874
|
-
//#endregion
|
|
875
925
|
//#region src/models/ScanRequestBody.d.ts
|
|
876
926
|
/**
|
|
877
927
|
* Sensitive Data Protection API
|
|
@@ -999,22 +1049,6 @@ declare function ScanResponseBodyFromJSONTyped(json: any, ignoreDiscriminator: b
|
|
|
999
1049
|
declare function ScanResponseBodyToJSON(json: any): ScanResponseBody;
|
|
1000
1050
|
declare function ScanResponseBodyToJSONTyped(value?: ScanResponseBody | null, ignoreDiscriminator?: boolean): any;
|
|
1001
1051
|
//#endregion
|
|
1002
|
-
//#region src/models/TargetsAnyOfInner.d.ts
|
|
1003
|
-
/**
|
|
1004
|
-
* @type TargetsAnyOfInner
|
|
1005
|
-
*
|
|
1006
|
-
* @export
|
|
1007
|
-
*/
|
|
1008
|
-
type TargetsAnyOfInner = {
|
|
1009
|
-
id: 'entity';
|
|
1010
|
-
} & EntityTarget | {
|
|
1011
|
-
id: 'regex';
|
|
1012
|
-
} & RegexTarget;
|
|
1013
|
-
declare function TargetsAnyOfInnerFromJSON(json: any): TargetsAnyOfInner;
|
|
1014
|
-
declare function TargetsAnyOfInnerFromJSONTyped(json: any, ignoreDiscriminator: boolean): TargetsAnyOfInner;
|
|
1015
|
-
declare function TargetsAnyOfInnerToJSON(json: any): any;
|
|
1016
|
-
declare function TargetsAnyOfInnerToJSONTyped(value?: TargetsAnyOfInner | null, ignoreDiscriminator?: boolean): any;
|
|
1017
|
-
//#endregion
|
|
1018
1052
|
//#region src/apis/SensitiveDataProtectionApi.d.ts
|
|
1019
1053
|
interface AnonymizeTextRequest {
|
|
1020
1054
|
AnonymizeRequestBody: AnonymizeRequestBody;
|
|
@@ -1058,4 +1092,4 @@ declare class SensitiveDataProtectionApi extends BaseAPI {
|
|
|
1058
1092
|
scanText(ScanRequestBody: ScanRequestBody, initOverrides?: RequestInit | InitOverrideFunction): Promise<ScanResponseBody>;
|
|
1059
1093
|
}
|
|
1060
1094
|
//#endregion
|
|
1061
|
-
export { AnonymizeRequestBody, AnonymizeRequestBodyFromJSON, AnonymizeRequestBodyFromJSONTyped,
|
|
1095
|
+
export { AnonymizeRequestBody, AnonymizeRequestBodyFromJSON, AnonymizeRequestBodyFromJSONTyped, AnonymizeRequestBodyRulesInner, AnonymizeRequestBodyRulesInnerFromJSON, AnonymizeRequestBodyRulesInnerFromJSONTyped, AnonymizeRequestBodyRulesInnerToJSON, AnonymizeRequestBodyRulesInnerToJSONTyped, AnonymizeRequestBodyToJSON, AnonymizeRequestBodyToJSONTyped, AnonymizeResponseBody, AnonymizeResponseBodyFromJSON, AnonymizeResponseBodyFromJSONTyped, AnonymizeResponseBodySpansInner, AnonymizeResponseBodySpansInnerFromJSON, AnonymizeResponseBodySpansInnerFromJSONTyped, AnonymizeResponseBodySpansInnerToJSON, AnonymizeResponseBodySpansInnerToJSONTyped, AnonymizeResponseBodyToJSON, AnonymizeResponseBodyToJSONTyped, AnonymizeTextRequest, ApiResponse, BASE_PATH, BaseAPI, BlobApiResponse, COLLECTION_FORMATS, Configuration, ConfigurationParameters, Consume, DefaultConfig, EncryptRule, EncryptRuleFromJSON, EncryptRuleFromJSONTyped, EncryptRuleToJSON, EncryptRuleToJSONTyped, EncryptRuleTypeEnum, Entities, EntitiesAnyOfInner, EntitiesAnyOfInnerFromJSON, EntitiesAnyOfInnerFromJSONTyped, EntitiesAnyOfInnerToJSON, EntitiesAnyOfInnerToJSONTyped, EntitiesFromJSON, EntitiesFromJSONTyped, EntitiesToJSON, EntitiesToJSONTyped, ErrorContext, FetchAPI, FetchError, FetchParams, HTTPBody, HTTPHeaders, HTTPMethod, HTTPQuery, HTTPRequestInit, HTTPValidationError, HTTPValidationErrorFromJSON, HTTPValidationErrorFromJSONTyped, HTTPValidationErrorToJSON, HTTPValidationErrorToJSONTyped, InitOverrideFunction, JSONApiResponse, Json, MaskRule, MaskRuleFromJSON, MaskRuleFromJSONTyped, MaskRuleToJSON, MaskRuleToJSONTyped, MaskRuleTypeEnum, Middleware, ModelEntity, ModelEntityFromJSON, ModelEntityFromJSONTyped, ModelEntityToJSON, ModelEntityToJSONTyped, ModelEntityTypeEnum, ModelPropertyNaming, ModelResult, ModelResultFromJSON, ModelResultFromJSONTyped, ModelResultToJSON, ModelResultToJSONTyped, ModelResultTypeEnum, RedactRule, RedactRuleFromJSON, RedactRuleFromJSONTyped, RedactRuleToJSON, RedactRuleToJSONTyped, RedactRuleTypeEnum, RegexEntity, RegexEntityFromJSON, RegexEntityFromJSONTyped, RegexEntityToJSON, RegexEntityToJSONTyped, RegexEntityTypeEnum, RegexResult, RegexResultFromJSON, RegexResultFromJSONTyped, RegexResultToJSON, RegexResultToJSONTyped, RegexResultTypeEnum, ReplaceRule, ReplaceRuleFromJSON, ReplaceRuleFromJSONTyped, ReplaceRuleToJSON, ReplaceRuleToJSONTyped, ReplaceRuleTypeEnum, RequestContext, RequestOpts, RequiredError, ResponseContext, ResponseError, ResponseTransformer, SHA256Rule, SHA256RuleFromJSON, SHA256RuleFromJSONTyped, SHA256RuleToJSON, SHA256RuleToJSONTyped, SHA256RuleTypeEnum, SHA512Rule, SHA512RuleFromJSON, SHA512RuleFromJSONTyped, SHA512RuleToJSON, SHA512RuleToJSONTyped, SHA512RuleTypeEnum, ScanRequestBody, ScanRequestBodyFromJSON, ScanRequestBodyFromJSONTyped, ScanRequestBodyToJSON, ScanRequestBodyToJSONTyped, ScanResponseBody, ScanResponseBodyFromJSON, ScanResponseBodyFromJSONTyped, ScanResponseBodyToJSON, ScanResponseBodyToJSONTyped, ScanResult, ScanResultFromJSON, ScanResultFromJSONTyped, ScanResultToJSON, ScanResultToJSONTyped, ScanTextRequest, SensitiveDataProtectionApi, TextApiResponse, TextRange, TextRangeFromJSON, TextRangeFromJSONTyped, TextRangeToJSON, TextRangeToJSONTyped, ValidationError, ValidationErrorFromJSON, ValidationErrorFromJSONTyped, ValidationErrorLocInner, ValidationErrorLocInnerFromJSON, ValidationErrorLocInnerFromJSONTyped, ValidationErrorLocInnerToJSON, ValidationErrorLocInnerToJSONTyped, ValidationErrorToJSON, ValidationErrorToJSONTyped, VoidApiResponse, canConsumeForm, exists, instanceOfAnonymizeRequestBody, instanceOfAnonymizeResponseBody, instanceOfEncryptRule, instanceOfEntities, instanceOfHTTPValidationError, instanceOfMaskRule, instanceOfModelEntity, instanceOfModelResult, instanceOfRedactRule, instanceOfRegexEntity, instanceOfRegexResult, instanceOfReplaceRule, instanceOfSHA256Rule, instanceOfSHA512Rule, instanceOfScanRequestBody, instanceOfScanResponseBody, instanceOfScanResult, instanceOfTextRange, instanceOfValidationError, instanceOfValidationErrorLocInner, mapValues, querystring };
|