We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 79ab847 commit cc663abCopy full SHA for cc663ab
1 file changed
src/models/Sticky.ts
@@ -19,7 +19,18 @@ export interface Sticky extends BaseModel {
19
20
export type CreateSticky = Omit<
21
Sticky,
22
- "id" | "created_at" | "updated_at" | "deleted_at" | "created_by" | "updated_by" | "workspace" | "owner" | "sort_order"
+ | "id"
23
+ | "created_at"
24
+ | "updated_at"
25
+ | "deleted_at"
26
+ | "created_by"
27
+ | "updated_by"
28
+ | "workspace"
29
+ | "owner"
30
+ | "sort_order"
31
+ | "description_binary"
32
+ | "description_stripped"
33
+ | "description"
34
>;
35
36
export type UpdateSticky = Partial<CreateSticky>;
0 commit comments