@smartico/public-api 0.0.338 → 0.0.339
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/{PointsHistory/PointsHistoryLog.d.ts → ActivityLog/ActivityLogEntry.d.ts} +1 -1
- package/dist/{PointsHistory/GetPointsHistoryRequest.d.ts → ActivityLog/GetActivityLogRequest.d.ts} +1 -1
- package/dist/ActivityLog/GetActivityLogResponse.d.ts +7 -0
- package/dist/ActivityLog/index.d.ts +5 -0
- package/dist/Analytics/AnalyticStoreData.d.ts +1 -1
- package/dist/SmarticoAPI.d.ts +4 -4
- package/dist/WSAPI/WSAPI.d.ts +9 -9
- package/dist/WSAPI/WSAPITypes.d.ts +4 -4
- package/dist/index.d.ts +1 -1
- package/dist/index.js +20 -20
- package/dist/index.js.map +1 -1
- package/dist/index.modern.mjs +18 -18
- package/dist/index.modern.mjs.map +1 -1
- package/package.json +1 -1
- package/src/{PointsHistory/PointsHistoryLog.ts → ActivityLog/ActivityLogEntry.ts} +2 -1
- package/src/{PointsHistory/GetPointsHistoryRequest.ts → ActivityLog/GetActivityLogRequest.ts} +2 -1
- package/src/{PointsHistory/GetPointsHistoryResponse.ts → ActivityLog/GetActivityLogResponse.ts} +9 -8
- package/src/{PointsHistory → ActivityLog}/PointChangeSourceType.ts +1 -0
- package/src/{PointsHistory → ActivityLog}/UserBalanceType.ts +1 -0
- package/src/ActivityLog/index.ts +7 -0
- package/src/Analytics/AnalyticStoreData.ts +1 -1
- package/src/SmarticoAPI.ts +10 -10
- package/src/WSAPI/WSAPI.ts +16 -16
- package/src/WSAPI/WSAPITypes.ts +5 -4
- package/src/index.ts +1 -1
- package/dist/PointsHistory/GetPointsHistoryResponse.d.ts +0 -7
- package/dist/PointsHistory/index.d.ts +0 -5
- package/src/PointsHistory/index.ts +0 -6
- /package/dist/{PointsHistory → ActivityLog}/PointChangeSourceType.d.ts +0 -0
- /package/dist/{PointsHistory → ActivityLog}/UserBalanceType.d.ts +0 -0
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { ProtocolResponse } from '../Base/ProtocolResponse';
|
|
2
|
+
import { ActivityLogEntry } from './ActivityLogEntry';
|
|
3
|
+
import { TActivityLog } from '../WSAPI/WSAPITypes';
|
|
4
|
+
export interface GetActivityLogResponse extends ProtocolResponse {
|
|
5
|
+
logHistory: ActivityLogEntry[];
|
|
6
|
+
}
|
|
7
|
+
export declare const ActivityLogTransform: (items: ActivityLogEntry[]) => TActivityLog[];
|
package/dist/SmarticoAPI.d.ts
CHANGED
|
@@ -11,7 +11,7 @@ import { GetTournamentInfoResponse, GetTournamentsResponse, TournamentRegisterRe
|
|
|
11
11
|
import { LeaderBoardDetails, LeaderBoardPeriodType } from './Leaderboard';
|
|
12
12
|
import { GetLevelMapResponse } from './Level';
|
|
13
13
|
import { WSAPI } from './WSAPI/WSAPI';
|
|
14
|
-
import { TInboxMessage, TInboxMessageBody, TLevel, TMiniGameTemplate, TMissionOrBadge, TStoreCategory, TAchCategory, TStoreItem, TTournament, TTournamentDetailed, LeaderBoardDetailsT, UserLevelExtraCountersT, TSegmentCheckResult, TUICustomSection, TBonus, TRaffle, TLevelCurrent,
|
|
14
|
+
import { TInboxMessage, TInboxMessageBody, TLevel, TMiniGameTemplate, TMissionOrBadge, TStoreCategory, TAchCategory, TStoreItem, TTournament, TTournamentDetailed, LeaderBoardDetailsT, UserLevelExtraCountersT, TSegmentCheckResult, TUICustomSection, TBonus, TRaffle, TLevelCurrent, TActivityLog } from './WSAPI/WSAPITypes';
|
|
15
15
|
import { GetAchievementsUserInfoResponse } from './Core/GetAchievementsUserInfoResponse';
|
|
16
16
|
import { GetJackpotsPotsResponse, GetJackpotsResponse, JackpotsOptinResponse, JackpotsOptoutResponse } from './Jackpots';
|
|
17
17
|
import { GetCustomSectionsResponse } from './CustomSections';
|
|
@@ -20,7 +20,7 @@ import { SAWDoSpinBatchResponse } from './MiniGames/SAWDoSpinBatchResponse';
|
|
|
20
20
|
import { SAWDoAcknowledgeBatchResponse } from './MiniGames/SAWDoAcknowledgeBatchResponse';
|
|
21
21
|
import { GetRelatedAchTourResponse } from './Missions/GetRelatedAchTourResponse';
|
|
22
22
|
import { GetRafflesResponse } from './Raffle/GetRafflesResponse';
|
|
23
|
-
import {
|
|
23
|
+
import { GetActivityLogResponse } from './ActivityLog';
|
|
24
24
|
import { InboxCategories } from './Inbox/InboxCategories';
|
|
25
25
|
import { GetDrawRunResponse, GetRaffleDrawRunsHistoryResponse, RaffleClaimPrizeResponse, RaffleOptinResponse } from './Raffle';
|
|
26
26
|
import { GetJackpotWinnersResponse, JackpotWinnerHistory } from './Jackpots/GetJackpotWinnersResponse';
|
|
@@ -173,7 +173,7 @@ declare class SmarticoAPI {
|
|
|
173
173
|
draw_id: number;
|
|
174
174
|
raffle_run_id: number;
|
|
175
175
|
}): Promise<RaffleOptinResponse>;
|
|
176
|
-
|
|
177
|
-
|
|
176
|
+
getActivityLog(user_ext_id: string, startTimeSeconds: number, endTimeSeconds: number): Promise<GetActivityLogResponse>;
|
|
177
|
+
getActivityLogT(user_ext_id: string, startTimeSeconds: number, endTimeSeconds: number): Promise<TActivityLog[]>;
|
|
178
178
|
}
|
|
179
179
|
export { SmarticoAPI, MessageSender };
|
package/dist/WSAPI/WSAPI.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ActivityTypeLimited } from '../Core';
|
|
2
2
|
import { SmarticoAPI } from '../SmarticoAPI';
|
|
3
|
-
import { InboxMarkMessageAction, LeaderBoardDetailsT, TAchCategory, TBuyStoreItemResult, TGetTranslations, TInboxMessage, TInboxMessageBody, TLevel, TMiniGamePlayResult, TMiniGameTemplate, TMissionClaimRewardResult, TMissionOptInResult, TMissionOrBadge, TSegmentCheckResult, TStoreCategory, TStoreItem, TTournament, TTournamentDetailed, TTournamentRegistrationResult, TUICustomSection, TUserProfile, UserLevelExtraCountersT, TBonus, TClaimBonusResult, TMiniGamePlayBatchResult, TSawHistory, TRaffle, TRaffleDraw, TRaffleDrawRun, TransformedRaffleClaimPrizeResponse, TLevelCurrent,
|
|
3
|
+
import { InboxMarkMessageAction, LeaderBoardDetailsT, TAchCategory, TBuyStoreItemResult, TGetTranslations, TInboxMessage, TInboxMessageBody, TLevel, TMiniGamePlayResult, TMiniGameTemplate, TMissionClaimRewardResult, TMissionOptInResult, TMissionOrBadge, TSegmentCheckResult, TStoreCategory, TStoreItem, TTournament, TTournamentDetailed, TTournamentRegistrationResult, TUICustomSection, TUserProfile, UserLevelExtraCountersT, TBonus, TClaimBonusResult, TMiniGamePlayBatchResult, TSawHistory, TRaffle, TRaffleDraw, TRaffleDrawRun, TransformedRaffleClaimPrizeResponse, TLevelCurrent, TActivityLog, TRaffleOptinResponse } from './WSAPITypes';
|
|
4
4
|
import { LeaderBoardPeriodType } from '../Leaderboard';
|
|
5
5
|
import { JackpotDetails, JackpotWinnerHistory, JackpotsOptinResponse, JackpotsOptoutResponse } from '../Jackpots';
|
|
6
6
|
import { GetRelatedAchTourResponse } from '../Missions/GetRelatedAchTourResponse';
|
|
@@ -546,18 +546,18 @@ export declare class WSAPI {
|
|
|
546
546
|
action?: string;
|
|
547
547
|
}): void;
|
|
548
548
|
/**
|
|
549
|
-
* Returns the
|
|
549
|
+
* Returns the activity log for a user within a specified time range.
|
|
550
550
|
* The response includes both points changes and gems/diamonds changes.
|
|
551
551
|
* Each log entry contains information about the change amount, balance, and source.
|
|
552
552
|
* The returned list is cached for 30 seconds.
|
|
553
|
-
* You can pass the onUpdate callback as a parameter, it will be called every time the
|
|
553
|
+
* You can pass the onUpdate callback as a parameter, it will be called every time the activity log is updated and will provide the updated list of activity logs for the last 10 minutes.
|
|
554
554
|
*
|
|
555
555
|
* **Example**:
|
|
556
556
|
* ```
|
|
557
557
|
* const startTime = Math.floor(Date.now() / 1000) - 86400 * 30; // 30 days ago
|
|
558
558
|
* const endTime = Math.floor(Date.now() / 1000); // now
|
|
559
559
|
*
|
|
560
|
-
* _smartico.api.
|
|
560
|
+
* _smartico.api.getActivityLog({
|
|
561
561
|
* startTimeSeconds: startTime,
|
|
562
562
|
* endTimeSeconds: endTime,
|
|
563
563
|
* onUpdate: (data) => console.log('Updated:', data)
|
|
@@ -570,13 +570,13 @@ export declare class WSAPI {
|
|
|
570
570
|
*
|
|
571
571
|
* @param params.startTimeSeconds - Start time in seconds (epoch timestamp)
|
|
572
572
|
* @param params.endTimeSeconds - End time in seconds (epoch timestamp)
|
|
573
|
-
* @param params.onUpdate - Optional callback function that will be called when the
|
|
573
|
+
* @param params.onUpdate - Optional callback function that will be called when the activity log is updated
|
|
574
574
|
*/
|
|
575
|
-
|
|
575
|
+
getActivityLog({ startTimeSeconds, endTimeSeconds, onUpdate, }: {
|
|
576
576
|
startTimeSeconds: number;
|
|
577
577
|
endTimeSeconds: number;
|
|
578
|
-
onUpdate?: (data:
|
|
579
|
-
}): Promise<
|
|
578
|
+
onUpdate?: (data: TActivityLog[]) => void;
|
|
579
|
+
}): Promise<TActivityLog[]>;
|
|
580
580
|
private updateOnSpin;
|
|
581
581
|
private reloadMiniGameTemplate;
|
|
582
582
|
private updateMissions;
|
|
@@ -587,7 +587,7 @@ export declare class WSAPI {
|
|
|
587
587
|
private updateInboxUnreadCount;
|
|
588
588
|
private updateInboxMessages;
|
|
589
589
|
private updateRaffles;
|
|
590
|
-
private
|
|
590
|
+
private notifyActivityLogUpdate;
|
|
591
591
|
private updateEntity;
|
|
592
592
|
private jackpotClearCache;
|
|
593
593
|
/** Returns list of Jackpots that are active in the systen and matching to the filter definition.
|
|
@@ -7,8 +7,8 @@ import { AchCustomLayoutTheme, AchCustomSectionType, AchMissionsTabsOptions, Ach
|
|
|
7
7
|
import { PrizeModifiers } from '../MiniGames/PrizeModifiers';
|
|
8
8
|
import { InboxCategories } from '../Inbox/InboxCategories';
|
|
9
9
|
import { RaffleDrawInstanceState, RaffleDrawTypeExecution } from '../Raffle';
|
|
10
|
-
import { PointChangeSourceType } from '../
|
|
11
|
-
import { UserBalanceType } from '../
|
|
10
|
+
import { PointChangeSourceType } from '../ActivityLog/PointChangeSourceType';
|
|
11
|
+
import { UserBalanceType } from '../ActivityLog/UserBalanceType';
|
|
12
12
|
type TRibbon = 'sale' | 'hot' | 'new' | 'vip' | string;
|
|
13
13
|
/**
|
|
14
14
|
* TMiniGamePrize describes the information of prize in the array of prizes in the TMiniGameTemplate
|
|
@@ -1224,10 +1224,10 @@ export interface TransformedRaffleClaimPrizeResponse {
|
|
|
1224
1224
|
errorMessage?: string;
|
|
1225
1225
|
}
|
|
1226
1226
|
/**
|
|
1227
|
-
*
|
|
1227
|
+
* TActivityLog describes a unified history log entry for points, gems, or diamonds changes.
|
|
1228
1228
|
* The structure is the same regardless of balance type, making it easy to iterate and display.
|
|
1229
1229
|
*/
|
|
1230
|
-
export interface
|
|
1230
|
+
export interface TActivityLog {
|
|
1231
1231
|
/** Date when the change was created (epoch timestamp in seconds) */
|
|
1232
1232
|
create_date: number;
|
|
1233
1233
|
/** External user ID */
|
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -2130,7 +2130,7 @@ var onUpdateContextKey;
|
|
|
2130
2130
|
onUpdateContextKey["JackpotEligibleGames"] = "jackpotEligibleGames";
|
|
2131
2131
|
onUpdateContextKey["CurrentLevel"] = "currentLevel";
|
|
2132
2132
|
onUpdateContextKey["InboxUnreadCount"] = "inboxUnreadCount";
|
|
2133
|
-
onUpdateContextKey["
|
|
2133
|
+
onUpdateContextKey["ActivityLog"] = "activityLog";
|
|
2134
2134
|
})(onUpdateContextKey || (onUpdateContextKey = {}));
|
|
2135
2135
|
/** @group General API */
|
|
2136
2136
|
var WSAPI = /*#__PURE__*/function () {
|
|
@@ -2213,7 +2213,7 @@ var WSAPI = /*#__PURE__*/function () {
|
|
|
2213
2213
|
_this.updateInboxUnreadCount(data.props.core_inbox_unread_count);
|
|
2214
2214
|
}
|
|
2215
2215
|
if ((data == null || (_data$props3 = data.props) == null ? void 0 : _data$props3.ach_points_balance) !== undefined || (data == null || (_data$props4 = data.props) == null ? void 0 : _data$props4.ach_gems_balance) !== undefined || (data == null || (_data$props5 = data.props) == null ? void 0 : _data$props5.ach_diamonds_balance) !== undefined) {
|
|
2216
|
-
_this.
|
|
2216
|
+
_this.notifyActivityLogUpdate();
|
|
2217
2217
|
}
|
|
2218
2218
|
});
|
|
2219
2219
|
on(exports.ClassId.RAF_OPTIN_RESPONSE, function () {
|
|
@@ -3200,18 +3200,18 @@ var WSAPI = /*#__PURE__*/function () {
|
|
|
3200
3200
|
this.api.reportEngagementAction(null, engagement_uid, activityType, action);
|
|
3201
3201
|
}
|
|
3202
3202
|
/**
|
|
3203
|
-
* Returns the
|
|
3203
|
+
* Returns the activity log for a user within a specified time range.
|
|
3204
3204
|
* The response includes both points changes and gems/diamonds changes.
|
|
3205
3205
|
* Each log entry contains information about the change amount, balance, and source.
|
|
3206
3206
|
* The returned list is cached for 30 seconds.
|
|
3207
|
-
* You can pass the onUpdate callback as a parameter, it will be called every time the
|
|
3207
|
+
* You can pass the onUpdate callback as a parameter, it will be called every time the activity log is updated and will provide the updated list of activity logs for the last 10 minutes.
|
|
3208
3208
|
*
|
|
3209
3209
|
* **Example**:
|
|
3210
3210
|
* ```
|
|
3211
3211
|
* const startTime = Math.floor(Date.now() / 1000) - 86400 * 30; // 30 days ago
|
|
3212
3212
|
* const endTime = Math.floor(Date.now() / 1000); // now
|
|
3213
3213
|
*
|
|
3214
|
-
* _smartico.api.
|
|
3214
|
+
* _smartico.api.getActivityLog({
|
|
3215
3215
|
* startTimeSeconds: startTime,
|
|
3216
3216
|
* endTimeSeconds: endTime,
|
|
3217
3217
|
* onUpdate: (data) => console.log('Updated:', data)
|
|
@@ -3224,19 +3224,19 @@ var WSAPI = /*#__PURE__*/function () {
|
|
|
3224
3224
|
*
|
|
3225
3225
|
* @param params.startTimeSeconds - Start time in seconds (epoch timestamp)
|
|
3226
3226
|
* @param params.endTimeSeconds - End time in seconds (epoch timestamp)
|
|
3227
|
-
* @param params.onUpdate - Optional callback function that will be called when the
|
|
3227
|
+
* @param params.onUpdate - Optional callback function that will be called when the activity log is updated
|
|
3228
3228
|
*/;
|
|
3229
|
-
_proto.
|
|
3229
|
+
_proto.getActivityLog = function getActivityLog(_ref14) {
|
|
3230
3230
|
var startTimeSeconds = _ref14.startTimeSeconds,
|
|
3231
3231
|
endTimeSeconds = _ref14.endTimeSeconds,
|
|
3232
3232
|
onUpdate = _ref14.onUpdate;
|
|
3233
3233
|
try {
|
|
3234
3234
|
var _this37 = this;
|
|
3235
3235
|
if (onUpdate) {
|
|
3236
|
-
_this37.onUpdateCallback.set(onUpdateContextKey.
|
|
3236
|
+
_this37.onUpdateCallback.set(onUpdateContextKey.ActivityLog, onUpdate);
|
|
3237
3237
|
}
|
|
3238
|
-
return Promise.resolve(OCache.use(onUpdateContextKey.
|
|
3239
|
-
return _this37.api.
|
|
3238
|
+
return Promise.resolve(OCache.use(onUpdateContextKey.ActivityLog, exports.ECacheContext.WSAPI, function () {
|
|
3239
|
+
return _this37.api.getActivityLogT(null, startTimeSeconds, endTimeSeconds);
|
|
3240
3240
|
}, CACHE_DATA_SEC));
|
|
3241
3241
|
} catch (e) {
|
|
3242
3242
|
return Promise.reject(e);
|
|
@@ -3347,13 +3347,13 @@ var WSAPI = /*#__PURE__*/function () {
|
|
|
3347
3347
|
return Promise.reject(e);
|
|
3348
3348
|
}
|
|
3349
3349
|
};
|
|
3350
|
-
_proto.
|
|
3350
|
+
_proto.notifyActivityLogUpdate = function notifyActivityLogUpdate() {
|
|
3351
3351
|
try {
|
|
3352
3352
|
var _this48 = this;
|
|
3353
3353
|
var startSeconds = Date.now() / 1000 - 600;
|
|
3354
3354
|
var endSeconds = Date.now() / 1000;
|
|
3355
|
-
return Promise.resolve(_this48.api.
|
|
3356
|
-
_this48.updateEntity(onUpdateContextKey.
|
|
3355
|
+
return Promise.resolve(_this48.api.getActivityLogT(null, startSeconds, endSeconds)).then(function (payload) {
|
|
3356
|
+
_this48.updateEntity(onUpdateContextKey.ActivityLog, payload);
|
|
3357
3357
|
});
|
|
3358
3358
|
} catch (e) {
|
|
3359
3359
|
return Promise.reject(e);
|
|
@@ -3899,7 +3899,7 @@ exports.UserBalanceType = void 0;
|
|
|
3899
3899
|
UserBalanceType[UserBalanceType["Diamonds"] = 2] = "Diamonds";
|
|
3900
3900
|
})(exports.UserBalanceType || (exports.UserBalanceType = {}));
|
|
3901
3901
|
|
|
3902
|
-
var
|
|
3902
|
+
var ActivityLogTransform = function ActivityLogTransform(items) {
|
|
3903
3903
|
if (!items) {
|
|
3904
3904
|
return [];
|
|
3905
3905
|
}
|
|
@@ -5251,7 +5251,7 @@ var SmarticoAPI = /*#__PURE__*/function () {
|
|
|
5251
5251
|
return Promise.reject(e);
|
|
5252
5252
|
}
|
|
5253
5253
|
};
|
|
5254
|
-
_proto.
|
|
5254
|
+
_proto.getActivityLog = function getActivityLog(user_ext_id, startTimeSeconds, endTimeSeconds) {
|
|
5255
5255
|
try {
|
|
5256
5256
|
var _this75 = this;
|
|
5257
5257
|
var message = _this75.buildMessage(user_ext_id, exports.ClassId.GET_POINT_HISTORY_REQUEST, {
|
|
@@ -5263,11 +5263,11 @@ var SmarticoAPI = /*#__PURE__*/function () {
|
|
|
5263
5263
|
return Promise.reject(e);
|
|
5264
5264
|
}
|
|
5265
5265
|
};
|
|
5266
|
-
_proto.
|
|
5266
|
+
_proto.getActivityLogT = function getActivityLogT(user_ext_id, startTimeSeconds, endTimeSeconds) {
|
|
5267
5267
|
try {
|
|
5268
5268
|
var _this76 = this;
|
|
5269
|
-
return Promise.resolve(_this76.
|
|
5270
|
-
return
|
|
5269
|
+
return Promise.resolve(_this76.getActivityLog(user_ext_id, startTimeSeconds, endTimeSeconds)).then(function (_this76$getActivityLo) {
|
|
5270
|
+
return ActivityLogTransform(_this76$getActivityLo.logHistory);
|
|
5271
5271
|
});
|
|
5272
5272
|
} catch (e) {
|
|
5273
5273
|
return Promise.reject(e);
|
|
@@ -5321,7 +5321,7 @@ exports.AnalyticsScreenNameId = void 0;
|
|
|
5321
5321
|
AnalyticsScreenNameId[AnalyticsScreenNameId["LootboxCalendarDays"] = 21] = "LootboxCalendarDays";
|
|
5322
5322
|
AnalyticsScreenNameId[AnalyticsScreenNameId["TreasureHunt"] = 22] = "TreasureHunt";
|
|
5323
5323
|
AnalyticsScreenNameId[AnalyticsScreenNameId["LiquidSection"] = 23] = "LiquidSection";
|
|
5324
|
-
AnalyticsScreenNameId[AnalyticsScreenNameId["
|
|
5324
|
+
AnalyticsScreenNameId[AnalyticsScreenNameId["ActivityLog"] = 24] = "ActivityLog";
|
|
5325
5325
|
AnalyticsScreenNameId[AnalyticsScreenNameId["ModalMission"] = 31] = "ModalMission";
|
|
5326
5326
|
AnalyticsScreenNameId[AnalyticsScreenNameId["ModalLevel"] = 32] = "ModalLevel";
|
|
5327
5327
|
AnalyticsScreenNameId[AnalyticsScreenNameId["ModalBadge"] = 33] = "ModalBadge";
|
|
@@ -5735,6 +5735,7 @@ exports.JackpotType = void 0;
|
|
|
5735
5735
|
})(exports.JackpotType || (exports.JackpotType = {}));
|
|
5736
5736
|
|
|
5737
5737
|
exports.AchCategoryTransform = AchCategoryTransform;
|
|
5738
|
+
exports.ActivityLogTransform = ActivityLogTransform;
|
|
5738
5739
|
exports.BonusItemsTransform = BonusItemsTransform;
|
|
5739
5740
|
exports.CookieStore = CookieStore;
|
|
5740
5741
|
exports.CoreUtils = CoreUtils;
|
|
@@ -5746,7 +5747,6 @@ exports.InboxMessagesTransform = InboxMessagesTransform;
|
|
|
5746
5747
|
exports.MiniGamePrizeTypeNamed = MiniGamePrizeTypeNamed;
|
|
5747
5748
|
exports.MissionUtils = MissionUtils;
|
|
5748
5749
|
exports.OCache = OCache;
|
|
5749
|
-
exports.PointsHistoryTransform = PointsHistoryTransform;
|
|
5750
5750
|
exports.PrizeModifiersKeysNames = PrizeModifiersKeysNames;
|
|
5751
5751
|
exports.QuizMarketPerSport = QuizMarketPerSport;
|
|
5752
5752
|
exports.SAWAcknowledgeTypeNamed = SAWAcknowledgeTypeNamed;
|