@congminh1254/shopee-sdk 0.6.0 → 0.7.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/lib/managers/account-health.manager.d.ts +208 -0
- package/lib/managers/account-health.manager.js +257 -0
- package/lib/managers/account-health.manager.js.map +1 -0
- package/lib/managers/index.d.ts +1 -0
- package/lib/managers/index.js +1 -0
- package/lib/managers/index.js.map +1 -1
- package/lib/schemas/account-health.d.ts +734 -0
- package/lib/schemas/account-health.js +200 -0
- package/lib/schemas/account-health.js.map +1 -0
- package/lib/schemas/index.d.ts +1 -0
- package/lib/schemas/index.js +1 -0
- package/lib/schemas/index.js.map +1 -1
- package/lib/sdk.d.ts +2 -0
- package/lib/sdk.js +2 -0
- package/lib/sdk.js.map +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,200 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Metric type enum values
|
|
3
|
+
* 1 = Fulfillment Performance
|
|
4
|
+
* 2 = Listing Performance
|
|
5
|
+
* 3 = Customer Service Performance
|
|
6
|
+
*/
|
|
7
|
+
export var MetricType;
|
|
8
|
+
(function (MetricType) {
|
|
9
|
+
MetricType[MetricType["FulfillmentPerformance"] = 1] = "FulfillmentPerformance";
|
|
10
|
+
MetricType[MetricType["ListingPerformance"] = 2] = "ListingPerformance";
|
|
11
|
+
MetricType[MetricType["CustomerServicePerformance"] = 3] = "CustomerServicePerformance";
|
|
12
|
+
})(MetricType || (MetricType = {}));
|
|
13
|
+
/**
|
|
14
|
+
* Metric unit enum values
|
|
15
|
+
* 1 = Number
|
|
16
|
+
* 2 = Percentage
|
|
17
|
+
* 3 = Second
|
|
18
|
+
* 4 = Day
|
|
19
|
+
* 5 = Hour
|
|
20
|
+
*/
|
|
21
|
+
export var MetricUnit;
|
|
22
|
+
(function (MetricUnit) {
|
|
23
|
+
MetricUnit[MetricUnit["Number"] = 1] = "Number";
|
|
24
|
+
MetricUnit[MetricUnit["Percentage"] = 2] = "Percentage";
|
|
25
|
+
MetricUnit[MetricUnit["Second"] = 3] = "Second";
|
|
26
|
+
MetricUnit[MetricUnit["Day"] = 4] = "Day";
|
|
27
|
+
MetricUnit[MetricUnit["Hour"] = 5] = "Hour";
|
|
28
|
+
})(MetricUnit || (MetricUnit = {}));
|
|
29
|
+
/**
|
|
30
|
+
* Overall performance rating enum values
|
|
31
|
+
* 1 = Poor
|
|
32
|
+
* 2 = ImprovementNeeded
|
|
33
|
+
* 3 = Good
|
|
34
|
+
* 4 = Excellent
|
|
35
|
+
*/
|
|
36
|
+
export var PerformanceRating;
|
|
37
|
+
(function (PerformanceRating) {
|
|
38
|
+
PerformanceRating[PerformanceRating["Poor"] = 1] = "Poor";
|
|
39
|
+
PerformanceRating[PerformanceRating["ImprovementNeeded"] = 2] = "ImprovementNeeded";
|
|
40
|
+
PerformanceRating[PerformanceRating["Good"] = 3] = "Good";
|
|
41
|
+
PerformanceRating[PerformanceRating["Excellent"] = 4] = "Excellent";
|
|
42
|
+
})(PerformanceRating || (PerformanceRating = {}));
|
|
43
|
+
/**
|
|
44
|
+
* Violation types that can be used to filter penalty point history
|
|
45
|
+
* These values correspond to different violation categories that might result in penalty points.
|
|
46
|
+
* For a complete list, refer to the Shopee API documentation.
|
|
47
|
+
*/
|
|
48
|
+
export var ViolationType;
|
|
49
|
+
(function (ViolationType) {
|
|
50
|
+
ViolationType[ViolationType["HighLateShipmentRate"] = 5] = "HighLateShipmentRate";
|
|
51
|
+
ViolationType[ViolationType["HighNonFulfillmentRate"] = 6] = "HighNonFulfillmentRate";
|
|
52
|
+
ViolationType[ViolationType["HighNumberOfNonFulfilledOrders"] = 7] = "HighNumberOfNonFulfilledOrders";
|
|
53
|
+
ViolationType[ViolationType["HighNumberOfLateShippedOrders"] = 8] = "HighNumberOfLateShippedOrders";
|
|
54
|
+
ViolationType[ViolationType["ProhibitedListings"] = 9] = "ProhibitedListings";
|
|
55
|
+
ViolationType[ViolationType["CounterfeitIPInfringement"] = 10] = "CounterfeitIPInfringement";
|
|
56
|
+
ViolationType[ViolationType["Spam"] = 11] = "Spam";
|
|
57
|
+
ViolationType[ViolationType["CopyStealImages"] = 12] = "CopyStealImages";
|
|
58
|
+
ViolationType[ViolationType["ReUploadingDeletedListings"] = 13] = "ReUploadingDeletedListings";
|
|
59
|
+
ViolationType[ViolationType["BoughtCounterfeitFromMall"] = 14] = "BoughtCounterfeitFromMall";
|
|
60
|
+
ViolationType[ViolationType["CounterfeitCaughtByShopee"] = 15] = "CounterfeitCaughtByShopee";
|
|
61
|
+
ViolationType[ViolationType["HighPercentageOfPreOrderListings"] = 16] = "HighPercentageOfPreOrderListings";
|
|
62
|
+
ViolationType[ViolationType["ConfirmedFraudAttempts"] = 17] = "ConfirmedFraudAttempts";
|
|
63
|
+
ViolationType[ViolationType["ConfirmedFraudAttemptsWithVouchers"] = 18] = "ConfirmedFraudAttemptsWithVouchers";
|
|
64
|
+
ViolationType[ViolationType["FakeReturnAddress"] = 19] = "FakeReturnAddress";
|
|
65
|
+
ViolationType[ViolationType["ShippingFraudAbuse"] = 20] = "ShippingFraudAbuse";
|
|
66
|
+
ViolationType[ViolationType["HighNonRespondedChat"] = 21] = "HighNonRespondedChat";
|
|
67
|
+
ViolationType[ViolationType["RudeChatReplies"] = 22] = "RudeChatReplies";
|
|
68
|
+
ViolationType[ViolationType["RequestBuyerToCancel"] = 23] = "RequestBuyerToCancel";
|
|
69
|
+
ViolationType[ViolationType["RudeReplyToBuyerReview"] = 24] = "RudeReplyToBuyerReview";
|
|
70
|
+
ViolationType[ViolationType["ViolateReturnRefundPolicy"] = 25] = "ViolateReturnRefundPolicy";
|
|
71
|
+
ViolationType[ViolationType["TierReason"] = 101] = "TierReason";
|
|
72
|
+
ViolationType[ViolationType["MisuseOfShopeesIP"] = 3026] = "MisuseOfShopeesIP";
|
|
73
|
+
ViolationType[ViolationType["ViolateShopNameRegulations"] = 3028] = "ViolateShopNameRegulations";
|
|
74
|
+
ViolationType[ViolationType["DirectTransactionsOutsidePlatform"] = 3030] = "DirectTransactionsOutsidePlatform";
|
|
75
|
+
ViolationType[ViolationType["ShippingEmptyIncompleteParcels"] = 3032] = "ShippingEmptyIncompleteParcels";
|
|
76
|
+
ViolationType[ViolationType["SevereViolationsOnShopeeFeed"] = 3034] = "SevereViolationsOnShopeeFeed";
|
|
77
|
+
ViolationType[ViolationType["SevereViolationsOnShopeeLIVE"] = 3036] = "SevereViolationsOnShopeeLIVE";
|
|
78
|
+
ViolationType[ViolationType["MisuseOfLocalVendorTag"] = 3038] = "MisuseOfLocalVendorTag";
|
|
79
|
+
ViolationType[ViolationType["MisleadingShopTagInListingImage"] = 3040] = "MisleadingShopTagInListingImage";
|
|
80
|
+
ViolationType[ViolationType["CounterfeitIPInfringementTest"] = 3042] = "CounterfeitIPInfringementTest";
|
|
81
|
+
ViolationType[ViolationType["RepeatOffenderIPInfringement"] = 3044] = "RepeatOffenderIPInfringement";
|
|
82
|
+
ViolationType[ViolationType["ViolationOfLiveAnimalsSelling"] = 3046] = "ViolationOfLiveAnimalsSelling";
|
|
83
|
+
ViolationType[ViolationType["ChatSpam"] = 3048] = "ChatSpam";
|
|
84
|
+
ViolationType[ViolationType["HighOverseasReturnRefundsRate"] = 3050] = "HighOverseasReturnRefundsRate";
|
|
85
|
+
ViolationType[ViolationType["PrivacyBreachInBuyerReply"] = 3052] = "PrivacyBreachInBuyerReply";
|
|
86
|
+
ViolationType[ViolationType["OrderBrushing"] = 3054] = "OrderBrushing";
|
|
87
|
+
ViolationType[ViolationType["PornImage"] = 3056] = "PornImage";
|
|
88
|
+
ViolationType[ViolationType["IncorrectProductCategories"] = 3058] = "IncorrectProductCategories";
|
|
89
|
+
ViolationType[ViolationType["ExtremelyHighNonFulfillmentRate"] = 3060] = "ExtremelyHighNonFulfillmentRate";
|
|
90
|
+
ViolationType[ViolationType["AMSOverdueInvoicePayment"] = 3062] = "AMSOverdueInvoicePayment";
|
|
91
|
+
ViolationType[ViolationType["GovernmentRelatedListing"] = 3064] = "GovernmentRelatedListing";
|
|
92
|
+
ViolationType[ViolationType["ListingInvalidGiftedItems"] = 3066] = "ListingInvalidGiftedItems";
|
|
93
|
+
ViolationType[ViolationType["HighNonFulfillmentRateNDD"] = 3068] = "HighNonFulfillmentRateNDD";
|
|
94
|
+
ViolationType[ViolationType["HighLateShipmentRateNDD"] = 3070] = "HighLateShipmentRateNDD";
|
|
95
|
+
ViolationType[ViolationType["OPFRViolationValue"] = 3072] = "OPFRViolationValue";
|
|
96
|
+
ViolationType[ViolationType["DirectTransactionsOutsidePlatformViaChat"] = 3074] = "DirectTransactionsOutsidePlatformViaChat";
|
|
97
|
+
ViolationType[ViolationType["ProhibitedListingsExtreme"] = 3090] = "ProhibitedListingsExtreme";
|
|
98
|
+
ViolationType[ViolationType["ProhibitedListingsHigh"] = 3091] = "ProhibitedListingsHigh";
|
|
99
|
+
ViolationType[ViolationType["ProhibitedListingsMid"] = 3092] = "ProhibitedListingsMid";
|
|
100
|
+
ViolationType[ViolationType["ProhibitedListingsLow"] = 3093] = "ProhibitedListingsLow";
|
|
101
|
+
ViolationType[ViolationType["CounterfeitListingsExtreme"] = 3094] = "CounterfeitListingsExtreme";
|
|
102
|
+
ViolationType[ViolationType["CounterfeitListingsHigh"] = 3095] = "CounterfeitListingsHigh";
|
|
103
|
+
ViolationType[ViolationType["CounterfeitListingsMid"] = 3096] = "CounterfeitListingsMid";
|
|
104
|
+
ViolationType[ViolationType["CounterfeitListingsLow"] = 3097] = "CounterfeitListingsLow";
|
|
105
|
+
ViolationType[ViolationType["SpamListingsExtreme"] = 3098] = "SpamListingsExtreme";
|
|
106
|
+
ViolationType[ViolationType["SpamListingsHigh"] = 3099] = "SpamListingsHigh";
|
|
107
|
+
ViolationType[ViolationType["SpamListingsMid"] = 3100] = "SpamListingsMid";
|
|
108
|
+
ViolationType[ViolationType["SpamListingsLow"] = 3101] = "SpamListingsLow";
|
|
109
|
+
ViolationType[ViolationType["ReturnRefundRateNonIntegrated"] = 3145] = "ReturnRefundRateNonIntegrated";
|
|
110
|
+
ViolationType[ViolationType["PoorProductQuality"] = 4130] = "PoorProductQuality";
|
|
111
|
+
})(ViolationType || (ViolationType = {}));
|
|
112
|
+
/**
|
|
113
|
+
* Status of punishment records
|
|
114
|
+
*/
|
|
115
|
+
export var PunishmentStatus;
|
|
116
|
+
(function (PunishmentStatus) {
|
|
117
|
+
/** Ongoing punishments */
|
|
118
|
+
PunishmentStatus[PunishmentStatus["Ongoing"] = 1] = "Ongoing";
|
|
119
|
+
/** Ended punishments */
|
|
120
|
+
PunishmentStatus[PunishmentStatus["Ended"] = 2] = "Ended";
|
|
121
|
+
})(PunishmentStatus || (PunishmentStatus = {}));
|
|
122
|
+
/**
|
|
123
|
+
* Types of shop punishments
|
|
124
|
+
*/
|
|
125
|
+
export var PunishmentType;
|
|
126
|
+
(function (PunishmentType) {
|
|
127
|
+
/** Listings not displayed in category browsing */
|
|
128
|
+
PunishmentType[PunishmentType["ListingsNotDisplayedInCategoryBrowsing"] = 103] = "ListingsNotDisplayedInCategoryBrowsing";
|
|
129
|
+
/** Listings not displayed in search */
|
|
130
|
+
PunishmentType[PunishmentType["ListingsNotDisplayedInSearch"] = 104] = "ListingsNotDisplayedInSearch";
|
|
131
|
+
/** Unable to create new listings */
|
|
132
|
+
PunishmentType[PunishmentType["UnableToCreateNewListings"] = 105] = "UnableToCreateNewListings";
|
|
133
|
+
/** Unable to edit listings */
|
|
134
|
+
PunishmentType[PunishmentType["UnableToEditListings"] = 106] = "UnableToEditListings";
|
|
135
|
+
/** Unable to join marketing campaigns */
|
|
136
|
+
PunishmentType[PunishmentType["UnableToJoinMarketingCampaigns"] = 107] = "UnableToJoinMarketingCampaigns";
|
|
137
|
+
/** No shipping subsidies */
|
|
138
|
+
PunishmentType[PunishmentType["NoShippingSubsidies"] = 108] = "NoShippingSubsidies";
|
|
139
|
+
/** Account is suspended */
|
|
140
|
+
PunishmentType[PunishmentType["AccountSuspended"] = 109] = "AccountSuspended";
|
|
141
|
+
/** Listings not displayed in search (alternative code) */
|
|
142
|
+
PunishmentType[PunishmentType["ListingsNotDisplayedInSearchAlt"] = 600] = "ListingsNotDisplayedInSearchAlt";
|
|
143
|
+
/** Shop listings hide from recommendation */
|
|
144
|
+
PunishmentType[PunishmentType["ShopListingsHideFromRecommendation"] = 601] = "ShopListingsHideFromRecommendation";
|
|
145
|
+
/** Listings not displayed in category browsing (alternative code) */
|
|
146
|
+
PunishmentType[PunishmentType["ListingsNotDisplayedInCategoryBrowsingAlt"] = 602] = "ListingsNotDisplayedInCategoryBrowsingAlt";
|
|
147
|
+
/** Listing Limit is reduced (Tier 1) */
|
|
148
|
+
PunishmentType[PunishmentType["ListingLimitReducedTier1"] = 1109] = "ListingLimitReducedTier1";
|
|
149
|
+
/** Listing Limit is reduced (Tier 2) */
|
|
150
|
+
PunishmentType[PunishmentType["ListingLimitReducedTier2"] = 1110] = "ListingLimitReducedTier2";
|
|
151
|
+
/** Listing Limit is reduced (POL) */
|
|
152
|
+
PunishmentType[PunishmentType["ListingLimitReducedPOL"] = 1111] = "ListingLimitReducedPOL";
|
|
153
|
+
/** Listing Limit is reduced (additional code) */
|
|
154
|
+
PunishmentType[PunishmentType["ListingLimitReducedExtra"] = 1112] = "ListingLimitReducedExtra";
|
|
155
|
+
/** Order Limit */
|
|
156
|
+
PunishmentType[PunishmentType["OrderLimit"] = 2008] = "OrderLimit";
|
|
157
|
+
})(PunishmentType || (PunishmentType = {}));
|
|
158
|
+
/**
|
|
159
|
+
* Reasons for shop punishments
|
|
160
|
+
*/
|
|
161
|
+
export var PunishmentReason;
|
|
162
|
+
(function (PunishmentReason) {
|
|
163
|
+
/** Tier 1 punishment */
|
|
164
|
+
PunishmentReason[PunishmentReason["Tier1"] = 1] = "Tier1";
|
|
165
|
+
/** Tier 2 punishment */
|
|
166
|
+
PunishmentReason[PunishmentReason["Tier2"] = 2] = "Tier2";
|
|
167
|
+
/** Tier 3 punishment */
|
|
168
|
+
PunishmentReason[PunishmentReason["Tier3"] = 3] = "Tier3";
|
|
169
|
+
/** Tier 4 punishment */
|
|
170
|
+
PunishmentReason[PunishmentReason["Tier4"] = 4] = "Tier4";
|
|
171
|
+
/** Tier 5 punishment */
|
|
172
|
+
PunishmentReason[PunishmentReason["Tier5"] = 5] = "Tier5";
|
|
173
|
+
/** Listing Limit Tier 1 */
|
|
174
|
+
PunishmentReason[PunishmentReason["ListingLimitTier1"] = 1109] = "ListingLimitTier1";
|
|
175
|
+
/** Listing Limit Tier 2 */
|
|
176
|
+
PunishmentReason[PunishmentReason["ListingLimitTier2"] = 1110] = "ListingLimitTier2";
|
|
177
|
+
/** Listing Limit POL */
|
|
178
|
+
PunishmentReason[PunishmentReason["ListingLimitPOL"] = 1111] = "ListingLimitPOL";
|
|
179
|
+
})(PunishmentReason || (PunishmentReason = {}));
|
|
180
|
+
/**
|
|
181
|
+
* Reason types for listing issues
|
|
182
|
+
*/
|
|
183
|
+
export var ListingIssueReason;
|
|
184
|
+
(function (ListingIssueReason) {
|
|
185
|
+
/** Prohibited listing */
|
|
186
|
+
ListingIssueReason[ListingIssueReason["Prohibited"] = 1] = "Prohibited";
|
|
187
|
+
/** Counterfeit listing */
|
|
188
|
+
ListingIssueReason[ListingIssueReason["Counterfeit"] = 2] = "Counterfeit";
|
|
189
|
+
/** Spam listing */
|
|
190
|
+
ListingIssueReason[ListingIssueReason["Spam"] = 3] = "Spam";
|
|
191
|
+
/** Inappropriate image */
|
|
192
|
+
ListingIssueReason[ListingIssueReason["InappropriateImage"] = 4] = "InappropriateImage";
|
|
193
|
+
/** Insufficient information */
|
|
194
|
+
ListingIssueReason[ListingIssueReason["InsufficientInfo"] = 5] = "InsufficientInfo";
|
|
195
|
+
/** Mall listing improvement needed */
|
|
196
|
+
ListingIssueReason[ListingIssueReason["MallListingImprovement"] = 6] = "MallListingImprovement";
|
|
197
|
+
/** Other listing improvement needed */
|
|
198
|
+
ListingIssueReason[ListingIssueReason["OtherListingImprovement"] = 7] = "OtherListingImprovement";
|
|
199
|
+
})(ListingIssueReason || (ListingIssueReason = {}));
|
|
200
|
+
//# sourceMappingURL=account-health.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"account-health.js","sourceRoot":"","sources":["../../src/schemas/account-health.ts"],"names":[],"mappings":"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"}
|
package/lib/schemas/index.d.ts
CHANGED
package/lib/schemas/index.js
CHANGED
package/lib/schemas/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/schemas/index.ts"],"names":[],"mappings":"AAAA,cAAc,mBAAmB,CAAC;AAClC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,sBAAsB,CAAC;AACrC,cAAc,kBAAkB,CAAC;AACjC,cAAc,eAAe,CAAC;AAC9B,cAAc,YAAY,CAAC;AAC3B,cAAc,YAAY,CAAC;AAC3B,cAAc,cAAc,CAAC;AAC7B,cAAc,aAAa,CAAC;AAC5B,cAAc,WAAW,CAAC;AAC1B,cAAc,aAAa,CAAC;AAC5B,cAAc,UAAU,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/schemas/index.ts"],"names":[],"mappings":"AAAA,cAAc,mBAAmB,CAAC;AAClC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,sBAAsB,CAAC;AACrC,cAAc,kBAAkB,CAAC;AACjC,cAAc,eAAe,CAAC;AAC9B,cAAc,YAAY,CAAC;AAC3B,cAAc,YAAY,CAAC;AAC3B,cAAc,cAAc,CAAC;AAC7B,cAAc,aAAa,CAAC;AAC5B,cAAc,WAAW,CAAC;AAC1B,cAAc,aAAa,CAAC;AAC5B,cAAc,UAAU,CAAC;AACzB,cAAc,qBAAqB,CAAC"}
|
package/lib/sdk.d.ts
CHANGED
|
@@ -10,6 +10,7 @@ import { PaymentManager } from "./managers/payment.manager.js";
|
|
|
10
10
|
import { LogisticsManager } from "./managers/logistics.manager.js";
|
|
11
11
|
import { VoucherManager } from "./managers/voucher.manager.js";
|
|
12
12
|
import { AdsManager } from "./managers/ads.manager.js";
|
|
13
|
+
import { AccountHealthManager } from "./managers/account-health.manager.js";
|
|
13
14
|
export interface ShopeeConfig {
|
|
14
15
|
partner_id: number;
|
|
15
16
|
partner_key: string;
|
|
@@ -30,6 +31,7 @@ export declare class ShopeeSDK {
|
|
|
30
31
|
readonly payment: PaymentManager;
|
|
31
32
|
readonly logistics: LogisticsManager;
|
|
32
33
|
readonly voucher: VoucherManager;
|
|
34
|
+
readonly accountHealth: AccountHealthManager;
|
|
33
35
|
constructor(config: ShopeeConfig, tokenStorage?: TokenStorage);
|
|
34
36
|
getConfig(): ShopeeConfig;
|
|
35
37
|
setRegion(region: ShopeeRegion): void;
|
package/lib/sdk.js
CHANGED
|
@@ -11,6 +11,7 @@ import { PaymentManager } from "./managers/payment.manager.js";
|
|
|
11
11
|
import { LogisticsManager } from "./managers/logistics.manager.js";
|
|
12
12
|
import { VoucherManager } from "./managers/voucher.manager.js";
|
|
13
13
|
import { AdsManager } from "./managers/ads.manager.js";
|
|
14
|
+
import { AccountHealthManager } from "./managers/account-health.manager.js";
|
|
14
15
|
export class ShopeeSDK {
|
|
15
16
|
constructor(config, tokenStorage) {
|
|
16
17
|
this.config = {
|
|
@@ -32,6 +33,7 @@ export class ShopeeSDK {
|
|
|
32
33
|
this.payment = new PaymentManager(this.config);
|
|
33
34
|
this.logistics = new LogisticsManager(this.config);
|
|
34
35
|
this.voucher = new VoucherManager(this.config);
|
|
36
|
+
this.accountHealth = new AccountHealthManager(this.config);
|
|
35
37
|
}
|
|
36
38
|
getConfig() {
|
|
37
39
|
return this.config;
|
package/lib/sdk.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"sdk.js","sourceRoot":"","sources":["../src/sdk.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,+BAA+B,CAAC;AAC/D,OAAO,EAAE,YAAY,EAAE,MAAM,6BAA6B,CAAC;AAC3D,OAAO,EAAE,WAAW,EAAE,MAAM,4BAA4B,CAAC;AACzD,OAAO,EAAE,YAAY,EAAE,gBAAgB,EAAE,MAAM,qBAAqB,CAAC;AAErE,OAAO,EAAE,kBAAkB,EAAE,MAAM,mCAAmC,CAAC;AAEvE,OAAO,EAAE,cAAc,EAAE,MAAM,aAAa,CAAC;AAC7C,OAAO,EAAE,aAAa,EAAE,MAAM,8BAA8B,CAAC;AAC7D,OAAO,EAAE,WAAW,EAAE,MAAM,4BAA4B,CAAC;AACzD,OAAO,EAAE,iBAAiB,EAAE,MAAM,sBAAsB,CAAC;AACzD,OAAO,EAAE,cAAc,EAAE,MAAM,+BAA+B,CAAC;AAC/D,OAAO,EAAE,gBAAgB,EAAE,MAAM,iCAAiC,CAAC;AACnE,OAAO,EAAE,cAAc,EAAE,MAAM,+BAA+B,CAAC;AAC/D,OAAO,EAAE,UAAU,EAAE,MAAM,2BAA2B,CAAC;
|
|
1
|
+
{"version":3,"file":"sdk.js","sourceRoot":"","sources":["../src/sdk.ts"],"names":[],"mappings":"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"}
|