You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(types): revert to use SDK v3 method names in type references
Reverted from using old OpenAPI operation names back to new SDK v3
method names for TypeScript type references:
- getOrganizations → listOrganizations
- getOrgRepoList → listRepositories
- createOrgRepo → createRepository
- deleteOrgRepo → deleteRepository
- updateOrgRepo → updateRepository
- getOrgRepo → getRepository
- getOrgFullScanList → listFullScans
- getOrgFullScan → getFullScan
- deleteOrgFullScan → deleteFullScan
- getOrgFullScanMetadata → getFullScanMetadata
- createOrgFullScan → createFullScan (in FileValidationCallback)
These now work correctly with SDK v3.1.2 which added type aliases
mapping the new method names to the underlying operation names.
Updated pnpm-workspace.yaml to use SDK v3.1.2 (pending npm publish).
0 commit comments