@communecter/cocolight-api-client 1.0.143 → 1.0.145
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/BaseEntity.ts +9 -2
- package/src/api/EndpointApi.types.ts +9 -0
- package/src/api/User.ts +3 -1
- package/src/endpoints.module.ts +87 -56
- package/types/api/EndpointApi.types.d.ts +9 -0
- package/types/endpoints.module.d.ts +17 -1
|
@@ -3276,6 +3276,15 @@ export interface AddPoiData {
|
|
|
3276
3276
|
* Utilisateur de l'équipement
|
|
3277
3277
|
*/
|
|
3278
3278
|
equip_utilisateur?: string[];
|
|
3279
|
+
/**
|
|
3280
|
+
* Source d'insertion (costum)
|
|
3281
|
+
*/
|
|
3282
|
+
source?: {
|
|
3283
|
+
insertOrign?: string;
|
|
3284
|
+
keys?: string[];
|
|
3285
|
+
key?: string;
|
|
3286
|
+
[k: string]: unknown;
|
|
3287
|
+
};
|
|
3279
3288
|
[k: string]: unknown;
|
|
3280
3289
|
}
|
|
3281
3290
|
export interface AddEventData {
|
|
@@ -21802,6 +21802,23 @@ declare const endpoints: {
|
|
|
21802
21802
|
default: string;
|
|
21803
21803
|
type: string;
|
|
21804
21804
|
};
|
|
21805
|
+
source: {
|
|
21806
|
+
properties: {
|
|
21807
|
+
insertOrign: {
|
|
21808
|
+
type: string;
|
|
21809
|
+
};
|
|
21810
|
+
key: {
|
|
21811
|
+
type: string;
|
|
21812
|
+
};
|
|
21813
|
+
keys: {
|
|
21814
|
+
items: {
|
|
21815
|
+
type: string;
|
|
21816
|
+
};
|
|
21817
|
+
type: string;
|
|
21818
|
+
};
|
|
21819
|
+
};
|
|
21820
|
+
type: string;
|
|
21821
|
+
};
|
|
21805
21822
|
tags: {
|
|
21806
21823
|
items: {
|
|
21807
21824
|
type: string;
|
|
@@ -21919,7 +21936,6 @@ declare const endpoints: {
|
|
|
21919
21936
|
preferences?: undefined;
|
|
21920
21937
|
role?: undefined;
|
|
21921
21938
|
siteSurfaceArea?: undefined;
|
|
21922
|
-
source?: undefined;
|
|
21923
21939
|
telephone?: undefined;
|
|
21924
21940
|
thematic?: undefined;
|
|
21925
21941
|
typePlace?: undefined;
|