@closerplatform/spinner-openapi 0.12.423 → 0.12.424
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/api.d.ts +141 -8
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -2959,12 +2959,6 @@ export interface InboxEntry {
|
|
|
2959
2959
|
* @memberof InboxEntry
|
|
2960
2960
|
*/
|
|
2961
2961
|
isSnoozed: boolean;
|
|
2962
|
-
/**
|
|
2963
|
-
*
|
|
2964
|
-
* @type {Array<number>}
|
|
2965
|
-
* @memberof InboxEntry
|
|
2966
|
-
*/
|
|
2967
|
-
threadsClosedTimestamps: Array<number>;
|
|
2968
2962
|
/**
|
|
2969
2963
|
*
|
|
2970
2964
|
* @type {SnoozedStatus}
|
|
@@ -3054,10 +3048,10 @@ export declare enum InboxSorting {
|
|
|
3054
3048
|
export interface InboxState {
|
|
3055
3049
|
/**
|
|
3056
3050
|
*
|
|
3057
|
-
* @type {Array<
|
|
3051
|
+
* @type {Array<InboxWithLeadProfileEntry>}
|
|
3058
3052
|
* @memberof InboxState
|
|
3059
3053
|
*/
|
|
3060
|
-
entries: Array<
|
|
3054
|
+
entries: Array<InboxWithLeadProfileEntry>;
|
|
3061
3055
|
/**
|
|
3062
3056
|
*
|
|
3063
3057
|
* @type {number}
|
|
@@ -3065,6 +3059,145 @@ export interface InboxState {
|
|
|
3065
3059
|
*/
|
|
3066
3060
|
timestamp: number;
|
|
3067
3061
|
}
|
|
3062
|
+
/**
|
|
3063
|
+
*
|
|
3064
|
+
* @export
|
|
3065
|
+
* @interface InboxWithLeadProfileEntry
|
|
3066
|
+
*/
|
|
3067
|
+
export interface InboxWithLeadProfileEntry {
|
|
3068
|
+
/**
|
|
3069
|
+
*
|
|
3070
|
+
* @type {string}
|
|
3071
|
+
* @memberof InboxWithLeadProfileEntry
|
|
3072
|
+
*/
|
|
3073
|
+
room: string;
|
|
3074
|
+
/**
|
|
3075
|
+
*
|
|
3076
|
+
* @type {string}
|
|
3077
|
+
* @memberof InboxWithLeadProfileEntry
|
|
3078
|
+
*/
|
|
3079
|
+
owner: string;
|
|
3080
|
+
/**
|
|
3081
|
+
*
|
|
3082
|
+
* @type {string}
|
|
3083
|
+
* @memberof InboxWithLeadProfileEntry
|
|
3084
|
+
*/
|
|
3085
|
+
sender: string;
|
|
3086
|
+
/**
|
|
3087
|
+
*
|
|
3088
|
+
* @type {InboxEntryProfile}
|
|
3089
|
+
* @memberof InboxWithLeadProfileEntry
|
|
3090
|
+
*/
|
|
3091
|
+
profile: InboxEntryProfile;
|
|
3092
|
+
/**
|
|
3093
|
+
*
|
|
3094
|
+
* @type {ConversationStatus}
|
|
3095
|
+
* @memberof InboxWithLeadProfileEntry
|
|
3096
|
+
*/
|
|
3097
|
+
status: ConversationStatus;
|
|
3098
|
+
/**
|
|
3099
|
+
*
|
|
3100
|
+
* @type {string}
|
|
3101
|
+
* @memberof InboxWithLeadProfileEntry
|
|
3102
|
+
*/
|
|
3103
|
+
assignee?: string;
|
|
3104
|
+
/**
|
|
3105
|
+
*
|
|
3106
|
+
* @type {InboxEntryType}
|
|
3107
|
+
* @memberof InboxWithLeadProfileEntry
|
|
3108
|
+
*/
|
|
3109
|
+
type: InboxEntryType;
|
|
3110
|
+
/**
|
|
3111
|
+
*
|
|
3112
|
+
* @type {string}
|
|
3113
|
+
* @memberof InboxWithLeadProfileEntry
|
|
3114
|
+
*/
|
|
3115
|
+
message?: string;
|
|
3116
|
+
/**
|
|
3117
|
+
*
|
|
3118
|
+
* @type {number}
|
|
3119
|
+
* @memberof InboxWithLeadProfileEntry
|
|
3120
|
+
*/
|
|
3121
|
+
timestamp: number;
|
|
3122
|
+
/**
|
|
3123
|
+
*
|
|
3124
|
+
* @type {number}
|
|
3125
|
+
* @memberof InboxWithLeadProfileEntry
|
|
3126
|
+
*/
|
|
3127
|
+
lastGuestMessage?: number;
|
|
3128
|
+
/**
|
|
3129
|
+
*
|
|
3130
|
+
* @type {number}
|
|
3131
|
+
* @memberof InboxWithLeadProfileEntry
|
|
3132
|
+
*/
|
|
3133
|
+
lastGuestTimestamp: number;
|
|
3134
|
+
/**
|
|
3135
|
+
*
|
|
3136
|
+
* @type {number}
|
|
3137
|
+
* @memberof InboxWithLeadProfileEntry
|
|
3138
|
+
*/
|
|
3139
|
+
lastAdviserTimestamp?: number;
|
|
3140
|
+
/**
|
|
3141
|
+
*
|
|
3142
|
+
* @type {number}
|
|
3143
|
+
* @memberof InboxWithLeadProfileEntry
|
|
3144
|
+
*/
|
|
3145
|
+
threadCreatedAt?: number;
|
|
3146
|
+
/**
|
|
3147
|
+
*
|
|
3148
|
+
* @type {number}
|
|
3149
|
+
* @memberof InboxWithLeadProfileEntry
|
|
3150
|
+
*/
|
|
3151
|
+
threadClosedAt?: number;
|
|
3152
|
+
/**
|
|
3153
|
+
*
|
|
3154
|
+
* @type {number}
|
|
3155
|
+
* @memberof InboxWithLeadProfileEntry
|
|
3156
|
+
*/
|
|
3157
|
+
mark: number;
|
|
3158
|
+
/**
|
|
3159
|
+
*
|
|
3160
|
+
* @type {number}
|
|
3161
|
+
* @memberof InboxWithLeadProfileEntry
|
|
3162
|
+
*/
|
|
3163
|
+
unreadCount: number;
|
|
3164
|
+
/**
|
|
3165
|
+
*
|
|
3166
|
+
* @type {ArtichokePresence}
|
|
3167
|
+
* @memberof InboxWithLeadProfileEntry
|
|
3168
|
+
*/
|
|
3169
|
+
ownerPresence: ArtichokePresence;
|
|
3170
|
+
/**
|
|
3171
|
+
*
|
|
3172
|
+
* @type {Array<string>}
|
|
3173
|
+
* @memberof InboxWithLeadProfileEntry
|
|
3174
|
+
*/
|
|
3175
|
+
tags: Array<string>;
|
|
3176
|
+
/**
|
|
3177
|
+
*
|
|
3178
|
+
* @type {boolean}
|
|
3179
|
+
* @memberof InboxWithLeadProfileEntry
|
|
3180
|
+
*/
|
|
3181
|
+
isSnoozed: boolean;
|
|
3182
|
+
/**
|
|
3183
|
+
*
|
|
3184
|
+
* @type {any}
|
|
3185
|
+
* @memberof InboxWithLeadProfileEntry
|
|
3186
|
+
*/
|
|
3187
|
+
payload?: any;
|
|
3188
|
+
/**
|
|
3189
|
+
*
|
|
3190
|
+
* @type {SnoozedStatus}
|
|
3191
|
+
* @memberof InboxWithLeadProfileEntry
|
|
3192
|
+
*/
|
|
3193
|
+
snoozedStatus?: SnoozedStatus;
|
|
3194
|
+
/**
|
|
3195
|
+
*
|
|
3196
|
+
* @type {string}
|
|
3197
|
+
* @memberof InboxWithLeadProfileEntry
|
|
3198
|
+
*/
|
|
3199
|
+
tagGroupId?: string;
|
|
3200
|
+
}
|
|
3068
3201
|
/**
|
|
3069
3202
|
*
|
|
3070
3203
|
* @export
|