async-playfab-web-sdk 1.192.250526-1 → 1.192.250526-2
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/Addon.js +4 -448
- package/dist/Addon.js.map +1 -1
- package/dist/Admin.js +4 -1108
- package/dist/Admin.js.map +1 -1
- package/dist/Authentication.js +4 -286
- package/dist/Authentication.js.map +1 -1
- package/dist/Client.js +4 -1889
- package/dist/Client.js.map +1 -1
- package/dist/CloudScript.js +4 -345
- package/dist/CloudScript.js.map +1 -1
- package/dist/Data.js +4 -287
- package/dist/Data.js.map +1 -1
- package/dist/Economy.js +4 -610
- package/dist/Economy.js.map +1 -1
- package/dist/Events.js +4 -323
- package/dist/Events.js.map +1 -1
- package/dist/Experimentation.js +4 -329
- package/dist/Experimentation.js.map +1 -1
- package/dist/Groups.js +4 -413
- package/dist/Groups.js.map +1 -1
- package/dist/Insights.js +4 -282
- package/dist/Insights.js.map +1 -1
- package/dist/Localization.js +4 -245
- package/dist/Localization.js.map +1 -1
- package/dist/Multiplayer.js +4 -858
- package/dist/Multiplayer.js.map +1 -1
- package/dist/Profiles.js +4 -302
- package/dist/Profiles.js.map +1 -1
- package/dist/Progression.js +4 -400
- package/dist/Progression.js.map +1 -1
- package/dist/Server.js +4 -1373
- package/dist/Server.js.map +1 -1
- package/dist/chunk-2NRPVFSH.js +632 -0
- package/dist/chunk-2NRPVFSH.js.map +1 -0
- package/dist/chunk-42AWSTMK.js +103 -0
- package/dist/chunk-42AWSTMK.js.map +1 -0
- package/dist/chunk-5AAYYQU7.js +119 -0
- package/dist/chunk-5AAYYQU7.js.map +1 -0
- package/dist/chunk-7VP4SIOQ.js +76 -0
- package/dist/chunk-7VP4SIOQ.js.map +1 -0
- package/dist/chunk-BZECCU2H.js +1147 -0
- package/dist/chunk-BZECCU2H.js.map +1 -0
- package/dist/chunk-CDBIRT6V.js +187 -0
- package/dist/chunk-CDBIRT6V.js.map +1 -0
- package/dist/chunk-CY3H2GBI.js +239 -0
- package/dist/chunk-CY3H2GBI.js.map +1 -0
- package/dist/chunk-D53KEX67.js +19 -0
- package/dist/chunk-D53KEX67.js.map +1 -0
- package/dist/chunk-EY77H23H.js +174 -0
- package/dist/chunk-EY77H23H.js.map +1 -0
- package/dist/chunk-FPCXHDA7.js +882 -0
- package/dist/chunk-FPCXHDA7.js.map +1 -0
- package/dist/chunk-JRE75IDS.js +97 -0
- package/dist/chunk-JRE75IDS.js.map +1 -0
- package/dist/chunk-QCCQJDCR.js +1663 -0
- package/dist/chunk-QCCQJDCR.js.map +1 -0
- package/dist/chunk-RHQFG2EP.js +384 -0
- package/dist/chunk-RHQFG2EP.js.map +1 -0
- package/dist/chunk-RODJAJP2.js +56 -0
- package/dist/chunk-RODJAJP2.js.map +1 -0
- package/dist/chunk-V56QSAWL.js +60 -0
- package/dist/chunk-V56QSAWL.js.map +1 -0
- package/dist/chunk-VTCQRNBL.js +61 -0
- package/dist/chunk-VTCQRNBL.js.map +1 -0
- package/dist/chunk-ZY56RXKC.js +222 -0
- package/dist/chunk-ZY56RXKC.js.map +1 -0
- package/dist/index.js +49 -5988
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
@@ -0,0 +1,61 @@
|
|
1
|
+
import {
|
2
|
+
PlayFabCommon
|
3
|
+
} from "./chunk-CY3H2GBI.js";
|
4
|
+
|
5
|
+
// src/apis/PlayFabDataApi.ts
|
6
|
+
var PlayFabDataApi = class extends PlayFabCommon {
|
7
|
+
/**
|
8
|
+
* Abort pending file uploads to an entity's profile.
|
9
|
+
* https://docs.microsoft.com/rest/api/playfab/data/file/abortfileuploads
|
10
|
+
*/
|
11
|
+
AbortFileUploads(request, customData, extraHeaders) {
|
12
|
+
return this.ExecuteRequestWrapper("/File/AbortFileUploads", request, "X-EntityToken", customData, extraHeaders);
|
13
|
+
}
|
14
|
+
/**
|
15
|
+
* Delete files on an entity's profile.
|
16
|
+
* https://docs.microsoft.com/rest/api/playfab/data/file/deletefiles
|
17
|
+
*/
|
18
|
+
DeleteFiles(request, customData, extraHeaders) {
|
19
|
+
return this.ExecuteRequestWrapper("/File/DeleteFiles", request, "X-EntityToken", customData, extraHeaders);
|
20
|
+
}
|
21
|
+
/**
|
22
|
+
* Finalize file uploads to an entity's profile.
|
23
|
+
* https://docs.microsoft.com/rest/api/playfab/data/file/finalizefileuploads
|
24
|
+
*/
|
25
|
+
FinalizeFileUploads(request, customData, extraHeaders) {
|
26
|
+
return this.ExecuteRequestWrapper("/File/FinalizeFileUploads", request, "X-EntityToken", customData, extraHeaders);
|
27
|
+
}
|
28
|
+
/**
|
29
|
+
* Retrieves file metadata from an entity's profile.
|
30
|
+
* https://docs.microsoft.com/rest/api/playfab/data/file/getfiles
|
31
|
+
*/
|
32
|
+
GetFiles(request, customData, extraHeaders) {
|
33
|
+
return this.ExecuteRequestWrapper("/File/GetFiles", request, "X-EntityToken", customData, extraHeaders);
|
34
|
+
}
|
35
|
+
/**
|
36
|
+
* Retrieves objects from an entity's profile.
|
37
|
+
* https://docs.microsoft.com/rest/api/playfab/data/object/getobjects
|
38
|
+
*/
|
39
|
+
GetObjects(request, customData, extraHeaders) {
|
40
|
+
return this.ExecuteRequestWrapper("/Object/GetObjects", request, "X-EntityToken", customData, extraHeaders);
|
41
|
+
}
|
42
|
+
/**
|
43
|
+
* Initiates file uploads to an entity's profile.
|
44
|
+
* https://docs.microsoft.com/rest/api/playfab/data/file/initiatefileuploads
|
45
|
+
*/
|
46
|
+
InitiateFileUploads(request, customData, extraHeaders) {
|
47
|
+
return this.ExecuteRequestWrapper("/File/InitiateFileUploads", request, "X-EntityToken", customData, extraHeaders);
|
48
|
+
}
|
49
|
+
/**
|
50
|
+
* Sets objects on an entity's profile.
|
51
|
+
* https://docs.microsoft.com/rest/api/playfab/data/object/setobjects
|
52
|
+
*/
|
53
|
+
SetObjects(request, customData, extraHeaders) {
|
54
|
+
return this.ExecuteRequestWrapper("/Object/SetObjects", request, "X-EntityToken", customData, extraHeaders);
|
55
|
+
}
|
56
|
+
};
|
57
|
+
|
58
|
+
export {
|
59
|
+
PlayFabDataApi
|
60
|
+
};
|
61
|
+
//# sourceMappingURL=chunk-VTCQRNBL.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"sources":["../src/apis/PlayFabDataApi.ts"],"sourcesContent":["import type {\n\n AbortFileUploadsRequest,\n DeleteFilesRequest,\n FinalizeFileUploadsRequest,\n GetFilesRequest,\n GetObjectsRequest,\n InitiateFileUploadsRequest,\n SetObjectsRequest,\n AbortFileUploadsResponse,\n DeleteFilesResponse,\n FinalizeFileUploadsResponse,\n GetFilesResponse,\n GetObjectsResponse,\n InitiateFileUploadsResponse,\n SetObjectsResponse,\n} from \"../types/PlayFabDataApi\";\nimport { PlayFabCommon } from \"../PlayFabCommon\";\n\nexport default class PlayFabDataApi extends PlayFabCommon {\n\n /**\n * Abort pending file uploads to an entity's profile.\n * https://docs.microsoft.com/rest/api/playfab/data/file/abortfileuploads\n */\n AbortFileUploads (request: AbortFileUploadsRequest, customData?: any, extraHeaders?: Record<string, string>) {\n return this.ExecuteRequestWrapper<AbortFileUploadsResponse>(\"/File/AbortFileUploads\", request, \"X-EntityToken\", customData, extraHeaders);\n }\n\n /**\n * Delete files on an entity's profile.\n * https://docs.microsoft.com/rest/api/playfab/data/file/deletefiles\n */\n DeleteFiles (request: DeleteFilesRequest, customData?: any, extraHeaders?: Record<string, string>) {\n return this.ExecuteRequestWrapper<DeleteFilesResponse>(\"/File/DeleteFiles\", request, \"X-EntityToken\", customData, extraHeaders);\n }\n\n /**\n * Finalize file uploads to an entity's profile.\n * https://docs.microsoft.com/rest/api/playfab/data/file/finalizefileuploads\n */\n FinalizeFileUploads (request: FinalizeFileUploadsRequest, customData?: any, extraHeaders?: Record<string, string>) {\n return this.ExecuteRequestWrapper<FinalizeFileUploadsResponse>(\"/File/FinalizeFileUploads\", request, \"X-EntityToken\", customData, extraHeaders);\n }\n\n /**\n * Retrieves file metadata from an entity's profile.\n * https://docs.microsoft.com/rest/api/playfab/data/file/getfiles\n */\n GetFiles (request: GetFilesRequest, customData?: any, extraHeaders?: Record<string, string>) {\n return this.ExecuteRequestWrapper<GetFilesResponse>(\"/File/GetFiles\", request, \"X-EntityToken\", customData, extraHeaders);\n }\n\n /**\n * Retrieves objects from an entity's profile.\n * https://docs.microsoft.com/rest/api/playfab/data/object/getobjects\n */\n GetObjects (request: GetObjectsRequest, customData?: any, extraHeaders?: Record<string, string>) {\n return this.ExecuteRequestWrapper<GetObjectsResponse>(\"/Object/GetObjects\", request, \"X-EntityToken\", customData, extraHeaders);\n }\n\n /**\n * Initiates file uploads to an entity's profile.\n * https://docs.microsoft.com/rest/api/playfab/data/file/initiatefileuploads\n */\n InitiateFileUploads (request: InitiateFileUploadsRequest, customData?: any, extraHeaders?: Record<string, string>) {\n return this.ExecuteRequestWrapper<InitiateFileUploadsResponse>(\"/File/InitiateFileUploads\", request, \"X-EntityToken\", customData, extraHeaders);\n }\n\n /**\n * Sets objects on an entity's profile.\n * https://docs.microsoft.com/rest/api/playfab/data/object/setobjects\n */\n SetObjects (request: SetObjectsRequest, customData?: any, extraHeaders?: Record<string, string>) {\n return this.ExecuteRequestWrapper<SetObjectsResponse>(\"/Object/SetObjects\", request, \"X-EntityToken\", customData, extraHeaders);\n }\n\n};\n"],"mappings":";;;;;AAmBA,IAAqB,iBAArB,cAA4C,cAAc;AAAA;AAAA;AAAA;AAAA;AAAA,EAMtD,iBAAkB,SAAkC,YAAkB,cAAuC;AACzG,WAAO,KAAK,sBAAgD,0BAA0B,SAAS,iBAAiB,YAAY,YAAY;AAAA,EAC5I;AAAA;AAAA;AAAA;AAAA;AAAA,EAMA,YAAa,SAA6B,YAAkB,cAAuC;AAC/F,WAAO,KAAK,sBAA2C,qBAAqB,SAAS,iBAAiB,YAAY,YAAY;AAAA,EAClI;AAAA;AAAA;AAAA;AAAA;AAAA,EAMA,oBAAqB,SAAqC,YAAkB,cAAuC;AAC/G,WAAO,KAAK,sBAAmD,6BAA6B,SAAS,iBAAiB,YAAY,YAAY;AAAA,EAClJ;AAAA;AAAA;AAAA;AAAA;AAAA,EAMA,SAAU,SAA0B,YAAkB,cAAuC;AACzF,WAAO,KAAK,sBAAwC,kBAAkB,SAAS,iBAAiB,YAAY,YAAY;AAAA,EAC5H;AAAA;AAAA;AAAA;AAAA;AAAA,EAMA,WAAY,SAA4B,YAAkB,cAAuC;AAC7F,WAAO,KAAK,sBAA0C,sBAAsB,SAAS,iBAAiB,YAAY,YAAY;AAAA,EAClI;AAAA;AAAA;AAAA;AAAA;AAAA,EAMA,oBAAqB,SAAqC,YAAkB,cAAuC;AAC/G,WAAO,KAAK,sBAAmD,6BAA6B,SAAS,iBAAiB,YAAY,YAAY;AAAA,EAClJ;AAAA;AAAA;AAAA;AAAA;AAAA,EAMA,WAAY,SAA4B,YAAkB,cAAuC;AAC7F,WAAO,KAAK,sBAA0C,sBAAsB,SAAS,iBAAiB,YAAY,YAAY;AAAA,EAClI;AAEJ;","names":[]}
|
@@ -0,0 +1,222 @@
|
|
1
|
+
import {
|
2
|
+
PlayFabCommon
|
3
|
+
} from "./chunk-CY3H2GBI.js";
|
4
|
+
|
5
|
+
// src/apis/PlayFabAddonApi.ts
|
6
|
+
var PlayFabAddonApi = class extends PlayFabCommon {
|
7
|
+
/**
|
8
|
+
* Creates the Apple addon on a title, or updates it if it already exists.
|
9
|
+
* https://docs.microsoft.com/rest/api/playfab/addon/addon/createorupdateapple
|
10
|
+
*/
|
11
|
+
CreateOrUpdateApple(request, customData, extraHeaders) {
|
12
|
+
return this.ExecuteRequestWrapper("/Addon/CreateOrUpdateApple", request, "X-EntityToken", customData, extraHeaders);
|
13
|
+
}
|
14
|
+
/**
|
15
|
+
* Creates the Facebook addon on a title, or updates it if it already exists.
|
16
|
+
* https://docs.microsoft.com/rest/api/playfab/addon/addon/createorupdatefacebook
|
17
|
+
*/
|
18
|
+
CreateOrUpdateFacebook(request, customData, extraHeaders) {
|
19
|
+
return this.ExecuteRequestWrapper("/Addon/CreateOrUpdateFacebook", request, "X-EntityToken", customData, extraHeaders);
|
20
|
+
}
|
21
|
+
/**
|
22
|
+
* Creates the Facebook Instant Games addon on a title, or updates it if it already exists.
|
23
|
+
* https://docs.microsoft.com/rest/api/playfab/addon/addon/createorupdatefacebookinstantgames
|
24
|
+
*/
|
25
|
+
CreateOrUpdateFacebookInstantGames(request, customData, extraHeaders) {
|
26
|
+
return this.ExecuteRequestWrapper("/Addon/CreateOrUpdateFacebookInstantGames", request, "X-EntityToken", customData, extraHeaders);
|
27
|
+
}
|
28
|
+
/**
|
29
|
+
* Creates the Google addon on a title, or updates it if it already exists.
|
30
|
+
* https://docs.microsoft.com/rest/api/playfab/addon/addon/createorupdategoogle
|
31
|
+
*/
|
32
|
+
CreateOrUpdateGoogle(request, customData, extraHeaders) {
|
33
|
+
return this.ExecuteRequestWrapper("/Addon/CreateOrUpdateGoogle", request, "X-EntityToken", customData, extraHeaders);
|
34
|
+
}
|
35
|
+
/**
|
36
|
+
* Creates the Kongregate addon on a title, or updates it if it already exists.
|
37
|
+
* https://docs.microsoft.com/rest/api/playfab/addon/addon/createorupdatekongregate
|
38
|
+
*/
|
39
|
+
CreateOrUpdateKongregate(request, customData, extraHeaders) {
|
40
|
+
return this.ExecuteRequestWrapper("/Addon/CreateOrUpdateKongregate", request, "X-EntityToken", customData, extraHeaders);
|
41
|
+
}
|
42
|
+
/**
|
43
|
+
* Creates the Nintendo addon on a title, or updates it if it already exists.
|
44
|
+
* https://docs.microsoft.com/rest/api/playfab/addon/addon/createorupdatenintendo
|
45
|
+
*/
|
46
|
+
CreateOrUpdateNintendo(request, customData, extraHeaders) {
|
47
|
+
return this.ExecuteRequestWrapper("/Addon/CreateOrUpdateNintendo", request, "X-EntityToken", customData, extraHeaders);
|
48
|
+
}
|
49
|
+
/**
|
50
|
+
* Creates the PSN addon on a title, or updates it if it already exists.
|
51
|
+
* https://docs.microsoft.com/rest/api/playfab/addon/addon/createorupdatepsn
|
52
|
+
*/
|
53
|
+
CreateOrUpdatePSN(request, customData, extraHeaders) {
|
54
|
+
return this.ExecuteRequestWrapper("/Addon/CreateOrUpdatePSN", request, "X-EntityToken", customData, extraHeaders);
|
55
|
+
}
|
56
|
+
/**
|
57
|
+
* Creates the Steam addon on a title, or updates it if it already exists.
|
58
|
+
* https://docs.microsoft.com/rest/api/playfab/addon/addon/createorupdatesteam
|
59
|
+
*/
|
60
|
+
CreateOrUpdateSteam(request, customData, extraHeaders) {
|
61
|
+
return this.ExecuteRequestWrapper("/Addon/CreateOrUpdateSteam", request, "X-EntityToken", customData, extraHeaders);
|
62
|
+
}
|
63
|
+
/**
|
64
|
+
* Creates the ToxMod addon on a title, or updates it if it already exists.
|
65
|
+
* https://docs.microsoft.com/rest/api/playfab/addon/addon/createorupdatetoxmod
|
66
|
+
*/
|
67
|
+
CreateOrUpdateToxMod(request, customData, extraHeaders) {
|
68
|
+
return this.ExecuteRequestWrapper("/Addon/CreateOrUpdateToxMod", request, "X-EntityToken", customData, extraHeaders);
|
69
|
+
}
|
70
|
+
/**
|
71
|
+
* Creates the Twitch addon on a title, or updates it if it already exists.
|
72
|
+
* https://docs.microsoft.com/rest/api/playfab/addon/addon/createorupdatetwitch
|
73
|
+
*/
|
74
|
+
CreateOrUpdateTwitch(request, customData, extraHeaders) {
|
75
|
+
return this.ExecuteRequestWrapper("/Addon/CreateOrUpdateTwitch", request, "X-EntityToken", customData, extraHeaders);
|
76
|
+
}
|
77
|
+
/**
|
78
|
+
* Deletes the Apple addon on a title.
|
79
|
+
* https://docs.microsoft.com/rest/api/playfab/addon/addon/deleteapple
|
80
|
+
*/
|
81
|
+
DeleteApple(request, customData, extraHeaders) {
|
82
|
+
return this.ExecuteRequestWrapper("/Addon/DeleteApple", request, "X-EntityToken", customData, extraHeaders);
|
83
|
+
}
|
84
|
+
/**
|
85
|
+
* Deletes the Facebook addon on a title.
|
86
|
+
* https://docs.microsoft.com/rest/api/playfab/addon/addon/deletefacebook
|
87
|
+
*/
|
88
|
+
DeleteFacebook(request, customData, extraHeaders) {
|
89
|
+
return this.ExecuteRequestWrapper("/Addon/DeleteFacebook", request, "X-EntityToken", customData, extraHeaders);
|
90
|
+
}
|
91
|
+
/**
|
92
|
+
* Deletes the Facebook addon on a title.
|
93
|
+
* https://docs.microsoft.com/rest/api/playfab/addon/addon/deletefacebookinstantgames
|
94
|
+
*/
|
95
|
+
DeleteFacebookInstantGames(request, customData, extraHeaders) {
|
96
|
+
return this.ExecuteRequestWrapper("/Addon/DeleteFacebookInstantGames", request, "X-EntityToken", customData, extraHeaders);
|
97
|
+
}
|
98
|
+
/**
|
99
|
+
* Deletes the Google addon on a title.
|
100
|
+
* https://docs.microsoft.com/rest/api/playfab/addon/addon/deletegoogle
|
101
|
+
*/
|
102
|
+
DeleteGoogle(request, customData, extraHeaders) {
|
103
|
+
return this.ExecuteRequestWrapper("/Addon/DeleteGoogle", request, "X-EntityToken", customData, extraHeaders);
|
104
|
+
}
|
105
|
+
/**
|
106
|
+
* Deletes the Kongregate addon on a title.
|
107
|
+
* https://docs.microsoft.com/rest/api/playfab/addon/addon/deletekongregate
|
108
|
+
*/
|
109
|
+
DeleteKongregate(request, customData, extraHeaders) {
|
110
|
+
return this.ExecuteRequestWrapper("/Addon/DeleteKongregate", request, "X-EntityToken", customData, extraHeaders);
|
111
|
+
}
|
112
|
+
/**
|
113
|
+
* Deletes the Nintendo addon on a title.
|
114
|
+
* https://docs.microsoft.com/rest/api/playfab/addon/addon/deletenintendo
|
115
|
+
*/
|
116
|
+
DeleteNintendo(request, customData, extraHeaders) {
|
117
|
+
return this.ExecuteRequestWrapper("/Addon/DeleteNintendo", request, "X-EntityToken", customData, extraHeaders);
|
118
|
+
}
|
119
|
+
/**
|
120
|
+
* Deletes the PSN addon on a title.
|
121
|
+
* https://docs.microsoft.com/rest/api/playfab/addon/addon/deletepsn
|
122
|
+
*/
|
123
|
+
DeletePSN(request, customData, extraHeaders) {
|
124
|
+
return this.ExecuteRequestWrapper("/Addon/DeletePSN", request, "X-EntityToken", customData, extraHeaders);
|
125
|
+
}
|
126
|
+
/**
|
127
|
+
* Deletes the Steam addon on a title.
|
128
|
+
* https://docs.microsoft.com/rest/api/playfab/addon/addon/deletesteam
|
129
|
+
*/
|
130
|
+
DeleteSteam(request, customData, extraHeaders) {
|
131
|
+
return this.ExecuteRequestWrapper("/Addon/DeleteSteam", request, "X-EntityToken", customData, extraHeaders);
|
132
|
+
}
|
133
|
+
/**
|
134
|
+
* Deletes the ToxMod addon on a title.
|
135
|
+
* https://docs.microsoft.com/rest/api/playfab/addon/addon/deletetoxmod
|
136
|
+
*/
|
137
|
+
DeleteToxMod(request, customData, extraHeaders) {
|
138
|
+
return this.ExecuteRequestWrapper("/Addon/DeleteToxMod", request, "X-EntityToken", customData, extraHeaders);
|
139
|
+
}
|
140
|
+
/**
|
141
|
+
* Deletes the Twitch addon on a title.
|
142
|
+
* https://docs.microsoft.com/rest/api/playfab/addon/addon/deletetwitch
|
143
|
+
*/
|
144
|
+
DeleteTwitch(request, customData, extraHeaders) {
|
145
|
+
return this.ExecuteRequestWrapper("/Addon/DeleteTwitch", request, "X-EntityToken", customData, extraHeaders);
|
146
|
+
}
|
147
|
+
/**
|
148
|
+
* Gets information of the Apple addon on a title, omits secrets.
|
149
|
+
* https://docs.microsoft.com/rest/api/playfab/addon/addon/getapple
|
150
|
+
*/
|
151
|
+
GetApple(request, customData, extraHeaders) {
|
152
|
+
return this.ExecuteRequestWrapper("/Addon/GetApple", request, "X-EntityToken", customData, extraHeaders);
|
153
|
+
}
|
154
|
+
/**
|
155
|
+
* Gets information of the Facebook addon on a title, omits secrets.
|
156
|
+
* https://docs.microsoft.com/rest/api/playfab/addon/addon/getfacebook
|
157
|
+
*/
|
158
|
+
GetFacebook(request, customData, extraHeaders) {
|
159
|
+
return this.ExecuteRequestWrapper("/Addon/GetFacebook", request, "X-EntityToken", customData, extraHeaders);
|
160
|
+
}
|
161
|
+
/**
|
162
|
+
* Gets information of the Facebook Instant Games addon on a title, omits secrets.
|
163
|
+
* https://docs.microsoft.com/rest/api/playfab/addon/addon/getfacebookinstantgames
|
164
|
+
*/
|
165
|
+
GetFacebookInstantGames(request, customData, extraHeaders) {
|
166
|
+
return this.ExecuteRequestWrapper("/Addon/GetFacebookInstantGames", request, "X-EntityToken", customData, extraHeaders);
|
167
|
+
}
|
168
|
+
/**
|
169
|
+
* Gets information of the Google addon on a title, omits secrets.
|
170
|
+
* https://docs.microsoft.com/rest/api/playfab/addon/addon/getgoogle
|
171
|
+
*/
|
172
|
+
GetGoogle(request, customData, extraHeaders) {
|
173
|
+
return this.ExecuteRequestWrapper("/Addon/GetGoogle", request, "X-EntityToken", customData, extraHeaders);
|
174
|
+
}
|
175
|
+
/**
|
176
|
+
* Gets information of the Kongregate addon on a title, omits secrets.
|
177
|
+
* https://docs.microsoft.com/rest/api/playfab/addon/addon/getkongregate
|
178
|
+
*/
|
179
|
+
GetKongregate(request, customData, extraHeaders) {
|
180
|
+
return this.ExecuteRequestWrapper("/Addon/GetKongregate", request, "X-EntityToken", customData, extraHeaders);
|
181
|
+
}
|
182
|
+
/**
|
183
|
+
* Gets information of the Nintendo addon on a title, omits secrets.
|
184
|
+
* https://docs.microsoft.com/rest/api/playfab/addon/addon/getnintendo
|
185
|
+
*/
|
186
|
+
GetNintendo(request, customData, extraHeaders) {
|
187
|
+
return this.ExecuteRequestWrapper("/Addon/GetNintendo", request, "X-EntityToken", customData, extraHeaders);
|
188
|
+
}
|
189
|
+
/**
|
190
|
+
* Gets information of the PSN addon on a title, omits secrets.
|
191
|
+
* https://docs.microsoft.com/rest/api/playfab/addon/addon/getpsn
|
192
|
+
*/
|
193
|
+
GetPSN(request, customData, extraHeaders) {
|
194
|
+
return this.ExecuteRequestWrapper("/Addon/GetPSN", request, "X-EntityToken", customData, extraHeaders);
|
195
|
+
}
|
196
|
+
/**
|
197
|
+
* Gets information of the Steam addon on a title, omits secrets.
|
198
|
+
* https://docs.microsoft.com/rest/api/playfab/addon/addon/getsteam
|
199
|
+
*/
|
200
|
+
GetSteam(request, customData, extraHeaders) {
|
201
|
+
return this.ExecuteRequestWrapper("/Addon/GetSteam", request, "X-EntityToken", customData, extraHeaders);
|
202
|
+
}
|
203
|
+
/**
|
204
|
+
* Gets information of the ToxMod addon on a title, omits secrets.
|
205
|
+
* https://docs.microsoft.com/rest/api/playfab/addon/addon/gettoxmod
|
206
|
+
*/
|
207
|
+
GetToxMod(request, customData, extraHeaders) {
|
208
|
+
return this.ExecuteRequestWrapper("/Addon/GetToxMod", request, "X-EntityToken", customData, extraHeaders);
|
209
|
+
}
|
210
|
+
/**
|
211
|
+
* Gets information of the Twitch addon on a title, omits secrets.
|
212
|
+
* https://docs.microsoft.com/rest/api/playfab/addon/addon/gettwitch
|
213
|
+
*/
|
214
|
+
GetTwitch(request, customData, extraHeaders) {
|
215
|
+
return this.ExecuteRequestWrapper("/Addon/GetTwitch", request, "X-EntityToken", customData, extraHeaders);
|
216
|
+
}
|
217
|
+
};
|
218
|
+
|
219
|
+
export {
|
220
|
+
PlayFabAddonApi
|
221
|
+
};
|
222
|
+
//# sourceMappingURL=chunk-ZY56RXKC.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"sources":["../src/apis/PlayFabAddonApi.ts"],"sourcesContent":["import type {\n\n CreateOrUpdateAppleRequest,\n CreateOrUpdateFacebookRequest,\n CreateOrUpdateFacebookInstantGamesRequest,\n CreateOrUpdateGoogleRequest,\n CreateOrUpdateKongregateRequest,\n CreateOrUpdateNintendoRequest,\n CreateOrUpdatePSNRequest,\n CreateOrUpdateSteamRequest,\n CreateOrUpdateToxModRequest,\n CreateOrUpdateTwitchRequest,\n DeleteAppleRequest,\n DeleteFacebookRequest,\n DeleteFacebookInstantGamesRequest,\n DeleteGoogleRequest,\n DeleteKongregateRequest,\n DeleteNintendoRequest,\n DeletePSNRequest,\n DeleteSteamRequest,\n DeleteToxModRequest,\n DeleteTwitchRequest,\n GetAppleRequest,\n GetFacebookRequest,\n GetFacebookInstantGamesRequest,\n GetGoogleRequest,\n GetKongregateRequest,\n GetNintendoRequest,\n GetPSNRequest,\n GetSteamRequest,\n GetToxModRequest,\n GetTwitchRequest,\n CreateOrUpdateAppleResponse,\n CreateOrUpdateFacebookResponse,\n CreateOrUpdateFacebookInstantGamesResponse,\n CreateOrUpdateGoogleResponse,\n CreateOrUpdateKongregateResponse,\n CreateOrUpdateNintendoResponse,\n CreateOrUpdatePSNResponse,\n CreateOrUpdateSteamResponse,\n CreateOrUpdateToxModResponse,\n CreateOrUpdateTwitchResponse,\n DeleteAppleResponse,\n DeleteFacebookResponse,\n DeleteFacebookInstantGamesResponse,\n DeleteGoogleResponse,\n DeleteKongregateResponse,\n DeleteNintendoResponse,\n DeletePSNResponse,\n DeleteSteamResponse,\n DeleteToxModResponse,\n DeleteTwitchResponse,\n GetAppleResponse,\n GetFacebookResponse,\n GetFacebookInstantGamesResponse,\n GetGoogleResponse,\n GetKongregateResponse,\n GetNintendoResponse,\n GetPSNResponse,\n GetSteamResponse,\n GetToxModResponse,\n GetTwitchResponse,\n} from \"../types/PlayFabAddonApi\";\nimport { PlayFabCommon } from \"../PlayFabCommon\";\n\nexport default class PlayFabAddonApi extends PlayFabCommon {\n\n /**\n * Creates the Apple addon on a title, or updates it if it already exists.\n * https://docs.microsoft.com/rest/api/playfab/addon/addon/createorupdateapple\n */\n CreateOrUpdateApple (request: CreateOrUpdateAppleRequest, customData?: any, extraHeaders?: Record<string, string>) {\n return this.ExecuteRequestWrapper<CreateOrUpdateAppleResponse>(\"/Addon/CreateOrUpdateApple\", request, \"X-EntityToken\", customData, extraHeaders);\n }\n\n /**\n * Creates the Facebook addon on a title, or updates it if it already exists.\n * https://docs.microsoft.com/rest/api/playfab/addon/addon/createorupdatefacebook\n */\n CreateOrUpdateFacebook (request: CreateOrUpdateFacebookRequest, customData?: any, extraHeaders?: Record<string, string>) {\n return this.ExecuteRequestWrapper<CreateOrUpdateFacebookResponse>(\"/Addon/CreateOrUpdateFacebook\", request, \"X-EntityToken\", customData, extraHeaders);\n }\n\n /**\n * Creates the Facebook Instant Games addon on a title, or updates it if it already exists.\n * https://docs.microsoft.com/rest/api/playfab/addon/addon/createorupdatefacebookinstantgames\n */\n CreateOrUpdateFacebookInstantGames (request: CreateOrUpdateFacebookInstantGamesRequest, customData?: any, extraHeaders?: Record<string, string>) {\n return this.ExecuteRequestWrapper<CreateOrUpdateFacebookInstantGamesResponse>(\"/Addon/CreateOrUpdateFacebookInstantGames\", request, \"X-EntityToken\", customData, extraHeaders);\n }\n\n /**\n * Creates the Google addon on a title, or updates it if it already exists.\n * https://docs.microsoft.com/rest/api/playfab/addon/addon/createorupdategoogle\n */\n CreateOrUpdateGoogle (request: CreateOrUpdateGoogleRequest, customData?: any, extraHeaders?: Record<string, string>) {\n return this.ExecuteRequestWrapper<CreateOrUpdateGoogleResponse>(\"/Addon/CreateOrUpdateGoogle\", request, \"X-EntityToken\", customData, extraHeaders);\n }\n\n /**\n * Creates the Kongregate addon on a title, or updates it if it already exists.\n * https://docs.microsoft.com/rest/api/playfab/addon/addon/createorupdatekongregate\n */\n CreateOrUpdateKongregate (request: CreateOrUpdateKongregateRequest, customData?: any, extraHeaders?: Record<string, string>) {\n return this.ExecuteRequestWrapper<CreateOrUpdateKongregateResponse>(\"/Addon/CreateOrUpdateKongregate\", request, \"X-EntityToken\", customData, extraHeaders);\n }\n\n /**\n * Creates the Nintendo addon on a title, or updates it if it already exists.\n * https://docs.microsoft.com/rest/api/playfab/addon/addon/createorupdatenintendo\n */\n CreateOrUpdateNintendo (request: CreateOrUpdateNintendoRequest, customData?: any, extraHeaders?: Record<string, string>) {\n return this.ExecuteRequestWrapper<CreateOrUpdateNintendoResponse>(\"/Addon/CreateOrUpdateNintendo\", request, \"X-EntityToken\", customData, extraHeaders);\n }\n\n /**\n * Creates the PSN addon on a title, or updates it if it already exists.\n * https://docs.microsoft.com/rest/api/playfab/addon/addon/createorupdatepsn\n */\n CreateOrUpdatePSN (request: CreateOrUpdatePSNRequest, customData?: any, extraHeaders?: Record<string, string>) {\n return this.ExecuteRequestWrapper<CreateOrUpdatePSNResponse>(\"/Addon/CreateOrUpdatePSN\", request, \"X-EntityToken\", customData, extraHeaders);\n }\n\n /**\n * Creates the Steam addon on a title, or updates it if it already exists.\n * https://docs.microsoft.com/rest/api/playfab/addon/addon/createorupdatesteam\n */\n CreateOrUpdateSteam (request: CreateOrUpdateSteamRequest, customData?: any, extraHeaders?: Record<string, string>) {\n return this.ExecuteRequestWrapper<CreateOrUpdateSteamResponse>(\"/Addon/CreateOrUpdateSteam\", request, \"X-EntityToken\", customData, extraHeaders);\n }\n\n /**\n * Creates the ToxMod addon on a title, or updates it if it already exists.\n * https://docs.microsoft.com/rest/api/playfab/addon/addon/createorupdatetoxmod\n */\n CreateOrUpdateToxMod (request: CreateOrUpdateToxModRequest, customData?: any, extraHeaders?: Record<string, string>) {\n return this.ExecuteRequestWrapper<CreateOrUpdateToxModResponse>(\"/Addon/CreateOrUpdateToxMod\", request, \"X-EntityToken\", customData, extraHeaders);\n }\n\n /**\n * Creates the Twitch addon on a title, or updates it if it already exists.\n * https://docs.microsoft.com/rest/api/playfab/addon/addon/createorupdatetwitch\n */\n CreateOrUpdateTwitch (request: CreateOrUpdateTwitchRequest, customData?: any, extraHeaders?: Record<string, string>) {\n return this.ExecuteRequestWrapper<CreateOrUpdateTwitchResponse>(\"/Addon/CreateOrUpdateTwitch\", request, \"X-EntityToken\", customData, extraHeaders);\n }\n\n /**\n * Deletes the Apple addon on a title.\n * https://docs.microsoft.com/rest/api/playfab/addon/addon/deleteapple\n */\n DeleteApple (request: DeleteAppleRequest, customData?: any, extraHeaders?: Record<string, string>) {\n return this.ExecuteRequestWrapper<DeleteAppleResponse>(\"/Addon/DeleteApple\", request, \"X-EntityToken\", customData, extraHeaders);\n }\n\n /**\n * Deletes the Facebook addon on a title.\n * https://docs.microsoft.com/rest/api/playfab/addon/addon/deletefacebook\n */\n DeleteFacebook (request: DeleteFacebookRequest, customData?: any, extraHeaders?: Record<string, string>) {\n return this.ExecuteRequestWrapper<DeleteFacebookResponse>(\"/Addon/DeleteFacebook\", request, \"X-EntityToken\", customData, extraHeaders);\n }\n\n /**\n * Deletes the Facebook addon on a title.\n * https://docs.microsoft.com/rest/api/playfab/addon/addon/deletefacebookinstantgames\n */\n DeleteFacebookInstantGames (request: DeleteFacebookInstantGamesRequest, customData?: any, extraHeaders?: Record<string, string>) {\n return this.ExecuteRequestWrapper<DeleteFacebookInstantGamesResponse>(\"/Addon/DeleteFacebookInstantGames\", request, \"X-EntityToken\", customData, extraHeaders);\n }\n\n /**\n * Deletes the Google addon on a title.\n * https://docs.microsoft.com/rest/api/playfab/addon/addon/deletegoogle\n */\n DeleteGoogle (request: DeleteGoogleRequest, customData?: any, extraHeaders?: Record<string, string>) {\n return this.ExecuteRequestWrapper<DeleteGoogleResponse>(\"/Addon/DeleteGoogle\", request, \"X-EntityToken\", customData, extraHeaders);\n }\n\n /**\n * Deletes the Kongregate addon on a title.\n * https://docs.microsoft.com/rest/api/playfab/addon/addon/deletekongregate\n */\n DeleteKongregate (request: DeleteKongregateRequest, customData?: any, extraHeaders?: Record<string, string>) {\n return this.ExecuteRequestWrapper<DeleteKongregateResponse>(\"/Addon/DeleteKongregate\", request, \"X-EntityToken\", customData, extraHeaders);\n }\n\n /**\n * Deletes the Nintendo addon on a title.\n * https://docs.microsoft.com/rest/api/playfab/addon/addon/deletenintendo\n */\n DeleteNintendo (request: DeleteNintendoRequest, customData?: any, extraHeaders?: Record<string, string>) {\n return this.ExecuteRequestWrapper<DeleteNintendoResponse>(\"/Addon/DeleteNintendo\", request, \"X-EntityToken\", customData, extraHeaders);\n }\n\n /**\n * Deletes the PSN addon on a title.\n * https://docs.microsoft.com/rest/api/playfab/addon/addon/deletepsn\n */\n DeletePSN (request: DeletePSNRequest, customData?: any, extraHeaders?: Record<string, string>) {\n return this.ExecuteRequestWrapper<DeletePSNResponse>(\"/Addon/DeletePSN\", request, \"X-EntityToken\", customData, extraHeaders);\n }\n\n /**\n * Deletes the Steam addon on a title.\n * https://docs.microsoft.com/rest/api/playfab/addon/addon/deletesteam\n */\n DeleteSteam (request: DeleteSteamRequest, customData?: any, extraHeaders?: Record<string, string>) {\n return this.ExecuteRequestWrapper<DeleteSteamResponse>(\"/Addon/DeleteSteam\", request, \"X-EntityToken\", customData, extraHeaders);\n }\n\n /**\n * Deletes the ToxMod addon on a title.\n * https://docs.microsoft.com/rest/api/playfab/addon/addon/deletetoxmod\n */\n DeleteToxMod (request: DeleteToxModRequest, customData?: any, extraHeaders?: Record<string, string>) {\n return this.ExecuteRequestWrapper<DeleteToxModResponse>(\"/Addon/DeleteToxMod\", request, \"X-EntityToken\", customData, extraHeaders);\n }\n\n /**\n * Deletes the Twitch addon on a title.\n * https://docs.microsoft.com/rest/api/playfab/addon/addon/deletetwitch\n */\n DeleteTwitch (request: DeleteTwitchRequest, customData?: any, extraHeaders?: Record<string, string>) {\n return this.ExecuteRequestWrapper<DeleteTwitchResponse>(\"/Addon/DeleteTwitch\", request, \"X-EntityToken\", customData, extraHeaders);\n }\n\n /**\n * Gets information of the Apple addon on a title, omits secrets.\n * https://docs.microsoft.com/rest/api/playfab/addon/addon/getapple\n */\n GetApple (request: GetAppleRequest, customData?: any, extraHeaders?: Record<string, string>) {\n return this.ExecuteRequestWrapper<GetAppleResponse>(\"/Addon/GetApple\", request, \"X-EntityToken\", customData, extraHeaders);\n }\n\n /**\n * Gets information of the Facebook addon on a title, omits secrets.\n * https://docs.microsoft.com/rest/api/playfab/addon/addon/getfacebook\n */\n GetFacebook (request: GetFacebookRequest, customData?: any, extraHeaders?: Record<string, string>) {\n return this.ExecuteRequestWrapper<GetFacebookResponse>(\"/Addon/GetFacebook\", request, \"X-EntityToken\", customData, extraHeaders);\n }\n\n /**\n * Gets information of the Facebook Instant Games addon on a title, omits secrets.\n * https://docs.microsoft.com/rest/api/playfab/addon/addon/getfacebookinstantgames\n */\n GetFacebookInstantGames (request: GetFacebookInstantGamesRequest, customData?: any, extraHeaders?: Record<string, string>) {\n return this.ExecuteRequestWrapper<GetFacebookInstantGamesResponse>(\"/Addon/GetFacebookInstantGames\", request, \"X-EntityToken\", customData, extraHeaders);\n }\n\n /**\n * Gets information of the Google addon on a title, omits secrets.\n * https://docs.microsoft.com/rest/api/playfab/addon/addon/getgoogle\n */\n GetGoogle (request: GetGoogleRequest, customData?: any, extraHeaders?: Record<string, string>) {\n return this.ExecuteRequestWrapper<GetGoogleResponse>(\"/Addon/GetGoogle\", request, \"X-EntityToken\", customData, extraHeaders);\n }\n\n /**\n * Gets information of the Kongregate addon on a title, omits secrets.\n * https://docs.microsoft.com/rest/api/playfab/addon/addon/getkongregate\n */\n GetKongregate (request: GetKongregateRequest, customData?: any, extraHeaders?: Record<string, string>) {\n return this.ExecuteRequestWrapper<GetKongregateResponse>(\"/Addon/GetKongregate\", request, \"X-EntityToken\", customData, extraHeaders);\n }\n\n /**\n * Gets information of the Nintendo addon on a title, omits secrets.\n * https://docs.microsoft.com/rest/api/playfab/addon/addon/getnintendo\n */\n GetNintendo (request: GetNintendoRequest, customData?: any, extraHeaders?: Record<string, string>) {\n return this.ExecuteRequestWrapper<GetNintendoResponse>(\"/Addon/GetNintendo\", request, \"X-EntityToken\", customData, extraHeaders);\n }\n\n /**\n * Gets information of the PSN addon on a title, omits secrets.\n * https://docs.microsoft.com/rest/api/playfab/addon/addon/getpsn\n */\n GetPSN (request: GetPSNRequest, customData?: any, extraHeaders?: Record<string, string>) {\n return this.ExecuteRequestWrapper<GetPSNResponse>(\"/Addon/GetPSN\", request, \"X-EntityToken\", customData, extraHeaders);\n }\n\n /**\n * Gets information of the Steam addon on a title, omits secrets.\n * https://docs.microsoft.com/rest/api/playfab/addon/addon/getsteam\n */\n GetSteam (request: GetSteamRequest, customData?: any, extraHeaders?: Record<string, string>) {\n return this.ExecuteRequestWrapper<GetSteamResponse>(\"/Addon/GetSteam\", request, \"X-EntityToken\", customData, extraHeaders);\n }\n\n /**\n * Gets information of the ToxMod addon on a title, omits secrets.\n * https://docs.microsoft.com/rest/api/playfab/addon/addon/gettoxmod\n */\n GetToxMod (request: GetToxModRequest, customData?: any, extraHeaders?: Record<string, string>) {\n return this.ExecuteRequestWrapper<GetToxModResponse>(\"/Addon/GetToxMod\", request, \"X-EntityToken\", customData, extraHeaders);\n }\n\n /**\n * Gets information of the Twitch addon on a title, omits secrets.\n * https://docs.microsoft.com/rest/api/playfab/addon/addon/gettwitch\n */\n GetTwitch (request: GetTwitchRequest, customData?: any, extraHeaders?: Record<string, string>) {\n return this.ExecuteRequestWrapper<GetTwitchResponse>(\"/Addon/GetTwitch\", request, \"X-EntityToken\", customData, extraHeaders);\n }\n\n};\n"],"mappings":"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","names":[]}
|