@ember-home/unbound-ts-client 0.0.53 → 0.0.54
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 +69 -15
- package/dist/index.d.ts +69 -15
- package/dist/index.js.map +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -987,18 +987,6 @@ interface APIMessage {
|
|
|
987
987
|
* @memberof APIMessage
|
|
988
988
|
*/
|
|
989
989
|
'deliveredAt'?: string | null;
|
|
990
|
-
/**
|
|
991
|
-
*
|
|
992
|
-
* @type {string}
|
|
993
|
-
* @memberof APIMessage
|
|
994
|
-
*/
|
|
995
|
-
'staffReadAt'?: string | null;
|
|
996
|
-
/**
|
|
997
|
-
*
|
|
998
|
-
* @type {string}
|
|
999
|
-
* @memberof APIMessage
|
|
1000
|
-
*/
|
|
1001
|
-
'guestReadAt'?: string | null;
|
|
1002
990
|
/**
|
|
1003
991
|
*
|
|
1004
992
|
* @type {string}
|
|
@@ -1071,6 +1059,18 @@ interface APIMessage {
|
|
|
1071
1059
|
* @memberof APIMessage
|
|
1072
1060
|
*/
|
|
1073
1061
|
'status': MessageStatus;
|
|
1062
|
+
/**
|
|
1063
|
+
*
|
|
1064
|
+
* @type {string}
|
|
1065
|
+
* @memberof APIMessage
|
|
1066
|
+
*/
|
|
1067
|
+
'staffReadAt'?: string | null;
|
|
1068
|
+
/**
|
|
1069
|
+
*
|
|
1070
|
+
* @type {string}
|
|
1071
|
+
* @memberof APIMessage
|
|
1072
|
+
*/
|
|
1073
|
+
'guestReadAt'?: string | null;
|
|
1074
1074
|
/**
|
|
1075
1075
|
*
|
|
1076
1076
|
* @type {Messagetypedata}
|
|
@@ -1086,16 +1086,64 @@ interface APIMessage {
|
|
|
1086
1086
|
interface APIMessageCreate {
|
|
1087
1087
|
/**
|
|
1088
1088
|
*
|
|
1089
|
-
* @type {
|
|
1089
|
+
* @type {string}
|
|
1090
1090
|
* @memberof APIMessageCreate
|
|
1091
1091
|
*/
|
|
1092
|
-
'
|
|
1092
|
+
'body': string;
|
|
1093
1093
|
/**
|
|
1094
1094
|
*
|
|
1095
1095
|
* @type {string}
|
|
1096
1096
|
* @memberof APIMessageCreate
|
|
1097
1097
|
*/
|
|
1098
|
-
'
|
|
1098
|
+
'sentAt'?: string | null;
|
|
1099
|
+
/**
|
|
1100
|
+
*
|
|
1101
|
+
* @type {string}
|
|
1102
|
+
* @memberof APIMessageCreate
|
|
1103
|
+
*/
|
|
1104
|
+
'deliveredAt'?: string | null;
|
|
1105
|
+
/**
|
|
1106
|
+
*
|
|
1107
|
+
* @type {string}
|
|
1108
|
+
* @memberof APIMessageCreate
|
|
1109
|
+
*/
|
|
1110
|
+
'failedAt'?: string | null;
|
|
1111
|
+
/**
|
|
1112
|
+
*
|
|
1113
|
+
* @type {string}
|
|
1114
|
+
* @memberof APIMessageCreate
|
|
1115
|
+
*/
|
|
1116
|
+
'scheduledAt'?: string | null;
|
|
1117
|
+
/**
|
|
1118
|
+
*
|
|
1119
|
+
* @type {string}
|
|
1120
|
+
* @memberof APIMessageCreate
|
|
1121
|
+
*/
|
|
1122
|
+
'pausedAt'?: string | null;
|
|
1123
|
+
/**
|
|
1124
|
+
*
|
|
1125
|
+
* @type {string}
|
|
1126
|
+
* @memberof APIMessageCreate
|
|
1127
|
+
*/
|
|
1128
|
+
'cancelledAt'?: string | null;
|
|
1129
|
+
/**
|
|
1130
|
+
*
|
|
1131
|
+
* @type {string}
|
|
1132
|
+
* @memberof APIMessageCreate
|
|
1133
|
+
*/
|
|
1134
|
+
'cancelledBy'?: string | null;
|
|
1135
|
+
/**
|
|
1136
|
+
*
|
|
1137
|
+
* @type {Participanttypedata}
|
|
1138
|
+
* @memberof APIMessageCreate
|
|
1139
|
+
*/
|
|
1140
|
+
'participantTypeData': Participanttypedata;
|
|
1141
|
+
/**
|
|
1142
|
+
*
|
|
1143
|
+
* @type {Messagetypedata1}
|
|
1144
|
+
* @memberof APIMessageCreate
|
|
1145
|
+
*/
|
|
1146
|
+
'messageTypeData': Messagetypedata1;
|
|
1099
1147
|
}
|
|
1100
1148
|
/**
|
|
1101
1149
|
*
|
|
@@ -2473,6 +2521,12 @@ interface ProviderStaffApi {
|
|
|
2473
2521
|
* @memberof ProviderStaffApi
|
|
2474
2522
|
*/
|
|
2475
2523
|
'providerUserId': string;
|
|
2524
|
+
/**
|
|
2525
|
+
*
|
|
2526
|
+
* @type {string}
|
|
2527
|
+
* @memberof ProviderStaffApi
|
|
2528
|
+
*/
|
|
2529
|
+
'providerReadAt'?: string | null;
|
|
2476
2530
|
}
|
|
2477
2531
|
declare const ProviderStaffApiStaffTypeEnum: {
|
|
2478
2532
|
readonly ProviderStaff: "PROVIDER_STAFF";
|
package/dist/index.d.ts
CHANGED
|
@@ -987,18 +987,6 @@ interface APIMessage {
|
|
|
987
987
|
* @memberof APIMessage
|
|
988
988
|
*/
|
|
989
989
|
'deliveredAt'?: string | null;
|
|
990
|
-
/**
|
|
991
|
-
*
|
|
992
|
-
* @type {string}
|
|
993
|
-
* @memberof APIMessage
|
|
994
|
-
*/
|
|
995
|
-
'staffReadAt'?: string | null;
|
|
996
|
-
/**
|
|
997
|
-
*
|
|
998
|
-
* @type {string}
|
|
999
|
-
* @memberof APIMessage
|
|
1000
|
-
*/
|
|
1001
|
-
'guestReadAt'?: string | null;
|
|
1002
990
|
/**
|
|
1003
991
|
*
|
|
1004
992
|
* @type {string}
|
|
@@ -1071,6 +1059,18 @@ interface APIMessage {
|
|
|
1071
1059
|
* @memberof APIMessage
|
|
1072
1060
|
*/
|
|
1073
1061
|
'status': MessageStatus;
|
|
1062
|
+
/**
|
|
1063
|
+
*
|
|
1064
|
+
* @type {string}
|
|
1065
|
+
* @memberof APIMessage
|
|
1066
|
+
*/
|
|
1067
|
+
'staffReadAt'?: string | null;
|
|
1068
|
+
/**
|
|
1069
|
+
*
|
|
1070
|
+
* @type {string}
|
|
1071
|
+
* @memberof APIMessage
|
|
1072
|
+
*/
|
|
1073
|
+
'guestReadAt'?: string | null;
|
|
1074
1074
|
/**
|
|
1075
1075
|
*
|
|
1076
1076
|
* @type {Messagetypedata}
|
|
@@ -1086,16 +1086,64 @@ interface APIMessage {
|
|
|
1086
1086
|
interface APIMessageCreate {
|
|
1087
1087
|
/**
|
|
1088
1088
|
*
|
|
1089
|
-
* @type {
|
|
1089
|
+
* @type {string}
|
|
1090
1090
|
* @memberof APIMessageCreate
|
|
1091
1091
|
*/
|
|
1092
|
-
'
|
|
1092
|
+
'body': string;
|
|
1093
1093
|
/**
|
|
1094
1094
|
*
|
|
1095
1095
|
* @type {string}
|
|
1096
1096
|
* @memberof APIMessageCreate
|
|
1097
1097
|
*/
|
|
1098
|
-
'
|
|
1098
|
+
'sentAt'?: string | null;
|
|
1099
|
+
/**
|
|
1100
|
+
*
|
|
1101
|
+
* @type {string}
|
|
1102
|
+
* @memberof APIMessageCreate
|
|
1103
|
+
*/
|
|
1104
|
+
'deliveredAt'?: string | null;
|
|
1105
|
+
/**
|
|
1106
|
+
*
|
|
1107
|
+
* @type {string}
|
|
1108
|
+
* @memberof APIMessageCreate
|
|
1109
|
+
*/
|
|
1110
|
+
'failedAt'?: string | null;
|
|
1111
|
+
/**
|
|
1112
|
+
*
|
|
1113
|
+
* @type {string}
|
|
1114
|
+
* @memberof APIMessageCreate
|
|
1115
|
+
*/
|
|
1116
|
+
'scheduledAt'?: string | null;
|
|
1117
|
+
/**
|
|
1118
|
+
*
|
|
1119
|
+
* @type {string}
|
|
1120
|
+
* @memberof APIMessageCreate
|
|
1121
|
+
*/
|
|
1122
|
+
'pausedAt'?: string | null;
|
|
1123
|
+
/**
|
|
1124
|
+
*
|
|
1125
|
+
* @type {string}
|
|
1126
|
+
* @memberof APIMessageCreate
|
|
1127
|
+
*/
|
|
1128
|
+
'cancelledAt'?: string | null;
|
|
1129
|
+
/**
|
|
1130
|
+
*
|
|
1131
|
+
* @type {string}
|
|
1132
|
+
* @memberof APIMessageCreate
|
|
1133
|
+
*/
|
|
1134
|
+
'cancelledBy'?: string | null;
|
|
1135
|
+
/**
|
|
1136
|
+
*
|
|
1137
|
+
* @type {Participanttypedata}
|
|
1138
|
+
* @memberof APIMessageCreate
|
|
1139
|
+
*/
|
|
1140
|
+
'participantTypeData': Participanttypedata;
|
|
1141
|
+
/**
|
|
1142
|
+
*
|
|
1143
|
+
* @type {Messagetypedata1}
|
|
1144
|
+
* @memberof APIMessageCreate
|
|
1145
|
+
*/
|
|
1146
|
+
'messageTypeData': Messagetypedata1;
|
|
1099
1147
|
}
|
|
1100
1148
|
/**
|
|
1101
1149
|
*
|
|
@@ -2473,6 +2521,12 @@ interface ProviderStaffApi {
|
|
|
2473
2521
|
* @memberof ProviderStaffApi
|
|
2474
2522
|
*/
|
|
2475
2523
|
'providerUserId': string;
|
|
2524
|
+
/**
|
|
2525
|
+
*
|
|
2526
|
+
* @type {string}
|
|
2527
|
+
* @memberof ProviderStaffApi
|
|
2528
|
+
*/
|
|
2529
|
+
'providerReadAt'?: string | null;
|
|
2476
2530
|
}
|
|
2477
2531
|
declare const ProviderStaffApiStaffTypeEnum: {
|
|
2478
2532
|
readonly ProviderStaff: "PROVIDER_STAFF";
|