-
Notifications
You must be signed in to change notification settings - Fork 96
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: update ts definition generator
- Loading branch information
Showing
39 changed files
with
2,065 additions
and
12,002 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 was deleted.
Oops, something went wrong.
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,25 @@ | ||
// @generated by protoc-gen-es v1.3.0 | ||
// @generated from file api/v2/common.proto (package slash.api.v2, syntax proto3) | ||
/* eslint-disable */ | ||
// @ts-nocheck | ||
|
||
/** | ||
* @generated from enum slash.api.v2.RowStatus | ||
*/ | ||
export declare enum RowStatus { | ||
/** | ||
* @generated from enum value: ROW_STATUS_UNSPECIFIED = 0; | ||
*/ | ||
ROW_STATUS_UNSPECIFIED = 0, | ||
|
||
/** | ||
* @generated from enum value: NORMAL = 1; | ||
*/ | ||
NORMAL = 1, | ||
|
||
/** | ||
* @generated from enum value: ARCHIVED = 2; | ||
*/ | ||
ARCHIVED = 2, | ||
} | ||
|
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,19 @@ | ||
// @generated by protoc-gen-es v1.3.0 | ||
// @generated from file api/v2/common.proto (package slash.api.v2, syntax proto3) | ||
/* eslint-disable */ | ||
// @ts-nocheck | ||
|
||
import { proto3 } from "@bufbuild/protobuf"; | ||
|
||
/** | ||
* @generated from enum slash.api.v2.RowStatus | ||
*/ | ||
export const RowStatus = proto3.makeEnum( | ||
"slash.api.v2.RowStatus", | ||
[ | ||
{no: 0, name: "ROW_STATUS_UNSPECIFIED"}, | ||
{no: 1, name: "NORMAL"}, | ||
{no: 2, name: "ARCHIVED"}, | ||
], | ||
); | ||
|
Oops, something went wrong.