@juhuu/sdk-ts 1.3.61 → 1.3.62
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 +17 -0
- package/dist/index.d.ts +17 -0
- package/dist/index.js +2 -0
- package/dist/index.mjs +2 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -7936,6 +7936,19 @@ declare namespace JUHUU {
|
|
|
7936
7936
|
};
|
|
7937
7937
|
}
|
|
7938
7938
|
namespace Application {
|
|
7939
|
+
type MapMarkerIcons = {
|
|
7940
|
+
singleBlank: string;
|
|
7941
|
+
aggregationBlank: string;
|
|
7942
|
+
categoryBike: string;
|
|
7943
|
+
categoryMoped: string;
|
|
7944
|
+
categoryCar: string;
|
|
7945
|
+
categoryBoat: string;
|
|
7946
|
+
categoryScooter: string;
|
|
7947
|
+
modalityCharge: string;
|
|
7948
|
+
modalityWash: string;
|
|
7949
|
+
modalityStore: string;
|
|
7950
|
+
modalityShare: string;
|
|
7951
|
+
};
|
|
7939
7952
|
type Object = {
|
|
7940
7953
|
id: string;
|
|
7941
7954
|
version: number;
|
|
@@ -7951,6 +7964,8 @@ declare namespace JUHUU {
|
|
|
7951
7964
|
pointClusterId: string | null;
|
|
7952
7965
|
mapboxStyleUrlLight: string | null;
|
|
7953
7966
|
mapboxStyleUrlDark: string | null;
|
|
7967
|
+
mapMarkerIconsLight: MapMarkerIcons | null;
|
|
7968
|
+
mapMarkerIconsDark: MapMarkerIcons | null;
|
|
7954
7969
|
fontUrlTitle: string | null;
|
|
7955
7970
|
fontUrlBody: string | null;
|
|
7956
7971
|
status: AppStatus;
|
|
@@ -8018,6 +8033,8 @@ declare namespace JUHUU {
|
|
|
8018
8033
|
pointClusterId?: string | null;
|
|
8019
8034
|
mapboxStyleUrlLight?: string | null;
|
|
8020
8035
|
mapboxStyleUrlDark?: string | null;
|
|
8036
|
+
mapMarkerIconsLight?: MapMarkerIcons | null;
|
|
8037
|
+
mapMarkerIconsDark?: MapMarkerIcons | null;
|
|
8021
8038
|
status?: AppStatus;
|
|
8022
8039
|
iosBundleIdentifier?: string;
|
|
8023
8040
|
webTitle?: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -7936,6 +7936,19 @@ declare namespace JUHUU {
|
|
|
7936
7936
|
};
|
|
7937
7937
|
}
|
|
7938
7938
|
namespace Application {
|
|
7939
|
+
type MapMarkerIcons = {
|
|
7940
|
+
singleBlank: string;
|
|
7941
|
+
aggregationBlank: string;
|
|
7942
|
+
categoryBike: string;
|
|
7943
|
+
categoryMoped: string;
|
|
7944
|
+
categoryCar: string;
|
|
7945
|
+
categoryBoat: string;
|
|
7946
|
+
categoryScooter: string;
|
|
7947
|
+
modalityCharge: string;
|
|
7948
|
+
modalityWash: string;
|
|
7949
|
+
modalityStore: string;
|
|
7950
|
+
modalityShare: string;
|
|
7951
|
+
};
|
|
7939
7952
|
type Object = {
|
|
7940
7953
|
id: string;
|
|
7941
7954
|
version: number;
|
|
@@ -7951,6 +7964,8 @@ declare namespace JUHUU {
|
|
|
7951
7964
|
pointClusterId: string | null;
|
|
7952
7965
|
mapboxStyleUrlLight: string | null;
|
|
7953
7966
|
mapboxStyleUrlDark: string | null;
|
|
7967
|
+
mapMarkerIconsLight: MapMarkerIcons | null;
|
|
7968
|
+
mapMarkerIconsDark: MapMarkerIcons | null;
|
|
7954
7969
|
fontUrlTitle: string | null;
|
|
7955
7970
|
fontUrlBody: string | null;
|
|
7956
7971
|
status: AppStatus;
|
|
@@ -8018,6 +8033,8 @@ declare namespace JUHUU {
|
|
|
8018
8033
|
pointClusterId?: string | null;
|
|
8019
8034
|
mapboxStyleUrlLight?: string | null;
|
|
8020
8035
|
mapboxStyleUrlDark?: string | null;
|
|
8036
|
+
mapMarkerIconsLight?: MapMarkerIcons | null;
|
|
8037
|
+
mapMarkerIconsDark?: MapMarkerIcons | null;
|
|
8021
8038
|
status?: AppStatus;
|
|
8022
8039
|
iosBundleIdentifier?: string;
|
|
8023
8040
|
webTitle?: string;
|
package/dist/index.js
CHANGED
|
@@ -6364,6 +6364,8 @@ var ApplicationsService = class extends Service {
|
|
|
6364
6364
|
pointClusterId: ApplicationUpdateParams.pointClusterId,
|
|
6365
6365
|
mapboxStyleUrlLight: ApplicationUpdateParams.mapboxStyleUrlLight,
|
|
6366
6366
|
mapboxStyleUrlDark: ApplicationUpdateParams.mapboxStyleUrlDark,
|
|
6367
|
+
mapMarkerIconsLight: ApplicationUpdateParams.mapMarkerIconsLight,
|
|
6368
|
+
mapMarkerIconsDark: ApplicationUpdateParams.mapMarkerIconsDark,
|
|
6367
6369
|
status: ApplicationUpdateParams.status,
|
|
6368
6370
|
iosBundleIdentifier: ApplicationUpdateParams.iosBundleIdentifier,
|
|
6369
6371
|
webTitle: ApplicationUpdateParams.webTitle,
|
package/dist/index.mjs
CHANGED
|
@@ -6320,6 +6320,8 @@ var ApplicationsService = class extends Service {
|
|
|
6320
6320
|
pointClusterId: ApplicationUpdateParams.pointClusterId,
|
|
6321
6321
|
mapboxStyleUrlLight: ApplicationUpdateParams.mapboxStyleUrlLight,
|
|
6322
6322
|
mapboxStyleUrlDark: ApplicationUpdateParams.mapboxStyleUrlDark,
|
|
6323
|
+
mapMarkerIconsLight: ApplicationUpdateParams.mapMarkerIconsLight,
|
|
6324
|
+
mapMarkerIconsDark: ApplicationUpdateParams.mapMarkerIconsDark,
|
|
6323
6325
|
status: ApplicationUpdateParams.status,
|
|
6324
6326
|
iosBundleIdentifier: ApplicationUpdateParams.iosBundleIdentifier,
|
|
6325
6327
|
webTitle: ApplicationUpdateParams.webTitle,
|