first pass at access control setup
This commit is contained in:
19
web/src/api/models/RuntimeVersionConstraintPatch.ts
Normal file
19
web/src/api/models/RuntimeVersionConstraintPatch.ts
Normal file
@@ -0,0 +1,19 @@
|
||||
/* generated using openapi-typescript-codegen -- do not edit */
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
/**
|
||||
* Explicit patch operation for a nullable runtime version constraint.
|
||||
*/
|
||||
export type RuntimeVersionConstraintPatch = ({
|
||||
op: RuntimeVersionConstraintPatch.op;
|
||||
value: string;
|
||||
} | {
|
||||
op: RuntimeVersionConstraintPatch.op;
|
||||
});
|
||||
export namespace RuntimeVersionConstraintPatch {
|
||||
export enum op {
|
||||
SET = 'set',
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user