|
| 1 | +import { |
| 2 | + CustomerGroupMembershipPartsFragment, |
| 3 | + DateTimePartsFragment, |
| 4 | + DeletedCustomerActorPartsFragment, |
| 5 | + InternalActorPartsFragment, |
| 6 | + IssuePartsFragment, |
| 7 | + IssuePriorityPartsFragment, |
| 8 | + IssueTypePartsFragment, |
| 9 | + MachineUserActorPartsFragment, |
| 10 | + MutationErrorPartsFragment, |
| 11 | + SystemActorPartsFragment, |
| 12 | + TimelineEntryPartsFragment, |
| 13 | + UserActorPartsFragment, |
| 14 | +} from './graphql/types'; |
| 15 | +import { ActorPartsFragment, CustomerActorPartsFragment } from './graphql/types'; |
| 16 | +import { |
| 17 | + UpsertCustomerInput, |
| 18 | + UpsertCustomTimelineEntryInput, |
| 19 | + CreateIssueInput, |
| 20 | +} from './graphql/types'; |
1 | 21 | export { PlainClient } from './client'; |
| 22 | + |
| 23 | +export { |
| 24 | + // Input types |
| 25 | + UpsertCustomerInput, |
| 26 | + UpsertCustomTimelineEntryInput, |
| 27 | + CreateIssueInput, |
| 28 | + |
| 29 | + // Fragments: |
| 30 | + ActorPartsFragment, |
| 31 | + CustomerActorPartsFragment, |
| 32 | + CustomerGroupMembershipPartsFragment, |
| 33 | + DateTimePartsFragment, |
| 34 | + DeletedCustomerActorPartsFragment, |
| 35 | + InternalActorPartsFragment, |
| 36 | + IssuePartsFragment, |
| 37 | + IssuePriorityPartsFragment, |
| 38 | + IssueTypePartsFragment, |
| 39 | + MachineUserActorPartsFragment, |
| 40 | + MutationErrorPartsFragment, |
| 41 | + SystemActorPartsFragment, |
| 42 | + TimelineEntryPartsFragment, |
| 43 | + UserActorPartsFragment, |
| 44 | +}; |
0 commit comments