@amityco/ts-sdk 7.12.1-777202f6.0 → 7.12.1-df30e76f.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.
Files changed (57) hide show
  1. package/dist/@types/core/model.d.ts +2 -0
  2. package/dist/@types/core/model.d.ts.map +1 -1
  3. package/dist/@types/core/payload.d.ts +4 -0
  4. package/dist/@types/core/payload.d.ts.map +1 -1
  5. package/dist/@types/domains/client.d.ts +3 -0
  6. package/dist/@types/domains/client.d.ts.map +1 -1
  7. package/dist/@types/domains/comment.d.ts +0 -1
  8. package/dist/@types/domains/comment.d.ts.map +1 -1
  9. package/dist/@types/domains/post.d.ts +1 -0
  10. package/dist/@types/domains/post.d.ts.map +1 -1
  11. package/dist/@types/domains/product.d.ts +77 -0
  12. package/dist/@types/domains/product.d.ts.map +1 -0
  13. package/dist/@types/index.d.ts +1 -0
  14. package/dist/@types/index.d.ts.map +1 -1
  15. package/dist/client/api/getProductCatalogueSetting.d.ts +15 -0
  16. package/dist/client/api/getProductCatalogueSetting.d.ts.map +1 -0
  17. package/dist/client/api/index.d.ts +1 -0
  18. package/dist/client/api/index.d.ts.map +1 -1
  19. package/dist/commentRepository/api/createComment.d.ts +1 -1
  20. package/dist/commentRepository/api/createComment.d.ts.map +1 -1
  21. package/dist/commentRepository/api/updateComment.d.ts +1 -1
  22. package/dist/commentRepository/api/updateComment.d.ts.map +1 -1
  23. package/dist/core/model/idResolvers.d.ts.map +1 -1
  24. package/dist/core/model/index.d.ts.map +1 -1
  25. package/dist/index.cjs.js +320 -60
  26. package/dist/index.d.ts +1 -0
  27. package/dist/index.d.ts.map +1 -1
  28. package/dist/index.esm.js +297 -38
  29. package/dist/index.umd.js +2 -2
  30. package/dist/postRepository/api/createPost.d.ts +2 -0
  31. package/dist/postRepository/api/createPost.d.ts.map +1 -1
  32. package/dist/postRepository/api/editPost.d.ts +2 -0
  33. package/dist/postRepository/api/editPost.d.ts.map +1 -1
  34. package/dist/productRepository/index.d.ts +2 -0
  35. package/dist/productRepository/index.d.ts.map +1 -0
  36. package/dist/productRepository/internalApi/getProduct.d.ts +5 -0
  37. package/dist/productRepository/internalApi/getProduct.d.ts.map +1 -0
  38. package/dist/productRepository/internalApi/index.d.ts +2 -0
  39. package/dist/productRepository/internalApi/index.d.ts.map +1 -0
  40. package/dist/productRepository/observers/getProduct.d.ts +21 -0
  41. package/dist/productRepository/observers/getProduct.d.ts.map +1 -0
  42. package/dist/productRepository/observers/index.d.ts +3 -0
  43. package/dist/productRepository/observers/index.d.ts.map +1 -0
  44. package/dist/productRepository/observers/searchProducts/LiveCollectionController.d.ts +15 -0
  45. package/dist/productRepository/observers/searchProducts/LiveCollectionController.d.ts.map +1 -0
  46. package/dist/productRepository/observers/searchProducts/PaginationController.d.ts +5 -0
  47. package/dist/productRepository/observers/searchProducts/PaginationController.d.ts.map +1 -0
  48. package/dist/productRepository/observers/searchProducts/QueryStreamController.d.ts +8 -0
  49. package/dist/productRepository/observers/searchProducts/QueryStreamController.d.ts.map +1 -0
  50. package/dist/productRepository/observers/searchProducts.d.ts +25 -0
  51. package/dist/productRepository/observers/searchProducts.d.ts.map +1 -0
  52. package/dist/utils/linkedObject/postLinkedObject.d.ts.map +1 -1
  53. package/dist/utils/linkedObject/productTagLinkedObject.d.ts +2 -0
  54. package/dist/utils/linkedObject/productTagLinkedObject.d.ts.map +1 -0
  55. package/dist/utils/tests/dummy/comment.d.ts +0 -1
  56. package/dist/utils/tests/dummy/comment.d.ts.map +1 -1
  57. package/package.json +1 -1
