@lilaquadrat/chat 0.1.11 → 0.1.13
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/app/assets/de-s6DWJrk7.js +1 -0
- package/dist/app/assets/en-C_4GFXY1.js +1 -0
- package/dist/app/assets/{index-CAoKaFWU.js → index-BdLih8WZ.js} +1 -1
- package/dist/app/assets/{web-component-NO1YrOLk.js → web-component-C93sD53H.js} +1 -1
- package/dist/app/index.html +1 -1
- package/dist/types/src/config/bootstrap.d.ts +5 -1
- package/dist/types/src/libs/StudioSDK.d.ts +5 -0
- package/dist/types/src/locales/de.d.ts +4 -0
- package/dist/types/src/locales/en.d.ts +4 -0
- package/dist/types/src/plugins/i18n.d.ts +4 -0
- package/dist/types/src/standalone/settings.d.ts +1 -0
- package/dist/types/src/stores/conversations.store.d.ts +20 -5
- package/dist/types/src/stores/main.store.d.ts +1 -4
- package/dist/types/tsconfig.build.tsbuildinfo +1 -1
- package/dist/wc/lilaquadrat-studio-chat.js +8 -8
- package/dist/wc/lilaquadrat-studio-chat.umd.cjs +1 -1
- package/package.json +1 -1
- package/dist/app/assets/de-BNs1R9N6.js +0 -1
- package/dist/app/assets/en-DoxzdO49.js +0 -1
package/dist/app/index.html
CHANGED
|
@@ -27,7 +27,11 @@ export interface ChatModuleConfig {
|
|
|
27
27
|
* resolve the current user's name. `id` defaults to `userId` when omitted.
|
|
28
28
|
*/
|
|
29
29
|
user?: ParticipantUser;
|
|
30
|
-
/**
|
|
30
|
+
/**
|
|
31
|
+
* @deprecated ignored. The backend owns the support team (everyone holding the
|
|
32
|
+
* `support:member` scope) and attaches it itself, so a client-side recipient list could
|
|
33
|
+
* only ever drift from reality. Still accepted so existing embeds keep working.
|
|
34
|
+
*/
|
|
31
35
|
support?: {
|
|
32
36
|
participants: string[];
|
|
33
37
|
};
|
|
@@ -100,6 +100,11 @@ export default class StudioSDK {
|
|
|
100
100
|
delete: (conversationId: string) => Promise<SDKResponse<any>>;
|
|
101
101
|
listParticipants: (conversationId: string) => Promise<SDKResponse<any>>;
|
|
102
102
|
rights: (conversationId: string, user: string, rights: string[]) => Promise<SDKResponse<any>>;
|
|
103
|
+
/**
|
|
104
|
+
* silence the conversation for the CALLER only. Stored on their participant doc and never
|
|
105
|
+
* broadcast to the other members — muting is private.
|
|
106
|
+
*/
|
|
107
|
+
mute: (conversationId: string, muted: boolean) => Promise<SDKResponse<any>>;
|
|
103
108
|
block: (conversationId: string, user: string, block: boolean) => Promise<SDKResponse<any>>;
|
|
104
109
|
};
|
|
105
110
|
contacts: {
|
|
@@ -6,11 +6,14 @@ declare const _default: {
|
|
|
6
6
|
retry: string;
|
|
7
7
|
'new chat': string;
|
|
8
8
|
conversations: string;
|
|
9
|
+
'no conversations yet': string;
|
|
9
10
|
'contact support': string;
|
|
10
11
|
support: string;
|
|
11
12
|
options: string;
|
|
12
13
|
actions: string;
|
|
13
14
|
mute: string;
|
|
15
|
+
unmute: string;
|
|
16
|
+
muted: string;
|
|
14
17
|
delete: string;
|
|
15
18
|
leave: string;
|
|
16
19
|
'leave now': string;
|
|
@@ -62,6 +65,7 @@ declare const _default: {
|
|
|
62
65
|
CONVERSATION_NOT_FOUND: string;
|
|
63
66
|
CONVERSATION_ALREADY_EXISTS: string;
|
|
64
67
|
MIN_PARTICIPANTS: string;
|
|
68
|
+
SUPPORT_UNAVAILABLE: string;
|
|
65
69
|
CONTACT_NOT_FOUND: string;
|
|
66
70
|
CANNOT_BLOCK_SELF: string;
|
|
67
71
|
UNKNOWN_MESSAGE_TYPE: string;
|
|
@@ -6,11 +6,14 @@ declare const _default: {
|
|
|
6
6
|
retry: string;
|
|
7
7
|
'new chat': string;
|
|
8
8
|
conversations: string;
|
|
9
|
+
'no conversations yet': string;
|
|
9
10
|
'contact support': string;
|
|
10
11
|
support: string;
|
|
11
12
|
options: string;
|
|
12
13
|
actions: string;
|
|
13
14
|
mute: string;
|
|
15
|
+
unmute: string;
|
|
16
|
+
muted: string;
|
|
14
17
|
delete: string;
|
|
15
18
|
leave: string;
|
|
16
19
|
'leave now': string;
|
|
@@ -62,6 +65,7 @@ declare const _default: {
|
|
|
62
65
|
CONVERSATION_NOT_FOUND: string;
|
|
63
66
|
CONVERSATION_ALREADY_EXISTS: string;
|
|
64
67
|
MIN_PARTICIPANTS: string;
|
|
68
|
+
SUPPORT_UNAVAILABLE: string;
|
|
65
69
|
CONTACT_NOT_FOUND: string;
|
|
66
70
|
CANNOT_BLOCK_SELF: string;
|
|
67
71
|
UNKNOWN_MESSAGE_TYPE: string;
|
|
@@ -10,11 +10,14 @@ declare const i18n: import("vue-i18n").I18n<{
|
|
|
10
10
|
retry: string;
|
|
11
11
|
'new chat': string;
|
|
12
12
|
conversations: string;
|
|
13
|
+
'no conversations yet': string;
|
|
13
14
|
'contact support': string;
|
|
14
15
|
support: string;
|
|
15
16
|
options: string;
|
|
16
17
|
actions: string;
|
|
17
18
|
mute: string;
|
|
19
|
+
unmute: string;
|
|
20
|
+
muted: string;
|
|
18
21
|
delete: string;
|
|
19
22
|
leave: string;
|
|
20
23
|
'leave now': string;
|
|
@@ -66,6 +69,7 @@ declare const i18n: import("vue-i18n").I18n<{
|
|
|
66
69
|
CONVERSATION_NOT_FOUND: string;
|
|
67
70
|
CONVERSATION_ALREADY_EXISTS: string;
|
|
68
71
|
MIN_PARTICIPANTS: string;
|
|
72
|
+
SUPPORT_UNAVAILABLE: string;
|
|
69
73
|
CONTACT_NOT_FOUND: string;
|
|
70
74
|
CANNOT_BLOCK_SELF: string;
|
|
71
75
|
UNKNOWN_MESSAGE_TYPE: string;
|
|
@@ -7,6 +7,7 @@ export declare const useConversationsStore: import("pinia").StoreDefinition<"con
|
|
|
7
7
|
refreshConversations: () => Promise<void>;
|
|
8
8
|
handleReconnect: () => Promise<void>;
|
|
9
9
|
conversations: import("vue").Ref<ConversationEntry[], ConversationEntry[]>;
|
|
10
|
+
conversationsLoaded: import("vue").Ref<boolean, boolean>;
|
|
10
11
|
unreadConversations: import("vue").ComputedRef<ConversationEntry[]>;
|
|
11
12
|
totalUnreadCount: import("vue").ComputedRef<any>;
|
|
12
13
|
totalUnreadConversations: import("vue").ComputedRef<number>;
|
|
@@ -14,11 +15,15 @@ export declare const useConversationsStore: import("pinia").StoreDefinition<"con
|
|
|
14
15
|
setTyping: (conversation: string, user: string, isTyping: boolean) => void;
|
|
15
16
|
loadParticipants: (conversation: string) => Promise<any>;
|
|
16
17
|
setRights: (conversation: string, user: string, rights: string[]) => Promise<import("@/libs/StudioSDK").SDKResponse<any>>;
|
|
18
|
+
isMuted: (conversation: string) => boolean;
|
|
19
|
+
setMuted: (conversation: string, muted: boolean) => Promise<void>;
|
|
20
|
+
conversationMuted: (conversation: string, muted: boolean) => void;
|
|
17
21
|
blockUser: (conversation: string, user: string, block: boolean) => Promise<import("@/libs/StudioSDK").SDKResponse<any>>;
|
|
18
22
|
updateParticipantRights: (conversation: string, user: string, rights: string[]) => void;
|
|
19
23
|
create: (participants: string[]) => Promise<import("@/libs/StudioSDK").SDKResponse<any>>;
|
|
20
24
|
createNew: (participants: string[], creator?: string, operationMode?: "chat" | "support") => string;
|
|
21
|
-
|
|
25
|
+
createConversation: () => string;
|
|
26
|
+
startSupport: () => Promise<any>;
|
|
22
27
|
activateConversation: (conversationId: string) => Promise<void>;
|
|
23
28
|
activeConversation: import("vue").Ref<any, any>;
|
|
24
29
|
convertTempToConversation: (conversation: Record<string, any>) => void;
|
|
@@ -53,11 +58,12 @@ export declare const useConversationsStore: import("pinia").StoreDefinition<"con
|
|
|
53
58
|
getLatestConversation: () => ConversationEntry;
|
|
54
59
|
activateLastOrLatestConversation: () => void;
|
|
55
60
|
readLastActiveConversation: () => void;
|
|
56
|
-
}, "conversations" | "typing" | "activeConversation" | "lastActiveConversation">, Pick<{
|
|
61
|
+
}, "conversations" | "typing" | "conversationsLoaded" | "activeConversation" | "lastActiveConversation">, Pick<{
|
|
57
62
|
getAllConversations: () => Promise<void>;
|
|
58
63
|
refreshConversations: () => Promise<void>;
|
|
59
64
|
handleReconnect: () => Promise<void>;
|
|
60
65
|
conversations: import("vue").Ref<ConversationEntry[], ConversationEntry[]>;
|
|
66
|
+
conversationsLoaded: import("vue").Ref<boolean, boolean>;
|
|
61
67
|
unreadConversations: import("vue").ComputedRef<ConversationEntry[]>;
|
|
62
68
|
totalUnreadCount: import("vue").ComputedRef<any>;
|
|
63
69
|
totalUnreadConversations: import("vue").ComputedRef<number>;
|
|
@@ -65,11 +71,15 @@ export declare const useConversationsStore: import("pinia").StoreDefinition<"con
|
|
|
65
71
|
setTyping: (conversation: string, user: string, isTyping: boolean) => void;
|
|
66
72
|
loadParticipants: (conversation: string) => Promise<any>;
|
|
67
73
|
setRights: (conversation: string, user: string, rights: string[]) => Promise<import("@/libs/StudioSDK").SDKResponse<any>>;
|
|
74
|
+
isMuted: (conversation: string) => boolean;
|
|
75
|
+
setMuted: (conversation: string, muted: boolean) => Promise<void>;
|
|
76
|
+
conversationMuted: (conversation: string, muted: boolean) => void;
|
|
68
77
|
blockUser: (conversation: string, user: string, block: boolean) => Promise<import("@/libs/StudioSDK").SDKResponse<any>>;
|
|
69
78
|
updateParticipantRights: (conversation: string, user: string, rights: string[]) => void;
|
|
70
79
|
create: (participants: string[]) => Promise<import("@/libs/StudioSDK").SDKResponse<any>>;
|
|
71
80
|
createNew: (participants: string[], creator?: string, operationMode?: "chat" | "support") => string;
|
|
72
|
-
|
|
81
|
+
createConversation: () => string;
|
|
82
|
+
startSupport: () => Promise<any>;
|
|
73
83
|
activateConversation: (conversationId: string) => Promise<void>;
|
|
74
84
|
activeConversation: import("vue").Ref<any, any>;
|
|
75
85
|
convertTempToConversation: (conversation: Record<string, any>) => void;
|
|
@@ -109,6 +119,7 @@ export declare const useConversationsStore: import("pinia").StoreDefinition<"con
|
|
|
109
119
|
refreshConversations: () => Promise<void>;
|
|
110
120
|
handleReconnect: () => Promise<void>;
|
|
111
121
|
conversations: import("vue").Ref<ConversationEntry[], ConversationEntry[]>;
|
|
122
|
+
conversationsLoaded: import("vue").Ref<boolean, boolean>;
|
|
112
123
|
unreadConversations: import("vue").ComputedRef<ConversationEntry[]>;
|
|
113
124
|
totalUnreadCount: import("vue").ComputedRef<any>;
|
|
114
125
|
totalUnreadConversations: import("vue").ComputedRef<number>;
|
|
@@ -116,11 +127,15 @@ export declare const useConversationsStore: import("pinia").StoreDefinition<"con
|
|
|
116
127
|
setTyping: (conversation: string, user: string, isTyping: boolean) => void;
|
|
117
128
|
loadParticipants: (conversation: string) => Promise<any>;
|
|
118
129
|
setRights: (conversation: string, user: string, rights: string[]) => Promise<import("@/libs/StudioSDK").SDKResponse<any>>;
|
|
130
|
+
isMuted: (conversation: string) => boolean;
|
|
131
|
+
setMuted: (conversation: string, muted: boolean) => Promise<void>;
|
|
132
|
+
conversationMuted: (conversation: string, muted: boolean) => void;
|
|
119
133
|
blockUser: (conversation: string, user: string, block: boolean) => Promise<import("@/libs/StudioSDK").SDKResponse<any>>;
|
|
120
134
|
updateParticipantRights: (conversation: string, user: string, rights: string[]) => void;
|
|
121
135
|
create: (participants: string[]) => Promise<import("@/libs/StudioSDK").SDKResponse<any>>;
|
|
122
136
|
createNew: (participants: string[], creator?: string, operationMode?: "chat" | "support") => string;
|
|
123
|
-
|
|
137
|
+
createConversation: () => string;
|
|
138
|
+
startSupport: () => Promise<any>;
|
|
124
139
|
activateConversation: (conversationId: string) => Promise<void>;
|
|
125
140
|
activeConversation: import("vue").Ref<any, any>;
|
|
126
141
|
convertTempToConversation: (conversation: Record<string, any>) => void;
|
|
@@ -155,5 +170,5 @@ export declare const useConversationsStore: import("pinia").StoreDefinition<"con
|
|
|
155
170
|
getLatestConversation: () => ConversationEntry;
|
|
156
171
|
activateLastOrLatestConversation: () => void;
|
|
157
172
|
readLastActiveConversation: () => void;
|
|
158
|
-
}, "leave" | "rename" | "getAllConversations" | "refreshConversations" | "handleReconnect" | "setTyping" | "loadParticipants" | "setRights" | "blockUser" | "updateParticipantRights" | "create" | "createNew" | "startSupport" | "activateConversation" | "convertTempToConversation" | "getMessagesFromApi" | "addMessagesToConversation" | "getMessagesForConversation" | "updateLastMessage" | "updateUnread" | "updateAllUnread" | "increaseMessageCount" | "increaseMessageCountSystem" | "setLastReadId" | "getConversation" | "addParticipant" | "removeParticipant" | "setParticipants" | "toggleParticipant" | "getConversationViaParticipantsAndName" | "cleanConversations" | "abandonConversation" | "inactivateConversation" | "conversationRenamed" | "executeParticipantsEdit" | "updateConversationParticipant" | "deleteConversation" | "getLatestConversation" | "activateLastOrLatestConversation" | "readLastActiveConversation">>;
|
|
173
|
+
}, "leave" | "rename" | "getAllConversations" | "refreshConversations" | "handleReconnect" | "setTyping" | "loadParticipants" | "setRights" | "isMuted" | "setMuted" | "conversationMuted" | "blockUser" | "updateParticipantRights" | "create" | "createNew" | "createConversation" | "startSupport" | "activateConversation" | "convertTempToConversation" | "getMessagesFromApi" | "addMessagesToConversation" | "getMessagesForConversation" | "updateLastMessage" | "updateUnread" | "updateAllUnread" | "increaseMessageCount" | "increaseMessageCountSystem" | "setLastReadId" | "getConversation" | "addParticipant" | "removeParticipant" | "setParticipants" | "toggleParticipant" | "getConversationViaParticipantsAndName" | "cleanConversations" | "abandonConversation" | "inactivateConversation" | "conversationRenamed" | "executeParticipantsEdit" | "updateConversationParticipant" | "deleteConversation" | "getLatestConversation" | "activateLastOrLatestConversation" | "readLastActiveConversation">>;
|
|
159
174
|
export default useConversationsStore;
|
|
@@ -19,7 +19,6 @@ export declare const useMainStore: import("pinia").StoreDefinition<"main", Pick<
|
|
|
19
19
|
chatVisible: import("vue").Ref<boolean, boolean>;
|
|
20
20
|
soundEnabled: import("vue").Ref<boolean, boolean>;
|
|
21
21
|
soundVolume: import("vue").Ref<number, number>;
|
|
22
|
-
supportParticipants: import("vue").Ref<string[], string[]>;
|
|
23
22
|
wsUrl: import("vue").Ref<string, string>;
|
|
24
23
|
apiUrl: import("vue").Ref<string, string>;
|
|
25
24
|
mediaUrl: import("vue").Ref<string, string>;
|
|
@@ -56,7 +55,7 @@ export declare const useMainStore: import("pinia").StoreDefinition<"main", Pick<
|
|
|
56
55
|
}>;
|
|
57
56
|
setError: (error: string, messageType?: string) => void;
|
|
58
57
|
clearError: () => void;
|
|
59
|
-
}, "state" | "fullscreen" | "features" | "viewMode" | "chatVisible" | "soundEnabled" | "soundVolume" | "
|
|
58
|
+
}, "state" | "fullscreen" | "features" | "viewMode" | "chatVisible" | "soundEnabled" | "soundVolume" | "wsUrl" | "apiUrl" | "mediaUrl" | "authToken" | "unreadCallback" | "closeCallback" | "content" | "lastError">, Pick<{
|
|
60
59
|
state: import("vue").Ref<"connected" | "disconnected", "connected" | "disconnected">;
|
|
61
60
|
fullscreen: import("vue").Ref<boolean, boolean>;
|
|
62
61
|
features: import("vue").Ref<Feature[], Feature[]>;
|
|
@@ -68,7 +67,6 @@ export declare const useMainStore: import("pinia").StoreDefinition<"main", Pick<
|
|
|
68
67
|
chatVisible: import("vue").Ref<boolean, boolean>;
|
|
69
68
|
soundEnabled: import("vue").Ref<boolean, boolean>;
|
|
70
69
|
soundVolume: import("vue").Ref<number, number>;
|
|
71
|
-
supportParticipants: import("vue").Ref<string[], string[]>;
|
|
72
70
|
wsUrl: import("vue").Ref<string, string>;
|
|
73
71
|
apiUrl: import("vue").Ref<string, string>;
|
|
74
72
|
mediaUrl: import("vue").Ref<string, string>;
|
|
@@ -117,7 +115,6 @@ export declare const useMainStore: import("pinia").StoreDefinition<"main", Pick<
|
|
|
117
115
|
chatVisible: import("vue").Ref<boolean, boolean>;
|
|
118
116
|
soundEnabled: import("vue").Ref<boolean, boolean>;
|
|
119
117
|
soundVolume: import("vue").Ref<number, number>;
|
|
120
|
-
supportParticipants: import("vue").Ref<string[], string[]>;
|
|
121
118
|
wsUrl: import("vue").Ref<string, string>;
|
|
122
119
|
apiUrl: import("vue").Ref<string, string>;
|
|
123
120
|
mediaUrl: import("vue").Ref<string, string>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"fileNames":["../../node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/typescript/lib/lib.es2019.d.ts","../../node_modules/typescript/lib/lib.es2020.d.ts","../../node_modules/typescript/lib/lib.dom.d.ts","../../node_modules/typescript/lib/lib.dom.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/typescript/lib/lib.es2016.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../node_modules/typescript/lib/lib.es2017.date.d.ts","../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../node_modules/typescript/lib/lib.decorators.d.ts","../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../node_modules/vite/types/hmrPayload.d.ts","../../node_modules/vite/types/customEvent.d.ts","../../node_modules/vite/types/hot.d.ts","../../node_modules/vite/types/importGlob.d.ts","../../node_modules/vite/types/importMeta.d.ts","../../node_modules/vite/client.d.ts","../../node_modules/@vue/shared/dist/shared.d.ts","../../node_modules/@babel/types/lib/index.d.ts","../../node_modules/@babel/parser/typings/babel-parser.d.ts","../../node_modules/@vue/compiler-core/dist/compiler-core.d.ts","../../node_modules/@vue/compiler-dom/dist/compiler-dom.d.ts","../../node_modules/@vue/reactivity/dist/reactivity.d.ts","../../node_modules/@vue/runtime-core/dist/runtime-core.d.ts","../../node_modules/csstype/index.d.ts","../../node_modules/@vue/runtime-dom/dist/runtime-dom.d.ts","../../node_modules/vue/dist/vue.d.mts","../../env.d.ts","../../src/components.d.ts","../../node_modules/vue/jsx-runtime/index.d.ts","../../src/main.ts","../../node_modules/pinia/dist/pinia.d.ts","../../node_modules/dayjs/locale/types.d.ts","../../node_modules/dayjs/locale/index.d.ts","../../node_modules/dayjs/index.d.ts","../../node_modules/dayjs/plugin/relativeTime.d.ts","../../node_modules/@intlify/shared/dist/shared.d.ts","../../node_modules/source-map-js/source-map.d.ts","../../node_modules/@intlify/message-compiler/dist/message-compiler.d.ts","../../node_modules/@intlify/core-base/dist/core-base.d.ts","../../node_modules/vue-i18n/dist/vue-i18n.d.ts","../../src/locales/en.ts","../../src/plugins/i18n.ts","../../src/stores/main.store.ts","../../src/stores/user.store.ts","../../src/config/users.ts","../../src/config/auth.ts","../../node_modules/axios/index.d.ts","../../src/mixins/hardCopy.ts","../../src/mixins/logger.ts","../../src/libs/StudioSDK.ts","../../src/helpers/sdkOptions.ts","../../src/helpers/participants.ts","../../src/stores/usersCache.store.ts","../../src/helpers/loadComponents.ts","../../src/config/bootstrap.ts","../../src/libs/resize.ts","../../src/styles/loadFonts.ts","../../src/web-component.ts","../../src/bot/botClient.ts","../../node_modules/uuid/dist/esm-browser/types.d.ts","../../node_modules/uuid/dist/esm-browser/max.d.ts","../../node_modules/uuid/dist/esm-browser/nil.d.ts","../../node_modules/uuid/dist/esm-browser/parse.d.ts","../../node_modules/uuid/dist/esm-browser/stringify.d.ts","../../node_modules/uuid/dist/esm-browser/v1.d.ts","../../node_modules/uuid/dist/esm-browser/v1ToV6.d.ts","../../node_modules/uuid/dist/esm-browser/v35.d.ts","../../node_modules/uuid/dist/esm-browser/v3.d.ts","../../node_modules/uuid/dist/esm-browser/v4.d.ts","../../node_modules/uuid/dist/esm-browser/v5.d.ts","../../node_modules/uuid/dist/esm-browser/v6.d.ts","../../node_modules/uuid/dist/esm-browser/v6ToV1.d.ts","../../node_modules/uuid/dist/esm-browser/v7.d.ts","../../node_modules/uuid/dist/esm-browser/validate.d.ts","../../node_modules/uuid/dist/esm-browser/version.d.ts","../../node_modules/uuid/dist/esm-browser/index.d.ts","../../src/stores/bots.store.ts","../../src/bot/botManager.ts","../../src/composables/useChatVisibility.ts","../../src/composables/useTriggerEvent.ts","../../src/libs/websocketManager.ts","../../src/libs/chatSession.ts","../../src/composables/useWebSocket.ts","../../node_modules/dayjs/plugin/utc.d.ts","../../node_modules/dayjs/plugin/timezone.d.ts","../../node_modules/dayjs/plugin/localizedFormat.d.ts","../../src/helpers/date.ts","../../src/stores/conversations.store.ts","../../src/helpers/sounds.ts","../../src/helpers/handleMessages.ts","../../src/helpers/rights.ts","../../src/locales/de.ts","../../src/mixins/groupMessages.ts","../../src/stores/calls.store.ts","../../src/mixins/traceable.ts","../../node_modules/@auth0/auth0-spa-js/dist/typings/cache/shared.d.ts","../../node_modules/@auth0/auth0-spa-js/dist/typings/cache/cache-localstorage.d.ts","../../node_modules/@auth0/auth0-spa-js/dist/typings/cache/cache-memory.d.ts","../../node_modules/@auth0/auth0-spa-js/dist/typings/cache/key-manifest.d.ts","../../node_modules/@auth0/auth0-spa-js/dist/typings/cache/cache-manager.d.ts","../../node_modules/@auth0/auth0-spa-js/dist/typings/cache/index.d.ts","../../node_modules/dpop/build/index.d.ts","../../node_modules/@auth0/auth0-spa-js/dist/typings/dpop/utils.d.ts","../../node_modules/@auth0/auth0-spa-js/dist/typings/dpop/storage.d.ts","../../node_modules/@auth0/auth0-spa-js/dist/typings/dpop/dpop.d.ts","../../node_modules/@auth0/auth0-spa-js/dist/typings/fetcher.d.ts","../../node_modules/oauth4webapi/build/index.d.ts","../../node_modules/openid-client/build/index.d.ts","../../node_modules/@auth0/auth0-auth-js/dist/index.d.ts","../../node_modules/@auth0/auth0-spa-js/dist/typings/myaccount/types.d.ts","../../node_modules/@auth0/auth0-spa-js/dist/typings/myaccount/MyAccountApiClient.d.ts","../../node_modules/@auth0/auth0-spa-js/dist/typings/myaccount/index.d.ts","../../node_modules/@auth0/auth0-spa-js/dist/typings/mfa/constants.d.ts","../../node_modules/@auth0/auth0-spa-js/dist/typings/mfa/types.d.ts","../../node_modules/@auth0/auth0-spa-js/dist/typings/global.d.ts","../../node_modules/@auth0/auth0-spa-js/dist/typings/TokenExchange.d.ts","../../node_modules/@auth0/auth0-spa-js/dist/typings/errors.d.ts","../../node_modules/@auth0/auth0-spa-js/dist/typings/mfa/MfaApiClient.d.ts","../../node_modules/@auth0/auth0-spa-js/dist/typings/mfa/MfaContextManager.d.ts","../../node_modules/@auth0/auth0-spa-js/dist/typings/mfa/index.d.ts","../../node_modules/@auth0/auth0-spa-js/dist/typings/passkey/types.d.ts","../../node_modules/@auth0/auth0-spa-js/dist/typings/passkey/PasskeyApiClient.d.ts","../../node_modules/@auth0/auth0-spa-js/dist/typings/passkey/errors.d.ts","../../node_modules/@auth0/auth0-spa-js/dist/typings/passkey/index.d.ts","../../node_modules/@auth0/auth0-spa-js/dist/typings/Auth0Client.d.ts","../../node_modules/@auth0/auth0-spa-js/dist/typings/mfa/errors.d.ts","../../node_modules/@auth0/auth0-spa-js/dist/typings/index.d.ts","../../src/standalone/settings.ts","../../src/standalone/auth.ts","../../src/standalone/main.ts","../../src/stores/contacts.store.ts"],"fileIdsList":[[53,63,65,68,77],[145],[142,143,149,152,153,157,158,161],[133],[133,136],[133,134,135,137],[152],[140,141],[140],[139],[138,142,149,151],[138,143,149,152,153,154,157,161,162,163],[146,151,152,154,162],[154],[151],[146,154],[151,155,156],[150],[143,147],[147,148],[146,152],[146,152,158,162],[146],[158,159,160],[55],[73,75],[73,74],[54,55,56],[57],[54],[54,59,60,62],[59,60,61,62],[70],[69],[71],[71,121,122],[71,72,121],[71,72,122],[144],[63,65,68,77],[97,98,99,100,101,102,103,105,106,107,108,109,110,111,112],[97],[97,104],[52],[48],[49],[50,51],[63,65,68,76,77],[58,62],[62],[66],[66,80,96,114],[63,64,68,77],[63,65,66,68,77,80],[63,65,66,68,77],[63,65,66,68,77,118,119],[63,64,65,66,68,77,80,81,82,83,89,90,91],[66,70,71,121,122,123],[66,80,81,87,90,125,126],[66,80,83],[53,66],[66,84,85,86],[66,83,86,118],[63,65,66,68,77,86],[66,86],[66,124],[63,65,66,68,77,86,131],[66,77,78],[66,89,164,165],[66,92,95,165,166],[66,80],[63,65,66,68,77,82,113],[63,65,66,68,77,113],[63,65,66,68,77,81,82,87,88,90],[63,65,66,68,71,77,80,81,85,87,88,89,90,113],[63,65,66,68,77,87,88,89],[63,64,65,66,68,71,72,77,79,92,93,94]],"fileInfos":[{"version":"69684132aeb9b5642cbcd9e22dff7818ff0ee1aa831728af0ecf97d3364d5546","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"092c2bfe125ce69dbb1223c85d68d4d2397d7d8411867b5cc03cec902c233763","affectsGlobalScope":true,"impliedFormat":1},{"version":"07f073f19d67f74d732b1adea08e1dc66b1b58d77cb5b43931dee3d798a2fd53","affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"936e80ad36a2ee83fc3caf008e7c4c5afe45b3cf3d5c24408f039c1d47bdc1df","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"fef8cfad2e2dc5f5b3d97a6f4f2e92848eb1b88e897bb7318cef0e2820bceaab","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"64ccfe7dcbcad9b8a661a042ecb2309e41b9ab957f7b8cd070b05583a7821a13","impliedFormat":99},{"version":"98580d6ed68c9cee7f956685abbb6502d70bd92f48175ac807ae6c5e254fadc6","impliedFormat":99},{"version":"4e003c868b0d8f8ad200b96cbc653e18e513fa23e1c19c4fe3cc25d4394efc47","impliedFormat":99},{"version":"e50d04d261120f8f9d07e85698735d5b88f3a66bc395c08ce26c3d817d141a73","affectsGlobalScope":true,"impliedFormat":99},{"version":"72429cda84a47f092a3bf777bbc4ece9dda492fe0f02324aa7f197f3800089c6","affectsGlobalScope":true,"impliedFormat":99},{"version":"74b98be6ab7723114273526706070ff9885fdf990d5c4e722801addca4d264e1","affectsGlobalScope":true,"impliedFormat":99},{"version":"f468b74459f1ad4473b36a36d49f2b255f3c6b5d536c81239c2b2971df089eaf","impliedFormat":1},{"version":"556ccd493ec36c7d7cb130d51be66e147b91cc1415be383d71da0f1e49f742a9","impliedFormat":1},{"version":"95aba78013d782537cc5e23868e736bec5d377b918990e28ed56110e3ae8b958","impliedFormat":1},{"version":"fe991452257beed9884c864d87cea9dfd1fa7120e3fadbe5710a4f4e7a044c3e","impliedFormat":1},{"version":"ebe84ad8344962b7117a3b95065f47383215020eaf1b626463863b45b4d16e62","impliedFormat":1},{"version":"8fa68a409acbfc169f88bc6763ffb2df73b49346a938fd7b75397261995db523","impliedFormat":1},{"version":"3e74c6f34a28b7c948bfdaf19172000d589093660b3605f8c21c1b30173c729b","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac51dd7d31333793807a6abaa5ae168512b6131bd41d9c5b98477fc3b7800f9f","impliedFormat":1},{"version":"88ad1af02cacc61bf79683b021d326eeafc91231660a06495c5046d4649ec3a2","impliedFormat":1},{"version":"c0191592be8eb7906f99ac4b8798d80a585b94001ea1a5f50d6ce5b0d13a5c62","impliedFormat":99},{"version":"5af8cb088d7b49a5eb8a01253b5a4c26ee93cd9f3c12c9056318281f20429c09","affectsGlobalScope":true},"0cbc2486528a01cbe815bd8dad61b0195d8e2c0648f7998764e9d10884877739",{"version":"318d19118bf6bf8d088441c948990f53cafc79ed581b78f3d41a0f7a3f5f145c","impliedFormat":1},{"version":"09c7dce78379fbdc8a73d9fd2b9b5a8860b5da44ba9f262098730dcbff329787","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"dce3621e6c42ff85a85c26f827081feb317a2b45bc35007b7158964a2a9e1ed4","impliedFormat":99},{"version":"73a0ee6395819b063df4b148211985f2e1442945c1a057204cf4cf6281760dc3","affectsGlobalScope":true,"impliedFormat":1},{"version":"d05d8c67116dceafc62e691c47ac89f8f10cf7313cd1b2fb4fe801c2bf1bb1a7","impliedFormat":1},{"version":"3c5bb5207df7095882400323d692957e90ec17323ccff5fd5f29a1ecf3b165d0","impliedFormat":1},{"version":"f684f2969931de8fb9a5164f8c8f51aaea4025f4eede98406a17642a605c2842","impliedFormat":1},{"version":"f84bef1de5a8908edbc7b44ca39ba5e1db027060c132f3b1f2946f7c6ccc162f","impliedFormat":1},{"version":"402e5c534fb2b85fa771170595db3ac0dd532112c8fa44fc23f233bc6967488b","impliedFormat":1},{"version":"99a516417d80b6976439b6ad903ba8b39d85c0857610fe98a98c60e588f9f905","impliedFormat":1},{"version":"96cd08fcc008f2c4d161f4ca748563332173db07ae94b17b76914e7575042d20","impliedFormat":1},{"version":"662e81731c4bf5775658a491659e069c360ddb8f4551c9f2b483a827775cb8d4","impliedFormat":1},{"version":"7fd2fa3fb5e222728e708e49634dcbf03697fc2cc2b3dff71479c60277e962ab","signature":"76b726df8b10d3543bd70ab8c4c38eeed187abe5332fe55e7b039c4436a85c4c"},{"version":"54af9b2db7c2fd3968c400465a1e117bc1e23c98a8088fea63037fe331ee1a72","signature":"3ba0f41b8ff94f10742d876b9fa55e09b1ca3cc2979685bc8e5de54308d058fd"},{"version":"7e8dfc168e4deae85c4568f6d1ab1e6a6f8172f888542b55bc1a596231baa19a","signature":"562cf9fc649450e22af4be75d27ca0620b8ad094c1bcb321e1a47f00c30d6a77"},{"version":"5e84d6f357ae3457136f11d017e9c99b311d38b3d474ae9981e7ca4961a5f9b9","signature":"0d94a7cc8985478a2f79aade11b8ca4d92515d4cd9bbf61bf35be93c927bbdd9"},{"version":"6e07063b8da13cebb804a58c0b25470cac6344e0c101b5b86dee29e694c7c6b0","signature":"7148cabdf7c8e36e64d08ae4962a097618905d3520a2de92faad2bdb60e905ed"},{"version":"a230ff0dc27bd0816d67a58d4a9f255c93a8c9d3c67223dfa288aab39ef8901a","signature":"9a42d67b71a98bdd576e97306eee81db3e59fabe017e78ebffdaa0a205cc4db2"},{"version":"1d7ee0c4eb734d59b6d962bc9151f6330895067cd3058ce6a3cd95347ef5c6e8","impliedFormat":99},{"version":"04e7353aa8835b1b7f02b04c234aecd51a3014a415145456241048997233e606","signature":"c9dce0e39135e933a086d15ae7e145d646dd7588dcc929ceb2169411c2859614"},{"version":"538661bfaf65c2e53276dc4340d14f94b247fd4cad200818dce86f068dae5361","signature":"564df19173ec4c24839bc874905bceb6dbbde946b6a63fda0b7a77f47688e1b6"},{"version":"ca7229bcf54a079a055187f0b15a257ed3b941da4597fd2642aba543736c89fd","signature":"a22d2b614f47ef5455fbeda1faa38f1a1b814a99a2d1bed0434eb8d3ac90c577"},{"version":"162b8fd615c52c04f81eec3fe4adb9dbd0c6b9d649d930d272ac1332cfeb00bd","signature":"53215b3d7565fa2112c069a7d37ca4cfa0f37ea185ed644cbaa9de7ab4f7127f"},{"version":"cd72e9cc48c6588dfcbae007877a3c5f5b993befb1393d9b87068287805ca906","signature":"84783cfccdc53fe408c2787b3d19d8ddb01b39c717c242b1bf7d4c65f1f8eb63"},{"version":"5fbda7ddad8002e0c079baa2f84696a56672074712f1b6621b87d009b3ac3532","signature":"02c26732c2e74fdded44d6ab83be82f29c1fb5b22621fb630bee29f07058f482"},{"version":"9d3d220467399828fb6fe017af9ce82f8a0c186071d58ef0923498388c2731d3","signature":"089771d24ca50072add0d0341a540252865e367600ae651d49452dc5281df26f"},{"version":"b1d5a980be7420f03ba02d41630dd608de0b93456f5ba65557010e10777c5cf6","signature":"e87b572e1d15d5c12706765ebb0b56cfd9ecc138379d1e83d5b74689e23269a1"},{"version":"643586ccea0ad02eba85d3281d2d9fb6185d610982d5056c883224534bc27f68","signature":"94db8ccbf1c6c5256e31947d009b6a7095c77a8f66822c8b5bac9cf9ac050186"},{"version":"9d2221785178825f2e683327ca288cd262f69b740f468ec6f7af971184b4d96a","signature":"461b98415df16fb8c53855ebf936a74e59a70fc667e191648adfb2d55fe5e41e"},{"version":"e2b2b9e2043bf077bcc93f22af8825c7a32b2aaa5e5da89b8f886aa48d725e3b","signature":"c76cdbd82915336abcb7bd3022bd71513c7b20b849a40e65c0f7af2460ca060c"},{"version":"af8b0d1920d3c521dd47d1f347d168f6686ed0beb79834e199b1adc94cacfe4e","signature":"9af390c36a11fe2fe73ef43411e716fd88add3183971036986562407f125950e"},{"version":"cff399d99c68e4fafdd5835d443a980622267a39ac6f3f59b9e3d60d60c4f133","impliedFormat":99},{"version":"6ada175c0c585e89569e8feb8ff6fc9fc443d7f9ca6340b456e0f94cbef559bf","impliedFormat":99},{"version":"e56e4d95fad615c97eb0ae39c329a4cda9c0af178273a9173676cc9b14b58520","impliedFormat":99},{"version":"73e8dfd5e7d2abc18bdb5c5873e64dbdd1082408dd1921cad6ff7130d8339334","impliedFormat":99},{"version":"fc820b2f0c21501f51f79b58a21d3fa7ae5659fc1812784dbfbb72af147659ee","impliedFormat":99},{"version":"4f041ef66167b5f9c73101e5fd8468774b09429932067926f9b2960cc3e4f99d","impliedFormat":99},{"version":"31501b8fc4279e78f6a05ca35e365e73c0b0c57d06dbe8faecb10c7254ce7714","impliedFormat":99},{"version":"7bc76e7d4bbe3764abaf054aed3a622c5cdbac694e474050d71ce9d4ab93ea4b","impliedFormat":99},{"version":"ff4e9db3eb1e95d7ba4b5765e4dc7f512b90fb3b588adfd5ca9b0d9d7a56a1ae","impliedFormat":99},{"version":"f205fd03cd15ea054f7006b7ef8378ef29c315149da0726f4928d291e7dce7b9","impliedFormat":99},{"version":"d683908557d53abeb1b94747e764b3bd6b6226273514b96a942340e9ce4b7be7","impliedFormat":99},{"version":"7c6d5704e2f236fddaf8dbe9131d998a4f5132609ef795b78c3b63f46317f88a","impliedFormat":99},{"version":"d05bd4d28c12545827349b0ac3a79c50658d68147dad38d13e97e22353544496","impliedFormat":99},{"version":"b6436d90a5487d9b3c3916b939f68e43f7eaca4b0bb305d897d5124180a122b9","impliedFormat":99},{"version":"04ace6bedd6f59c30ea6df1f0f8d432c728c8bc5c5fd0c5c1c80242d3ab51977","impliedFormat":99},{"version":"57a8a7772769c35ba7b4b1ba125f0812deec5c7102a0d04d9e15b1d22880c9e8","impliedFormat":99},{"version":"badcc9d59770b91987e962f8e3ddfa1e06671b0e4c5e2738bbd002255cad3f38","impliedFormat":99},{"version":"f8dc88e6cae57eaa59e01faf078cc6ec9af86232df5693ff7c9c707448d9bb5f","signature":"dce66e4164895b8d6ad1135792918cadea877173e74b2b54bd276edc98648fe1"},{"version":"e26cf39a8cfc471b42f80685ccf41287f0f1ba4f9c44f52f6aa14c460f5aab43","signature":"ce6605e15b9c4b514e669395a95cd34e285df741e34754f01f475a381e59d5cd"},{"version":"fe112b09b9ba77e3023ae0d6cc63b38c16dde72d8b0de641bc24540f5c703d69","signature":"4990055d5960653574e9c7add26b64a3b1f9c18eb5c24a2b93441658c04e7342"},{"version":"4113f859d5cf212c7b8a5528c273a4f907052702dfcf12baff2657008f0dd2c7","signature":"ec19499df6e4f680560ff703da83d5e014ca3afad6fd1fa6503653a68f5460a9"},{"version":"46e5b5f2d34c49372f1cdb79da083245a44565e6e05972619141eb78e54ad67b","signature":"47cb7870b061e832c1521e6053df4cef0ab36b7ebe255af29e838e8006d813ad"},{"version":"b36dee0bb72a399478bbee466e13b1d5af6a3dd1182435ac6d584afd2e6ff9fd","signature":"06250530a082a7dafbbe72344ee9067f87c6339ab26b8caea937b680f224ab8d"},{"version":"2579bec2d834907cd003d3f3db6db90f96adf399761d21cd7a46380ed6a745c3","signature":"3b819ea7acbcbc3457fc66e41bb0d995fe17fa0a85c28bd9c4099b8d4cbf3d3d"},{"version":"c868f50837eedd81fa9f61bd42de6665f74e7eb7a459135c6a14ac33ddc86798","impliedFormat":1},{"version":"56b2090352084289a1d572dfbddeed948906c0a0317a547ceb0ae6436ae44037","impliedFormat":1},{"version":"49123f65d0f1270a60f5cdb7220dea12d9fcbff320447c933511cb1f7168a11b","impliedFormat":1},{"version":"87f736a81ba4c2b5663545235833830482fb949b8761e6629dd8cbe756de47b3","signature":"81fb627f4fd77b0651259a8fb70ab971d01beefa2feb3c9b6855bfa391122c65"},{"version":"52587f4d80483259cab24b9f98c71026e8363cfe3328ec13cc7f38b142908092","signature":"e9c79288453337c26b990d451f305c70f879ca8c33c2256fd71305cd5b079d59"},{"version":"216999245d9d2b5eff7209b125d6ad7504b0600715414b3d64c99e6219e2550c","signature":"8296cf7d8c42c95bedca44549a3e6333622ed20fb701aa6459fae5a43f576cd6"},{"version":"b65d969dde964144fc6907c8e79bf7c3c043c7256f7a4b5f5b1aa276acaff25f","signature":"4fb68c85f7aeb862f1d8b2825a12619daa01bd4b26e8d354d6ad9e1d98c2be39"},{"version":"e924603df0dc191d4a6b8f4e883a3e214297a4e9992f077367bcecefd9d3b116","signature":"f611719420e8c2705966761257f4db673caca856addef0f4d0d26cb628eb7756"},{"version":"accd8650c61dd2e6750472f460aaa68c495bdae12db6744a5af47de37d0a28b8","signature":"76b726df8b10d3543bd70ab8c4c38eeed187abe5332fe55e7b039c4436a85c4c"},{"version":"21c387921f707548b205cd03267d73056f050f3a52cbe4369ad94d9799f320ce","signature":"441bf3a040fe19bc464b9c870348d2e64facfb06683ba592a34c9a670ae2d050"},{"version":"6957b6858bea0bf95380a2c0b727f0142deb06e009340a928df5ecf5a2ab6604","signature":"43525769e118e0f66c4420173c12233c1e2a088233cfd5bdfaa6cbb772da6bc6"},{"version":"dba121c217ad784ed294c7135303fe2537ed581f295a22a9d24141a3dc2ddafb","signature":"4a21e5f7ccd6c675700c6e27bf70ccef75d3068cd0eab1ac5029df1b19b55b94"},{"version":"d05699b0a8286a623304427e4c174fd40eb6c2241ca3b77a2fdd37fcda3eac06","impliedFormat":1},{"version":"67b56598de49ea49e177ed09417ec97c642775a4fe73259df996923517eb652d","impliedFormat":1},{"version":"98d8c2cce0da7f218eda38d46b3d715adfb4c99c59ad67dbe0fd105113292f9f","impliedFormat":1},{"version":"d562cf993f138dc03c5b1aed57d7d80e96555ce41365e0e79db9b93a0b49a6b2","impliedFormat":1},{"version":"e641d344e6604405666473ea733bbbbf14fcc16154e3f61f23023c152acf5928","impliedFormat":1},{"version":"7fc1326aae51ca02c357b8391270858387cce4afa9928d6580a42119dfcca9eb","impliedFormat":1},{"version":"37105b2f931fd50a6a534866c655bdde11d79c57eea566d0f662b245de54eb92","impliedFormat":99},{"version":"a0118801c28bfc79d7e836d9e8bc5e1117b6ea7f8422ca506f67f85db29cdc74","impliedFormat":1},{"version":"e2d6896f40bba3c1023040c28a83a24631cc9118731bc14b03f803f0732b715d","impliedFormat":1},{"version":"65e7987af72c24f8903dc14aff0319e5b06c87470074b23d9e7335261f64fc24","impliedFormat":1},{"version":"441302ad52b6667b9c6f13d348e315e58bbb1a907b67fe4e13b4cc3ad610174e","impliedFormat":1},{"version":"8e48713bdd38b35d69f9242d463744aed4950acb0fd56c22b33e2b8069f5b0fb","impliedFormat":99},{"version":"2a5bc1495d38999efabe350a9eb391d1cd55e03028113b5acfd05a07780bdefe","impliedFormat":99},{"version":"f8fd0c7bb8d5f4eb37216132401fc16c9d9d8e1fd7c4c52796e49b571b823e0b","impliedFormat":99},{"version":"b61bc014cecd0a806dd0d9c5dbe90e2a1e340a398ceff095331e11aa1806141b","impliedFormat":1},{"version":"af6fcd13e8556a1f074e2c196ef9bae5457de08f4d9cd7b8fb340507ed497630","impliedFormat":1},{"version":"9a6863e839337d5b08c7e3bdce854eccd782d2c9b2171cbe287ef099e30c1762","impliedFormat":1},{"version":"a4042ce15622f5adeeb37d632019683c2ab9b86e30e44d305538a483ee348d43","impliedFormat":1},{"version":"3ce47c4e0d19928444ccc6f4f3603ac3eaa660d68ae76dac9e9f2d505fe554d6","impliedFormat":1},{"version":"4d25a3932980e9d07d71eec3676fe8c6431899ec152a41c8226c3ad9de4e85e0","impliedFormat":1},{"version":"c3f81095f4f98299334fbc57a23122d399ecf3caac3e7e233919bbbf80412d4f","impliedFormat":1},{"version":"22dbc24f26fb6c4e1b8dac9adc36fde9e00cfd18443124117db3aa7233b03461","impliedFormat":1},{"version":"e22e133ac0ad3b45aa78a98c4bff013fb54905e8271ac70aaf736cbb9df77bf8","impliedFormat":1},{"version":"d88ff7d911638fd985d3460c9662c17dbb6a8742f364b370879fd562e08907ca","impliedFormat":1},{"version":"5a69b8d1c5e07ea605e05f014177a8c794423507aaacd29de16e60ec5715f42a","impliedFormat":1},{"version":"087e0dd7ae428fc505fefdf5ef59762f95c4fa6cf89a2f5e53f250b8600e15aa","impliedFormat":1},{"version":"ecffce53915a244fbb127820bc9d15224c939c7381ca5f92b5cfd5fbcaf356cf","impliedFormat":1},{"version":"02b54d194d19a26b6c92440ec30a896527e72de6a9a09527806ac1014aad9979","impliedFormat":1},{"version":"5def8f728dcf25749b72a41c8b0d186c413025d4c07d94ed36617bd73b4218e7","impliedFormat":1},{"version":"692892cd3e285dbfe0468f74fda1fb66bdf262fae434ad840372d44d5f80c49c","impliedFormat":1},{"version":"b09f18cc880c79c1e6649943fd530f01c06d20e2d1f5be97575f9cba54de2ac2","impliedFormat":1},{"version":"e3b62b737791d0b4d61683e944b1a8f0b577692b70c10b129f42291169165a38","impliedFormat":1},{"version":"9b057d6503080d36f53ece1f27f3a6a93273972b3da8c2a20be9562e5fe21cf1","signature":"fef30108321714e745d77d481584add65b286b4f31fceee2a166ad97a11f9351"},{"version":"2bfd9ecade95ea8b51551a7ec1b2f5206643b4af0126889c65adb217dcda03eb","signature":"4f5f1bcd088bfda73f93e8fe82f8aa6c62b41caa21ba0518a60e355de28dbb36"},{"version":"2d347d202d5613d22eb75ee693a1cdd10d219ca526bbf36226fa9e162b464bf5","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"87e2119abf8b3499b898e7e9f3e6c3b767bff8fd3a63ce09635760cc8c348db0","signature":"7a0bab475729334110ee0bfba9781caf94d79526c551a2fbe25365d4966c0c3e"}],"root":[64,65,67,[78,83],[85,96],[114,120],[124,132],[165,168]],"options":{"allowImportingTsExtensions":true,"composite":true,"declaration":true,"emitDeclarationOnly":true,"esModuleInterop":true,"jsx":1,"jsxImportSource":"vue","module":99,"noImplicitAny":false,"noImplicitThis":true,"outDir":"./","skipLibCheck":true,"sourceMap":false,"strict":false,"target":99,"useDefineForClassFields":true,"verbatimModuleSyntax":true},"referencedMap":[[64,1],[146,2],[162,3],[134,4],[137,5],[135,4],[138,6],[136,4],[133,7],[142,8],[141,9],[140,10],[143,7],[152,11],[164,12],[155,13],[156,14],[150,15],[163,16],[157,17],[151,18],[148,19],[149,20],[147,21],[159,22],[160,23],[161,24],[158,23],[56,25],[76,26],[75,27],[57,28],[58,29],[59,30],[60,31],[62,32],[71,33],[70,34],[123,35],[72,36],[122,37],[121,38],[145,39],[68,40],[113,41],[102,42],[105,43],[104,42],[106,42],[107,43],[108,42],[110,42],[53,44],[49,45],[50,46],[52,47],[77,48],[63,49],[66,50],[96,51],[115,52],[65,53],[116,54],[117,55],[120,56],[83,51],[92,57],[82,51],[124,58],[127,59],[91,55],[89,51],[128,51],[88,60],[126,61],[87,62],[119,63],[93,64],[118,65],[129,51],[78,51],[67,51],[130,66],[85,51],[86,51],[132,67],[79,68],[166,69],[167,70],[165,71],[114,72],[131,73],[168,74],[125,75],[80,55],[81,55],[90,76],[94,61],[95,77]],"latestChangedDtsFile":"./src/stores/contacts.store.d.ts","version":"5.8.3"}
|
|
1
|
+
{"fileNames":["../../node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/typescript/lib/lib.es2019.d.ts","../../node_modules/typescript/lib/lib.es2020.d.ts","../../node_modules/typescript/lib/lib.dom.d.ts","../../node_modules/typescript/lib/lib.dom.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/typescript/lib/lib.es2016.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../node_modules/typescript/lib/lib.es2017.date.d.ts","../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../node_modules/typescript/lib/lib.decorators.d.ts","../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../node_modules/vite/types/hmrPayload.d.ts","../../node_modules/vite/types/customEvent.d.ts","../../node_modules/vite/types/hot.d.ts","../../node_modules/vite/types/importGlob.d.ts","../../node_modules/vite/types/importMeta.d.ts","../../node_modules/vite/client.d.ts","../../node_modules/@vue/shared/dist/shared.d.ts","../../node_modules/@babel/types/lib/index.d.ts","../../node_modules/@babel/parser/typings/babel-parser.d.ts","../../node_modules/@vue/compiler-core/dist/compiler-core.d.ts","../../node_modules/@vue/compiler-dom/dist/compiler-dom.d.ts","../../node_modules/@vue/reactivity/dist/reactivity.d.ts","../../node_modules/@vue/runtime-core/dist/runtime-core.d.ts","../../node_modules/csstype/index.d.ts","../../node_modules/@vue/runtime-dom/dist/runtime-dom.d.ts","../../node_modules/vue/dist/vue.d.mts","../../env.d.ts","../../src/components.d.ts","../../node_modules/vue/jsx-runtime/index.d.ts","../../src/main.ts","../../node_modules/pinia/dist/pinia.d.ts","../../node_modules/dayjs/locale/types.d.ts","../../node_modules/dayjs/locale/index.d.ts","../../node_modules/dayjs/index.d.ts","../../node_modules/dayjs/plugin/relativeTime.d.ts","../../node_modules/@intlify/shared/dist/shared.d.ts","../../node_modules/source-map-js/source-map.d.ts","../../node_modules/@intlify/message-compiler/dist/message-compiler.d.ts","../../node_modules/@intlify/core-base/dist/core-base.d.ts","../../node_modules/vue-i18n/dist/vue-i18n.d.ts","../../src/locales/en.ts","../../src/plugins/i18n.ts","../../src/stores/main.store.ts","../../src/stores/user.store.ts","../../src/config/users.ts","../../src/config/auth.ts","../../node_modules/axios/index.d.ts","../../src/mixins/hardCopy.ts","../../src/mixins/logger.ts","../../src/libs/StudioSDK.ts","../../src/helpers/sdkOptions.ts","../../src/helpers/participants.ts","../../src/stores/usersCache.store.ts","../../src/helpers/loadComponents.ts","../../src/config/bootstrap.ts","../../src/libs/resize.ts","../../src/styles/loadFonts.ts","../../src/web-component.ts","../../src/bot/botClient.ts","../../node_modules/uuid/dist/esm-browser/types.d.ts","../../node_modules/uuid/dist/esm-browser/max.d.ts","../../node_modules/uuid/dist/esm-browser/nil.d.ts","../../node_modules/uuid/dist/esm-browser/parse.d.ts","../../node_modules/uuid/dist/esm-browser/stringify.d.ts","../../node_modules/uuid/dist/esm-browser/v1.d.ts","../../node_modules/uuid/dist/esm-browser/v1ToV6.d.ts","../../node_modules/uuid/dist/esm-browser/v35.d.ts","../../node_modules/uuid/dist/esm-browser/v3.d.ts","../../node_modules/uuid/dist/esm-browser/v4.d.ts","../../node_modules/uuid/dist/esm-browser/v5.d.ts","../../node_modules/uuid/dist/esm-browser/v6.d.ts","../../node_modules/uuid/dist/esm-browser/v6ToV1.d.ts","../../node_modules/uuid/dist/esm-browser/v7.d.ts","../../node_modules/uuid/dist/esm-browser/validate.d.ts","../../node_modules/uuid/dist/esm-browser/version.d.ts","../../node_modules/uuid/dist/esm-browser/index.d.ts","../../src/stores/bots.store.ts","../../src/bot/botManager.ts","../../src/composables/useChatVisibility.ts","../../src/composables/useTriggerEvent.ts","../../src/libs/websocketManager.ts","../../src/libs/chatSession.ts","../../src/composables/useWebSocket.ts","../../node_modules/dayjs/plugin/utc.d.ts","../../node_modules/dayjs/plugin/timezone.d.ts","../../node_modules/dayjs/plugin/localizedFormat.d.ts","../../src/helpers/date.ts","../../src/stores/conversations.store.ts","../../src/helpers/sounds.ts","../../src/helpers/handleMessages.ts","../../src/helpers/rights.ts","../../src/locales/de.ts","../../src/mixins/groupMessages.ts","../../src/stores/calls.store.ts","../../src/mixins/traceable.ts","../../node_modules/@auth0/auth0-spa-js/dist/typings/cache/shared.d.ts","../../node_modules/@auth0/auth0-spa-js/dist/typings/cache/cache-localstorage.d.ts","../../node_modules/@auth0/auth0-spa-js/dist/typings/cache/cache-memory.d.ts","../../node_modules/@auth0/auth0-spa-js/dist/typings/cache/key-manifest.d.ts","../../node_modules/@auth0/auth0-spa-js/dist/typings/cache/cache-manager.d.ts","../../node_modules/@auth0/auth0-spa-js/dist/typings/cache/index.d.ts","../../node_modules/dpop/build/index.d.ts","../../node_modules/@auth0/auth0-spa-js/dist/typings/dpop/utils.d.ts","../../node_modules/@auth0/auth0-spa-js/dist/typings/dpop/storage.d.ts","../../node_modules/@auth0/auth0-spa-js/dist/typings/dpop/dpop.d.ts","../../node_modules/@auth0/auth0-spa-js/dist/typings/fetcher.d.ts","../../node_modules/oauth4webapi/build/index.d.ts","../../node_modules/openid-client/build/index.d.ts","../../node_modules/@auth0/auth0-auth-js/dist/index.d.ts","../../node_modules/@auth0/auth0-spa-js/dist/typings/myaccount/types.d.ts","../../node_modules/@auth0/auth0-spa-js/dist/typings/myaccount/MyAccountApiClient.d.ts","../../node_modules/@auth0/auth0-spa-js/dist/typings/myaccount/index.d.ts","../../node_modules/@auth0/auth0-spa-js/dist/typings/mfa/constants.d.ts","../../node_modules/@auth0/auth0-spa-js/dist/typings/mfa/types.d.ts","../../node_modules/@auth0/auth0-spa-js/dist/typings/global.d.ts","../../node_modules/@auth0/auth0-spa-js/dist/typings/TokenExchange.d.ts","../../node_modules/@auth0/auth0-spa-js/dist/typings/errors.d.ts","../../node_modules/@auth0/auth0-spa-js/dist/typings/mfa/MfaApiClient.d.ts","../../node_modules/@auth0/auth0-spa-js/dist/typings/mfa/MfaContextManager.d.ts","../../node_modules/@auth0/auth0-spa-js/dist/typings/mfa/index.d.ts","../../node_modules/@auth0/auth0-spa-js/dist/typings/passkey/types.d.ts","../../node_modules/@auth0/auth0-spa-js/dist/typings/passkey/PasskeyApiClient.d.ts","../../node_modules/@auth0/auth0-spa-js/dist/typings/passkey/errors.d.ts","../../node_modules/@auth0/auth0-spa-js/dist/typings/passkey/index.d.ts","../../node_modules/@auth0/auth0-spa-js/dist/typings/Auth0Client.d.ts","../../node_modules/@auth0/auth0-spa-js/dist/typings/mfa/errors.d.ts","../../node_modules/@auth0/auth0-spa-js/dist/typings/index.d.ts","../../src/standalone/settings.ts","../../src/standalone/auth.ts","../../src/standalone/main.ts","../../src/stores/contacts.store.ts"],"fileIdsList":[[53,63,65,68,77],[145],[142,143,149,152,153,157,158,161],[133],[133,136],[133,134,135,137],[152],[140,141],[140],[139],[138,142,149,151],[138,143,149,152,153,154,157,161,162,163],[146,151,152,154,162],[154],[151],[146,154],[151,155,156],[150],[143,147],[147,148],[146,152],[146,152,158,162],[146],[158,159,160],[55],[73,75],[73,74],[54,55,56],[57],[54],[54,59,60,62],[59,60,61,62],[70],[69],[71],[71,121,122],[71,72,121],[71,72,122],[144],[63,65,68,77],[97,98,99,100,101,102,103,105,106,107,108,109,110,111,112],[97],[97,104],[52],[48],[49],[50,51],[63,65,68,76,77],[58,62],[62],[66],[66,80,96,114],[63,64,68,77],[63,65,66,68,77,80],[63,65,66,68,77],[63,65,66,68,77,118,119],[63,64,65,66,68,77,80,81,82,83,89,90,91],[66,70,71,121,122,123],[66,80,81,87,90,125,126],[66,80,83],[53,66],[66,84,85,86],[66,83,86,118],[63,65,66,68,77,86],[66,86],[66,124],[63,65,66,68,77,86,131],[66,77,78],[66,89,164,165],[66,92,95,165,166],[66,80],[63,65,66,68,77,82,113],[63,65,66,68,77,113],[63,65,66,68,77,81,82,87,88,90],[63,65,66,68,71,77,80,81,85,87,88,89,90,113],[63,65,66,68,77,87,88,89],[63,64,65,66,68,71,72,77,79,92,93,94]],"fileInfos":[{"version":"69684132aeb9b5642cbcd9e22dff7818ff0ee1aa831728af0ecf97d3364d5546","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"092c2bfe125ce69dbb1223c85d68d4d2397d7d8411867b5cc03cec902c233763","affectsGlobalScope":true,"impliedFormat":1},{"version":"07f073f19d67f74d732b1adea08e1dc66b1b58d77cb5b43931dee3d798a2fd53","affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"936e80ad36a2ee83fc3caf008e7c4c5afe45b3cf3d5c24408f039c1d47bdc1df","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"fef8cfad2e2dc5f5b3d97a6f4f2e92848eb1b88e897bb7318cef0e2820bceaab","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"64ccfe7dcbcad9b8a661a042ecb2309e41b9ab957f7b8cd070b05583a7821a13","impliedFormat":99},{"version":"98580d6ed68c9cee7f956685abbb6502d70bd92f48175ac807ae6c5e254fadc6","impliedFormat":99},{"version":"4e003c868b0d8f8ad200b96cbc653e18e513fa23e1c19c4fe3cc25d4394efc47","impliedFormat":99},{"version":"e50d04d261120f8f9d07e85698735d5b88f3a66bc395c08ce26c3d817d141a73","affectsGlobalScope":true,"impliedFormat":99},{"version":"72429cda84a47f092a3bf777bbc4ece9dda492fe0f02324aa7f197f3800089c6","affectsGlobalScope":true,"impliedFormat":99},{"version":"74b98be6ab7723114273526706070ff9885fdf990d5c4e722801addca4d264e1","affectsGlobalScope":true,"impliedFormat":99},{"version":"f468b74459f1ad4473b36a36d49f2b255f3c6b5d536c81239c2b2971df089eaf","impliedFormat":1},{"version":"556ccd493ec36c7d7cb130d51be66e147b91cc1415be383d71da0f1e49f742a9","impliedFormat":1},{"version":"95aba78013d782537cc5e23868e736bec5d377b918990e28ed56110e3ae8b958","impliedFormat":1},{"version":"fe991452257beed9884c864d87cea9dfd1fa7120e3fadbe5710a4f4e7a044c3e","impliedFormat":1},{"version":"ebe84ad8344962b7117a3b95065f47383215020eaf1b626463863b45b4d16e62","impliedFormat":1},{"version":"8fa68a409acbfc169f88bc6763ffb2df73b49346a938fd7b75397261995db523","impliedFormat":1},{"version":"3e74c6f34a28b7c948bfdaf19172000d589093660b3605f8c21c1b30173c729b","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac51dd7d31333793807a6abaa5ae168512b6131bd41d9c5b98477fc3b7800f9f","impliedFormat":1},{"version":"88ad1af02cacc61bf79683b021d326eeafc91231660a06495c5046d4649ec3a2","impliedFormat":1},{"version":"c0191592be8eb7906f99ac4b8798d80a585b94001ea1a5f50d6ce5b0d13a5c62","impliedFormat":99},{"version":"5af8cb088d7b49a5eb8a01253b5a4c26ee93cd9f3c12c9056318281f20429c09","affectsGlobalScope":true},"0cbc2486528a01cbe815bd8dad61b0195d8e2c0648f7998764e9d10884877739",{"version":"318d19118bf6bf8d088441c948990f53cafc79ed581b78f3d41a0f7a3f5f145c","impliedFormat":1},{"version":"09c7dce78379fbdc8a73d9fd2b9b5a8860b5da44ba9f262098730dcbff329787","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"dce3621e6c42ff85a85c26f827081feb317a2b45bc35007b7158964a2a9e1ed4","impliedFormat":99},{"version":"73a0ee6395819b063df4b148211985f2e1442945c1a057204cf4cf6281760dc3","affectsGlobalScope":true,"impliedFormat":1},{"version":"d05d8c67116dceafc62e691c47ac89f8f10cf7313cd1b2fb4fe801c2bf1bb1a7","impliedFormat":1},{"version":"3c5bb5207df7095882400323d692957e90ec17323ccff5fd5f29a1ecf3b165d0","impliedFormat":1},{"version":"f684f2969931de8fb9a5164f8c8f51aaea4025f4eede98406a17642a605c2842","impliedFormat":1},{"version":"f84bef1de5a8908edbc7b44ca39ba5e1db027060c132f3b1f2946f7c6ccc162f","impliedFormat":1},{"version":"402e5c534fb2b85fa771170595db3ac0dd532112c8fa44fc23f233bc6967488b","impliedFormat":1},{"version":"99a516417d80b6976439b6ad903ba8b39d85c0857610fe98a98c60e588f9f905","impliedFormat":1},{"version":"96cd08fcc008f2c4d161f4ca748563332173db07ae94b17b76914e7575042d20","impliedFormat":1},{"version":"662e81731c4bf5775658a491659e069c360ddb8f4551c9f2b483a827775cb8d4","impliedFormat":1},{"version":"5e748644f7123eff3d4bd7611843c87f11fcdd12d88b74c92d259d114b063af3","signature":"fe66477281253781349c014df4d999ef3268586949b068940f2d34b8386b902e"},{"version":"54af9b2db7c2fd3968c400465a1e117bc1e23c98a8088fea63037fe331ee1a72","signature":"be8dbb3f4706deba16e734b2adcf3e49c9765231322a2340fe0ac6de66a07bb6"},{"version":"500895147e1cc814c85f7b28d9820ec91d27f071014614075e82be998dc4cf6f","signature":"64052ca53ef5c8d06651f36d608b958a251123b788cd3c9bdfabb479b67906fb"},{"version":"5e84d6f357ae3457136f11d017e9c99b311d38b3d474ae9981e7ca4961a5f9b9","signature":"0d94a7cc8985478a2f79aade11b8ca4d92515d4cd9bbf61bf35be93c927bbdd9"},{"version":"6e07063b8da13cebb804a58c0b25470cac6344e0c101b5b86dee29e694c7c6b0","signature":"7148cabdf7c8e36e64d08ae4962a097618905d3520a2de92faad2bdb60e905ed"},{"version":"a230ff0dc27bd0816d67a58d4a9f255c93a8c9d3c67223dfa288aab39ef8901a","signature":"9a42d67b71a98bdd576e97306eee81db3e59fabe017e78ebffdaa0a205cc4db2"},{"version":"1d7ee0c4eb734d59b6d962bc9151f6330895067cd3058ce6a3cd95347ef5c6e8","impliedFormat":99},{"version":"04e7353aa8835b1b7f02b04c234aecd51a3014a415145456241048997233e606","signature":"c9dce0e39135e933a086d15ae7e145d646dd7588dcc929ceb2169411c2859614"},{"version":"538661bfaf65c2e53276dc4340d14f94b247fd4cad200818dce86f068dae5361","signature":"564df19173ec4c24839bc874905bceb6dbbde946b6a63fda0b7a77f47688e1b6"},{"version":"086f313ffd1552770c2096fb7439a810eda6245e57ef7b32ae88a867863bfc9e","signature":"6e1620fa4436286003241f87c7593c059bc43626c2c14e55c5d399367c43ace4"},{"version":"162b8fd615c52c04f81eec3fe4adb9dbd0c6b9d649d930d272ac1332cfeb00bd","signature":"53215b3d7565fa2112c069a7d37ca4cfa0f37ea185ed644cbaa9de7ab4f7127f"},{"version":"cd72e9cc48c6588dfcbae007877a3c5f5b993befb1393d9b87068287805ca906","signature":"84783cfccdc53fe408c2787b3d19d8ddb01b39c717c242b1bf7d4c65f1f8eb63"},{"version":"5fbda7ddad8002e0c079baa2f84696a56672074712f1b6621b87d009b3ac3532","signature":"02c26732c2e74fdded44d6ab83be82f29c1fb5b22621fb630bee29f07058f482"},{"version":"9d3d220467399828fb6fe017af9ce82f8a0c186071d58ef0923498388c2731d3","signature":"089771d24ca50072add0d0341a540252865e367600ae651d49452dc5281df26f"},{"version":"e99cc048d48e4b29f8fbd04ac295916452db2278b368c8d29e5f59459ba8aff9","signature":"ca683200455c63bbbc1610aef4c0e7b6c6216015ca0771f76d1b26b06414718e"},{"version":"643586ccea0ad02eba85d3281d2d9fb6185d610982d5056c883224534bc27f68","signature":"94db8ccbf1c6c5256e31947d009b6a7095c77a8f66822c8b5bac9cf9ac050186"},{"version":"9d2221785178825f2e683327ca288cd262f69b740f468ec6f7af971184b4d96a","signature":"461b98415df16fb8c53855ebf936a74e59a70fc667e191648adfb2d55fe5e41e"},{"version":"e2b2b9e2043bf077bcc93f22af8825c7a32b2aaa5e5da89b8f886aa48d725e3b","signature":"c76cdbd82915336abcb7bd3022bd71513c7b20b849a40e65c0f7af2460ca060c"},{"version":"af8b0d1920d3c521dd47d1f347d168f6686ed0beb79834e199b1adc94cacfe4e","signature":"9af390c36a11fe2fe73ef43411e716fd88add3183971036986562407f125950e"},{"version":"cff399d99c68e4fafdd5835d443a980622267a39ac6f3f59b9e3d60d60c4f133","impliedFormat":99},{"version":"6ada175c0c585e89569e8feb8ff6fc9fc443d7f9ca6340b456e0f94cbef559bf","impliedFormat":99},{"version":"e56e4d95fad615c97eb0ae39c329a4cda9c0af178273a9173676cc9b14b58520","impliedFormat":99},{"version":"73e8dfd5e7d2abc18bdb5c5873e64dbdd1082408dd1921cad6ff7130d8339334","impliedFormat":99},{"version":"fc820b2f0c21501f51f79b58a21d3fa7ae5659fc1812784dbfbb72af147659ee","impliedFormat":99},{"version":"4f041ef66167b5f9c73101e5fd8468774b09429932067926f9b2960cc3e4f99d","impliedFormat":99},{"version":"31501b8fc4279e78f6a05ca35e365e73c0b0c57d06dbe8faecb10c7254ce7714","impliedFormat":99},{"version":"7bc76e7d4bbe3764abaf054aed3a622c5cdbac694e474050d71ce9d4ab93ea4b","impliedFormat":99},{"version":"ff4e9db3eb1e95d7ba4b5765e4dc7f512b90fb3b588adfd5ca9b0d9d7a56a1ae","impliedFormat":99},{"version":"f205fd03cd15ea054f7006b7ef8378ef29c315149da0726f4928d291e7dce7b9","impliedFormat":99},{"version":"d683908557d53abeb1b94747e764b3bd6b6226273514b96a942340e9ce4b7be7","impliedFormat":99},{"version":"7c6d5704e2f236fddaf8dbe9131d998a4f5132609ef795b78c3b63f46317f88a","impliedFormat":99},{"version":"d05bd4d28c12545827349b0ac3a79c50658d68147dad38d13e97e22353544496","impliedFormat":99},{"version":"b6436d90a5487d9b3c3916b939f68e43f7eaca4b0bb305d897d5124180a122b9","impliedFormat":99},{"version":"04ace6bedd6f59c30ea6df1f0f8d432c728c8bc5c5fd0c5c1c80242d3ab51977","impliedFormat":99},{"version":"57a8a7772769c35ba7b4b1ba125f0812deec5c7102a0d04d9e15b1d22880c9e8","impliedFormat":99},{"version":"badcc9d59770b91987e962f8e3ddfa1e06671b0e4c5e2738bbd002255cad3f38","impliedFormat":99},{"version":"f8dc88e6cae57eaa59e01faf078cc6ec9af86232df5693ff7c9c707448d9bb5f","signature":"dce66e4164895b8d6ad1135792918cadea877173e74b2b54bd276edc98648fe1"},{"version":"e26cf39a8cfc471b42f80685ccf41287f0f1ba4f9c44f52f6aa14c460f5aab43","signature":"ce6605e15b9c4b514e669395a95cd34e285df741e34754f01f475a381e59d5cd"},{"version":"fe112b09b9ba77e3023ae0d6cc63b38c16dde72d8b0de641bc24540f5c703d69","signature":"4990055d5960653574e9c7add26b64a3b1f9c18eb5c24a2b93441658c04e7342"},{"version":"4113f859d5cf212c7b8a5528c273a4f907052702dfcf12baff2657008f0dd2c7","signature":"ec19499df6e4f680560ff703da83d5e014ca3afad6fd1fa6503653a68f5460a9"},{"version":"46e5b5f2d34c49372f1cdb79da083245a44565e6e05972619141eb78e54ad67b","signature":"47cb7870b061e832c1521e6053df4cef0ab36b7ebe255af29e838e8006d813ad"},{"version":"b36dee0bb72a399478bbee466e13b1d5af6a3dd1182435ac6d584afd2e6ff9fd","signature":"06250530a082a7dafbbe72344ee9067f87c6339ab26b8caea937b680f224ab8d"},{"version":"2579bec2d834907cd003d3f3db6db90f96adf399761d21cd7a46380ed6a745c3","signature":"3b819ea7acbcbc3457fc66e41bb0d995fe17fa0a85c28bd9c4099b8d4cbf3d3d"},{"version":"c868f50837eedd81fa9f61bd42de6665f74e7eb7a459135c6a14ac33ddc86798","impliedFormat":1},{"version":"56b2090352084289a1d572dfbddeed948906c0a0317a547ceb0ae6436ae44037","impliedFormat":1},{"version":"49123f65d0f1270a60f5cdb7220dea12d9fcbff320447c933511cb1f7168a11b","impliedFormat":1},{"version":"87f736a81ba4c2b5663545235833830482fb949b8761e6629dd8cbe756de47b3","signature":"81fb627f4fd77b0651259a8fb70ab971d01beefa2feb3c9b6855bfa391122c65"},{"version":"fd89870e745a0ca3a60525b10bca30877fb37aa7d12db7e07890f0a51991b4ce","signature":"b6c112302afdf73554142143667201d791348b83e97adf4dd85e95cc4c10e9dc"},{"version":"216999245d9d2b5eff7209b125d6ad7504b0600715414b3d64c99e6219e2550c","signature":"8296cf7d8c42c95bedca44549a3e6333622ed20fb701aa6459fae5a43f576cd6"},{"version":"77859499690306acec772d04f5798669716443e0fbfbd474e16f78d464815724","signature":"4fb68c85f7aeb862f1d8b2825a12619daa01bd4b26e8d354d6ad9e1d98c2be39"},{"version":"e924603df0dc191d4a6b8f4e883a3e214297a4e9992f077367bcecefd9d3b116","signature":"f611719420e8c2705966761257f4db673caca856addef0f4d0d26cb628eb7756"},{"version":"2a965281ac929433e431f9f0e91b79e2e04f88c41ff5af835464d94108fa69b8","signature":"fe66477281253781349c014df4d999ef3268586949b068940f2d34b8386b902e"},{"version":"21c387921f707548b205cd03267d73056f050f3a52cbe4369ad94d9799f320ce","signature":"441bf3a040fe19bc464b9c870348d2e64facfb06683ba592a34c9a670ae2d050"},{"version":"6957b6858bea0bf95380a2c0b727f0142deb06e009340a928df5ecf5a2ab6604","signature":"43525769e118e0f66c4420173c12233c1e2a088233cfd5bdfaa6cbb772da6bc6"},{"version":"dba121c217ad784ed294c7135303fe2537ed581f295a22a9d24141a3dc2ddafb","signature":"4a21e5f7ccd6c675700c6e27bf70ccef75d3068cd0eab1ac5029df1b19b55b94"},{"version":"d05699b0a8286a623304427e4c174fd40eb6c2241ca3b77a2fdd37fcda3eac06","impliedFormat":1},{"version":"67b56598de49ea49e177ed09417ec97c642775a4fe73259df996923517eb652d","impliedFormat":1},{"version":"98d8c2cce0da7f218eda38d46b3d715adfb4c99c59ad67dbe0fd105113292f9f","impliedFormat":1},{"version":"d562cf993f138dc03c5b1aed57d7d80e96555ce41365e0e79db9b93a0b49a6b2","impliedFormat":1},{"version":"e641d344e6604405666473ea733bbbbf14fcc16154e3f61f23023c152acf5928","impliedFormat":1},{"version":"7fc1326aae51ca02c357b8391270858387cce4afa9928d6580a42119dfcca9eb","impliedFormat":1},{"version":"37105b2f931fd50a6a534866c655bdde11d79c57eea566d0f662b245de54eb92","impliedFormat":99},{"version":"a0118801c28bfc79d7e836d9e8bc5e1117b6ea7f8422ca506f67f85db29cdc74","impliedFormat":1},{"version":"e2d6896f40bba3c1023040c28a83a24631cc9118731bc14b03f803f0732b715d","impliedFormat":1},{"version":"65e7987af72c24f8903dc14aff0319e5b06c87470074b23d9e7335261f64fc24","impliedFormat":1},{"version":"441302ad52b6667b9c6f13d348e315e58bbb1a907b67fe4e13b4cc3ad610174e","impliedFormat":1},{"version":"8e48713bdd38b35d69f9242d463744aed4950acb0fd56c22b33e2b8069f5b0fb","impliedFormat":99},{"version":"2a5bc1495d38999efabe350a9eb391d1cd55e03028113b5acfd05a07780bdefe","impliedFormat":99},{"version":"f8fd0c7bb8d5f4eb37216132401fc16c9d9d8e1fd7c4c52796e49b571b823e0b","impliedFormat":99},{"version":"b61bc014cecd0a806dd0d9c5dbe90e2a1e340a398ceff095331e11aa1806141b","impliedFormat":1},{"version":"af6fcd13e8556a1f074e2c196ef9bae5457de08f4d9cd7b8fb340507ed497630","impliedFormat":1},{"version":"9a6863e839337d5b08c7e3bdce854eccd782d2c9b2171cbe287ef099e30c1762","impliedFormat":1},{"version":"a4042ce15622f5adeeb37d632019683c2ab9b86e30e44d305538a483ee348d43","impliedFormat":1},{"version":"3ce47c4e0d19928444ccc6f4f3603ac3eaa660d68ae76dac9e9f2d505fe554d6","impliedFormat":1},{"version":"4d25a3932980e9d07d71eec3676fe8c6431899ec152a41c8226c3ad9de4e85e0","impliedFormat":1},{"version":"c3f81095f4f98299334fbc57a23122d399ecf3caac3e7e233919bbbf80412d4f","impliedFormat":1},{"version":"22dbc24f26fb6c4e1b8dac9adc36fde9e00cfd18443124117db3aa7233b03461","impliedFormat":1},{"version":"e22e133ac0ad3b45aa78a98c4bff013fb54905e8271ac70aaf736cbb9df77bf8","impliedFormat":1},{"version":"d88ff7d911638fd985d3460c9662c17dbb6a8742f364b370879fd562e08907ca","impliedFormat":1},{"version":"5a69b8d1c5e07ea605e05f014177a8c794423507aaacd29de16e60ec5715f42a","impliedFormat":1},{"version":"087e0dd7ae428fc505fefdf5ef59762f95c4fa6cf89a2f5e53f250b8600e15aa","impliedFormat":1},{"version":"ecffce53915a244fbb127820bc9d15224c939c7381ca5f92b5cfd5fbcaf356cf","impliedFormat":1},{"version":"02b54d194d19a26b6c92440ec30a896527e72de6a9a09527806ac1014aad9979","impliedFormat":1},{"version":"5def8f728dcf25749b72a41c8b0d186c413025d4c07d94ed36617bd73b4218e7","impliedFormat":1},{"version":"692892cd3e285dbfe0468f74fda1fb66bdf262fae434ad840372d44d5f80c49c","impliedFormat":1},{"version":"b09f18cc880c79c1e6649943fd530f01c06d20e2d1f5be97575f9cba54de2ac2","impliedFormat":1},{"version":"e3b62b737791d0b4d61683e944b1a8f0b577692b70c10b129f42291169165a38","impliedFormat":1},{"version":"dbdbbaa62dc4fabf998e33957e13798aa2fba254dea7ecf6754a4f1611e376e0","signature":"6b71dbf01c16d0e424044e13b86f02410d5f4ffac3ebb682772b326ca9f09ab3"},{"version":"2bfd9ecade95ea8b51551a7ec1b2f5206643b4af0126889c65adb217dcda03eb","signature":"4f5f1bcd088bfda73f93e8fe82f8aa6c62b41caa21ba0518a60e355de28dbb36"},{"version":"2d347d202d5613d22eb75ee693a1cdd10d219ca526bbf36226fa9e162b464bf5","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"87e2119abf8b3499b898e7e9f3e6c3b767bff8fd3a63ce09635760cc8c348db0","signature":"7a0bab475729334110ee0bfba9781caf94d79526c551a2fbe25365d4966c0c3e"}],"root":[64,65,67,[78,83],[85,96],[114,120],[124,132],[165,168]],"options":{"allowImportingTsExtensions":true,"composite":true,"declaration":true,"emitDeclarationOnly":true,"esModuleInterop":true,"jsx":1,"jsxImportSource":"vue","module":99,"noImplicitAny":false,"noImplicitThis":true,"outDir":"./","skipLibCheck":true,"sourceMap":false,"strict":false,"target":99,"useDefineForClassFields":true,"verbatimModuleSyntax":true},"referencedMap":[[64,1],[146,2],[162,3],[134,4],[137,5],[135,4],[138,6],[136,4],[133,7],[142,8],[141,9],[140,10],[143,7],[152,11],[164,12],[155,13],[156,14],[150,15],[163,16],[157,17],[151,18],[148,19],[149,20],[147,21],[159,22],[160,23],[161,24],[158,23],[56,25],[76,26],[75,27],[57,28],[58,29],[59,30],[60,31],[62,32],[71,33],[70,34],[123,35],[72,36],[122,37],[121,38],[145,39],[68,40],[113,41],[102,42],[105,43],[104,42],[106,42],[107,43],[108,42],[110,42],[53,44],[49,45],[50,46],[52,47],[77,48],[63,49],[66,50],[96,51],[115,52],[65,53],[116,54],[117,55],[120,56],[83,51],[92,57],[82,51],[124,58],[127,59],[91,55],[89,51],[128,51],[88,60],[126,61],[87,62],[119,63],[93,64],[118,65],[129,51],[78,51],[67,51],[130,66],[85,51],[86,51],[132,67],[79,68],[166,69],[167,70],[165,71],[114,72],[131,73],[168,74],[125,75],[80,55],[81,55],[90,76],[94,61],[95,77]],"latestChangedDtsFile":"./src/stores/contacts.store.d.ts","version":"5.8.3"}
|