0.1.0-beta.1 • Published 1 month ago

@leaddreamer/pricingbrowser v0.1.0-beta.1

Weekly downloads
-
License
MIT
Repository
github
Last release
1 month ago

view on
npm

@SaltSweetSpirits/PricingBrowser

Browser functions for the Pricing as a Service system, wrapped around pricinglogic and indirectly firebase-wrapper, for the Front End.

Modules

PricingBrowser

Browser functions for the Pricing as a Service system, wrapped around pricinglogic and indirectly firebase-wrapper, for the Front End.

PricingBrowser.startBrowser(config) ⇒ Promise

starts the database and redux systems in the browser the client-specific firebase instance must be passed the client-specific config object must be passed Starts the database, and initiates the user authentication system Usually, but not always, started on launch

Kind: static method of PricingBrowser

ParamType
configFirebaseConfigObject

PricingBrowser~FirebaseConfigObject : object

only authDomain, databaseURL and storageBucket are present when called from a cloud environment

Kind: inner typedef of PricingBrowser
Properties

NameTypeDescription
apiKeystringrequired api Key from Firebase Console,
appIdstringrequired app ID from Firebase Console
projectIdstringrequired Firebase projectID from Firebase console
authDomainstring(optional) auth domain from Firebase Console
databaseURLstring(optional) Firestore database URL from Firebase console
storageBucket:string(optional) URL of Firestore Storage Bucket
messagingSenderId:string(optional) ID for Messaing service from Firebase Console
measurementId:string(optional) Analytics/Measurement ID from Firebase Console
mapsAPIKeystring(optional) App ID for Google Maps API, from Google

Browser

Browser-specific Event Services business logic and database operations

CloudCustomerPayment

Customer payment account cloud functions

CloudCustomerPayment.capturePaymentMethod(personId) ⇒ Promise.secret_object

Prepares to capture a payment method for a user

Kind: static method of CloudCustomerPayment
Returns: Promise.secret_object - - client secret

ParamTypeDescription
personIdstringId of person account to create customer payment account for

CloudCustomerPayment.setFanCard(personId, PDSummary) ⇒ Promise.<void>

Securely sets the particular paymentMethod as active

Kind: static method of CloudCustomerPayment

ParamTypeDescription
personIdstringId of person owning this payment
PDSummaryPDSummarypaymentDescriptor

CloudCustomerPayment.deleteFanCard(personId, PDSummary) ⇒ Promise.<void>

Kind: static method of CloudCustomerPayment

ParamTypeDescription
personIdstringa user Id
PDSummaryPDSummarypaymentDescriptor of method to delete

CloudCustomerPayment~secret_object : object

Payment System "secret" for secure front-end

Kind: inner typedef of CloudCustomerPayment
Properties

NameType
payment_secretstring

CloudFunctions

Project specific Cloud functions

CloudFunctions.httpsOnCallSlipDates ⇒ Promise.boolean

Admin/Test function to push all dated object "shiftDays" forward

Kind: static constant of CloudFunctions

ParamType
shiftDaysnumber

CloudFunctions.requestCancelPledge ⇒ Promise

Request to cancel a pledgeTicket (needs payment check)

Kind: static constant of CloudFunctions

ParamType
pledgeTicketpledgeTicketObject

CloudFunctions.authClaims(user) ⇒ Promise.Credential

fetches our specific custom claim values from user Token

Kind: static method of CloudFunctions

ParamTypeDescription
userUserObjectfirebase auth user object

CloudFunctions.changeCredential(credential) ⇒ Promise.<void>

use a "credential" object to add a new server-side role to a user

Kind: static method of CloudFunctions

ParamTypeDescription
credentialCredentialthe new credential being requested. Verified and set at server-side

CloudFunctions.httpsOnCallCredentials(credential) ⇒ Promise

Cloud function to set credentials object

Kind: static method of CloudFunctions

ParamType
credentialCredential

CloudFunctions.httpsOnCallCreateAccounts(data) ⇒ Promise.PaymentAccount