@@ -24,7 +24,9 @@ export declare const createPost: <T extends string>(bundle: Pick<Amity.Post<T>,
24
24
  attachments?: {
25
25
  type: T;
26
26
  fileId: Amity.File['fileId'];
27
+ productTags?: string[] | undefined;
27
28
  }[] | undefined;
28
29
  links?: Amity.Link[] | undefined;
30
+ productTags?: Amity.ProductTag<"text"> | undefined;
29
31
  }) => Promise<Amity.Cached<Amity.Post>>;
30
32
  //# sourceMappingURL=createPost.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"createPost.d.ts","sourceRoot":"","sources":["../../../src/postRepository/api/createPost.ts"],"names":[],"mappings":"AAUA;;;;;;;;;;;;;;;;;GAiBG;AACH,eAAO,MAAM,UAAU;;;;;;;gBAKgB,UAAU,CAAC,QAAQ,CAAC;;;MAGxD,QAAQ,MAAM,MAAM,CAAC,MAAM,IAAI,CAAC,CAyBlC,CAAC"}
1
+ {"version":3,"file":"createPost.d.ts","sourceRoot":"","sources":["../../../src/postRepository/api/createPost.ts"],"names":[],"mappings":"AAUA;;;;;;;;;;;;;;;;;GAiBG;AACH,eAAO,MAAM,UAAU;;;;;;;gBAKgB,UAAU,CAAC,QAAQ,CAAC;;;;;MAIxD,QAAQ,MAAM,MAAM,CAAC,MAAM,IAAI,CAAC,CA2ClC,CAAC"}
@@ -19,7 +19,9 @@ export declare const editPost: <T extends string>(postId: Amity.Post['postId'],
19
19
  attachments?: {
20
20
  type: T;
21
21
  fileId: Amity.File['fileId'];
22
+ productTags?: string[] | undefined;
22
23
  }[] | undefined;
23
24
  links?: Amity.Link[] | undefined;
25
+ productTags?: Amity.ProductTag<"text"> | undefined;
24
26
  }) => Promise<Amity.Cached<Amity.Post>>;
25
27
  //# sourceMappingURL=editPost.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"editPost.d.ts","sourceRoot":"","sources":["../../../src/postRepository/api/editPost.ts"],"names":[],"mappings":"AAUA;;;;;;;;;;;;;;;;GAgBG;AACH,eAAO,MAAM,QAAQ,6BACX,MAAM,IAAI,CAAC,QAAQ,CAAC;;;gBAIhB,UAAU,CAAC,QAAQ,CAAC;;;MAI/B,QAAQ,MAAM,MAAM,CAAC,MAAM,IAAI,CAAC,CAsBlC,CAAC"}
