@geowiki/core 0.16.9-dev.9 → 0.16.10
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/index.d.mts +2 -4
- package/dist/index.d.ts +2 -4
- package/dist/index.js +190 -209
- package/dist/index.mjs +179 -198
- package/package.json +17 -17
package/dist/index.d.mts
CHANGED
|
@@ -184,8 +184,6 @@ declare const QueryConstants: {
|
|
|
184
184
|
GetTaskMultipleAnnotations: string;
|
|
185
185
|
GetTaskSavedAnnotations: string;
|
|
186
186
|
DeleteTask: string;
|
|
187
|
-
GetApiImage: string;
|
|
188
|
-
GetCmsImage: string;
|
|
189
187
|
GetQuestionnaireForProject: string;
|
|
190
188
|
GetTaskAnswers: string;
|
|
191
189
|
UploadTasks: string;
|
|
@@ -506,9 +504,9 @@ declare const useQuestionnaire: (projectId: number) => _tanstack_react_query.Use
|
|
|
506
504
|
declare const useTaskAnswers: (taskId: number) => _tanstack_react_query.UseQueryResult<any[][], Error>;
|
|
507
505
|
declare const useProjectResultSet: (download: boolean, projectId: number, is_geo_json: boolean) => _tanstack_react_query.UseQueryResult<any, Error>;
|
|
508
506
|
|
|
509
|
-
declare const useApiImage: (imageId: string) =>
|
|
507
|
+
declare const useApiImage: (imageId: string) => string;
|
|
510
508
|
|
|
511
|
-
declare const useCmsImage: (imageId: string) =>
|
|
509
|
+
declare const useCmsImage: (imageId: string) => string;
|
|
512
510
|
|
|
513
511
|
declare const useClusterGetJoinRequests: (clusterId: string) => _tanstack_react_query.UseQueryResult<_geowiki_api_proxy.ClusterMemberDto[], Error>;
|
|
514
512
|
|
package/dist/index.d.ts
CHANGED
|
@@ -184,8 +184,6 @@ declare const QueryConstants: {
|
|
|
184
184
|
GetTaskMultipleAnnotations: string;
|
|
185
185
|
GetTaskSavedAnnotations: string;
|
|
186
186
|
DeleteTask: string;
|
|
187
|
-
GetApiImage: string;
|
|
188
|
-
GetCmsImage: string;
|
|
189
187
|
GetQuestionnaireForProject: string;
|
|
190
188
|
GetTaskAnswers: string;
|
|
191
189
|
UploadTasks: string;
|
|
@@ -506,9 +504,9 @@ declare const useQuestionnaire: (projectId: number) => _tanstack_react_query.Use
|
|
|
506
504
|
declare const useTaskAnswers: (taskId: number) => _tanstack_react_query.UseQueryResult<any[][], Error>;
|
|
507
505
|
declare const useProjectResultSet: (download: boolean, projectId: number, is_geo_json: boolean) => _tanstack_react_query.UseQueryResult<any, Error>;
|
|
508
506
|
|
|
509
|
-
declare const useApiImage: (imageId: string) =>
|
|
507
|
+
declare const useApiImage: (imageId: string) => string;
|
|
510
508
|
|
|
511
|
-
declare const useCmsImage: (imageId: string) =>
|
|
509
|
+
declare const useCmsImage: (imageId: string) => string;
|
|
512
510
|
|
|
513
511
|
declare const useClusterGetJoinRequests: (clusterId: string) => _tanstack_react_query.UseQueryResult<_geowiki_api_proxy.ClusterMemberDto[], Error>;
|
|
514
512
|
|