addedInput schema / properties / created_at_from
Added value: +{
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "ISO-8601 lower creation bound.",
+ "title": "Created At From"
+}
addedInput schema / properties / created_at_to
Added value: +{
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "ISO-8601 upper creation bound.",
+ "title": "Created At To"
+}
addedInput schema / properties / offset
Added value: +{
+ "default": 0,
+ "description": "Pagination offset.",
+ "minimum": 0,
+ "title": "Offset",
+ "type": "integer"
+}
addedInput schema / properties / ordering
Added value: +{
+ "anyOf": [
+ {
+ "enum": [
+ "created_at",
+ "-created_at"
+ ],
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Order by creation time.",
+ "title": "Ordering"
+}
changedInput schema / properties / pay_way / anyOf
Previous value: -[
- {
- "type": "string"
- },
- {
- "type": "null"
- }
-]New value: +[
+ {
+ "enum": [
+ "WechatPay",
+ "AliPay",
+ "Stripe",
+ "Card",
+ "X402",
+ "PayPal",
+ "AppleIAP",
+ "Reward",
+ "BankTransfer"
+ ],
+ "type": "string"
+ },
+ {
+ "items": {
+ "enum": [
+ "WechatPay",
+ "AliPay",
+ "Stripe",
+ "Card",
+ "X402",
+ "PayPal",
+ "AppleIAP",
+ "Reward",
+ "BankTransfer"
+ ],
+ "type": "string"
+ },
+ "type": "array"
+ },
+ {
+ "type": "null"
+ }
+]
changedInput schema / properties / pay_way / description
Previous value: -"Filter by pay_way: WechatPay/AliPay/Stripe/X402/PayPal/Reward."New value: +"Filter by one or more payment methods."
changedInput schema / properties / state / anyOf
Previous value: -[
- {
- "type": "string"
- },
- {
- "type": "null"
- }
-]New value: +[
+ {
+ "enum": [
+ "Pending",
+ "Paid",
+ "Finished",
+ "Expired",
+ "Failed",
+ "Refunded"
+ ],
+ "type": "string"
+ },
+ {
+ "items": {
+ "enum": [
+ "Pending",
+ "Paid",
+ "Finished",
+ "Expired",
+ "Failed",
+ "Refunded"
+ ],
+ "type": "string"
+ },
+ "type": "array"
+ },
+ {
+ "type": "null"
+ }
+]
changedInput schema / properties / state / description
Previous value: -"Filter by state: Pending/Paid/Finished/Expired/Failed/Refunded."New value: +"Filter by one or more states."