1
+ {"version":3,"file":"editPost.d.ts","sourceRoot":"","sources":["../../../src/postRepository/api/editPost.ts"],"names":[],"mappings":"AAUA;;;;;;;;;;;;;;;;GAgBG;AACH,eAAO,MAAM,QAAQ,6BACX,MAAM,IAAI,CAAC,QAAQ,CAAC;;;gBAEO,UAAU,CAAC,QAAQ,CAAC;;;;;MAItD,QAAQ,MAAM,MAAM,CAAC,MAAM,IAAI,CAAC,CAwClC,CAAC"}
@@ -0,0 +1,2 @@
1
+ export * from './observers';
2
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/productRepository/index.ts"],"names":[],"mappings":"AAAA,cAAc,aAAa,CAAC"}
@@ -0,0 +1,5 @@
1
+ export declare const getProduct: {
2
+ (productId: Amity.InternalProduct['productId']): Promise<Amity.Cached<Amity.InternalProduct>>;
3
+ locally(productId: Amity.InternalProduct['productId']): Amity.Cached<Amity.InternalProduct> | undefined;
4
+ };
5
+ //# sourceMappingURL=getProduct.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"getProduct.d.ts","sourceRoot":"","sources":["../../../src/productRepository/internalApi/getProduct.ts"],"names":[],"mappings":"AAQA,eAAO,MAAM,UAAU;gBACV,MAAM,eAAe,CAAC,WAAW,CAAC,GAC5C,QAAQ,MAAM,MAAM,CAAC,MAAM,eAAe,CAAC,CAAC;uBAmClC,MAAM,eAAe,CAAC,WAAW,CAAC,GAC5C,MAAM,MAAM,CAAC,MAAM,eAAe,CAAC,GAAG,SAAS;CAJjD,CAAC"}
@@ -0,0 +1,2 @@
1
+ export * from './getProduct';
2
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/productRepository/internalApi/index.ts"],"names":[],"mappings":"AAAA,cAAc,cAAc,CAAC"}
@@ -0,0 +1,21 @@
1
+ /**
2
+ * ```js
3
+ * import { ProductRepository } from '@amityco/ts-sdk';
4
+ *
5
+ * let product;
6
+ *
7
+ * const unsub = ProductRepository.getProduct(productId, response => {
8
+ * product = response.data;
9
+ * });
10
+ * ```
11
+ *
12
+ * Observe all mutation on a given {@link Amity.Product}
13
+ *
14
+ * @param productId the ID of the product to observe
15
+ * @param callback the function to call when new data are available
16
+ * @returns An {@link Amity.Unsubscriber} function to run when willing to stop observing the product
17
+ *
18
+ * @category Product Live Object
19
+ */
20
+ export declare const getProduct: (productId: Amity.Product['productId'], callback: Amity.LiveObjectCallback<Amity.Product>) => Amity.Unsubscriber;
21
+ //# sourceMappingURL=getProduct.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"getProduct.d.ts","sourceRoot":"","sources":["../../../src/productRepository/observers/getProduct.ts"],"names":[],"mappings":"AAMA;;;;;;;;;;;;;;;;;;GAkBG;AACH,eAAO,MAAM,UAAU,cACV,MAAM,OAAO,CAAC,WAAW,CAAC,YAC3B,MAAM,kBAAkB,CAAC,MAAM,OAAO,CAAC,KAChD,MAAM,YAQR,CAAC"}
@@ -0,0 +1,3 @@
1
+ export * from './getProduct';
2
+ export * from './searchProducts';
3
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/productRepository/observers/index.ts"],"names":[],"mappings":"AAAA,cAAc,cAAc,CAAC;AAC7B,cAAc,kBAAkB,CAAC"}
@@ -0,0 +1,15 @@
1
+ import { SearchProductPaginationController } from './PaginationController';
2
+ import { LiveCollectionController } from '~/core/liveCollection/LiveCollectionController';
3
+ export declare class SearchProductLiveCollectionController extends LiveCollectionController<'product', Amity.ProductLiveCollection, Amity.Product, SearchProductPaginationController> {
4
+ private queryStreamController;
5
+ private query;
6
+ constructor(query: Amity.ProductLiveCollection, callback: Amity.LiveCollectionCallback<Amity.Product>);
7
+ protected setup(): void;
8
+ protected persistModel(queryPayload: {
9
+ products: Amity.RawProduct[];
10
+ } & Amity.Pagination): Promise<void>;
11
+ protected persistQueryStream({ response, direction, refresh, }: Amity.LiveCollectionPersistQueryStreamParams<'product'>): void;
12
+ startSubscription(): Amity.Unsubscriber[];
13
+ notifyChange({ origin, loading, error }: Amity.LiveCollectionNotifyParams): void;
14
+ }
15
+ //# sourceMappingURL=LiveCollectionController.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"LiveCollectionController.d.ts","sourceRoot":"","sources":["../../../../src/productRepository/observers/searchProducts/LiveCollectionController.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,iCAAiC,EAAE,MAAM,wBAAwB,CAAC;AAE3E,OAAO,EAAE,wBAAwB,EAAE,MAAM,gDAAgD,CAAC;AAG1F,qBAAa,qCAAsC,SAAQ,wBAAwB,CACjF,SAAS,EACT,KAAK,CAAC,qBAAqB,EAC3B,KAAK,CAAC,OAAO,EACb,iCAAiC,CAClC;IACC,OAAO,CAAC,qBAAqB,CAAqC;IAElE,OAAO,CAAC,KAAK,CAA8B;gBAGzC,KAAK,EAAE,KAAK,CAAC,qBAAqB,EAClC,QAAQ,EAAE,KAAK,CAAC,sBAAsB,CAAC,KAAK,CAAC,OAAO,CAAC;IAmBvD,SAAS,CAAC,KAAK;cAUC,YAAY,CAAC,YAAY,EAAE;QAAE,QAAQ,EAAE,KAAK,CAAC,UAAU,EAAE,CAAA;KAAE,GAAG,KAAK,CAAC,UAAU;IAI9F,SAAS,CAAC,kBAAkB,CAAC,EAC3B,QAAQ,EACR,SAAS,EACT,OAAO,GACR,EAAE,KAAK,CAAC,sCAAsC,CAAC,SAAS,CAAC;IAK1D,iBAAiB;IAIjB,YAAY,CAAC,EAAE,MAAM,EAAE,OAAO,EAAE,KAAK,EAAE,EAAE,KAAK,CAAC,0BAA0B;CAoB1E"}
@@ -0,0 +1,5 @@
1
+ import { PaginationController } from '~/core/liveCollection/PaginationController';
2
+ export declare class SearchProductPaginationController extends PaginationController<'product', Amity.ProductLiveCollection> {
3
+ getRequest(queryParams: Amity.ProductLiveCollection, token: string | undefined): Promise<Amity.ProductPayload & Amity.Pagination>;
4
+ }
5
+ //# sourceMappingURL=PaginationController.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"PaginationController.d.ts","sourceRoot":"","sources":["../../../../src/productRepository/observers/searchProducts/PaginationController.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,oBAAoB,EAAE,MAAM,4CAA4C,CAAC;AAGlF,qBAAa,iCAAkC,SAAQ,oBAAoB,CACzE,SAAS,EACT,KAAK,CAAC,qBAAqB,CAC5B;IACO,UAAU,CAAC,WAAW,EAAE,KAAK,CAAC,qBAAqB,EAAE,KAAK,EAAE,MAAM,GAAG,SAAS;CAerF"}
@@ -0,0 +1,8 @@
1
+ import { QueryStreamController } from '~/core/liveCollection/QueryStreamController';
2
+ export declare class SearchProductQueryStreamController extends QueryStreamController<Amity.ProductPayload, Amity.ProductLiveCollection> {
3
+ private notifyChange;
4
+ constructor(query: Amity.ProductLiveCollection, cacheKey: string[], notifyChange: (params: Amity.LiveCollectionNotifyParams) => void);
5
+ saveToMainDB(response: Amity.ProductPayload): void;
6
+ appendToQueryStream(response: Amity.ProductPayload & Partial<Amity.Pagination>, direction: Amity.LiveCollectionPageDirection, refresh?: boolean): void;
7
+ }
8
+ //# sourceMappingURL=QueryStreamController.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"QueryStreamController.d.ts","sourceRoot":"","sources":["../../../../src/productRepository/observers/searchProducts/QueryStreamController.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,qBAAqB,EAAE,MAAM,6CAA6C,CAAC;AAMpF,qBAAa,kCAAmC,SAAQ,qBAAqB,CAC3E,KAAK,CAAC,cAAc,EACpB,KAAK,CAAC,qBAAqB,CAC5B;IACC,OAAO,CAAC,YAAY,CAAqD;gBAGvE,KAAK,EAAE,KAAK,CAAC,qBAAqB,EAClC,QAAQ,EAAE,MAAM,EAAE,EAClB,YAAY,EAAE,CAAC,MAAM,EAAE,KAAK,CAAC,0BAA0B,KAAK,IAAI;IAOlE,YAAY,CAAC,QAAQ,EAAE,KAAK,CAAC,cAAc;IAS3C,mBAAmB,CACjB,QAAQ,EAAE,KAAK,CAAC,cAAc,GAAG,OAAO,CAAC,KAAK,CAAC,UAAU,CAAC,EAC1D,SAAS,EAAE,KAAK,CAAC,2BAA2B,EAC5C,OAAO,UAAQ;CAiBlB"}
@@ -0,0 +1,25 @@
1
+ /**
2
+ * ```js
3
+ * import { ProductRepository } from '@amityco/ts-sdk'
4
+ *
5
+ * let products = []
6
+ * const unsub = ProductRepository.searchProducts({
7
+ * keyword: string,
8
+ * }, response => merge(products, response.data))
9
+ * ```
10
+ *
11
+ * Observe all mutations on a list of {@link Amity.Product}
12
+ *
13
+ * @param params.keyword the search keyword
14
+ * @param params.isActive filter by active status
15
+ * @param params.isDeleted filter by deleted status
16
+ * @param params.sortBy sort option
17
+ * @param params.sortOrder order option
18
+ * @param callback the function to call when new data are available
19
+ * @param config
20
+ * @returns An {@link Amity.Unsubscriber} function to run when willing to stop observing the products
21
+ *
22
+ * @category Products Live Collection
23
+ */
24
+ export declare const searchProducts: (params: Amity.ProductLiveCollection, callback: Amity.LiveCollectionCallback<Amity.Product>, config?: Amity.LiveCollectionConfig) => Amity.Unsubscriber;
25
+ //# sourceMappingURL=searchProducts.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"searchProducts.d.ts","sourceRoot":"","sources":["../../../src/productRepository/observers/searchProducts.ts"],"names":[],"mappings":"AASA;;;;;;;;;;;;;;;;;;;;;;GAsBG;AACH,eAAO,MAAM,cAAc,WACjB,MAAM,qBAAqB,YACzB,MAAM,sBAAsB,CAAC,MAAM,OAAO,CAAC,WAC5C,MAAM,oBAAoB,KAClC,MAAM,YAqBR,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"postLinkedObject.d.ts","sourceRoot":"","sources":["../../../src/utils/linkedObject/postLinkedObject.ts"],"names":[],"mappings":"AAoBA,eAAO,MAAM,gBAAgB,SAAU,MAAM,YAAY,KAAG,MAAM,IA+GjE,CAAC"}
1
+ {"version":3,"file":"postLinkedObject.d.ts","sourceRoot":"","sources":["../../../src/utils/linkedObject/postLinkedObject.ts"],"names":[],"mappings":"AAqBA,eAAO,MAAM,gBAAgB,SAAU,MAAM,YAAY,KAAG,MAAM,IAmHjE,CAAC"}
@@ -0,0 +1,2 @@
1
+ export declare const productTagLinkedObject: (productTag: Amity.InternalProductTag) => Amity.ProductTag;
2
+ //# sourceMappingURL=productTagLinkedObject.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"productTagLinkedObject.d.ts","sourceRoot":"","sources":["../../../src/utils/linkedObject/productTagLinkedObject.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,sBAAsB,eAAgB,MAAM,kBAAkB,KAAG,MAAM,UAKnF,CAAC"}
@@ -19,7 +19,6 @@ export declare const generateComment: (params?: Partial<Amity.InternalComment>)
19
19
  attachments?: Amity.Attachment[] | undefined;
