0.1.1 • Published 2 years ago

mightytix v0.1.1

Weekly downloads
-
License
ISC
Repository
-
Last release
2 years ago

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 mightytix

The 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

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.