-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Added None to HolonType enum in OASIS.API.Core.
- Added CelestialBodyName, CelestialBodyType, CelestialBody, PublishedOnSTARNET & Zomes to IOAPPDNA in OASIS.API.ONODE.Core and renamed CreatedDate to CreatedOn & renamed PublishedDate to PublishedOn. - Updated CreateOAPPAsync, CreateOAPP, PublishOAPPAsync, PublishOAPP, UnPublishOAPPAsync, UnPublishOAPP & ConvertOAPPToOAPPDNA in OASIS.API.ONODE.Core. - Finished implementing listoapps & listinstalledoapps command hooks in ReadPlayerOne function in STAR CLI. - Finished implementing ListAllOAPPsAsync, ListOAPPsCreatedByBeamedInAvatar & ListOAPPsInstalledForBeamedInAvatar in STAR.CLI.Lib.
- Loading branch information
Showing
7 changed files
with
240 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -50,6 +50,7 @@ public enum HolonType | |
NFT, | ||
GEONFT, | ||
OAPP, | ||
InstalledOAPP | ||
InstalledOAPP, | ||
None | ||
} | ||
} |
15 changes: 12 additions & 3 deletions
15
NextGenSoftware.OASIS.API.ONODE.Core/Interfaces/Objects/IOAPPDNA.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,30 @@ | ||
using System; | ||
using System.Collections; | ||
using System.Collections.Generic; | ||
using NextGenSoftware.OASIS.API.Core.Enums; | ||
using NextGenSoftware.OASIS.API.Core.Interfaces.STAR; | ||
using NextGenSoftware.OASIS.API.ONode.Core.Enums; | ||
using NextGenSoftware.OASIS.STAR.CelestialBodies; | ||
|
||
namespace NextGenSoftware.OASIS.API.ONode.Core.Interfaces.Objects | ||
{ | ||
public interface IOAPPDNA | ||
{ | ||
ICelestialBody CelestialBody { get; set; } //optional | ||
Guid CelestialBodyId { get; set; } | ||
Guid CreatedByAvtarId { get; set; } | ||
DateTime CreatedDate { get; set; } | ||
string CelestialBodyName { get; set; } | ||
HolonType CelestialBodyType { get; set; } | ||
IEnumerable<IZome> Zomes { get; set; } | ||
Guid CreatedByAvatarId { get; set; } | ||
DateTime CreatedOn { get; set; } | ||
string Description { get; set; } | ||
GenesisType GenesisType { get; set; } | ||
Guid OAPPId { get; set; } | ||
string OAPPName { get; set; } | ||
OAPPType OAPPType { get; set; } | ||
Guid PublishedByAvatarId { get; set; } | ||
DateTime PublishedDate { get; set; } | ||
DateTime PublishedOn { get; set; } | ||
bool PublishedOnSTARNET { get; set; } | ||
string Version { get; set; } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.