Securely creates an oganization account

Kind: static method of CloudFunctions

ParamType
dataAccountRequestData

CloudFunctions.httpsOnCallOfferAccess(offer) ⇒ Promise

Cloud function for organizatin to offer user access control

Kind: static method of CloudFunctions

ParamType
offerAccessOffer

CloudFunctions.httpsOnCallCheckIn(checkin) ⇒ Promise

Cloud function to allow Organization to CheckIn a user/ticket to an event

Kind: static method of CloudFunctions

ParamType
checkincheckInObject

CloudFunctions.fixPledgeTicket(pledgeTicket) ⇒ Promise.secret_object

"Fix" a pledgeTicket - ie setup to take new payment

Kind: static method of CloudFunctions

ParamType
pledgeTicketpledgeTicketObject

CloudFunctions~Credential : object

Kind: inner typedef of CloudFunctions
Properties

NameTypeDescription
organizationstringbusiness's Id - only one at a time
adminStatusboolean
superUserboolean
employeeboolean

CloudFunctions~AccountRequestData : object

Kind: inner typedef of CloudFunctions
Properties

NameTypeDescription
accountOrganizationType
account.typestringARTISTS, VENUES, BRANDS, CITYMANAGER or OTHER

Commodities

Typedefs, constants, support functions and database operations related to Commodity Materials Browser Support

Fundamentals

Fundamentals.ListenFundamentals() ⇒ callback

A function that returns a function to attach as a listener, that returns a function to unsubscribe This a FAKE listener - only used to load data at start-up A function that "pretends" to be a listener, to maintain consistent structure Only loads at boot-up

Kind: static method of Fundamentals

Fundamentals.ListenMCCs() ⇒ callback

A function that returns a function to attach as a listener, that returns a function to unsubscribe A function that "pretends" to be a listener, to maintain consistent structure Only loads at boot-up

Kind: static method of Fundamentals

Fundamentals.ListenBusinessTypes() ⇒ callback

A function that returns a function to attach as a listener, that returns a function to unsubscribe A function that "pretends" to be a listener, to maintain consistent structure Only loads at boot-up

Kind: static method of Fundamentals

Images

basic Redux/Database functions for images

Images.setDefaultImage() ⇒ callback

Fires off an async closure to get and set image. Could be thunk?

Kind: static method of Images

Images.setDefaultBanner() ⇒ callback

Fires off an async closure to get and set image. Could be thunk?

Kind: static method of Images

Images.setDefaultLoading() ⇒ callback

Fires off an async closure to get and set loading. Could be thunk?

Kind: static method of Images

Images.pullURLFromRecord(record, key) ⇒ Promise.string

This Utility checks if a full URL needs to be built. Image data can be => a tokenized URL, by definition public => a "private", secured URL => a filename, assumed to be stored in a structure parallel to the record path

Kind: static method of Images
Fulfil: string a "private" URL to access the file.
Reject: string

ParamTypeDescription
recordRecordObjectA firestore document Record - the '/' separated collection/ document path is used as the path to the stored item.
keystringAn optional string identifying the specific field an stored item is associated with

Images.accessibleStorage(URL) ⇒ Promise.<URL>

This Utility checks if URL is Secured by Storage Security Rules If the URL carries an access token, it is simply returned. If the URL does NOT have an access token, it is fetched to local stoage with authentication, and a new URL created to point to the local copy.

Kind: static method of Images
Fulfil: string a local URL to access the downloaded data
Reject: string

ParamType
URLstring

LineItem

Typedefs, constants, support functions and database operations related to Commodity Materials Browser Support

Payment

People

People.setClaims(newClaims) ⇒ ActionItem

Sets the various Redux states for all claims currently active

Kind: static method of People

ParamType
newClaimsCredentials

People.makeActivePerson(user) ⇒ Promise

takes an authenticated user and builds the appropriate ActivePeron in the Redux store

Kind: static method of People

ParamType
userUser

