re-uploading work

This commit is contained in:
2026-02-04 17:46:30 -06:00
commit 3b14c65998
1388 changed files with 381262 additions and 0 deletions

View File

@@ -0,0 +1,39 @@
/* generated using openapi-typescript-codegen -- do not edit */
/* istanbul ignore file */
/* tslint:disable */
/* eslint-disable */
import type { EnforcementCondition } from './EnforcementCondition';
import type { EnforcementStatus } from './EnforcementStatus';
import type { i64 } from './i64';
/**
* Summary enforcement response for list views
*/
export type EnforcementSummary = {
/**
* Enforcement condition
*/
condition: EnforcementCondition;
/**
* Creation timestamp
*/
created: string;
event?: (null | i64);
/**
* Enforcement ID
*/
id: i64;
rule?: (null | i64);
/**
* Rule reference
*/
rule_ref: string;
/**
* Enforcement status
*/
status: EnforcementStatus;
/**
* Trigger reference
*/
trigger_ref: string;
};