swcombine-sdk 2.2.3 → 3.0.0-beta.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/cjs/auth/scopes.js +328 -79
- package/dist/cjs/auth/scopes.js.map +1 -1
- package/dist/cjs/http/HttpClient.js +6 -9
- package/dist/cjs/http/HttpClient.js.map +1 -1
- package/dist/cjs/index.js +4 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/pagination/Page.js +48 -0
- package/dist/cjs/pagination/Page.js.map +1 -0
- package/dist/cjs/resources/BaseResource.js +28 -0
- package/dist/cjs/resources/BaseResource.js.map +1 -1
- package/dist/cjs/resources/CharacterResource.js +41 -21
- package/dist/cjs/resources/CharacterResource.js.map +1 -1
- package/dist/cjs/resources/DatacardResource.js +20 -7
- package/dist/cjs/resources/DatacardResource.js.map +1 -1
- package/dist/cjs/resources/EventsResource.js +34 -22
- package/dist/cjs/resources/EventsResource.js.map +1 -1
- package/dist/cjs/resources/FactionResource.js +96 -75
- package/dist/cjs/resources/FactionResource.js.map +1 -1
- package/dist/cjs/resources/GalaxyResource.js +81 -53
- package/dist/cjs/resources/GalaxyResource.js.map +1 -1
- package/dist/cjs/resources/InventoryResource.js +29 -28
- package/dist/cjs/resources/InventoryResource.js.map +1 -1
- package/dist/cjs/resources/MarketResource.js +15 -6
- package/dist/cjs/resources/MarketResource.js.map +1 -1
- package/dist/cjs/resources/NewsResource.js +68 -92
- package/dist/cjs/resources/NewsResource.js.map +1 -1
- package/dist/cjs/resources/TypesResource.js +41 -67
- package/dist/cjs/resources/TypesResource.js.map +1 -1
- package/dist/esm/auth/scopes.js +328 -79
- package/dist/esm/auth/scopes.js.map +1 -1
- package/dist/esm/http/HttpClient.js +6 -9
- package/dist/esm/http/HttpClient.js.map +1 -1
- package/dist/esm/index.js +2 -0
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/pagination/Page.js +44 -0
- package/dist/esm/pagination/Page.js.map +1 -0
- package/dist/esm/resources/BaseResource.js +28 -0
- package/dist/esm/resources/BaseResource.js.map +1 -1
- package/dist/esm/resources/CharacterResource.js +41 -21
- package/dist/esm/resources/CharacterResource.js.map +1 -1
- package/dist/esm/resources/DatacardResource.js +20 -7
- package/dist/esm/resources/DatacardResource.js.map +1 -1
- package/dist/esm/resources/EventsResource.js +34 -22
- package/dist/esm/resources/EventsResource.js.map +1 -1
- package/dist/esm/resources/FactionResource.js +96 -75
- package/dist/esm/resources/FactionResource.js.map +1 -1
- package/dist/esm/resources/GalaxyResource.js +81 -53
- package/dist/esm/resources/GalaxyResource.js.map +1 -1
- package/dist/esm/resources/InventoryResource.js +29 -28
- package/dist/esm/resources/InventoryResource.js.map +1 -1
- package/dist/esm/resources/MarketResource.js +15 -6
- package/dist/esm/resources/MarketResource.js.map +1 -1
- package/dist/esm/resources/NewsResource.js +68 -92
- package/dist/esm/resources/NewsResource.js.map +1 -1
- package/dist/esm/resources/TypesResource.js +41 -67
- package/dist/esm/resources/TypesResource.js.map +1 -1
- package/dist/types/auth/scopes.d.ts +654 -81
- package/dist/types/auth/scopes.d.ts.map +1 -1
- package/dist/types/http/HttpClient.d.ts.map +1 -1
- package/dist/types/index.d.ts +1 -0
- package/dist/types/index.d.ts.map +1 -1
- package/dist/types/pagination/Page.d.ts +32 -0
- package/dist/types/pagination/Page.d.ts.map +1 -0
- package/dist/types/resources/BaseResource.d.ts +15 -0
- package/dist/types/resources/BaseResource.d.ts.map +1 -1
- package/dist/types/resources/CharacterResource.d.ts +17 -6
- package/dist/types/resources/CharacterResource.d.ts.map +1 -1
- package/dist/types/resources/DatacardResource.d.ts +2 -1
- package/dist/types/resources/DatacardResource.d.ts.map +1 -1
- package/dist/types/resources/EventsResource.d.ts +2 -1
- package/dist/types/resources/EventsResource.d.ts.map +1 -1
- package/dist/types/resources/FactionResource.d.ts +24 -25
- package/dist/types/resources/FactionResource.d.ts.map +1 -1
- package/dist/types/resources/GalaxyResource.d.ts +7 -26
- package/dist/types/resources/GalaxyResource.d.ts.map +1 -1
- package/dist/types/resources/InventoryResource.d.ts +2 -1
- package/dist/types/resources/InventoryResource.d.ts.map +1 -1
- package/dist/types/resources/MarketResource.d.ts +2 -1
- package/dist/types/resources/MarketResource.d.ts.map +1 -1
- package/dist/types/resources/NewsResource.d.ts +16 -15
- package/dist/types/resources/NewsResource.d.ts.map +1 -1
- package/dist/types/resources/TypesResource.d.ts +8 -32
- package/dist/types/resources/TypesResource.d.ts.map +1 -1
- package/dist/types/types/index.d.ts +0 -90
- package/dist/types/types/index.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -2,7 +2,8 @@
|
|
|
2
2
|
* OAuth Scopes for SW Combine API
|
|
3
3
|
*
|
|
4
4
|
* This module defines all available OAuth scopes and provides utilities
|
|
5
|
-
* for requesting common scope combinations.
|
|
5
|
+
* for requesting common scope combinations. Scope values mirror the
|
|
6
|
+
* permission names returned by the API permissions catalog.
|
|
6
7
|
*
|
|
7
8
|
* @see https://www.swcombine.com/ws/developers/permissions/
|
|
8
9
|
*/
|
|
@@ -12,9 +13,9 @@
|
|
|
12
13
|
export declare const CharacterScopes: {
|
|
13
14
|
/** Solely provides the character name and ID for use by clients who want to verify a character's identity */
|
|
14
15
|
readonly AUTH: "character_auth";
|
|
15
|
-
/** Read basic character information
|
|
16
|
+
/** Read basic character information.<br/>If your profile is private, this will return unique ID, handle, and image.<br/>If your profile is not private, this will also return your race, gender, last login, description, and biography. */
|
|
16
17
|
readonly READ: "character_read";
|
|
17
|
-
/** Read character HP and XP */
|
|
18
|
+
/** Read information about the character's HP and XP */
|
|
18
19
|
readonly STATS: "character_stats";
|
|
19
20
|
/** Read character privileges */
|
|
20
21
|
readonly PRIVILEGES: "character_privileges";
|
|
@@ -24,138 +25,424 @@ export declare const CharacterScopes: {
|
|
|
24
25
|
readonly CREDITS: "character_credits";
|
|
25
26
|
/** Transfer character credits */
|
|
26
27
|
readonly CREDITS_WRITE: "character_credits_write";
|
|
27
|
-
/** Read character force-related information
|
|
28
|
+
/** Read character force-related information.<br/>If you are Force-aware, this will return Master or Student where applicable, as well as FP, FXP, regen rate, and Force Meter. */
|
|
28
29
|
readonly FORCE: "character_force";
|
|
29
|
-
/** Read location
|
|
30
|
+
/** Read your location in-game */
|
|
30
31
|
readonly LOCATION: "character_location";
|
|
31
|
-
/** Read
|
|
32
|
+
/** Read the characters' events */
|
|
32
33
|
readonly EVENTS: "character_events";
|
|
33
|
-
/** Access all character information
|
|
34
|
+
/** Access all character information */
|
|
34
35
|
readonly ALL: "character_all";
|
|
35
36
|
};
|
|
36
37
|
/**
|
|
37
38
|
* Message-related scopes
|
|
38
39
|
*/
|
|
39
40
|
export declare const MessageScopes: {
|
|
40
|
-
/** Read messages */
|
|
41
|
+
/** Read messages sent to or by the character */
|
|
41
42
|
readonly READ: "messages_read";
|
|
42
|
-
/** Send messages */
|
|
43
|
+
/** Send messages to or from the character */
|
|
43
44
|
readonly SEND: "messages_send";
|
|
44
|
-
/** Delete messages */
|
|
45
|
+
/** Delete messages to or from the character */
|
|
45
46
|
readonly DELETE: "messages_delete";
|
|
46
|
-
/**
|
|
47
|
+
/** Read, send and delete messages to or from the character */
|
|
47
48
|
readonly ALL: "messages_all";
|
|
48
49
|
};
|
|
49
50
|
/**
|
|
50
51
|
* Personal inventory scopes
|
|
51
52
|
*/
|
|
52
53
|
export declare const PersonalInventoryScopes: {
|
|
53
|
-
/**
|
|
54
|
+
/** Read basic information about your inventories */
|
|
54
55
|
readonly OVERVIEW: "personal_inv_overview";
|
|
55
56
|
/** Personal ship scopes */
|
|
56
|
-
readonly SHIPS:
|
|
57
|
+
readonly SHIPS: {
|
|
58
|
+
/** Read basic information about your ships */
|
|
59
|
+
readonly READ: "personal_inv_ships_read";
|
|
60
|
+
/** Rename your ships */
|
|
61
|
+
readonly RENAME: "personal_inv_ships_rename";
|
|
62
|
+
/** Assign your ships */
|
|
63
|
+
readonly ASSIGN: "personal_inv_ships_assign";
|
|
64
|
+
/** Make over your ships */
|
|
65
|
+
readonly MAKEOVER: "personal_inv_ships_makeover";
|
|
66
|
+
/** Read the tags assigned to your ships */
|
|
67
|
+
readonly TAGS_READ: "personal_inv_ships_tags_read";
|
|
68
|
+
/** Modify the tags assigned to your ships */
|
|
69
|
+
readonly TAGS_WRITE: "personal_inv_ships_tags_write";
|
|
70
|
+
/** Access and change anything in your ship inventory */
|
|
71
|
+
readonly ALL: "personal_inv_ships_all";
|
|
72
|
+
};
|
|
57
73
|
/** Personal vehicle scopes */
|
|
58
|
-
readonly VEHICLES:
|
|
74
|
+
readonly VEHICLES: {
|
|
75
|
+
/** Read basic information about your vehicles */
|
|
76
|
+
readonly READ: "personal_inv_vehicles_read";
|
|
77
|
+
/** Rename your vehicles */
|
|
78
|
+
readonly RENAME: "personal_inv_vehicles_rename";
|
|
79
|
+
/** Assign your vehicles */
|
|
80
|
+
readonly ASSIGN: "personal_inv_vehicles_assign";
|
|
81
|
+
/** Make over your vehicles */
|
|
82
|
+
readonly MAKEOVER: "personal_inv_vehicles_makeover";
|
|
83
|
+
/** Read the tags assigned to your vehicles */
|
|
84
|
+
readonly TAGS_READ: "personal_inv_vehicles_tags_read";
|
|
85
|
+
/** Modify the tags assigned to your vehicles */
|
|
86
|
+
readonly TAGS_WRITE: "personal_inv_vehicles_tags_write";
|
|
87
|
+
/** Access and change anything in your vehicle inventory */
|
|
88
|
+
readonly ALL: "personal_inv_vehicles_all";
|
|
89
|
+
};
|
|
59
90
|
/** Personal station scopes */
|
|
60
|
-
readonly STATIONS:
|
|
91
|
+
readonly STATIONS: {
|
|
92
|
+
/** Read basic information about your space stations */
|
|
93
|
+
readonly READ: "personal_inv_stations_read";
|
|
94
|
+
/** Rename your space stations */
|
|
95
|
+
readonly RENAME: "personal_inv_stations_rename";
|
|
96
|
+
/** Assign your space stations */
|
|
97
|
+
readonly ASSIGN: "personal_inv_stations_assign";
|
|
98
|
+
/** Make over your space stations */
|
|
99
|
+
readonly MAKEOVER: "personal_inv_stations_makeover";
|
|
100
|
+
/** Read the tags assigned to your space stations */
|
|
101
|
+
readonly TAGS_READ: "personal_inv_stations_tags_read";
|
|
102
|
+
/** Modify the tags assigned to your space stations */
|
|
103
|
+
readonly TAGS_WRITE: "personal_inv_stations_tags_write";
|
|
104
|
+
/** Access and change anything in your space station inventory */
|
|
105
|
+
readonly ALL: "personal_inv_stations_all";
|
|
106
|
+
};
|
|
61
107
|
/** Personal city scopes */
|
|
62
|
-
readonly CITIES:
|
|
108
|
+
readonly CITIES: {
|
|
109
|
+
/** Read basic information about your cities */
|
|
110
|
+
readonly READ: "personal_inv_cities_read";
|
|
111
|
+
/** Rename your cities */
|
|
112
|
+
readonly RENAME: "personal_inv_cities_rename";
|
|
113
|
+
/** Assign your cities */
|
|
114
|
+
readonly ASSIGN: "personal_inv_cities_assign";
|
|
115
|
+
/** Make over your cities */
|
|
116
|
+
readonly MAKEOVER: "personal_inv_cities_makeover";
|
|
117
|
+
/** Read the tags assigned to your cities */
|
|
118
|
+
readonly TAGS_READ: "personal_inv_cities_tags_read";
|
|
119
|
+
/** Modify the tags assigned to your cities */
|
|
120
|
+
readonly TAGS_WRITE: "personal_inv_cities_tags_write";
|
|
121
|
+
/** Access and change anything in your city inventory */
|
|
122
|
+
readonly ALL: "personal_inv_cities_all";
|
|
123
|
+
};
|
|
63
124
|
/** Personal facility scopes */
|
|
64
|
-
readonly FACILITIES:
|
|
125
|
+
readonly FACILITIES: {
|
|
126
|
+
/** Read basic information about your facilities */
|
|
127
|
+
readonly READ: "personal_inv_facilities_read";
|
|
128
|
+
/** Rename your facilities */
|
|
129
|
+
readonly RENAME: "personal_inv_facilities_rename";
|
|
130
|
+
/** Assign your facilities */
|
|
131
|
+
readonly ASSIGN: "personal_inv_facilities_assign";
|
|
132
|
+
/** Make over your facilities */
|
|
133
|
+
readonly MAKEOVER: "personal_inv_facilities_makeover";
|
|
134
|
+
/** Read the tags assigned to your facilities */
|
|
135
|
+
readonly TAGS_READ: "personal_inv_facilities_tags_read";
|
|
136
|
+
/** Modify the tags assigned to your facilities */
|
|
137
|
+
readonly TAGS_WRITE: "personal_inv_facilities_tags_write";
|
|
138
|
+
/** Access and change anything in your facility inventory */
|
|
139
|
+
readonly ALL: "personal_inv_facilities_all";
|
|
140
|
+
};
|
|
65
141
|
/** Personal planet scopes (no RENAME/MAKEOVER) */
|
|
66
|
-
readonly PLANETS:
|
|
142
|
+
readonly PLANETS: {
|
|
143
|
+
/** Read basic information about your planets */
|
|
144
|
+
readonly READ: "personal_inv_planets_read";
|
|
145
|
+
/** Assign your planets */
|
|
146
|
+
readonly ASSIGN: "personal_inv_planets_assign";
|
|
147
|
+
/** Read the tags assigned to your planets */
|
|
148
|
+
readonly TAGS_READ: "personal_inv_planets_tags_read";
|
|
149
|
+
/** Modify the tags assigned to your planets */
|
|
150
|
+
readonly TAGS_WRITE: "personal_inv_planets_tags_write";
|
|
151
|
+
/** Access and change anything in your planet inventory */
|
|
152
|
+
readonly ALL: "personal_inv_planets_all";
|
|
153
|
+
};
|
|
67
154
|
/** Personal item scopes */
|
|
68
|
-
readonly ITEMS:
|
|
155
|
+
readonly ITEMS: {
|
|
156
|
+
/** Read basic information about your items */
|
|
157
|
+
readonly READ: "personal_inv_items_read";
|
|
158
|
+
/** Rename your items */
|
|
159
|
+
readonly RENAME: "personal_inv_items_rename";
|
|
160
|
+
/** Assign your items */
|
|
161
|
+
readonly ASSIGN: "personal_inv_items_assign";
|
|
162
|
+
/** Make over your items */
|
|
163
|
+
readonly MAKEOVER: "personal_inv_items_makeover";
|
|
164
|
+
/** Read the tags assigned to your items */
|
|
165
|
+
readonly TAGS_READ: "personal_inv_items_tags_read";
|
|
166
|
+
/** Modify the tags assigned to your items */
|
|
167
|
+
readonly TAGS_WRITE: "personal_inv_items_tags_write";
|
|
168
|
+
/** Access and change anything in your item inventory */
|
|
169
|
+
readonly ALL: "personal_inv_items_all";
|
|
170
|
+
};
|
|
69
171
|
/** Personal NPC scopes (has MAKEOVER but no RENAME) */
|
|
70
172
|
readonly NPCS: {
|
|
173
|
+
/** Read basic information about your NPCs */
|
|
71
174
|
readonly READ: "personal_inv_npcs_read";
|
|
175
|
+
/** Assign your NPCs */
|
|
72
176
|
readonly ASSIGN: "personal_inv_npcs_assign";
|
|
177
|
+
/** Make over your NPCs */
|
|
73
178
|
readonly MAKEOVER: "personal_inv_npcs_makeover";
|
|
179
|
+
/** Read the tags assigned to your NPCs */
|
|
74
180
|
readonly TAGS_READ: "personal_inv_npcs_tags_read";
|
|
181
|
+
/** Modify the tags assigned to your NPCs */
|
|
75
182
|
readonly TAGS_WRITE: "personal_inv_npcs_tags_write";
|
|
183
|
+
/** Access and change anything in your NPC inventory */
|
|
76
184
|
readonly ALL: "personal_inv_npcs_all";
|
|
77
185
|
};
|
|
78
186
|
/** Personal droid scopes */
|
|
79
|
-
readonly DROIDS:
|
|
187
|
+
readonly DROIDS: {
|
|
188
|
+
/** Read basic information about your droids */
|
|
189
|
+
readonly READ: "personal_inv_droids_read";
|
|
190
|
+
/** Rename your droids */
|
|
191
|
+
readonly RENAME: "personal_inv_droids_rename";
|
|
192
|
+
/** Assign your droids */
|
|
193
|
+
readonly ASSIGN: "personal_inv_droids_assign";
|
|
194
|
+
/** Make over your droids */
|
|
195
|
+
readonly MAKEOVER: "personal_inv_droids_makeover";
|
|
196
|
+
/** Read the tags assigned to your droids */
|
|
197
|
+
readonly TAGS_READ: "personal_inv_droids_tags_read";
|
|
198
|
+
/** Modify the tags assigned to your droids */
|
|
199
|
+
readonly TAGS_WRITE: "personal_inv_droids_tags_write";
|
|
200
|
+
/** Access and change anything in your droid inventory */
|
|
201
|
+
readonly ALL: "personal_inv_droids_all";
|
|
202
|
+
};
|
|
80
203
|
/** Personal material scopes (no ASSIGN) */
|
|
81
204
|
readonly MATERIALS: {
|
|
205
|
+
/** Read basic information about your materials */
|
|
82
206
|
readonly READ: "personal_inv_materials_read";
|
|
207
|
+
/** Rename your materials */
|
|
83
208
|
readonly RENAME: "personal_inv_materials_rename";
|
|
209
|
+
/** Make over your materials */
|
|
84
210
|
readonly MAKEOVER: "personal_inv_materials_makeover";
|
|
211
|
+
/** Read the tags assigned to your materials */
|
|
85
212
|
readonly TAGS_READ: "personal_inv_materials_tags_read";
|
|
213
|
+
/** Modify the tags assigned to your materials */
|
|
86
214
|
readonly TAGS_WRITE: "personal_inv_materials_tags_write";
|
|
215
|
+
/** Access and change anything in your material inventory */
|
|
87
216
|
readonly ALL: "personal_inv_materials_all";
|
|
88
217
|
};
|
|
89
218
|
/** Personal creature scopes */
|
|
90
|
-
readonly CREATURES:
|
|
219
|
+
readonly CREATURES: {
|
|
220
|
+
/** Read basic information about your creatures */
|
|
221
|
+
readonly READ: "personal_inv_creatures_read";
|
|
222
|
+
/** Rename your creatures */
|
|
223
|
+
readonly RENAME: "personal_inv_creatures_rename";
|
|
224
|
+
/** Assign your creatures */
|
|
225
|
+
readonly ASSIGN: "personal_inv_creatures_assign";
|
|
226
|
+
/** Make over your creatures */
|
|
227
|
+
readonly MAKEOVER: "personal_inv_creatures_makeover";
|
|
228
|
+
/** Read the tags assigned to your creatures */
|
|
229
|
+
readonly TAGS_READ: "personal_inv_creatures_tags_read";
|
|
230
|
+
/** Modify the tags assigned to your creatures */
|
|
231
|
+
readonly TAGS_WRITE: "personal_inv_creatures_tags_write";
|
|
232
|
+
/** Access and change anything in your creature inventory */
|
|
233
|
+
readonly ALL: "personal_inv_creatures_all";
|
|
234
|
+
};
|
|
91
235
|
};
|
|
92
236
|
/**
|
|
93
237
|
* Faction management scopes
|
|
94
238
|
*/
|
|
95
239
|
export declare const FactionScopes: {
|
|
96
|
-
/** Read
|
|
240
|
+
/** Read basic information about your faction */
|
|
97
241
|
readonly READ: "faction_read";
|
|
98
|
-
/**
|
|
242
|
+
/** See your faction's members list */
|
|
99
243
|
readonly MEMBERS: "faction_members";
|
|
100
|
-
/**
|
|
244
|
+
/** See the stocks your faction owns */
|
|
101
245
|
readonly STOCKS: "faction_stocks";
|
|
102
|
-
/**
|
|
246
|
+
/** See how many credits your faction owns */
|
|
103
247
|
readonly CREDITS_READ: "faction_credits_read";
|
|
104
|
-
/**
|
|
248
|
+
/** Transfer credits on behalf of your faction */
|
|
105
249
|
readonly CREDITS_WRITE: "faction_credits_write";
|
|
106
|
-
/**
|
|
250
|
+
/** See your faction's budgets */
|
|
107
251
|
readonly BUDGETS_READ: "faction_budgets_read";
|
|
108
|
-
/**
|
|
252
|
+
/** Change your faction's budgets */
|
|
109
253
|
readonly BUDGETS_WRITE: "faction_budgets_write";
|
|
110
|
-
/**
|
|
254
|
+
/** See your faction's datacard assignments */
|
|
111
255
|
readonly DATACARDS_READ: "faction_datacards_read";
|
|
112
|
-
/**
|
|
256
|
+
/** Assign or revoke your faction's datacard assignments */
|
|
113
257
|
readonly DATACARDS_WRITE: "faction_datacards_write";
|
|
114
|
-
/**
|
|
258
|
+
/** Access and change anything in your faction */
|
|
115
259
|
readonly ALL: "faction_all";
|
|
116
260
|
};
|
|
117
261
|
/**
|
|
118
262
|
* Faction inventory scopes
|
|
119
263
|
*/
|
|
120
264
|
export declare const FactionInventoryScopes: {
|
|
121
|
-
/**
|
|
265
|
+
/** Read basic information about your faction's inventories */
|
|
122
266
|
readonly OVERVIEW: "faction_inv_overview";
|
|
123
267
|
/** Faction ship scopes */
|
|
124
|
-
readonly SHIPS:
|
|
268
|
+
readonly SHIPS: {
|
|
269
|
+
/** Read basic information about your faction's ships */
|
|
270
|
+
readonly READ: "faction_inv_ships_read";
|
|
271
|
+
/** Rename your faction's ships */
|
|
272
|
+
readonly RENAME: "faction_inv_ships_rename";
|
|
273
|
+
/** Assign your faction's ships */
|
|
274
|
+
readonly ASSIGN: "faction_inv_ships_assign";
|
|
275
|
+
/** Make over your faction's ships */
|
|
276
|
+
readonly MAKEOVER: "faction_inv_ships_makeover";
|
|
277
|
+
/** Read the tags assigned to your faction's ships */
|
|
278
|
+
readonly TAGS_READ: "faction_inv_ships_tags_read";
|
|
279
|
+
/** Modify the tags assigned to your faction's ships */
|
|
280
|
+
readonly TAGS_WRITE: "faction_inv_ships_tags_write";
|
|
281
|
+
/** Access and change anything in your faction's ship inventory */
|
|
282
|
+
readonly ALL: "faction_inv_ships_all";
|
|
283
|
+
};
|
|
125
284
|
/** Faction vehicle scopes */
|
|
126
|
-
readonly VEHICLES:
|
|
285
|
+
readonly VEHICLES: {
|
|
286
|
+
/** Read basic information about your faction's vehicles */
|
|
287
|
+
readonly READ: "faction_inv_vehicles_read";
|
|
288
|
+
/** Rename your faction's vehicles */
|
|
289
|
+
readonly RENAME: "faction_inv_vehicles_rename";
|
|
290
|
+
/** Assign your faction's vehicles */
|
|
291
|
+
readonly ASSIGN: "faction_inv_vehicles_assign";
|
|
292
|
+
/** Make over your faction's vehicles */
|
|
293
|
+
readonly MAKEOVER: "faction_inv_vehicles_makeover";
|
|
294
|
+
/** Read the tags assigned to your faction's vehicles */
|
|
295
|
+
readonly TAGS_READ: "faction_inv_vehicles_tags_read";
|
|
296
|
+
/** Modify the tags assigned to your faction's vehicles */
|
|
297
|
+
readonly TAGS_WRITE: "faction_inv_vehicles_tags_write";
|
|
298
|
+
/** Access and change anything in your faction's vehicle inventory */
|
|
299
|
+
readonly ALL: "faction_inv_vehicles_all";
|
|
300
|
+
};
|
|
127
301
|
/** Faction station scopes */
|
|
128
|
-
readonly STATIONS:
|
|
302
|
+
readonly STATIONS: {
|
|
303
|
+
/** Read basic information about your faction's space stations */
|
|
304
|
+
readonly READ: "faction_inv_stations_read";
|
|
305
|
+
/** Rename your faction's space stations */
|
|
306
|
+
readonly RENAME: "faction_inv_stations_rename";
|
|
307
|
+
/** Assign your faction's space stations */
|
|
308
|
+
readonly ASSIGN: "faction_inv_stations_assign";
|
|
309
|
+
/** Make over your faction's space stations */
|
|
310
|
+
readonly MAKEOVER: "faction_inv_stations_makeover";
|
|
311
|
+
/** Read the tags assigned to your faction's space stations */
|
|
312
|
+
readonly TAGS_READ: "faction_inv_stations_tags_read";
|
|
313
|
+
/** Modify the tags assigned to your faction's space stations */
|
|
314
|
+
readonly TAGS_WRITE: "faction_inv_stations_tags_write";
|
|
315
|
+
/** Access and change anything in your faction's space station inventory */
|
|
316
|
+
readonly ALL: "faction_inv_stations_all";
|
|
317
|
+
};
|
|
129
318
|
/** Faction city scopes */
|
|
130
|
-
readonly CITIES:
|
|
319
|
+
readonly CITIES: {
|
|
320
|
+
/** Read basic information about your faction's cities */
|
|
321
|
+
readonly READ: "faction_inv_cities_read";
|
|
322
|
+
/** Rename your faction's cities */
|
|
323
|
+
readonly RENAME: "faction_inv_cities_rename";
|
|
324
|
+
/** Assign your faction's cities */
|
|
325
|
+
readonly ASSIGN: "faction_inv_cities_assign";
|
|
326
|
+
/** Make over your faction's cities */
|
|
327
|
+
readonly MAKEOVER: "faction_inv_cities_makeover";
|
|
328
|
+
/** Read the tags assigned to your faction's cities */
|
|
329
|
+
readonly TAGS_READ: "faction_inv_cities_tags_read";
|
|
330
|
+
/** Modify the tags assigned to your faction's cities */
|
|
331
|
+
readonly TAGS_WRITE: "faction_inv_cities_tags_write";
|
|
332
|
+
/** Access and change anything in your faction's city inventory */
|
|
333
|
+
readonly ALL: "faction_inv_cities_all";
|
|
334
|
+
};
|
|
131
335
|
/** Faction facility scopes */
|
|
132
|
-
readonly FACILITIES:
|
|
336
|
+
readonly FACILITIES: {
|
|
337
|
+
/** Read basic information about your faction's facilities */
|
|
338
|
+
readonly READ: "faction_inv_facilities_read";
|
|
339
|
+
/** Rename your faction's facilities */
|
|
340
|
+
readonly RENAME: "faction_inv_facilities_rename";
|
|
341
|
+
/** Assign your faction's facilities */
|
|
342
|
+
readonly ASSIGN: "faction_inv_facilities_assign";
|
|
343
|
+
/** Make over your faction's facilities */
|
|
344
|
+
readonly MAKEOVER: "faction_inv_facilities_makeover";
|
|
345
|
+
/** Read the tags assigned to your faction's facilities */
|
|
346
|
+
readonly TAGS_READ: "faction_inv_facilities_tags_read";
|
|
347
|
+
/** Modify the tags assigned to your faction's facilities */
|
|
348
|
+
readonly TAGS_WRITE: "faction_inv_facilities_tags_write";
|
|
349
|
+
/** Access and change anything in your faction's facility inventory */
|
|
350
|
+
readonly ALL: "faction_inv_facilities_all";
|
|
351
|
+
};
|
|
133
352
|
/** Faction planet scopes (no RENAME/MAKEOVER) */
|
|
134
|
-
readonly PLANETS:
|
|
353
|
+
readonly PLANETS: {
|
|
354
|
+
/** Read basic information about your faction's planets */
|
|
355
|
+
readonly READ: "faction_inv_planets_read";
|
|
356
|
+
/** Assign your faction's planets */
|
|
357
|
+
readonly ASSIGN: "faction_inv_planets_assign";
|
|
358
|
+
/** Read the tags assigned to your faction's planets */
|
|
359
|
+
readonly TAGS_READ: "faction_inv_planets_tags_read";
|
|
360
|
+
/** Modify the tags assigned to your faction's planets */
|
|
361
|
+
readonly TAGS_WRITE: "faction_inv_planets_tags_write";
|
|
362
|
+
/** Access and change anything in your faction's planet inventory */
|
|
363
|
+
readonly ALL: "faction_inv_planets_all";
|
|
364
|
+
};
|
|
135
365
|
/** Faction item scopes */
|
|
136
|
-
readonly ITEMS:
|
|
366
|
+
readonly ITEMS: {
|
|
367
|
+
/** Read basic information about your faction's items */
|
|
368
|
+
readonly READ: "faction_inv_items_read";
|
|
369
|
+
/** Rename your faction's items */
|
|
370
|
+
readonly RENAME: "faction_inv_items_rename";
|
|
371
|
+
/** Assign your faction's items */
|
|
372
|
+
readonly ASSIGN: "faction_inv_items_assign";
|
|
373
|
+
/** Make over your faction's items */
|
|
374
|
+
readonly MAKEOVER: "faction_inv_items_makeover";
|
|
375
|
+
/** Read the tags assigned to your faction's items */
|
|
376
|
+
readonly TAGS_READ: "faction_inv_items_tags_read";
|
|
377
|
+
/** Modify the tags assigned to your faction's items */
|
|
378
|
+
readonly TAGS_WRITE: "faction_inv_items_tags_write";
|
|
379
|
+
/** Access and change anything in your faction's item inventory */
|
|
380
|
+
readonly ALL: "faction_inv_items_all";
|
|
381
|
+
};
|
|
137
382
|
/** Faction NPC scopes (has MAKEOVER but no RENAME) */
|
|
138
383
|
readonly NPCS: {
|
|
384
|
+
/** Read basic information about your faction's NPCs */
|
|
139
385
|
readonly READ: "faction_inv_npcs_read";
|
|
386
|
+
/** Assign your faction's NPCs */
|
|
140
387
|
readonly ASSIGN: "faction_inv_npcs_assign";
|
|
388
|
+
/** Make over your faction's NPCs */
|
|
141
389
|
readonly MAKEOVER: "faction_inv_npcs_makeover";
|
|
390
|
+
/** Read the tags assigned to your faction's NPCs */
|
|
142
391
|
readonly TAGS_READ: "faction_inv_npcs_tags_read";
|
|
392
|
+
/** Modify the tags assigned to your faction's NPCs */
|
|
143
393
|
readonly TAGS_WRITE: "faction_inv_npcs_tags_write";
|
|
394
|
+
/** Access and change anything in your faction's NPC inventory */
|
|
144
395
|
readonly ALL: "faction_inv_npcs_all";
|
|
145
396
|
};
|
|
146
397
|
/** Faction droid scopes */
|
|
147
|
-
readonly DROIDS:
|
|
398
|
+
readonly DROIDS: {
|
|
399
|
+
/** Read basic information about your faction's droids */
|
|
400
|
+
readonly READ: "faction_inv_droids_read";
|
|
401
|
+
/** Rename your faction's droids */
|
|
402
|
+
readonly RENAME: "faction_inv_droids_rename";
|
|
403
|
+
/** Assign your faction's droids */
|
|
404
|
+
readonly ASSIGN: "faction_inv_droids_assign";
|
|
405
|
+
/** Make over your faction's droids */
|
|
406
|
+
readonly MAKEOVER: "faction_inv_droids_makeover";
|
|
407
|
+
/** Read the tags assigned to your faction's droids */
|
|
408
|
+
readonly TAGS_READ: "faction_inv_droids_tags_read";
|
|
409
|
+
/** Modify the tags assigned to your faction's droids */
|
|
410
|
+
readonly TAGS_WRITE: "faction_inv_droids_tags_write";
|
|
411
|
+
/** Access and change anything in your faction's droid inventory */
|
|
412
|
+
readonly ALL: "faction_inv_droids_all";
|
|
413
|
+
};
|
|
148
414
|
/** Faction material scopes (no ASSIGN) */
|
|
149
415
|
readonly MATERIALS: {
|
|
416
|
+
/** Read basic information about your faction's materials */
|
|
150
417
|
readonly READ: "faction_inv_materials_read";
|
|
418
|
+
/** Rename your faction's materials */
|
|
151
419
|
readonly RENAME: "faction_inv_materials_rename";
|
|
420
|
+
/** Make over your faction's materials */
|
|
152
421
|
readonly MAKEOVER: "faction_inv_materials_makeover";
|
|
422
|
+
/** Read the tags assigned to your faction's materials */
|
|
153
423
|
readonly TAGS_READ: "faction_inv_materials_tags_read";
|
|
424
|
+
/** Modify the tags assigned to your faction's materials */
|
|
154
425
|
readonly TAGS_WRITE: "faction_inv_materials_tags_write";
|
|
426
|
+
/** Access and change anything in your faction's material inventory */
|
|
155
427
|
readonly ALL: "faction_inv_materials_all";
|
|
156
428
|
};
|
|
157
429
|
/** Faction creature scopes */
|
|
158
|
-
readonly CREATURES:
|
|
430
|
+
readonly CREATURES: {
|
|
431
|
+
/** Read basic information about your faction's creatures */
|
|
432
|
+
readonly READ: "faction_inv_creatures_read";
|
|
433
|
+
/** Rename your faction's creatures */
|
|
434
|
+
readonly RENAME: "faction_inv_creatures_rename";
|
|
435
|
+
/** Assign your faction's creatures */
|
|
436
|
+
readonly ASSIGN: "faction_inv_creatures_assign";
|
|
437
|
+
/** Make over your faction's creatures */
|
|
438
|
+
readonly MAKEOVER: "faction_inv_creatures_makeover";
|
|
439
|
+
/** Read the tags assigned to your faction's creatures */
|
|
440
|
+
readonly TAGS_READ: "faction_inv_creatures_tags_read";
|
|
441
|
+
/** Modify the tags assigned to your faction's creatures */
|
|
442
|
+
readonly TAGS_WRITE: "faction_inv_creatures_tags_write";
|
|
443
|
+
/** Access and change anything in your faction's creature inventory */
|
|
444
|
+
readonly ALL: "faction_inv_creatures_all";
|
|
445
|
+
};
|
|
159
446
|
};
|
|
160
447
|
/**
|
|
161
448
|
* All available scopes organized by category
|
|
@@ -164,9 +451,9 @@ export declare const Scopes: {
|
|
|
164
451
|
readonly Character: {
|
|
165
452
|
/** Solely provides the character name and ID for use by clients who want to verify a character's identity */
|
|
166
453
|
readonly AUTH: "character_auth";
|
|
167
|
-
/** Read basic character information
|
|
454
|
+
/** Read basic character information.<br/>If your profile is private, this will return unique ID, handle, and image.<br/>If your profile is not private, this will also return your race, gender, last login, description, and biography. */
|
|
168
455
|
readonly READ: "character_read";
|
|
169
|
-
/** Read character HP and XP */
|
|
456
|
+
/** Read information about the character's HP and XP */
|
|
170
457
|
readonly STATS: "character_stats";
|
|
171
458
|
/** Read character privileges */
|
|
172
459
|
readonly PRIVILEGES: "character_privileges";
|
|
@@ -176,126 +463,412 @@ export declare const Scopes: {
|
|
|
176
463
|
readonly CREDITS: "character_credits";
|
|
177
464
|
/** Transfer character credits */
|
|
178
465
|
readonly CREDITS_WRITE: "character_credits_write";
|
|
179
|
-
/** Read character force-related information
|
|
466
|
+
/** Read character force-related information.<br/>If you are Force-aware, this will return Master or Student where applicable, as well as FP, FXP, regen rate, and Force Meter. */
|
|
180
467
|
readonly FORCE: "character_force";
|
|
181
|
-
/** Read location
|
|
468
|
+
/** Read your location in-game */
|
|
182
469
|
readonly LOCATION: "character_location";
|
|
183
|
-
/** Read
|
|
470
|
+
/** Read the characters' events */
|
|
184
471
|
readonly EVENTS: "character_events";
|
|
185
|
-
/** Access all character information
|
|
472
|
+
/** Access all character information */
|
|
186
473
|
readonly ALL: "character_all";
|
|
187
474
|
};
|
|
188
475
|
readonly Messages: {
|
|
189
|
-
/** Read messages */
|
|
476
|
+
/** Read messages sent to or by the character */
|
|
190
477
|
readonly READ: "messages_read";
|
|
191
|
-
/** Send messages */
|
|
478
|
+
/** Send messages to or from the character */
|
|
192
479
|
readonly SEND: "messages_send";
|
|
193
|
-
/** Delete messages */
|
|
480
|
+
/** Delete messages to or from the character */
|
|
194
481
|
readonly DELETE: "messages_delete";
|
|
195
|
-
/**
|
|
482
|
+
/** Read, send and delete messages to or from the character */
|
|
196
483
|
readonly ALL: "messages_all";
|
|
197
484
|
};
|
|
198
485
|
readonly PersonalInventory: {
|
|
199
|
-
/**
|
|
486
|
+
/** Read basic information about your inventories */
|
|
200
487
|
readonly OVERVIEW: "personal_inv_overview";
|
|
201
488
|
/** Personal ship scopes */
|
|
202
|
-
readonly SHIPS:
|
|
489
|
+
readonly SHIPS: {
|
|
490
|
+
/** Read basic information about your ships */
|
|
491
|
+
readonly READ: "personal_inv_ships_read";
|
|
492
|
+
/** Rename your ships */
|
|
493
|
+
readonly RENAME: "personal_inv_ships_rename";
|
|
494
|
+
/** Assign your ships */
|
|
495
|
+
readonly ASSIGN: "personal_inv_ships_assign";
|
|
496
|
+
/** Make over your ships */
|
|
497
|
+
readonly MAKEOVER: "personal_inv_ships_makeover";
|
|
498
|
+
/** Read the tags assigned to your ships */
|
|
499
|
+
readonly TAGS_READ: "personal_inv_ships_tags_read";
|
|
500
|
+
/** Modify the tags assigned to your ships */
|
|
501
|
+
readonly TAGS_WRITE: "personal_inv_ships_tags_write";
|
|
502
|
+
/** Access and change anything in your ship inventory */
|
|
503
|
+
readonly ALL: "personal_inv_ships_all";
|
|
504
|
+
};
|
|
203
505
|
/** Personal vehicle scopes */
|
|
204
|
-
readonly VEHICLES:
|
|
506
|
+
readonly VEHICLES: {
|
|
507
|
+
/** Read basic information about your vehicles */
|
|
508
|
+
readonly READ: "personal_inv_vehicles_read";
|
|
509
|
+
/** Rename your vehicles */
|
|
510
|
+
readonly RENAME: "personal_inv_vehicles_rename";
|
|
511
|
+
/** Assign your vehicles */
|
|
512
|
+
readonly ASSIGN: "personal_inv_vehicles_assign";
|
|
513
|
+
/** Make over your vehicles */
|
|
514
|
+
readonly MAKEOVER: "personal_inv_vehicles_makeover";
|
|
515
|
+
/** Read the tags assigned to your vehicles */
|
|
516
|
+
readonly TAGS_READ: "personal_inv_vehicles_tags_read";
|
|
517
|
+
/** Modify the tags assigned to your vehicles */
|
|
518
|
+
readonly TAGS_WRITE: "personal_inv_vehicles_tags_write";
|
|
519
|
+
/** Access and change anything in your vehicle inventory */
|
|
520
|
+
readonly ALL: "personal_inv_vehicles_all";
|
|
521
|
+
};
|
|
205
522
|
/** Personal station scopes */
|
|
206
|
-
readonly STATIONS:
|
|
523
|
+
readonly STATIONS: {
|
|
524
|
+
/** Read basic information about your space stations */
|
|
525
|
+
readonly READ: "personal_inv_stations_read";
|
|
526
|
+
/** Rename your space stations */
|
|
527
|
+
readonly RENAME: "personal_inv_stations_rename";
|
|
528
|
+
/** Assign your space stations */
|
|
529
|
+
readonly ASSIGN: "personal_inv_stations_assign";
|
|
530
|
+
/** Make over your space stations */
|
|
531
|
+
readonly MAKEOVER: "personal_inv_stations_makeover";
|
|
532
|
+
/** Read the tags assigned to your space stations */
|
|
533
|
+
readonly TAGS_READ: "personal_inv_stations_tags_read";
|
|
534
|
+
/** Modify the tags assigned to your space stations */
|
|
535
|
+
readonly TAGS_WRITE: "personal_inv_stations_tags_write";
|
|
536
|
+
/** Access and change anything in your space station inventory */
|
|
537
|
+
readonly ALL: "personal_inv_stations_all";
|
|
538
|
+
};
|
|
207
539
|
/** Personal city scopes */
|
|
208
|
-
readonly CITIES:
|
|
540
|
+
readonly CITIES: {
|
|
541
|
+
/** Read basic information about your cities */
|
|
542
|
+
readonly READ: "personal_inv_cities_read";
|
|
543
|
+
/** Rename your cities */
|
|
544
|
+
readonly RENAME: "personal_inv_cities_rename";
|
|
545
|
+
/** Assign your cities */
|
|
546
|
+
readonly ASSIGN: "personal_inv_cities_assign";
|
|
547
|
+
/** Make over your cities */
|
|
548
|
+
readonly MAKEOVER: "personal_inv_cities_makeover";
|
|
549
|
+
/** Read the tags assigned to your cities */
|
|
550
|
+
readonly TAGS_READ: "personal_inv_cities_tags_read";
|
|
551
|
+
/** Modify the tags assigned to your cities */
|
|
552
|
+
readonly TAGS_WRITE: "personal_inv_cities_tags_write";
|
|
553
|
+
/** Access and change anything in your city inventory */
|
|
554
|
+
readonly ALL: "personal_inv_cities_all";
|
|
555
|
+
};
|
|
209
556
|
/** Personal facility scopes */
|
|
210
|
-
readonly FACILITIES:
|
|
557
|
+
readonly FACILITIES: {
|
|
558
|
+
/** Read basic information about your facilities */
|
|
559
|
+
readonly READ: "personal_inv_facilities_read";
|
|
560
|
+
/** Rename your facilities */
|
|
561
|
+
readonly RENAME: "personal_inv_facilities_rename";
|
|
562
|
+
/** Assign your facilities */
|
|
563
|
+
readonly ASSIGN: "personal_inv_facilities_assign";
|
|
564
|
+
/** Make over your facilities */
|
|
565
|
+
readonly MAKEOVER: "personal_inv_facilities_makeover";
|
|
566
|
+
/** Read the tags assigned to your facilities */
|
|
567
|
+
readonly TAGS_READ: "personal_inv_facilities_tags_read";
|
|
568
|
+
/** Modify the tags assigned to your facilities */
|
|
569
|
+
readonly TAGS_WRITE: "personal_inv_facilities_tags_write";
|
|
570
|
+
/** Access and change anything in your facility inventory */
|
|
571
|
+
readonly ALL: "personal_inv_facilities_all";
|
|
572
|
+
};
|
|
211
573
|
/** Personal planet scopes (no RENAME/MAKEOVER) */
|
|
212
|
-
readonly PLANETS:
|
|
574
|
+
readonly PLANETS: {
|
|
575
|
+
/** Read basic information about your planets */
|
|
576
|
+
readonly READ: "personal_inv_planets_read";
|
|
577
|
+
/** Assign your planets */
|
|
578
|
+
readonly ASSIGN: "personal_inv_planets_assign";
|
|
579
|
+
/** Read the tags assigned to your planets */
|
|
580
|
+
readonly TAGS_READ: "personal_inv_planets_tags_read";
|
|
581
|
+
/** Modify the tags assigned to your planets */
|
|
582
|
+
readonly TAGS_WRITE: "personal_inv_planets_tags_write";
|
|
583
|
+
/** Access and change anything in your planet inventory */
|
|
584
|
+
readonly ALL: "personal_inv_planets_all";
|
|
585
|
+
};
|
|
213
586
|
/** Personal item scopes */
|
|
214
|
-
readonly ITEMS:
|
|
587
|
+
readonly ITEMS: {
|
|
588
|
+
/** Read basic information about your items */
|
|
589
|
+
readonly READ: "personal_inv_items_read";
|
|
590
|
+
/** Rename your items */
|
|
591
|
+
readonly RENAME: "personal_inv_items_rename";
|
|
592
|
+
/** Assign your items */
|
|
593
|
+
readonly ASSIGN: "personal_inv_items_assign";
|
|
594
|
+
/** Make over your items */
|
|
595
|
+
readonly MAKEOVER: "personal_inv_items_makeover";
|
|
596
|
+
/** Read the tags assigned to your items */
|
|
597
|
+
readonly TAGS_READ: "personal_inv_items_tags_read";
|
|
598
|
+
/** Modify the tags assigned to your items */
|
|
599
|
+
readonly TAGS_WRITE: "personal_inv_items_tags_write";
|
|
600
|
+
/** Access and change anything in your item inventory */
|
|
601
|
+
readonly ALL: "personal_inv_items_all";
|
|
602
|
+
};
|
|
215
603
|
/** Personal NPC scopes (has MAKEOVER but no RENAME) */
|
|
216
604
|
readonly NPCS: {
|
|
605
|
+
/** Read basic information about your NPCs */
|
|
217
606
|
readonly READ: "personal_inv_npcs_read";
|
|
607
|
+
/** Assign your NPCs */
|
|
218
608
|
readonly ASSIGN: "personal_inv_npcs_assign";
|
|
609
|
+
/** Make over your NPCs */
|
|
219
610
|
readonly MAKEOVER: "personal_inv_npcs_makeover";
|
|
611
|
+
/** Read the tags assigned to your NPCs */
|
|
220
612
|
readonly TAGS_READ: "personal_inv_npcs_tags_read";
|
|
613
|
+
/** Modify the tags assigned to your NPCs */
|
|
221
614
|
readonly TAGS_WRITE: "personal_inv_npcs_tags_write";
|
|
615
|
+
/** Access and change anything in your NPC inventory */
|
|
222
616
|
readonly ALL: "personal_inv_npcs_all";
|
|
223
617
|
};
|
|
224
618
|
/** Personal droid scopes */
|
|
225
|
-
readonly DROIDS:
|
|
619
|
+
readonly DROIDS: {
|
|
620
|
+
/** Read basic information about your droids */
|
|
621
|
+
readonly READ: "personal_inv_droids_read";
|
|
622
|
+
/** Rename your droids */
|
|
623
|
+
readonly RENAME: "personal_inv_droids_rename";
|
|
624
|
+
/** Assign your droids */
|
|
625
|
+
readonly ASSIGN: "personal_inv_droids_assign";
|
|
626
|
+
/** Make over your droids */
|
|
627
|
+
readonly MAKEOVER: "personal_inv_droids_makeover";
|
|
628
|
+
/** Read the tags assigned to your droids */
|
|
629
|
+
readonly TAGS_READ: "personal_inv_droids_tags_read";
|
|
630
|
+
/** Modify the tags assigned to your droids */
|
|
631
|
+
readonly TAGS_WRITE: "personal_inv_droids_tags_write";
|
|
632
|
+
/** Access and change anything in your droid inventory */
|
|
633
|
+
readonly ALL: "personal_inv_droids_all";
|
|
634
|
+
};
|
|
226
635
|
/** Personal material scopes (no ASSIGN) */
|
|
227
636
|
readonly MATERIALS: {
|
|
637
|
+
/** Read basic information about your materials */
|
|
228
638
|
readonly READ: "personal_inv_materials_read";
|
|
639
|
+
/** Rename your materials */
|
|
229
640
|
readonly RENAME: "personal_inv_materials_rename";
|
|
641
|
+
/** Make over your materials */
|
|
230
642
|
readonly MAKEOVER: "personal_inv_materials_makeover";
|
|
643
|
+
/** Read the tags assigned to your materials */
|
|
231
644
|
readonly TAGS_READ: "personal_inv_materials_tags_read";
|
|
645
|
+
/** Modify the tags assigned to your materials */
|
|
232
646
|
readonly TAGS_WRITE: "personal_inv_materials_tags_write";
|
|
647
|
+
/** Access and change anything in your material inventory */
|
|
233
648
|
readonly ALL: "personal_inv_materials_all";
|
|
234
649
|
};
|
|
235
650
|
/** Personal creature scopes */
|
|
236
|
-
readonly CREATURES:
|
|
651
|
+
readonly CREATURES: {
|
|
652
|
+
/** Read basic information about your creatures */
|
|
653
|
+
readonly READ: "personal_inv_creatures_read";
|
|
654
|
+
/** Rename your creatures */
|
|
655
|
+
readonly RENAME: "personal_inv_creatures_rename";
|
|
656
|
+
/** Assign your creatures */
|
|
657
|
+
readonly ASSIGN: "personal_inv_creatures_assign";
|
|
658
|
+
/** Make over your creatures */
|
|
659
|
+
readonly MAKEOVER: "personal_inv_creatures_makeover";
|
|
660
|
+
/** Read the tags assigned to your creatures */
|
|
661
|
+
readonly TAGS_READ: "personal_inv_creatures_tags_read";
|
|
662
|
+
/** Modify the tags assigned to your creatures */
|
|
663
|
+
readonly TAGS_WRITE: "personal_inv_creatures_tags_write";
|
|
664
|
+
/** Access and change anything in your creature inventory */
|
|
665
|
+
readonly ALL: "personal_inv_creatures_all";
|
|
666
|
+
};
|
|
237
667
|
};
|
|
238
668
|
readonly Faction: {
|
|
239
|
-
/** Read
|
|
669
|
+
/** Read basic information about your faction */
|
|
240
670
|
readonly READ: "faction_read";
|
|
241
|
-
/**
|
|
671
|
+
/** See your faction's members list */
|
|
242
672
|
readonly MEMBERS: "faction_members";
|
|
243
|
-
/**
|
|
673
|
+
/** See the stocks your faction owns */
|
|
244
674
|
readonly STOCKS: "faction_stocks";
|
|
245
|
-
/**
|
|
675
|
+
/** See how many credits your faction owns */
|
|
246
676
|
readonly CREDITS_READ: "faction_credits_read";
|
|
247
|
-
/**
|
|
677
|
+
/** Transfer credits on behalf of your faction */
|
|
248
678
|
readonly CREDITS_WRITE: "faction_credits_write";
|
|
249
|
-
/**
|
|
679
|
+
/** See your faction's budgets */
|
|
250
680
|
readonly BUDGETS_READ: "faction_budgets_read";
|
|
251
|
-
/**
|
|
681
|
+
/** Change your faction's budgets */
|
|
252
682
|
readonly BUDGETS_WRITE: "faction_budgets_write";
|
|
253
|
-
/**
|
|
683
|
+
/** See your faction's datacard assignments */
|
|
254
684
|
readonly DATACARDS_READ: "faction_datacards_read";
|
|
255
|
-
/**
|
|
685
|
+
/** Assign or revoke your faction's datacard assignments */
|
|
256
686
|
readonly DATACARDS_WRITE: "faction_datacards_write";
|
|
257
|
-
/**
|
|
687
|
+
/** Access and change anything in your faction */
|
|
258
688
|
readonly ALL: "faction_all";
|
|
259
689
|
};
|
|
260
690
|
readonly FactionInventory: {
|
|
261
|
-
/**
|
|
691
|
+
/** Read basic information about your faction's inventories */
|
|
262
692
|
readonly OVERVIEW: "faction_inv_overview";
|
|
263
693
|
/** Faction ship scopes */
|
|
264
|
-
readonly SHIPS:
|
|
694
|
+
readonly SHIPS: {
|
|
695
|
+
/** Read basic information about your faction's ships */
|
|
696
|
+
readonly READ: "faction_inv_ships_read";
|
|
697
|
+
/** Rename your faction's ships */
|
|
698
|
+
readonly RENAME: "faction_inv_ships_rename";
|
|
699
|
+
/** Assign your faction's ships */
|
|
700
|
+
readonly ASSIGN: "faction_inv_ships_assign";
|
|
701
|
+
/** Make over your faction's ships */
|
|
702
|
+
readonly MAKEOVER: "faction_inv_ships_makeover";
|
|
703
|
+
/** Read the tags assigned to your faction's ships */
|
|
704
|
+
readonly TAGS_READ: "faction_inv_ships_tags_read";
|
|
705
|
+
/** Modify the tags assigned to your faction's ships */
|
|
706
|
+
readonly TAGS_WRITE: "faction_inv_ships_tags_write";
|
|
707
|
+
/** Access and change anything in your faction's ship inventory */
|
|
708
|
+
readonly ALL: "faction_inv_ships_all";
|
|
709
|
+
};
|
|
265
710
|
/** Faction vehicle scopes */
|
|
266
|
-
readonly VEHICLES:
|
|
711
|
+
readonly VEHICLES: {
|
|
712
|
+
/** Read basic information about your faction's vehicles */
|
|
713
|
+
readonly READ: "faction_inv_vehicles_read";
|
|
714
|
+
/** Rename your faction's vehicles */
|
|
715
|
+
readonly RENAME: "faction_inv_vehicles_rename";
|
|
716
|
+
/** Assign your faction's vehicles */
|
|
717
|
+
readonly ASSIGN: "faction_inv_vehicles_assign";
|
|
718
|
+
/** Make over your faction's vehicles */
|
|
719
|
+
readonly MAKEOVER: "faction_inv_vehicles_makeover";
|
|
720
|
+
/** Read the tags assigned to your faction's vehicles */
|
|
721
|
+
readonly TAGS_READ: "faction_inv_vehicles_tags_read";
|
|
722
|
+
/** Modify the tags assigned to your faction's vehicles */
|
|
723
|
+
readonly TAGS_WRITE: "faction_inv_vehicles_tags_write";
|
|
724
|
+
/** Access and change anything in your faction's vehicle inventory */
|
|
725
|
+
readonly ALL: "faction_inv_vehicles_all";
|
|
726
|
+
};
|
|
267
727
|
/** Faction station scopes */
|
|
268
|
-
readonly STATIONS:
|
|
728
|
+
readonly STATIONS: {
|
|
729
|
+
/** Read basic information about your faction's space stations */
|
|
730
|
+
readonly READ: "faction_inv_stations_read";
|
|
731
|
+
/** Rename your faction's space stations */
|
|
732
|
+
readonly RENAME: "faction_inv_stations_rename";
|
|
733
|
+
/** Assign your faction's space stations */
|
|
734
|
+
readonly ASSIGN: "faction_inv_stations_assign";
|
|
735
|
+
/** Make over your faction's space stations */
|
|
736
|
+
readonly MAKEOVER: "faction_inv_stations_makeover";
|
|
737
|
+
/** Read the tags assigned to your faction's space stations */
|
|
738
|
+
readonly TAGS_READ: "faction_inv_stations_tags_read";
|
|
739
|
+
/** Modify the tags assigned to your faction's space stations */
|
|
740
|
+
readonly TAGS_WRITE: "faction_inv_stations_tags_write";
|
|
741
|
+
/** Access and change anything in your faction's space station inventory */
|
|
742
|
+
readonly ALL: "faction_inv_stations_all";
|
|
743
|
+
};
|
|
269
744
|
/** Faction city scopes */
|
|
270
|
-
readonly CITIES:
|
|
745
|
+
readonly CITIES: {
|
|
746
|
+
/** Read basic information about your faction's cities */
|
|
747
|
+
readonly READ: "faction_inv_cities_read";
|
|
748
|
+
/** Rename your faction's cities */
|
|
749
|
+
readonly RENAME: "faction_inv_cities_rename";
|
|
750
|
+
/** Assign your faction's cities */
|
|
751
|
+
readonly ASSIGN: "faction_inv_cities_assign";
|
|
752
|
+
/** Make over your faction's cities */
|
|
753
|
+
readonly MAKEOVER: "faction_inv_cities_makeover";
|
|
754
|
+
/** Read the tags assigned to your faction's cities */
|
|
755
|
+
readonly TAGS_READ: "faction_inv_cities_tags_read";
|
|
756
|
+
/** Modify the tags assigned to your faction's cities */
|
|
757
|
+
readonly TAGS_WRITE: "faction_inv_cities_tags_write";
|
|
758
|
+
/** Access and change anything in your faction's city inventory */
|
|
759
|
+
readonly ALL: "faction_inv_cities_all";
|
|
760
|
+
};
|
|
271
761
|
/** Faction facility scopes */
|
|
272
|
-
readonly FACILITIES:
|
|
762
|
+
readonly FACILITIES: {
|
|
763
|
+
/** Read basic information about your faction's facilities */
|
|
764
|
+
readonly READ: "faction_inv_facilities_read";
|
|
765
|
+
/** Rename your faction's facilities */
|
|
766
|
+
readonly RENAME: "faction_inv_facilities_rename";
|
|
767
|
+
/** Assign your faction's facilities */
|
|
768
|
+
readonly ASSIGN: "faction_inv_facilities_assign";
|
|
769
|
+
/** Make over your faction's facilities */
|
|
770
|
+
readonly MAKEOVER: "faction_inv_facilities_makeover";
|
|
771
|
+
/** Read the tags assigned to your faction's facilities */
|
|
772
|
+
readonly TAGS_READ: "faction_inv_facilities_tags_read";
|
|
773
|
+
/** Modify the tags assigned to your faction's facilities */
|
|
774
|
+
readonly TAGS_WRITE: "faction_inv_facilities_tags_write";
|
|
775
|
+
/** Access and change anything in your faction's facility inventory */
|
|
776
|
+
readonly ALL: "faction_inv_facilities_all";
|
|
777
|
+
};
|
|
273
778
|
/** Faction planet scopes (no RENAME/MAKEOVER) */
|
|
274
|
-
readonly PLANETS:
|
|
779
|
+
readonly PLANETS: {
|
|
780
|
+
/** Read basic information about your faction's planets */
|
|
781
|
+
readonly READ: "faction_inv_planets_read";
|
|
782
|
+
/** Assign your faction's planets */
|
|
783
|
+
readonly ASSIGN: "faction_inv_planets_assign";
|
|
784
|
+
/** Read the tags assigned to your faction's planets */
|
|
785
|
+
readonly TAGS_READ: "faction_inv_planets_tags_read";
|
|
786
|
+
/** Modify the tags assigned to your faction's planets */
|
|
787
|
+
readonly TAGS_WRITE: "faction_inv_planets_tags_write";
|
|
788
|
+
/** Access and change anything in your faction's planet inventory */
|
|
789
|
+
readonly ALL: "faction_inv_planets_all";
|
|
790
|
+
};
|
|
275
791
|
/** Faction item scopes */
|
|
276
|
-
readonly ITEMS:
|
|
792
|
+
readonly ITEMS: {
|
|
793
|
+
/** Read basic information about your faction's items */
|
|
794
|
+
readonly READ: "faction_inv_items_read";
|
|
795
|
+
/** Rename your faction's items */
|
|
796
|
+
readonly RENAME: "faction_inv_items_rename";
|
|
797
|
+
/** Assign your faction's items */
|
|
798
|
+
readonly ASSIGN: "faction_inv_items_assign";
|
|
799
|
+
/** Make over your faction's items */
|
|
800
|
+
readonly MAKEOVER: "faction_inv_items_makeover";
|
|
801
|
+
/** Read the tags assigned to your faction's items */
|
|
802
|
+
readonly TAGS_READ: "faction_inv_items_tags_read";
|
|
803
|
+
/** Modify the tags assigned to your faction's items */
|
|
804
|
+
readonly TAGS_WRITE: "faction_inv_items_tags_write";
|
|
805
|
+
/** Access and change anything in your faction's item inventory */
|
|
806
|
+
readonly ALL: "faction_inv_items_all";
|
|
807
|
+
};
|
|
277
808
|
/** Faction NPC scopes (has MAKEOVER but no RENAME) */
|
|
278
809
|
readonly NPCS: {
|
|
810
|
+
/** Read basic information about your faction's NPCs */
|
|
279
811
|
readonly READ: "faction_inv_npcs_read";
|
|
812
|
+
/** Assign your faction's NPCs */
|
|
280
813
|
readonly ASSIGN: "faction_inv_npcs_assign";
|
|
814
|
+
/** Make over your faction's NPCs */
|
|
281
815
|
readonly MAKEOVER: "faction_inv_npcs_makeover";
|
|
816
|
+
/** Read the tags assigned to your faction's NPCs */
|
|
282
817
|
readonly TAGS_READ: "faction_inv_npcs_tags_read";
|
|
818
|
+
/** Modify the tags assigned to your faction's NPCs */
|
|
283
819
|
readonly TAGS_WRITE: "faction_inv_npcs_tags_write";
|
|
820
|
+
/** Access and change anything in your faction's NPC inventory */
|
|
284
821
|
readonly ALL: "faction_inv_npcs_all";
|
|
285
822
|
};
|
|
286
823
|
/** Faction droid scopes */
|
|
287
|
-
readonly DROIDS:
|
|
824
|
+
readonly DROIDS: {
|
|
825
|
+
/** Read basic information about your faction's droids */
|
|
826
|
+
readonly READ: "faction_inv_droids_read";
|
|
827
|
+
/** Rename your faction's droids */
|
|
828
|
+
readonly RENAME: "faction_inv_droids_rename";
|
|
829
|
+
/** Assign your faction's droids */
|
|
830
|
+
readonly ASSIGN: "faction_inv_droids_assign";
|
|
831
|
+
/** Make over your faction's droids */
|
|
832
|
+
readonly MAKEOVER: "faction_inv_droids_makeover";
|
|
833
|
+
/** Read the tags assigned to your faction's droids */
|
|
834
|
+
readonly TAGS_READ: "faction_inv_droids_tags_read";
|
|
835
|
+
/** Modify the tags assigned to your faction's droids */
|
|
836
|
+
readonly TAGS_WRITE: "faction_inv_droids_tags_write";
|
|
837
|
+
/** Access and change anything in your faction's droid inventory */
|
|
838
|
+
readonly ALL: "faction_inv_droids_all";
|
|
839
|
+
};
|
|
288
840
|
/** Faction material scopes (no ASSIGN) */
|
|
289
841
|
readonly MATERIALS: {
|
|
842
|
+
/** Read basic information about your faction's materials */
|
|
290
843
|
readonly READ: "faction_inv_materials_read";
|
|
844
|
+
/** Rename your faction's materials */
|
|
291
845
|
readonly RENAME: "faction_inv_materials_rename";
|
|
846
|
+
/** Make over your faction's materials */
|
|
292
847
|
readonly MAKEOVER: "faction_inv_materials_makeover";
|
|
848
|
+
/** Read the tags assigned to your faction's materials */
|
|
293
849
|
readonly TAGS_READ: "faction_inv_materials_tags_read";
|
|
850
|
+
/** Modify the tags assigned to your faction's materials */
|
|
294
851
|
readonly TAGS_WRITE: "faction_inv_materials_tags_write";
|
|
852
|
+
/** Access and change anything in your faction's material inventory */
|
|
295
853
|
readonly ALL: "faction_inv_materials_all";
|
|
296
854
|
};
|
|
297
855
|
/** Faction creature scopes */
|
|
298
|
-
readonly CREATURES:
|
|
856
|
+
readonly CREATURES: {
|
|
857
|
+
/** Read basic information about your faction's creatures */
|
|
858
|
+
readonly READ: "faction_inv_creatures_read";
|
|
859
|
+
/** Rename your faction's creatures */
|
|
860
|
+
readonly RENAME: "faction_inv_creatures_rename";
|
|
861
|
+
/** Assign your faction's creatures */
|
|
862
|
+
readonly ASSIGN: "faction_inv_creatures_assign";
|
|
863
|
+
/** Make over your faction's creatures */
|
|
864
|
+
readonly MAKEOVER: "faction_inv_creatures_makeover";
|
|
865
|
+
/** Read the tags assigned to your faction's creatures */
|
|
866
|
+
readonly TAGS_READ: "faction_inv_creatures_tags_read";
|
|
867
|
+
/** Modify the tags assigned to your faction's creatures */
|
|
868
|
+
readonly TAGS_WRITE: "faction_inv_creatures_tags_write";
|
|
869
|
+
/** Access and change anything in your faction's creature inventory */
|
|
870
|
+
readonly ALL: "faction_inv_creatures_all";
|
|
871
|
+
};
|
|
299
872
|
};
|
|
300
873
|
};
|
|
301
874
|
/**
|