People.retireActivePerson() ⇒ Promise

Removes Redux records and authentication for current User

Kind: static method of People

People.ListenPerson(user) ⇒ callback

returns the unsubscribe function; will be called AT LEAST ONCE with initial document

Kind: static method of People
Returns: callback - unsubscribe function

ParamType
userUser

People.savePerson(person) ⇒ Promise

Saves an (updated) PersonObject back to Database Store

Kind: static method of People

ParamType
personPersonObject

People.savePayment(person, payment_object) ⇒ Promise

Saves an (updated) PaymentObject to a specified PersonObject back to Database Store

Kind: static method of People

ParamType
personPersonObject
payment_objectPaymentObject

People.CreateAnonymousFan() ⇒ Promise

calls authentication service. Listener (below) responds to status change

Kind: static method of People

People.InitAuthListener() ⇒ callback

Starts the authentication system with status listener

Kind: static method of People
Returns: callback - unsubscribe

People.signInSuccessWithAuthResult(authResult, redirectURL) ⇒ boolean

Dummt functin for auth UI. We use Async listeners to accomplish the related functions

Kind: static method of People

ParamType
authResultobject
redirectURLstring

Product

Typedefs, constants, support functions and database operations related to Commodity Materials Browser Support

Stages

Browser support functions for "stages" Stages are Top-level (System-wide defaults), OR User-level (individual business/craftperson defaults), OR Product=level (User selected exceptions for a particular Product)

Stages.fetchStages() ⇒ Array.Stage

Kind: static method of Stages

Stages.fetchStage(stageId) ⇒ Stage

Fetch a single Stage from the store by Id

Kind: static method of Stages

ParamType
stageIdstring

Stages.ListenStages(parent) ⇒ callback

Kind: static method of Stages
Returns: callback - unsubscribe function

ParamTypeDescription
parentUser | Product | nullparent, if any, for the requested stages

Utilities

Utility Browser support functions

Utilities.fetchLinkedItem(type, link, refPath) ⇒ Promise.RecordDocument

used generic for constructing forms for input and display

Kind: static method of Utilities

ParamTypeDescription
typestringrefers to the sub-collection name
linkstringrefers to the linking "value" - a documentID
refPathstringoptionally refers to the "/" separate path to the parent document in firebase

Utilities.fetchSubItem(type, refPath) ⇒ Promise.RecordDocument

some items are stored in the database as a single-record collection, using the same Id as the parent

Kind: static method of Utilities

ParamTypeDescription
typestringrefers to the sub-collection name
refPathstringrefers to the "/" separate path to the required parent document in firebase

Utilities.fetchType(type, refPath) ⇒ Promise.Array.RecordDocument

returns an entire sub-collection by "type" (sub-collection name). If refpath is omitted, assumes "type" is a top-level collection

Kind: static method of Utilities

ParamTypeDescription
typestringrefers to the sub-collection name
refPathstringoptionally refers to the "/" separate path to the parent document in firebase

Utilities.selectAccountData(state, type)

parameterized selector

Kind: static method of Utilities

ParamTypeDescription
stateReduxStoreRedux State/Store
typestring

Utilities.searchType(type, prompt, limit) ⇒ Promise.<HostArray>

This function is a parameterized selector

Kind: static method of Utilities
Returns: Promise.<HostArray> - - returns an array of results, up to limit

ParamTypeDescription
type"MANAGEDARTISTS" | "MANAGEDVENUES"type of list to select. Returns {null} for others
promptstring"search" string (starts-with)
limitnumberlimit results (from start)

Utilities.processTarget(target) ⇒ object

Generic synchronous form processing function - handles values and returns results as a keyed object

Kind: static method of Utilities

ParamType
targeteventTarget

Utilities.processItemType(item, type, refPath) ⇒ Promise.RecordDocument

generic form data processing for database by "type" (collection name)

Kind: static method of Utilities

ParamTypeDescription
itemRecordDocument
typestringrefers to the sub-collection name
refPathstringoptionally refers to the "/" separate path to the parent document in firebase

