@solibo/home-api 1.7.23 → 1.7.25
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/package.json +1 -1
- package/solibo-sdk-sdk-home-api.d.mts +125 -0
- package/solibo-sdk-sdk-home-api.mjs +40854 -39748
package/package.json
CHANGED
|
@@ -1885,6 +1885,130 @@ export declare namespace BulkPublishSMSBroadcastsSummary {
|
|
|
1885
1885
|
const constructor: abstract new () => BulkPublishSMSBroadcastsSummary;
|
|
1886
1886
|
}
|
|
1887
1887
|
}
|
|
1888
|
+
export declare class BulkUpdateCompanyDetailedCommand {
|
|
1889
|
+
constructor(dryRun: Nullable<boolean> | undefined, items: KtList<BulkUpdateCompanyDetailedItemCommand>);
|
|
1890
|
+
get dryRun(): Nullable<boolean>;
|
|
1891
|
+
get items(): KtList<BulkUpdateCompanyDetailedItemCommand>;
|
|
1892
|
+
copy(dryRun?: Nullable<boolean>, items?: KtList<BulkUpdateCompanyDetailedItemCommand>): BulkUpdateCompanyDetailedCommand;
|
|
1893
|
+
toString(): string;
|
|
1894
|
+
hashCode(): number;
|
|
1895
|
+
equals(other: Nullable<any>): boolean;
|
|
1896
|
+
}
|
|
1897
|
+
export declare namespace BulkUpdateCompanyDetailedCommand {
|
|
1898
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1899
|
+
namespace $metadata$ {
|
|
1900
|
+
const constructor: abstract new () => BulkUpdateCompanyDetailedCommand;
|
|
1901
|
+
}
|
|
1902
|
+
}
|
|
1903
|
+
export declare class BulkUpdateCompanyDetailedItemCommand {
|
|
1904
|
+
constructor(clientReference: Nullable<string> | undefined, command: UpdateCompanyDetailedCommand, companyId: bigint);
|
|
1905
|
+
get clientReference(): Nullable<string>;
|
|
1906
|
+
get command(): UpdateCompanyDetailedCommand;
|
|
1907
|
+
get companyId(): bigint;
|
|
1908
|
+
copy(clientReference?: Nullable<string>, command?: UpdateCompanyDetailedCommand, companyId?: bigint): BulkUpdateCompanyDetailedItemCommand;
|
|
1909
|
+
toString(): string;
|
|
1910
|
+
hashCode(): number;
|
|
1911
|
+
equals(other: Nullable<any>): boolean;
|
|
1912
|
+
}
|
|
1913
|
+
export declare namespace BulkUpdateCompanyDetailedItemCommand {
|
|
1914
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1915
|
+
namespace $metadata$ {
|
|
1916
|
+
const constructor: abstract new () => BulkUpdateCompanyDetailedItemCommand;
|
|
1917
|
+
}
|
|
1918
|
+
}
|
|
1919
|
+
export declare class BulkUpdateCompanyDetailedItemResult {
|
|
1920
|
+
constructor(clientReference: Nullable<string> | undefined, company: Nullable<CompanyDetailed> | undefined, companyId: bigint, index: bigint, status: BulkUpdateCompanyDetailedItemStatus);
|
|
1921
|
+
get clientReference(): Nullable<string>;
|
|
1922
|
+
get company(): Nullable<CompanyDetailed>;
|
|
1923
|
+
get companyId(): bigint;
|
|
1924
|
+
get index(): bigint;
|
|
1925
|
+
get status(): BulkUpdateCompanyDetailedItemStatus;
|
|
1926
|
+
copy(clientReference?: Nullable<string>, company?: Nullable<CompanyDetailed>, companyId?: bigint, index?: bigint, status?: BulkUpdateCompanyDetailedItemStatus): BulkUpdateCompanyDetailedItemResult;
|
|
1927
|
+
toString(): string;
|
|
1928
|
+
hashCode(): number;
|
|
1929
|
+
equals(other: Nullable<any>): boolean;
|
|
1930
|
+
}
|
|
1931
|
+
export declare namespace BulkUpdateCompanyDetailedItemResult {
|
|
1932
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1933
|
+
namespace $metadata$ {
|
|
1934
|
+
const constructor: abstract new () => BulkUpdateCompanyDetailedItemResult;
|
|
1935
|
+
}
|
|
1936
|
+
}
|
|
1937
|
+
export declare abstract class BulkUpdateCompanyDetailedItemStatus {
|
|
1938
|
+
private constructor();
|
|
1939
|
+
static get UPDATED(): BulkUpdateCompanyDetailedItemStatus & {
|
|
1940
|
+
get name(): "UPDATED";
|
|
1941
|
+
get ordinal(): 0;
|
|
1942
|
+
};
|
|
1943
|
+
static get VALIDATED(): BulkUpdateCompanyDetailedItemStatus & {
|
|
1944
|
+
get name(): "VALIDATED";
|
|
1945
|
+
get ordinal(): 1;
|
|
1946
|
+
};
|
|
1947
|
+
static get Updated(): BulkUpdateCompanyDetailedItemStatus & {
|
|
1948
|
+
get name(): "UPDATED";
|
|
1949
|
+
get ordinal(): 0;
|
|
1950
|
+
};
|
|
1951
|
+
static get Validated(): BulkUpdateCompanyDetailedItemStatus & {
|
|
1952
|
+
get name(): "VALIDATED";
|
|
1953
|
+
get ordinal(): 1;
|
|
1954
|
+
};
|
|
1955
|
+
static values(): [typeof BulkUpdateCompanyDetailedItemStatus.UPDATED, typeof BulkUpdateCompanyDetailedItemStatus.VALIDATED];
|
|
1956
|
+
static valueOf(value: string): BulkUpdateCompanyDetailedItemStatus;
|
|
1957
|
+
get name(): "UPDATED" | "VALIDATED";
|
|
1958
|
+
get ordinal(): 0 | 1;
|
|
1959
|
+
get value(): string;
|
|
1960
|
+
toString(): string;
|
|
1961
|
+
}
|
|
1962
|
+
export declare namespace BulkUpdateCompanyDetailedItemStatus {
|
|
1963
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1964
|
+
namespace $metadata$ {
|
|
1965
|
+
const constructor: abstract new () => BulkUpdateCompanyDetailedItemStatus;
|
|
1966
|
+
}
|
|
1967
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
1968
|
+
private constructor();
|
|
1969
|
+
}
|
|
1970
|
+
namespace Companion {
|
|
1971
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1972
|
+
namespace $metadata$ {
|
|
1973
|
+
abstract class constructor /* implements SerializerFactory */ {
|
|
1974
|
+
fromValue(value: string): Nullable<BulkUpdateCompanyDetailedItemStatus>;
|
|
1975
|
+
private constructor();
|
|
1976
|
+
}
|
|
1977
|
+
}
|
|
1978
|
+
}
|
|
1979
|
+
}
|
|
1980
|
+
export declare class BulkUpdateCompanyDetailedResult {
|
|
1981
|
+
constructor(items: KtList<BulkUpdateCompanyDetailedItemResult>, summary?: Nullable<BulkUpdateCompanyDetailedSummary>);
|
|
1982
|
+
get items(): KtList<BulkUpdateCompanyDetailedItemResult>;
|
|
1983
|
+
get summary(): Nullable<BulkUpdateCompanyDetailedSummary>;
|
|
1984
|
+
copy(items?: KtList<BulkUpdateCompanyDetailedItemResult>, summary?: Nullable<BulkUpdateCompanyDetailedSummary>): BulkUpdateCompanyDetailedResult;
|
|
1985
|
+
toString(): string;
|
|
1986
|
+
hashCode(): number;
|
|
1987
|
+
equals(other: Nullable<any>): boolean;
|
|
1988
|
+
}
|
|
1989
|
+
export declare namespace BulkUpdateCompanyDetailedResult {
|
|
1990
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1991
|
+
namespace $metadata$ {
|
|
1992
|
+
const constructor: abstract new () => BulkUpdateCompanyDetailedResult;
|
|
1993
|
+
}
|
|
1994
|
+
}
|
|
1995
|
+
export declare class BulkUpdateCompanyDetailedSummary {
|
|
1996
|
+
constructor(dryRun: boolean, total: bigint, updated: bigint, validated: bigint);
|
|
1997
|
+
get dryRun(): boolean;
|
|
1998
|
+
get total(): bigint;
|
|
1999
|
+
get updated(): bigint;
|
|
2000
|
+
get validated(): bigint;
|
|
2001
|
+
copy(dryRun?: boolean, total?: bigint, updated?: bigint, validated?: bigint): BulkUpdateCompanyDetailedSummary;
|
|
2002
|
+
toString(): string;
|
|
2003
|
+
hashCode(): number;
|
|
2004
|
+
equals(other: Nullable<any>): boolean;
|
|
2005
|
+
}
|
|
2006
|
+
export declare namespace BulkUpdateCompanyDetailedSummary {
|
|
2007
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2008
|
+
namespace $metadata$ {
|
|
2009
|
+
const constructor: abstract new () => BulkUpdateCompanyDetailedSummary;
|
|
2010
|
+
}
|
|
2011
|
+
}
|
|
1888
2012
|
export declare class BulkUserActions {
|
|
1889
2013
|
constructor(items: KtList<UserActionsByCompany>);
|
|
1890
2014
|
get items(): KtList<UserActionsByCompany>;
|
|
@@ -18414,6 +18538,7 @@ export declare class CompanyApi extends ApiClient.$metadata$.constructor {
|
|
|
18414
18538
|
updateCompanyDetailed(companyId: bigint, updateCompanyDetailedCommand: UpdateCompanyDetailedCommand): Promise<HttpResponse<CompanyDetailed>>;
|
|
18415
18539
|
updateCompanyOrdinances(companyId: bigint, upsertOrdinancesCommand: UpsertOrdinancesCommand): Promise<HttpResponse<CompanyOrdinances>>;
|
|
18416
18540
|
updateImportDraft(draftId: bigint, updateKartverketResultCommand: UpdateKartverketResultCommand): Promise<HttpResponse<KartverketResult>>;
|
|
18541
|
+
updateMultipleCompanyDetailed(bulkUpdateCompanyDetailedCommand: BulkUpdateCompanyDetailedCommand): Promise<HttpResponse<BulkUpdateCompanyDetailedResult>>;
|
|
18417
18542
|
}
|
|
18418
18543
|
export declare namespace CompanyApi {
|
|
18419
18544
|
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|