tachyon-protocol 1.18.1 → 1.18.2

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.
package/dist/index.cjs CHANGED
@@ -24,7 +24,7 @@ __export(dist_exports, {
24
24
  });
25
25
  module.exports = __toCommonJS(dist_exports);
26
26
  var tachyonMeta = {
27
- "version": "1.18.1",
27
+ "version": "1.18.2",
28
28
  "schema": {
29
29
  "actors": {
30
30
  "server": {
package/dist/index.d.cts CHANGED
@@ -1,7 +1,7 @@
1
1
  import { TachyonCommand } from './types.cjs';
2
2
 
3
3
  declare const tachyonMeta: {
4
- readonly version: "1.18.1";
4
+ readonly version: "1.18.2";
5
5
  readonly schema: {
6
6
  readonly actors: {
7
7
  readonly server: {
package/dist/index.d.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  import { TachyonCommand } from './types.js';
2
2
 
3
3
  declare const tachyonMeta: {
4
- readonly version: "1.18.1";
4
+ readonly version: "1.18.2";
5
5
  readonly schema: {
6
6
  readonly actors: {
7
7
  readonly server: {
package/dist/index.js CHANGED
@@ -1,6 +1,6 @@
1
1
  // dist/index.ts
2
2
  var tachyonMeta = {
3
- "version": "1.18.1",
3
+ "version": "1.18.2",
4
4
  "schema": {
5
5
  "actors": {
6
6
  "server": {
package/dist/types.d.cts CHANGED
@@ -50,14 +50,18 @@ type ClanUpdatedEventData = ClanUpdateableBaseData & {
50
50
  description?: string;
51
51
  };
52
52
  type ClanViewResponse = ClanViewOkResponse | ClanViewFailResponse;
53
- type ClanViewOkResponseData = ClanId & ClanUpdateableData & {
53
+ type ClanViewOkResponseData = {
54
+ clanId: ClanId;
55
+ } & ClanUpdateableData & {
54
56
  members: ClanMember[];
55
57
  };
56
58
  type ClanUpdateableData = ClanUpdateableBaseData & {
57
59
  description?: string;
58
60
  };
59
61
  type ClanViewListResponse = ClanViewListOkResponse | ClanViewListFailResponse;
60
- type ClanBaseData = ClanId & ClanUpdateableBaseData;
62
+ type ClanBaseData = {
63
+ clanId: ClanId;
64
+ } & ClanUpdateableBaseData;
61
65
  type FriendAcceptRequestResponse = FriendAcceptRequestOkResponse | FriendAcceptRequestFailResponse;
62
66
  type FriendCancelRequestResponse = FriendCancelRequestOkResponse | FriendCancelRequestFailResponse;
63
67
  type FriendListResponse = FriendListOkResponse | FriendListFailResponse;
package/dist/types.d.ts CHANGED
@@ -50,14 +50,18 @@ type ClanUpdatedEventData = ClanUpdateableBaseData & {
50
50
  description?: string;
51
51
  };
52
52
  type ClanViewResponse = ClanViewOkResponse | ClanViewFailResponse;
53
- type ClanViewOkResponseData = ClanId & ClanUpdateableData & {
53
+ type ClanViewOkResponseData = {
54
+ clanId: ClanId;
55
+ } & ClanUpdateableData & {
54
56
  members: ClanMember[];
55
57
  };
56
58
  type ClanUpdateableData = ClanUpdateableBaseData & {
57
59
  description?: string;
58
60
  };
59
61
  type ClanViewListResponse = ClanViewListOkResponse | ClanViewListFailResponse;
60
- type ClanBaseData = ClanId & ClanUpdateableBaseData;
62
+ type ClanBaseData = {
63
+ clanId: ClanId;
64
+ } & ClanUpdateableBaseData;
61
65
  type FriendAcceptRequestResponse = FriendAcceptRequestOkResponse | FriendAcceptRequestFailResponse;
62
66
  type FriendCancelRequestResponse = FriendCancelRequestOkResponse | FriendCancelRequestFailResponse;
63
67
  type FriendListResponse = FriendListOkResponse | FriendListFailResponse;