@debugged-development/ticketapp-sdk 1.0.2 → 1.0.6
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/graphql/generated.d.ts +14 -0
- package/dist/graphql/generated.d.ts.map +1 -1
- package/dist/index.js +439 -357
- package/dist/services/eventService.d.ts +15 -2
- package/dist/services/eventService.d.ts.map +1 -1
- package/dist/services/packageService.d.ts +9 -4
- package/dist/services/packageService.d.ts.map +1 -1
- package/dist/store/eventSlice.d.ts +30 -38
- package/dist/store/eventSlice.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -905,6 +905,7 @@ export type Event = {
|
|
|
905
905
|
spotifyId?: Maybe<Scalars['String']['output']>;
|
|
906
906
|
startAt: Scalars['luxon']['output'];
|
|
907
907
|
startSalesAt?: Maybe<Scalars['luxon']['output']>;
|
|
908
|
+
startingPrice?: Maybe<Scalars['Float']['output']>;
|
|
908
909
|
statistic?: Maybe<EntityStatistic>;
|
|
909
910
|
status: EventStatus;
|
|
910
911
|
storyBanner?: Maybe<Scalars['String']['output']>;
|
|
@@ -2725,6 +2726,9 @@ export type QueryFindAllPublicEventByOrganizationIdArgs = {
|
|
|
2725
2726
|
};
|
|
2726
2727
|
export type QueryFindAllPublicPackagesByOrganizationIdArgs = {
|
|
2727
2728
|
organizationId: Scalars['ID']['input'];
|
|
2729
|
+
page?: InputMaybe<PageInput>;
|
|
2730
|
+
statuses?: InputMaybe<Array<PackageStatus>>;
|
|
2731
|
+
tab?: InputMaybe<PackageTabType>;
|
|
2728
2732
|
};
|
|
2729
2733
|
export type QueryFindAllReportConfigurationsArgs = {
|
|
2730
2734
|
date?: InputMaybe<DateRangeInput>;
|
|
@@ -4221,11 +4225,17 @@ export type EventOverviewPageQueryVariables = Exact<{
|
|
|
4221
4225
|
hostingIds?: InputMaybe<Array<Scalars['String']['input']> | Scalars['String']['input']>;
|
|
4222
4226
|
trackerId?: InputMaybe<Scalars['String']['input']>;
|
|
4223
4227
|
showDoorTickets?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4228
|
+
eventIds?: InputMaybe<Array<Scalars['String']['input']> | Scalars['String']['input']>;
|
|
4229
|
+
filterEventStatuses?: InputMaybe<Array<EventStatus> | EventStatus>;
|
|
4230
|
+
dateRange?: InputMaybe<DateRangeInput>;
|
|
4231
|
+
page?: InputMaybe<PageInput>;
|
|
4232
|
+
sorts?: InputMaybe<Array<SortInput> | SortInput>;
|
|
4224
4233
|
}>;
|
|
4225
4234
|
export type EventOverviewPageQuery = {
|
|
4226
4235
|
__typename?: 'Query';
|
|
4227
4236
|
findAllPublicEventByOrganizationId: {
|
|
4228
4237
|
__typename?: 'PaginatedEvent';
|
|
4238
|
+
count: number;
|
|
4229
4239
|
data: Array<{
|
|
4230
4240
|
__typename?: 'Event';
|
|
4231
4241
|
id: string;
|
|
@@ -4234,6 +4244,7 @@ export type EventOverviewPageQuery = {
|
|
|
4234
4244
|
banner?: string | null;
|
|
4235
4245
|
description?: string | null;
|
|
4236
4246
|
addonDescription?: string | null;
|
|
4247
|
+
startingPrice?: number | null;
|
|
4237
4248
|
startAt: any;
|
|
4238
4249
|
endAt: any;
|
|
4239
4250
|
timezone: string;
|
|
@@ -4485,6 +4496,9 @@ export type SetAdditionalPackageItemToOrderMutation = {
|
|
|
4485
4496
|
};
|
|
4486
4497
|
export type FindAllPublicPackagesByOrganizationIdQueryVariables = Exact<{
|
|
4487
4498
|
organizationId: Scalars['ID']['input'];
|
|
4499
|
+
page?: InputMaybe<PageInput>;
|
|
4500
|
+
tab?: InputMaybe<PackageTabType>;
|
|
4501
|
+
statuses?: InputMaybe<Array<PackageStatus> | PackageStatus>;
|
|
4488
4502
|
}>;
|
|
4489
4503
|
export type FindAllPublicPackagesByOrganizationIdQuery = {
|
|
4490
4504
|
__typename?: 'Query';
|