Utilities.formatLinkedItem(link, type, refPath) ⇒ Promise.string

fetches a sub-record from the database and returns the result as a summary string

Kind: static method of Utilities

ParamTypeDescription
linkstringrefers to the linking "value" - a documentID
typestringrefers to the sub-collection name
refPathstringrefers to the "/" separate path to the required parent document in firebase

Utilities.summarizeItem(item, type) ⇒ string

parameterized function to return string summary of an object By default, returns the "name" property of the item.

Kind: static method of Utilities

ParamTypeDescription
itemobjectdata object to summarize
typeString | "People" | "Addresses" | "accessControl"- type of the object to summarize

Utilities.findIconName(url) ⇒ string

Hacky way to match Icons to urlLowerCase

Kind: static method of Utilities

ParamType
urlstring

Utilities.typedSortArray(type) ⇒ Array.SortObject

Firebase query support - builds default sort options

Kind: static method of Utilities

ParamType
typestring

Utilities~stripDocIdFromRefPath(refPath) ⇒ string

pulls the document Id from a passed refPath string (firebase dependent)

Kind: inner method of Utilities
Returns: string - Id

ParamType
refPathstring

Utilities~HostArray : ArtistFormType | VenueType

Kind: inner typedef of Utilities

Boilerplate

Boilerplate and generic constants and functions for browser Support

Boilerplate.subscriberGenerator(sliceName, tableName, filterArray, sortArray, reference, atRoot, transformer) ⇒ string

Sets up a listener, and starts it running, in the Listener Store SYNCHRONOUS

Kind: static method of Boilerplate
Returns: string - listenerStore slot key

ParamTypeDescription
sliceNamestringname of "slice" of redux store to save subscribed data typeof
tableNamestringname of specific database table to listen to, same as Redux location to save to
filterArrayArray.FilterObject
sortArrayArray.SortObject
referencestringpath to base "tableName" from
atRootbooleansimplifies listener functions is at atRoot
transformercallbackoptional function to "transform" data results

Boilerplate.singleRecord(records) ⇒ Record

Some "collections" only have a signle record. This transformer simply returns the FIRST item in the collection array.

Kind: static method of Boilerplate

ParamType
recordsArray.Records

Boilerplate~ListenGenerator(sliceName, tableName, filterArray, sortArray, transformer) ⇒ callback

Sets up a listener for the Listener Store Assumes a CollectionGroup query

Kind: inner method of Boilerplate
Returns: callback - unsubscribe function

ParamTypeDefaultDescription
sliceNamestringname of "slice" of redux store to save subscribed data typeof
tableNamestringname of specific database table to listen to, same as Redux location to save to
filterArrayArray.FilterObject
sortArrayArray.SortObject
transformercallbackoptional function to "transform" data results

Boilerplate~ListenShallowGenerator(sliceName, tableName, filterArray, sortArray, reference, transformer) ⇒ callback

Sets up a listener for the Listener Store Assumes a simple Collection query

Kind: inner method of Boilerplate
Returns: callback - unsubscribe function

ParamTypeDefaultDescription
sliceNamestringname of "slice" of redux store to save subscribed data typeof
tableNamestringname of specific database table to listen to, same as Redux location to save to
filterArrayArray.FilterObject
sortArrayArray.SortObject
referencestringpath to base "tableName" from
transformercallbackoptional function to "transform" data results

Constants

Browser access and themeing constants

Constants.COMPANY_NAME

variable for shared Company Name

Kind: static property of Constants

Constants.TWITTER_ACCOUNT

variable for shared Twitter Name

Kind: static property of Constants

Constants.FACEBOOK_ACCOUNT

variable for shared Facebook Name

Kind: static property of Constants

Constants.INSTAGRAM_ACCOUNT

variable for shared Instagram Name

Kind: static property of Constants

Constants.LINKEDIN_ACCOUNT

variable for shared LinkedIn Name

