n8n-nodes-roblox 2.4.20 → 2.4.22

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/README.md CHANGED
@@ -11,13 +11,45 @@ This project provides custom community nodes for [n8n](https://n8n.io) that inte
11
11
  - Modular support for Roblox API endpoints
12
12
  - Example nodes for querying and automating Roblox experiences
13
13
  - Configs Open Cloud support for reading, staging, publishing, and restoring experience configs
14
+ - User subscription lookup support for subscription products
15
+ - Team Create Open Cloud support for settings, active sessions, team test shutdowns, and membership removal
16
+ - Storage Open Cloud support for data stores, memory store queues, memory store sorted maps, memory store flush operations, and ordered data stores
14
17
 
15
18
  > ✅ Ideal for developers using Roblox + automation tools like n8n to build dashboards, pipelines, and custom tools.
16
19
 
20
+ ## Current Nodes and Arguments
21
+
22
+ - `Roblox Cloud`
23
+ - `Config`: operations `get_config_values`, `get_config_full`, `get_config_draft`, `update_config_draft`, `reset_config_draft`, `overwrite_config_draft`, `publish_config_draft`, `list_config_revisions`, `restore_config_revision`. Arguments: `universeId`, `repository`, `entriesJson`, `previousDraftHash`, `draftHash`, `publishMessage`, `deploymentStrategy`, `revisionId`, `config_revision_filters` (`endTime`, `maxPageSize`, `searchKey`, `skip`, `sortKey`, `sortOrder`, `startTime`).
24
+ - `Engine`: operation `get_operation`. Arguments: `operationPath`.
25
+ - `Group`: operations `accept_join_request`, `ban_user`, `decline_join_request`, `get_group`, `get_memberships`, `get_role`, `get_roles`, `get_shout`, `get_join_requests`, `unban_user`, `update_group_shout`, `update_member_role`. Arguments: `groupId`, `joinRequestId`, `userId`, `message`, `roleId`, `arguments_memberships` (`maxPageSize`, `pageToken`, `filter`).
26
+ - `Place`: operations `get_place`, `update_place`. Arguments: `universeId`, `placeId`, `place_update_mask` (`displayName`, `description`, `serverSize`).
27
+ - `Storage`: operations include data store control (`list_data_stores`, `delete_data_store`, `undelete_data_store`, `snapshot_data_stores`), data store entries and scoped entries (`list`, `get`, `create`, `update`, `delete`, `increment`, `list revisions`), memory store queues (`create`, `read`, `discard`), memory store sorted maps (`list`, `get`, `create`, `update`, `delete`), memory store flush (`flush_memory_store`, `get_memory_store_flush_operation`), and ordered data store entries (`list`, `get`, `create`, `update`, `delete`, `increment`). Arguments: `universeId`, `dataStoreId`, `scopeId`, `entryId`, `queueId`, `sortedMapId`, `itemId`, `orderedDataStoreId`, `operationId`, `dataStoreEntryJson`, `incrementDataStoreEntryJson`, `memoryStoreQueueItemJson`, `discardMemoryStoreQueueItemsJson`, `memoryStoreSortedMapItemJson`, `orderedDataStoreEntryJson`, `incrementOrderedDataStoreEntryJson`, query/update collections for list, create, read, and update operations (`filter`, `maxPageSize`, `pageToken`, `showDeleted`, `id`, `allowMissing`, `allOrNothing`, `count`, `invisibilityWindow`, `orderBy`).
28
+ - `Team Create`: operations `close_team_test_session`, `get_active_session_members`, `get_many_team_create_settings`, `get_team_create_settings`, `remove_team_create_membership`, `update_team_create_settings`. Arguments: `placeId`, `gameId`, `team_create_pagination` (`cursor`, `limit`), `universeId`, `isEnabled`, `userId`, `universeIds`.
29
+ - `Universe`: operations `generate_speech_asset`, `get_universe`, `get_user_restriction_universe`, `get_user_restrictions_universe`, `list_user_restriction_logs`, `publish_universe_message`, `restart_universe_servers`, `update_user_restriction_universe`. Arguments: `universeId`, `topic`, `message`, `userId`, `arguments_list_user_restriction_logs` (`pageToken`, `maxPageSize`), `speechText`, `speechStyleFields` (`pitch`, `speed`, `voiceId`), `restriction_update_mask` (`active`, `displayReason`, `duration`, `excludeAltAccounts`, `privateReason`).
30
+ - `User`: operations `generate_thumbnail`, `get_subscription`, `get_user`. Arguments: `userId`, `universeId`, `subscriptionProductId`, `subscriptionId`, `view`, `arguments_thumbnail_generation` (`size`, `format`, `shape`).
31
+ - `Roblox Legacy`
32
+ - `Legacy Place`: operations `get_favorites_count`, `get_universe_products`. Arguments: `universeId`, `universeIds`.
33
+ - `Legacy User`: operations `get_username_history`, `get_usernames_from_user_ids`. Arguments: `userId`, `arguments_username_history` (`limit`, `cursor`, `sortOrder`), `arguments_user_names_from_user_ids` (`userIds`, `excludeBannedUsers`).
34
+ - `Roblox Cloud Trigger`
35
+ - Events: `Group Audit Log Entry`, `Group Join Request`. Arguments: `eventType`, `groupId`, audit-log filters `actionType`, `userId`, `limit`, and join-request page size `maxPageSize`.
36
+
17
37
  ## Configs API Scopes
18
38
 
19
39
  The Config resource uses the existing Roblox Cloud API key credential. Published config, full config, draft, and revision reads require the `universe:read` scope. Draft changes, draft reset, publish, and revision restore require the `universe:write` scope.
20
40
 
41
+ ## User Subscription API Scopes
42
+
43
+ The Get Subscription user operation requires either `universe:write` or `universe.subscription-product.subscription:read`.
44
+
45
+ ## Team Create API Scopes
46
+
47
+ The Team Create resource uses the existing Roblox Cloud API key credential and requires the `legacy-team-collaboration:manage` scope.
48
+
49
+ ## Storage API Scopes
50
+
51
+ The Storage resource uses the existing Roblox Cloud API key credential. Standard data store control operations use `universe-datastores.control:list`, `universe-datastores.control:delete`, and `universe-datastores.control:snapshot`. Standard entry operations use `universe-datastores.objects:list`, `universe-datastores.objects:read`, `universe-datastores.objects:create`, `universe-datastores.objects:update`, `universe-datastores.objects:delete`, and `universe-datastores.versions:list`. Memory store queues use `memory-store.queue:add`, `memory-store.queue:dequeue`, and `memory-store.queue:discard`; memory store sorted maps use `memory-store.sorted-map:read` and `memory-store.sorted-map:write`; memory store flush uses `memory-store:flush`. Ordered data store reads require `universe.ordered-data-store.scope.entry:read`; ordered data store writes require `universe.ordered-data-store.scope.entry:write`.
52
+
21
53
  ## Prerequisites
22
54
 
23
55
  Before getting started, ensure you have the following:
@@ -7,6 +7,8 @@ const UniverseDescription_1 = require("./Universe/UniverseDescription");
7
7
  const PlaceDescription_1 = require("./Place/PlaceDescription");
8
8
  const EngineDescription_1 = require("./Engine/EngineDescription");
9
9
  const ConfigDescription_1 = require("./Config/ConfigDescription");
10
+ const TeamCreateDescription_1 = require("./TeamCreate/TeamCreateDescription");
11
+ const StorageDescription_1 = require("./Storage/StorageDescription");
10
12
  class RobloxCloud {
11
13
  constructor() {
12
14
  this.description = {
@@ -59,6 +61,14 @@ class RobloxCloud {
59
61
  name: 'Place',
60
62
  value: 'place',
61
63
  },
64
+ {
65
+ name: 'Storage',
66
+ value: 'storage',
67
+ },
68
+ {
69
+ name: 'Team Create',
70
+ value: 'teamCreate',
71
+ },
62
72
  {
63
73
  name: 'Universe',
64
74
  value: 'universe',
@@ -72,6 +82,10 @@ class RobloxCloud {
72
82
  },
73
83
  ...ConfigDescription_1.configOperations,
74
84
  ...ConfigDescription_1.configFields,
85
+ ...TeamCreateDescription_1.teamCreateOperations,
86
+ ...TeamCreateDescription_1.teamCreateFields,
87
+ ...StorageDescription_1.storageOperations,
88
+ ...StorageDescription_1.storageFields,
75
89
  ...EngineDescription_1.engineOperations,
76
90
  ...EngineDescription_1.engineFields,
77
91
  ...GroupDescription_1.groupOperations,
@@ -1 +1 @@
1
- {"version":3,"file":"RobloxCloud.node.js","sourceRoot":"","sources":["../../../nodes/Roblox/RobloxCloud.node.ts"],"names":[],"mappings":";;;AAEA,+DAAwE;AACxE,4DAAoE;AACpE,wEAAoF;AACpF,+DAAwE;AACxE,kEAA4E;AAC5E,kEAA4E;AAC5E,MAAa,WAAW;IAAxB;QACC,gBAAW,GAAyB;YACnC,WAAW,EAAE,cAAc;YAC3B,IAAI,EAAE,aAAa;YACnB,IAAI,EAAE,iBAAiB;YACvB,KAAK,EAAE,CAAC,WAAW,CAAC;YACpB,YAAY,EAAE,IAAI;YAClB,OAAO,EAAE,GAAG;YACZ,QAAQ,EAAE,gEAAgE;YAC1E,WAAW,EAAE,gCAAgC;YAC7C,QAAQ,EAAE;gBACT,IAAI,EAAE,cAAc;aACpB;YACD,MAAM,EAAE,QAAyB;YACjC,OAAO,EAAE,QAAyB;YAClC,eAAe,EAAE;gBAChB,OAAO,EAAE,yBAAyB;gBAClC,OAAO,EAAE;oBACR,cAAc,EAAE,kBAAkB;oBAClC,MAAM,EAAE,kBAAkB;iBAC1B;aACD;YACD,WAAW,EAAE;gBACZ;oBACC,IAAI,EAAE,gBAAgB;oBACtB,QAAQ,EAAE,IAAI;iBACd;aACD;YACD,UAAU,EAAE;gBACX;oBACC,WAAW,EAAE,UAAU;oBACvB,IAAI,EAAE,UAAU;oBAChB,IAAI,EAAE,SAAS;oBACf,gBAAgB,EAAE,IAAI;oBACtB,OAAO,EAAE;wBACR;4BACC,IAAI,EAAE,QAAQ;4BACd,KAAK,EAAE,QAAQ;yBACf;wBACD;4BACC,IAAI,EAAE,QAAQ;4BACd,KAAK,EAAE,QAAQ;yBACf;wBACD;4BACC,IAAI,EAAE,OAAO;4BACb,KAAK,EAAE,OAAO;yBACd;wBACD;4BACC,IAAI,EAAE,OAAO;4BACb,KAAK,EAAE,OAAO;yBACd;wBACD;4BACC,IAAI,EAAE,UAAU;4BAChB,KAAK,EAAE,UAAU;yBACjB;wBACD;4BACC,IAAI,EAAE,MAAM;4BACZ,KAAK,EAAE,MAAM;yBACb;qBACD;oBACD,OAAO,EAAE,OAAO;iBAChB;gBACD,GAAG,oCAAgB;gBACnB,GAAG,gCAAY;gBAEf,GAAG,oCAAgB;gBACnB,GAAG,gCAAY;gBAEf,GAAG,kCAAe;gBAClB,GAAG,8BAAW;gBAEd,GAAG,gCAAc;gBACjB,GAAG,4BAAU;gBAEb,GAAG,wCAAkB;gBACrB,GAAG,oCAAc;gBAEjB,GAAG,kCAAe;gBAClB,GAAG,8BAAW;aACd;SACD,CAAC;IACH,CAAC;CAAA;AAjFD,kCAiFC"}
1
+ {"version":3,"file":"RobloxCloud.node.js","sourceRoot":"","sources":["../../../nodes/Roblox/RobloxCloud.node.ts"],"names":[],"mappings":";;;AAEA,+DAAwE;AACxE,4DAAoE;AACpE,wEAAoF;AACpF,+DAAwE;AACxE,kEAA4E;AAC5E,kEAA4E;AAC5E,8EAA4F;AAC5F,qEAAgF;AAChF,MAAa,WAAW;IAAxB;QACC,gBAAW,GAAyB;YACnC,WAAW,EAAE,cAAc;YAC3B,IAAI,EAAE,aAAa;YACnB,IAAI,EAAE,iBAAiB;YACvB,KAAK,EAAE,CAAC,WAAW,CAAC;YACpB,YAAY,EAAE,IAAI;YAClB,OAAO,EAAE,GAAG;YACZ,QAAQ,EAAE,gEAAgE;YAC1E,WAAW,EAAE,gCAAgC;YAC7C,QAAQ,EAAE;gBACT,IAAI,EAAE,cAAc;aACpB;YACD,MAAM,EAAE,QAAyB;YACjC,OAAO,EAAE,QAAyB;YAClC,eAAe,EAAE;gBAChB,OAAO,EAAE,yBAAyB;gBAClC,OAAO,EAAE;oBACR,cAAc,EAAE,kBAAkB;oBAClC,MAAM,EAAE,kBAAkB;iBAC1B;aACD;YACD,WAAW,EAAE;gBACZ;oBACC,IAAI,EAAE,gBAAgB;oBACtB,QAAQ,EAAE,IAAI;iBACd;aACD;YACD,UAAU,EAAE;gBACX;oBACC,WAAW,EAAE,UAAU;oBACvB,IAAI,EAAE,UAAU;oBAChB,IAAI,EAAE,SAAS;oBACf,gBAAgB,EAAE,IAAI;oBACtB,OAAO,EAAE;wBACR;4BACC,IAAI,EAAE,QAAQ;4BACd,KAAK,EAAE,QAAQ;yBACf;wBACD;4BACC,IAAI,EAAE,QAAQ;4BACd,KAAK,EAAE,QAAQ;yBACf;wBACD;4BACC,IAAI,EAAE,OAAO;4BACb,KAAK,EAAE,OAAO;yBACd;wBACD;4BACC,IAAI,EAAE,OAAO;4BACb,KAAK,EAAE,OAAO;yBACd;wBACD;4BACC,IAAI,EAAE,SAAS;4BACf,KAAK,EAAE,SAAS;yBAChB;wBACD;4BACC,IAAI,EAAE,aAAa;4BACnB,KAAK,EAAE,YAAY;yBACnB;wBACD;4BACC,IAAI,EAAE,UAAU;4BAChB,KAAK,EAAE,UAAU;yBACjB;wBACD;4BACC,IAAI,EAAE,MAAM;4BACZ,KAAK,EAAE,MAAM;yBACb;qBACD;oBACD,OAAO,EAAE,OAAO;iBAChB;gBACD,GAAG,oCAAgB;gBACnB,GAAG,gCAAY;gBAEf,GAAG,4CAAoB;gBACvB,GAAG,wCAAgB;gBAEnB,GAAG,sCAAiB;gBACpB,GAAG,kCAAa;gBAEhB,GAAG,oCAAgB;gBACnB,GAAG,gCAAY;gBAEf,GAAG,kCAAe;gBAClB,GAAG,8BAAW;gBAEd,GAAG,gCAAc;gBACjB,GAAG,4BAAU;gBAEb,GAAG,wCAAkB;gBACrB,GAAG,oCAAc;gBAEjB,GAAG,kCAAe;gBAClB,GAAG,8BAAW;aACd;SACD,CAAC;IACH,CAAC;CAAA;AA/FD,kCA+FC"}
@@ -0,0 +1,3 @@
1
+ import type { INodeProperties } from 'n8n-workflow';
2
+ export declare const storageOperations: INodeProperties[];
3
+ export declare const storageFields: INodeProperties[];