@waldur/support 8.0.8-dev.38 → 8.0.8-dev.40
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/types.gen.d.ts +1 -3
- package/package.json +1 -1
- package/src/types.gen.ts +1 -5
package/dist/types.gen.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { CoreStates, NullEnum } from '@waldur/core';
|
|
1
|
+
import type { CoreStates, FeedbackCategoryEnum, InjectionSeverityEnum, NullEnum } from '@waldur/core';
|
|
2
2
|
export type ActionTakenEnum = 'allow' | 'flag' | 'warn' | 'redact' | 'block';
|
|
3
3
|
export type AtlassianCredentialsRequest = {
|
|
4
4
|
/**
|
|
@@ -403,8 +403,6 @@ export type Feedback = {
|
|
|
403
403
|
readonly issue_key: string;
|
|
404
404
|
readonly issue_summary: string;
|
|
405
405
|
};
|
|
406
|
-
export type FeedbackCategoryEnum = 'inaccurate' | 'incomplete' | 'misunderstood' | 'slow_or_failed' | 'other';
|
|
407
|
-
export type InjectionSeverityEnum = 'none' | 'low' | 'medium' | 'high' | 'critical';
|
|
408
406
|
export type Issue = {
|
|
409
407
|
readonly url: string;
|
|
410
408
|
readonly uuid: string;
|
package/package.json
CHANGED
package/src/types.gen.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
// This file is auto-generated by split-sdk script
|
|
2
2
|
|
|
3
|
-
import type { CoreStates, NullEnum } from '@waldur/core';
|
|
3
|
+
import type { CoreStates, FeedbackCategoryEnum, InjectionSeverityEnum, NullEnum } from '@waldur/core';
|
|
4
4
|
|
|
5
5
|
export type ActionTakenEnum = 'allow' | 'flag' | 'warn' | 'redact' | 'block';
|
|
6
6
|
|
|
@@ -432,10 +432,6 @@ export type Feedback = {
|
|
|
432
432
|
readonly issue_summary: string;
|
|
433
433
|
};
|
|
434
434
|
|
|
435
|
-
export type FeedbackCategoryEnum = 'inaccurate' | 'incomplete' | 'misunderstood' | 'slow_or_failed' | 'other';
|
|
436
|
-
|
|
437
|
-
export type InjectionSeverityEnum = 'none' | 'low' | 'medium' | 'high' | 'critical';
|
|
438
|
-
|
|
439
435
|
export type Issue = {
|
|
440
436
|
readonly url: string;
|
|
441
437
|
readonly uuid: string;
|