@amityco/ts-sdk-react-native 7.25.1-144f8feb.0 → 7.26.0
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/@types/core/payload.d.ts +1 -0
- package/dist/@types/core/payload.d.ts.map +1 -1
- package/dist/@types/domains/content.d.ts +6 -1
- package/dist/@types/domains/content.d.ts.map +1 -1
- package/dist/@types/domains/file.d.ts +2 -11
- package/dist/@types/domains/file.d.ts.map +1 -1
- package/dist/@types/domains/post.d.ts +3 -0
- package/dist/@types/domains/post.d.ts.map +1 -1
- package/dist/fileRepository/api/getFile.d.ts.map +1 -1
- package/dist/fileRepository/api/uploadImage.d.ts.map +1 -1
- package/dist/fileRepository/api/uploadVideo.d.ts.map +1 -1
- package/dist/index.cjs.js +112 -26
- package/dist/index.esm.js +112 -26
- package/dist/index.umd.js +1 -1
- package/dist/messagePreview/utils/getSubChannelMessagePreviewWithUser.d.ts +1 -1
- package/dist/postRepository/api/createEventPost.d.ts +36 -0
- package/dist/postRepository/api/createEventPost.d.ts.map +1 -0
- package/dist/postRepository/api/index.d.ts +1 -0
- package/dist/postRepository/api/index.d.ts.map +1 -1
- package/dist/postRepository/api/tests/integration/setup.d.ts +1 -0
- package/dist/postRepository/api/tests/integration/setup.d.ts.map +1 -1
- package/dist/utils/linkedObject/index.d.ts +0 -1
- package/dist/utils/linkedObject/index.d.ts.map +1 -1
- package/dist/utils/linkedObject/postLinkedObject.d.ts.map +1 -1
- package/dist/utils/postTypePredicate.d.ts +1 -0
- package/dist/utils/postTypePredicate.d.ts.map +1 -1
- package/dist/utils/tests/dummy/comment.d.ts +1 -1
- package/dist/utils/tests/dummy/file.d.ts.map +1 -1
- package/dist/utils/tests/dummy/post.d.ts.map +1 -1
- package/package.json +1 -1
- package/dist/utils/linkedObject/fileLinkedObject.d.ts +0 -2
- package/dist/utils/linkedObject/fileLinkedObject.d.ts.map +0 -1
|
@@ -3,7 +3,7 @@ export declare const getSubChannelMessagePreviewWithUser: (subChannel: Amity.Sub
|
|
|
3
3
|
user: Amity.InternalUser | undefined;
|
|
4
4
|
messagePreviewId: string;
|
|
5
5
|
subChannelName: string;
|
|
6
|
-
data?: string | Record<string, unknown> | Amity.ContentDataText | Amity.ContentDataFile | Amity.ContentDataImage | Amity.ContentDataVideo | Amity.ContentDataAudio | Amity.ContentDataPoll | Amity.ContentDataStream | Amity.ContentDataClip | Amity.ContentDataRoom | undefined;
|
|
6
|
+
data?: string | Record<string, unknown> | Amity.ContentDataText | Amity.ContentDataFile | Amity.ContentDataImage | Amity.ContentDataVideo | Amity.ContentDataAudio | Amity.ContentDataPoll | Amity.ContentDataStream | Amity.ContentDataClip | Amity.ContentDataRoom | Amity.ContentDataEvent | undefined;
|
|
7
7
|
dataType?: any;
|
|
8
8
|
channelId: string;
|
|
9
9
|
subChannelId: string;
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* ```js
|
|
3
|
+
* import { PostRepository } from '@amityco/ts-sdk'
|
|
4
|
+
* const created = await PostRepository.createEventPost({
|
|
5
|
+
* targetType: 'community',
|
|
6
|
+
* targetId: 'communityId',
|
|
7
|
+
* data: { eventId: 'eventId123', title: 'Summer Meetup', text: 'Come say hi' }
|
|
8
|
+
* })
|
|
9
|
+
* ```
|
|
10
|
+
*
|
|
11
|
+
* Creates an event {@link Amity.Post} — a post whose content is an event.
|
|
12
|
+
* The parent post carries the author's caption; the referenced event is
|
|
13
|
+
* resolved via `post.getEventInfo()`.
|
|
14
|
+
*
|
|
15
|
+
* `data.eventId` is REQUIRED; `title` and `text` are OPTIONAL — both blank is
|
|
16
|
+
* valid and yields a bare event card.
|
|
17
|
+
*
|
|
18
|
+
* Media attachments and product tags are rejected by the backend with 400.
|
|
19
|
+
*
|
|
20
|
+
* @param bundle The data necessary to create a new event {@link Amity.Post}
|
|
21
|
+
* @returns The newly created {@link Amity.Post}
|
|
22
|
+
*
|
|
23
|
+
* @category Post API
|
|
24
|
+
* @async
|
|
25
|
+
*/
|
|
26
|
+
export declare const createEventPost: <T extends string>(bundle: Pick<Amity.Post<T>, "targetId" | "targetType"> & Partial<Pick<Amity.Post<T>, "tags" | "metadata" | "mentionees" | "hashtags">> & {
|
|
27
|
+
data: {
|
|
28
|
+
eventId: string;
|
|
29
|
+
title?: string | undefined;
|
|
30
|
+
text?: string | undefined;
|
|
31
|
+
} & {
|
|
32
|
+
[k: string]: any;
|
|
33
|
+
};
|
|
34
|
+
links?: Amity.Link[] | undefined;
|
|
35
|
+
}) => Promise<Amity.Cached<Amity.Post>>;
|
|
36
|
+
//# sourceMappingURL=createEventPost.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"createEventPost.d.ts","sourceRoot":"","sources":["../../../src/postRepository/api/createEventPost.ts"],"names":[],"mappings":"AAUA;;;;;;;;;;;;;;;;;;;;;;;;GAwBG;AACH,eAAO,MAAM,eAAe;;iBAGL,MAAM;;;;;;;MAG1B,QAAQ,MAAM,MAAM,CAAC,MAAM,IAAI,CAAC,CAuBlC,CAAC"}
|
|
@@ -13,6 +13,7 @@ export * from './createClipPost';
|
|
|
13
13
|
export * from './createAudioPost';
|
|
14
14
|
export * from './createMixedMediaPost';
|
|
15
15
|
export * from './createRoomPost';
|
|
16
|
+
export * from './createEventPost';
|
|
16
17
|
export * from './pinProduct';
|
|
17
18
|
export * from './unpinProduct';
|
|
18
19
|
export * from './updateProductTags';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/postRepository/api/index.ts"],"names":[],"mappings":"AAAA,cAAc,gBAAgB,CAAC;AAE/B,cAAc,cAAc,CAAC;AAC7B,cAAc,YAAY,CAAC;AAE3B,cAAc,cAAc,CAAC;AAC7B,cAAc,kBAAkB,CAAC;AACjC,cAAc,kBAAkB,CAAC;AAEjC,cAAc,eAAe,CAAC;AAC9B,cAAc,eAAe,CAAC;AAE9B,cAAc,YAAY,CAAC;AAC3B,cAAc,cAAc,CAAC;AAC7B,cAAc,qBAAqB,CAAC;AAEpC,cAAc,kBAAkB,CAAC;AACjC,cAAc,mBAAmB,CAAC;AAClC,cAAc,wBAAwB,CAAC;AAEvC,cAAc,kBAAkB,CAAC;AACjC,cAAc,cAAc,CAAC;AAC7B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,qBAAqB,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/postRepository/api/index.ts"],"names":[],"mappings":"AAAA,cAAc,gBAAgB,CAAC;AAE/B,cAAc,cAAc,CAAC;AAC7B,cAAc,YAAY,CAAC;AAE3B,cAAc,cAAc,CAAC;AAC7B,cAAc,kBAAkB,CAAC;AACjC,cAAc,kBAAkB,CAAC;AAEjC,cAAc,eAAe,CAAC;AAC9B,cAAc,eAAe,CAAC;AAE9B,cAAc,YAAY,CAAC;AAC3B,cAAc,cAAc,CAAC;AAC7B,cAAc,qBAAqB,CAAC;AAEpC,cAAc,kBAAkB,CAAC;AACjC,cAAc,mBAAmB,CAAC;AAClC,cAAc,wBAAwB,CAAC;AAEvC,cAAc,kBAAkB,CAAC;AACjC,cAAc,mBAAmB,CAAC;AAClC,cAAc,cAAc,CAAC;AAC7B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,qBAAqB,CAAC"}
|
|
@@ -7,6 +7,7 @@ export declare const pollPost: Amity.InternalPost<any>;
|
|
|
7
7
|
export declare const livestreamPost: Amity.InternalPost<any>;
|
|
8
8
|
export declare const clipPost: Amity.InternalPost<any>;
|
|
9
9
|
export declare const roomPost: Amity.InternalPost<any>;
|
|
10
|
+
export declare const eventPost: Amity.InternalPost<any>;
|
|
10
11
|
export declare const textPostWithProductTags: Amity.InternalPost<any>;
|
|
11
12
|
export declare const imagePostWithAttachmentProductTags: Amity.InternalPost<any>;
|
|
12
13
|
export declare const postWithMultipleProductTags: Amity.InternalPost<any>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"setup.d.ts","sourceRoot":"","sources":["../../../../../src/postRepository/api/tests/integration/setup.ts"],"names":[],"mappings":"AAcA,OAAO,EACL,QAAQ,IAAI,eAAe,EAC3B,QAAQ,IAAI,eAAe,EAC5B,MAAM,6CAA6C,CAAC;AAErD,OAAO,EAAE,eAAe,EAAE,eAAe,EAAE,CAAC;AAE5C,eAAO,MAAM,QAAQ,6BAA6B,CAAC;AAMnD,eAAO,MAAM,SAAS,yBAIpB,CAAC;AAEH,eAAO,MAAM,SAAS,yBAOpB,CAAC;AAEH,eAAO,MAAM,QAAQ,yBAInB,CAAC;AAEH,eAAO,MAAM,cAAc,yBAIzB,CAAC;AAEH,eAAO,MAAM,QAAQ,yBAInB,CAAC;AAEH,eAAO,MAAM,QAAQ,yBAInB,CAAC;AAEH,eAAO,MAAM,uBAAuB,yBAMlC,CAAC;AAEH,eAAO,MAAM,kCAAkC,yBAI7C,CAAC;AAEH,eAAO,MAAM,2BAA2B,yBAOtC,CAAC;AAEH,eAAO,MAAM,uBAAuB,yBAKlC,CAAC;AAEH,eAAO,MAAM,yBAAyB,yBAMpC,CAAC;
|
|
1
|
+
{"version":3,"file":"setup.d.ts","sourceRoot":"","sources":["../../../../../src/postRepository/api/tests/integration/setup.ts"],"names":[],"mappings":"AAcA,OAAO,EACL,QAAQ,IAAI,eAAe,EAC3B,QAAQ,IAAI,eAAe,EAC5B,MAAM,6CAA6C,CAAC;AAErD,OAAO,EAAE,eAAe,EAAE,eAAe,EAAE,CAAC;AAE5C,eAAO,MAAM,QAAQ,6BAA6B,CAAC;AAMnD,eAAO,MAAM,SAAS,yBAIpB,CAAC;AAEH,eAAO,MAAM,SAAS,yBAOpB,CAAC;AAEH,eAAO,MAAM,QAAQ,yBAInB,CAAC;AAEH,eAAO,MAAM,cAAc,yBAIzB,CAAC;AAEH,eAAO,MAAM,QAAQ,yBAInB,CAAC;AAEH,eAAO,MAAM,QAAQ,yBAInB,CAAC;AAEH,eAAO,MAAM,SAAS,yBAMpB,CAAC;AAEH,eAAO,MAAM,uBAAuB,yBAMlC,CAAC;AAEH,eAAO,MAAM,kCAAkC,yBAI7C,CAAC;AAEH,eAAO,MAAM,2BAA2B,yBAOtC,CAAC;AAEH,eAAO,MAAM,uBAAuB,yBAKlC,CAAC;AAEH,eAAO,MAAM,yBAAyB,yBAMpC,CAAC;AAiCH,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;CAI7B,CAAC;AAEF,eAAO,MAAM,cAAc;;;;;;;;;;;;;;CAI1B,CAAC;AAEF,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;CAK7B,CAAC;AAMF,wBAAgB,gBAAgB,CAC9B,IAAI,EAAE,KAAK,CAAC,YAAY,EACxB,MAAM,CAAC,EAAE,OAAO,CAAC,KAAK,CAAC,WAAW,CAAC,GAClC,KAAK,CAAC,WAAW,CAOnB;AAMD,eAAO,MAAM,QAAQ,2DA8DpB,CAAC;AAEF,eAAO,MAAM,MAAM,mCAA2B,CAAC"}
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
export declare const LinkedObject: {
|
|
2
|
-
file: <T extends Amity.FileType = any>(file?: Amity.FilePayload<T> | undefined) => Amity.File<T> | undefined;
|
|
3
2
|
ad: (ad: Amity.InternalAd) => Amity.Ad;
|
|
4
3
|
comment: (comment: Amity.InternalComment<any>) => Amity.Comment<any>;
|
|
5
4
|
post: (post: Amity.InternalPost<any>) => Amity.Post<any>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/utils/linkedObject/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/utils/linkedObject/index.ts"],"names":[],"mappings":"AAuBA,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;CAuBxB,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"postLinkedObject.d.ts","sourceRoot":"","sources":["../../../src/utils/linkedObject/postLinkedObject.ts"],"names":[],"mappings":"AAuBA,eAAO,MAAM,gBAAgB,SAAU,MAAM,YAAY,KAAG,MAAM,
|
|
1
|
+
{"version":3,"file":"postLinkedObject.d.ts","sourceRoot":"","sources":["../../../src/utils/linkedObject/postLinkedObject.ts"],"names":[],"mappings":"AAuBA,eAAO,MAAM,gBAAgB,SAAU,MAAM,YAAY,KAAG,MAAM,IAgLjE,CAAC"}
|
|
@@ -6,4 +6,5 @@ export declare function isAmityPollPost(post: Amity.InternalPost): post is Amity
|
|
|
6
6
|
export declare function isAmityClipPost(post: Amity.InternalPost): post is Amity.Post<'clip'>;
|
|
7
7
|
export declare function isAmityAudioPost(post: Amity.InternalPost): post is Amity.Post<'audio'>;
|
|
8
8
|
export declare function isAmityRoomPost(post: Amity.InternalPost): post is Amity.Post<'room'>;
|
|
9
|
+
export declare function isAmityEventPost(post: Amity.InternalPost): post is Amity.Post<'event'>;
|
|
9
10
|
//# sourceMappingURL=postTypePredicate.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"postTypePredicate.d.ts","sourceRoot":"","sources":["../../src/utils/postTypePredicate.ts"],"names":[],"mappings":"AAAA,wBAAgB,gBAAgB,CAAC,IAAI,EAAE,KAAK,CAAC,YAAY,GAAG,IAAI,IAAI,KAAK,CAAC,IAAI,CAAC,OAAO,CAAC,CAOtF;AAED,wBAAgB,eAAe,CAAC,IAAI,EAAE,KAAK,CAAC,YAAY,GAAG,IAAI,IAAI,KAAK,CAAC,IAAI,CAAC,MAAM,CAAC,CAOpF;AAED,wBAAgB,gBAAgB,CAAC,IAAI,EAAE,KAAK,CAAC,YAAY,GAAG,IAAI,IAAI,KAAK,CAAC,IAAI,CAAC,OAAO,CAAC,CAQtF;AAED,wBAAgB,qBAAqB,CAAC,IAAI,EAAE,KAAK,CAAC,YAAY,GAAG,IAAI,IAAI,KAAK,CAAC,IAAI,CAAC,YAAY,CAAC,CAOhG;AAED,wBAAgB,eAAe,CAAC,IAAI,EAAE,KAAK,CAAC,YAAY,GAAG,IAAI,IAAI,KAAK,CAAC,IAAI,CAAC,MAAM,CAAC,CAOpF;AAED,wBAAgB,eAAe,CAAC,IAAI,EAAE,KAAK,CAAC,YAAY,GAAG,IAAI,IAAI,KAAK,CAAC,IAAI,CAAC,MAAM,CAAC,CAOpF;AAED,wBAAgB,gBAAgB,CAAC,IAAI,EAAE,KAAK,CAAC,YAAY,GAAG,IAAI,IAAI,KAAK,CAAC,IAAI,CAAC,OAAO,CAAC,CAOtF;AAED,wBAAgB,eAAe,CAAC,IAAI,EAAE,KAAK,CAAC,YAAY,GAAG,IAAI,IAAI,KAAK,CAAC,IAAI,CAAC,MAAM,CAAC,CAOpF"}
|
|
1
|
+
{"version":3,"file":"postTypePredicate.d.ts","sourceRoot":"","sources":["../../src/utils/postTypePredicate.ts"],"names":[],"mappings":"AAAA,wBAAgB,gBAAgB,CAAC,IAAI,EAAE,KAAK,CAAC,YAAY,GAAG,IAAI,IAAI,KAAK,CAAC,IAAI,CAAC,OAAO,CAAC,CAOtF;AAED,wBAAgB,eAAe,CAAC,IAAI,EAAE,KAAK,CAAC,YAAY,GAAG,IAAI,IAAI,KAAK,CAAC,IAAI,CAAC,MAAM,CAAC,CAOpF;AAED,wBAAgB,gBAAgB,CAAC,IAAI,EAAE,KAAK,CAAC,YAAY,GAAG,IAAI,IAAI,KAAK,CAAC,IAAI,CAAC,OAAO,CAAC,CAQtF;AAED,wBAAgB,qBAAqB,CAAC,IAAI,EAAE,KAAK,CAAC,YAAY,GAAG,IAAI,IAAI,KAAK,CAAC,IAAI,CAAC,YAAY,CAAC,CAOhG;AAED,wBAAgB,eAAe,CAAC,IAAI,EAAE,KAAK,CAAC,YAAY,GAAG,IAAI,IAAI,KAAK,CAAC,IAAI,CAAC,MAAM,CAAC,CAOpF;AAED,wBAAgB,eAAe,CAAC,IAAI,EAAE,KAAK,CAAC,YAAY,GAAG,IAAI,IAAI,KAAK,CAAC,IAAI,CAAC,MAAM,CAAC,CAOpF;AAED,wBAAgB,gBAAgB,CAAC,IAAI,EAAE,KAAK,CAAC,YAAY,GAAG,IAAI,IAAI,KAAK,CAAC,IAAI,CAAC,OAAO,CAAC,CAOtF;AAED,wBAAgB,eAAe,CAAC,IAAI,EAAE,KAAK,CAAC,YAAY,GAAG,IAAI,IAAI,KAAK,CAAC,IAAI,CAAC,MAAM,CAAC,CAOpF;AAED,wBAAgB,gBAAgB,CAAC,IAAI,EAAE,KAAK,CAAC,YAAY,GAAG,IAAI,IAAI,KAAK,CAAC,IAAI,CAAC,OAAO,CAAC,CAEtF"}
|
|
@@ -24,7 +24,7 @@ export declare const generateComment: (params?: Partial<Amity.InternalComment>)
|
|
|
24
24
|
referenceType: Amity.CommentReferenceType;
|
|
25
25
|
dataType?: any;
|
|
26
26
|
dataTypes?: any[] | undefined;
|
|
27
|
-
data?: string | Record<string, unknown> | Amity.ContentDataText | Amity.ContentDataFile | Amity.ContentDataImage | Amity.ContentDataVideo | Amity.ContentDataAudio | Amity.ContentDataPoll | Amity.ContentDataStream | Amity.ContentDataClip | Amity.ContentDataRoom | undefined;
|
|
27
|
+
data?: string | Record<string, unknown> | Amity.ContentDataText | Amity.ContentDataFile | Amity.ContentDataImage | Amity.ContentDataVideo | Amity.ContentDataAudio | Amity.ContentDataPoll | Amity.ContentDataStream | Amity.ContentDataClip | Amity.ContentDataRoom | Amity.ContentDataEvent | undefined;
|
|
28
28
|
metadata?: Record<string, any> | undefined;
|
|
29
29
|
flagCount: number;
|
|
30
30
|
hashFlag: {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"file.d.ts","sourceRoot":"","sources":["../../../../src/utils/tests/dummy/file.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,MAAM,EAAE,KAAK,CAAC,IAAI,CAAC,OAAO,
|
|
1
|
+
{"version":3,"file":"file.d.ts","sourceRoot":"","sources":["../../../../src/utils/tests/dummy/file.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,MAAM,EAAE,KAAK,CAAC,IAAI,CAAC,OAAO,CAoBtC,CAAC;AAEF,eAAO,MAAM,MAAM,EAAE,KAAK,CAAC,IAAI,CAAC,OAAO,CAgBtC,CAAC;AAEF,eAAO,MAAM,kBAAkB,gBAK9B,CAAC;AAEF,eAAO,MAAM,mBAAmB,gBAI/B,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"post.d.ts","sourceRoot":"","sources":["../../../../src/utils/tests/dummy/post.ts"],"names":[],"mappings":"AAIA,wBAAgB,oBAAoB,CAAC,MAAM,CAAC,EAAE,OAAO,CAAC,KAAK,CAAC,YAAY,CAAC,GAAG,KAAK,CAAC,YAAY,CA+B7F;AAED,wBAAgB,YAAY,CAAC,MAAM,CAAC,EAAE,OAAO,CAAC,KAAK,CAAC,IAAI,CAAC,GAAG,KAAK,CAAC,IAAI,
|
|
1
|
+
{"version":3,"file":"post.d.ts","sourceRoot":"","sources":["../../../../src/utils/tests/dummy/post.ts"],"names":[],"mappings":"AAIA,wBAAgB,oBAAoB,CAAC,MAAM,CAAC,EAAE,OAAO,CAAC,KAAK,CAAC,YAAY,CAAC,GAAG,KAAK,CAAC,YAAY,CA+B7F;AAED,wBAAgB,YAAY,CAAC,MAAM,CAAC,EAAE,OAAO,CAAC,KAAK,CAAC,IAAI,CAAC,GAAG,KAAK,CAAC,IAAI,CA2BrE;AAED,eAAO,MAAM,MAAM,EAAE,KAAK,CAAC,IAAqB,CAAC;AAEjD,eAAO,MAAM,MAAM,EAAE,KAAK,CAAC,IAG1B,CAAC;AAEF,eAAO,MAAM,MAAM,EAAE,KAAK,CAAC,IAG1B,CAAC;AAEF,eAAO,MAAM,MAAM,EAAE,KAAK,CAAC,IAO1B,CAAC;AAEF,eAAO,MAAM,MAAM,EAAE,KAAK,CAAC,IAQ1B,CAAC;AAEF,eAAO,MAAM,MAAM,EAAE,KAAK,CAAC,IAI1B,CAAC;AAEF,eAAO,MAAM,cAAc,EAAE,KAAK,CAAC,YAAqC,CAAC;AAEzE,eAAO,MAAM,cAAc,EAAE,KAAK,CAAC,YAGlC,CAAC;AAEF,eAAO,MAAM,cAAc,EAAE,KAAK,CAAC,YAGlC,CAAC;AAEF,eAAO,MAAM,KAAK;;;;;;CAMjB,CAAC;AAEF,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;CAc5B,CAAC;AAIF,eAAO,MAAM,iBAAiB;;;;;;CAU7B,CAAC;AAEF,eAAO,MAAM,kBAAkB;;;;;;CAU9B,CAAC;AAEF,eAAO,MAAM,sBAAsB;;;;;;CAUlC,CAAC"}
|
package/package.json
CHANGED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"fileLinkedObject.d.ts","sourceRoot":"","sources":["../../../src/utils/linkedObject/fileLinkedObject.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,gBAAgB,wGA6B5B,CAAC"}
|