-
-
Notifications
You must be signed in to change notification settings - Fork 909
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into web/fix/wizard-navigation
* main: internal: fix go paginator not setting page correctly (#11253) core: bump google-api-python-client from 2.143.0 to 2.144.0 (#11241) core: bump twilio from 9.2.4 to 9.3.0 (#11242) core: bump github.com/prometheus/client_golang from 1.20.2 to 1.20.3 (#11243) core: bump ruff from 0.6.3 to 0.6.4 (#11244) core: bump pydantic from 2.8.2 to 2.9.0 (#11245) core: bump msgraph-sdk from 1.5.4 to 1.6.0 (#11246) web: bump the rollup group across 2 directories with 1 update (#11248) core: fix missing argument name escaping for property mapping (#11231)
- Loading branch information
Showing
14 changed files
with
228 additions
and
150 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
package ak | ||
|
||
// func Test_PaginatorCompile(t *testing.T) { | ||
// req := api.ApiCoreUsersListRequest{} | ||
// Paginator(req, PaginatorOptions{ | ||
// PageSize: 100, | ||
// }) | ||
// } | ||
|
||
// func Test_PaginatorCompileExplicit(t *testing.T) { | ||
// req := api.ApiCoreUsersListRequest{} | ||
// Paginator[ | ||
// api.User, | ||
// api.ApiCoreUsersListRequest, | ||
// *api.PaginatedUserList, | ||
// ](req, PaginatorOptions{ | ||
// PageSize: 100, | ||
// }) | ||
// } | ||
|
||
// func Test_PaginatorCompileOther(t *testing.T) { | ||
// req := api.ApiOutpostsProxyListRequest{} | ||
// Paginator(req, PaginatorOptions{ | ||
// PageSize: 100, | ||
// }) | ||
// } |
Oops, something went wrong.