@doordeck/doordeck-headless-sdk 0.206.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.
@@ -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
- copy(userId?: string, email?: string, displayName?: Nullable<string>, orphan?: boolean): com.doordeck.multiplatform.sdk.model.responses.UserForSiteResponse;
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;