@communecter/cocolight-api-client 1.0.95 → 1.0.96

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.95",
3
+ "version": "1.0.96",
4
4
  "description": "Client Axios simplifié pour l'API cocolight",
5
5
  "repository": {
6
6
  "type": "git",
@@ -3062,24 +3062,26 @@ export interface AddEventData {
3062
3062
  };
3063
3063
  };
3064
3064
  /**
3065
- * Objet contenant les entités parentes (clé = ID). null signifie que les parents ne sont pas modifiés.
3065
+ * Objet contenant les entités parentes (clé = ID), ou chaîne vide "" pour effacer les parents.
3066
3066
  */
3067
- parent?: {
3068
- /**
3069
- * This interface was referenced by `undefined`'s JSON-Schema definition
3070
- * via the `patternProperty` "^(?:[a-f0-9]{24}|@userId)$".
3071
- */
3072
- [k: string]: {
3073
- /**
3074
- * Type d'entité parent
3075
- */
3076
- type: string;
3077
- /**
3078
- * Nom de l'entité parent
3079
- */
3080
- name?: string;
3081
- };
3082
- };
3067
+ parent?:
3068
+ | {
3069
+ /**
3070
+ * This interface was referenced by `undefined`'s JSON-Schema definition
3071
+ * via the `patternProperty` "^(?:[a-f0-9]{24}|@userId)$".
3072
+ */
3073
+ [k: string]: {
3074
+ /**
3075
+ * Type d'entité parent
3076
+ */
3077
+ type: string;
3078
+ /**
3079
+ * Nom de l'entité parent
3080
+ */
3081
+ name?: string;
3082
+ };
3083
+ }
3084
+ | "";
3083
3085
  /**
3084
3086
  * Nom de l'événement
3085
3087
  */