instill-sdk 0.19.0-rc.2 → 0.19.0-rc.20
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/chat/types.d.ts +24 -4
- package/dist/chat/types.d.ts.map +1 -1
- package/dist/core/integration/type.d.ts +12 -12
- package/dist/core/membership/types.d.ts +24 -24
- package/dist/core/organization/types.d.ts +2 -2
- package/dist/core/subscription/types.d.ts +1 -1
- package/dist/core/subscription/types.d.ts.map +1 -1
- package/dist/folder/types.d.ts +5 -0
- package/dist/folder/types.d.ts.map +1 -1
- package/dist/helper/getQueryString.d.ts.map +1 -1
- package/dist/helper/makeXMLRequestWithProgress.d.ts +4 -0
- package/dist/helper/makeXMLRequestWithProgress.d.ts.map +1 -0
- package/dist/index.js +645 -490
- package/dist/index.mjs +651 -490
- package/dist/table/TableClient.d.ts +3 -1
- package/dist/table/TableClient.d.ts.map +1 -1
- package/dist/table/types.d.ts +24 -0
- package/dist/table/types.d.ts.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/types.d.ts +8 -8
- package/dist/vdp/component/types.d.ts +68 -68
- package/dist/vdp/pipeline/types.d.ts +240 -240
- package/dist/vdp/release/types.d.ts +4 -4
- package/package.json +5 -4
- package/dist/chat/constant.d.ts +0 -8
- package/dist/chat/constant.d.ts.map +0 -1
package/dist/chat/types.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { FileType } from "../catalog";
|
|
1
2
|
import { Table } from "../table";
|
|
2
3
|
import { Citation, InstillChatMessageContext, Nullable } from "../types";
|
|
3
4
|
export type ChatAgentConfig = {
|
|
@@ -46,6 +47,7 @@ export declare const InstillChatTypeEnum: {
|
|
|
46
47
|
readonly ReplanTriggered: "CHAT_REPLAN_TRIGGERED";
|
|
47
48
|
readonly ErrorUpdated: "CHAT_ERROR_UPDATED";
|
|
48
49
|
readonly CitationListUpdated: "CHAT_CITATION_LIST_UPDATED";
|
|
50
|
+
readonly ChatAttachmentsUpdated: "CHAT_ATTACHMENTS_UPDATED";
|
|
49
51
|
readonly TableCreated: "CHAT_TABLE_CREATED";
|
|
50
52
|
};
|
|
51
53
|
export type InstillChatEventType = (typeof InstillChatTypeEnum)[keyof typeof InstillChatTypeEnum];
|
|
@@ -107,10 +109,12 @@ export type InstillChatEventEnd = {
|
|
|
107
109
|
event: typeof InstillChatTypeEnum.Ended;
|
|
108
110
|
data: InstillChatEventCommonData;
|
|
109
111
|
};
|
|
110
|
-
export type
|
|
111
|
-
event: typeof InstillChatTypeEnum.
|
|
112
|
+
export type InstillChatEventAttachments = {
|
|
113
|
+
event: typeof InstillChatTypeEnum.ChatAttachmentsUpdated;
|
|
112
114
|
data: InstillChatEventCommonData & {
|
|
113
|
-
|
|
115
|
+
attachments: {
|
|
116
|
+
fileAttachments: InstillChatMessageFileAttachment[];
|
|
117
|
+
};
|
|
114
118
|
};
|
|
115
119
|
};
|
|
116
120
|
export type InstillChatEventTableCreated = {
|
|
@@ -119,7 +123,13 @@ export type InstillChatEventTableCreated = {
|
|
|
119
123
|
tableUID: string;
|
|
120
124
|
};
|
|
121
125
|
};
|
|
122
|
-
export type
|
|
126
|
+
export type InstillChatEventCitationList = {
|
|
127
|
+
event: typeof InstillChatTypeEnum.CitationListUpdated;
|
|
128
|
+
data: InstillChatEventCommonData & {
|
|
129
|
+
citations: Citation[];
|
|
130
|
+
};
|
|
131
|
+
};
|
|
132
|
+
export type InstillChatEvent = InstillChatEventStatus | InstillChatEventOutput | InstillChatEventName | InstillChatEventDebug | InstillChatEventReplan | InstillChatEventError | InstillChatEventStart | InstillChatEventEnd | InstillChatEventCitationList | InstillChatEventTableCreated | InstillChatEventAttachments;
|
|
123
133
|
export type InstillChatFeed = InstillChatMessage[];
|
|
124
134
|
export type ListPaginatedInstillChatsRequest = {
|
|
125
135
|
namespaceId: string;
|
|
@@ -195,6 +205,13 @@ declare enum InstillChatMessageTypeEnum {
|
|
|
195
205
|
ShowTable = "MESSAGE_TYPE_SHOW_TABLE"
|
|
196
206
|
}
|
|
197
207
|
export type InstillChatMessageType = `${InstillChatMessageTypeEnum}`;
|
|
208
|
+
export type InstillChatMessageFileAttachment = {
|
|
209
|
+
fileName: string;
|
|
210
|
+
fileSize: string;
|
|
211
|
+
contentType: string;
|
|
212
|
+
fileExtension: FileType;
|
|
213
|
+
downloadUrl: string;
|
|
214
|
+
};
|
|
198
215
|
export type InstillChatMessage = {
|
|
199
216
|
uid: string;
|
|
200
217
|
chatUid: string;
|
|
@@ -206,6 +223,9 @@ export type InstillChatMessage = {
|
|
|
206
223
|
msgSenderUid: string;
|
|
207
224
|
citations: Citation[];
|
|
208
225
|
context: InstillChatMessageContext;
|
|
226
|
+
attachments: {
|
|
227
|
+
fileAttachments: InstillChatMessageFileAttachment[];
|
|
228
|
+
};
|
|
209
229
|
};
|
|
210
230
|
export type ListNamespaceChatTablesRequest = {
|
|
211
231
|
namespaceId: string;
|
package/dist/chat/types.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/chat/types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,MAAM,UAAU,CAAC;AACjC,OAAO,EAAE,QAAQ,EAAE,yBAAyB,EAAE,QAAQ,EAAE,MAAM,UAAU,CAAC;AAEzE,MAAM,MAAM,eAAe,GAAG;IAC5B,YAAY,EAAE,MAAM,CAAC;IACrB,WAAW,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;CACrC,CAAC;AAEF,MAAM,MAAM,wBAAwB,GAAG;IACrC,WAAW,EAAE,MAAM,CAAC;IACpB,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,WAAW,CAAC,EAAE,eAAe,CAAC;IAC9B,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB,CAAC;AAEF,MAAM,MAAM,WAAW,GAAG;IACxB,GAAG,EAAE,MAAM,CAAC;IACZ,WAAW,EAAE,MAAM,CAAC;IACpB,eAAe,EAAE,MAAM,CAAC;IACxB,WAAW,EAAE,eAAe,CAAC;IAC7B,UAAU,EAAE,MAAM,CAAC;IACnB,UAAU,EAAE,QAAQ,CAAC,MAAM,CAAC,CAAC;IAC7B,UAAU,EAAE,QAAQ,CAAC,MAAM,CAAC,CAAC;IAC7B,SAAS,EAAE,MAAM,CAAC;CACnB,CAAC;AAEF,MAAM,MAAM,yBAAyB,GAAG;IACtC,IAAI,EAAE,WAAW,CAAC;CACnB,CAAC;AAEF,MAAM,MAAM,wBAAwB,GAAG;IACrC,WAAW,EAAE,MAAM,CAAC;IACpB,OAAO,EAAE,MAAM,CAAC;IAChB,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,WAAW,CAAC,EAAE,eAAe,CAAC;CAC/B,CAAC;AAEF,MAAM,MAAM,yBAAyB,GAAG;IACtC,IAAI,EAAE,WAAW,CAAC;CACnB,CAAC;AAEF,MAAM,MAAM,sBAAsB,GAAG,yBAAyB,CAAC;AAE/D,MAAM,MAAM,sBAAsB,GAAG;IACnC,OAAO,EAAE,MAAM,CAAC;CACjB,CAAC;AAEF,eAAO,MAAM,mBAAmB
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/chat/types.ts"],"names":[],"mappings":"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"}
|
|
@@ -79,13 +79,13 @@ export declare const IntegrationSchema: z.ZodObject<{
|
|
|
79
79
|
}>>;
|
|
80
80
|
view: z.ZodEnum<["VIEW_FULL", "VIEW_BASIC"]>;
|
|
81
81
|
}, "strip", z.ZodTypeAny, {
|
|
82
|
-
description: string;
|
|
83
82
|
uid: string;
|
|
84
|
-
view: "VIEW_FULL" | "VIEW_BASIC";
|
|
85
83
|
title: string;
|
|
84
|
+
description: string;
|
|
86
85
|
id: string;
|
|
87
86
|
icon: string;
|
|
88
87
|
vendor: string;
|
|
88
|
+
view: "VIEW_FULL" | "VIEW_BASIC";
|
|
89
89
|
helpLink: {
|
|
90
90
|
text: string;
|
|
91
91
|
url: string;
|
|
@@ -97,13 +97,13 @@ export declare const IntegrationSchema: z.ZodObject<{
|
|
|
97
97
|
} | null;
|
|
98
98
|
setupSchema?: any;
|
|
99
99
|
}, {
|
|
100
|
-
description: string;
|
|
101
100
|
uid: string;
|
|
102
|
-
view: "VIEW_FULL" | "VIEW_BASIC";
|
|
103
101
|
title: string;
|
|
102
|
+
description: string;
|
|
104
103
|
id: string;
|
|
105
104
|
icon: string;
|
|
106
105
|
vendor: string;
|
|
106
|
+
view: "VIEW_FULL" | "VIEW_BASIC";
|
|
107
107
|
helpLink: {
|
|
108
108
|
text: string;
|
|
109
109
|
url: string;
|
|
@@ -174,13 +174,13 @@ export declare const listPaginatedIntegrationsResponseValidator: z.ZodObject<{
|
|
|
174
174
|
}>>;
|
|
175
175
|
view: z.ZodEnum<["VIEW_FULL", "VIEW_BASIC"]>;
|
|
176
176
|
}, "strip", z.ZodTypeAny, {
|
|
177
|
-
description: string;
|
|
178
177
|
uid: string;
|
|
179
|
-
view: "VIEW_FULL" | "VIEW_BASIC";
|
|
180
178
|
title: string;
|
|
179
|
+
description: string;
|
|
181
180
|
id: string;
|
|
182
181
|
icon: string;
|
|
183
182
|
vendor: string;
|
|
183
|
+
view: "VIEW_FULL" | "VIEW_BASIC";
|
|
184
184
|
helpLink: {
|
|
185
185
|
text: string;
|
|
186
186
|
url: string;
|
|
@@ -192,13 +192,13 @@ export declare const listPaginatedIntegrationsResponseValidator: z.ZodObject<{
|
|
|
192
192
|
} | null;
|
|
193
193
|
setupSchema?: any;
|
|
194
194
|
}, {
|
|
195
|
-
description: string;
|
|
196
195
|
uid: string;
|
|
197
|
-
view: "VIEW_FULL" | "VIEW_BASIC";
|
|
198
196
|
title: string;
|
|
197
|
+
description: string;
|
|
199
198
|
id: string;
|
|
200
199
|
icon: string;
|
|
201
200
|
vendor: string;
|
|
201
|
+
view: "VIEW_FULL" | "VIEW_BASIC";
|
|
202
202
|
helpLink: {
|
|
203
203
|
text: string;
|
|
204
204
|
url: string;
|
|
@@ -216,13 +216,13 @@ export declare const listPaginatedIntegrationsResponseValidator: z.ZodObject<{
|
|
|
216
216
|
nextPageToken: string | null;
|
|
217
217
|
totalSize: number;
|
|
218
218
|
integrations: {
|
|
219
|
-
description: string;
|
|
220
219
|
uid: string;
|
|
221
|
-
view: "VIEW_FULL" | "VIEW_BASIC";
|
|
222
220
|
title: string;
|
|
221
|
+
description: string;
|
|
223
222
|
id: string;
|
|
224
223
|
icon: string;
|
|
225
224
|
vendor: string;
|
|
225
|
+
view: "VIEW_FULL" | "VIEW_BASIC";
|
|
226
226
|
helpLink: {
|
|
227
227
|
text: string;
|
|
228
228
|
url: string;
|
|
@@ -238,13 +238,13 @@ export declare const listPaginatedIntegrationsResponseValidator: z.ZodObject<{
|
|
|
238
238
|
nextPageToken: string | null;
|
|
239
239
|
totalSize: number;
|
|
240
240
|
integrations: {
|
|
241
|
-
description: string;
|
|
242
241
|
uid: string;
|
|
243
|
-
view: "VIEW_FULL" | "VIEW_BASIC";
|
|
244
242
|
title: string;
|
|
243
|
+
description: string;
|
|
245
244
|
id: string;
|
|
246
245
|
icon: string;
|
|
247
246
|
vendor: string;
|
|
247
|
+
view: "VIEW_FULL" | "VIEW_BASIC";
|
|
248
248
|
helpLink: {
|
|
249
249
|
text: string;
|
|
250
250
|
url: string;
|
|
@@ -233,6 +233,7 @@ export declare const UserMembershipSchema: z.ZodObject<{
|
|
|
233
233
|
uid: string;
|
|
234
234
|
createTime: string;
|
|
235
235
|
updateTime: string;
|
|
236
|
+
id: string;
|
|
236
237
|
owner: {
|
|
237
238
|
name: string;
|
|
238
239
|
uid: string;
|
|
@@ -252,7 +253,6 @@ export declare const UserMembershipSchema: z.ZodObject<{
|
|
|
252
253
|
} | undefined;
|
|
253
254
|
} | undefined;
|
|
254
255
|
};
|
|
255
|
-
id: string;
|
|
256
256
|
profile?: {
|
|
257
257
|
displayName?: string | undefined;
|
|
258
258
|
bio?: string | undefined;
|
|
@@ -269,6 +269,7 @@ export declare const UserMembershipSchema: z.ZodObject<{
|
|
|
269
269
|
uid: string;
|
|
270
270
|
createTime: string;
|
|
271
271
|
updateTime: string;
|
|
272
|
+
id: string;
|
|
272
273
|
owner: {
|
|
273
274
|
name: string;
|
|
274
275
|
uid: string;
|
|
@@ -288,7 +289,6 @@ export declare const UserMembershipSchema: z.ZodObject<{
|
|
|
288
289
|
} | undefined;
|
|
289
290
|
} | undefined;
|
|
290
291
|
};
|
|
291
|
-
id: string;
|
|
292
292
|
profile?: {
|
|
293
293
|
displayName?: string | undefined;
|
|
294
294
|
bio?: string | undefined;
|
|
@@ -331,6 +331,7 @@ export declare const UserMembershipSchema: z.ZodObject<{
|
|
|
331
331
|
uid: string;
|
|
332
332
|
createTime: string;
|
|
333
333
|
updateTime: string;
|
|
334
|
+
id: string;
|
|
334
335
|
owner: {
|
|
335
336
|
name: string;
|
|
336
337
|
uid: string;
|
|
@@ -350,7 +351,6 @@ export declare const UserMembershipSchema: z.ZodObject<{
|
|
|
350
351
|
} | undefined;
|
|
351
352
|
} | undefined;
|
|
352
353
|
};
|
|
353
|
-
id: string;
|
|
354
354
|
profile?: {
|
|
355
355
|
displayName?: string | undefined;
|
|
356
356
|
bio?: string | undefined;
|
|
@@ -391,6 +391,7 @@ export declare const UserMembershipSchema: z.ZodObject<{
|
|
|
391
391
|
uid: string;
|
|
392
392
|
createTime: string;
|
|
393
393
|
updateTime: string;
|
|
394
|
+
id: string;
|
|
394
395
|
owner: {
|
|
395
396
|
name: string;
|
|
396
397
|
uid: string;
|
|
@@ -410,7 +411,6 @@ export declare const UserMembershipSchema: z.ZodObject<{
|
|
|
410
411
|
} | undefined;
|
|
411
412
|
} | undefined;
|
|
412
413
|
};
|
|
413
|
-
id: string;
|
|
414
414
|
profile?: {
|
|
415
415
|
displayName?: string | undefined;
|
|
416
416
|
bio?: string | undefined;
|
|
@@ -653,6 +653,7 @@ export declare const OrganizationMembershipSchema: z.ZodObject<{
|
|
|
653
653
|
uid: string;
|
|
654
654
|
createTime: string;
|
|
655
655
|
updateTime: string;
|
|
656
|
+
id: string;
|
|
656
657
|
owner: {
|
|
657
658
|
name: string;
|
|
658
659
|
uid: string;
|
|
@@ -672,7 +673,6 @@ export declare const OrganizationMembershipSchema: z.ZodObject<{
|
|
|
672
673
|
} | undefined;
|
|
673
674
|
} | undefined;
|
|
674
675
|
};
|
|
675
|
-
id: string;
|
|
676
676
|
profile?: {
|
|
677
677
|
displayName?: string | undefined;
|
|
678
678
|
bio?: string | undefined;
|
|
@@ -689,6 +689,7 @@ export declare const OrganizationMembershipSchema: z.ZodObject<{
|
|
|
689
689
|
uid: string;
|
|
690
690
|
createTime: string;
|
|
691
691
|
updateTime: string;
|
|
692
|
+
id: string;
|
|
692
693
|
owner: {
|
|
693
694
|
name: string;
|
|
694
695
|
uid: string;
|
|
@@ -708,7 +709,6 @@ export declare const OrganizationMembershipSchema: z.ZodObject<{
|
|
|
708
709
|
} | undefined;
|
|
709
710
|
} | undefined;
|
|
710
711
|
};
|
|
711
|
-
id: string;
|
|
712
712
|
profile?: {
|
|
713
713
|
displayName?: string | undefined;
|
|
714
714
|
bio?: string | undefined;
|
|
@@ -751,6 +751,7 @@ export declare const OrganizationMembershipSchema: z.ZodObject<{
|
|
|
751
751
|
uid: string;
|
|
752
752
|
createTime: string;
|
|
753
753
|
updateTime: string;
|
|
754
|
+
id: string;
|
|
754
755
|
owner: {
|
|
755
756
|
name: string;
|
|
756
757
|
uid: string;
|
|
@@ -770,7 +771,6 @@ export declare const OrganizationMembershipSchema: z.ZodObject<{
|
|
|
770
771
|
} | undefined;
|
|
771
772
|
} | undefined;
|
|
772
773
|
};
|
|
773
|
-
id: string;
|
|
774
774
|
profile?: {
|
|
775
775
|
displayName?: string | undefined;
|
|
776
776
|
bio?: string | undefined;
|
|
@@ -811,6 +811,7 @@ export declare const OrganizationMembershipSchema: z.ZodObject<{
|
|
|
811
811
|
uid: string;
|
|
812
812
|
createTime: string;
|
|
813
813
|
updateTime: string;
|
|
814
|
+
id: string;
|
|
814
815
|
owner: {
|
|
815
816
|
name: string;
|
|
816
817
|
uid: string;
|
|
@@ -830,7 +831,6 @@ export declare const OrganizationMembershipSchema: z.ZodObject<{
|
|
|
830
831
|
} | undefined;
|
|
831
832
|
} | undefined;
|
|
832
833
|
};
|
|
833
|
-
id: string;
|
|
834
834
|
profile?: {
|
|
835
835
|
displayName?: string | undefined;
|
|
836
836
|
bio?: string | undefined;
|
|
@@ -1072,6 +1072,7 @@ export declare const listUserMembershipsResponseValidator: z.ZodArray<z.ZodObjec
|
|
|
1072
1072
|
uid: string;
|
|
1073
1073
|
createTime: string;
|
|
1074
1074
|
updateTime: string;
|
|
1075
|
+
id: string;
|
|
1075
1076
|
owner: {
|
|
1076
1077
|
name: string;
|
|
1077
1078
|
uid: string;
|
|
@@ -1091,7 +1092,6 @@ export declare const listUserMembershipsResponseValidator: z.ZodArray<z.ZodObjec
|
|
|
1091
1092
|
} | undefined;
|
|
1092
1093
|
} | undefined;
|
|
1093
1094
|
};
|
|
1094
|
-
id: string;
|
|
1095
1095
|
profile?: {
|
|
1096
1096
|
displayName?: string | undefined;
|
|
1097
1097
|
bio?: string | undefined;
|
|
@@ -1108,6 +1108,7 @@ export declare const listUserMembershipsResponseValidator: z.ZodArray<z.ZodObjec
|
|
|
1108
1108
|
uid: string;
|
|
1109
1109
|
createTime: string;
|
|
1110
1110
|
updateTime: string;
|
|
1111
|
+
id: string;
|
|
1111
1112
|
owner: {
|
|
1112
1113
|
name: string;
|
|
1113
1114
|
uid: string;
|
|
@@ -1127,7 +1128,6 @@ export declare const listUserMembershipsResponseValidator: z.ZodArray<z.ZodObjec
|
|
|
1127
1128
|
} | undefined;
|
|
1128
1129
|
} | undefined;
|
|
1129
1130
|
};
|
|
1130
|
-
id: string;
|
|
1131
1131
|
profile?: {
|
|
1132
1132
|
displayName?: string | undefined;
|
|
1133
1133
|
bio?: string | undefined;
|
|
@@ -1170,6 +1170,7 @@ export declare const listUserMembershipsResponseValidator: z.ZodArray<z.ZodObjec
|
|
|
1170
1170
|
uid: string;
|
|
1171
1171
|
createTime: string;
|
|
1172
1172
|
updateTime: string;
|
|
1173
|
+
id: string;
|
|
1173
1174
|
owner: {
|
|
1174
1175
|
name: string;
|
|
1175
1176
|
uid: string;
|
|
@@ -1189,7 +1190,6 @@ export declare const listUserMembershipsResponseValidator: z.ZodArray<z.ZodObjec
|
|
|
1189
1190
|
} | undefined;
|
|
1190
1191
|
} | undefined;
|
|
1191
1192
|
};
|
|
1192
|
-
id: string;
|
|
1193
1193
|
profile?: {
|
|
1194
1194
|
displayName?: string | undefined;
|
|
1195
1195
|
bio?: string | undefined;
|
|
@@ -1230,6 +1230,7 @@ export declare const listUserMembershipsResponseValidator: z.ZodArray<z.ZodObjec
|
|
|
1230
1230
|
uid: string;
|
|
1231
1231
|
createTime: string;
|
|
1232
1232
|
updateTime: string;
|
|
1233
|
+
id: string;
|
|
1233
1234
|
owner: {
|
|
1234
1235
|
name: string;
|
|
1235
1236
|
uid: string;
|
|
@@ -1249,7 +1250,6 @@ export declare const listUserMembershipsResponseValidator: z.ZodArray<z.ZodObjec
|
|
|
1249
1250
|
} | undefined;
|
|
1250
1251
|
} | undefined;
|
|
1251
1252
|
};
|
|
1252
|
-
id: string;
|
|
1253
1253
|
profile?: {
|
|
1254
1254
|
displayName?: string | undefined;
|
|
1255
1255
|
bio?: string | undefined;
|
|
@@ -1493,6 +1493,7 @@ export declare const getUserMembershipResponseValidator: z.ZodObject<{
|
|
|
1493
1493
|
uid: string;
|
|
1494
1494
|
createTime: string;
|
|
1495
1495
|
updateTime: string;
|
|
1496
|
+
id: string;
|
|
1496
1497
|
owner: {
|
|
1497
1498
|
name: string;
|
|
1498
1499
|
uid: string;
|
|
@@ -1512,7 +1513,6 @@ export declare const getUserMembershipResponseValidator: z.ZodObject<{
|
|
|
1512
1513
|
} | undefined;
|
|
1513
1514
|
} | undefined;
|
|
1514
1515
|
};
|
|
1515
|
-
id: string;
|
|
1516
1516
|
profile?: {
|
|
1517
1517
|
displayName?: string | undefined;
|
|
1518
1518
|
bio?: string | undefined;
|
|
@@ -1529,6 +1529,7 @@ export declare const getUserMembershipResponseValidator: z.ZodObject<{
|
|
|
1529
1529
|
uid: string;
|
|
1530
1530
|
createTime: string;
|
|
1531
1531
|
updateTime: string;
|
|
1532
|
+
id: string;
|
|
1532
1533
|
owner: {
|
|
1533
1534
|
name: string;
|
|
1534
1535
|
uid: string;
|
|
@@ -1548,7 +1549,6 @@ export declare const getUserMembershipResponseValidator: z.ZodObject<{
|
|
|
1548
1549
|
} | undefined;
|
|
1549
1550
|
} | undefined;
|
|
1550
1551
|
};
|
|
1551
|
-
id: string;
|
|
1552
1552
|
profile?: {
|
|
1553
1553
|
displayName?: string | undefined;
|
|
1554
1554
|
bio?: string | undefined;
|
|
@@ -1591,6 +1591,7 @@ export declare const getUserMembershipResponseValidator: z.ZodObject<{
|
|
|
1591
1591
|
uid: string;
|
|
1592
1592
|
createTime: string;
|
|
1593
1593
|
updateTime: string;
|
|
1594
|
+
id: string;
|
|
1594
1595
|
owner: {
|
|
1595
1596
|
name: string;
|
|
1596
1597
|
uid: string;
|
|
@@ -1610,7 +1611,6 @@ export declare const getUserMembershipResponseValidator: z.ZodObject<{
|
|
|
1610
1611
|
} | undefined;
|
|
1611
1612
|
} | undefined;
|
|
1612
1613
|
};
|
|
1613
|
-
id: string;
|
|
1614
1614
|
profile?: {
|
|
1615
1615
|
displayName?: string | undefined;
|
|
1616
1616
|
bio?: string | undefined;
|
|
@@ -1651,6 +1651,7 @@ export declare const getUserMembershipResponseValidator: z.ZodObject<{
|
|
|
1651
1651
|
uid: string;
|
|
1652
1652
|
createTime: string;
|
|
1653
1653
|
updateTime: string;
|
|
1654
|
+
id: string;
|
|
1654
1655
|
owner: {
|
|
1655
1656
|
name: string;
|
|
1656
1657
|
uid: string;
|
|
@@ -1670,7 +1671,6 @@ export declare const getUserMembershipResponseValidator: z.ZodObject<{
|
|
|
1670
1671
|
} | undefined;
|
|
1671
1672
|
} | undefined;
|
|
1672
1673
|
};
|
|
1673
|
-
id: string;
|
|
1674
1674
|
profile?: {
|
|
1675
1675
|
displayName?: string | undefined;
|
|
1676
1676
|
bio?: string | undefined;
|
|
@@ -1912,6 +1912,7 @@ export declare const listOrganizationMembershipsResponseValidator: z.ZodArray<z.
|
|
|
1912
1912
|
uid: string;
|
|
1913
1913
|
createTime: string;
|
|
1914
1914
|
updateTime: string;
|
|
1915
|
+
id: string;
|
|
1915
1916
|
owner: {
|
|
1916
1917
|
name: string;
|
|
1917
1918
|
uid: string;
|
|
@@ -1931,7 +1932,6 @@ export declare const listOrganizationMembershipsResponseValidator: z.ZodArray<z.
|
|
|
1931
1932
|
} | undefined;
|
|
1932
1933
|
} | undefined;
|
|
1933
1934
|
};
|
|
1934
|
-
id: string;
|
|
1935
1935
|
profile?: {
|
|
1936
1936
|
displayName?: string | undefined;
|
|
1937
1937
|
bio?: string | undefined;
|
|
@@ -1948,6 +1948,7 @@ export declare const listOrganizationMembershipsResponseValidator: z.ZodArray<z.
|
|
|
1948
1948
|
uid: string;
|
|
1949
1949
|
createTime: string;
|
|
1950
1950
|
updateTime: string;
|
|
1951
|
+
id: string;
|
|
1951
1952
|
owner: {
|
|
1952
1953
|
name: string;
|
|
1953
1954
|
uid: string;
|
|
@@ -1967,7 +1968,6 @@ export declare const listOrganizationMembershipsResponseValidator: z.ZodArray<z.
|
|
|
1967
1968
|
} | undefined;
|
|
1968
1969
|
} | undefined;
|
|
1969
1970
|
};
|
|
1970
|
-
id: string;
|
|
1971
1971
|
profile?: {
|
|
1972
1972
|
displayName?: string | undefined;
|
|
1973
1973
|
bio?: string | undefined;
|
|
@@ -2010,6 +2010,7 @@ export declare const listOrganizationMembershipsResponseValidator: z.ZodArray<z.
|
|
|
2010
2010
|
uid: string;
|
|
2011
2011
|
createTime: string;
|
|
2012
2012
|
updateTime: string;
|
|
2013
|
+
id: string;
|
|
2013
2014
|
owner: {
|
|
2014
2015
|
name: string;
|
|
2015
2016
|
uid: string;
|
|
@@ -2029,7 +2030,6 @@ export declare const listOrganizationMembershipsResponseValidator: z.ZodArray<z.
|
|
|
2029
2030
|
} | undefined;
|
|
2030
2031
|
} | undefined;
|
|
2031
2032
|
};
|
|
2032
|
-
id: string;
|
|
2033
2033
|
profile?: {
|
|
2034
2034
|
displayName?: string | undefined;
|
|
2035
2035
|
bio?: string | undefined;
|
|
@@ -2070,6 +2070,7 @@ export declare const listOrganizationMembershipsResponseValidator: z.ZodArray<z.
|
|
|
2070
2070
|
uid: string;
|
|
2071
2071
|
createTime: string;
|
|
2072
2072
|
updateTime: string;
|
|
2073
|
+
id: string;
|
|
2073
2074
|
owner: {
|
|
2074
2075
|
name: string;
|
|
2075
2076
|
uid: string;
|
|
@@ -2089,7 +2090,6 @@ export declare const listOrganizationMembershipsResponseValidator: z.ZodArray<z.
|
|
|
2089
2090
|
} | undefined;
|
|
2090
2091
|
} | undefined;
|
|
2091
2092
|
};
|
|
2092
|
-
id: string;
|
|
2093
2093
|
profile?: {
|
|
2094
2094
|
displayName?: string | undefined;
|
|
2095
2095
|
bio?: string | undefined;
|
|
@@ -2333,6 +2333,7 @@ export declare const getOrganizationMembershipResponseValidator: z.ZodObject<{
|
|
|
2333
2333
|
uid: string;
|
|
2334
2334
|
createTime: string;
|
|
2335
2335
|
updateTime: string;
|
|
2336
|
+
id: string;
|
|
2336
2337
|
owner: {
|
|
2337
2338
|
name: string;
|
|
2338
2339
|
uid: string;
|
|
@@ -2352,7 +2353,6 @@ export declare const getOrganizationMembershipResponseValidator: z.ZodObject<{
|
|
|
2352
2353
|
} | undefined;
|
|
2353
2354
|
} | undefined;
|
|
2354
2355
|
};
|
|
2355
|
-
id: string;
|
|
2356
2356
|
profile?: {
|
|
2357
2357
|
displayName?: string | undefined;
|
|
2358
2358
|
bio?: string | undefined;
|
|
@@ -2369,6 +2369,7 @@ export declare const getOrganizationMembershipResponseValidator: z.ZodObject<{
|
|
|
2369
2369
|
uid: string;
|
|
2370
2370
|
createTime: string;
|
|
2371
2371
|
updateTime: string;
|
|
2372
|
+
id: string;
|
|
2372
2373
|
owner: {
|
|
2373
2374
|
name: string;
|
|
2374
2375
|
uid: string;
|
|
@@ -2388,7 +2389,6 @@ export declare const getOrganizationMembershipResponseValidator: z.ZodObject<{
|
|
|
2388
2389
|
} | undefined;
|
|
2389
2390
|
} | undefined;
|
|
2390
2391
|
};
|
|
2391
|
-
id: string;
|
|
2392
2392
|
profile?: {
|
|
2393
2393
|
displayName?: string | undefined;
|
|
2394
2394
|
bio?: string | undefined;
|
|
@@ -2431,6 +2431,7 @@ export declare const getOrganizationMembershipResponseValidator: z.ZodObject<{
|
|
|
2431
2431
|
uid: string;
|
|
2432
2432
|
createTime: string;
|
|
2433
2433
|
updateTime: string;
|
|
2434
|
+
id: string;
|
|
2434
2435
|
owner: {
|
|
2435
2436
|
name: string;
|
|
2436
2437
|
uid: string;
|
|
@@ -2450,7 +2451,6 @@ export declare const getOrganizationMembershipResponseValidator: z.ZodObject<{
|
|
|
2450
2451
|
} | undefined;
|
|
2451
2452
|
} | undefined;
|
|
2452
2453
|
};
|
|
2453
|
-
id: string;
|
|
2454
2454
|
profile?: {
|
|
2455
2455
|
displayName?: string | undefined;
|
|
2456
2456
|
bio?: string | undefined;
|
|
@@ -2491,6 +2491,7 @@ export declare const getOrganizationMembershipResponseValidator: z.ZodObject<{
|
|
|
2491
2491
|
uid: string;
|
|
2492
2492
|
createTime: string;
|
|
2493
2493
|
updateTime: string;
|
|
2494
|
+
id: string;
|
|
2494
2495
|
owner: {
|
|
2495
2496
|
name: string;
|
|
2496
2497
|
uid: string;
|
|
@@ -2510,7 +2511,6 @@ export declare const getOrganizationMembershipResponseValidator: z.ZodObject<{
|
|
|
2510
2511
|
} | undefined;
|
|
2511
2512
|
} | undefined;
|
|
2512
2513
|
};
|
|
2513
|
-
id: string;
|
|
2514
2514
|
profile?: {
|
|
2515
2515
|
displayName?: string | undefined;
|
|
2516
2516
|
bio?: string | undefined;
|
|
@@ -195,6 +195,7 @@ export declare const OrganizationSchema: z.ZodObject<{
|
|
|
195
195
|
uid: string;
|
|
196
196
|
createTime: string;
|
|
197
197
|
updateTime: string;
|
|
198
|
+
id: string;
|
|
198
199
|
owner: {
|
|
199
200
|
name: string;
|
|
200
201
|
uid: string;
|
|
@@ -214,7 +215,6 @@ export declare const OrganizationSchema: z.ZodObject<{
|
|
|
214
215
|
} | undefined;
|
|
215
216
|
} | undefined;
|
|
216
217
|
};
|
|
217
|
-
id: string;
|
|
218
218
|
profile?: {
|
|
219
219
|
displayName?: string | undefined;
|
|
220
220
|
bio?: string | undefined;
|
|
@@ -231,6 +231,7 @@ export declare const OrganizationSchema: z.ZodObject<{
|
|
|
231
231
|
uid: string;
|
|
232
232
|
createTime: string;
|
|
233
233
|
updateTime: string;
|
|
234
|
+
id: string;
|
|
234
235
|
owner: {
|
|
235
236
|
name: string;
|
|
236
237
|
uid: string;
|
|
@@ -250,7 +251,6 @@ export declare const OrganizationSchema: z.ZodObject<{
|
|
|
250
251
|
} | undefined;
|
|
251
252
|
} | undefined;
|
|
252
253
|
};
|
|
253
|
-
id: string;
|
|
254
254
|
profile?: {
|
|
255
255
|
displayName?: string | undefined;
|
|
256
256
|
bio?: string | undefined;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Nullable } from "../../types";
|
|
2
2
|
export type StripeSubscriptionStatus = "STATUS_UNSPECIFIED" | "STATUS_INCOMPLETE" | "STATUS_INCOMPLETE_EXPIRED" | "STATUS_TRIALING" | "STATUS_ACTIVE" | "STATUS_PAST_DUE" | "STATUS_CANCELED" | "STATUS_UNPAID" | "STATUS_PAUSED";
|
|
3
|
-
export type UserSubscriptionPlan = "PLAN_UNSPECIFIED" | "PLAN_FREE" | "
|
|
3
|
+
export type UserSubscriptionPlan = "PLAN_UNSPECIFIED" | "PLAN_FREE" | "PLAN_STARTER" | "PLAN_UNPAID";
|
|
4
4
|
export type OrganizationSubscriptionPlan = "PLAN_UNSPECIFIED" | "PLAN_FREE" | "PLAN_TEAM" | "PLAN_ENTERPRISE" | "PLAN_UNPAID";
|
|
5
5
|
export type StripeSubscriptionDetail = {
|
|
6
6
|
productName: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/core/subscription/types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,aAAa,CAAC;AAEvC,MAAM,MAAM,wBAAwB,GAChC,oBAAoB,GACpB,mBAAmB,GACnB,2BAA2B,GAC3B,iBAAiB,GACjB,eAAe,GACf,iBAAiB,GACjB,iBAAiB,GACjB,eAAe,GACf,eAAe,CAAC;AAEpB,MAAM,MAAM,oBAAoB,GAC5B,kBAAkB,GAClB,WAAW,GACX,
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/core/subscription/types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,aAAa,CAAC;AAEvC,MAAM,MAAM,wBAAwB,GAChC,oBAAoB,GACpB,mBAAmB,GACnB,2BAA2B,GAC3B,iBAAiB,GACjB,eAAe,GACf,iBAAiB,GACjB,iBAAiB,GACjB,eAAe,GACf,eAAe,CAAC;AAEpB,MAAM,MAAM,oBAAoB,GAC5B,kBAAkB,GAClB,WAAW,GACX,cAAc,GACd,aAAa,CAAC;AAElB,MAAM,MAAM,4BAA4B,GACpC,kBAAkB,GAClB,WAAW,GACX,WAAW,GACX,iBAAiB,GACjB,aAAa,CAAC;AAElB,MAAM,MAAM,wBAAwB,GAAG;IACrC,WAAW,EAAE,MAAM,CAAC;IACpB,EAAE,EAAE,MAAM,CAAC;IACX,MAAM,EAAE,MAAM,CAAC;IACf,KAAK,EAAE,MAAM,CAAC;IACd,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,MAAM,EAAE,wBAAwB,CAAC;IACjC,WAAW,EAAE,MAAM,CAAC;CACrB,CAAC;AAEF,MAAM,MAAM,gBAAgB,GAAG;IAC7B,IAAI,EAAE,oBAAoB,CAAC;IAC3B,MAAM,EAAE,QAAQ,CAAC,wBAAwB,CAAC,CAAC;CAC5C,CAAC;AAEF,MAAM,MAAM,wBAAwB,GAAG;IACrC,IAAI,EAAE,4BAA4B,CAAC;IACnC,MAAM,EAAE,QAAQ,CAAC,wBAAwB,CAAC,CAAC;IAC3C,QAAQ,EAAE,MAAM,CAAC;IACjB,SAAS,EAAE,MAAM,CAAC;CACnB,CAAC;AAEF,MAAM,MAAM,wCAAwC,GAAG;IACrD,YAAY,EAAE,gBAAgB,CAAC;CAChC,CAAC;AAEF,MAAM,MAAM,kCAAkC,GAAG;IAC/C,cAAc,EAAE,MAAM,CAAC;CACxB,CAAC;AAEF,MAAM,MAAM,mCAAmC,GAAG;IAChD,YAAY,EAAE,wBAAwB,CAAC;CACxC,CAAC"}
|
package/dist/folder/types.d.ts
CHANGED
|
@@ -1,4 +1,8 @@
|
|
|
1
1
|
import { GeneralRecord, Permission } from "..";
|
|
2
|
+
export type InstillCatalogInfo = {
|
|
3
|
+
fileCount: number;
|
|
4
|
+
totalSizeBytes: string;
|
|
5
|
+
};
|
|
2
6
|
export type InstillFolder = {
|
|
3
7
|
uid: string;
|
|
4
8
|
name: string;
|
|
@@ -8,6 +12,7 @@ export type InstillFolder = {
|
|
|
8
12
|
updateTime: string;
|
|
9
13
|
catalogId: string;
|
|
10
14
|
permission: Permission;
|
|
15
|
+
catalogInfo: InstillCatalogInfo;
|
|
11
16
|
};
|
|
12
17
|
export type CreateInstillFolderRequest = {
|
|
13
18
|
namespaceId: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/folder/types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,UAAU,EAAE,MAAM,IAAI,CAAC;AAE/C,MAAM,MAAM,aAAa,GAAG;IAC1B,GAAG,EAAE,MAAM,CAAC;IACZ,IAAI,EAAE,MAAM,CAAC;IACb,WAAW,EAAE,MAAM,CAAC;IACpB,QAAQ,EAAE,aAAa,CAAC;IACxB,UAAU,EAAE,MAAM,CAAC;IACnB,UAAU,EAAE,MAAM,CAAC;IACnB,SAAS,EAAE,MAAM,CAAC;IAClB,UAAU,EAAE,UAAU,CAAC;
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/folder/types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,UAAU,EAAE,MAAM,IAAI,CAAC;AAE/C,MAAM,MAAM,kBAAkB,GAAG;IAC/B,SAAS,EAAE,MAAM,CAAC;IAClB,cAAc,EAAE,MAAM,CAAC;CACxB,CAAC;AAEF,MAAM,MAAM,aAAa,GAAG;IAC1B,GAAG,EAAE,MAAM,CAAC;IACZ,IAAI,EAAE,MAAM,CAAC;IACb,WAAW,EAAE,MAAM,CAAC;IACpB,QAAQ,EAAE,aAAa,CAAC;IACxB,UAAU,EAAE,MAAM,CAAC;IACnB,UAAU,EAAE,MAAM,CAAC;IACnB,SAAS,EAAE,MAAM,CAAC;IAClB,UAAU,EAAE,UAAU,CAAC;IACvB,WAAW,EAAE,kBAAkB,CAAC;CACjC,CAAC;AAEF,MAAM,MAAM,0BAA0B,GAAG;IACvC,WAAW,EAAE,MAAM,CAAC;IACpB,MAAM,EAAE,IAAI,CAAC,aAAa,EAAE,MAAM,GAAG,aAAa,CAAC,GAAG;QACpD,QAAQ,CAAC,EAAE,aAAa,CAAC;KAC1B,CAAC;CACH,CAAC;AAEF,MAAM,MAAM,2BAA2B,GAAG;IACxC,MAAM,EAAE,aAAa,CAAC;CACvB,CAAC;AAEF,MAAM,MAAM,0BAA0B,GAAG;IACvC,WAAW,EAAE,MAAM,CAAC;IACpB,SAAS,EAAE,MAAM,CAAC;IAClB,MAAM,EAAE,IAAI,CAAC,aAAa,EAAE,MAAM,GAAG,aAAa,CAAC,GAAG;QACpD,QAAQ,CAAC,EAAE,aAAa,CAAC;KAC1B,CAAC;CACH,CAAC;AAEF,MAAM,MAAM,0BAA0B,GAAG;IACvC,WAAW,EAAE,MAAM,CAAC;IACpB,SAAS,EAAE,MAAM,CAAC;CACnB,CAAC;AAEF,MAAM,MAAM,uBAAuB,GAAG;IACpC,WAAW,EAAE,MAAM,CAAC;IACpB,SAAS,EAAE,MAAM,CAAC;CACnB,CAAC;AAEF,MAAM,MAAM,wBAAwB,GAAG,2BAA2B,CAAC;AAEnE,MAAM,MAAM,kCAAkC,GAAG;IAC/C,WAAW,EAAE,MAAM,CAAC;IACpB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,QAAQ,CAAC,EAAE,MAAM,CAAC;CACnB,CAAC;AAEF,MAAM,MAAM,mCAAmC,GAAG;IAChD,OAAO,EAAE,aAAa,EAAE,CAAC;IACzB,aAAa,EAAE,MAAM,CAAC;IACtB,SAAS,EAAE,MAAM,CAAC;CACnB,CAAC;AAEF,MAAM,MAAM,yBAAyB,GAAG,kCAAkC,CAAC;AAE3E,MAAM,MAAM,0BAA0B,GAAG;IACvC,OAAO,EAAE,aAAa,EAAE,CAAC;CAC1B,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getQueryString.d.ts","sourceRoot":"","sources":["../../src/helper/getQueryString.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,UAAU,CAAC;AAEpC,eAAO,MAAM,cAAc,
|
|
1
|
+
{"version":3,"file":"getQueryString.d.ts","sourceRoot":"","sources":["../../src/helper/getQueryString.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,UAAU,CAAC;AAEpC,eAAO,MAAM,cAAc,GAAI,qRA0B5B;IACD,OAAO,EAAE,MAAM,CAAC;IAChB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,IAAI,CAAC,EAAE,QAAQ,CAAC,MAAM,CAAC,CAAC;IACxB,MAAM,CAAC,EAAE,QAAQ,CAAC,MAAM,CAAC,CAAC;IAC1B,OAAO,CAAC,EAAE,QAAQ,CAAC,MAAM,CAAC,CAAC;IAC3B,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,UAAU,CAAC,EAAE,MAAM,CAAC;IAGpB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,WAAW,CAAC,EAAE,QAAQ,CAAC,MAAM,CAAC,CAAC;IAC/B,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAC3B,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,SAAS,CAAC,EAAE,MAAM,EAAE,CAAC;IACrB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,IAAI,CAAC,EAAE,MAAM,CAAC;CACf,WAuIA,CAAC"}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
type ProgressCallback = (progress: number) => void;
|
|
2
|
+
export declare const makeXMLRequestWithProgress: <T>(url: string, method: string, accessToken: string, body?: any, onProgress?: ProgressCallback) => Promise<T>;
|
|
3
|
+
export {};
|
|
4
|
+
//# sourceMappingURL=makeXMLRequestWithProgress.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"makeXMLRequestWithProgress.d.ts","sourceRoot":"","sources":["../../src/helper/makeXMLRequestWithProgress.ts"],"names":[],"mappings":"AAEA,KAAK,gBAAgB,GAAG,CAAC,QAAQ,EAAE,MAAM,KAAK,IAAI,CAAC;AAGnD,eAAO,MAAM,0BAA0B,GAAI,CAAC,OACrC,MAAM,UACH,MAAM,eACD,MAAM,SAEZ,GAAG,eACG,gBAAgB,KAC5B,OAAO,CAAC,CAAC,CAoCX,CAAC"}
|