offline license structure
This commit is contained in:
parent
7c4fe15781
commit
052a74f1d7
|
@ -2,7 +2,7 @@ import {
|
||||||
Billing,
|
Billing,
|
||||||
Customer,
|
Customer,
|
||||||
Feature,
|
Feature,
|
||||||
License,
|
License, OfflineLicense,
|
||||||
PlanModel,
|
PlanModel,
|
||||||
PlanType,
|
PlanType,
|
||||||
PriceDuration,
|
PriceDuration,
|
||||||
|
@ -11,6 +11,7 @@ import {
|
||||||
Quotas,
|
Quotas,
|
||||||
Subscription,
|
Subscription,
|
||||||
} from "@budibase/types"
|
} from "@budibase/types"
|
||||||
|
import { generator } from "./generator"
|
||||||
|
|
||||||
export function price(): PurchasedPrice {
|
export function price(): PurchasedPrice {
|
||||||
return {
|
return {
|
||||||
|
@ -127,14 +128,16 @@ export function subscription(): Subscription {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export const license = (
|
interface GenerateLicenseOpts {
|
||||||
opts: {
|
|
||||||
quotas?: Quotas
|
quotas?: Quotas
|
||||||
plan?: PurchasedPlan
|
plan?: PurchasedPlan
|
||||||
planType?: PlanType
|
planType?: PlanType
|
||||||
features?: Feature[]
|
features?: Feature[]
|
||||||
billing?: Billing
|
billing?: Billing
|
||||||
} = {}
|
}
|
||||||
|
|
||||||
|
export const license = (
|
||||||
|
opts: GenerateLicenseOpts = {}
|
||||||
): License => {
|
): License => {
|
||||||
return {
|
return {
|
||||||
features: opts.features || [],
|
features: opts.features || [],
|
||||||
|
@ -143,3 +146,17 @@ export const license = (
|
||||||
billing: opts.billing || billing(),
|
billing: opts.billing || billing(),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export function offlineLicense (
|
||||||
|
opts: GenerateLicenseOpts = {}
|
||||||
|
): OfflineLicense {
|
||||||
|
const base = license(opts)
|
||||||
|
return {
|
||||||
|
...base,
|
||||||
|
expireAt: new Date().toISOString(),
|
||||||
|
identifier: {
|
||||||
|
installId: generator.guid(),
|
||||||
|
tenantId: generator.guid()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue