@communecter/cocolight-api-client 1.0.136 → 1.0.137
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
package/src/index.ts
CHANGED
|
@@ -102,8 +102,34 @@ export type * from "./api/serverDataType/common.js";
|
|
|
102
102
|
export type * from "./api/serverDataType/Country.js";
|
|
103
103
|
export type * from "./api/serverDataType/Zone.js";
|
|
104
104
|
|
|
105
|
-
// Types utilitaires
|
|
106
|
-
export type {
|
|
105
|
+
// Types utilitaires BaseEntity
|
|
106
|
+
export type {
|
|
107
|
+
PaginatorPage,
|
|
108
|
+
PaginatorState,
|
|
109
|
+
FundingEnvelopeResult,
|
|
110
|
+
FundingEnvelopeProjectItem,
|
|
111
|
+
SearchCostumVariant,
|
|
112
|
+
SetTypeValue,
|
|
113
|
+
CostumContextFields,
|
|
114
|
+
WithCostumContext,
|
|
115
|
+
EntityType,
|
|
116
|
+
} from "./api/BaseEntity.js";
|
|
117
|
+
|
|
118
|
+
// Constantes BaseEntity
|
|
119
|
+
export { UPDATE_PATH_MAGIC } from "./api/BaseEntity.js";
|
|
120
|
+
|
|
121
|
+
// Types Answer (file-source, en plus des types serverData)
|
|
122
|
+
export type {
|
|
123
|
+
AllStepsData,
|
|
124
|
+
PendingUploadValue,
|
|
125
|
+
PendingUpload,
|
|
126
|
+
ProcessUploadsOptions,
|
|
127
|
+
AnswerGetOptions,
|
|
128
|
+
UploadAnswerFileOptions,
|
|
129
|
+
UploadAnswerFileResult,
|
|
130
|
+
GetFilesOptions,
|
|
131
|
+
AnswerFileItem,
|
|
132
|
+
} from "./api/Answer.js";
|
|
107
133
|
|
|
108
134
|
// Types de réponses, payloads, entités, et transforms
|
|
109
135
|
export type * from "./types/index.js";
|
package/types/index.d.ts
CHANGED
|
@@ -78,6 +78,8 @@ export type * from "./api/serverDataType/Action.js";
|
|
|
78
78
|
export type * from "./api/serverDataType/common.js";
|
|
79
79
|
export type * from "./api/serverDataType/Country.js";
|
|
80
80
|
export type * from "./api/serverDataType/Zone.js";
|
|
81
|
-
export type { PaginatorPage, PaginatorState, FundingEnvelopeResult } from "./api/BaseEntity.js";
|
|
81
|
+
export type { PaginatorPage, PaginatorState, FundingEnvelopeResult, FundingEnvelopeProjectItem, SearchCostumVariant, SetTypeValue, CostumContextFields, WithCostumContext, EntityType, } from "./api/BaseEntity.js";
|
|
82
|
+
export { UPDATE_PATH_MAGIC } from "./api/BaseEntity.js";
|
|
83
|
+
export type { AllStepsData, PendingUploadValue, PendingUpload, ProcessUploadsOptions, AnswerGetOptions, UploadAnswerFileOptions, UploadAnswerFileResult, GetFilesOptions, AnswerFileItem, } from "./api/Answer.js";
|
|
82
84
|
export type * from "./types/index.js";
|
|
83
85
|
export type * from "./api/EndpointApi.types.js";
|