Skip to content

Commit

Permalink
[RELEASE] 2.0.19
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions committed Sep 30, 2024
1 parent 8f8f8e1 commit 7b8cc49
Show file tree
Hide file tree
Showing 21 changed files with 1,006 additions and 8 deletions.
3 changes: 3 additions & 0 deletions automation-api-clients/csharp/.openapi-generator/FILES
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ src/BeamAutomationClient/Api/GameApi.cs
src/BeamAutomationClient/Api/HealthApi.cs
src/BeamAutomationClient/Api/IApi.cs
src/BeamAutomationClient/Api/MarketplaceV2Api.cs
src/BeamAutomationClient/Api/MigrationApi.cs
src/BeamAutomationClient/Api/PolicyApi.cs
src/BeamAutomationClient/Api/ProfilesApi.cs
src/BeamAutomationClient/Api/ReportingApi.cs
Expand Down Expand Up @@ -120,6 +121,8 @@ src/BeamAutomationClient/Model/AutomationGetTransactionsResponseV2.cs
src/BeamAutomationClient/Model/AutomationGetTransactionsResponseV2DataInner.cs
src/BeamAutomationClient/Model/AutomationGetWebhooksForGameResponse.cs
src/BeamAutomationClient/Model/AutomationGetWebhooksForGameResponseWebhooksInner.cs
src/BeamAutomationClient/Model/AutomationMigrateRequestInput.cs
src/BeamAutomationClient/Model/AutomationMigrateResponse.cs
src/BeamAutomationClient/Model/AutomationRefreshContractRequestBody.cs
src/BeamAutomationClient/Model/AutomationRefreshTokenRequestBody.cs
src/BeamAutomationClient/Model/AutomationRegenerateGameApiKeysResponse.cs
Expand Down
71 changes: 71 additions & 0 deletions automation-api-clients/csharp/spec.json
Original file line number Diff line number Diff line change
Expand Up @@ -2688,6 +2688,43 @@
}
]
}
},
"/v1/migration/migrate": {
"post": {
"operationId": "migrateProfileAssets",
"summary": "Migrate all the native token, ERC20 tokens and NFTs registered for your game from an Automation API profile to a Player API user",
"parameters": [],
"requestBody": {
"required": true,
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/AutomationMigrateRequestInput"
}
}
}
},
"responses": {
"200": {
"description": "",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/AutomationMigrateResponse"
}
}
}
}
},
"tags": [
"Migration"
],
"security": [
{
"beam-api-key": []
}
]
}
}
},
"info": {
Expand Down Expand Up @@ -3760,6 +3797,9 @@
"receiverEntityId": {
"type": "string"
},
"receiverWalletAddress": {
"type": "string"
},
"optimistic": {
"default": false,
"type": "boolean"
Expand Down Expand Up @@ -6482,6 +6522,37 @@
"nullable": true
}
}
},
"AutomationMigrateRequestInput": {
"type": "object",
"properties": {
"profileEntityId": {
"type": "string"
},
"userEntityId": {
"type": "string"
},
"chainId": {
"default": 13337,
"type": "integer",
"format": "int64"
}
},
"required": [
"profileEntityId",
"userEntityId"
]
},
"AutomationMigrateResponse": {
"type": "object",
"properties": {
"success": {
"type": "boolean"
}
},
"required": [
"success"
]
}
}
}
Expand Down
Loading

0 comments on commit 7b8cc49

Please sign in to comment.