@juhuu/sdk-ts 1.2.180 → 1.2.182
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/package.json +1 -1
package/dist/index.d.mts
CHANGED
@@ -170,7 +170,7 @@ type PaymentRefundReason = "requestedByUser" | "expiredUncapturedCharge" | "frau
|
|
170
170
|
type SessionStatus = "waitingForPayment" | "ready" | "completed";
|
171
171
|
type AutoRenewMode = "off" | "optIn" | "optOut" | "on";
|
172
172
|
type RefundStatus = "inTransitToUser" | "succeeded";
|
173
|
-
type SessionTerminatedByType = "user" | "
|
173
|
+
type SessionTerminatedByType = "user" | "system" | "propertyAdmin" | "nodeArray";
|
174
174
|
type PermissionTypes = "UserManagement" | "PropertyManagement" | "PayoutManagement" | "InvoiceManagement" | "TarifManagement" | "SessionManagement" | "PaymentManagement" | "LocationManagement" | "LinkManagement" | "TermsManagement" | "LicenseManagement";
|
175
175
|
interface CustomClaims {
|
176
176
|
UserManagement: boolean;
|
@@ -449,6 +449,17 @@ type GraphNode = {
|
|
449
449
|
nodeIdArray: string[];
|
450
450
|
subject: LocaleString;
|
451
451
|
message: LocaleString;
|
452
|
+
} | {
|
453
|
+
id: string;
|
454
|
+
nodeIdArray: string[];
|
455
|
+
type: "app.alert.show";
|
456
|
+
title: LocaleString;
|
457
|
+
description: LocaleString;
|
458
|
+
} | {
|
459
|
+
id: string;
|
460
|
+
nodeIdArray: string[];
|
461
|
+
type: "app.navigation.navigate";
|
462
|
+
screenName: string;
|
452
463
|
} | {
|
453
464
|
id: string;
|
454
465
|
type: "parameter.set";
|
@@ -3002,7 +3013,7 @@ declare namespace JUHUU {
|
|
3002
3013
|
};
|
3003
3014
|
type Options = JUHUU.RequestOptions;
|
3004
3015
|
type Response = {
|
3005
|
-
|
3016
|
+
nextNodeIdArray: string[];
|
3006
3017
|
};
|
3007
3018
|
}
|
3008
3019
|
namespace Delete {
|
package/dist/index.d.ts
CHANGED
@@ -170,7 +170,7 @@ type PaymentRefundReason = "requestedByUser" | "expiredUncapturedCharge" | "frau
|
|
170
170
|
type SessionStatus = "waitingForPayment" | "ready" | "completed";
|
171
171
|
type AutoRenewMode = "off" | "optIn" | "optOut" | "on";
|
172
172
|
type RefundStatus = "inTransitToUser" | "succeeded";
|
173
|
-
type SessionTerminatedByType = "user" | "
|
173
|
+
type SessionTerminatedByType = "user" | "system" | "propertyAdmin" | "nodeArray";
|
174
174
|
type PermissionTypes = "UserManagement" | "PropertyManagement" | "PayoutManagement" | "InvoiceManagement" | "TarifManagement" | "SessionManagement" | "PaymentManagement" | "LocationManagement" | "LinkManagement" | "TermsManagement" | "LicenseManagement";
|
175
175
|
interface CustomClaims {
|
176
176
|
UserManagement: boolean;
|
@@ -449,6 +449,17 @@ type GraphNode = {
|
|
449
449
|
nodeIdArray: string[];
|
450
450
|
subject: LocaleString;
|
451
451
|
message: LocaleString;
|
452
|
+
} | {
|
453
|
+
id: string;
|
454
|
+
nodeIdArray: string[];
|
455
|
+
type: "app.alert.show";
|
456
|
+
title: LocaleString;
|
457
|
+
description: LocaleString;
|
458
|
+
} | {
|
459
|
+
id: string;
|
460
|
+
nodeIdArray: string[];
|
461
|
+
type: "app.navigation.navigate";
|
462
|
+
screenName: string;
|
452
463
|
} | {
|
453
464
|
id: string;
|
454
465
|
type: "parameter.set";
|
@@ -3002,7 +3013,7 @@ declare namespace JUHUU {
|
|
3002
3013
|
};
|
3003
3014
|
type Options = JUHUU.RequestOptions;
|
3004
3015
|
type Response = {
|
3005
|
-
|
3016
|
+
nextNodeIdArray: string[];
|
3006
3017
|
};
|
3007
3018
|
}
|
3008
3019
|
namespace Delete {
|