@communecter/cocolight-api-client 1.0.79 → 1.0.81
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/ApiClient.ts +7 -0
- package/src/api/BaseEntity.ts +26 -1
- package/src/api/EndpointApi.types.ts +23 -0
- package/src/endpoints.module.ts +1 -1
- package/types/api/BaseEntity.d.ts +2 -1
- package/types/api/EndpointApi.types.d.ts +23 -0
- package/types/endpoints.module.d.ts +22 -2
|
@@ -1697,6 +1697,29 @@ export interface GetFriendsAdminData {
|
|
|
1697
1697
|
* Nombre d’éléments à récupérer (limite de pagination)
|
|
1698
1698
|
*/
|
|
1699
1699
|
indexStep: number;
|
|
1700
|
+
/**
|
|
1701
|
+
* Index de fin global pour la pagination
|
|
1702
|
+
*/
|
|
1703
|
+
indexMax?: number;
|
|
1704
|
+
/**
|
|
1705
|
+
* Configuration des plages de résultats pour chaque type de recherche
|
|
1706
|
+
*/
|
|
1707
|
+
ranges?: {
|
|
1708
|
+
/**
|
|
1709
|
+
* This interface was referenced by `undefined`'s JSON-Schema definition
|
|
1710
|
+
* via the `patternProperty` "^[^\s]+$".
|
|
1711
|
+
*/
|
|
1712
|
+
[k: string]: {
|
|
1713
|
+
/**
|
|
1714
|
+
* Index de départ pour la pagination
|
|
1715
|
+
*/
|
|
1716
|
+
indexMin: number;
|
|
1717
|
+
/**
|
|
1718
|
+
* Index de fin pour la pagination
|
|
1719
|
+
*/
|
|
1720
|
+
indexMax: number;
|
|
1721
|
+
};
|
|
1722
|
+
};
|
|
1700
1723
|
/**
|
|
1701
1724
|
* Flag pour ne pas filtrer sur une clé de source spécifique
|
|
1702
1725
|
*/
|
|
@@ -11030,6 +11030,9 @@ declare const endpoints: {
|
|
|
11030
11030
|
minProperties?: undefined;
|
|
11031
11031
|
oneOf?: undefined;
|
|
11032
11032
|
};
|
|
11033
|
+
indexMax: {
|
|
11034
|
+
type: string;
|
|
11035
|
+
};
|
|
11033
11036
|
indexMin: {
|
|
11034
11037
|
default: number;
|
|
11035
11038
|
minimum: number;
|
|
@@ -11057,6 +11060,25 @@ declare const endpoints: {
|
|
|
11057
11060
|
default: boolean;
|
|
11058
11061
|
type: string;
|
|
11059
11062
|
};
|
|
11063
|
+
ranges: {
|
|
11064
|
+
additionalProperties: boolean;
|
|
11065
|
+
patternProperties: {
|
|
11066
|
+
"^[^\\s]+$": {
|
|
11067
|
+
additionalProperties: boolean;
|
|
11068
|
+
properties: {
|
|
11069
|
+
indexMax: {
|
|
11070
|
+
type: string;
|
|
11071
|
+
};
|
|
11072
|
+
indexMin: {
|
|
11073
|
+
type: string;
|
|
11074
|
+
};
|
|
11075
|
+
};
|
|
11076
|
+
required: string[];
|
|
11077
|
+
type: string;
|
|
11078
|
+
};
|
|
11079
|
+
};
|
|
11080
|
+
type: string;
|
|
11081
|
+
};
|
|
11060
11082
|
searchType: {
|
|
11061
11083
|
const: string[];
|
|
11062
11084
|
default: string[];
|
|
@@ -11139,8 +11161,6 @@ declare const endpoints: {
|
|
|
11139
11161
|
parentCommentId?: undefined;
|
|
11140
11162
|
path?: undefined;
|
|
11141
11163
|
params?: undefined;
|
|
11142
|
-
indexMax?: undefined;
|
|
11143
|
-
ranges?: undefined;
|
|
11144
11164
|
searchBy?: undefined;
|
|
11145
11165
|
searchTags?: undefined;
|
|
11146
11166
|
countryCode?: undefined;
|