File tree 3 files changed +10
-0
lines changed
clerk-js/src/core/resources
3 files changed +10
-0
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ ' @clerk/clerk-js ' : patch
3
+ ' @clerk/types ' : patch
4
+ ---
5
+
6
+ Add afterJoinWaitlistUrl to DisplayConfig resource
Original file line number Diff line number Diff line change @@ -47,6 +47,7 @@ export class DisplayConfig extends BaseResource implements DisplayConfigResource
47
47
termsUrl ! : string ;
48
48
privacyPolicyUrl ! : string ;
49
49
waitlistUrl ! : string ;
50
+ afterJoinWaitlistUrl ! : string ;
50
51
51
52
public constructor ( data : DisplayConfigJSON ) {
52
53
super ( ) ;
@@ -93,6 +94,7 @@ export class DisplayConfig extends BaseResource implements DisplayConfigResource
93
94
this . termsUrl = data . terms_url ;
94
95
this . privacyPolicyUrl = data . privacy_policy_url ;
95
96
this . waitlistUrl = data . waitlist_url ;
97
+ this . afterJoinWaitlistUrl = data . after_join_waitlist_url ;
96
98
return this ;
97
99
}
98
100
}
Original file line number Diff line number Diff line change @@ -41,6 +41,7 @@ export interface DisplayConfigJSON {
41
41
terms_url : string ;
42
42
privacy_policy_url : string ;
43
43
waitlist_url : string ;
44
+ after_join_waitlist_url : string ;
44
45
}
45
46
46
47
export interface DisplayConfigResource extends ClerkResource {
@@ -84,4 +85,5 @@ export interface DisplayConfigResource extends ClerkResource {
84
85
termsUrl : string ;
85
86
privacyPolicyUrl : string ;
86
87
waitlistUrl : string ;
88
+ afterJoinWaitlistUrl : string ;
87
89
}
You can’t perform that action at this time.
0 commit comments