@juhuu/sdk-ts 1.3.57 → 1.3.59
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 +3 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +3 -1
- package/dist/index.mjs +3 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -415,6 +415,7 @@ declare namespace Layout {
|
|
|
415
415
|
text: LocaleString;
|
|
416
416
|
buttonName: string;
|
|
417
417
|
flowId: string | null | undefined;
|
|
418
|
+
requiresProximity?: boolean;
|
|
418
419
|
}
|
|
419
420
|
interface Small extends General {
|
|
420
421
|
type: "button.small";
|
|
@@ -3099,6 +3100,8 @@ declare namespace JUHUU {
|
|
|
3099
3100
|
type Params = {
|
|
3100
3101
|
sessionId: string;
|
|
3101
3102
|
metadata?: Record<string, any>;
|
|
3103
|
+
scheduledReadyAt?: string;
|
|
3104
|
+
scheduledTerminationAt?: string;
|
|
3102
3105
|
};
|
|
3103
3106
|
type Options = JUHUU.RequestOptions;
|
|
3104
3107
|
type Response = {
|
package/dist/index.d.ts
CHANGED
|
@@ -415,6 +415,7 @@ declare namespace Layout {
|
|
|
415
415
|
text: LocaleString;
|
|
416
416
|
buttonName: string;
|
|
417
417
|
flowId: string | null | undefined;
|
|
418
|
+
requiresProximity?: boolean;
|
|
418
419
|
}
|
|
419
420
|
interface Small extends General {
|
|
420
421
|
type: "button.small";
|
|
@@ -3099,6 +3100,8 @@ declare namespace JUHUU {
|
|
|
3099
3100
|
type Params = {
|
|
3100
3101
|
sessionId: string;
|
|
3101
3102
|
metadata?: Record<string, any>;
|
|
3103
|
+
scheduledReadyAt?: string;
|
|
3104
|
+
scheduledTerminationAt?: string;
|
|
3102
3105
|
};
|
|
3103
3106
|
type Options = JUHUU.RequestOptions;
|
|
3104
3107
|
type Response = {
|
package/dist/index.js
CHANGED
|
@@ -1087,7 +1087,9 @@ var SessionService = class extends Service {
|
|
|
1087
1087
|
method: "PATCH",
|
|
1088
1088
|
url: "sessions/" + SessionUpdateParams.sessionId,
|
|
1089
1089
|
body: {
|
|
1090
|
-
metadata: SessionUpdateParams?.metadata
|
|
1090
|
+
metadata: SessionUpdateParams?.metadata,
|
|
1091
|
+
scheduledReadyAt: SessionUpdateParams?.scheduledReadyAt,
|
|
1092
|
+
scheduledTerminationAt: SessionUpdateParams?.scheduledTerminationAt
|
|
1091
1093
|
},
|
|
1092
1094
|
authenticationNotOptional: true
|
|
1093
1095
|
},
|
package/dist/index.mjs
CHANGED
|
@@ -1043,7 +1043,9 @@ var SessionService = class extends Service {
|
|
|
1043
1043
|
method: "PATCH",
|
|
1044
1044
|
url: "sessions/" + SessionUpdateParams.sessionId,
|
|
1045
1045
|
body: {
|
|
1046
|
-
metadata: SessionUpdateParams?.metadata
|
|
1046
|
+
metadata: SessionUpdateParams?.metadata,
|
|
1047
|
+
scheduledReadyAt: SessionUpdateParams?.scheduledReadyAt,
|
|
1048
|
+
scheduledTerminationAt: SessionUpdateParams?.scheduledTerminationAt
|
|
1047
1049
|
},
|
|
1048
1050
|
authenticationNotOptional: true
|
|
1049
1051
|
},
|