20
20
  targetId: string;
21
21
  targetType: "user" | "community" | "content";
22
- links?: Amity.Link[] | undefined;
23
22
  referenceId: string;
24
23
  referenceType: Amity.CommentReferenceType;
25
24
  dataType?: any;
@@ -1 +1 @@
1
- {"version":3,"file":"comment.d.ts","sourceRoot":"","sources":["../../../../src/utils/tests/dummy/comment.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,yBAAyB,CAAC;AAMxD,wBAAgB,uBAAuB,CACrC,MAAM,CAAC,EAAE,OAAO,CAAC,KAAK,CAAC,eAAe,CAAC,GACtC,KAAK,CAAC,eAAe,CA+BvB;AAED,eAAO,MAAM,eAAe,YAAa,QAAQ,MAAM,eAAe,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAYtE,CAAC;AAEF,eAAO,MAAM,SAAS,EAAE,KAAK,CAAC,eAAmC,CAAC;AAElE,eAAO,MAAM,cAAc,EAAE,KAAK,CAAC,eASjC,CAAC;AAEH,eAAO,MAAM,kBAAkB,EAAE,KAAK,CAAC,eASrC,CAAC;AAEH,eAAO,MAAM,oBAAoB,EAAE,KAAK,CAAC,eAOvC,CAAC;AAEH,eAAO,MAAM,SAAS,EAAE,KAAK,CAAC,eAG5B,CAAC;AAEH,eAAO,MAAM,cAAc,EAAE,KAAK,CAAC,eAGjC,CAAC;AAEH,eAAO,MAAM,kBAAkB,EAAE,KAAK,CAAC,eAGrC,CAAC;AAEH,eAAO,MAAM,kBAAkB,EAAE,KAAK,CAAC,cAMtC,CAAC;AAEF,eAAO,MAAM,gBAAgB,EAAE,KAAK,CAAC,cAMpC,CAAC;AAEF,eAAO,MAAM,mBAAmB,EAAE,KAAK,CAAC,cAMvC,CAAC;AAEF,eAAO,MAAM,uBAAuB,EAAE,KAAK,CAAC,cAM3C,CAAC;AAEF,eAAO,MAAM,yBAAyB,EAAE,KAAK,CAAC,cAM7C,CAAC;AAEF,eAAO,MAAM,WAAW,EAAE,KAAK,CAAC,oBAU/B,CAAC;AAEF,eAAO,MAAM,+BAA+B,EAAE,KAAK,CAAC,cAMnD,CAAC;AAEF,eAAO,MAAM,qBAAqB,EAAE,KAAK,CAAC,cAmBzC,CAAC;AAGF,eAAO,MAAM,mBAAmB;;;;;;;;;CAO/B,CAAC;AAEF,eAAO,MAAM,oBAAoB;;;;;;;;;CAOhC,CAAC;AAEF,eAAO,MAAM,wBAAwB;;;;;;;;;CAOpC,CAAC;AAEF,eAAO,MAAM,0BAA0B;;;;;;;;;CAOtC,CAAC;AAEF,eAAO,MAAM,2BAA2B;;;;;;;;;CAOvC,CAAC;AAEF,eAAO,MAAM,sBAAsB;;;;;;;;;CAOlC,CAAC;AAGF,eAAO,MAAM,yBAAyB,EAAE,UAAU,CAAC,OAAO,aAAa,CAAC,CAAC,CAAC,CAMzE,CAAC;AAEF,eAAO,MAAM,iCAAiC,EAAE,UAAU,CAAC,OAAO,aAAa,CAAC,CAAC,CAAC,CAOjF,CAAC;AAEF,eAAO,MAAM,0BAA0B,EAAE,UAAU,CAAC,OAAO,aAAa,CAAC,CAAC,CAAC,CAS1E,CAAC;AAEF,eAAO,MAAM,8BAA8B,EAAE,UAAU,CAAC,OAAO,aAAa,CAAC,CAAC,CAAC,CAY9E,CAAC;AAEF,eAAO,MAAM,oCAAoC,EAAE,UAAU,CAAC,OAAO,aAAa,CAAC,CAAC,CAAC,CAYpF,CAAC"}
1
+ {"version":3,"file":"comment.d.ts","sourceRoot":"","sources":["../../../../src/utils/tests/dummy/comment.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,yBAAyB,CAAC;AAMxD,wBAAgB,uBAAuB,CACrC,MAAM,CAAC,EAAE,OAAO,CAAC,KAAK,CAAC,eAAe,CAAC,GACtC,KAAK,CAAC,eAAe,CA+BvB;AAED,eAAO,MAAM,eAAe,YAAa,QAAQ,MAAM,eAAe,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAYtE,CAAC;AAEF,eAAO,MAAM,SAAS,EAAE,KAAK,CAAC,eAAmC,CAAC;AAElE,eAAO,MAAM,cAAc,EAAE,KAAK,CAAC,eASjC,CAAC;AAEH,eAAO,MAAM,kBAAkB,EAAE,KAAK,CAAC,eASrC,CAAC;AAEH,eAAO,MAAM,oBAAoB,EAAE,KAAK,CAAC,eAOvC,CAAC;AAEH,eAAO,MAAM,SAAS,EAAE,KAAK,CAAC,eAG5B,CAAC;AAEH,eAAO,MAAM,cAAc,EAAE,KAAK,CAAC,eAGjC,CAAC;AAEH,eAAO,MAAM,kBAAkB,EAAE,KAAK,CAAC,eAGrC,CAAC;AAEH,eAAO,MAAM,kBAAkB,EAAE,KAAK,CAAC,cAMtC,CAAC;AAEF,eAAO,MAAM,gBAAgB,EAAE,KAAK,CAAC,cAMpC,CAAC;AAEF,eAAO,MAAM,mBAAmB,EAAE,KAAK,CAAC,cAMvC,CAAC;AAEF,eAAO,MAAM,uBAAuB,EAAE,KAAK,CAAC,cAM3C,CAAC;AAEF,eAAO,MAAM,yBAAyB,EAAE,KAAK,CAAC,cAM7C,CAAC;AAEF,eAAO,MAAM,WAAW,EAAE,KAAK,CAAC,oBAU/B,CAAC;AAEF,eAAO,MAAM,+BAA+B,EAAE,KAAK,CAAC,cAMnD,CAAC;AAEF,eAAO,MAAM,qBAAqB,EAAE,KAAK,CAAC,cAmBzC,CAAC;AAGF,eAAO,MAAM,mBAAmB;;;;;;;;;CAO/B,CAAC;AAEF,eAAO,MAAM,oBAAoB;;;;;;;;;CAOhC,CAAC;AAEF,eAAO,MAAM,wBAAwB;;;;;;;;;CAOpC,CAAC;AAEF,eAAO,MAAM,0BAA0B;;;;;;;;;CAOtC,CAAC;AAEF,eAAO,MAAM,2BAA2B;;;;;;;;;CAOvC,CAAC;AAEF,eAAO,MAAM,sBAAsB;;;;;;;;;CAOlC,CAAC;AAGF,eAAO,MAAM,yBAAyB,EAAE,UAAU,CAAC,OAAO,aAAa,CAAC,CAAC,CAAC,CAMzE,CAAC;AAEF,eAAO,MAAM,iCAAiC,EAAE,UAAU,CAAC,OAAO,aAAa,CAAC,CAAC,CAAC,CAOjF,CAAC;AAEF,eAAO,MAAM,0BAA0B,EAAE,UAAU,CAAC,OAAO,aAAa,CAAC,CAAC,CAAC,CAS1E,CAAC;AAEF,eAAO,MAAM,8BAA8B,EAAE,UAAU,CAAC,OAAO,aAAa,CAAC,CAAC,CAAC,CAY9E,CAAC;AAEF,eAAO,MAAM,oCAAoC,EAAE,UAAU,CAAC,OAAO,aAAa,CAAC,CAAC,CAAC,CAYpF,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@amityco/ts-sdk",
3
- "version": "7.12.1-777202f6.0",
3
+ "version": "7.12.1-df30e76f.0",
4
4
  "license": "CC-BY-ND-4.0",
5
5
  "author": "amity.co <developers@amity.co> (https://amity.co)",
6
6
  "description": "Amity Social Cloud Typescript SDK",