@juhuu/sdk-ts 1.3.15 → 1.3.16
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 +52 -1
- package/dist/index.d.ts +52 -1
- package/dist/index.js +43 -0
- package/dist/index.mjs +43 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1687,6 +1687,7 @@ type QuickView = {
|
|
|
1687
1687
|
};
|
|
1688
1688
|
type PanelDisplay = "modal" | "dialog" | "screen";
|
|
1689
1689
|
type AppStatus = "active" | "disabled";
|
|
1690
|
+
type AppVersionStatus = "waitingForSigninToBuild" | "waitingForBuildToFinish" | "waitingForSigninToSubmit" | "waitingForReview" | "waitingForDistribution" | "active" | "soonDeprecated" | "deprecated";
|
|
1690
1691
|
interface AdditionalSubscriptionItem {
|
|
1691
1692
|
stripePriceId: string;
|
|
1692
1693
|
quantity: number;
|
|
@@ -2254,6 +2255,12 @@ declare class ApplicationsService extends Service {
|
|
|
2254
2255
|
delete(ApplicationDeleteParams: JUHUU.Application.Delete.Params, ApplicationDeleteOptions?: JUHUU.Application.Delete.Options): Promise<JUHUU.HttpResponse<JUHUU.Application.Delete.Response>>;
|
|
2255
2256
|
}
|
|
2256
2257
|
|
|
2258
|
+
declare class ApplicationVersionsService extends Service {
|
|
2259
|
+
constructor(config: JUHUU.SetupConfig);
|
|
2260
|
+
retrieve(ApplicationVersionRetrieveParams: JUHUU.ApplicationVersion.Retrieve.Params, ApplicationVersionRetrieveOptions?: JUHUU.ApplicationVersion.Retrieve.Options): Promise<JUHUU.HttpResponse<JUHUU.ApplicationVersion.Retrieve.Response>>;
|
|
2261
|
+
list(ApplicationVersionListParams: JUHUU.ApplicationVersion.List.Params, ApplicationVersionListOptions?: JUHUU.ApplicationVersion.List.Options): Promise<JUHUU.HttpResponse<JUHUU.ApplicationVersion.List.Response>>;
|
|
2262
|
+
}
|
|
2263
|
+
|
|
2257
2264
|
declare class Juhuu {
|
|
2258
2265
|
constructor(config: JUHUU.SetupConfig);
|
|
2259
2266
|
/**
|
|
@@ -2310,6 +2317,7 @@ declare class Juhuu {
|
|
|
2310
2317
|
readonly panels: PanelsService;
|
|
2311
2318
|
readonly prices: PricesService;
|
|
2312
2319
|
readonly applications: ApplicationsService;
|
|
2320
|
+
readonly applicationVersions: ApplicationVersionsService;
|
|
2313
2321
|
}
|
|
2314
2322
|
declare namespace JUHUU {
|
|
2315
2323
|
namespace Achievement {
|
|
@@ -7385,6 +7393,11 @@ declare namespace JUHUU {
|
|
|
7385
7393
|
colorScheme: ColorScheme | null;
|
|
7386
7394
|
appIconLight: string | null;
|
|
7387
7395
|
appIconDark: string | null;
|
|
7396
|
+
splashScreenImageLight: string | null;
|
|
7397
|
+
splashScreenImageDark: string | null;
|
|
7398
|
+
pointClusterId: string | null;
|
|
7399
|
+
mapboxStyleUrlLight: string | null;
|
|
7400
|
+
mapboxStyleUrlDark: string | null;
|
|
7388
7401
|
status: AppStatus;
|
|
7389
7402
|
};
|
|
7390
7403
|
interface Android extends Base {
|
|
@@ -7435,6 +7448,11 @@ declare namespace JUHUU {
|
|
|
7435
7448
|
colorScheme?: ColorScheme | null;
|
|
7436
7449
|
appIconLight?: string | null;
|
|
7437
7450
|
appIconDark?: string | null;
|
|
7451
|
+
splashScreenImageLight?: string | null;
|
|
7452
|
+
splashScreenImageDark?: string | null;
|
|
7453
|
+
pointClusterId?: string | null;
|
|
7454
|
+
mapboxStyleUrlLight?: string | null;
|
|
7455
|
+
mapboxStyleUrlDark?: string | null;
|
|
7438
7456
|
status?: AppStatus;
|
|
7439
7457
|
};
|
|
7440
7458
|
type Options = JUHUU.RequestOptions;
|
|
@@ -7452,6 +7470,39 @@ declare namespace JUHUU {
|
|
|
7452
7470
|
};
|
|
7453
7471
|
}
|
|
7454
7472
|
}
|
|
7473
|
+
namespace ApplicationVersion {
|
|
7474
|
+
type Object = {
|
|
7475
|
+
id: string;
|
|
7476
|
+
version: number;
|
|
7477
|
+
readonly object: "applicationVersion";
|
|
7478
|
+
readonly objectType: "dto";
|
|
7479
|
+
applicationId: string;
|
|
7480
|
+
propertyId: string;
|
|
7481
|
+
status: AppVersionStatus;
|
|
7482
|
+
};
|
|
7483
|
+
namespace Retrieve {
|
|
7484
|
+
type Params = {
|
|
7485
|
+
applicationVersionId: string;
|
|
7486
|
+
};
|
|
7487
|
+
type Options = JUHUU.RequestOptions;
|
|
7488
|
+
type Response = {
|
|
7489
|
+
applicationVersion: JUHUU.ApplicationVersion.Object;
|
|
7490
|
+
};
|
|
7491
|
+
}
|
|
7492
|
+
namespace List {
|
|
7493
|
+
type Params = {
|
|
7494
|
+
applicationId: string;
|
|
7495
|
+
};
|
|
7496
|
+
type Options = {
|
|
7497
|
+
limit?: number;
|
|
7498
|
+
} & JUHUU.RequestOptions;
|
|
7499
|
+
type Response = {
|
|
7500
|
+
applicationVersionArray: JUHUU.ApplicationVersion.Object[];
|
|
7501
|
+
count: number;
|
|
7502
|
+
hasMore: boolean;
|
|
7503
|
+
};
|
|
7504
|
+
}
|
|
7505
|
+
}
|
|
7455
7506
|
}
|
|
7456
7507
|
|
|
7457
|
-
export { type AccessControlListElement, type AdditionalSubscriptionItem, type Address, type ApiKeyScope, type ApiKeyStatus, type AppStatus, type ArrayGetBlock, type ArrayGetBlockInputs, type ArrayLengthBlock, type ArrayLengthBlockInputs, type AuthMethodType, type AutoRenewMode, type BaseBlock, type BenefitCardCopyBlock, type BenefitCardCopyBlockInputs, type BenefitCardListBlock, type BenefitCardListBlockInputs, type BenefitCardRetrieveBlock, type BenefitCardRetrieveBlockInputs, type BenefitCardUpdateBlock, type BenefitCardUpdateBlockInputs, type BlockExecutor, type BusinessType, type Capability, type Category, type Circumstance, type Color, type ColorScheme, type Command, type Condition, ConditionType, type ConstBooleanBlock, type ConstNumberBlock, type ConstTextBlock, type ControlEdgeConnection, type CountryCode, CountryCodeArray, type CurrencyCode, CurrencyCodeArray, type CustomClaims, type DataEdgeConnection, type DeepNullable, type DelaySleepBlock, type DelaySleepBlockInputs, type DevicePermission, type DeviceRetrieveBlock, type DeviceRetrieveBlockInputs, type DeviceStatus, type DeviceType, type DeviceUpdateBlock, type DeviceUpdateBlockInputs, type EndCustomBlock, type Environment, type EnvironmentSettings, type ExtractType, type FlowBlock, type FlowBlockInput, type FlowControlEdge, type FlowDataEdge, type FlowEdge, type FlowExecuteBlock, type FlowExecuteBlockInputs, type FlowExecutionEnvironment, type FlowLog, type FlowStatus, type Frontend, type GeneralSettings, type GeoPoint, type GraphNode, type HttpDeleteBlock, type HttpDeleteBlockInputs, type HttpGetBlock, type HttpGetBlockInputs, type HttpPatchBlock, type HttpPostBlock, type HttpPostBlockInputs, type HttpPutBlock, type HttpPutBlockInputs, type HttpsPatchBlockInputs, type IfBlock, type IncidentCreateBlock, type IncidentCreateBlockInputs, type IncidentRetrieveBlock, type IncidentRetrieveBlockInputs, JUHUU, type JsonLogic, Juhuu, type KitStatus, type LanguageCode, LanguageCodeArray, Layout, type LayoutBlock, type License, type LicenseTariffIdMap, type LinkType, type LocaleString, type LocationRetrieveBlock, type LocationRetrieveBlockInputs, type LocationUpdateBlock, type LocationUpdateBlockInputs, type MapConstructBlock, type MapConstructBlockInputs, type MapDestructureBlock, type MapDestructureBlockInputs, type MapFilter, type MathAddBlock, type MathAddBlockInputs, type MathDivideBlock, type MathDivideBlockInputs, type MathMultiplyBlock, type MathMultiplyBlockInputs, type MathSubtractBlock, type MathSubtractBlockInputs, type Modality, type MqttSendBlock, type MqttSendBlockInputs, Offer, type OfferTime, type PanelDisplay, type ParamDefinition, type ParamType, type ParameterRetrieveBlock, type ParameterRetrieveBlockInputs, type ParameterUpdateBlock, type ParameterUpdateBlockInputs, type Party, type PaymentCreateBlock, type PaymentCreateBlockInputs, type PaymentMethod, type PaymentReason, type PaymentRefundReason, type PaymentRefundStatus, type PaymentServiceProvider, type PaymentStatus, type PayoutSettings, type PayoutStatus, type PermissionTypes, type Person, type PhoneCountryCode, type Platform, type PlatformString, type PlotData, type PostingRow, type PropertyAgreement, type PropertyRetrieveBlock, type PropertyRetrieveBlockInputs, type PropertyUpdateBlock, type PropertyUpdateBlockInputs, type ProximityStrategy, type Purpose, type QuickAction, type QuickView, ReadonlyCategoryArray, ReadonlyModalityArray, ReadonlySectorArray, type RefundStatus, type Sector, type SessionCannotTerminateReason, type SessionRetrieveBlock, type SessionRetrieveBlockInputs, type SessionSettings, type SessionStatus, type SessionTerminateBlock, type SessionTerminateBlockInputs, type SessionTerminatedByType, type SessionType, Settings, type SimStatus, type StarRating, type StartCustomBlock, type StartLocationUpdateBlock, type StartParameterUpdateBlock, type StartQuickActionLocationBlock, type StartSessionUpdateBlock, type SwitchBlock, type SystemLogBlock, type SystemLogBlockInputs, type TarifType, type TaxCode, type TextMatchBlock, type TextMatchBlockInputs, type TextTemplateBlock, type TextTemplateBlockInputs, type TimeZone, type UiNavigateScreenBlock, type UiNavigateScreenBlockInputs, type Unit, type UserCreateBlock, type UserCreateBlockInputs, type UserGroup, type UserRetrieveBlock, type UserRetrieveBlockInputs, type UserType, type Utilization, type VariableGetBlock, type VariableGetBlockInputs, type VariableSetBlock, type VariableSetBlockInputs, type VeloBrushDeviceDocumentUserManualStep, type Viewport, type ViewportPolygon, type VisualPriority, type hexColor };
|
|
7508
|
+
export { type AccessControlListElement, type AdditionalSubscriptionItem, type Address, type ApiKeyScope, type ApiKeyStatus, type AppStatus, type AppVersionStatus, type ArrayGetBlock, type ArrayGetBlockInputs, type ArrayLengthBlock, type ArrayLengthBlockInputs, type AuthMethodType, type AutoRenewMode, type BaseBlock, type BenefitCardCopyBlock, type BenefitCardCopyBlockInputs, type BenefitCardListBlock, type BenefitCardListBlockInputs, type BenefitCardRetrieveBlock, type BenefitCardRetrieveBlockInputs, type BenefitCardUpdateBlock, type BenefitCardUpdateBlockInputs, type BlockExecutor, type BusinessType, type Capability, type Category, type Circumstance, type Color, type ColorScheme, type Command, type Condition, ConditionType, type ConstBooleanBlock, type ConstNumberBlock, type ConstTextBlock, type ControlEdgeConnection, type CountryCode, CountryCodeArray, type CurrencyCode, CurrencyCodeArray, type CustomClaims, type DataEdgeConnection, type DeepNullable, type DelaySleepBlock, type DelaySleepBlockInputs, type DevicePermission, type DeviceRetrieveBlock, type DeviceRetrieveBlockInputs, type DeviceStatus, type DeviceType, type DeviceUpdateBlock, type DeviceUpdateBlockInputs, type EndCustomBlock, type Environment, type EnvironmentSettings, type ExtractType, type FlowBlock, type FlowBlockInput, type FlowControlEdge, type FlowDataEdge, type FlowEdge, type FlowExecuteBlock, type FlowExecuteBlockInputs, type FlowExecutionEnvironment, type FlowLog, type FlowStatus, type Frontend, type GeneralSettings, type GeoPoint, type GraphNode, type HttpDeleteBlock, type HttpDeleteBlockInputs, type HttpGetBlock, type HttpGetBlockInputs, type HttpPatchBlock, type HttpPostBlock, type HttpPostBlockInputs, type HttpPutBlock, type HttpPutBlockInputs, type HttpsPatchBlockInputs, type IfBlock, type IncidentCreateBlock, type IncidentCreateBlockInputs, type IncidentRetrieveBlock, type IncidentRetrieveBlockInputs, JUHUU, type JsonLogic, Juhuu, type KitStatus, type LanguageCode, LanguageCodeArray, Layout, type LayoutBlock, type License, type LicenseTariffIdMap, type LinkType, type LocaleString, type LocationRetrieveBlock, type LocationRetrieveBlockInputs, type LocationUpdateBlock, type LocationUpdateBlockInputs, type MapConstructBlock, type MapConstructBlockInputs, type MapDestructureBlock, type MapDestructureBlockInputs, type MapFilter, type MathAddBlock, type MathAddBlockInputs, type MathDivideBlock, type MathDivideBlockInputs, type MathMultiplyBlock, type MathMultiplyBlockInputs, type MathSubtractBlock, type MathSubtractBlockInputs, type Modality, type MqttSendBlock, type MqttSendBlockInputs, Offer, type OfferTime, type PanelDisplay, type ParamDefinition, type ParamType, type ParameterRetrieveBlock, type ParameterRetrieveBlockInputs, type ParameterUpdateBlock, type ParameterUpdateBlockInputs, type Party, type PaymentCreateBlock, type PaymentCreateBlockInputs, type PaymentMethod, type PaymentReason, type PaymentRefundReason, type PaymentRefundStatus, type PaymentServiceProvider, type PaymentStatus, type PayoutSettings, type PayoutStatus, type PermissionTypes, type Person, type PhoneCountryCode, type Platform, type PlatformString, type PlotData, type PostingRow, type PropertyAgreement, type PropertyRetrieveBlock, type PropertyRetrieveBlockInputs, type PropertyUpdateBlock, type PropertyUpdateBlockInputs, type ProximityStrategy, type Purpose, type QuickAction, type QuickView, ReadonlyCategoryArray, ReadonlyModalityArray, ReadonlySectorArray, type RefundStatus, type Sector, type SessionCannotTerminateReason, type SessionRetrieveBlock, type SessionRetrieveBlockInputs, type SessionSettings, type SessionStatus, type SessionTerminateBlock, type SessionTerminateBlockInputs, type SessionTerminatedByType, type SessionType, Settings, type SimStatus, type StarRating, type StartCustomBlock, type StartLocationUpdateBlock, type StartParameterUpdateBlock, type StartQuickActionLocationBlock, type StartSessionUpdateBlock, type SwitchBlock, type SystemLogBlock, type SystemLogBlockInputs, type TarifType, type TaxCode, type TextMatchBlock, type TextMatchBlockInputs, type TextTemplateBlock, type TextTemplateBlockInputs, type TimeZone, type UiNavigateScreenBlock, type UiNavigateScreenBlockInputs, type Unit, type UserCreateBlock, type UserCreateBlockInputs, type UserGroup, type UserRetrieveBlock, type UserRetrieveBlockInputs, type UserType, type Utilization, type VariableGetBlock, type VariableGetBlockInputs, type VariableSetBlock, type VariableSetBlockInputs, type VeloBrushDeviceDocumentUserManualStep, type Viewport, type ViewportPolygon, type VisualPriority, type hexColor };
|
package/dist/index.d.ts
CHANGED
|
@@ -1687,6 +1687,7 @@ type QuickView = {
|
|
|
1687
1687
|
};
|
|
1688
1688
|
type PanelDisplay = "modal" | "dialog" | "screen";
|
|
1689
1689
|
type AppStatus = "active" | "disabled";
|
|
1690
|
+
type AppVersionStatus = "waitingForSigninToBuild" | "waitingForBuildToFinish" | "waitingForSigninToSubmit" | "waitingForReview" | "waitingForDistribution" | "active" | "soonDeprecated" | "deprecated";
|
|
1690
1691
|
interface AdditionalSubscriptionItem {
|
|
1691
1692
|
stripePriceId: string;
|
|
1692
1693
|
quantity: number;
|
|
@@ -2254,6 +2255,12 @@ declare class ApplicationsService extends Service {
|
|
|
2254
2255
|
delete(ApplicationDeleteParams: JUHUU.Application.Delete.Params, ApplicationDeleteOptions?: JUHUU.Application.Delete.Options): Promise<JUHUU.HttpResponse<JUHUU.Application.Delete.Response>>;
|
|
2255
2256
|
}
|
|
2256
2257
|
|
|
2258
|
+
declare class ApplicationVersionsService extends Service {
|
|
2259
|
+
constructor(config: JUHUU.SetupConfig);
|
|
2260
|
+
retrieve(ApplicationVersionRetrieveParams: JUHUU.ApplicationVersion.Retrieve.Params, ApplicationVersionRetrieveOptions?: JUHUU.ApplicationVersion.Retrieve.Options): Promise<JUHUU.HttpResponse<JUHUU.ApplicationVersion.Retrieve.Response>>;
|
|
2261
|
+
list(ApplicationVersionListParams: JUHUU.ApplicationVersion.List.Params, ApplicationVersionListOptions?: JUHUU.ApplicationVersion.List.Options): Promise<JUHUU.HttpResponse<JUHUU.ApplicationVersion.List.Response>>;
|
|
2262
|
+
}
|
|
2263
|
+
|
|
2257
2264
|
declare class Juhuu {
|
|
2258
2265
|
constructor(config: JUHUU.SetupConfig);
|
|
2259
2266
|
/**
|
|
@@ -2310,6 +2317,7 @@ declare class Juhuu {
|
|
|
2310
2317
|
readonly panels: PanelsService;
|
|
2311
2318
|
readonly prices: PricesService;
|
|
2312
2319
|
readonly applications: ApplicationsService;
|
|
2320
|
+
readonly applicationVersions: ApplicationVersionsService;
|
|
2313
2321
|
}
|
|
2314
2322
|
declare namespace JUHUU {
|
|
2315
2323
|
namespace Achievement {
|
|
@@ -7385,6 +7393,11 @@ declare namespace JUHUU {
|
|
|
7385
7393
|
colorScheme: ColorScheme | null;
|
|
7386
7394
|
appIconLight: string | null;
|
|
7387
7395
|
appIconDark: string | null;
|
|
7396
|
+
splashScreenImageLight: string | null;
|
|
7397
|
+
splashScreenImageDark: string | null;
|
|
7398
|
+
pointClusterId: string | null;
|
|
7399
|
+
mapboxStyleUrlLight: string | null;
|
|
7400
|
+
mapboxStyleUrlDark: string | null;
|
|
7388
7401
|
status: AppStatus;
|
|
7389
7402
|
};
|
|
7390
7403
|
interface Android extends Base {
|
|
@@ -7435,6 +7448,11 @@ declare namespace JUHUU {
|
|
|
7435
7448
|
colorScheme?: ColorScheme | null;
|
|
7436
7449
|
appIconLight?: string | null;
|
|
7437
7450
|
appIconDark?: string | null;
|
|
7451
|
+
splashScreenImageLight?: string | null;
|
|
7452
|
+
splashScreenImageDark?: string | null;
|
|
7453
|
+
pointClusterId?: string | null;
|
|
7454
|
+
mapboxStyleUrlLight?: string | null;
|
|
7455
|
+
mapboxStyleUrlDark?: string | null;
|
|
7438
7456
|
status?: AppStatus;
|
|
7439
7457
|
};
|
|
7440
7458
|
type Options = JUHUU.RequestOptions;
|
|
@@ -7452,6 +7470,39 @@ declare namespace JUHUU {
|
|
|
7452
7470
|
};
|
|
7453
7471
|
}
|
|
7454
7472
|
}
|
|
7473
|
+
namespace ApplicationVersion {
|
|
7474
|
+
type Object = {
|
|
7475
|
+
id: string;
|
|
7476
|
+
version: number;
|
|
7477
|
+
readonly object: "applicationVersion";
|
|
7478
|
+
readonly objectType: "dto";
|
|
7479
|
+
applicationId: string;
|
|
7480
|
+
propertyId: string;
|
|
7481
|
+
status: AppVersionStatus;
|
|
7482
|
+
};
|
|
7483
|
+
namespace Retrieve {
|
|
7484
|
+
type Params = {
|
|
7485
|
+
applicationVersionId: string;
|
|
7486
|
+
};
|
|
7487
|
+
type Options = JUHUU.RequestOptions;
|
|
7488
|
+
type Response = {
|
|
7489
|
+
applicationVersion: JUHUU.ApplicationVersion.Object;
|
|
7490
|
+
};
|
|
7491
|
+
}
|
|
7492
|
+
namespace List {
|
|
7493
|
+
type Params = {
|
|
7494
|
+
applicationId: string;
|
|
7495
|
+
};
|
|
7496
|
+
type Options = {
|
|
7497
|
+
limit?: number;
|
|
7498
|
+
} & JUHUU.RequestOptions;
|
|
7499
|
+
type Response = {
|
|
7500
|
+
applicationVersionArray: JUHUU.ApplicationVersion.Object[];
|
|
7501
|
+
count: number;
|
|
7502
|
+
hasMore: boolean;
|
|
7503
|
+
};
|
|
7504
|
+
}
|
|
7505
|
+
}
|
|
7455
7506
|
}
|
|
7456
7507
|
|
|
7457
|
-
export { type AccessControlListElement, type AdditionalSubscriptionItem, type Address, type ApiKeyScope, type ApiKeyStatus, type AppStatus, type ArrayGetBlock, type ArrayGetBlockInputs, type ArrayLengthBlock, type ArrayLengthBlockInputs, type AuthMethodType, type AutoRenewMode, type BaseBlock, type BenefitCardCopyBlock, type BenefitCardCopyBlockInputs, type BenefitCardListBlock, type BenefitCardListBlockInputs, type BenefitCardRetrieveBlock, type BenefitCardRetrieveBlockInputs, type BenefitCardUpdateBlock, type BenefitCardUpdateBlockInputs, type BlockExecutor, type BusinessType, type Capability, type Category, type Circumstance, type Color, type ColorScheme, type Command, type Condition, ConditionType, type ConstBooleanBlock, type ConstNumberBlock, type ConstTextBlock, type ControlEdgeConnection, type CountryCode, CountryCodeArray, type CurrencyCode, CurrencyCodeArray, type CustomClaims, type DataEdgeConnection, type DeepNullable, type DelaySleepBlock, type DelaySleepBlockInputs, type DevicePermission, type DeviceRetrieveBlock, type DeviceRetrieveBlockInputs, type DeviceStatus, type DeviceType, type DeviceUpdateBlock, type DeviceUpdateBlockInputs, type EndCustomBlock, type Environment, type EnvironmentSettings, type ExtractType, type FlowBlock, type FlowBlockInput, type FlowControlEdge, type FlowDataEdge, type FlowEdge, type FlowExecuteBlock, type FlowExecuteBlockInputs, type FlowExecutionEnvironment, type FlowLog, type FlowStatus, type Frontend, type GeneralSettings, type GeoPoint, type GraphNode, type HttpDeleteBlock, type HttpDeleteBlockInputs, type HttpGetBlock, type HttpGetBlockInputs, type HttpPatchBlock, type HttpPostBlock, type HttpPostBlockInputs, type HttpPutBlock, type HttpPutBlockInputs, type HttpsPatchBlockInputs, type IfBlock, type IncidentCreateBlock, type IncidentCreateBlockInputs, type IncidentRetrieveBlock, type IncidentRetrieveBlockInputs, JUHUU, type JsonLogic, Juhuu, type KitStatus, type LanguageCode, LanguageCodeArray, Layout, type LayoutBlock, type License, type LicenseTariffIdMap, type LinkType, type LocaleString, type LocationRetrieveBlock, type LocationRetrieveBlockInputs, type LocationUpdateBlock, type LocationUpdateBlockInputs, type MapConstructBlock, type MapConstructBlockInputs, type MapDestructureBlock, type MapDestructureBlockInputs, type MapFilter, type MathAddBlock, type MathAddBlockInputs, type MathDivideBlock, type MathDivideBlockInputs, type MathMultiplyBlock, type MathMultiplyBlockInputs, type MathSubtractBlock, type MathSubtractBlockInputs, type Modality, type MqttSendBlock, type MqttSendBlockInputs, Offer, type OfferTime, type PanelDisplay, type ParamDefinition, type ParamType, type ParameterRetrieveBlock, type ParameterRetrieveBlockInputs, type ParameterUpdateBlock, type ParameterUpdateBlockInputs, type Party, type PaymentCreateBlock, type PaymentCreateBlockInputs, type PaymentMethod, type PaymentReason, type PaymentRefundReason, type PaymentRefundStatus, type PaymentServiceProvider, type PaymentStatus, type PayoutSettings, type PayoutStatus, type PermissionTypes, type Person, type PhoneCountryCode, type Platform, type PlatformString, type PlotData, type PostingRow, type PropertyAgreement, type PropertyRetrieveBlock, type PropertyRetrieveBlockInputs, type PropertyUpdateBlock, type PropertyUpdateBlockInputs, type ProximityStrategy, type Purpose, type QuickAction, type QuickView, ReadonlyCategoryArray, ReadonlyModalityArray, ReadonlySectorArray, type RefundStatus, type Sector, type SessionCannotTerminateReason, type SessionRetrieveBlock, type SessionRetrieveBlockInputs, type SessionSettings, type SessionStatus, type SessionTerminateBlock, type SessionTerminateBlockInputs, type SessionTerminatedByType, type SessionType, Settings, type SimStatus, type StarRating, type StartCustomBlock, type StartLocationUpdateBlock, type StartParameterUpdateBlock, type StartQuickActionLocationBlock, type StartSessionUpdateBlock, type SwitchBlock, type SystemLogBlock, type SystemLogBlockInputs, type TarifType, type TaxCode, type TextMatchBlock, type TextMatchBlockInputs, type TextTemplateBlock, type TextTemplateBlockInputs, type TimeZone, type UiNavigateScreenBlock, type UiNavigateScreenBlockInputs, type Unit, type UserCreateBlock, type UserCreateBlockInputs, type UserGroup, type UserRetrieveBlock, type UserRetrieveBlockInputs, type UserType, type Utilization, type VariableGetBlock, type VariableGetBlockInputs, type VariableSetBlock, type VariableSetBlockInputs, type VeloBrushDeviceDocumentUserManualStep, type Viewport, type ViewportPolygon, type VisualPriority, type hexColor };
|
|
7508
|
+
export { type AccessControlListElement, type AdditionalSubscriptionItem, type Address, type ApiKeyScope, type ApiKeyStatus, type AppStatus, type AppVersionStatus, type ArrayGetBlock, type ArrayGetBlockInputs, type ArrayLengthBlock, type ArrayLengthBlockInputs, type AuthMethodType, type AutoRenewMode, type BaseBlock, type BenefitCardCopyBlock, type BenefitCardCopyBlockInputs, type BenefitCardListBlock, type BenefitCardListBlockInputs, type BenefitCardRetrieveBlock, type BenefitCardRetrieveBlockInputs, type BenefitCardUpdateBlock, type BenefitCardUpdateBlockInputs, type BlockExecutor, type BusinessType, type Capability, type Category, type Circumstance, type Color, type ColorScheme, type Command, type Condition, ConditionType, type ConstBooleanBlock, type ConstNumberBlock, type ConstTextBlock, type ControlEdgeConnection, type CountryCode, CountryCodeArray, type CurrencyCode, CurrencyCodeArray, type CustomClaims, type DataEdgeConnection, type DeepNullable, type DelaySleepBlock, type DelaySleepBlockInputs, type DevicePermission, type DeviceRetrieveBlock, type DeviceRetrieveBlockInputs, type DeviceStatus, type DeviceType, type DeviceUpdateBlock, type DeviceUpdateBlockInputs, type EndCustomBlock, type Environment, type EnvironmentSettings, type ExtractType, type FlowBlock, type FlowBlockInput, type FlowControlEdge, type FlowDataEdge, type FlowEdge, type FlowExecuteBlock, type FlowExecuteBlockInputs, type FlowExecutionEnvironment, type FlowLog, type FlowStatus, type Frontend, type GeneralSettings, type GeoPoint, type GraphNode, type HttpDeleteBlock, type HttpDeleteBlockInputs, type HttpGetBlock, type HttpGetBlockInputs, type HttpPatchBlock, type HttpPostBlock, type HttpPostBlockInputs, type HttpPutBlock, type HttpPutBlockInputs, type HttpsPatchBlockInputs, type IfBlock, type IncidentCreateBlock, type IncidentCreateBlockInputs, type IncidentRetrieveBlock, type IncidentRetrieveBlockInputs, JUHUU, type JsonLogic, Juhuu, type KitStatus, type LanguageCode, LanguageCodeArray, Layout, type LayoutBlock, type License, type LicenseTariffIdMap, type LinkType, type LocaleString, type LocationRetrieveBlock, type LocationRetrieveBlockInputs, type LocationUpdateBlock, type LocationUpdateBlockInputs, type MapConstructBlock, type MapConstructBlockInputs, type MapDestructureBlock, type MapDestructureBlockInputs, type MapFilter, type MathAddBlock, type MathAddBlockInputs, type MathDivideBlock, type MathDivideBlockInputs, type MathMultiplyBlock, type MathMultiplyBlockInputs, type MathSubtractBlock, type MathSubtractBlockInputs, type Modality, type MqttSendBlock, type MqttSendBlockInputs, Offer, type OfferTime, type PanelDisplay, type ParamDefinition, type ParamType, type ParameterRetrieveBlock, type ParameterRetrieveBlockInputs, type ParameterUpdateBlock, type ParameterUpdateBlockInputs, type Party, type PaymentCreateBlock, type PaymentCreateBlockInputs, type PaymentMethod, type PaymentReason, type PaymentRefundReason, type PaymentRefundStatus, type PaymentServiceProvider, type PaymentStatus, type PayoutSettings, type PayoutStatus, type PermissionTypes, type Person, type PhoneCountryCode, type Platform, type PlatformString, type PlotData, type PostingRow, type PropertyAgreement, type PropertyRetrieveBlock, type PropertyRetrieveBlockInputs, type PropertyUpdateBlock, type PropertyUpdateBlockInputs, type ProximityStrategy, type Purpose, type QuickAction, type QuickView, ReadonlyCategoryArray, ReadonlyModalityArray, ReadonlySectorArray, type RefundStatus, type Sector, type SessionCannotTerminateReason, type SessionRetrieveBlock, type SessionRetrieveBlockInputs, type SessionSettings, type SessionStatus, type SessionTerminateBlock, type SessionTerminateBlockInputs, type SessionTerminatedByType, type SessionType, Settings, type SimStatus, type StarRating, type StartCustomBlock, type StartLocationUpdateBlock, type StartParameterUpdateBlock, type StartQuickActionLocationBlock, type StartSessionUpdateBlock, type SwitchBlock, type SystemLogBlock, type SystemLogBlockInputs, type TarifType, type TaxCode, type TextMatchBlock, type TextMatchBlockInputs, type TextTemplateBlock, type TextTemplateBlockInputs, type TimeZone, type UiNavigateScreenBlock, type UiNavigateScreenBlockInputs, type Unit, type UserCreateBlock, type UserCreateBlockInputs, type UserGroup, type UserRetrieveBlock, type UserRetrieveBlockInputs, type UserType, type Utilization, type VariableGetBlock, type VariableGetBlockInputs, type VariableSetBlock, type VariableSetBlockInputs, type VeloBrushDeviceDocumentUserManualStep, type Viewport, type ViewportPolygon, type VisualPriority, type hexColor };
|
package/dist/index.js
CHANGED
|
@@ -5990,6 +5990,11 @@ var ApplicationsService = class extends Service {
|
|
|
5990
5990
|
colorScheme: ApplicationUpdateParams.colorScheme,
|
|
5991
5991
|
appIconLight: ApplicationUpdateParams.appIconLight,
|
|
5992
5992
|
appIconDark: ApplicationUpdateParams.appIconDark,
|
|
5993
|
+
splashScreenImageLight: ApplicationUpdateParams.splashScreenImageLight,
|
|
5994
|
+
splashScreenImageDark: ApplicationUpdateParams.splashScreenImageDark,
|
|
5995
|
+
pointClusterId: ApplicationUpdateParams.pointClusterId,
|
|
5996
|
+
mapboxStyleUrlLight: ApplicationUpdateParams.mapboxStyleUrlLight,
|
|
5997
|
+
mapboxStyleUrlDark: ApplicationUpdateParams.mapboxStyleUrlDark,
|
|
5993
5998
|
status: ApplicationUpdateParams.status
|
|
5994
5999
|
},
|
|
5995
6000
|
authenticationNotOptional: true
|
|
@@ -6010,6 +6015,42 @@ var ApplicationsService = class extends Service {
|
|
|
6010
6015
|
}
|
|
6011
6016
|
};
|
|
6012
6017
|
|
|
6018
|
+
// src/applicationVersions/applicationVersions.service.ts
|
|
6019
|
+
var ApplicationVersionsService = class extends Service {
|
|
6020
|
+
constructor(config) {
|
|
6021
|
+
super(config);
|
|
6022
|
+
}
|
|
6023
|
+
async retrieve(ApplicationVersionRetrieveParams, ApplicationVersionRetrieveOptions) {
|
|
6024
|
+
const queryArray = [];
|
|
6025
|
+
return await super.sendRequest(
|
|
6026
|
+
{
|
|
6027
|
+
method: "GET",
|
|
6028
|
+
url: "applicationVersions/" + ApplicationVersionRetrieveParams.applicationVersionId + "?" + queryArray.join("&"),
|
|
6029
|
+
body: void 0,
|
|
6030
|
+
authenticationNotOptional: false
|
|
6031
|
+
},
|
|
6032
|
+
ApplicationVersionRetrieveOptions
|
|
6033
|
+
);
|
|
6034
|
+
}
|
|
6035
|
+
async list(ApplicationVersionListParams, ApplicationVersionListOptions) {
|
|
6036
|
+
const queryArray = [];
|
|
6037
|
+
if (ApplicationVersionListParams?.applicationId !== void 0) {
|
|
6038
|
+
queryArray.push(
|
|
6039
|
+
"applicationId=" + ApplicationVersionListParams.applicationId
|
|
6040
|
+
);
|
|
6041
|
+
}
|
|
6042
|
+
return await super.sendRequest(
|
|
6043
|
+
{
|
|
6044
|
+
method: "GET",
|
|
6045
|
+
url: "applicationVersions?" + queryArray.join("&"),
|
|
6046
|
+
body: void 0,
|
|
6047
|
+
authenticationNotOptional: false
|
|
6048
|
+
},
|
|
6049
|
+
ApplicationVersionListOptions
|
|
6050
|
+
);
|
|
6051
|
+
}
|
|
6052
|
+
};
|
|
6053
|
+
|
|
6013
6054
|
// src/types/types.ts
|
|
6014
6055
|
var LanguageCodeArray = [
|
|
6015
6056
|
"en",
|
|
@@ -6211,6 +6252,7 @@ var Juhuu = class {
|
|
|
6211
6252
|
this.panels = new PanelsService(config);
|
|
6212
6253
|
this.prices = new PricesService(config);
|
|
6213
6254
|
this.applications = new ApplicationsService(config);
|
|
6255
|
+
this.applicationVersions = new ApplicationVersionsService(config);
|
|
6214
6256
|
}
|
|
6215
6257
|
/**
|
|
6216
6258
|
* Top Level Resources
|
|
@@ -6266,6 +6308,7 @@ var Juhuu = class {
|
|
|
6266
6308
|
panels;
|
|
6267
6309
|
prices;
|
|
6268
6310
|
applications;
|
|
6311
|
+
applicationVersions;
|
|
6269
6312
|
};
|
|
6270
6313
|
var JUHUU;
|
|
6271
6314
|
((JUHUU2) => {
|
package/dist/index.mjs
CHANGED
|
@@ -5946,6 +5946,11 @@ var ApplicationsService = class extends Service {
|
|
|
5946
5946
|
colorScheme: ApplicationUpdateParams.colorScheme,
|
|
5947
5947
|
appIconLight: ApplicationUpdateParams.appIconLight,
|
|
5948
5948
|
appIconDark: ApplicationUpdateParams.appIconDark,
|
|
5949
|
+
splashScreenImageLight: ApplicationUpdateParams.splashScreenImageLight,
|
|
5950
|
+
splashScreenImageDark: ApplicationUpdateParams.splashScreenImageDark,
|
|
5951
|
+
pointClusterId: ApplicationUpdateParams.pointClusterId,
|
|
5952
|
+
mapboxStyleUrlLight: ApplicationUpdateParams.mapboxStyleUrlLight,
|
|
5953
|
+
mapboxStyleUrlDark: ApplicationUpdateParams.mapboxStyleUrlDark,
|
|
5949
5954
|
status: ApplicationUpdateParams.status
|
|
5950
5955
|
},
|
|
5951
5956
|
authenticationNotOptional: true
|
|
@@ -5966,6 +5971,42 @@ var ApplicationsService = class extends Service {
|
|
|
5966
5971
|
}
|
|
5967
5972
|
};
|
|
5968
5973
|
|
|
5974
|
+
// src/applicationVersions/applicationVersions.service.ts
|
|
5975
|
+
var ApplicationVersionsService = class extends Service {
|
|
5976
|
+
constructor(config) {
|
|
5977
|
+
super(config);
|
|
5978
|
+
}
|
|
5979
|
+
async retrieve(ApplicationVersionRetrieveParams, ApplicationVersionRetrieveOptions) {
|
|
5980
|
+
const queryArray = [];
|
|
5981
|
+
return await super.sendRequest(
|
|
5982
|
+
{
|
|
5983
|
+
method: "GET",
|
|
5984
|
+
url: "applicationVersions/" + ApplicationVersionRetrieveParams.applicationVersionId + "?" + queryArray.join("&"),
|
|
5985
|
+
body: void 0,
|
|
5986
|
+
authenticationNotOptional: false
|
|
5987
|
+
},
|
|
5988
|
+
ApplicationVersionRetrieveOptions
|
|
5989
|
+
);
|
|
5990
|
+
}
|
|
5991
|
+
async list(ApplicationVersionListParams, ApplicationVersionListOptions) {
|
|
5992
|
+
const queryArray = [];
|
|
5993
|
+
if (ApplicationVersionListParams?.applicationId !== void 0) {
|
|
5994
|
+
queryArray.push(
|
|
5995
|
+
"applicationId=" + ApplicationVersionListParams.applicationId
|
|
5996
|
+
);
|
|
5997
|
+
}
|
|
5998
|
+
return await super.sendRequest(
|
|
5999
|
+
{
|
|
6000
|
+
method: "GET",
|
|
6001
|
+
url: "applicationVersions?" + queryArray.join("&"),
|
|
6002
|
+
body: void 0,
|
|
6003
|
+
authenticationNotOptional: false
|
|
6004
|
+
},
|
|
6005
|
+
ApplicationVersionListOptions
|
|
6006
|
+
);
|
|
6007
|
+
}
|
|
6008
|
+
};
|
|
6009
|
+
|
|
5969
6010
|
// src/types/types.ts
|
|
5970
6011
|
var LanguageCodeArray = [
|
|
5971
6012
|
"en",
|
|
@@ -6167,6 +6208,7 @@ var Juhuu = class {
|
|
|
6167
6208
|
this.panels = new PanelsService(config);
|
|
6168
6209
|
this.prices = new PricesService(config);
|
|
6169
6210
|
this.applications = new ApplicationsService(config);
|
|
6211
|
+
this.applicationVersions = new ApplicationVersionsService(config);
|
|
6170
6212
|
}
|
|
6171
6213
|
/**
|
|
6172
6214
|
* Top Level Resources
|
|
@@ -6222,6 +6264,7 @@ var Juhuu = class {
|
|
|
6222
6264
|
panels;
|
|
6223
6265
|
prices;
|
|
6224
6266
|
applications;
|
|
6267
|
+
applicationVersions;
|
|
6225
6268
|
};
|
|
6226
6269
|
var JUHUU;
|
|
6227
6270
|
((JUHUU2) => {
|