Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Generated protobuff ts files are not synced with the proto file #87

Open
codehz opened this issue Aug 2, 2024 · 0 comments
Open

Generated protobuff ts files are not synced with the proto file #87

codehz opened this issue Aug 2, 2024 · 0 comments

Comments

@codehz
Copy link
Contributor

codehz commented Aug 2, 2024

enum MutationType {
// The mutation type is unspecified or unknown.
M_UNSPECIFIED = 0;
// Set the value.
M_SET = 1;
// Delete the value.
M_DELETE = 2;
// Sum the stored value with the new value. Both values must be LE64 encoded.
M_SUM = 3;
// Min the stored value with the new value. Both values must be LE64 encoded.
M_MAX = 4;
// Max the stored value with the new value. Both values must be LE64 encoded.
M_MIN = 5;
// Set the value, with the versionstamp appended to the end of the key as a string.
M_SET_SUFFIX_VERSIONSTAMPED_KEY = 9;
}

// @ts-nocheck
export declare namespace $.com.deno.kv.datapath {
export type MutationType =
| "M_UNSPECIFIED"
| "M_SET"
| "M_DELETE"
| "M_SUM"
| "M_MAX"
| "M_MIN";
}

the newly added value 'M_SET_SUFFIX_VERSIONSTAMPED_KEY' are not included in generated ts file

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

No branches or pull requests

1 participant