@idosgames/core 0.1.4 → 0.2.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/index.cjs +2 -2
- package/dist/index.d.cts +119 -13
- package/dist/index.d.ts +119 -13
- package/dist/index.js +2 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -439,7 +439,7 @@ interface UserQuestState {
|
|
|
439
439
|
PermanentQuests?: Record<string, UserQuestProgress>;
|
|
440
440
|
LastUpdatedUtc?: string;
|
|
441
441
|
}
|
|
442
|
-
type QuestPointsTrackView = { CycleID: string; InstanceKey?: null | string; CycleStartUtc?: null | string; CycleEndUtc?: null | string; PointsTotalEarned?: null | number; PointsCurrent?: null | number; ClaimedPointMilestoneIDs?: null | Array<string>; };
|
|
442
|
+
type QuestPointsTrackView = { CycleID: string; InstanceKey?: null | string; PhaseID?: null | string; CycleIndex?: null | number; CycleStartUtc?: null | string; CycleEndUtc?: null | string; PointsTotalEarned?: null | number; PointsCurrent?: null | number; ClaimedPointMilestoneIDs?: null | Array<string>; };
|
|
443
443
|
type QuestProgressUpdate = { QuestID: string; Status: 'Active' | 'Completed' | 'Claimed' | 'Expired'; CycleID?: null | string; ObjectiveID?: null | string; NewValue?: null | number; ObjectiveCompleted?: null | boolean; };
|
|
444
444
|
type GetUserQuestStateResponse = { State?: null | UserQuestState; PointsTracks?: null | Record<string, QuestPointsTrackView>; };
|
|
445
445
|
type ClaimQuestRewardResponse = { ServerTimeUtc: string; QuestID: string; CycleID?: null | string; NewStatus?: null | 'Active' | 'Completed' | 'Claimed' | 'Expired'; Resources?: null | ResourceOperation; };
|
|
@@ -461,8 +461,12 @@ declare const QuestPrerequisiteMode: {
|
|
|
461
461
|
readonly BlockClaimOnly: "BlockClaimOnly";
|
|
462
462
|
};
|
|
463
463
|
type QuestPrerequisiteMode = (typeof QuestPrerequisiteMode)[keyof typeof QuestPrerequisiteMode];
|
|
464
|
-
type
|
|
464
|
+
type QuestObjectiveDefinition = { ObjectiveID?: null | string; Source?: null | 'ClientApi' | 'ServerApi' | 'SystemEvent'; MaxProgressPerCall?: null | number; MetricID?: null | string; Triggers?: null | Array<TriggerSource>; TargetValue?: null | number; AggregationMethod?: null | string; [key: string]: unknown; };
|
|
465
|
+
type QuestDefinition = { QuestID?: null | string; CycleIDs?: null | Array<string>; DisplayName?: null | string; Description?: null | string; SortOrder?: null | number; RequiredQuestIDs?: null | Array<string>; PrerequisiteMode?: null | 'BlockProgressAndClaim' | 'BlockClaimOnly'; PointsReward?: null | number; Schedule?: null | ScheduleSpec; AccrueProgressWhenLocked?: null | boolean; Gate?: null | SegmentGate; Limits?: null | LimitSpec; GroupID?: null | string; PhaseIDs?: null | Array<string>; AssetPaths?: null | Record<string, string>; CustomParams?: null | Record<string, string>; Objectives?: null | Record<string, QuestObjectiveDefinition>; Reward?: null | ResourceGrant; [key: string]: unknown; };
|
|
465
466
|
type QuestGroupCompletionDefinition = { CompletionID?: null | string; GroupID?: null | string; RequiredCompletedQuests?: null | number; Gate?: null | SegmentGate; Reward?: null | ResourceGrant; PointsReward?: null | number; [key: string]: unknown; };
|
|
467
|
+
type QuestPresetBindings = { Milestones?: null | PresetBinding; [key: string]: unknown; };
|
|
468
|
+
type QuestPhaseDefinition = { PhaseID?: null | string; Order?: null | number; DurationSec?: null | number; ClaimGraceHours?: null | number; DisplayName?: null | string; AssetPaths?: null | Record<string, string>; CustomParams?: null | Record<string, string>; Gate?: null | SegmentGate; Milestones?: null | Record<string, MilestoneDefinition>; Presets?: null | QuestPresetBindings; PointsToken?: null | EventTokenDefinition; [key: string]: unknown; };
|
|
469
|
+
type QuestPresetRegistry = { Milestones?: null | Record<string, MilestoneSet>; [key: string]: unknown; };
|
|
466
470
|
/** Cycle definition: schedule + milestone rewards + points-track token. */
|
|
467
471
|
interface QuestCycleDefinition {
|
|
468
472
|
CycleID?: string | null;
|
|
@@ -472,12 +476,19 @@ interface QuestCycleDefinition {
|
|
|
472
476
|
Gate?: SegmentGate | null;
|
|
473
477
|
PointsToken?: EventTokenDefinition | null;
|
|
474
478
|
GroupCompletions?: Record<string, QuestGroupCompletionDefinition> | null;
|
|
479
|
+
/** Chain phases, keyed by PhaseID — only for `Schedule.Mode = "Chained"`. */
|
|
480
|
+
Phases?: Record<string, QuestPhaseDefinition> | null;
|
|
481
|
+
Presets?: QuestPresetBindings | null;
|
|
482
|
+
AssetPaths?: Record<string, string> | null;
|
|
483
|
+
CustomParams?: Record<string, string> | null;
|
|
475
484
|
[key: string]: unknown;
|
|
476
485
|
}
|
|
477
486
|
/** Root block of the quest system in the title config. */
|
|
478
487
|
interface QuestDefinitions {
|
|
479
488
|
Cycles?: Record<string, QuestCycleDefinition> | null;
|
|
480
489
|
Quests?: Record<string, QuestDefinition> | null;
|
|
490
|
+
/** Reusable blocks (Core/Presets) referenced by cycles and phases. */
|
|
491
|
+
Presets?: QuestPresetRegistry | null;
|
|
481
492
|
[key: string]: unknown;
|
|
482
493
|
}
|
|
483
494
|
/** One (cycle, quest) pair for a batch reward claim. CycleID null/empty = permanent quest. */
|
|
@@ -1828,6 +1839,45 @@ declare const MarketplaceAction: {
|
|
|
1828
1839
|
readonly ClaimBack: "ClaimBack";
|
|
1829
1840
|
};
|
|
1830
1841
|
type MarketplaceAction = (typeof MarketplaceAction)[keyof typeof MarketplaceAction];
|
|
1842
|
+
|
|
1843
|
+
/** Storage scope: who may write a record and whether it is cached server-side. */
|
|
1844
|
+
declare const TitleDataScope: {
|
|
1845
|
+
/** Authored configuration. Written by the publisher / AI Coder; cached with the title config. */
|
|
1846
|
+
readonly Static: "Static";
|
|
1847
|
+
/** Mutable title state. Written only by CloudCode scripts; never cached. */
|
|
1848
|
+
readonly Runtime: "Runtime";
|
|
1849
|
+
};
|
|
1850
|
+
type TitleDataScope = (typeof TitleDataScope)[keyof typeof TitleDataScope];
|
|
1851
|
+
/** Visibility bucket. Clients never write title data — the bucket only decides who reads. */
|
|
1852
|
+
declare const TitleDataBucket: {
|
|
1853
|
+
/** Readable by game clients. */
|
|
1854
|
+
readonly Public: "Public";
|
|
1855
|
+
/** Server and CloudCode only — never returned to a client. */
|
|
1856
|
+
readonly Private: "Private";
|
|
1857
|
+
};
|
|
1858
|
+
type TitleDataBucket = (typeof TitleDataBucket)[keyof typeof TitleDataBucket];
|
|
1859
|
+
type TitleCustomDataRecord = { Value?: null | string; UpdatedAt?: null | string; Version?: null | number; LastWriter?: null | 'Client' | 'Server' | 'System'; ExpiresAt?: null | string; [key: string]: unknown; };
|
|
1860
|
+
type GetPublicTitleDataResponse = { StaticVersion?: null | number; RuntimeVersion?: null | number; Static?: null | Record<string, TitleCustomDataRecord>; Runtime?: null | Record<string, TitleCustomDataRecord>; NotModified?: null | boolean; };
|
|
1861
|
+
type TitleCustomDataKeyDefinition = { KeyID: string; Scope?: null | 'Static' | 'Runtime'; Bucket?: null | 'Private' | 'Public'; ValueType?: null | 'String' | 'Int' | 'Bool' | 'Json'; MaxValueLengthBytes?: null | number; TtlSeconds?: null | number; DefaultValue?: null | string; Description?: null | string; [key: string]: unknown; };
|
|
1862
|
+
/** Title-data schema as served to clients: public-bucket keys plus the title's limits. */
|
|
1863
|
+
interface TitleCustomDataDefinitions {
|
|
1864
|
+
Keys?: Record<string, TitleCustomDataKeyDefinition> | null;
|
|
1865
|
+
DefaultMaxValueLengthBytes?: number | null;
|
|
1866
|
+
DefaultTtlSeconds?: number | null;
|
|
1867
|
+
MaxKeysPerBucket?: number | null;
|
|
1868
|
+
MaxTotalSizeBytes?: number | null;
|
|
1869
|
+
RejectUnregisteredKeys?: boolean | null;
|
|
1870
|
+
}
|
|
1871
|
+
interface TitleCustomDataRequest extends BaseRequest {
|
|
1872
|
+
KeyIDs?: string[];
|
|
1873
|
+
KnownRuntimeVersion?: number;
|
|
1874
|
+
}
|
|
1875
|
+
declare const TitleCustomDataAction: {
|
|
1876
|
+
readonly GetTitleCustomDataDefinitions: "GetTitleCustomDataDefinitions";
|
|
1877
|
+
readonly GetPublicTitleData: "GetPublicTitleData";
|
|
1878
|
+
readonly GetPublicTitleDataKeys: "GetPublicTitleDataKeys";
|
|
1879
|
+
};
|
|
1880
|
+
type TitleCustomDataAction = (typeof TitleCustomDataAction)[keyof typeof TitleCustomDataAction];
|
|
1831
1881
|
type FodderConsumedEntry = { ItemInstanceID: string; Units: number; Level: number; };
|
|
1832
1882
|
type UpgradeItemLevelResponse = { ServerTimeUtc: string; ItemInstanceID: string; ItemID: string; Level: number; CatalogID?: null | string; Resources?: null | ResourceOperation; FodderConsumed?: null | Array<FodderConsumedEntry>; };
|
|
1833
1883
|
type UpgradeLevelsBatchResponse = Array<{ Id: string; Success: boolean; Error?: null | string; Data?: null | UpgradeItemLevelResponse; }>;
|
|
@@ -2125,10 +2175,10 @@ declare const MultiplayerAction: {
|
|
|
2125
2175
|
readonly SetMemberState: "SetMemberState";
|
|
2126
2176
|
};
|
|
2127
2177
|
type MultiplayerAction = (typeof MultiplayerAction)[keyof typeof MultiplayerAction];
|
|
2128
|
-
|
|
2129
|
-
type TitleCustomData = { PublicData?: null | Record<string, TitlePublicData>; PrivateData?: null | Record<string, TitlePublicData>; };
|
|
2178
|
+
|
|
2130
2179
|
interface TitlePublicConfigurationModel {
|
|
2131
|
-
|
|
2180
|
+
/** Schema of the title-wide key-value store; the values live in client.titleCustomData. */
|
|
2181
|
+
TitleCustomData?: TitleCustomDataDefinitions | null;
|
|
2132
2182
|
Character?: CharacterDefinitions | null;
|
|
2133
2183
|
Item?: ItemDefinitions | null;
|
|
2134
2184
|
Currency?: CurrencyDefinitions | null;
|
|
@@ -2155,8 +2205,6 @@ interface TitlePublicConfigurationModel {
|
|
|
2155
2205
|
Referral?: ReferralDefinitions | null;
|
|
2156
2206
|
[key: string]: unknown;
|
|
2157
2207
|
}
|
|
2158
|
-
type TitleCustomDataResponse = { PublicData?: null | Record<string, TitlePublicData>; };
|
|
2159
|
-
|
|
2160
2208
|
interface TitleRequest extends BaseRequest {
|
|
2161
2209
|
Fields?: string[];
|
|
2162
2210
|
ExcludeFields?: string[];
|
|
@@ -2164,7 +2212,6 @@ interface TitleRequest extends BaseRequest {
|
|
|
2164
2212
|
declare const TitleAction: {
|
|
2165
2213
|
readonly GetTitlePublicConfiguration: "GetTitlePublicConfiguration";
|
|
2166
2214
|
readonly GetTitlePublicConfigurationExcept: "GetTitlePublicConfigurationExcept";
|
|
2167
|
-
readonly GetPublicCustomTitleData: "GetPublicCustomTitleData";
|
|
2168
2215
|
readonly GetCurrencyDefinitions: "GetCurrencyDefinitions";
|
|
2169
2216
|
readonly GetItemDefinitions: "GetItemDefinitions";
|
|
2170
2217
|
readonly GetServerTime: "GetServerTime";
|
|
@@ -2402,7 +2449,7 @@ type PlatformBlockchainState = { Ios?: null | boolean; Android?: null | boolean;
|
|
|
2402
2449
|
type BlockchainNetworkDefinition = { NetworkID?: null | string; DisplayName?: null | string; Type?: null | 'EVM' | 'Solana'; ChainID?: null | number; ChainTicker?: null | string; RewardPoolAddress?: null | string; VaultDepositAddress?: null | string; ChainConfigVersion?: null | number; RequiredConfirmations?: null | number; DepositsEnabled?: null | boolean; WithdrawalsEnabled?: null | boolean; NftDepositsEnabled?: null | boolean; NftWithdrawalsEnabled?: null | boolean; PlatformOverrides?: null | PlatformBlockchainState; NftCollections?: null | Array<BlockchainNftCollectionBinding>; AssetPaths?: null | Record<string, string>; [key: string]: unknown; };
|
|
2403
2450
|
type BlockchainSystemState = { DepositsEnabled?: null | boolean; WithdrawalsEnabled?: null | boolean; NftDepositsEnabled?: null | boolean; NftWithdrawalsEnabled?: null | boolean; PlatformOverrides?: null | PlatformBlockchainState; [key: string]: unknown; };
|
|
2404
2451
|
type BlockchainAccountSafetyPolicy = { MinAccountAgeDays?: null | number; MultiAccountCheckEnabled?: null | boolean; BanOnSharedWithdrawalAddress?: null | boolean; PendingWithdrawalTtlHours?: null | number; [key: string]: unknown; };
|
|
2405
|
-
type BlockchainDefinitions = { SystemState?: null | BlockchainSystemState; Networks?: null | Record<string, BlockchainNetworkDefinition>; AccountSafety?: null | BlockchainAccountSafetyPolicy; WalletLogin?: null | { Enabled?: null | boolean; TokenGates?: null | Array<{ Enabled?: null | boolean; NetworkID?: null | string; CurrencyID?: null | string; MinBalance?: null | string; BalanceSource?: null | 'OnChain' | 'Combined'; DenyMessage?: null | string; [key: string]: unknown; }>; [key: string]: unknown; }; [key: string]: unknown; };
|
|
2452
|
+
type BlockchainDefinitions = { SystemState?: null | BlockchainSystemState; Networks?: null | Record<string, BlockchainNetworkDefinition>; AccountSafety?: null | BlockchainAccountSafetyPolicy; WalletLogin?: null | { Enabled?: null | boolean; TokenGates?: null | Array<{ Enabled?: null | boolean; NetworkID?: null | string; CurrencyID?: null | string; MinBalance?: null | string; BalanceSource?: null | 'OnChain' | 'Combined'; DenyMessage?: null | string; [key: string]: unknown; }>; WalletConnectProjectId?: null | string; [key: string]: unknown; }; [key: string]: unknown; };
|
|
2406
2453
|
type LinkedWalletInfo = { NetworkID?: null | string; Address?: null | string; LinkedAt?: null | string; LastUsedAt?: null | string; LinkType?: null | 'AutoLinkedFromTransaction' | 'SignatureVerified' | 'ManuallyLinked'; IsSignatureVerified?: null | boolean; [key: string]: unknown; };
|
|
2407
2454
|
type PendingWithdrawalRef = { TitleTransactionID?: null | string; Type?: null | 'Token' | 'Nft'; NetworkID?: null | string; AssetID?: null | string; Amount?: null | string; CreatedAt?: null | string; ExpiresAt?: null | string; [key: string]: unknown; };
|
|
2408
2455
|
type UserKycState = { Status?: null | 'Expired' | 'Pending' | 'Rejected' | 'NotRequested' | 'Verified'; Tier?: null | 'None' | 'Tier1' | 'Tier2' | 'Tier3'; VerifiedAt?: null | string; ExpiresAt?: null | string; RejectedAt?: null | string; ProviderReference?: null | string; RejectionReason?: null | string; [key: string]: unknown; };
|
|
@@ -2578,6 +2625,13 @@ interface SdkEvents {
|
|
|
2578
2625
|
"quest:milestonesClaimedBatch": ClaimMilestoneRewardsBatchResponse;
|
|
2579
2626
|
"quest:groupCompletionClaimed": ClaimGroupCompletionRewardResponse;
|
|
2580
2627
|
"quest:progressAdded": AddQuestProgressResponse;
|
|
2628
|
+
/**
|
|
2629
|
+
* The backend advanced quests by itself while handling some other call — objectives with
|
|
2630
|
+
* `Source: "SystemEvent"` (board roll, store purchase, marketplace deal, claiming another
|
|
2631
|
+
* quest). The cached user state is already patched when this fires; subscribe to refresh the
|
|
2632
|
+
* quest UI. Nothing to call to trigger it.
|
|
2633
|
+
*/
|
|
2634
|
+
"quest:systemProgress": QuestProgressUpdate[];
|
|
2581
2635
|
"timedEvent:activeEventsLoaded": GetActiveEventsResponse;
|
|
2582
2636
|
"timedEvent:definitionsLoaded": TimedEventDefinitions;
|
|
2583
2637
|
"timedEvent:userStateLoaded": UserTimedEventStateResponse;
|
|
@@ -2694,8 +2748,9 @@ interface SdkEvents {
|
|
|
2694
2748
|
"userCustomData:batchSet": BatchSetUserCustomDataResponse;
|
|
2695
2749
|
"userCustomData:batchDeleted": BatchDeleteUserCustomDataResponse;
|
|
2696
2750
|
"userCustomData:batchPublicDataLoaded": BatchGetPublicUserCustomDataResponse;
|
|
2751
|
+
"titleCustomData:definitionsLoaded": TitleCustomDataDefinitions;
|
|
2752
|
+
"titleCustomData:publicDataLoaded": GetPublicTitleDataResponse;
|
|
2697
2753
|
"title:publicConfigurationReceived": TitlePublicConfigurationModel;
|
|
2698
|
-
"title:publicCustomDataReceived": TitleCustomDataResponse;
|
|
2699
2754
|
"title:currencyDefinitionsReceived": CurrencyDefinitions;
|
|
2700
2755
|
"title:itemDefinitionsReceived": ItemDefinitions;
|
|
2701
2756
|
"title:serverTimeReceived": SuccessResponse;
|
|
@@ -3422,12 +3477,51 @@ declare class UserCustomDataService {
|
|
|
3422
3477
|
private baseRequest;
|
|
3423
3478
|
}
|
|
3424
3479
|
|
|
3480
|
+
/**
|
|
3481
|
+
* Title-scoped key-value data: values shared by every player of the title —
|
|
3482
|
+
* event state, global counters, server-side thresholds, feature toggles.
|
|
3483
|
+
*
|
|
3484
|
+
* Read-only by design. There is no client write path at all: authored values
|
|
3485
|
+
* (Static) are written by the publisher/AI Coder, and mutable values (Runtime)
|
|
3486
|
+
* only by CloudCode scripts. A shared value a client could write would be a
|
|
3487
|
+
* value any player could set for everyone.
|
|
3488
|
+
*
|
|
3489
|
+
* Per-player data belongs in `client.userCustomData`, not here.
|
|
3490
|
+
*/
|
|
3491
|
+
declare class TitleCustomDataService {
|
|
3492
|
+
private readonly ctx;
|
|
3493
|
+
/** Last RuntimeVersion seen, used to make repeat polls cheap. */
|
|
3494
|
+
private lastRuntimeVersion;
|
|
3495
|
+
/** Latest known runtime records, kept so a NotModified response still has data to return. */
|
|
3496
|
+
private runtimeCache;
|
|
3497
|
+
constructor(ctx: ClientContext);
|
|
3498
|
+
/** Schema of the title's public keys plus its size/TTL limits. */
|
|
3499
|
+
getTitleCustomDataDefinitions(): Promise<OperationResult<TitleCustomDataDefinitions>>;
|
|
3500
|
+
/**
|
|
3501
|
+
* All public title data: authored (`Static`) and live (`Runtime`).
|
|
3502
|
+
*
|
|
3503
|
+
* Pass `useKnownVersion` (default true) to let the server skip the Runtime map
|
|
3504
|
+
* when nothing changed since the last call — the response comes back with
|
|
3505
|
+
* `NotModified: true` and this service fills `Runtime` from its own cache, so
|
|
3506
|
+
* callers never have to special-case it.
|
|
3507
|
+
*/
|
|
3508
|
+
getPublicTitleData(useKnownVersion?: boolean): Promise<OperationResult<GetPublicTitleDataResponse>>;
|
|
3509
|
+
/** Same as {@link getPublicTitleData} but returns only the requested keys. */
|
|
3510
|
+
getPublicTitleDataKeys(keyIDs: string[]): Promise<OperationResult<GetPublicTitleDataResponse>>;
|
|
3511
|
+
/** Value of one key from the last full read, checking Runtime first, then Static. */
|
|
3512
|
+
getValue(keyID: string): string | undefined;
|
|
3513
|
+
/** Change counter of the mutable part from the last read — `null` before the first read. */
|
|
3514
|
+
get runtimeVersion(): number | null;
|
|
3515
|
+
private staticCache;
|
|
3516
|
+
private absorb;
|
|
3517
|
+
private baseRequest;
|
|
3518
|
+
}
|
|
3519
|
+
|
|
3425
3520
|
/** Port of TitleService.cs (standalone config fetches). */
|
|
3426
3521
|
declare class TitleService {
|
|
3427
3522
|
private readonly ctx;
|
|
3428
3523
|
constructor(ctx: ClientContext);
|
|
3429
3524
|
getTitlePublicConfiguration(): Promise<OperationResult<TitlePublicConfigurationModel>>;
|
|
3430
|
-
getPublicTitleCustomData(): Promise<OperationResult<TitleCustomDataResponse>>;
|
|
3431
3525
|
getCurrencyDefinitions(): Promise<OperationResult<CurrencyDefinitions>>;
|
|
3432
3526
|
getItemDefinitions(): Promise<OperationResult<ItemDefinitions>>;
|
|
3433
3527
|
getServerTime(): Promise<OperationResult<SuccessResponse>>;
|
|
@@ -3912,13 +4006,22 @@ declare class UserCustomDataApi {
|
|
|
3912
4006
|
batchGetPublicUserCustomDataOf(request: UserCustomDataRequest): Promise<OperationResult<BatchGetPublicUserCustomDataResponse>>;
|
|
3913
4007
|
}
|
|
3914
4008
|
|
|
4009
|
+
/** Thin transport wrapper for the TitleCustomData feature (port of TitleCustomDataV2.cs). */
|
|
4010
|
+
declare class TitleCustomDataApi {
|
|
4011
|
+
private readonly ctx;
|
|
4012
|
+
constructor(ctx: ClientContext);
|
|
4013
|
+
private send;
|
|
4014
|
+
getTitleCustomDataDefinitions(request: TitleCustomDataRequest): Promise<OperationResult<TitleCustomDataDefinitions>>;
|
|
4015
|
+
getPublicTitleData(request: TitleCustomDataRequest): Promise<OperationResult<GetPublicTitleDataResponse>>;
|
|
4016
|
+
getPublicTitleDataKeys(request: TitleCustomDataRequest): Promise<OperationResult<GetPublicTitleDataResponse>>;
|
|
4017
|
+
}
|
|
4018
|
+
|
|
3915
4019
|
/** Thin transport wrapper for the Title feature (port of TitleAPI.cs). */
|
|
3916
4020
|
declare class TitleApi {
|
|
3917
4021
|
private readonly ctx;
|
|
3918
4022
|
constructor(ctx: ClientContext);
|
|
3919
4023
|
private send;
|
|
3920
4024
|
getTitlePublicConfiguration(request: TitleRequest): Promise<OperationResult<TitlePublicConfigurationModel>>;
|
|
3921
|
-
getPublicTitleCustomData(request: TitleRequest): Promise<OperationResult<TitleCustomDataResponse>>;
|
|
3922
4025
|
getCurrencyDefinitions(request: TitleRequest): Promise<OperationResult<CurrencyDefinitions>>;
|
|
3923
4026
|
getItemDefinitions(request: TitleRequest): Promise<OperationResult<ItemDefinitions>>;
|
|
3924
4027
|
getServerTime(request: TitleRequest): Promise<OperationResult<SuccessResponse>>;
|
|
@@ -4061,6 +4164,7 @@ declare class ClientContext {
|
|
|
4061
4164
|
social: SocialApi;
|
|
4062
4165
|
timedBoost: TimedBoostApi;
|
|
4063
4166
|
userCustomData: UserCustomDataApi;
|
|
4167
|
+
titleCustomData: TitleCustomDataApi;
|
|
4064
4168
|
title: TitleApi;
|
|
4065
4169
|
gameLoop: GameLoopApi;
|
|
4066
4170
|
cloudCode: CloudCodeApi;
|
|
@@ -4090,6 +4194,7 @@ declare class ClientContext {
|
|
|
4090
4194
|
readonly social: SocialService;
|
|
4091
4195
|
readonly timedBoost: TimedBoostService;
|
|
4092
4196
|
readonly userCustomData: UserCustomDataService;
|
|
4197
|
+
readonly titleCustomData: TitleCustomDataService;
|
|
4093
4198
|
readonly title: TitleService;
|
|
4094
4199
|
readonly gameLoop: GameLoopService;
|
|
4095
4200
|
readonly cloudCode: CloudCodeService;
|
|
@@ -4133,6 +4238,7 @@ declare class IDosGamesClient {
|
|
|
4133
4238
|
get social(): SocialService;
|
|
4134
4239
|
get timedBoost(): TimedBoostService;
|
|
4135
4240
|
get userCustomData(): UserCustomDataService;
|
|
4241
|
+
get titleCustomData(): TitleCustomDataService;
|
|
4136
4242
|
get title(): TitleService;
|
|
4137
4243
|
get gameLoop(): GameLoopService;
|
|
4138
4244
|
get cloudCode(): CloudCodeService;
|
|
@@ -4225,4 +4331,4 @@ type MailboxMessageDocument = { MessageID?: null | string; TitleID?: null | stri
|
|
|
4225
4331
|
type MailboxBroadcastDocument = { BroadcastID?: null | string; TitleID?: null | string; MessageTypeID?: null | string; Subject?: null | string; Body?: null | string; TemplateParams?: null | Record<string, string>; AssetPaths?: null | Record<string, string>; Rewards?: null | ResourceGrant; TargetSegmentID?: null | string; TargetUserIDs?: null | Array<string>; StartsAtUtc?: null | string; ExpiresAtUtc?: null | string; CreatedAtUtc?: null | string; CreatedByAdminID?: null | string; AdminComment?: null | string; Status?: null | 'Active' | 'Completed' | 'Cancelled' | 'Paused'; DeliveredCount?: null | number; ClaimedCount?: null | number; [key: string]: unknown; };
|
|
4226
4332
|
type UserMailboxState = { UnreadCount?: null | number; UnclaimedRewardCount?: null | number; LastFetchCursor?: null | string; ReceivedBroadcastIDs?: null | Array<string>; ClaimedBroadcastIDs?: null | Array<string>; DailyP2PGiftsSent?: null | number; DailyGiftsResetDate?: null | string; LastOpenedAtUtc?: null | string; TotalMessagesReceived?: null | number; TotalRewardsClaimed?: null | number; [key: string]: unknown; };
|
|
4227
4333
|
|
|
4228
|
-
export { type AcceptTradeOfferResponse, type ActivateReferralCodeResponse, type ActivateTimedBoostResponse, type ActiveBoostWindowInfo, type ActiveCoopEventInfo, type ActiveDealSlotInfo, type ActiveEventInfo, type ActiveSeasonInfo, type ActiveTimedBoost, type AdConsentSettings, type AdConsentState, type AdCreditsData, type AdDailyData, type AdFraudFlags, type AdFrequencyCappingSettings, type AdPendingRequest, type AdPlacementDefinition, type AdPlacementUserState, type AdProviderDefinition, type AdSessionData, AdType, type AdUnitConfig, type AdVerificationSettings, type AddQuestProgressResponse, type AdvertisingDefinitions, type AppOpenSettings, AttackOutcome, type AttackResponse, type AttributionInput, type AuthContext, AuthType, AuthenticationAction, type AuthenticationRequest, AuthenticationService, BannerPosition, type BannerSettings, type BaseRequest, type BatchDeleteUserCustomDataResponse, type BatchGetPublicUserCustomDataResponse, type BatchItemResult, type BatchResponse, type BatchSetUserCustomDataResponse, type BattleResult, type BattleStepConfig, type BlockchainAccountSafetyPolicy, BlockchainAction, type BlockchainConfigResponse, type BlockchainDefinitions, type BlockchainNetworkDefinition, BlockchainNetworkType, type BlockchainNftCollectionBinding, BlockchainOperationCategory, type BlockchainRequest, BlockchainService, type BlockchainStats, type BlockchainSystemState, BlockchainTransactionStatus, BlockchainTransactionType, type BoardLoopDefinition, type BoardLoopState, type BoardPendingInteraction, type BoardRollResponse, BodyPart, type BoostTriggerCounter, BoostWindowKind, BroadcastStatus, type BuildResponse, type BuildingState, type CancelMatchResponse, type CancelTradeOfferResponse, type ChangeUsernameResponse, CharacterAction, type CharacterClassification, type CharacterDefinition, type CharacterDefinitions, type CharacterEquipment, type CharacterEquipmentSlot, type CharacterIdentity, type CharacterLevelDefinition, type CharacterLevelRef, type CharacterModel, type CharacterRequest, CharacterService, type CharacterStatRef, type CharacterUnequipResult, type CharacterUnlock, type ClaimAllRewardsBatchResponse, type ClaimAllRewardsResult, type ClaimComebackRewardResponse, type ClaimCycleRewardResponse, type ClaimCycleRewardsBatchResponse, type ClaimDailyRewardResponse, type ClaimDealMilestoneResponse, type ClaimDealMilestonesBatchResponse, type ClaimGrandPrizeResponse, type ClaimGroupCompletionRewardResponse, type ClaimInviteRewardResponse, type ClaimLeaderboardMilestoneResponse, type ClaimLeaderboardMilestonesBatchResponse, type ClaimMilestoneRewardResponse, type ClaimMilestoneRewardsBatchResponse, type ClaimMilestonesBatchResponse, type ClaimQuestRewardResponse, type ClaimQuestRewardsBatchResponse, type ClaimRewardResponse, type ClaimSetRewardResponse, type ClaimSetRewardsBatchResponse, type ClaimTierRewardResponse, type ClientState, CloudCodeAction, CloudCodeErrorCode, type CloudCodeLogEntry, CloudCodeLogLevel, type CloudCodeRequest, CloudCodeRevisionSelection, CloudCodeService, type CodeExecutionError, type CollectIdleAccrualResponse, CollectionAction, type CollectionDefinitions, type CollectionRequest, CollectionService, type CollectionSetRef, type CollectionTradeOfferDocument, CommissionSink, type CommunityChestClaimResponse, type CommunityChestGroupDocument, type CommunityChestGroupStateResponse, type CommunityChestHistoryEntry, type CommunityChestLeaveResponse, type CommunityChestMember, CommunityChestMemberStatus, type CommunityChestSharedState, CommunityChestStatus, type CommunityChestUserStateResponse, type ConfirmWithdrawalResponse, type ConversionDailyCounter, ConversionRateMode, type ConversionTarget, type ConvertResponse, type CoopBuildObjectsMemberState, type CoopBuildObjectsState, type CoopClaimRewardResponse, CoopEventAction, type CoopEventDefinitions, type CoopEventRequest, CoopEventService, type CoopGroupDocument, type CoopGroupMember, type CoopGroupStateResponse, CoopGroupStatus, type CoopLeaveGroupResponse, CoopMemberStatus, type CoopPartnerObjectState, type CoopSpinResponse, type CoopUserStateResponse, CraftAction, type CraftDefinitions, type CraftDefinitionsResponse, type CraftRequest, type CraftResponse, CraftService, type CraftSingleResult, CraftType, type CreateMatchResponse, type CryptoConvertResponse, type CryptoCurrencyDefinition, type CryptoCurrencyPermissions, type CryptoLimits, type CryptoNetworkBinding, CurrencyAction, type CurrencyAudit, type CurrencyConversion, type CurrencyDefinitions, type CurrencyRequest, CurrencyService, CurrencyStatus, CurrencyType, CustomDataBucket, CustomDataValueType, CustomDataWriter, type CyclicSchedule, DEFAULT_BASE_URL, type DailyUsageRecord, type DealMilestoneProgressInfo, DealNodeRuntimeStatus, DealOfferAction, DealOfferActivationStatus, type DealOfferDefinitions, type DealOfferRequest, DealOfferService, type DealOffersDefinitionResponse, type DeclineTradeOfferResponse, type DepositNFTResponse, type DepositTokenResponse, type DismissDealResponse, type DonationResponse, EnvelopeType, type EquipItemsResponse, type EquipSlotPair, type EquipmentPreset, type EquipmentSlot, type EquippedItem, type EventMap, type EventMilestoneClaimResponse, type EventTokenAddress, type EventTokenConversion, type EventTokenDefinition, type EventTokenGrantResponse, type EventTokenOperation, type EventTokenSpendResponse, EventTokenType, type ExecuteCloudCodeResponse, type ExecuteNodeResponse, type ExperimentDefinition, type ExperimentDefinitions, type ExperimentVariant, type ExperimentVariantCondition, type FodderConsumedEntry, FodderSelectionMode, FodderValuationMode, type FriendActionResponse, FriendActionStatus, type FriendPublicProfile, type FriendsListResponse, GameLoopAction, type GameLoopDefinitions, type GameLoopRequest, GameLoopService, type GetActiveBoostWindowsResponse, type GetActiveDealsResponse, type GetActiveEventsResponse, type GetActiveTimedBoostsResponse, type GetCharactersResponse, type GetLeaderboardResponse, type GetLeaderboardsBatchResponse, type GetMatchDefinitionsResponse, type GetMilestoneRewardMultiplierResponse, type GetMyProgressResponse, type GetMyUserCustomDataResponse, type GetOverviewBatchResponse, type GetProgressBatchResponse, type GetPublicUserCustomDataResponse, type GetTradeOffersResponse, type GetUserQuestStateResponse, type GrantStatusTokensResponse, type GrantTokensBatchResponse, type GrantedCollectible, type HeistCell, IDosGamesClient, type IDosGamesClientConfig, IDosGamesData, type IDosGamesSettings, type IceServer, type InstantBattleDefinitions, type InstantBattleResponse, type InstantBattleRule, type InterstitialSettings, type InventoryDelta, ItemAction, type ItemCatalog, type ItemDefinition, type ItemDefinitions, type ItemEquipment, type ItemMetadata, type ItemRequest, ItemService, type ItemStats, type ItemTotals, type ItemUpgrade, type ItemUpgradeFodder, type ItemUpgradeRef, type JsonValue, KeyValueStorage, KycStatus, KycTier, LeaderboardAction, type LeaderboardDefinitions, type LeaderboardMilestoneRef, type LeaderboardOverview, type LeaderboardRequest, type LeaderboardScoreRef, LeaderboardService, type LeaderboardUserEntry, type LeaveRoomResponse, type LevelsPreset, type LimitSpec, type LinkedWalletInfo, type Listener, LootboxAction, type LootboxAmountRange, type LootboxDefinitions, type LootboxDefinitionsResponse, type LootboxOpenResponse, type LootboxPityRule, type LootboxPityTriggerResponse, type LootboxRequest, type LootboxRewardRoll, type LootboxRewardSlot, LootboxService, type LootboxSupplyRule, type MailboxBroadcastDocument, type MailboxDefinition, type MailboxMessageDocument, MailboxMessageSource, MailboxMessageStatus, type MailboxMessageTypeDefinition, type MailboxSegmentDefinition, MarketGoodsType, MarketOfferStatus, MarketOfferType, MarketplaceAction, type MarketplaceActionCounter, type MarketplaceAuctionSettings, type MarketplaceAuctionState, type MarketplaceBidRefund, type MarketplaceBrowseResponse, type MarketplaceBuyOrderSettings, type MarketplaceCommissionOverride, type MarketplaceCommissionPolicy, type MarketplaceCreateOfferResponse, type MarketplaceDefinitions, type MarketplaceDirectTradeSettings, type MarketplaceGetDefinitionsResponse, type MarketplaceGroupedOfferView, type MarketplaceGroupedOffersResponse, type MarketplaceHistoryEntryView, type MarketplaceHistoryResponse, type MarketplaceListingSettings, type MarketplaceMatchingSettings, type MarketplaceMyStateResponse, type MarketplaceOfferResponse, type MarketplaceOfferView, type MarketplacePlaceBidResponse, type MarketplacePricePolicy, type MarketplaceRequest, MarketplaceService, type MarketplaceSettlementResponse, type MarketplaceTradabilityPolicy, MatchAction, type MatchDefinitions, type MatchRequest, MatchService, MatchStatus, type MatchesPageResponse, type MilestoneClaimRef, type MilestoneDefinition, MultiplayerAction, MultiplayerChatMode, type MultiplayerDefinitions, type MultiplayerRequest, MultiplayerService, type MultiplayerSystemState, MultiplayerTopology, type NFTModel, type NFTNetworkBinding, type NFTTransactionDocument, type NFTWithdrawalResponse, type NftCollectionStats, type NftStatsContainer, type OpenCollectionChestResponse, type OpenPackResponse, type OperationFailure, type OperationFailureReason, type OperationResult, type OperationSuccess, type PendingWithdrawalRef, PlatformAdapter, type PlatformBlockchainState, type PlatformLoginResponse, type PlayerEconomyTuningState, type PollResponse, PremiumAction, type PremiumAdReduction, type PremiumDefinitions, type PremiumDefinitionsResponse, type PremiumPurchaseResponse, type PremiumRequest, PremiumService, type PremiumStateResponse, type PremiumSubscription, type PublishResponse, type PurchaseBatchResponse, type PvPMatch, QuestAction, type QuestClaimRef, type QuestDefinitions, QuestObjectiveSource, type QuestPointsTrackView, QuestPrerequisiteMode, type QuestProgressUpdate, type QuestRequest, QuestService, QuestStatus, RaidMode, type RaidResponse, type RealtimeEnvelope, type RechargeConfig, type RecordShowResponse, ReferralAction, type ReferralDefinitions, type ReferralDefinitionsResponse, type ReferralInviteRewardState, type ReferralRequest, ReferralService, type RelativeWindow, type ResourceBundle, type ResourceConsume, type ResourceDualPartyResult, type ResourceEntry, ResourceEntryType, type ResourceGrant, type ResourceOperation, type ResourceTransferResult, type RetryWithdrawalResponse, RewardAction, type RewardDefinitions, type RewardDefinitionsResponse, type RewardRequest, RewardService, type RewardedVideoSettings, type RollActionData, type RoomListItem, type RoomMemberView, type RoomSnapshotResponse, RoomVisibility, type RoomsPageResponse, type ScheduleChain, type ScheduleChainPhase, ScheduleMode, type ScheduleSpec, type ScheduledWindow, type SdkEvents, SeasonAction, type SeasonDefinitions, type SeasonRequest, SeasonService, type SeasonTierRewardBundle, type SeasonTierRewardMultiplier, type SeasonTierRewardSet, type SegmentGate, type SendTradeOfferResponse, type SetUserCustomDataResponse, type SettingsInput, SocialAction, type SocialRequest, SocialService, type SocialTimelineEvent, type SolanaWithdrawalSignature, type SpecialApplyMultiplierResponse, SpecialChoiceMode, type SpecialChooseResponse, type SpecialClaimResponse, type SpecialModeOfferData, type SpecialPendingState, type SpendRewardDefinition, type SpendTokensBatchResponse, type StatDefinition, type StatRequirement, type StatsPreset, StoreAction, type StoreDefinitions, type StorePurchaseRef, type StorePurchaseResponse, type StorePurchaseState, type StoreRequest, StoreService, StoreType, type SubmitScoreResponse, type SubmitScoresBatchResponse, type SuccessResponse, TimedBoostAction, type TimedBoostDefinitions, type TimedBoostRequest, TimedBoostService, TimedBoostStackingPolicy, TimedEventAction, type TimedEventDefinitions, type TimedEventGrantRef, type TimedEventInstanceRef, type TimedEventMilestoneRef, type TimedEventRequest, TimedEventService, type TimedEventSpendRef, TimelineEventType, type TimelineResponse, TitleAction, TitleConfig, type TitleCustomData, type TitleCustomDataResponse, type TitlePublicConfigurationModel, type TitlePublicData, type TitleRequest, TitleService, type TokenCurrencyStats, type TokenStatsContainer, type TokenTransactionDocument, type TokenWithdrawalResponse, TradeOfferStatus, TransactionDirection, type TransactionHistoryResponse, type TriggerContext, type TriggerSource, TypedEmitter, type UnequipAllCharactersResponse, type UnequipItemsResponse, type UnlockCharacterResponse, type UnlockCharactersBatchResponse, type UnstackableItemInstanceState, type Unsubscribe, type UpdateMatchResponse, type UpgradeCharacterLevelResponse, type UpgradeCharacterLevelsBatchResponse, type UpgradeItemLevelResponse, type UpgradeLevelsBatchResponse, type UpgradeLevelsOptions, type UpgradeStatLevelResponse, type UpgradeStatLevelsBatchResponse, type UsageReactivationEvent, type UsageTimeStats, type UseCollectibleJokerResponse, UserAction, type UserAdvertisingState, type UserBlockchainState, type UserBlockchainStateResponse, type UserCharactersState, type UserClaimRewardState, type UserCollectionState, type UserComebackState, type UserCommunityChestState, type UserCoopEventState, type UserCryptoComplianceCounters, type UserCryptoCurrencyState, UserCustomDataAction, type UserCustomDataBatchDeleteItem, type UserCustomDataBatchSetItem, type UserCustomDataDefinitions, type UserCustomDataKeyDefinition, type UserCustomDataRecord, type UserCustomDataRequest, UserCustomDataService, type UserCustomDataState, type UserDailyCalendarState, type UserDailyCounters, UserData, type UserDealNodeLifetimeCounts, type UserDealNodeState, type UserDealOfferActivationState, type UserDealOfferHistory, type UserDealOffersState, type UserDealOffersStateResponse, type UserDealSlotState, type UserDealTrackState, type UserDepositAddress, type UserEventTokenProgress, type UserEventTokensState, type UserGameLoopsState, type UserIdleAccrualState, type UserInventoryState, type UserKycState, type UserLeaderboardProgress, type UserLeaderboardsState, type UserLootboxPityCounter, type UserLootboxState, type UserMailboxState, type UserMarketplaceState, type UserMatchCreationLimitState, type UserMatchState, type UserPremiumState, type UserPublicDataModel, type UserQuestCycleState, type UserQuestObjectiveProgress, type UserQuestProgress, type UserQuestState, type UserReferralState, type UserReferralStateResponse, type UserRequest, type UserRewardState, type UserRewardsStateResponse, type UserSeasonState, type UserSeasonStateResponse, type UserSeasonsState, UserService, type UserSocialState, type UserState, type UserStoreState, type UserTimedBoostsState, type UserTimedEventStateResponse, type UserUsageState, type UserVirtualCurrencyState, type VirtualCurrencyDefinition, type VirtualCurrencyEconomy, type VirtualCurrencyPermissions, type WalletChallengeResponse, WalletLinkType, type WithdrawalSignatureResponse, createIDosGamesClient, isFail, isOk, normalizeBlockchainCategory };
|
|
4334
|
+
export { type AcceptTradeOfferResponse, type ActivateReferralCodeResponse, type ActivateTimedBoostResponse, type ActiveBoostWindowInfo, type ActiveCoopEventInfo, type ActiveDealSlotInfo, type ActiveEventInfo, type ActiveSeasonInfo, type ActiveTimedBoost, type AdConsentSettings, type AdConsentState, type AdCreditsData, type AdDailyData, type AdFraudFlags, type AdFrequencyCappingSettings, type AdPendingRequest, type AdPlacementDefinition, type AdPlacementUserState, type AdProviderDefinition, type AdSessionData, AdType, type AdUnitConfig, type AdVerificationSettings, type AddQuestProgressResponse, type AdvertisingDefinitions, type AppOpenSettings, AttackOutcome, type AttackResponse, type AttributionInput, type AuthContext, AuthType, AuthenticationAction, type AuthenticationRequest, AuthenticationService, BannerPosition, type BannerSettings, type BaseRequest, type BatchDeleteUserCustomDataResponse, type BatchGetPublicUserCustomDataResponse, type BatchItemResult, type BatchResponse, type BatchSetUserCustomDataResponse, type BattleResult, type BattleStepConfig, type BlockchainAccountSafetyPolicy, BlockchainAction, type BlockchainConfigResponse, type BlockchainDefinitions, type BlockchainNetworkDefinition, BlockchainNetworkType, type BlockchainNftCollectionBinding, BlockchainOperationCategory, type BlockchainRequest, BlockchainService, type BlockchainStats, type BlockchainSystemState, BlockchainTransactionStatus, BlockchainTransactionType, type BoardLoopDefinition, type BoardLoopState, type BoardPendingInteraction, type BoardRollResponse, BodyPart, type BoostTriggerCounter, BoostWindowKind, BroadcastStatus, type BuildResponse, type BuildingState, type CancelMatchResponse, type CancelTradeOfferResponse, type ChangeUsernameResponse, CharacterAction, type CharacterClassification, type CharacterDefinition, type CharacterDefinitions, type CharacterEquipment, type CharacterEquipmentSlot, type CharacterIdentity, type CharacterLevelDefinition, type CharacterLevelRef, type CharacterModel, type CharacterRequest, CharacterService, type CharacterStatRef, type CharacterUnequipResult, type CharacterUnlock, type ClaimAllRewardsBatchResponse, type ClaimAllRewardsResult, type ClaimComebackRewardResponse, type ClaimCycleRewardResponse, type ClaimCycleRewardsBatchResponse, type ClaimDailyRewardResponse, type ClaimDealMilestoneResponse, type ClaimDealMilestonesBatchResponse, type ClaimGrandPrizeResponse, type ClaimGroupCompletionRewardResponse, type ClaimInviteRewardResponse, type ClaimLeaderboardMilestoneResponse, type ClaimLeaderboardMilestonesBatchResponse, type ClaimMilestoneRewardResponse, type ClaimMilestoneRewardsBatchResponse, type ClaimMilestonesBatchResponse, type ClaimQuestRewardResponse, type ClaimQuestRewardsBatchResponse, type ClaimRewardResponse, type ClaimSetRewardResponse, type ClaimSetRewardsBatchResponse, type ClaimTierRewardResponse, type ClientState, CloudCodeAction, CloudCodeErrorCode, type CloudCodeLogEntry, CloudCodeLogLevel, type CloudCodeRequest, CloudCodeRevisionSelection, CloudCodeService, type CodeExecutionError, type CollectIdleAccrualResponse, CollectionAction, type CollectionDefinitions, type CollectionRequest, CollectionService, type CollectionSetRef, type CollectionTradeOfferDocument, CommissionSink, type CommunityChestClaimResponse, type CommunityChestGroupDocument, type CommunityChestGroupStateResponse, type CommunityChestHistoryEntry, type CommunityChestLeaveResponse, type CommunityChestMember, CommunityChestMemberStatus, type CommunityChestSharedState, CommunityChestStatus, type CommunityChestUserStateResponse, type ConfirmWithdrawalResponse, type ConversionDailyCounter, ConversionRateMode, type ConversionTarget, type ConvertResponse, type CoopBuildObjectsMemberState, type CoopBuildObjectsState, type CoopClaimRewardResponse, CoopEventAction, type CoopEventDefinitions, type CoopEventRequest, CoopEventService, type CoopGroupDocument, type CoopGroupMember, type CoopGroupStateResponse, CoopGroupStatus, type CoopLeaveGroupResponse, CoopMemberStatus, type CoopPartnerObjectState, type CoopSpinResponse, type CoopUserStateResponse, CraftAction, type CraftDefinitions, type CraftDefinitionsResponse, type CraftRequest, type CraftResponse, CraftService, type CraftSingleResult, CraftType, type CreateMatchResponse, type CryptoConvertResponse, type CryptoCurrencyDefinition, type CryptoCurrencyPermissions, type CryptoLimits, type CryptoNetworkBinding, CurrencyAction, type CurrencyAudit, type CurrencyConversion, type CurrencyDefinitions, type CurrencyRequest, CurrencyService, CurrencyStatus, CurrencyType, CustomDataBucket, CustomDataValueType, CustomDataWriter, type CyclicSchedule, DEFAULT_BASE_URL, type DailyUsageRecord, type DealMilestoneProgressInfo, DealNodeRuntimeStatus, DealOfferAction, DealOfferActivationStatus, type DealOfferDefinitions, type DealOfferRequest, DealOfferService, type DealOffersDefinitionResponse, type DeclineTradeOfferResponse, type DepositNFTResponse, type DepositTokenResponse, type DismissDealResponse, type DonationResponse, EnvelopeType, type EquipItemsResponse, type EquipSlotPair, type EquipmentPreset, type EquipmentSlot, type EquippedItem, type EventMap, type EventMilestoneClaimResponse, type EventTokenAddress, type EventTokenConversion, type EventTokenDefinition, type EventTokenGrantResponse, type EventTokenOperation, type EventTokenSpendResponse, EventTokenType, type ExecuteCloudCodeResponse, type ExecuteNodeResponse, type ExperimentDefinition, type ExperimentDefinitions, type ExperimentVariant, type ExperimentVariantCondition, type FodderConsumedEntry, FodderSelectionMode, FodderValuationMode, type FriendActionResponse, FriendActionStatus, type FriendPublicProfile, type FriendsListResponse, GameLoopAction, type GameLoopDefinitions, type GameLoopRequest, GameLoopService, type GetActiveBoostWindowsResponse, type GetActiveDealsResponse, type GetActiveEventsResponse, type GetActiveTimedBoostsResponse, type GetCharactersResponse, type GetLeaderboardResponse, type GetLeaderboardsBatchResponse, type GetMatchDefinitionsResponse, type GetMilestoneRewardMultiplierResponse, type GetMyProgressResponse, type GetMyUserCustomDataResponse, type GetOverviewBatchResponse, type GetProgressBatchResponse, type GetPublicTitleDataResponse, type GetPublicUserCustomDataResponse, type GetTradeOffersResponse, type GetUserQuestStateResponse, type GrantStatusTokensResponse, type GrantTokensBatchResponse, type GrantedCollectible, type HeistCell, IDosGamesClient, type IDosGamesClientConfig, IDosGamesData, type IDosGamesSettings, type IceServer, type InstantBattleDefinitions, type InstantBattleResponse, type InstantBattleRule, type InterstitialSettings, type InventoryDelta, ItemAction, type ItemCatalog, type ItemDefinition, type ItemDefinitions, type ItemEquipment, type ItemMetadata, type ItemRequest, ItemService, type ItemStats, type ItemTotals, type ItemUpgrade, type ItemUpgradeFodder, type ItemUpgradeRef, type JsonValue, KeyValueStorage, KycStatus, KycTier, LeaderboardAction, type LeaderboardDefinitions, type LeaderboardMilestoneRef, type LeaderboardOverview, type LeaderboardRequest, type LeaderboardScoreRef, LeaderboardService, type LeaderboardUserEntry, type LeaveRoomResponse, type LevelsPreset, type LimitSpec, type LinkedWalletInfo, type Listener, LootboxAction, type LootboxAmountRange, type LootboxDefinitions, type LootboxDefinitionsResponse, type LootboxOpenResponse, type LootboxPityRule, type LootboxPityTriggerResponse, type LootboxRequest, type LootboxRewardRoll, type LootboxRewardSlot, LootboxService, type LootboxSupplyRule, type MailboxBroadcastDocument, type MailboxDefinition, type MailboxMessageDocument, MailboxMessageSource, MailboxMessageStatus, type MailboxMessageTypeDefinition, type MailboxSegmentDefinition, MarketGoodsType, MarketOfferStatus, MarketOfferType, MarketplaceAction, type MarketplaceActionCounter, type MarketplaceAuctionSettings, type MarketplaceAuctionState, type MarketplaceBidRefund, type MarketplaceBrowseResponse, type MarketplaceBuyOrderSettings, type MarketplaceCommissionOverride, type MarketplaceCommissionPolicy, type MarketplaceCreateOfferResponse, type MarketplaceDefinitions, type MarketplaceDirectTradeSettings, type MarketplaceGetDefinitionsResponse, type MarketplaceGroupedOfferView, type MarketplaceGroupedOffersResponse, type MarketplaceHistoryEntryView, type MarketplaceHistoryResponse, type MarketplaceListingSettings, type MarketplaceMatchingSettings, type MarketplaceMyStateResponse, type MarketplaceOfferResponse, type MarketplaceOfferView, type MarketplacePlaceBidResponse, type MarketplacePricePolicy, type MarketplaceRequest, MarketplaceService, type MarketplaceSettlementResponse, type MarketplaceTradabilityPolicy, MatchAction, type MatchDefinitions, type MatchRequest, MatchService, MatchStatus, type MatchesPageResponse, type MilestoneClaimRef, type MilestoneDefinition, MultiplayerAction, MultiplayerChatMode, type MultiplayerDefinitions, type MultiplayerRequest, MultiplayerService, type MultiplayerSystemState, MultiplayerTopology, type NFTModel, type NFTNetworkBinding, type NFTTransactionDocument, type NFTWithdrawalResponse, type NftCollectionStats, type NftStatsContainer, type OpenCollectionChestResponse, type OpenPackResponse, type OperationFailure, type OperationFailureReason, type OperationResult, type OperationSuccess, type PendingWithdrawalRef, PlatformAdapter, type PlatformBlockchainState, type PlatformLoginResponse, type PlayerEconomyTuningState, type PollResponse, PremiumAction, type PremiumAdReduction, type PremiumDefinitions, type PremiumDefinitionsResponse, type PremiumPurchaseResponse, type PremiumRequest, PremiumService, type PremiumStateResponse, type PremiumSubscription, type PublishResponse, type PurchaseBatchResponse, type PvPMatch, QuestAction, type QuestClaimRef, type QuestCycleDefinition, type QuestDefinition, type QuestDefinitions, type QuestGroupCompletionDefinition, type QuestObjectiveDefinition, QuestObjectiveSource, type QuestPhaseDefinition, type QuestPointsTrackView, QuestPrerequisiteMode, type QuestPresetBindings, type QuestPresetRegistry, type QuestProgressUpdate, type QuestRequest, QuestService, QuestStatus, RaidMode, type RaidResponse, type RealtimeEnvelope, type RechargeConfig, type RecordShowResponse, ReferralAction, type ReferralDefinitions, type ReferralDefinitionsResponse, type ReferralInviteRewardState, type ReferralRequest, ReferralService, type RelativeWindow, type ResourceBundle, type ResourceConsume, type ResourceDualPartyResult, type ResourceEntry, ResourceEntryType, type ResourceGrant, type ResourceOperation, type ResourceTransferResult, type RetryWithdrawalResponse, RewardAction, type RewardDefinitions, type RewardDefinitionsResponse, type RewardRequest, RewardService, type RewardedVideoSettings, type RollActionData, type RoomListItem, type RoomMemberView, type RoomSnapshotResponse, RoomVisibility, type RoomsPageResponse, type ScheduleChain, type ScheduleChainPhase, ScheduleMode, type ScheduleSpec, type ScheduledWindow, type SdkEvents, SeasonAction, type SeasonDefinitions, type SeasonRequest, SeasonService, type SeasonTierRewardBundle, type SeasonTierRewardMultiplier, type SeasonTierRewardSet, type SegmentGate, type SendTradeOfferResponse, type SetUserCustomDataResponse, type SettingsInput, SocialAction, type SocialRequest, SocialService, type SocialTimelineEvent, type SolanaWithdrawalSignature, type SpecialApplyMultiplierResponse, SpecialChoiceMode, type SpecialChooseResponse, type SpecialClaimResponse, type SpecialModeOfferData, type SpecialPendingState, type SpendRewardDefinition, type SpendTokensBatchResponse, type StatDefinition, type StatRequirement, type StatsPreset, StoreAction, type StoreDefinitions, type StorePurchaseRef, type StorePurchaseResponse, type StorePurchaseState, type StoreRequest, StoreService, StoreType, type SubmitScoreResponse, type SubmitScoresBatchResponse, type SuccessResponse, TimedBoostAction, type TimedBoostDefinitions, type TimedBoostRequest, TimedBoostService, TimedBoostStackingPolicy, TimedEventAction, type TimedEventDefinitions, type TimedEventGrantRef, type TimedEventInstanceRef, type TimedEventMilestoneRef, type TimedEventRequest, TimedEventService, type TimedEventSpendRef, TimelineEventType, type TimelineResponse, TitleAction, TitleConfig, TitleCustomDataAction, type TitleCustomDataDefinitions, type TitleCustomDataKeyDefinition, type TitleCustomDataRecord, type TitleCustomDataRequest, TitleCustomDataService, TitleDataBucket, TitleDataScope, type TitlePublicConfigurationModel, type TitleRequest, TitleService, type TokenCurrencyStats, type TokenStatsContainer, type TokenTransactionDocument, type TokenWithdrawalResponse, TradeOfferStatus, TransactionDirection, type TransactionHistoryResponse, type TriggerContext, type TriggerSource, TypedEmitter, type UnequipAllCharactersResponse, type UnequipItemsResponse, type UnlockCharacterResponse, type UnlockCharactersBatchResponse, type UnstackableItemInstanceState, type Unsubscribe, type UpdateMatchResponse, type UpgradeCharacterLevelResponse, type UpgradeCharacterLevelsBatchResponse, type UpgradeItemLevelResponse, type UpgradeLevelsBatchResponse, type UpgradeLevelsOptions, type UpgradeStatLevelResponse, type UpgradeStatLevelsBatchResponse, type UsageReactivationEvent, type UsageTimeStats, type UseCollectibleJokerResponse, UserAction, type UserAdvertisingState, type UserBlockchainState, type UserBlockchainStateResponse, type UserCharactersState, type UserClaimRewardState, type UserCollectionState, type UserComebackState, type UserCommunityChestState, type UserCoopEventState, type UserCryptoComplianceCounters, type UserCryptoCurrencyState, UserCustomDataAction, type UserCustomDataBatchDeleteItem, type UserCustomDataBatchSetItem, type UserCustomDataDefinitions, type UserCustomDataKeyDefinition, type UserCustomDataRecord, type UserCustomDataRequest, UserCustomDataService, type UserCustomDataState, type UserDailyCalendarState, type UserDailyCounters, UserData, type UserDealNodeLifetimeCounts, type UserDealNodeState, type UserDealOfferActivationState, type UserDealOfferHistory, type UserDealOffersState, type UserDealOffersStateResponse, type UserDealSlotState, type UserDealTrackState, type UserDepositAddress, type UserEventTokenProgress, type UserEventTokensState, type UserGameLoopsState, type UserIdleAccrualState, type UserInventoryState, type UserKycState, type UserLeaderboardProgress, type UserLeaderboardsState, type UserLootboxPityCounter, type UserLootboxState, type UserMailboxState, type UserMarketplaceState, type UserMatchCreationLimitState, type UserMatchState, type UserPremiumState, type UserPublicDataModel, type UserQuestCycleState, type UserQuestObjectiveProgress, type UserQuestProgress, type UserQuestState, type UserReferralState, type UserReferralStateResponse, type UserRequest, type UserRewardState, type UserRewardsStateResponse, type UserSeasonState, type UserSeasonStateResponse, type UserSeasonsState, UserService, type UserSocialState, type UserState, type UserStoreState, type UserTimedBoostsState, type UserTimedEventStateResponse, type UserUsageState, type UserVirtualCurrencyState, type VirtualCurrencyDefinition, type VirtualCurrencyEconomy, type VirtualCurrencyPermissions, type WalletChallengeResponse, WalletLinkType, type WithdrawalSignatureResponse, createIDosGamesClient, isFail, isOk, normalizeBlockchainCategory };
|