@doordeck/doordeck-headless-sdk 0.144.0 → 0.146.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.
@@ -818,7 +818,7 @@ export declare namespace com.doordeck.multiplatform.sdk.api {
818
818
  /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
819
819
  namespace PlatformApi.$metadata$ {
820
820
  abstract class constructor {
821
- createApplication(application: com.doordeck.multiplatform.sdk.model.data.PlatformOperations.CreateApplication): Promise<any>;
821
+ createApplication(application: com.doordeck.multiplatform.sdk.model.data.PlatformOperations.CreateApplication): Promise<string>;
822
822
  listApplications(): Promise<Array<com.doordeck.multiplatform.sdk.model.responses.ApplicationResponse>>;
823
823
  getApplication(applicationId: string): Promise<com.doordeck.multiplatform.sdk.model.responses.ApplicationResponse>;
824
824
  updateApplicationName(applicationId: string, name: string): Promise<any>;
@@ -2460,15 +2460,16 @@ export declare namespace com.doordeck.multiplatform.sdk.model.responses {
2460
2460
  }
2461
2461
  export declare namespace com.doordeck.multiplatform.sdk.model.responses {
2462
2462
  class SiteResponse {
2463
- constructor(id: string, name: string, longitude: number, latitude: number, radius: number, created: string, updated: string);
2463
+ constructor(id: string, name: string, colour: string, longitude: number, latitude: number, radius: number, created: string, updated: string);
2464
2464
  get id(): string;
2465
2465
  get name(): string;
2466
+ get colour(): string;
2466
2467
  get longitude(): number;
2467
2468
  get latitude(): number;
2468
2469
  get radius(): number;
2469
2470
  get created(): string;
2470
2471
  get updated(): string;
2471
- copy(id?: string, name?: string, longitude?: number, latitude?: number, radius?: number, created?: string, updated?: string): com.doordeck.multiplatform.sdk.model.responses.SiteResponse;
2472
+ copy(id?: string, name?: string, colour?: string, longitude?: number, latitude?: number, radius?: number, created?: string, updated?: string): com.doordeck.multiplatform.sdk.model.responses.SiteResponse;
2472
2473
  toString(): string;
2473
2474
  hashCode(): number;
2474
2475
  equals(other: Nullable<any>): boolean;