@solibo/solibo-sdk 1.1.112 → 1.1.113

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.
@@ -13859,14 +13859,14 @@ export declare namespace UpdateConversationCategoryCommand {
13859
13859
  }
13860
13860
  export interface UpdateConversationCommandProps {
13861
13861
  categoryId: bigint;
13862
- content: string;
13862
+ content?: string | null | undefined;
13863
13863
  title: string;
13864
13864
  }
13865
13865
  export declare class UpdateConversationCommand {
13866
13866
  constructor(props: UpdateConversationCommandProps);
13867
- constructor(categoryId: bigint, content: string, title: string);
13867
+ constructor(categoryId: bigint, content: string | null | undefined, title: string);
13868
13868
  get categoryId(): bigint;
13869
- get content(): string;
13869
+ get content(): string | null | undefined;
13870
13870
  get title(): string;
13871
13871
  }
13872
13872
  export declare namespace UpdateConversationCommand {
@@ -15901,7 +15901,7 @@ export declare class SettlementApi extends ApiClient.$metadata$.constructor {
15901
15901
  closeSettlement(companyId: bigint, settlementId: bigint): Promise<HttpResponse<void>>;
15902
15902
  createSettlement(companyId: bigint, createSettlementCommand: CreateSettlementCommand): Promise<HttpResponse<Settlement>>;
15903
15903
  createSettlementCustomCost(companyId: bigint, settlementId: bigint, createSettlementCustomCostCommand: CreateSettlementCustomCostCommand): Promise<HttpResponse<SettlementCustomCost>>;
15904
- createSettlementProviderConfiguration(companyId: bigint, createSettlementProviderConfigurationCommand: CreateSettlementProviderConfigurationCommand): Promise<HttpResponse<void>>;
15904
+ createSettlementProviderConfiguration(companyId: bigint, createSettlementProviderConfigurationCommand: CreateSettlementProviderConfigurationCommand): Promise<HttpResponse<SettlementProviderConfiguration>>;
15905
15905
  deleteSettlement(companyId: bigint, settlementId: bigint): Promise<HttpResponse<void>>;
15906
15906
  deleteSettlementCustomCost(companyId: bigint, settlementId: bigint, customCostId: bigint): Promise<HttpResponse<void>>;
15907
15907
  indexSettlement(companyId: bigint): Promise<HttpResponse<KtList<Settlement>>>;
@@ -15915,7 +15915,7 @@ export declare class SettlementApi extends ApiClient.$metadata$.constructor {
15915
15915
  showSettlementProviderConfigurationById(companyId: bigint, configurationId: bigint): Promise<HttpResponse<SettlementProviderConfiguration>>;
15916
15916
  updateSettlement(companyId: bigint, settlementId: bigint, updateSettlementCommand: UpdateSettlementCommand): Promise<HttpResponse<Settlement>>;
15917
15917
  updateSettlementCustomCost(companyId: bigint, settlementId: bigint, customCostId: bigint, updateSettlementCustomCostCommand: UpdateSettlementCustomCostCommand): Promise<HttpResponse<SettlementCustomCost>>;
15918
- updateSettlementProviderConfiguration(companyId: bigint, configurationId: bigint, updateSettlementProviderConfigurationCommand: UpdateSettlementProviderConfigurationCommand): Promise<HttpResponse<void>>;
15918
+ updateSettlementProviderConfiguration(companyId: bigint, configurationId: bigint, updateSettlementProviderConfigurationCommand: UpdateSettlementProviderConfigurationCommand): Promise<HttpResponse<SettlementProviderConfiguration>>;
15919
15919
  upsertSettlementProviderCredentials(companyId: bigint, configurationId: bigint, upsertSettlementProviderCredentialsCommand: UpsertSettlementProviderCredentialsCommand): Promise<HttpResponse<void>>;
15920
15920
  }
15921
15921
  export declare namespace SettlementApi {