JSPM

mightytix

0.1.1
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • 0
  • Score
    100M100P100Q16176F
  • License ISC

A client for the Mighty Tix Customer API. Used for building a customized event ticketing customer purchase experience.

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 Logo

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.

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.