Skip to content

Commit 19bd8c9

Browse files
authored
Release version 2025-10-29.clover (#1382)
1 parent fdde319 commit 19bd8c9

File tree

7 files changed

+1242
-119
lines changed

7 files changed

+1242
-119
lines changed

api/ZOOLANDER_SHA

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
a3ba0bdb2d83fe3421fc76a42d5af881fe4fb53b
1+
8b0cedaf1e1a6bf706ae4306fdda430d824ca39a

api/openapi-spec/spec3.v2.sdk.json

Lines changed: 56 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,15 @@
99
"url" : "https://stripe.com",
1010
"email" : "[email protected]"
1111
},
12-
"version" : "2025-09-30.clover",
12+
"version" : "2025-10-29.clover",
1313
"x-stripeSpecFilename" : "spec3.v2.cli"
1414
},
1515
"servers" : [ {
1616
"url" : "https://api.stripe.com/"
1717
} ],
1818
"security" : [ {
19-
"basicAuth" : [ ],
19+
"basicAuth" : [ ]
20+
}, {
2021
"bearerAuth" : [ ]
2122
} ],
2223
"paths" : {
@@ -569,6 +570,26 @@
569570
"description" : "List events, going back up to 30 days.",
570571
"operationId" : "GetV2CoreEvents",
571572
"parameters" : [ {
573+
"name" : "gt",
574+
"in" : "query",
575+
"description" : "Filter for events created after the specified timestamp.",
576+
"required" : false,
577+
"style" : "simple",
578+
"schema" : {
579+
"type" : "string",
580+
"format" : "date-time"
581+
}
582+
}, {
583+
"name" : "gte",
584+
"in" : "query",
585+
"description" : "Filter for events created at or after the specified timestamp.",
586+
"required" : false,
587+
"style" : "simple",
588+
"schema" : {
589+
"type" : "string",
590+
"format" : "date-time"
591+
}
592+
}, {
572593
"name" : "limit",
573594
"in" : "query",
574595
"description" : "The page size.",
@@ -577,11 +598,31 @@
577598
"schema" : {
578599
"type" : "integer"
579600
}
601+
}, {
602+
"name" : "lt",
603+
"in" : "query",
604+
"description" : "Filter for events created before the specified timestamp.",
605+
"required" : false,
606+
"style" : "simple",
607+
"schema" : {
608+
"type" : "string",
609+
"format" : "date-time"
610+
}
611+
}, {
612+
"name" : "lte",
613+
"in" : "query",
614+
"description" : "Filter for events created at or before the specified timestamp.",
615+
"required" : false,
616+
"style" : "simple",
617+
"schema" : {
618+
"type" : "string",
619+
"format" : "date-time"
620+
}
580621
}, {
581622
"name" : "object_id",
582623
"in" : "query",
583624
"description" : "Primary object ID used to retrieve related events.",
584-
"required" : true,
625+
"required" : false,
585626
"style" : "simple",
586627
"schema" : {
587628
"type" : "string"
@@ -595,6 +636,18 @@
595636
"schema" : {
596637
"type" : "string"
597638
}
639+
}, {
640+
"name" : "types",
641+
"in" : "query",
642+
"description" : "An array of up to 20 strings containing specific event names.",
643+
"required" : false,
644+
"style" : "deepObject",
645+
"schema" : {
646+
"type" : "array",
647+
"items" : {
648+
"type" : "string"
649+
}
650+
}
598651
} ],
599652
"responses" : {
600653
"200" : {

0 commit comments

Comments
 (0)