From 9f1b346ca5d9620a7bbef5e6b1c776bff01b9c91 Mon Sep 17 00:00:00 2001 From: Josh <63111477+WhenUHackUNoob@users.noreply.github.com> Date: Sun, 1 Oct 2023 16:47:24 +0100 Subject: [PATCH] Revert "Bugfix/spelling error" --- .../{MarcSyncv1.0-german-hotfix.lua => MarcSyncv1.0.lua} | 8 ++++---- src/MarcSync/Objects/Eintrag.lua | 6 +++--- src/MarcSync/Objects/Sammlung.lua | 4 ++-- src/MarcSync/Types/EintragsDaten.lua | 8 ++++---- 4 files changed, 13 insertions(+), 13 deletions(-) rename src/MarcSync/{MarcSyncv1.0-german-hotfix.lua => MarcSyncv1.0.lua} (97%) diff --git a/src/MarcSync/MarcSyncv1.0-german-hotfix.lua b/src/MarcSync/MarcSyncv1.0.lua similarity index 97% rename from src/MarcSync/MarcSyncv1.0-german-hotfix.lua rename to src/MarcSync/MarcSyncv1.0.lua index 215c107..c8dab92 100644 --- a/src/MarcSync/MarcSyncv1.0-german-hotfix.lua +++ b/src/MarcSync/MarcSyncv1.0.lua @@ -16,7 +16,7 @@ MarcSyncClient.bekommeVersion = function(self:typeof(MarcSyncClient), clientId: return result["version"] end -MarcSyncClient.erzeugeSammlung = function(self:typeof(MarcSyncClient), collectionName: string):typeof(require(script.Parent.Objects.Sammlung).neu()) +MarcSyncClient.erzeugeSammlung = function(self:typeof(MarcSyncClient), collectionName: string):typeof(require(script.Parent.Objects.Sammlung).new()) if not self._accessToken then error("[MarkSynchronisation] Bitte legen Sie ein Token fest, bevor Sie MarcSync verwenden.") end if not collectionName then error("Kein CollectionName angegeben") end local result = Utils.macheHypertexttransferprotokollAnfrage("collection", "POST", "https://api.marcsync.dev/v0/collection/"..collectionName, {}, self._accessToken); @@ -26,17 +26,17 @@ MarcSyncClient.erzeugeSammlung = function(self:typeof(MarcSyncClient), collectio return result end -MarcSyncClient.bringeSammlung = function(self:typeof(MarcSyncClient), collectionName: string):typeof(require(script.Parent.Objects.Sammlung).neu()) +MarcSyncClient.bringeSammlung = function(self:typeof(MarcSyncClient), collectionName: string):typeof(require(script.Parent.Objects.Sammlung).new()) self:_checkInstallation() if not collectionName then error("Kein CollectionName angegeben") end local result = Utils.macheHypertexttransferprotokollAnfrage("collection", "GET", "https://api.marcsync.dev/v0/collection/"..collectionName, {}, self._accessToken); - + if not result["success"] then error(result["errorMessage"]) end result = require(script.Parent.Objects.Sammlung).neu(collectionName, self._accessToken) return result end -MarcSyncClient.bekommeSammlung = function(self:typeof(MarcSyncClient), collectionName: string):typeof(require(script.Parent.Objects.Sammlung).neu()) +MarcSyncClient.bekommeSammlung = function(self:typeof(MarcSyncClient), collectionName: string):typeof(require(script.Parent.Objects.Sammlung).new()) if typeof(self) ~= "table" then error("Bitte verwenden Sie : anstelle von .") end self:_checkInstallation() if not collectionName then error("Kein CollectionName angegeben") end diff --git a/src/MarcSync/Objects/Eintrag.lua b/src/MarcSync/Objects/Eintrag.lua index 20de5d4..e37307d 100644 --- a/src/MarcSync/Objects/Eintrag.lua +++ b/src/MarcSync/Objects/Eintrag.lua @@ -1,7 +1,7 @@ local Utils = require(script.Parent.Parent.Dienstprogramme) local types = { - EntryData = require(script.Parent.Parent.Types.EintragsDaten).bekommeRassenindentifikationsspezifizierunginstanztextaufzaehlbar() + EntryData = require(script.Parent.Parent.Types.EntryData).bekommeRassenindentifikationsspezifizierunginstanztextaufzaehlbar() } local Entry = {} @@ -17,7 +17,7 @@ end Entry.aktualisiereWerte = function(self:typeof(Entry), data:typeof(types.EntryData)):number local result = Utils.macheHypertexttransferprotokollAnfrage("eintrag", "PUT", "https://api.marcsync.dev/v0/entries/"..self._tableId, {["filters"]={["_id"]=self._objectId},["data"]=data}, self._accessToken); - + if result["success"] and result["modifiedEntries"] and result["modifiedEntries"] > 0 then for i,v in pairs(data) do self._entryData[i] = v @@ -32,7 +32,7 @@ end Entry.loesche = function(self:typeof(Entry)) if typeof(self) ~= "table" then error("Bitte verwenden Sie : anstelle von .") end local result = Utils.macheHypertexttransferprotokollAnfrage("eintrag", "DELETE", "https://api.marcsync.dev/v0/entries/"..self._tableId, {["filters"]={["_id"]=self._objectId}}, self._accessToken); - + if not result["success"] then error(result["errorMessage"]) end self = nil diff --git a/src/MarcSync/Objects/Sammlung.lua b/src/MarcSync/Objects/Sammlung.lua index 41468e5..62e96be 100644 --- a/src/MarcSync/Objects/Sammlung.lua +++ b/src/MarcSync/Objects/Sammlung.lua @@ -1,5 +1,5 @@ local Utils = require(script.Parent.Parent.Dienstprogramme) -local Entry = require(script.Parent.Entrag) +local Entry = require(script.Parent.Eintrag) local types = { EntryData = require(script.Parent.Parent.Types.EintragsDaten).bekommeRassenindentifikationsspezifizierunginstanztextaufzaehlbar() @@ -29,7 +29,7 @@ Collection.aktualisiereEintrag = function(self:typeof(Collection), filters:typeo return result["modifiedEntries"] end -Collection.bekommeEintraege = function(self:typeof(Collection), filters:typeof(types.EntryData)):{[number]:typeof(Entry.neu())} +Collection.bekommeEintraege = function(self:typeof(Collection), filters:typeof(types.EntryData)):{[number]:typeof(Entry.new())} if not self._collectionName then error("[MarkSynchronisation: Sammlung] Ungültiges Objekt erstellt oder versucht, auf ein zerstörtes Objekt zuzugreifen.") end if not filters then filters = {} end local result = Utils.macheHypertexttransferprotokollAnfrage("eintrag", "DELETE", "https://api.marcsync.dev/v0/entries/"..self._collectionName.."?isQuery=true", {["filters"]=filters}, self._accessToken); diff --git a/src/MarcSync/Types/EintragsDaten.lua b/src/MarcSync/Types/EintragsDaten.lua index 88bdef1..5b0dc0a 100644 --- a/src/MarcSync/Types/EintragsDaten.lua +++ b/src/MarcSync/Types/EintragsDaten.lua @@ -1,9 +1,9 @@ type EntryData = { - [string]: any + [string]: any } return { - bekommeRassenindentifikationsspezifizierunginstanztextaufzaehlbar = function(): EntryData - return {} - end, + bekommeRassenindentifikationsspezifizierunginstanztextaufzaehlbar = function(): EntryData + return {} + end, } -- 2.47.2