Package Exports
- mightytix
- mightytix/src/index.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (mightytix) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Mighty Tix
Become your own ticketing company.
Mighty Tix is a "ticketing as a platform" provider on which you can build your own event ticketing system. This client library connects to the Mighty Tix GraphQL customer API in order to build a customized ticketing checkout experience.
Getting started
npm install mightytixThe Typescript types in the library are available for use by any GraphQL client:
import { Cart, Session, Ticket } from 'mightytix';And an Apollo Client is included for React development:
import { mightytixClient } from 'mightytix';
export function TicketingCheckout() {
const client = mightytixClient();
return (
<ApolloProvider client={client}>
{/* Your ticketing checkout component(s) */}
</ApolloProvider>
);
}Contributing
If you'd like to contribute, please fork the repository and use a feature branch. Pull requests are warmly welcome.
Links
- Mighty Tix: https://mightytix.com/
- Customer API documentation: https://mightytix.com/docs/customer-api
- Apollo: https://www.apollographql.com/docs/react
Licensing
ISC License Copyright (c) 2022 Mighty Software Limited
Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.