@onereach/types-contacts-api 5.30.1 → 5.31.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.
@@ -294,6 +294,9 @@ export interface CreateSchemaPresetDto {
294
294
  export interface PresetSearchParamsDto extends ReturnType<typeof IntersectionType<OrderParams, ListApiParams>> {
295
295
  ids?: string[];
296
296
  }
297
+ export interface SchemaPresetDeleteParamsDto {
298
+ softDelete?: boolean;
299
+ }
297
300
  export interface SchemaPresetListDto extends ListApiResponse {
298
301
  items: SchemaPresetResponseDto[];
299
302
  }
@@ -301,6 +304,7 @@ export interface SchemaPresetResponseDto extends CreateSchemaPresetDto {
301
304
  id: string;
302
305
  created_at: Date;
303
306
  updated_at: Date;
307
+ deleted_at: Date;
304
308
  }
305
309
  export interface UpdateSchemaPresetDto extends ReturnType<typeof PartialType<CreateSchemaPresetDto>> {
306
310
  }
@@ -294,6 +294,9 @@ export interface CreateSchemaPresetDto {
294
294
  export interface PresetSearchParamsDto extends ReturnType<typeof IntersectionType<OrderParams, ListApiParams>> {
295
295
  ids?: string[];
296
296
  }
297
+ export interface SchemaPresetDeleteParamsDto {
298
+ softDelete?: boolean;
299
+ }
297
300
  export interface SchemaPresetListDto extends ListApiResponse {
298
301
  items: SchemaPresetResponseDto[];
299
302
  }
@@ -301,6 +304,7 @@ export interface SchemaPresetResponseDto extends CreateSchemaPresetDto {
301
304
  id: string;
302
305
  created_at: Date;
303
306
  updated_at: Date;
307
+ deleted_at: Date;
304
308
  }
305
309
  export interface UpdateSchemaPresetDto extends ReturnType<typeof PartialType<CreateSchemaPresetDto>> {
306
310
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@onereach/types-contacts-api",
3
3
  "description": "Generated types for Contacts Api",
4
- "version": "5.30.1",
4
+ "version": "5.31.0",
5
5
  "author": "OneReach.ai",
6
6
  "main": "dist/cjs/index.js",
7
7
  "module": "dist/esm/index.js",
@@ -25,5 +25,5 @@
25
25
  "ts-morph": "17.0.1",
26
26
  "ts-node": "10.9.1"
27
27
  },
28
- "gitHead": "3669d24806adb2ad268be38f66727096bf86d1b3"
28
+ "gitHead": "05898ed9d23dd214239acffcba6fe8026ee6fb6c"
29
29
  }