@opusdns/api 1.151.0 → 1.153.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/package.json +1 -1
- package/src/helpers/constants.ts +2 -0
- package/src/openapi.yaml +248 -672
- package/src/schema.d.ts +221 -211
package/package.json
CHANGED
package/src/helpers/constants.ts
CHANGED
|
@@ -1916,6 +1916,7 @@ export const REPORT_STATUS = {
|
|
|
1916
1916
|
GENERATING: "generating",
|
|
1917
1917
|
COMPLETED: "completed",
|
|
1918
1918
|
FAILED: "failed",
|
|
1919
|
+
EMPTY: "empty",
|
|
1919
1920
|
} as const satisfies Record<string, ReportStatus>;
|
|
1920
1921
|
|
|
1921
1922
|
export const REPORT_STATUS_VALUES = [
|
|
@@ -1923,6 +1924,7 @@ export const REPORT_STATUS_VALUES = [
|
|
|
1923
1924
|
'generating',
|
|
1924
1925
|
'completed',
|
|
1925
1926
|
'failed',
|
|
1927
|
+
'empty',
|
|
1926
1928
|
] as const satisfies ReadonlyArray<ReportStatus>;
|
|
1927
1929
|
|
|
1928
1930
|
export const REPORT_TRIGGER_TYPE = {
|