@caronashow/api 0.4.1 → 0.5.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import type { GenFile, GenMessage } from "@bufbuild/protobuf/codegenv2";
|
|
2
|
+
import type { Message } from "@bufbuild/protobuf";
|
|
3
|
+
/**
|
|
4
|
+
* Describes the file caronashow/types/v1/test_type.proto.
|
|
5
|
+
*/
|
|
6
|
+
export declare const file_caronashow_types_v1_test_type: GenFile;
|
|
7
|
+
/**
|
|
8
|
+
* @generated from message caronashow.types.v1.TestType
|
|
9
|
+
*/
|
|
10
|
+
export type TestType = Message<"caronashow.types.v1.TestType"> & {
|
|
11
|
+
/**
|
|
12
|
+
* @generated from field: string id = 1;
|
|
13
|
+
*/
|
|
14
|
+
id: string;
|
|
15
|
+
/**
|
|
16
|
+
* @generated from field: string name = 2;
|
|
17
|
+
*/
|
|
18
|
+
name: string;
|
|
19
|
+
};
|
|
20
|
+
/**
|
|
21
|
+
* Describes the message caronashow.types.v1.TestType.
|
|
22
|
+
* Use `create(TestTypeSchema)` to create a new message.
|
|
23
|
+
*/
|
|
24
|
+
export declare const TestTypeSchema: GenMessage<TestType>;
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"module": "src/index.ts",
|
|
4
4
|
"main": "dist/index.cjs",
|
|
5
5
|
"types": "dist/index.d.ts",
|
|
6
|
-
"version": "0.4
|
|
6
|
+
"version": "0.5.4",
|
|
7
7
|
"description": "CaronaShow API definitions",
|
|
8
8
|
"author": "Lucas Santos <zerowhy.server@protonmail.com>",
|
|
9
9
|
"license": "MIT",
|
|
@@ -26,5 +26,9 @@
|
|
|
26
26
|
],
|
|
27
27
|
"dependencies": {
|
|
28
28
|
"@bufbuild/protobuf": "^2.11.0"
|
|
29
|
+
},
|
|
30
|
+
"repository": {
|
|
31
|
+
"type": "git",
|
|
32
|
+
"url": "https://gitlab.com/caronashow/api.git"
|
|
29
33
|
}
|
|
30
34
|
}
|