File tree 7 files changed +19
-2
lines changed
7 files changed +19
-2
lines changed Original file line number Diff line number Diff line change @@ -2762,6 +2762,10 @@ const docTemplate = `{
2762
2762
"updatedAt": {
2763
2763
"type": "string"
2764
2764
},
2765
+ "url": {
2766
+ "description": "URL field is not exposed to the client",
2767
+ "type": "string"
2768
+ },
2765
2769
"userId": {
2766
2770
"type": "string"
2767
2771
}
Original file line number Diff line number Diff line change 2755
2755
"updatedAt" : {
2756
2756
"type" : " string"
2757
2757
},
2758
+ "url" : {
2759
+ "description" : " URL field is not exposed to the client" ,
2760
+ "type" : " string"
2761
+ },
2758
2762
"userId" : {
2759
2763
"type" : " string"
2760
2764
}
Original file line number Diff line number Diff line change @@ -539,6 +539,9 @@ definitions:
539
539
type : string
540
540
updatedAt :
541
541
type : string
542
+ url :
543
+ description : URL field is not exposed to the client
544
+ type : string
542
545
userId :
543
546
type : string
544
547
type : object
Original file line number Diff line number Diff line change 55
55
56
56
Name string `json:"name"`
57
57
IsActive bool `json:"isActive"`
58
- URL string `json:"-"` // URL field is not exposed to the client
58
+ URL string `json:"url"`
59
59
}
60
60
)
61
61
Original file line number Diff line number Diff line change 2755
2755
"updatedAt" : {
2756
2756
"type" : " string"
2757
2757
},
2758
+ "url" : {
2759
+ "description" : " URL field is not exposed to the client" ,
2760
+ "type" : " string"
2761
+ },
2758
2762
"userId" : {
2759
2763
"type" : " string"
2760
2764
}
Original file line number Diff line number Diff line change @@ -323,6 +323,8 @@ export interface NotifierOut {
323
323
isActive : boolean ;
324
324
name : string ;
325
325
updatedAt : Date | string ;
326
+ /** URL field is not exposed to the client */
327
+ url : string ;
326
328
userId : string ;
327
329
}
328
330
Original file line number Diff line number Diff line change 208
208
targetID .value = v .id ;
209
209
notifier .value = {
210
210
name: v .name ,
211
- url: " " ,
211
+ url: v . url ,
212
212
isActive: v .isActive ,
213
213
};
214
214
} else {
You can’t perform that action at this time.
0 commit comments