File tree Expand file tree Collapse file tree 5 files changed +25
-2
lines changed
Expand file tree Collapse file tree 5 files changed +25
-2
lines changed Original file line number Diff line number Diff line change 1+ ---
2+ " @json-types/compose " : minor
3+ ---
4+
5+ Update schema
Original file line number Diff line number Diff line change @@ -22,5 +22,5 @@ import schema from "@json-types/compose/schema.json";
2222
2323TypeScript types generated automatically every night and published when there are changes.
2424
25- - Last change: 2024-04-23T01:16:31.183Z
25+ - Last change: 2024-05-16T01:19:02.181Z
2626- Source URL: https://raw.githubusercontent.com/compose-spec/compose-spec/master/schema/compose-spec.json
Original file line number Diff line number Diff line change @@ -469,6 +469,13 @@ export interface DefinitionsService {
469469 ipv6_address ?: string ;
470470 link_local_ips ?: ListOfStrings ;
471471 mac_address ?: string ;
472+ driver_opts ?: {
473+ /**
474+ * This interface was referenced by `undefined`'s JSON-Schema definition
475+ * via the `patternProperty` "^.+$".
476+ */
477+ [ k : string ] : string | number ;
478+ } ;
472479 priority ?: number ;
473480 } | null ;
474481 } ;
Original file line number Diff line number Diff line change 1414 " compose-spec"
1515 ],
1616 "x-json-types" : {
17- "lastChangeDate" : " 2024-04-23T01:16:31.183Z "
17+ "lastChangeDate" : " 2024-05-16T01:19:02.181Z "
1818 },
1919 "homepage" : " https://github.com/swordev/json-types/tree/main/packages/compose" ,
2020 "bugs" : {
Original file line number Diff line number Diff line change 551551 "mac_address" : {
552552 "type" : " string"
553553 },
554+ "driver_opts" : {
555+ "type" : " object" ,
556+ "patternProperties" : {
557+ "^.+$" : {
558+ "type" : [
559+ " string" ,
560+ " number"
561+ ]
562+ }
563+ }
564+ },
554565 "priority" : {
555566 "type" : " number"
556567 }
You can’t perform that action at this time.
0 commit comments