|
47 | 47 | <xsd:element name="webhook" type="webhook" minOccurs="0" maxOccurs="1" />
|
48 | 48 | <xsd:element name="remote-event" type="remote-event" minOccurs="0" maxOccurs="1" />
|
49 | 49 | <xsd:element name="json-streamer" type="json-streamer" minOccurs="0" maxOccurs="1" />
|
| 50 | + <xsd:element name="secrets" type="secrets" minOccurs="0" maxOccurs="1" /> |
50 | 51 | </xsd:choice>
|
51 | 52 |
|
52 | 53 | <xsd:attribute name="http-method-override" type="xsd:boolean" />
|
|
62 | 63 | <xsd:attribute name="trusted-hosts" type="xsd:string" />
|
63 | 64 | <xsd:attribute name="trusted-proxies" type="xsd:string" />
|
64 | 65 | <xsd:attribute name="trusted-headers" type="xsd:string" />
|
| 66 | + <xsd:attribute name="disallow-search-engine-index" type="xsd:boolean" /> |
65 | 67 | </xsd:complexType>
|
66 | 68 |
|
67 | 69 | <xsd:complexType name="form">
|
|
724 | 726 | <xsd:choice maxOccurs="unbounded">
|
725 | 727 | <xsd:element name="resolve" type="http_resolve" minOccurs="0" maxOccurs="unbounded" />
|
726 | 728 | <xsd:element name="header" type="http_header" minOccurs="0" maxOccurs="unbounded" />
|
| 729 | + <xsd:element name="var" type="http_var" minOccurs="0" maxOccurs="unbounded" /> |
727 | 730 | <xsd:element name="peer-fingerprint" type="fingerprint" minOccurs="0" maxOccurs="unbounded" />
|
728 | 731 | <xsd:element name="retry-failed" type="http_client_retry_failed" minOccurs="0" maxOccurs="1" />
|
729 | 732 | <xsd:element name="extra" type="xsd:anyType" minOccurs="0" maxOccurs="unbounded" />
|
|
818 | 821 | <xsd:attribute name="name" type="xsd:string" />
|
819 | 822 | </xsd:complexType>
|
820 | 823 |
|
| 824 | + <xsd:complexType name="http_var" mixed="true"> |
| 825 | + <xsd:attribute name="name" type="xsd:string" /> |
| 826 | + </xsd:complexType> |
| 827 | + |
821 | 828 | <xsd:complexType name="mailer">
|
822 | 829 | <xsd:sequence>
|
823 | 830 | <xsd:element name="transport" type="mailer_transport" minOccurs="0" maxOccurs="unbounded" />
|
|
875 | 882 | <xsd:complexType name="http_cache">
|
876 | 883 | <xsd:sequence>
|
877 | 884 | <xsd:element name="private-header" type="xsd:string" minOccurs="0" maxOccurs="unbounded" />
|
| 885 | + <xsd:element name="skip-response-header" type="xsd:string" minOccurs="0" maxOccurs="unbounded" /> |
878 | 886 | </xsd:sequence>
|
879 | 887 |
|
880 | 888 | <xsd:attribute name="enabled" type="xsd:boolean" />
|
|
1077 | 1085 | <xsd:attribute name="enabled" type="xsd:boolean" />
|
1078 | 1086 | </xsd:complexType>
|
1079 | 1087 |
|
| 1088 | + <xsd:complexType name="secrets"> |
| 1089 | + <xsd:attribute name="enabled" type="xsd:boolean" /> |
| 1090 | + <xsd:attribute name="vault-directory" type="xsd:string" /> |
| 1091 | + <xsd:attribute name="local-dotenv-file" type="xsd:string" /> |
| 1092 | + <xsd:attribute name="decryption-env-var" type="xsd:string" /> |
| 1093 | + </xsd:complexType> |
| 1094 | + |
1080 | 1095 | </xsd:schema>
|
0 commit comments