Kind: static property of Constants

Constants.EMAIL_ACCOUNT

variable for shared Email Name

Kind: static property of Constants

Constants.PAYMENT_THEME

variable for shared Payment Name

Kind: static property of Constants

Constants.CANCELED_EVENT

Kind: static constant of Constants
Default: "Show Canceled"

Constants.UNBOOKED

Kind: static constant of Constants
Default: "unbooked"

Constants.UNBOOKED_EVENT

Kind: static constant of Constants
Default: "Tour Stop"

Constants.OPEN

Kind: static constant of Constants
Default: "open"

Constants.OPEN_OFFER

Kind: static constant of Constants
Default: "open"

Constants.WORKING

Kind: static constant of Constants
Default: "working"

Constants.WORKING_OFFER

Kind: static constant of Constants
Default: "working"

Constants.BOOKED

Kind: static constant of Constants
Default: "booked"

Constants.BOOKED_EVENT

Kind: static constant of Constants
Default: "Show"

Constants.SHOWS_EVENT

Kind: static constant of Constants
Default: "Show"

Constants.TOUR

Kind: static constant of Constants
Default: "tour"

Constants.INITIAL_SHOW_COUNT

Kind: static constant of Constants
Default: 5

Constants.NATION_ZOOM

Kind: static constant of Constants
Default: 3

Constants.REGION_ZOOM

Kind: static constant of Constants
Default: 10

Constants.VENUE_ZOOM

Kind: static constant of Constants
Default: 18

Constants.LABELSTYLE

Kind: static constant of Constants

Constants.REGION_MARKER

Kind: static constant of Constants
Default: BLUE_MARKER

Constants.labelStyle

Kind: static constant of Constants

Constants.set_theme()

Sets the theme to default/current values

Kind: static method of Constants

Constants~pricing_constants

Kind: inner constant of Constants
Default: {"company_name":"Pricing","twitter_account":"Pricing","facebook_account":"Pricing","instagram_account":"Pricing","linkedin_account":"Pricing","email_account":"info@Pricing.com","logoFont":"Roboto","titleFont":"Roboto","themeFont":"Nunito","themeBackgroundColor":"#ccbebe","themeColor":"#181818","themeAccent":"#726b6b","themeShadows":"#d7ecfa","ThemeDarkColor":"#8a8a8a","themeBorderColor":"#cacaca","themeReverse":"#fefefe","themeReverseText":"#181818","palePrimaryColor":"#d7ecfa","secondaryColor":"#767676","paleSecondaryColor":"#eaeaea","successColor":"#3adb76","paleSuccessColor":"#e1faea","warningColor":"#ffae00","paleWarningColor":"#fff3d9","alertColor":"#cc4b37","paleAlertColor":"#f9ecea","themeBooked":"goldenrod","themeUnbooked":"blue","themeOpen":"green","themeWorking":"orange","themePledge":"green","themeTicket":"FireBrick","themeTour":"black","paymentTheme":"stripe"}

Constants~pricing_dark

Kind: inner constant of Constants
Default: {"company_name":"Pricing","twitter_account":"Pricing","facebook_account":"Pricing","instagram_account":"Pricing","linkedin_account":"Pricing","email_account":"info@Pricing.com","logoFont":"Roboto","titleFont":"Roboto","themeFont":"Nunito","themeBackgroundColor":"#181818","themeAccent":"#606060","themeColor":"#efefef","themeShadows":"#d7ecfa","ThemeDarkColor":"#8a8a8a","themeBorderColor":"#cacaca","themeReverse":"#fefefe","themeReverseText":"#181818","palePrimaryColor":"#606060","secondaryColor":"#767676","paleSecondaryColor":"#eaeaea","successColor":"#3adb76","paleSuccessColor":"#e1faea","warningColor":"#ffae00","paleWarningColor":"#fff3d9","alertColor":"#cc4b37","paleAlertColor":"#f9ecea","themeBooked":"goldenrod","themeUnbooked":"blue","themeOpen":"green","themeWorking":"orange","themePledge":"green","themeTicket":"FireBrick","themeTour":"black","paymentTheme":"night"}

