@communecter/cocolight-api-client 1.0.143 → 1.0.144
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/dist/cocolight-api-client.browser.js +1 -1
- package/dist/cocolight-api-client.cjs +1 -1
- package/dist/cocolight-api-client.mjs.js +1 -1
- package/dist/cocolight-api-client.vite.mjs.js +1 -1
- package/dist/cocolight-api-client.vite.mjs.js.map +1 -1
- package/package.json +1 -1
- package/src/api/EndpointApi.types.ts +9 -0
- package/src/endpoints.module.ts +87 -56
- package/types/api/EndpointApi.types.d.ts +9 -0
- package/types/endpoints.module.d.ts +17 -1
package/package.json
CHANGED
|
@@ -3517,6 +3517,15 @@ export interface AddPoiData {
|
|
|
3517
3517
|
* Utilisateur de l'équipement
|
|
3518
3518
|
*/
|
|
3519
3519
|
equip_utilisateur?: string[];
|
|
3520
|
+
/**
|
|
3521
|
+
* Source d'insertion (costum)
|
|
3522
|
+
*/
|
|
3523
|
+
source?: {
|
|
3524
|
+
insertOrign?: string;
|
|
3525
|
+
keys?: string[];
|
|
3526
|
+
key?: string;
|
|
3527
|
+
[k: string]: unknown;
|
|
3528
|
+
};
|
|
3520
3529
|
[k: string]: unknown;
|
|
3521
3530
|
}
|
|
3522
3531
|
|