0.0.22 • Published 5 months ago
@airlst/sdk v0.0.22
WIP
Installation
yarn add @airlst/sdkUsage
Set API key
import { Api } from '@airlst/sdk'
Api.setApiKey('YOUR_API_KEY')Methods
Currently available methods:
Event methods
Get all company events
Important: This method requires that API key must be company bound!
import { Event } from '@airlst/sdk'
const { data } = await new Event().list()Get single event with UUID
import { Event } from '@airlst/sdk'
const { data } = await new Event().get('event-uuid')Get temporary signed url to upload file directly to cloud storage
import { Guest } from '@airlst/sdk'
await new Event().generateTemporaryUploadUrl(eventUuid, fileMimeType, false);Create temporary upload which can be attached to a guest extended field using upload uuid
import { Guest } from '@airlst/sdk'
await new Event().saveTemporaryUpload(eventUuid, temporaryUrlData, fileName, fileSize, fileMimeType, false);Guest methods
List all guests
import { Guest } from '@airlst/sdk'
const { data } = await new Guest('event-uuid').list({ page: 2, search: 'John' })Method accepts following parameters:
| Parameter | Type | Description |
|---|---|---|
page | number | Page number |
perPage | number | Number of items per page |
search | string | Quick search |
filters | array | Filters arrays |
filters.*.field | string | Filter field e.g: extended_fields->field1, booking:extended_fields->field1 |
filters.*.value | string | Filter field value |
filters.*.operator | string | Filter field operator. Optional. One of: eq (equal), neq (not equal), like, gt (greater than), gte (greater than or equal), lt (less than), lte (less than or equal). If operator is not provided eq will be used as default |
sorts | array | Sorts array |
sorts.*.field | string | Sort field |
sorts.*.direction | string | Sort field direction. One of: asc (ascending), desc (descending) |
sorts.*.order | number | Sort field order. Optional. Defines order/priority of the sort when sorting by multiple fields |
Validate guest code
import { Guest } from '@airlst/sdk'
const { data } = await new Guest('event-uuid').validatedCode('guest-code')Get guest with code
import { Guest } from '@airlst/sdk'
const { data } = await new Guest('event-uuid').get('guest-code')Create a new guest
import { Guest } from '@airlst/sdk'
const { data } = await new Guest('event-uuid').create({
status: 'confirmed',
contact: {
first_name: 'John',
last_name: 'Doe',
}
})Create a new companion guest
import { Guest } from '@airlst/sdk'
const { data } = await new Guest('event-uuid').createCompanion('guest-code', {
contact: {
first_name: 'John',
last_name: 'Doe',
}
})Update existing guest
import { Guest } from '@airlst/sdk'
const { data } = await new Guest('event-uuid').update('guest-code', { status: 'confirmed' })Archive guest
import { Guest } from '@airlst/sdk'
await new Guest('event-uuid').archive('guest-code')Restore an archived guest
import { Guest } from '@airlst/sdk'
const { data } = await new Guest('event-uuid').restore('guest-code')Delete guest
import { Guest } from '@airlst/sdk'
await new Guest('event-uuid').delete('guest-code')Check in a guest
import { Guest } from '@airlst/sdk'
const { data } = await new Guest('event-uuid').checkin('guest-code', {
type: Guest.CheckinType.CHECK_IN,
device: 'Mobile',
location: 'Munich',
timestamp: Math.round(+new Date() / 1000),
})Create recommendation
import { Guest } from '@airlst/sdk'
const { data } = await new Guest('event-uuid').createRecommendation('guest-code', {
status: 'confirmed',
contact: {
first_name: 'John',
last_name: 'Doe',
}
})Email Template methods
Retrieve all email templates for the event
import { EmailTemplate } from '@airlst/sdk'
const { data } = await new EmailTemplate('event-uuid').list()Send email template to selected guests
import { EmailTemplate } from '@airlst/sdk'
await new EmailTemplate('event-uuid').send('email-template-uuid',{
guests:[
"guest-code-1",
"guest-code-2"
]
})Contact methods
Validate guest code
import { Contact } from '@airlst/sdk'
const { data } = await new Contact().validateCode('contact-code')Get contact with code
import { Contact } from '@airlst/sdk'
const { data } = await new Contact().get('contact-code')Get events for the contact
import { Contact } from '@airlst/sdk'
const { data } = await new Contact().getEvents('contact-code')Get all guest attachments
import { Guest } from '@airlst/sdk'
await new Guest('event-uuid').getAttachments('guest-code')Get attachment signed downloadable URL
Note: The generated URL will be valid for 10 minutes
import { Guest } from '@airlst/sdk'
await new Guest('event-uuid').getAttachmentSignedUrl('guest-code','attachment-uuid')Bookables methods
Get list of bookable groups
import { Bookable } from '@airlst/sdk'
const { data } = await new Bookable('event-uuid').listGroups()Get list of bookable objects for group
import { Bookable } from '@airlst/sdk'
const { data } = await new Bookable('event-uuid').listBookables('bookable-group-uuid')Get list of availabilities for bookable object
import { Bookable } from '@airlst/sdk'
const { data } = await new Bookable('event-uuid').listAvailabilities('bookable-group-uuid', 'bookable-object-uuid', {
start_date: '2025-01-02',
end_date: '2025-02-03'
})Create reservation
import { Bookable } from '@airlst/sdk'
const { data } = await new Bookable('event-uuid').createReservation('bookable-group-uuid', {
guest_code: 'guest-code',
reservations: [
{
starts_at: '2025-02-04 13:20:00',
ends_at: '2025-02-04 13:40:00',
bookable_id: 'bookable-object-uuid'
}
]
})Delete reservation
import { Bookable } from '@airlst/sdk'
await new Bookable('event-uuid').deleteReservation('guest-code', 'reservation-uuid')0.0.20
6 months ago
0.0.21
6 months ago
0.0.22
5 months ago
0.0.12
10 months ago
0.0.13
7 months ago
0.0.14
7 months ago
0.0.15
7 months ago
0.0.16
7 months ago
0.0.17
7 months ago
0.0.18
7 months ago
0.0.19
6 months ago
0.0.11
1 year ago
0.0.9
1 year ago
0.0.8
1 year ago
0.0.7
2 years ago
0.0.6
2 years ago
0.0.3
2 years ago
0.0.5
2 years ago
0.0.4
2 years ago
0.0.2
2 years ago
0.0.1
3 years ago