@giosg/pub-sdk
Advanced tools
Comparing version 0.5.2 to 0.5.3
@@ -7,2 +7,6 @@ # Changelog | ||
## 0.5.3 | ||
- Rename `PubMessageBodyV1` and `PubMessageBodyV2` interfaces. | ||
## 0.5.2 | ||
@@ -9,0 +13,0 @@ |
@@ -106,3 +106,3 @@ import { UserUid, OrganizationUid } from "@giosg/types"; | ||
export declare type Chunk = TextChunk; | ||
export interface PubMessageBodyv1 { | ||
export interface PubMessageBodyV1 { | ||
/** Version of the message, use latest whenever possible */ | ||
@@ -113,3 +113,3 @@ version: 1; | ||
} | ||
export interface PubMessageBodyv2 { | ||
export interface PubMessageBodyV2 { | ||
/** Version of the message, use latest whenever possible */ | ||
@@ -120,3 +120,3 @@ version: 2; | ||
} | ||
export declare type PubMessageBody = PubMessageBodyv1 | PubMessageBodyv2; | ||
export declare type PubMessageBody = PubMessageBodyV1 | PubMessageBodyV2; | ||
export interface NotificationSettingsPayload { | ||
@@ -123,0 +123,0 @@ /** Notification mode to be applied */ |
@@ -1,3 +0,3 @@ | ||
export { PubChannel, PubChannelMember, PubMessage, DMChannelPayload, PubChannelUid, PubChannelMemberUid, PubMessageUid, NotificationSettings, NotificationSettingsPayload, PubMessageBody, PubMessagePayload, ChannelPayload, TextChunk, Chunk, PubMessageBodyv1, PubMessageBodyv2 } from "./groupchats"; | ||
export { PubChannel, PubChannelMember, PubMessage, DMChannelPayload, PubChannelUid, PubChannelMemberUid, PubMessageUid, NotificationSettings, NotificationSettingsPayload, PubMessageBody, PubMessagePayload, ChannelPayload, TextChunk, Chunk, PubMessageBodyV1, PubMessageBodyV2 } from "./groupchats"; | ||
export { BasePubSdk } from "./sdk"; | ||
//# sourceMappingURL=index.d.ts.map |
{ | ||
"name": "@giosg/pub-sdk", | ||
"version": "0.5.2", | ||
"version": "0.5.3", | ||
"description": "TypeScript interfaces for Giosg Pub", | ||
@@ -5,0 +5,0 @@ "main": "lib/index.js", |
@@ -21,2 +21,6 @@ # Giosg Pub SDK and interfaces | ||
8. Create a new tag on the latest commit on master branch `git tag vX.Y.Z` `X.Y.Z` being the published version. | ||
9. Push the tag to remote `git push --tags`. | ||
9. Push the tag to remote `git push --tags`. | ||
## TODO: | ||
- add lint | ||
- add grammarchek |
20188
25