Skip to content

Conversation

bevzzz
Copy link
Collaborator

@bevzzz bevzzz commented Aug 25, 2025

Blocked by Stacked atop #445

This API adds support for Alias APIs to client6.

client.alias.create("Pizza", "PizzaAlias");
client.alias.create("Soup", "HealthyStuff");

client.alias.list();
// Returns: [Alias[Pizza, PizzaAlias], Alias[Soup, HealthyStuff]]

client.alias.list(l -> l.collection("Pizza"));
// Returns: [Alias[Pizza, PizzaAlias]]

client.alias.update("HealthyStuff", "Salad");
client.alias.get("HealthyStuff");
// Returns: [Alias[Salad, HealthyStuff]]

client.alias.delete("PizzaAlias");
client.alias.delete("HealthyStuff");

Copy link

@orca-security-eu orca-security-eu bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Orca Security Scan Summary

Status Check Issues by priority
Passed Passed Secrets high 0   medium 0   low 0   info 0 View in Orca

@bevzzz bevzzz merged commit e5b9516 into v6 Aug 27, 2025
2 checks passed
@bevzzz bevzzz deleted the v6-alias branch August 27, 2025 16:50
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants