File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -128,8 +128,8 @@ client.getList<Content>({ //other })
128
128
* id: string;
129
129
* createdAt: string;
130
130
* updatedAt: string;
131
- * publishedAt: string;
132
- * revisedAt: string;
131
+ * publishedAt? : string;
132
+ * revisedAt? : string;
133
133
* text: string; // This is Content type.
134
134
* }
135
135
*/
@@ -140,8 +140,8 @@ client.getListDetail<Content>({ //other })
140
140
* {
141
141
* createdAt: string;
142
142
* updatedAt: string;
143
- * publishedAt: string;
144
- * revisedAt: string;
143
+ * publishedAt? : string;
144
+ * revisedAt? : string;
145
145
* text: string; // This is Content type.
146
146
* }
147
147
*/
Original file line number Diff line number Diff line change @@ -39,8 +39,8 @@ export interface MicroCMSContentId {
39
39
export interface MicroCMSDate {
40
40
createdAt : string ;
41
41
updatedAt : string ;
42
- publishedAt : string ;
43
- revisedAt : string ;
42
+ publishedAt ? : string ;
43
+ revisedAt ? : string ;
44
44
}
45
45
46
46
/**
You can’t perform that action at this time.
0 commit comments