@jealous-robot-dev/shared-types-responses 1.28.12 → 1.28.16

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.
@@ -233,6 +233,7 @@ export interface EventInManager {
233
233
  suspended: boolean;
234
234
  weekly: boolean;
235
235
  booked_seances: number;
236
+ can_be_deleted: boolean;
236
237
  }
237
238
  export interface EventManagerData {
238
239
  events: EventInManager[];
@@ -13,6 +13,20 @@ export interface GuestBookingCancellationData {
13
13
  pic: string;
14
14
  sid: string;
15
15
  }
16
+ export interface GuestBookingCancellationPhrases {
17
+ password: {
18
+ label: string;
19
+ warnings: {
20
+ enter: string;
21
+ invalid: string;
22
+ };
23
+ };
24
+ title: string;
25
+ submit: string;
26
+ description: string;
27
+ refunded_amount: string;
28
+ remind_on_policy: string;
29
+ }
16
30
  export interface HostBookingCancellationData {
17
31
  event: {
18
32
  sid: string;
@@ -20,6 +20,7 @@ export interface UserInSearch {
20
20
  raiting?: number;
21
21
  review_count?: number;
22
22
  languages_spoken: string[];
23
+ has_gold_badge: boolean;
23
24
  joined_in: string;
24
25
  ppu: string;
25
26
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jealous-robot-dev/shared-types-responses",
3
- "version": "1.28.12",
3
+ "version": "1.28.16",
4
4
  "description": "",
5
5
  "main": "build/index.js",
6
6
  "types": "build/index.d.ts",