chore: open api

This commit is contained in:
Jason Rasmussen
2023-08-14 16:38:47 -04:00
parent b7b3735c40
commit 947132ac77
9 changed files with 37 additions and 55 deletions
+7 -7
View File
@@ -1900,8 +1900,8 @@ export const RuleKey = {
City: 'city',
State: 'state',
Country: 'country',
Make: 'make',
Model: 'model',
CameraMake: 'camera-make',
CameraModel: 'camera-model',
Location: 'location'
} as const;
@@ -1934,10 +1934,10 @@ export interface RuleResponseDto {
'ownerId': string;
/**
*
* @type {object}
* @type {string}
* @memberof RuleResponseDto
*/
'value': object;
'value': string;
}
@@ -3074,13 +3074,13 @@ export interface UpdateRuleDto {
* @type {RuleKey}
* @memberof UpdateRuleDto
*/
'key'?: RuleKey;
'key': RuleKey;
/**
*
* @type {object}
* @type {string}
* @memberof UpdateRuleDto
*/
'value'?: object;
'value': string;
}