@debugged-development/ticketapp-sdk 1.0.2 → 1.0.5
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 +12 -0
- package/dist/graphql/generated.d.ts.map +1 -1
- package/dist/index.js +437 -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
|
@@ -2725,6 +2725,9 @@ export type QueryFindAllPublicEventByOrganizationIdArgs = {
|
|
|
2725
2725
|
};
|
|
2726
2726
|
export type QueryFindAllPublicPackagesByOrganizationIdArgs = {
|
|
2727
2727
|
organizationId: Scalars['ID']['input'];
|
|
2728
|
+
page?: InputMaybe<PageInput>;
|
|
2729
|
+
statuses?: InputMaybe<Array<PackageStatus>>;
|
|
2730
|
+
tab?: InputMaybe<PackageTabType>;
|
|
2728
2731
|
};
|
|
2729
2732
|
export type QueryFindAllReportConfigurationsArgs = {
|
|
2730
2733
|
date?: InputMaybe<DateRangeInput>;
|
|
@@ -4221,11 +4224,17 @@ export type EventOverviewPageQueryVariables = Exact<{
|
|
|
4221
4224
|
hostingIds?: InputMaybe<Array<Scalars['String']['input']> | Scalars['String']['input']>;
|
|
4222
4225
|
trackerId?: InputMaybe<Scalars['String']['input']>;
|
|
4223
4226
|
showDoorTickets?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4227
|
+
eventIds?: InputMaybe<Array<Scalars['String']['input']> | Scalars['String']['input']>;
|
|
4228
|
+
filterEventStatuses?: InputMaybe<Array<EventStatus> | EventStatus>;
|
|
4229
|
+
dateRange?: InputMaybe<DateRangeInput>;
|
|
4230
|
+
page?: InputMaybe<PageInput>;
|
|
4231
|
+
sorts?: InputMaybe<Array<SortInput> | SortInput>;
|
|
4224
4232
|
}>;
|
|
4225
4233
|
export type EventOverviewPageQuery = {
|
|
4226
4234
|
__typename?: 'Query';
|
|
4227
4235
|
findAllPublicEventByOrganizationId: {
|
|
4228
4236
|
__typename?: 'PaginatedEvent';
|
|
4237
|
+
count: number;
|
|
4229
4238
|
data: Array<{
|
|
4230
4239
|
__typename?: 'Event';
|
|
4231
4240
|
id: string;
|
|
@@ -4485,6 +4494,9 @@ export type SetAdditionalPackageItemToOrderMutation = {
|
|
|
4485
4494
|
};
|
|
4486
4495
|
export type FindAllPublicPackagesByOrganizationIdQueryVariables = Exact<{
|
|
4487
4496
|
organizationId: Scalars['ID']['input'];
|
|
4497
|
+
page?: InputMaybe<PageInput>;
|
|
4498
|
+
tab?: InputMaybe<PackageTabType>;
|
|
4499
|
+
statuses?: InputMaybe<Array<PackageStatus> | PackageStatus>;
|
|
4488
4500
|
}>;
|
|
4489
4501
|
export type FindAllPublicPackagesByOrganizationIdQuery = {
|
|
4490
4502
|
__typename?: 'Query';
|