Constants~themes

Kind: inner constant of Constants
Default: "pricing_dark","pricing_constants"

ReduxStore

Redux Store and State modules

FundamentalsRedux

ImagesRedux

PaymentRedux

PeopleRedux

StagesRedux

StagesActions

StagesActions.LOAD_STAGES

Kind: static constant of StagesActions
Default: "LOAD_STAGES"

StagesActions.loadStages(stages) ⇒ ActionItem

Returns an ActionItem

Kind: static method of StagesActions

ParamType
stagesArray.Stage

StagesActions.updateStages(stages) ⇒ ActionItem

Creates and Dispathes an ActionItem

Kind: static method of StagesActions

ParamType
stagesArray.Stage

StagesActions.stagesList() ⇒ Array.Stage

Kind: static method of StagesActions

StagesActions.selectSkills(state) ⇒ Array.Stage

Kind: static method of StagesActions

ParamType
stateReduxSlice

FundamentalsReducer

module.exports(state, action) ⇒ ReduxSlice

reducer

Kind: Exported function

ParamType
stateReduxSlice
actionActionItem

module.exports~InitialState

Kind: inner constant of module.exports
Default: {}

ImagesReducer

module.exports(state, action) ⇒ ReduxSlice

reducer

Kind: Exported function

ParamType
stateReduxSlice
actionActionItem

module.exports~InitialState

Kind: inner constant of module.exports
Default: {"image":null,"banner":null,"loading":null}

PaymentReducer

module.exports(state, action) ⇒ ReduxSlice

reducer

Kind: Exported function

ParamType
stateReduxSlice
actionActionItem

PeopleReducer

module.exports(state, action) ⇒ ReduxSlice

reducer

Kind: Exported function

ParamType
stateReduxSlice
actionActionItem

StagesReducer

module.exports(state, action) ⇒ ReduxSlice

reducer

Kind: Exported function

ParamType
stateReduxSlice
actionActionItem

© 2020-2024 Tracy Hall

0.3.0-beta.0

1 month ago

0.2.0-beta.98

1 month ago

0.2.0-beta.97

1 month ago

0.2.0-beta.94

1 month ago

0.2.0-beta.95

1 month ago

0.2.0-beta.96

1 month ago

0.2.0-beta.91

1 month ago

0.2.0-beta.92

1 month ago

0.2.0-beta.93

1 month ago

0.2.0-beta.90

1 month ago

0.2.0-beta.88

1 month ago

0.2.0-beta.89

1 month ago

0.2.0-beta.82

2 months ago

0.2.0-beta.83

2 months ago

0.2.0-beta.84

2 months ago

0.2.0-beta.85

2 months ago

0.2.0-beta.86

2 months ago

0.2.0-beta.87

2 months ago

0.2.0-beta.81

2 months ago

0.2.0-beta.80

2 months ago

0.2.0-beta.79

2 months ago

0.2.0-beta.72

2 months ago

0.2.0-beta.73

2 months ago

0.2.0-beta.74

2 months ago

0.2.0-beta.75

2 months ago

0.2.0-beta.76

2 months ago

0.2.0-beta.77

2 months ago

0.2.0-beta.78

2 months ago

0.2.0-beta.64

2 months ago

0.2.0-beta.65

2 months ago

0.2.0-beta.66

2 months ago

0.2.0-beta.68

2 months ago

0.2.0-beta.69

2 months ago

0.2.0-beta.70

2 months ago

0.2.0-beta.71

2 months ago

0.2.0-beta.60

2 months ago

0.2.0-beta.61

2 months ago

0.2.0-beta.62

2 months ago

0.2.0-beta.63

2 months ago

0.2.0-beta.59

2 months ago

0.2.0-beta.58

2 months ago

0.2.0-beta.43

2 months ago

0.2.0-beta.44

