@communecter/cocolight-api-client 1.0.70 → 1.0.71
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 +3 -3
- package/src/endpoints.module.ts +234 -222
- package/types/api/EndpointApi.types.d.ts +3 -3
- package/types/endpoints.module.d.ts +36 -8
package/package.json
CHANGED
|
@@ -2626,7 +2626,7 @@ export interface AddOrganizationData {
|
|
|
2626
2626
|
/**
|
|
2627
2627
|
* Site web
|
|
2628
2628
|
*/
|
|
2629
|
-
url?: string;
|
|
2629
|
+
url?: string | "";
|
|
2630
2630
|
preferences?: {
|
|
2631
2631
|
/**
|
|
2632
2632
|
* Open data (true/false)
|
|
@@ -2744,7 +2744,7 @@ export interface AddProjectData {
|
|
|
2744
2744
|
/**
|
|
2745
2745
|
* Site web
|
|
2746
2746
|
*/
|
|
2747
|
-
url?: string;
|
|
2747
|
+
url?: string | "";
|
|
2748
2748
|
preferences?: {
|
|
2749
2749
|
/**
|
|
2750
2750
|
* Open data (true/false)
|
|
@@ -3040,7 +3040,7 @@ export interface AddEventData {
|
|
|
3040
3040
|
/**
|
|
3041
3041
|
* Site web
|
|
3042
3042
|
*/
|
|
3043
|
-
url?: string;
|
|
3043
|
+
url?: string | "";
|
|
3044
3044
|
/**
|
|
3045
3045
|
* Email de l’organisation
|
|
3046
3046
|
*/
|