@doordeck/doordeck-headless-sdk 0.205.0 → 0.207.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/kotlin/doordeck-sdk.d.ts +3 -2
- package/kotlin/doordeck-sdk.js +1804 -1779
- package/package.json +1 -1
package/kotlin/doordeck-sdk.d.ts
CHANGED
|
@@ -2656,12 +2656,13 @@ export declare namespace com.doordeck.multiplatform.sdk.model.responses {
|
|
|
2656
2656
|
}
|
|
2657
2657
|
}
|
|
2658
2658
|
class UserForSiteResponse {
|
|
2659
|
-
constructor(userId: string, email: string, displayName: Nullable<string> | undefined, orphan: boolean);
|
|
2659
|
+
constructor(userId: string, email: string, displayName: Nullable<string> | undefined, orphan: boolean, foreign: boolean);
|
|
2660
2660
|
get userId(): string;
|
|
2661
2661
|
get email(): string;
|
|
2662
2662
|
get displayName(): Nullable<string>;
|
|
2663
2663
|
get orphan(): boolean;
|
|
2664
|
-
|
|
2664
|
+
get foreign(): boolean;
|
|
2665
|
+
copy(userId?: string, email?: string, displayName?: Nullable<string>, orphan?: boolean, foreign?: boolean): com.doordeck.multiplatform.sdk.model.responses.UserForSiteResponse;
|
|
2665
2666
|
toString(): string;
|
|
2666
2667
|
hashCode(): number;
|
|
2667
2668
|
equals(other: Nullable<any>): boolean;
|