birme-vacay-planner
- Description:
Simplify team trips with Vacation Planner, a seamless web app for scheduling and managing vacations. Enjoy easy calendar integration, real-time updates, and role-based access control for a stress-free planning experience.
- Copyright:
- 2025 Eyevinn Technology AB
Methods
(async, static) createBirmeVacayPlannerInstance(context, body) → {BirmeVacayPlanner}
- Description:
Create a new Vacay Planner instance
Example
import { Context } from '@osaas/client-core';
import { createBirmeVacayPlannerInstance } from '@osaas/client-services';
const ctx = new Context();
const body: BirmeVacayPlannerConfig = { name: 'myinstance', ... };
const instance = await createBirmeVacayPlannerInstance(ctx, body);
console.log(instance.url);
Parameters:
| Name | Type | Description |
|---|---|---|
context |
Context | Open Source Cloud configuration context |
body |
BirmeVacayPlannerConfig | Service instance configuration |
Returns:
- Service instance
- Type
- BirmeVacayPlanner
(async, static) getBirmeVacayPlannerInstance(context, name) → {BirmeVacayPlanner}
- Description:
Get a Vacay Planner instance
Example
import { Context } from '@osaas/client-core';
import { getBirmeVacayPlannerInstance } from '@osaas/client-services';
const ctx = new Context();
const instance = await getBirmeVacayPlannerInstance(ctx, 'myinstance');
console.log(instance.url);
Parameters:
| Name | Type | Description |
|---|---|---|
context |
Context | Open Source Cloud configuration context |
name |
string | Name of the vacay-planner to be retrieved |
Returns:
- Service instance
- Type
- BirmeVacayPlanner
(async, static) removeBirmeVacayPlannerInstance(context, name)
- Description:
Remove a Vacay Planner instance
Parameters:
| Name | Type | Description |
|---|---|---|
context |
Context | Open Source Cloud configuration context |
name |
string | Name of the vacay-planner to be removed |