Skip to content

Commit

Permalink
Add ssoAutoJoin to LBID
Browse files Browse the repository at this point in the history
  • Loading branch information
lounjukk committed Nov 6, 2023
1 parent f2581b6 commit 38e4598
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/BusinessService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -114,11 +114,14 @@ export type Business = {
* The department name of the business
*/
department: string;

/**
* Recurly subscription ID for businesses migrated from Recurly.
*/
businessIdLiteSubscriptionId: string | null | undefined;
/**
* If set to true by the admin, users will be automatically added to the business when they log in via SSO.
*/
ssoAutoJoin?: boolean;
};

/**
Expand Down Expand Up @@ -604,6 +607,7 @@ class BusinessService extends Base {
| "updatedAt"
| "businessUsers"
| "external"
| "ssoAutoJoin"
| "businessIdLiteSubscriptionId"
> & {
id?: string;
Expand Down

0 comments on commit 38e4598

Please sign in to comment.