@juhuu/sdk-ts 1.2.55 → 1.2.57
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 +13 -2
- package/dist/index.d.ts +13 -2
- package/dist/index.js +13 -0
- package/dist/index.mjs +13 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
@@ -688,6 +688,7 @@ declare class ProductService extends Service {
|
|
688
688
|
declare class SettingsService extends Service {
|
689
689
|
constructor(config: JUHUU.SetupConfig);
|
690
690
|
retrieve(): Promise<JUHUU.HttpResponse<Settings>>;
|
691
|
+
sendSupportRequest(SessionCreateParams: JUHUU.Settings.SendSupportRequest.Params, SessionCreateOptions?: JUHUU.Settings.SendSupportRequest.Options): Promise<JUHUU.HttpResponse<JUHUU.Settings.SendSupportRequest.Response>>;
|
691
692
|
}
|
692
693
|
|
693
694
|
declare class AccountingAreasService extends Service {
|
@@ -862,6 +863,15 @@ declare namespace JUHUU {
|
|
862
863
|
category: Category;
|
863
864
|
modality: Modality;
|
864
865
|
};
|
866
|
+
namespace Settings {
|
867
|
+
namespace SendSupportRequest {
|
868
|
+
type Params = {
|
869
|
+
message: string;
|
870
|
+
};
|
871
|
+
type Options = JUHUU.RequestOptions;
|
872
|
+
type Response = undefined;
|
873
|
+
}
|
874
|
+
}
|
865
875
|
namespace Session {
|
866
876
|
type Base = {
|
867
877
|
id: string;
|
@@ -1806,7 +1816,7 @@ declare namespace JUHUU {
|
|
1806
1816
|
readonly object: "point";
|
1807
1817
|
location: GeoPoint;
|
1808
1818
|
altitudeRange: [number, number];
|
1809
|
-
invalidAt: Date;
|
1819
|
+
invalidAt: Date | null;
|
1810
1820
|
purposeArray: Purpose[];
|
1811
1821
|
};
|
1812
1822
|
export interface Single extends Base {
|
@@ -2116,6 +2126,7 @@ declare namespace JUHUU {
|
|
2116
2126
|
technologyArray: JUHUU.Technology[];
|
2117
2127
|
invalidAt: Date;
|
2118
2128
|
source: "fluctuo" | null;
|
2129
|
+
articleId: string | null;
|
2119
2130
|
};
|
2120
2131
|
interface PhysicalProduct extends Base {
|
2121
2132
|
type: "physicalProduct";
|
@@ -2579,4 +2590,4 @@ declare namespace JUHUU {
|
|
2579
2590
|
}
|
2580
2591
|
}
|
2581
2592
|
|
2582
|
-
export { type AccessControlListElement, type Address, type AutoRenewMode, type BusinessType, type Category, type Circumstance, type Color, type ColorScheme, type Command, type Condition, ConditionType, type CountryCode, CountryCodeArray, type CurrencyCode, CurrencyCodeArray, type CustomClaims, type DeepNullable, type DeviceStatus, type DeviceType, type Environment, type EnvironmentSettings, type ExtractType, type FuelType, type GeneralSettings, type GeoPoint, type GraphNode, JUHUU, Juhuu, type LanguageCode, LanguageCodeArray, Layout, type LayoutBlock, type LicenseTariffIdMap, type LinkType, type LocaleString, type MapFilter, type Modality, type Offer, type OfferTime, type Parameter, type Party, type PaymentMethod, type PaymentReason, type PaymentServiceProvider, type PaymentStatus, type PayoutSettings, type PayoutStatus, type PermissionTypes, type Person, type Platform, type PlatformUrl, type PostingRow, type Purpose, type PushToken, ReadonlyCategoryArray, ReadonlyModalityArray, ReadonlySectorArray, type RefundReason, type RefundStatus, type Sector, type SessionCannotTerminateReason, type SessionSettings, type SessionStatus, type SessionTerminatedByType, type SessionType,
|
2593
|
+
export { type AccessControlListElement, type Address, type AutoRenewMode, type BusinessType, type Category, type Circumstance, type Color, type ColorScheme, type Command, type Condition, ConditionType, type CountryCode, CountryCodeArray, type CurrencyCode, CurrencyCodeArray, type CustomClaims, type DeepNullable, type DeviceStatus, type DeviceType, type Environment, type EnvironmentSettings, type ExtractType, type FuelType, type GeneralSettings, type GeoPoint, type GraphNode, JUHUU, Juhuu, type LanguageCode, LanguageCodeArray, Layout, type LayoutBlock, type LicenseTariffIdMap, type LinkType, type LocaleString, type MapFilter, type Modality, type Offer, type OfferTime, type Parameter, type Party, type PaymentMethod, type PaymentReason, type PaymentServiceProvider, type PaymentStatus, type PayoutSettings, type PayoutStatus, type PermissionTypes, type Person, type Platform, type PlatformUrl, type PostingRow, type Purpose, type PushToken, ReadonlyCategoryArray, ReadonlyModalityArray, ReadonlySectorArray, type RefundReason, type RefundStatus, type Sector, type SessionCannotTerminateReason, type SessionSettings, type SessionStatus, type SessionTerminatedByType, type SessionType, Settings, type SimStatus, type StarRating, type TarifType, type TimeZone, type Unit, type UserType, type Utilization, type VeloBrushDeviceDocumentUserManualStep, type Viewport, type ViewportPolygon, type VisualPriority, type hexColor };
|
package/dist/index.d.ts
CHANGED
@@ -688,6 +688,7 @@ declare class ProductService extends Service {
|
|
688
688
|
declare class SettingsService extends Service {
|
689
689
|
constructor(config: JUHUU.SetupConfig);
|
690
690
|
retrieve(): Promise<JUHUU.HttpResponse<Settings>>;
|
691
|
+
sendSupportRequest(SessionCreateParams: JUHUU.Settings.SendSupportRequest.Params, SessionCreateOptions?: JUHUU.Settings.SendSupportRequest.Options): Promise<JUHUU.HttpResponse<JUHUU.Settings.SendSupportRequest.Response>>;
|
691
692
|
}
|
692
693
|
|
693
694
|
declare class AccountingAreasService extends Service {
|
@@ -862,6 +863,15 @@ declare namespace JUHUU {
|
|
862
863
|
category: Category;
|
863
864
|
modality: Modality;
|
864
865
|
};
|
866
|
+
namespace Settings {
|
867
|
+
namespace SendSupportRequest {
|
868
|
+
type Params = {
|
869
|
+
message: string;
|
870
|
+
};
|
871
|
+
type Options = JUHUU.RequestOptions;
|
872
|
+
type Response = undefined;
|
873
|
+
}
|
874
|
+
}
|
865
875
|
namespace Session {
|
866
876
|
type Base = {
|
867
877
|
id: string;
|
@@ -1806,7 +1816,7 @@ declare namespace JUHUU {
|
|
1806
1816
|
readonly object: "point";
|
1807
1817
|
location: GeoPoint;
|
1808
1818
|
altitudeRange: [number, number];
|
1809
|
-
invalidAt: Date;
|
1819
|
+
invalidAt: Date | null;
|
1810
1820
|
purposeArray: Purpose[];
|
1811
1821
|
};
|
1812
1822
|
export interface Single extends Base {
|
@@ -2116,6 +2126,7 @@ declare namespace JUHUU {
|
|
2116
2126
|
technologyArray: JUHUU.Technology[];
|
2117
2127
|
invalidAt: Date;
|
2118
2128
|
source: "fluctuo" | null;
|
2129
|
+
articleId: string | null;
|
2119
2130
|
};
|
2120
2131
|
interface PhysicalProduct extends Base {
|
2121
2132
|
type: "physicalProduct";
|
@@ -2579,4 +2590,4 @@ declare namespace JUHUU {
|
|
2579
2590
|
}
|
2580
2591
|
}
|
2581
2592
|
|
2582
|
-
export { type AccessControlListElement, type Address, type AutoRenewMode, type BusinessType, type Category, type Circumstance, type Color, type ColorScheme, type Command, type Condition, ConditionType, type CountryCode, CountryCodeArray, type CurrencyCode, CurrencyCodeArray, type CustomClaims, type DeepNullable, type DeviceStatus, type DeviceType, type Environment, type EnvironmentSettings, type ExtractType, type FuelType, type GeneralSettings, type GeoPoint, type GraphNode, JUHUU, Juhuu, type LanguageCode, LanguageCodeArray, Layout, type LayoutBlock, type LicenseTariffIdMap, type LinkType, type LocaleString, type MapFilter, type Modality, type Offer, type OfferTime, type Parameter, type Party, type PaymentMethod, type PaymentReason, type PaymentServiceProvider, type PaymentStatus, type PayoutSettings, type PayoutStatus, type PermissionTypes, type Person, type Platform, type PlatformUrl, type PostingRow, type Purpose, type PushToken, ReadonlyCategoryArray, ReadonlyModalityArray, ReadonlySectorArray, type RefundReason, type RefundStatus, type Sector, type SessionCannotTerminateReason, type SessionSettings, type SessionStatus, type SessionTerminatedByType, type SessionType,
|
2593
|
+
export { type AccessControlListElement, type Address, type AutoRenewMode, type BusinessType, type Category, type Circumstance, type Color, type ColorScheme, type Command, type Condition, ConditionType, type CountryCode, CountryCodeArray, type CurrencyCode, CurrencyCodeArray, type CustomClaims, type DeepNullable, type DeviceStatus, type DeviceType, type Environment, type EnvironmentSettings, type ExtractType, type FuelType, type GeneralSettings, type GeoPoint, type GraphNode, JUHUU, Juhuu, type LanguageCode, LanguageCodeArray, Layout, type LayoutBlock, type LicenseTariffIdMap, type LinkType, type LocaleString, type MapFilter, type Modality, type Offer, type OfferTime, type Parameter, type Party, type PaymentMethod, type PaymentReason, type PaymentServiceProvider, type PaymentStatus, type PayoutSettings, type PayoutStatus, type PermissionTypes, type Person, type Platform, type PlatformUrl, type PostingRow, type Purpose, type PushToken, ReadonlyCategoryArray, ReadonlyModalityArray, ReadonlySectorArray, type RefundReason, type RefundStatus, type Sector, type SessionCannotTerminateReason, type SessionSettings, type SessionStatus, type SessionTerminatedByType, type SessionType, Settings, type SimStatus, type StarRating, type TarifType, type TimeZone, type Unit, type UserType, type Utilization, type VeloBrushDeviceDocumentUserManualStep, type Viewport, type ViewportPolygon, type VisualPriority, type hexColor };
|
package/dist/index.js
CHANGED
@@ -1477,6 +1477,19 @@ var SettingsService = class extends Service {
|
|
1477
1477
|
authenticationNotOptional: false
|
1478
1478
|
});
|
1479
1479
|
}
|
1480
|
+
async sendSupportRequest(SessionCreateParams, SessionCreateOptions) {
|
1481
|
+
return await super.sendRequest(
|
1482
|
+
{
|
1483
|
+
method: "POST",
|
1484
|
+
url: "settings/sendSupportRequest",
|
1485
|
+
body: {
|
1486
|
+
message: SessionCreateParams.message
|
1487
|
+
},
|
1488
|
+
authenticationNotOptional: true
|
1489
|
+
},
|
1490
|
+
SessionCreateOptions
|
1491
|
+
);
|
1492
|
+
}
|
1480
1493
|
};
|
1481
1494
|
|
1482
1495
|
// src/accountingAreas/accountingAreas.service.ts
|
package/dist/index.mjs
CHANGED
@@ -1433,6 +1433,19 @@ var SettingsService = class extends Service {
|
|
1433
1433
|
authenticationNotOptional: false
|
1434
1434
|
});
|
1435
1435
|
}
|
1436
|
+
async sendSupportRequest(SessionCreateParams, SessionCreateOptions) {
|
1437
|
+
return await super.sendRequest(
|
1438
|
+
{
|
1439
|
+
method: "POST",
|
1440
|
+
url: "settings/sendSupportRequest",
|
1441
|
+
body: {
|
1442
|
+
message: SessionCreateParams.message
|
1443
|
+
},
|
1444
|
+
authenticationNotOptional: true
|
1445
|
+
},
|
1446
|
+
SessionCreateOptions
|
1447
|
+
);
|
1448
|
+
}
|
1436
1449
|
};
|
1437
1450
|
|
1438
1451
|
// src/accountingAreas/accountingAreas.service.ts
|