@communecter/cocolight-api-client 1.0.49 → 1.0.51

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@communecter/cocolight-api-client",
3
- "version": "1.0.49",
3
+ "version": "1.0.51",
4
4
  "description": "Client Axios simplifié pour l'API cocolight",
5
5
  "repository": {
6
6
  "type": "git",
@@ -3984,11 +3984,13 @@ export interface GlobalAutocompleteCostumData {
3984
3984
  */
3985
3985
  count: true;
3986
3986
  /**
3987
- * Filtres additionnels appliqués à la recherche
3987
+ * Filtres additionnels appliqués à la recherche (objet ou chaîne vide)
3988
3988
  */
3989
- filters?: {
3990
- [k: string]: unknown;
3991
- };
3989
+ filters?:
3990
+ | {
3991
+ [k: string]: unknown;
3992
+ }
3993
+ | "";
3992
3994
  /**
3993
3995
  * Liste des champs à retourner
3994
3996
  */
@@ -4006,11 +4008,11 @@ export interface GlobalAutocompleteCostumData {
4006
4008
  /**
4007
4009
  * Indique si la recherche est effectuée à partir d'une carte (toujours désactivé)
4008
4010
  */
4009
- mapUsed: boolean;
4011
+ mapUsed?: true;
4010
4012
  /**
4011
4013
  * Indique si on doit exclure les éléments avec une source
4012
4014
  */
4013
- notSourceKey?: boolean;
4015
+ notSourceKey?: true;
4014
4016
  /**
4015
4017
  * ID du contexte de recherche (actuellement vide)
4016
4018
  */
@@ -4026,7 +4028,7 @@ export interface GlobalAutocompleteCostumData {
4026
4028
  /**
4027
4029
  * Clés de source pour la recherche
4028
4030
  */
4029
- sourceKey: string[];
4031
+ sourceKey?: string[];
4030
4032
  /**
4031
4033
  * Indique si le mode d'édition du costume est activé (toujours désactivé)
4032
4034
  */