@doordeck/doordeck-headless-sdk 0.200.0 → 0.201.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.
@@ -803,6 +803,7 @@ export declare namespace com.doordeck.multiplatform.sdk.api {
803
803
  addApplicationOwner(applicationId: string, userId: string): Promise<any>;
804
804
  removeApplicationOwner(applicationId: string, userId: string): Promise<any>;
805
805
  getApplicationOwnersDetails(applicationId: string): Promise<Array<com.doordeck.multiplatform.sdk.model.responses.ApplicationOwnerDetailsResponse>>;
806
+ getApplicationUsers(applicationId: string, pageSize?: number, lastUserRetrieved?: Nullable<string>): Promise<Array<com.doordeck.multiplatform.sdk.model.responses.ApplicationUserResponse>>;
806
807
  private constructor();
807
808
  }
808
809
  }
@@ -2587,6 +2588,30 @@ export declare namespace com.doordeck.multiplatform.sdk.model.responses {
2587
2588
  const constructor: abstract new () => GetLogoUploadUrlResponse;
2588
2589
  }
2589
2590
  }
2591
+ class ApplicationUserResponse {
2592
+ constructor(userId: string, foreignKey: Nullable<string> | undefined, displayName: Nullable<string> | undefined, email: Nullable<string> | undefined, emailVerified: boolean, telephone: Nullable<string> | undefined, telephoneVerified: boolean, emailIndexed: boolean, telephoneIndexed: boolean, foreignKeyIndexed: boolean, lastUpdated: string);
2593
+ get userId(): string;
2594
+ get foreignKey(): Nullable<string>;
2595
+ get displayName(): Nullable<string>;
2596
+ get email(): Nullable<string>;
2597
+ get emailVerified(): boolean;
2598
+ get telephone(): Nullable<string>;
2599
+ get telephoneVerified(): boolean;
2600
+ get emailIndexed(): boolean;
2601
+ get telephoneIndexed(): boolean;
2602
+ get foreignKeyIndexed(): boolean;
2603
+ get lastUpdated(): string;
2604
+ copy(userId?: string, foreignKey?: Nullable<string>, displayName?: Nullable<string>, email?: Nullable<string>, emailVerified?: boolean, telephone?: Nullable<string>, telephoneVerified?: boolean, emailIndexed?: boolean, telephoneIndexed?: boolean, foreignKeyIndexed?: boolean, lastUpdated?: string): com.doordeck.multiplatform.sdk.model.responses.ApplicationUserResponse;
2605
+ toString(): string;
2606
+ hashCode(): number;
2607
+ equals(other: Nullable<any>): boolean;
2608
+ }
2609
+ namespace ApplicationUserResponse {
2610
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
2611
+ namespace $metadata$ {
2612
+ const constructor: abstract new () => ApplicationUserResponse;
2613
+ }
2614
+ }
2590
2615
  }
2591
2616
  export declare namespace com.doordeck.multiplatform.sdk.model.responses {
2592
2617
  class SiteResponse {