@periskope/types 0.6.135 → 0.6.136

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/types.d.ts CHANGED
@@ -402,4 +402,12 @@ export type PollSendType = {
402
402
  export type PollResultType = {
403
403
  [name: string]: Record<string, string>;
404
404
  };
405
+ export type CreateGroupOptions = {
406
+ messagesAdminsOnly?: boolean;
407
+ infoAdminsOnly?: boolean;
408
+ memberAddMode?: boolean;
409
+ image?: string;
410
+ name?: string;
411
+ description?: string;
412
+ };
405
413
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@periskope/types",
3
- "version": "0.6.135",
3
+ "version": "0.6.136",
4
4
  "private": false,
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/types.ts CHANGED
@@ -559,3 +559,14 @@ export type PollSendType = {
559
559
  export type PollResultType = {
560
560
  [name: string]: Record<string, string>;
561
561
  };
562
+
563
+ /* -------------------------- CREATE GROUP OPTIONS -------------------------- */
564
+
565
+ export type CreateGroupOptions = {
566
+ messagesAdminsOnly?: boolean;
567
+ infoAdminsOnly?: boolean;
568
+ memberAddMode?: boolean;
569
+ image?: string;
570
+ name?: string;
571
+ description?: string;
572
+ };