ncloudchat 1.0.65 → 1.0.67
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/ncloudchat.d.ts +3 -3
- package/dist/ncloudchat.min.js +1 -1
- package/esm/CloudChat.js +9 -3
- package/esm/CloudChat.js.map +1 -1
- package/esm/Type.d.ts +4 -3
- package/esm/Type.js.map +1 -1
- package/esm/graphql/channel.js +3 -3
- package/esm/graphql/channel.js.map +1 -1
- package/esm/mutations/channel.js +1 -0
- package/esm/mutations/channel.js.map +1 -1
- package/ncloudchat.min.js +1 -1
- package/package.json +1 -1
- package/verify_timerange.cjs +0 -105
package/dist/ncloudchat.d.ts
CHANGED
|
@@ -701,9 +701,9 @@ declare module 'ncloudchat/Type' {
|
|
|
701
701
|
*/
|
|
702
702
|
export interface PinInput {
|
|
703
703
|
pinned: boolean;
|
|
704
|
-
messageId
|
|
705
|
-
pinnedAt
|
|
706
|
-
expiredAt
|
|
704
|
+
messageId?: string;
|
|
705
|
+
pinnedAt?: string;
|
|
706
|
+
expiredAt?: string;
|
|
707
707
|
}
|
|
708
708
|
|
|
709
709
|
}
|