@togatherlabs/event-sdk 1.0.4 → 1.0.6

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,43 @@
1
+ // @generated by protoc-gen-es v2.9.0 with parameter "target=js+dts,import_extension=none"
2
+ // @generated from file partner/create/v1/parter.proto (package partner.create.v1, syntax proto3)
3
+ /* eslint-disable */
4
+
5
+ import type { GenFile, GenMessage } from "@bufbuild/protobuf/codegenv2";
6
+ import type { Message } from "@bufbuild/protobuf";
7
+
8
+ /**
9
+ * Describes the file partner/create/v1/parter.proto.
10
+ */
11
+ export declare const file_partner_create_v1_parter: GenFile;
12
+
13
+ /**
14
+ * @generated from message partner.create.v1.ParterCreated
15
+ */
16
+ export declare type ParterCreated = Message<"partner.create.v1.ParterCreated"> & {
17
+ /**
18
+ * @generated from field: string id = 1;
19
+ */
20
+ id: string;
21
+
22
+ /**
23
+ * @generated from field: string orgname = 4;
24
+ */
25
+ orgname: string;
26
+
27
+ /**
28
+ * @generated from field: string email = 2;
29
+ */
30
+ email: string;
31
+
32
+ /**
33
+ * @generated from field: int64 created_at = 3;
34
+ */
35
+ createdAt: bigint;
36
+ };
37
+
38
+ /**
39
+ * Describes the message partner.create.v1.ParterCreated.
40
+ * Use `create(ParterCreatedSchema)` to create a new message.
41
+ */
42
+ export declare const ParterCreatedSchema: GenMessage<ParterCreated>;
43
+
@@ -0,0 +1,19 @@
1
+ // @generated by protoc-gen-es v2.9.0 with parameter "target=js+dts,import_extension=none"
2
+ // @generated from file partner/create/v1/parter.proto (package partner.create.v1, syntax proto3)
3
+ /* eslint-disable */
4
+
5
+ import { fileDesc, messageDesc } from "@bufbuild/protobuf/codegenv2";
6
+
7
+ /**
8
+ * Describes the file partner/create/v1/parter.proto.
9
+ */
10
+ export const file_partner_create_v1_parter = /*@__PURE__*/
11
+ fileDesc("Ch5wYXJ0bmVyL2NyZWF0ZS92MS9wYXJ0ZXIucHJvdG8SEXBhcnRuZXIuY3JlYXRlLnYxIk8KDVBhcnRlckNyZWF0ZWQSCgoCaWQYASABKAkSDwoHb3JnbmFtZRgEIAEoCRINCgVlbWFpbBgCIAEoCRISCgpjcmVhdGVkX2F0GAMgASgDQooBChVjb20ucGFydG5lci5jcmVhdGUudjFCC1BhcnRlclByb3RvUAGiAgNQQ1iqAhFQYXJ0bmVyLkNyZWF0ZS5WMcoCEVBhcnRuZXJcQ3JlYXRlXFYx4gIdUGFydG5lclxDcmVhdGVcVjFcR1BCTWV0YWRhdGHqAhNQYXJ0bmVyOjpDcmVhdGU6OlYxYgZwcm90bzM");
12
+
13
+ /**
14
+ * Describes the message partner.create.v1.ParterCreated.
15
+ * Use `create(ParterCreatedSchema)` to create a new message.
16
+ */
17
+ export const ParterCreatedSchema = /*@__PURE__*/
18
+ messageDesc(file_partner_create_v1_parter, 0);
19
+
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@togatherlabs/event-sdk",
3
- "version": "1.0.4",
3
+ "version": "1.0.6",
4
4
  "description": "Shared Protobuf event schemas and generated code for toGather microservices",
5
5
  "main": "./gen/ts/index.js",
6
6
  "types": "./gen/ts/index.d.ts",
@@ -37,6 +37,7 @@
37
37
  "buf:lint": "buf lint",
38
38
  "buf:generate": "buf generate",
39
39
  "package:patch": "pnpm version patch",
40
- "package:publish": "pnpm publish --access public"
40
+ "package:publish": "pnpm publish --access public",
41
+ "release": "rm -rf gen && pnpm buf:lint && pnpm buf:generate && git add . && pnpm commit && pnpm package:patch && git push --follow-tags && pnpm package:publish"
41
42
  }
42
43
  }