2 months ago

0.2.0-beta.45

2 months ago

0.2.0-beta.46

2 months ago

0.2.0-beta.47

2 months ago

0.2.0-beta.48

2 months ago

0.2.0-beta.49

2 months ago

0.2.0-beta.50

2 months ago

0.2.0-beta.51

2 months ago

0.2.0-beta.52

2 months ago

0.2.0-beta.53

2 months ago

0.2.0-beta.54

2 months ago

0.2.0-beta.55

2 months ago

0.2.0-beta.56

2 months ago

0.2.0-beta.57

2 months ago

0.2.0-beta.40

2 months ago

0.2.0-beta.41

2 months ago

0.2.0-beta.42

2 months ago

0.2.0-beta.30

2 months ago

0.2.0-beta.31

2 months ago

0.2.0-beta.32

2 months ago

0.2.0-beta.34

2 months ago

0.2.0-beta.35

2 months ago

0.2.0-beta.36

2 months ago

0.2.0-beta.37

2 months ago

0.2.0-beta.38

2 months ago

0.2.0-beta.39

2 months ago

0.2.0-beta.29

2 months ago

0.2.0-beta.27

2 months ago

0.2.0-beta.28

2 months ago

0.2.0-beta.23

2 months ago

0.2.0-beta.24

2 months ago

0.2.0-beta.25

2 months ago

0.2.0-beta.26

2 months ago

0.2.0-beta.22

2 months ago

0.2.0-beta.19

2 months ago

0.2.0-beta.12

3 months ago

0.2.0-beta.13

3 months ago

0.2.0-beta.14

3 months ago

0.2.0-beta.15

3 months ago

0.2.0-beta.16

3 months ago

0.2.0-beta.17

3 months ago

0.2.0-beta.18

3 months ago

0.2.0-beta.10

3 months ago

0.2.0-beta.11

3 months ago

0.2.0-beta.6

3 months ago

0.2.0-beta.9

3 months ago

0.2.0-beta.8

3 months ago

0.2.0-beta.7

3 months ago

0.2.0-beta.5

3 months ago

0.2.0-beta.4

3 months ago

0.1.0-beta.32

3 months ago

0.1.0-beta.31

3 months ago

0.1.0-beta.34

3 months ago

0.1.0-beta.33

3 months ago

0.1.0-beta.30

3 months ago

0.1.0-beta.39

3 months ago

0.1.0-beta.36

3 months ago

0.1.0-beta.35

3 months ago

0.1.0-beta.38

3 months ago

0.1.0-beta.37

3 months ago

0.1.0-beta.43

3 months ago

0.1.0-beta.42

3 months ago

0.1.0-beta.41

3 months ago

0.1.0-beta.40

3 months ago

0.1.0-beta.29

3 months ago

0.1.0-beta.28

3 months ago

0.1.0-beta.25

3 months ago

0.1.0-beta.27

3 months ago

0.1.0-beta.26

3 months ago

0.1.0-beta.19

3 months ago

0.1.0-beta.21

3 months ago

0.1.0-beta.20

3 months ago

0.1.0-beta.23

3 months ago

0.1.0-beta.22

3 months ago

0.1.0-beta.24

3 months ago

0.1.0-beta.18

4 months ago

0.1.0-beta.17

4 months ago

0.1.0-beta.14

4 months ago

0.1.0-beta.13

4 months ago

0.1.0-beta.16

4 months ago

0.1.0-beta.15

4 months ago

0.1.0-beta.10

4 months ago

0.1.0-beta.12

4 months ago

0.1.0-beta.11

4 months ago

0.1.0-beta.9

4 months ago

0.1.0-beta.3

4 months ago

0.1.0-beta.2

4 months ago

0.1.0-beta.5

4 months ago

0.1.0-beta.4

4 months ago

0.1.0-beta.7

4 months ago

0.1.0-beta.6

4 months ago

0.1.0-beta.8

4 months ago

0.1.0-beta.1

4 months ago