|
114 | 114 | <xsd:attribute name="cookie-domain" type="xsd:string" />
|
115 | 115 | <xsd:attribute name="cookie-secure" type="cookie_secure" />
|
116 | 116 | <xsd:attribute name="cookie-httponly" type="xsd:boolean" />
|
| 117 | + <xsd:attribute name="cookie-samesite" type="cookie_samesite" /> |
117 | 118 | <xsd:attribute name="use-cookies" type="xsd:boolean" />
|
118 | 119 | <xsd:attribute name="cache-limiter" type="xsd:string" />
|
119 | 120 | <xsd:attribute name="gc-maxlifetime" type="xsd:string" />
|
120 | 121 | <xsd:attribute name="gc-divisor" type="xsd:string" />
|
121 | 122 | <xsd:attribute name="gc-probability" type="xsd:string" />
|
122 |
| - <xsd:attribute name="use-strict-mode" type="xsd:boolean" /> |
123 | 123 | <xsd:attribute name="save-path" type="xsd:string" />
|
| 124 | + <xsd:attribute name="metadata-update-threshold" type="xsd:nonNegativeInteger" /> |
| 125 | + <xsd:attribute name="sid-length" type="sid_length" /> |
| 126 | + <xsd:attribute name="sid-bits-per-character" type="sid_bits_per_character" /> |
124 | 127 | </xsd:complexType>
|
125 | 128 |
|
126 | 129 | <xsd:complexType name="request">
|
|
352 | 355 | </xsd:restriction>
|
353 | 356 | </xsd:simpleType>
|
354 | 357 |
|
| 358 | + <xsd:simpleType name="cookie_samesite"> |
| 359 | + <xsd:restriction base="xsd:string"> |
| 360 | + <xsd:enumeration value="" /> |
| 361 | + <xsd:enumeration value="lax" /> |
| 362 | + <xsd:enumeration value="strict" /> |
| 363 | + </xsd:restriction> |
| 364 | + </xsd:simpleType> |
| 365 | + |
| 366 | + <xsd:simpleType name="sid_bits_per_character"> |
| 367 | + <xsd:restriction base="xsd:positiveInteger"> |
| 368 | + <xsd:enumeration value="4" /> |
| 369 | + <xsd:enumeration value="5" /> |
| 370 | + <xsd:enumeration value="6" /> |
| 371 | + </xsd:restriction> |
| 372 | + </xsd:simpleType> |
| 373 | + |
| 374 | + <xsd:simpleType name="sid_length"> |
| 375 | + <xsd:restriction base="xsd:positiveInteger"> |
| 376 | + <xsd:minInclusive value="22" /> |
| 377 | + <xsd:maxExclusive value="256" /> |
| 378 | + </xsd:restriction> |
| 379 | + </xsd:simpleType> |
| 380 | + |
355 | 381 | <xsd:simpleType name="workflow_type">
|
356 | 382 | <xsd:restriction base="xsd:string">
|
357 | 383 | <xsd:enumeration value="state_machine" />
|
|
0 commit comments