Revert "Bugfix/spelling error" #17

Closed
MarciiTheDev wants to merge 39 commits from revert-16-bugfix/SpellingError into main
Showing only changes of commit fe85632781 - Show all commits

View File

@ -5,7 +5,7 @@ local tokens = {
-- DO NOT EDIT THE FOLLOWING LINES BELOW, UNLESS YOU KNOW WHAT YOU ARE DOING! -- DO NOT EDIT THE FOLLOWING LINES BELOW, UNLESS YOU KNOW WHAT YOU ARE DOING!
local Utils = require(script.Parent.Utils) local Utils = require(script.Parent.Dienstprogramme)
local MarcSyncClient = {} local MarcSyncClient = {}
MarcSyncClient.bekommeVersion = function(self:typeof(MarcSyncClient), clientId: number?):string MarcSyncClient.bekommeVersion = function(self:typeof(MarcSyncClient), clientId: number?):string
@ -16,31 +16,31 @@ MarcSyncClient.bekommeVersion = function(self:typeof(MarcSyncClient), clientId:
return result["version"] return result["version"]
end end
MarcSyncClient.erzeugeKollektion = function(self:typeof(MarcSyncClient), collectionName: string):typeof(require(script.Parent.Objects.Collection).new()) 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 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 if not collectionName then error("Kein CollectionName angegeben") end
local result = Utils.macheHypertexttransferprotokollAnfrage("collection", "POST", "https://api.marcsync.dev/v0/collection/"..collectionName, {}, self._accessToken); local result = Utils.macheHypertexttransferprotokollAnfrage("collection", "POST", "https://api.marcsync.dev/v0/collection/"..collectionName, {}, self._accessToken);
if not result["success"] then error(result["errorMessage"]) end if not result["success"] then error(result["errorMessage"]) end
result = require(script.Parent.Objects.Collection).neu(collectionName, self._accessToken) result = require(script.Parent.Objects.Sammlung).neu(collectionName, self._accessToken)
return result return result
end end
MarcSyncClient.bringeKollektion = function(self:typeof(MarcSyncClient), collectionName: string):typeof(require(script.Parent.Objects.Collection).new()) MarcSyncClient.bringeSammlung = function(self:typeof(MarcSyncClient), collectionName: string):typeof(require(script.Parent.Objects.Sammlung).new())
self:_checkInstallation() self:_checkInstallation()
if not collectionName then error("Kein CollectionName angegeben") end if not collectionName then error("Kein CollectionName angegeben") end
local result = Utils.macheHypertexttransferprotokollAnfrage("collection", "GET", "https://api.marcsync.dev/v0/collection/"..collectionName, {}, self._accessToken); local result = Utils.macheHypertexttransferprotokollAnfrage("collection", "GET", "https://api.marcsync.dev/v0/collection/"..collectionName, {}, self._accessToken);
if not result["success"] then error(result["errorMessage"]) end if not result["success"] then error(result["errorMessage"]) end
result = require(script.Parent.Objects.Collection).neu(collectionName, self._accessToken) result = require(script.Parent.Objects.Sammlung).neu(collectionName, self._accessToken)
return result return result
end end
MarcSyncClient.bekommeKollektion = function(self:typeof(MarcSyncClient), collectionName: string):typeof(require(script.Parent.Objects.Collection).new()) 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 if typeof(self) ~= "table" then error("Bitte verwenden Sie : anstelle von .") end
self:_checkInstallation() self:_checkInstallation()
if not collectionName then error("Kein CollectionName angegeben") end if not collectionName then error("Kein CollectionName angegeben") end
return require(script.Parent.Objects.Collection).neu(collectionName, self._accessToken) return require(script.Parent.Objects.Sammlung).neu(collectionName, self._accessToken)
end end
return { return {