Skip to content

Commit 4c3b87b

Browse files
committed
fix: updated schema
1 parent b81a418 commit 4c3b87b

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
lines changed

lib/index.d.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -293,6 +293,10 @@ export interface AddOnAttachment {
293293
* URL for logging into web interface of add-on in attached app context
294294
*/
295295
web_url?: null | string
296+
/**
297+
* URL for add-on partners to write to an add-on's logs
298+
*/
299+
log_input_url?: null | string
296300
[k: string]: any
297301
}
298302
/**

schema.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -703,6 +703,15 @@
703703
"null",
704704
"string"
705705
]
706+
},
707+
"log_input_url": {
708+
"description": "URL for add-on partners to write to an add-on's logs",
709+
"example": "https://token:[email protected]/logs",
710+
"type": [
711+
"null",
712+
"string"
713+
],
714+
"readOnly": true
706715
}
707716
},
708717
"links": [
@@ -917,6 +926,9 @@
917926
},
918927
"web_url": {
919928
"$ref": "#/definitions/add-on-attachment/definitions/web_url"
929+
},
930+
"log_input_url": {
931+
"$ref": "#/definitions/add-on-attachment/definitions/log_input_url"
920932
}
921933
}
922934
},

0 commit comments

Comments
 (0)