@jealous-robot-dev/shared-types-responses 1.13.16 → 1.13.17
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/build/services/events/event-search.d.ts +1 -3
- package/build/services/events/manage-events.d.ts +1 -3
- package/build/services/main-data.d.ts +4 -0
- package/build/services/static-components/footer.d.ts +0 -4
- package/build/services/{events/event-filter.d.ts → stats/host.d.ts} +0 -0
- package/build/services/{events/event-filter.js → stats/host.js} +0 -0
- package/build/services/stats/payment-history.d.ts +1 -2
- package/build/services/stats/user-notifications.d.ts +1 -2
- package/build/services/stats/user-performance.d.ts +0 -4
- package/build/services/user/profile-basic-data.d.ts +1 -2
- package/build/services/user/search-user.d.ts +1 -2
- package/build/services/user-settings/account-settings.d.ts +1 -2
- package/package.json +1 -1
- package/build/services/stats/organiser.d.ts +0 -0
- package/build/services/stats/organiser.js +0 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { PhrasedEventType, EventTypes } from './events';
|
|
2
|
-
import { Language,
|
|
2
|
+
import { Language, LND } from '../common';
|
|
3
3
|
export declare enum EventFilterSelectionIntervals {
|
|
4
4
|
DAY = "DAY",
|
|
5
5
|
WEEK = "WEEK",
|
|
@@ -15,8 +15,6 @@ export interface SearchEventsPhrases {
|
|
|
15
15
|
languages: Language[];
|
|
16
16
|
currency: string;
|
|
17
17
|
event_types: PhrasedEventType[];
|
|
18
|
-
months: Month[];
|
|
19
|
-
days: Weekday[];
|
|
20
18
|
load_more: string;
|
|
21
19
|
clear_all: string;
|
|
22
20
|
show_results: string;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { PluralSingular, Language,
|
|
1
|
+
import { PluralSingular, Language, QueryResponse } from '../common';
|
|
2
2
|
import { PhrasedEventType, EventPhrasedTimemode, EventTypes, EventTimeModes } from './events';
|
|
3
3
|
export declare enum EventManagerSortFields {
|
|
4
4
|
LANGUAGE = "lang",
|
|
@@ -55,8 +55,6 @@ export interface EventManagerPhrases {
|
|
|
55
55
|
timing_modes: EventPhrasedTimemode[];
|
|
56
56
|
languages: Language[];
|
|
57
57
|
event_types: PhrasedEventType[];
|
|
58
|
-
months: Month[];
|
|
59
|
-
days: Weekday[];
|
|
60
58
|
cancel: string;
|
|
61
59
|
done: string;
|
|
62
60
|
edit: string;
|
|
File without changes
|
|
File without changes
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { LND } from '../common';
|
|
2
2
|
export interface SendPDFForm {
|
|
3
3
|
title: string;
|
|
4
4
|
description: string;
|
|
@@ -16,7 +16,6 @@ export interface SendPDFForm {
|
|
|
16
16
|
}
|
|
17
17
|
export interface PaymentHistoryTransactionsPhrases {
|
|
18
18
|
common: {
|
|
19
|
-
months: Month[];
|
|
20
19
|
load_more: string;
|
|
21
20
|
send_pdf: string;
|
|
22
21
|
transaction_details: string;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { QueryResponse, LND } from '../common';
|
|
2
2
|
export declare enum NotificationCategory {
|
|
3
3
|
VISITOR = "visitor",
|
|
4
4
|
ORGANISER = "organiser"
|
|
@@ -40,7 +40,6 @@ export interface UserNotificationsPhrases {
|
|
|
40
40
|
visitor: string;
|
|
41
41
|
organiser: string;
|
|
42
42
|
};
|
|
43
|
-
months: Month[];
|
|
44
43
|
load_more: string;
|
|
45
44
|
no_notifications: LND;
|
|
46
45
|
}
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { Month, Weekday } from '../common';
|
|
2
1
|
import { EventTypes, PhrasedEventType, EventTimeModes, EventPhrasedTimemode } from '../events/events';
|
|
3
2
|
export declare enum PerformanceCategories {
|
|
4
3
|
REVIEWS = "reviews",
|
|
@@ -8,9 +7,6 @@ export declare enum PerformanceCategories {
|
|
|
8
7
|
export interface UserPerformancePhrases {
|
|
9
8
|
title: string;
|
|
10
9
|
cancel: string;
|
|
11
|
-
months: Month[];
|
|
12
|
-
shortMonths: Month[];
|
|
13
|
-
days: Weekday[];
|
|
14
10
|
load_more: string;
|
|
15
11
|
show_more: string;
|
|
16
12
|
show_less: string;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { QueryResponse, LND, Language
|
|
1
|
+
import { QueryResponse, LND, Language } from '../common';
|
|
2
2
|
import { ConciseEventData, EventReview } from '../events/events';
|
|
3
3
|
export interface SuspensionReason {
|
|
4
4
|
code: string;
|
|
@@ -94,7 +94,6 @@ export interface UserProfilePhrases {
|
|
|
94
94
|
suggested: string;
|
|
95
95
|
viewMore: string;
|
|
96
96
|
cancel: string;
|
|
97
|
-
months: Month[];
|
|
98
97
|
showMore: string;
|
|
99
98
|
showLess: string;
|
|
100
99
|
load_more: string;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { LND
|
|
1
|
+
import { LND } from '../common';
|
|
2
2
|
export interface AccountSettingsPhrases {
|
|
3
3
|
accountSettings: string;
|
|
4
4
|
settings: string;
|
|
@@ -8,7 +8,6 @@ export interface AccountSettingsPhrases {
|
|
|
8
8
|
edit: string;
|
|
9
9
|
apply: string;
|
|
10
10
|
load_more: string;
|
|
11
|
-
months: Month[];
|
|
12
11
|
};
|
|
13
12
|
categories: {
|
|
14
13
|
personalInfo: LND;
|
package/package.json
CHANGED
|
File without changes
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
"use strict";
|