You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/backend/src/api/endpoints/InstanceApi.ts
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -52,17 +52,17 @@ type UpdateOrganizationSettingsParams = {
52
52
adminDeleteEnabled?: boolean|null|undefined;
53
53
domainsEnabled?: boolean|null|undefined;
54
54
/**
55
-
* Specifies which [enrollment modes](https://clerk.com/docs/guides/organizations/verified-domains#enable-verified-domains) to enable for your Organization Domains.
55
+
* Specifies which [enrollment modes](https://clerk.com/docs/guides/organizations/add-members/verified-domains#enable-verified-domains) to enable for your Organization Domains.
56
56
*
57
57
* @remarks Supported modes are 'automatic_invitation' & 'automatic_suggestion'.
58
58
*/
59
59
domainsEnrollmentModes?: Array<string>|undefined;
60
60
/**
61
-
* Specifies what the default organization role is for an organization creator.
61
+
* Specifies what the default Organization Role is for an Organization creator.
62
62
*/
63
63
creatorRoleId?: string|null|undefined;
64
64
/**
65
-
* Specifies what the default organization role is for the organization domains.
65
+
* Specifies what the default Organization Role is for the Organization Domains.
@@ -82,7 +82,7 @@ type GetOrganizationMembershipListParams = ClerkPaginationRequest<{
82
82
/* Returns users with the specified web3 wallet addresses. Accepts up to 100 web3 wallet addresses. Any web3 wallet addressed not found are ignored. */
83
83
web3Wallet?: string[];
84
84
85
-
/* Returns users with the specified roles. Accepts up to 100 roles. Any roles not found are ignored. */
85
+
/* Returns users with the specified Roles. Accepts up to 100 Roles. Any Roles not found are ignored. */
86
86
role?: OrganizationMembershipRole[];
87
87
88
88
/**
@@ -139,7 +139,7 @@ type GetOrganizationMembershipListParams = ClerkPaginationRequest<{
Copy file name to clipboardExpand all lines: packages/backend/src/api/resources/CommercePlan.ts
+14-14Lines changed: 14 additions & 14 deletions
Original file line number
Diff line number
Diff line change
@@ -4,62 +4,62 @@ import { Feature } from './Feature';
4
4
importtype{BillingPlanJSON}from'./JSON';
5
5
6
6
/**
7
-
* The `BillingPlan` object is similar to the [`BillingPlanResource`](/docs/reference/javascript/types/billing-plan-resource) object as it holds information about a plan, as well as methods for managing it. However, the `BillingPlan` object is different in that it is used in the [Backend API](https://clerk.com/docs/reference/backend-api/tag/commerce/get/commerce/plans) and is not directly accessible from the Frontend API.
7
+
* The `BillingPlan` object is similar to the [`BillingPlanResource`](/docs/reference/javascript/types/billing-plan-resource) object as it holds information about a Plan, as well as methods for managing it. However, the `BillingPlan` object is different in that it is used in the [Backend API](https://clerk.com/docs/reference/backend-api/tag/commerce/get/commerce/plans) and is not directly accessible from the Frontend API.
8
8
*
9
9
* @experimental This is an experimental API for the Billing feature that is available under a public beta, and the API is subject to change. It is advised to [pin](https://clerk.com/docs/pinning) the SDK version and the clerk-js version to avoid breaking changes.
10
10
*/
11
11
exportclassBillingPlan{
12
12
constructor(
13
13
/**
14
-
* The unique identifier for the plan.
14
+
* The unique identifier for the Plan.
15
15
*/
16
16
readonlyid: string,
17
17
/**
18
-
* The name of the plan.
18
+
* The name of the Plan.
19
19
*/
20
20
readonlyname: string,
21
21
/**
22
-
* The URL-friendly identifier of the plan.
22
+
* The URL-friendly identifier of the Plan.
23
23
*/
24
24
readonlyslug: string,
25
25
/**
26
-
* The description of the plan.
26
+
* The description of the Plan.
27
27
*/
28
28
readonlydescription: string|null,
29
29
/**
30
-
* Whether the plan is the default plan.
30
+
* Whether the Plan is the default Plan.
31
31
*/
32
32
readonlyisDefault: boolean,
33
33
/**
34
-
* Whether the plan is recurring.
34
+
* Whether the Plan is recurring.
35
35
*/
36
36
readonlyisRecurring: boolean,
37
37
/**
38
-
* Whether the plan has a base fee.
38
+
* Whether the Plan has a base fee.
39
39
*/
40
40
readonlyhasBaseFee: boolean,
41
41
/**
42
-
* Whether the plan is displayed in the `<PriceTable/>` component.
42
+
* Whether the Plan is displayed in the `<PriceTable/>` component.
0 commit comments