diff --git a/bridge/discord/discord.go b/bridge/discord/discord.go index e37208b720..c0817911d5 100644 --- a/bridge/discord/discord.go +++ b/bridge/discord/discord.go @@ -10,7 +10,7 @@ import ( "github.com/42wim/matterbridge/bridge" "github.com/42wim/matterbridge/bridge/config" "github.com/42wim/matterbridge/bridge/helper" - "github.com/bwmarrin/discordgo" + "github.com/matterbridge/discordgo" ) const MessageLength = 1950 diff --git a/bridge/discord/handlers.go b/bridge/discord/handlers.go index ab320975f1..2527c0db68 100644 --- a/bridge/discord/handlers.go +++ b/bridge/discord/handlers.go @@ -2,7 +2,7 @@ package bdiscord import ( "github.com/42wim/matterbridge/bridge/config" - "github.com/bwmarrin/discordgo" + "github.com/matterbridge/discordgo" ) func (b *Bdiscord) messageDelete(s *discordgo.Session, m *discordgo.MessageDelete) { //nolint:unparam diff --git a/bridge/discord/helpers.go b/bridge/discord/helpers.go index 7ea0a36503..8bc4f336c1 100644 --- a/bridge/discord/helpers.go +++ b/bridge/discord/helpers.go @@ -6,7 +6,7 @@ import ( "strings" "unicode" - "github.com/bwmarrin/discordgo" + "github.com/matterbridge/discordgo" ) func (b *Bdiscord) getNick(user *discordgo.User, guildID string) string { diff --git a/bridge/msteams/handler.go b/bridge/msteams/handler.go index c8f0c468cc..394a9ac0b4 100644 --- a/bridge/msteams/handler.go +++ b/bridge/msteams/handler.go @@ -9,7 +9,7 @@ import ( "github.com/42wim/matterbridge/bridge/config" "github.com/42wim/matterbridge/bridge/helper" - msgraph "github.com/yaegashi/msgraph.go/beta" + msgraph "github.com/matterbridge/msgraph.go/beta" ) func (b *Bmsteams) findFile(weburl string) (string, error) { diff --git a/bridge/msteams/msteams.go b/bridge/msteams/msteams.go index 3633924a08..b096cb0461 100644 --- a/bridge/msteams/msteams.go +++ b/bridge/msteams/msteams.go @@ -12,9 +12,9 @@ import ( "github.com/42wim/matterbridge/bridge/config" // "github.com/davecgh/go-spew/spew" + msgraph "github.com/matterbridge/msgraph.go/beta" + "github.com/matterbridge/msgraph.go/msauth" "github.com/mattn/godown" - msgraph "github.com/yaegashi/msgraph.go/beta" - "github.com/yaegashi/msgraph.go/msauth" "golang.org/x/oauth2" ) diff --git a/go.mod b/go.mod index bb1b69af86..fcab0c09a5 100644 --- a/go.mod +++ b/go.mod @@ -6,7 +6,6 @@ require ( github.com/Jeffail/gabs v1.1.1 // indirect github.com/Philipp15b/go-steam v1.0.1-0.20190816133340-b04c5a83c1c0 github.com/Rhymen/go-whatsapp v0.1.0 - github.com/bwmarrin/discordgo v0.20.2 github.com/d5/tengo/v2 v2.0.2 github.com/dfordsoft/golib v0.0.0-20180902042739-76ee6ab99bec github.com/fsnotify/fsnotify v1.4.7 @@ -23,11 +22,13 @@ require ( github.com/labstack/echo/v4 v4.1.13 github.com/lrstanley/girc v0.0.0-20190801035559-4fc93959e1a7 github.com/matterbridge/Rocket.Chat.Go.SDK v0.0.0-20190210153444-cc9d05784d5d + github.com/matterbridge/discordgo v0.18.1-0.20200308151012-aa40f01cbcc3 github.com/matterbridge/emoji v2.1.1-0.20191117213217-af507f6b02db+incompatible github.com/matterbridge/go-xmpp v0.0.0-20180529212104-cd19799fba91 github.com/matterbridge/gomatrix v0.0.0-20200209224845-c2104d7936a6 github.com/matterbridge/gozulipbot v0.0.0-20190212232658-7aa251978a18 github.com/matterbridge/logrus-prefixed-formatter v0.0.0-20180806162718-01618749af61 + github.com/matterbridge/msgraph.go v0.0.0-20200308150230-9e043fe9dbaa github.com/mattermost/mattermost-server v5.5.0+incompatible github.com/mattn/go-runewidth v0.0.7 // indirect github.com/mattn/godown v0.0.0-20180312012330-2e9e17e0ea51 @@ -50,7 +51,6 @@ require ( github.com/stretchr/testify v1.4.0 github.com/technoweenie/multipartstreamer v1.0.1 // indirect github.com/x-cray/logrus-prefixed-formatter v0.5.2 // indirect - github.com/yaegashi/msgraph.go v0.0.0-00010101000000-000000000000 github.com/zfjagann/golang-ring v0.0.0-20190106091943-a88bb6aef447 golang.org/x/image v0.0.0-20191214001246-9130b4cfad52 golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45 @@ -59,8 +59,8 @@ require ( gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect ) -replace github.com/bwmarrin/discordgo v0.20.2 => github.com/matterbridge/discordgo v0.18.1-0.20200109173909-ed873362fa43 +//replace github.com/bwmarrin/discordgo v0.20.2 => github.com/matterbridge/discordgo v0.18.1-0.20200109173909-ed873362fa43 -replace github.com/yaegashi/msgraph.go => github.com/matterbridge/msgraph.go v0.0.0-20191226214848-9e5d9c08a4e1 +//replace github.com/yaegashi/msgraph.go => github.com/matterbridge/msgraph.go v0.0.0-20191226214848-9e5d9c08a4e1 go 1.13 diff --git a/go.sum b/go.sum index 58fe341c8f..30fc7d45a2 100644 --- a/go.sum +++ b/go.sum @@ -125,8 +125,8 @@ github.com/magiconair/properties v1.8.1 h1:ZC2Vc7/ZFkGmsVC9KvOjumD+G5lXy2RtTKyzR github.com/magiconair/properties v1.8.1/go.mod h1:PppfXfuXeibc/6YijjN8zIbojt8czPbwD3XqdrwzmxQ= github.com/matterbridge/Rocket.Chat.Go.SDK v0.0.0-20190210153444-cc9d05784d5d h1:F+Sr+C0ojSlYQ37BLylQtSFmyQULe3jbAygcyXQ9mVs= github.com/matterbridge/Rocket.Chat.Go.SDK v0.0.0-20190210153444-cc9d05784d5d/go.mod h1:c6MxwqHD+0HvtAJjsHMIdPCiAwGiQwPRPTp69ACMg8A= -github.com/matterbridge/discordgo v0.18.1-0.20200109173909-ed873362fa43 h1:xTcLiEPMp9jVh/lHEPpLc87RZ4sRWRZe0rM578/waOk= -github.com/matterbridge/discordgo v0.18.1-0.20200109173909-ed873362fa43/go.mod h1:O9S4p+ofTFwB02em7jkpkV8M3R0/PUVOwN61zSZ0r4Q= +github.com/matterbridge/discordgo v0.18.1-0.20200308151012-aa40f01cbcc3 h1:VP/DNRn2HtrVRN6+X3h4FDcQI2OOKT+88WUi21ZD1Kw= +github.com/matterbridge/discordgo v0.18.1-0.20200308151012-aa40f01cbcc3/go.mod h1:5a1bHtG/38ofcx9cgwM5eTW/Pl4SpbQksNDnTRcGA2Y= github.com/matterbridge/emoji v2.1.1-0.20191117213217-af507f6b02db+incompatible h1:oaOqwbg5HxHRxvAbd84ks0Okwoc1ISyUZ87EiVJFhGI= github.com/matterbridge/emoji v2.1.1-0.20191117213217-af507f6b02db+incompatible/go.mod h1:igE6rUAn3jai2wCdsjFHfhUoekjrFthoEjFObKKwSb4= github.com/matterbridge/go-xmpp v0.0.0-20180529212104-cd19799fba91 h1:KzDEcy8eDbTx881giW8a6llsAck3e2bJvMyKvh1IK+k= @@ -137,8 +137,8 @@ github.com/matterbridge/gozulipbot v0.0.0-20190212232658-7aa251978a18 h1:fLhwXtW github.com/matterbridge/gozulipbot v0.0.0-20190212232658-7aa251978a18/go.mod h1:yAjnZ34DuDyPHMPHHjOsTk/FefW4JJjoMMCGt/8uuQA= github.com/matterbridge/logrus-prefixed-formatter v0.0.0-20180806162718-01618749af61 h1:R/MgM/eUyRBQx2FiH6JVmXck8PaAuKfe2M1tWIzW7nE= github.com/matterbridge/logrus-prefixed-formatter v0.0.0-20180806162718-01618749af61/go.mod h1:iXGEotOvwI1R1SjLxRc+BF5rUORTMtE0iMZBT2lxqAU= -github.com/matterbridge/msgraph.go v0.0.0-20191226214848-9e5d9c08a4e1 h1:Yzi9wh9al/7R84U+TETBdNW1XkE/Nbvz7RFPN4y2o2o= -github.com/matterbridge/msgraph.go v0.0.0-20191226214848-9e5d9c08a4e1/go.mod h1:l0kx9L8Z+NbBCGrQ/y+ldKZ/fiwBZjPoXwDS55LTumI= +github.com/matterbridge/msgraph.go v0.0.0-20200308150230-9e043fe9dbaa h1:ZP87nK5Mhgvt6Rpgbztdmq9+6cb3aZ6MgW/JWKbnMrI= +github.com/matterbridge/msgraph.go v0.0.0-20200308150230-9e043fe9dbaa/go.mod h1:l0kx9L8Z+NbBCGrQ/y+ldKZ/fiwBZjPoXwDS55LTumI= github.com/mattermost/mattermost-server v5.5.0+incompatible h1:0wcLGgYtd+YImtLDPf2AOfpBHxbU4suATx+6XKw1XbU= github.com/mattermost/mattermost-server v5.5.0+incompatible/go.mod h1:5L6MjAec+XXQwMIt791Ganu45GKsSiM+I0tLR9wUj8Y= github.com/mattn/go-colorable v0.1.1/go.mod h1:FuOcm+DKB9mbwrcAfNl7/TZVBZ6rcnceauSikq3lYCQ= diff --git a/vendor/github.com/bwmarrin/discordgo/.travis.yml b/vendor/github.com/matterbridge/discordgo/.travis.yml similarity index 100% rename from vendor/github.com/bwmarrin/discordgo/.travis.yml rename to vendor/github.com/matterbridge/discordgo/.travis.yml diff --git a/vendor/github.com/bwmarrin/discordgo/LICENSE b/vendor/github.com/matterbridge/discordgo/LICENSE similarity index 100% rename from vendor/github.com/bwmarrin/discordgo/LICENSE rename to vendor/github.com/matterbridge/discordgo/LICENSE diff --git a/vendor/github.com/bwmarrin/discordgo/README.md b/vendor/github.com/matterbridge/discordgo/README.md similarity index 100% rename from vendor/github.com/bwmarrin/discordgo/README.md rename to vendor/github.com/matterbridge/discordgo/README.md diff --git a/vendor/github.com/bwmarrin/discordgo/discord.go b/vendor/github.com/matterbridge/discordgo/discord.go similarity index 96% rename from vendor/github.com/bwmarrin/discordgo/discord.go rename to vendor/github.com/matterbridge/discordgo/discord.go index ac4e542666..3bcbe8b816 100644 --- a/vendor/github.com/bwmarrin/discordgo/discord.go +++ b/vendor/github.com/matterbridge/discordgo/discord.go @@ -1,5 +1,5 @@ // Discordgo - Discord bindings for Go -// Available at https://github.com/bwmarrin/discordgo +// Available at https://github.com/matterbridge/discordgo // Copyright 2015-2016 Bruce Marriner . All rights reserved. // Use of this source code is governed by a BSD-style @@ -58,7 +58,7 @@ func New(args ...interface{}) (s *Session, err error) { ShardCount: 1, MaxRestRetries: 3, Client: &http.Client{Timeout: (20 * time.Second)}, - UserAgent: "DiscordBot (https://github.com/bwmarrin/discordgo, v" + VERSION + ")", + UserAgent: "DiscordBot (https://github.com/matterbridge/discordgo, v" + VERSION + ")", sequence: new(int64), LastHeartbeatAck: time.Now().UTC(), } diff --git a/vendor/github.com/bwmarrin/discordgo/endpoints.go b/vendor/github.com/matterbridge/discordgo/endpoints.go similarity index 100% rename from vendor/github.com/bwmarrin/discordgo/endpoints.go rename to vendor/github.com/matterbridge/discordgo/endpoints.go diff --git a/vendor/github.com/bwmarrin/discordgo/event.go b/vendor/github.com/matterbridge/discordgo/event.go similarity index 100% rename from vendor/github.com/bwmarrin/discordgo/event.go rename to vendor/github.com/matterbridge/discordgo/event.go diff --git a/vendor/github.com/bwmarrin/discordgo/eventhandlers.go b/vendor/github.com/matterbridge/discordgo/eventhandlers.go similarity index 100% rename from vendor/github.com/bwmarrin/discordgo/eventhandlers.go rename to vendor/github.com/matterbridge/discordgo/eventhandlers.go diff --git a/vendor/github.com/bwmarrin/discordgo/events.go b/vendor/github.com/matterbridge/discordgo/events.go similarity index 100% rename from vendor/github.com/bwmarrin/discordgo/events.go rename to vendor/github.com/matterbridge/discordgo/events.go diff --git a/vendor/github.com/bwmarrin/discordgo/go.mod b/vendor/github.com/matterbridge/discordgo/go.mod similarity index 72% rename from vendor/github.com/bwmarrin/discordgo/go.mod rename to vendor/github.com/matterbridge/discordgo/go.mod index 2ff8868079..484bd32d49 100644 --- a/vendor/github.com/bwmarrin/discordgo/go.mod +++ b/vendor/github.com/matterbridge/discordgo/go.mod @@ -1,4 +1,4 @@ -module github.com/bwmarrin/discordgo +module github.com/matterbridge/discordgo require ( github.com/gorilla/websocket v1.4.0 diff --git a/vendor/github.com/bwmarrin/discordgo/go.sum b/vendor/github.com/matterbridge/discordgo/go.sum similarity index 100% rename from vendor/github.com/bwmarrin/discordgo/go.sum rename to vendor/github.com/matterbridge/discordgo/go.sum diff --git a/vendor/github.com/bwmarrin/discordgo/logging.go b/vendor/github.com/matterbridge/discordgo/logging.go similarity index 100% rename from vendor/github.com/bwmarrin/discordgo/logging.go rename to vendor/github.com/matterbridge/discordgo/logging.go diff --git a/vendor/github.com/bwmarrin/discordgo/message.go b/vendor/github.com/matterbridge/discordgo/message.go similarity index 100% rename from vendor/github.com/bwmarrin/discordgo/message.go rename to vendor/github.com/matterbridge/discordgo/message.go diff --git a/vendor/github.com/bwmarrin/discordgo/mkdocs.yml b/vendor/github.com/matterbridge/discordgo/mkdocs.yml similarity index 100% rename from vendor/github.com/bwmarrin/discordgo/mkdocs.yml rename to vendor/github.com/matterbridge/discordgo/mkdocs.yml diff --git a/vendor/github.com/bwmarrin/discordgo/oauth2.go b/vendor/github.com/matterbridge/discordgo/oauth2.go similarity index 100% rename from vendor/github.com/bwmarrin/discordgo/oauth2.go rename to vendor/github.com/matterbridge/discordgo/oauth2.go diff --git a/vendor/github.com/bwmarrin/discordgo/ratelimit.go b/vendor/github.com/matterbridge/discordgo/ratelimit.go similarity index 100% rename from vendor/github.com/bwmarrin/discordgo/ratelimit.go rename to vendor/github.com/matterbridge/discordgo/ratelimit.go diff --git a/vendor/github.com/bwmarrin/discordgo/restapi.go b/vendor/github.com/matterbridge/discordgo/restapi.go similarity index 100% rename from vendor/github.com/bwmarrin/discordgo/restapi.go rename to vendor/github.com/matterbridge/discordgo/restapi.go diff --git a/vendor/github.com/bwmarrin/discordgo/state.go b/vendor/github.com/matterbridge/discordgo/state.go similarity index 100% rename from vendor/github.com/bwmarrin/discordgo/state.go rename to vendor/github.com/matterbridge/discordgo/state.go diff --git a/vendor/github.com/bwmarrin/discordgo/structs.go b/vendor/github.com/matterbridge/discordgo/structs.go similarity index 100% rename from vendor/github.com/bwmarrin/discordgo/structs.go rename to vendor/github.com/matterbridge/discordgo/structs.go diff --git a/vendor/github.com/bwmarrin/discordgo/types.go b/vendor/github.com/matterbridge/discordgo/types.go similarity index 100% rename from vendor/github.com/bwmarrin/discordgo/types.go rename to vendor/github.com/matterbridge/discordgo/types.go diff --git a/vendor/github.com/bwmarrin/discordgo/user.go b/vendor/github.com/matterbridge/discordgo/user.go similarity index 100% rename from vendor/github.com/bwmarrin/discordgo/user.go rename to vendor/github.com/matterbridge/discordgo/user.go diff --git a/vendor/github.com/bwmarrin/discordgo/util.go b/vendor/github.com/matterbridge/discordgo/util.go similarity index 100% rename from vendor/github.com/bwmarrin/discordgo/util.go rename to vendor/github.com/matterbridge/discordgo/util.go diff --git a/vendor/github.com/bwmarrin/discordgo/voice.go b/vendor/github.com/matterbridge/discordgo/voice.go similarity index 100% rename from vendor/github.com/bwmarrin/discordgo/voice.go rename to vendor/github.com/matterbridge/discordgo/voice.go diff --git a/vendor/github.com/bwmarrin/discordgo/wsapi.go b/vendor/github.com/matterbridge/discordgo/wsapi.go similarity index 100% rename from vendor/github.com/bwmarrin/discordgo/wsapi.go rename to vendor/github.com/matterbridge/discordgo/wsapi.go diff --git a/vendor/github.com/yaegashi/msgraph.go/LICENSE b/vendor/github.com/matterbridge/msgraph.go/LICENSE similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/LICENSE rename to vendor/github.com/matterbridge/msgraph.go/LICENSE diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ACLModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ACLModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ACLModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ACLModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ACLTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/ACLTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ACLTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ACLTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/APIApplicationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/APIApplicationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/APIApplicationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/APIApplicationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/APIServicePrincipalModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/APIServicePrincipalModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/APIServicePrincipalModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/APIServicePrincipalModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AadUserConversationMemberModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AadUserConversationMemberModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AadUserConversationMemberModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AadUserConversationMemberModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AadUserConversationMemberRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/AadUserConversationMemberRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AadUserConversationMemberRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AadUserConversationMemberRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AccessActionModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AccessActionModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AccessActionModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AccessActionModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AccessLevelEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/AccessLevelEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AccessLevelEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AccessLevelEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AccessPackageAssignmentModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AccessPackageAssignmentModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AccessPackageAssignmentModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AccessPackageAssignmentModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AccessPackageAssignmentPolicyModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AccessPackageAssignmentPolicyModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AccessPackageAssignmentPolicyModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AccessPackageAssignmentPolicyModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AccessPackageAssignmentPolicyRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/AccessPackageAssignmentPolicyRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AccessPackageAssignmentPolicyRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AccessPackageAssignmentPolicyRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AccessPackageAssignmentRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/AccessPackageAssignmentRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/AccessPackageAssignmentRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AccessPackageAssignmentRequest.go index 120b0867b6..58823cd407 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/AccessPackageAssignmentRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/AccessPackageAssignmentRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // AccessPackageAssignmentRequestBuilder is request builder for AccessPackageAssignment diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AccessPackageAssignmentRequestObjectAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/AccessPackageAssignmentRequestObjectAction.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AccessPackageAssignmentRequestObjectAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AccessPackageAssignmentRequestObjectAction.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AccessPackageAssignmentRequestObjectModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AccessPackageAssignmentRequestObjectModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AccessPackageAssignmentRequestObjectModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AccessPackageAssignmentRequestObjectModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AccessPackageAssignmentRequestObjectRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/AccessPackageAssignmentRequestObjectRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AccessPackageAssignmentRequestObjectRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AccessPackageAssignmentRequestObjectRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AccessPackageAssignmentResourceRoleModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AccessPackageAssignmentResourceRoleModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AccessPackageAssignmentResourceRoleModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AccessPackageAssignmentResourceRoleModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AccessPackageAssignmentResourceRoleRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/AccessPackageAssignmentResourceRoleRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/AccessPackageAssignmentResourceRoleRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AccessPackageAssignmentResourceRoleRequest.go index 2fabf9595c..5e4b1845a3 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/AccessPackageAssignmentResourceRoleRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/AccessPackageAssignmentResourceRoleRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // AccessPackageAssignmentResourceRoleRequestBuilder is request builder for AccessPackageAssignmentResourceRole diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AccessPackageCatalogModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AccessPackageCatalogModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AccessPackageCatalogModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AccessPackageCatalogModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AccessPackageCatalogRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/AccessPackageCatalogRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/AccessPackageCatalogRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AccessPackageCatalogRequest.go index c0346104a3..d41075ff05 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/AccessPackageCatalogRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/AccessPackageCatalogRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // AccessPackageCatalogRequestBuilder is request builder for AccessPackageCatalog diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AccessPackageModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AccessPackageModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AccessPackageModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AccessPackageModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AccessPackageRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/AccessPackageRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/AccessPackageRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AccessPackageRequest.go index 85580b3627..5b42ccb0da 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/AccessPackageRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/AccessPackageRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // AccessPackageRequestBuilder is request builder for AccessPackage diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AccessPackageResourceModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AccessPackageResourceModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AccessPackageResourceModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AccessPackageResourceModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AccessPackageResourceRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/AccessPackageResourceRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/AccessPackageResourceRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AccessPackageResourceRequest.go index bafa3a7b25..709deb835c 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/AccessPackageResourceRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/AccessPackageResourceRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // AccessPackageResourceRequestBuilder is request builder for AccessPackageResource diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AccessPackageResourceRequestObjectModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AccessPackageResourceRequestObjectModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AccessPackageResourceRequestObjectModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AccessPackageResourceRequestObjectModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AccessPackageResourceRequestObjectRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/AccessPackageResourceRequestObjectRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AccessPackageResourceRequestObjectRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AccessPackageResourceRequestObjectRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AccessPackageResourceRoleModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AccessPackageResourceRoleModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AccessPackageResourceRoleModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AccessPackageResourceRoleModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AccessPackageResourceRoleRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/AccessPackageResourceRoleRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AccessPackageResourceRoleRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AccessPackageResourceRoleRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AccessPackageResourceRoleScopeModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AccessPackageResourceRoleScopeModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AccessPackageResourceRoleScopeModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AccessPackageResourceRoleScopeModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AccessPackageResourceRoleScopeRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/AccessPackageResourceRoleScopeRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AccessPackageResourceRoleScopeRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AccessPackageResourceRoleScopeRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AccessPackageResourceScopeModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AccessPackageResourceScopeModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AccessPackageResourceScopeModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AccessPackageResourceScopeModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AccessPackageResourceScopeRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/AccessPackageResourceScopeRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AccessPackageResourceScopeRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AccessPackageResourceScopeRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AccessPackageSubjectModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AccessPackageSubjectModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AccessPackageSubjectModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AccessPackageSubjectModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AccessPackageSubjectRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/AccessPackageSubjectRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AccessPackageSubjectRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AccessPackageSubjectRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AccessReviewAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/AccessReviewAction.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AccessReviewAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AccessReviewAction.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AccessReviewDecisionModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AccessReviewDecisionModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AccessReviewDecisionModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AccessReviewDecisionModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AccessReviewDecisionRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/AccessReviewDecisionRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AccessReviewDecisionRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AccessReviewDecisionRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AccessReviewModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AccessReviewModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AccessReviewModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AccessReviewModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AccessReviewRecurrenceSettingsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AccessReviewRecurrenceSettingsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AccessReviewRecurrenceSettingsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AccessReviewRecurrenceSettingsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AccessReviewRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/AccessReviewRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/AccessReviewRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AccessReviewRequest.go index 8faa9672e9..efa975648b 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/AccessReviewRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/AccessReviewRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // AccessReviewRequestBuilder is request builder for AccessReview diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AccessReviewReviewerModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AccessReviewReviewerModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AccessReviewReviewerModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AccessReviewReviewerModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AccessReviewReviewerRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/AccessReviewReviewerRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AccessReviewReviewerRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AccessReviewReviewerRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AccessReviewSettingsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AccessReviewSettingsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AccessReviewSettingsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AccessReviewSettingsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AccessScopeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/AccessScopeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AccessScopeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AccessScopeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AccessTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/AccessTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AccessTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AccessTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AccountAliasModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AccountAliasModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AccountAliasModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AccountAliasModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AccountModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AccountModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AccountModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AccountModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AccountRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/AccountRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AccountRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AccountRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AccountStatusEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/AccountStatusEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AccountStatusEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AccountStatusEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionSourceEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/ActionSourceEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ActionSourceEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ActionSourceEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionStateEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/ActionStateEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ActionStateEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ActionStateEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActiveDirectoryWindowsAutopilotDeploymentProfileModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ActiveDirectoryWindowsAutopilotDeploymentProfileModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ActiveDirectoryWindowsAutopilotDeploymentProfileModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ActiveDirectoryWindowsAutopilotDeploymentProfileModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActiveDirectoryWindowsAutopilotDeploymentProfileRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/ActiveDirectoryWindowsAutopilotDeploymentProfileRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ActiveDirectoryWindowsAutopilotDeploymentProfileRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ActiveDirectoryWindowsAutopilotDeploymentProfileRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActivityDomainEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/ActivityDomainEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ActivityDomainEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ActivityDomainEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActivityHistoryItemModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ActivityHistoryItemModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ActivityHistoryItemModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ActivityHistoryItemModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActivityHistoryItemRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/ActivityHistoryItemRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ActivityHistoryItemRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ActivityHistoryItemRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActivityStatisticsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ActivityStatisticsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ActivityStatisticsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ActivityStatisticsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActivityStatisticsRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/ActivityStatisticsRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ActivityStatisticsRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ActivityStatisticsRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActivityTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/ActivityTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ActivityTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ActivityTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AddContentFooterActionModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AddContentFooterActionModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AddContentFooterActionModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AddContentFooterActionModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AddContentHeaderActionModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AddContentHeaderActionModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AddContentHeaderActionModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AddContentHeaderActionModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AddFooterModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AddFooterModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AddFooterModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AddFooterModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AddHeaderModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AddHeaderModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AddHeaderModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AddHeaderModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AddInModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AddInModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AddInModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AddInModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AddWatermarkActionModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AddWatermarkActionModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AddWatermarkActionModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AddWatermarkActionModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AddWatermarkModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AddWatermarkModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AddWatermarkModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AddWatermarkModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AdminConsentModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AdminConsentModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AdminConsentModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AdminConsentModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AdminConsentStateEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/AdminConsentStateEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AdminConsentStateEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AdminConsentStateEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AdministrativeUnitModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AdministrativeUnitModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AdministrativeUnitModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AdministrativeUnitModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AdministrativeUnitRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/AdministrativeUnitRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/AdministrativeUnitRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AdministrativeUnitRequest.go index 687b2f5412..b3c4909eda 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/AdministrativeUnitRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/AdministrativeUnitRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // AdministrativeUnitRequestBuilder is request builder for AdministrativeUnit diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AdministratorConfiguredDeviceComplianceStateEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/AdministratorConfiguredDeviceComplianceStateEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AdministratorConfiguredDeviceComplianceStateEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AdministratorConfiguredDeviceComplianceStateEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AdvancedBitLockerStateEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/AdvancedBitLockerStateEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AdvancedBitLockerStateEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AdvancedBitLockerStateEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AdvancedThreatProtectionOnboardingDeviceSettingStateModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AdvancedThreatProtectionOnboardingDeviceSettingStateModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AdvancedThreatProtectionOnboardingDeviceSettingStateModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AdvancedThreatProtectionOnboardingDeviceSettingStateModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AdvancedThreatProtectionOnboardingDeviceSettingStateRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/AdvancedThreatProtectionOnboardingDeviceSettingStateRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AdvancedThreatProtectionOnboardingDeviceSettingStateRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AdvancedThreatProtectionOnboardingDeviceSettingStateRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AdvancedThreatProtectionOnboardingStateSummaryModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AdvancedThreatProtectionOnboardingStateSummaryModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AdvancedThreatProtectionOnboardingStateSummaryModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AdvancedThreatProtectionOnboardingStateSummaryModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AdvancedThreatProtectionOnboardingStateSummaryRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/AdvancedThreatProtectionOnboardingStateSummaryRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/AdvancedThreatProtectionOnboardingStateSummaryRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AdvancedThreatProtectionOnboardingStateSummaryRequest.go index e9aa13af77..e728cbbb96 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/AdvancedThreatProtectionOnboardingStateSummaryRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/AdvancedThreatProtectionOnboardingStateSummaryRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // AdvancedThreatProtectionOnboardingStateSummaryRequestBuilder is request builder for AdvancedThreatProtectionOnboardingStateSummary diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AgedAccountsPayableModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AgedAccountsPayableModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AgedAccountsPayableModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AgedAccountsPayableModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AgedAccountsPayableRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/AgedAccountsPayableRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AgedAccountsPayableRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AgedAccountsPayableRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AgedAccountsReceivableModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AgedAccountsReceivableModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AgedAccountsReceivableModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AgedAccountsReceivableModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AgedAccountsReceivableRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/AgedAccountsReceivableRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AgedAccountsReceivableRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AgedAccountsReceivableRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AgentStatusEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/AgentStatusEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AgentStatusEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AgentStatusEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AgreementAcceptanceModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AgreementAcceptanceModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AgreementAcceptanceModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AgreementAcceptanceModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AgreementAcceptanceRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/AgreementAcceptanceRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AgreementAcceptanceRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AgreementAcceptanceRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AgreementAcceptanceStateEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/AgreementAcceptanceStateEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AgreementAcceptanceStateEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AgreementAcceptanceStateEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AgreementFileDataModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AgreementFileDataModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AgreementFileDataModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AgreementFileDataModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AgreementFileModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AgreementFileModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AgreementFileModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AgreementFileModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AgreementFileRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/AgreementFileRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AgreementFileRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AgreementFileRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AgreementModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AgreementModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AgreementModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AgreementModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AgreementRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/AgreementRequest.go similarity index 98% rename from vendor/github.com/yaegashi/msgraph.go/beta/AgreementRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AgreementRequest.go index edff5a1df0..b62cc18e5d 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/AgreementRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/AgreementRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // AgreementRequestBuilder is request builder for Agreement diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AirPrintDestinationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AirPrintDestinationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AirPrintDestinationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AirPrintDestinationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AlbumModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AlbumModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AlbumModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AlbumModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AlertAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/AlertAction.go similarity index 98% rename from vendor/github.com/yaegashi/msgraph.go/beta/AlertAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AlertAction.go index b7204ac90d..68dc1ebd47 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/AlertAction.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/AlertAction.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // AlertCollectionUpdateAlertsRequestParameter undocumented diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AlertFeedbackEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/AlertFeedbackEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AlertFeedbackEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AlertFeedbackEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AlertHistoryStateModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AlertHistoryStateModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AlertHistoryStateModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AlertHistoryStateModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AlertModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AlertModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AlertModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AlertModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AlertRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/AlertRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AlertRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AlertRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AlertSeverityEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/AlertSeverityEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AlertSeverityEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AlertSeverityEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AlertStatusEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/AlertStatusEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AlertStatusEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AlertStatusEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AlertTriggerModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AlertTriggerModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AlertTriggerModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AlertTriggerModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AlignmentEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/AlignmentEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AlignmentEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AlignmentEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AllDevicesAssignmentTargetModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AllDevicesAssignmentTargetModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AllDevicesAssignmentTargetModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AllDevicesAssignmentTargetModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AllLicensedUsersAssignmentTargetModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AllLicensedUsersAssignmentTargetModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AllLicensedUsersAssignmentTargetModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AllLicensedUsersAssignmentTargetModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AllowedAudiencesEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/AllowedAudiencesEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AllowedAudiencesEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AllowedAudiencesEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AllowedDataLocationInfoModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AllowedDataLocationInfoModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AllowedDataLocationInfoModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AllowedDataLocationInfoModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AllowedDataLocationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AllowedDataLocationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AllowedDataLocationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AllowedDataLocationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AllowedDataLocationRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/AllowedDataLocationRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AllowedDataLocationRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AllowedDataLocationRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AlternativeSecurityIDModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AlternativeSecurityIDModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AlternativeSecurityIDModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AlternativeSecurityIDModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AnalyticsActivityTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/AnalyticsActivityTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AnalyticsActivityTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AnalyticsActivityTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidCertificateProfileBaseModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidCertificateProfileBaseModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidCertificateProfileBaseModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidCertificateProfileBaseModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidCertificateProfileBaseRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidCertificateProfileBaseRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidCertificateProfileBaseRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidCertificateProfileBaseRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidCompliancePolicyModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidCompliancePolicyModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidCompliancePolicyModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidCompliancePolicyModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidCustomConfigurationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidCustomConfigurationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidCustomConfigurationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidCustomConfigurationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidDeviceComplianceLocalActionBaseModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidDeviceComplianceLocalActionBaseModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidDeviceComplianceLocalActionBaseModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidDeviceComplianceLocalActionBaseModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidDeviceComplianceLocalActionLockDeviceModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidDeviceComplianceLocalActionLockDeviceModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidDeviceComplianceLocalActionLockDeviceModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidDeviceComplianceLocalActionLockDeviceModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidDeviceComplianceLocalActionLockDeviceWithPasscodeModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidDeviceComplianceLocalActionLockDeviceWithPasscodeModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidDeviceComplianceLocalActionLockDeviceWithPasscodeModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidDeviceComplianceLocalActionLockDeviceWithPasscodeModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidDeviceOwnerAppAutoUpdatePolicyTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidDeviceOwnerAppAutoUpdatePolicyTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidDeviceOwnerAppAutoUpdatePolicyTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidDeviceOwnerAppAutoUpdatePolicyTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidDeviceOwnerBatteryPluggedModeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidDeviceOwnerBatteryPluggedModeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidDeviceOwnerBatteryPluggedModeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidDeviceOwnerBatteryPluggedModeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidDeviceOwnerCertificateProfileBaseModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidDeviceOwnerCertificateProfileBaseModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidDeviceOwnerCertificateProfileBaseModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidDeviceOwnerCertificateProfileBaseModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidDeviceOwnerCertificateProfileBaseRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidDeviceOwnerCertificateProfileBaseRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidDeviceOwnerCertificateProfileBaseRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidDeviceOwnerCertificateProfileBaseRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidDeviceOwnerCompliancePolicyModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidDeviceOwnerCompliancePolicyModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidDeviceOwnerCompliancePolicyModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidDeviceOwnerCompliancePolicyModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidDeviceOwnerDefaultAppPermissionPolicyTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidDeviceOwnerDefaultAppPermissionPolicyTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidDeviceOwnerDefaultAppPermissionPolicyTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidDeviceOwnerDefaultAppPermissionPolicyTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidDeviceOwnerEnrollmentProfileAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidDeviceOwnerEnrollmentProfileAction.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidDeviceOwnerEnrollmentProfileAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidDeviceOwnerEnrollmentProfileAction.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidDeviceOwnerEnrollmentProfileModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidDeviceOwnerEnrollmentProfileModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidDeviceOwnerEnrollmentProfileModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidDeviceOwnerEnrollmentProfileModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidDeviceOwnerEnrollmentProfileRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidDeviceOwnerEnrollmentProfileRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidDeviceOwnerEnrollmentProfileRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidDeviceOwnerEnrollmentProfileRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidDeviceOwnerEnterpriseWiFiConfigurationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidDeviceOwnerEnterpriseWiFiConfigurationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidDeviceOwnerEnterpriseWiFiConfigurationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidDeviceOwnerEnterpriseWiFiConfigurationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidDeviceOwnerEnterpriseWiFiConfigurationRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidDeviceOwnerEnterpriseWiFiConfigurationRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidDeviceOwnerEnterpriseWiFiConfigurationRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidDeviceOwnerEnterpriseWiFiConfigurationRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidDeviceOwnerGeneralDeviceConfigurationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidDeviceOwnerGeneralDeviceConfigurationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidDeviceOwnerGeneralDeviceConfigurationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidDeviceOwnerGeneralDeviceConfigurationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidDeviceOwnerGlobalProxyAutoConfigModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidDeviceOwnerGlobalProxyAutoConfigModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidDeviceOwnerGlobalProxyAutoConfigModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidDeviceOwnerGlobalProxyAutoConfigModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidDeviceOwnerGlobalProxyDirectModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidDeviceOwnerGlobalProxyDirectModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidDeviceOwnerGlobalProxyDirectModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidDeviceOwnerGlobalProxyDirectModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidDeviceOwnerGlobalProxyModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidDeviceOwnerGlobalProxyModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidDeviceOwnerGlobalProxyModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidDeviceOwnerGlobalProxyModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidDeviceOwnerPlayStoreModeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidDeviceOwnerPlayStoreModeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidDeviceOwnerPlayStoreModeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidDeviceOwnerPlayStoreModeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidDeviceOwnerRequiredPasswordTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidDeviceOwnerRequiredPasswordTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidDeviceOwnerRequiredPasswordTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidDeviceOwnerRequiredPasswordTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidDeviceOwnerScepCertificateProfileModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidDeviceOwnerScepCertificateProfileModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidDeviceOwnerScepCertificateProfileModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidDeviceOwnerScepCertificateProfileModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidDeviceOwnerScepCertificateProfileRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidDeviceOwnerScepCertificateProfileRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidDeviceOwnerScepCertificateProfileRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidDeviceOwnerScepCertificateProfileRequest.go index c67e7d4097..282c88ab92 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidDeviceOwnerScepCertificateProfileRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidDeviceOwnerScepCertificateProfileRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // AndroidDeviceOwnerScepCertificateProfileRequestBuilder is request builder for AndroidDeviceOwnerScepCertificateProfile diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidDeviceOwnerSystemUpdateInstallTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidDeviceOwnerSystemUpdateInstallTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidDeviceOwnerSystemUpdateInstallTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidDeviceOwnerSystemUpdateInstallTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidDeviceOwnerTrustedRootCertificateModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidDeviceOwnerTrustedRootCertificateModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidDeviceOwnerTrustedRootCertificateModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidDeviceOwnerTrustedRootCertificateModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidDeviceOwnerTrustedRootCertificateRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidDeviceOwnerTrustedRootCertificateRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidDeviceOwnerTrustedRootCertificateRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidDeviceOwnerTrustedRootCertificateRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidDeviceOwnerVirtualHomeButtonTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidDeviceOwnerVirtualHomeButtonTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidDeviceOwnerVirtualHomeButtonTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidDeviceOwnerVirtualHomeButtonTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidDeviceOwnerVpnConfigurationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidDeviceOwnerVpnConfigurationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidDeviceOwnerVpnConfigurationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidDeviceOwnerVpnConfigurationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidDeviceOwnerVpnConfigurationRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidDeviceOwnerVpnConfigurationRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidDeviceOwnerVpnConfigurationRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidDeviceOwnerVpnConfigurationRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidDeviceOwnerWiFiConfigurationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidDeviceOwnerWiFiConfigurationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidDeviceOwnerWiFiConfigurationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidDeviceOwnerWiFiConfigurationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidDeviceOwnerWiFiSecurityTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidDeviceOwnerWiFiSecurityTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidDeviceOwnerWiFiSecurityTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidDeviceOwnerWiFiSecurityTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidEapTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidEapTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidEapTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidEapTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidEasEmailProfileConfigurationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidEasEmailProfileConfigurationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidEasEmailProfileConfigurationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidEasEmailProfileConfigurationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidEasEmailProfileConfigurationRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidEasEmailProfileConfigurationRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidEasEmailProfileConfigurationRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidEasEmailProfileConfigurationRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidEnrollmentCompanyCodeModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidEnrollmentCompanyCodeModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidEnrollmentCompanyCodeModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidEnrollmentCompanyCodeModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidEnterpriseWiFiConfigurationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidEnterpriseWiFiConfigurationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidEnterpriseWiFiConfigurationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidEnterpriseWiFiConfigurationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidEnterpriseWiFiConfigurationRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidEnterpriseWiFiConfigurationRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidEnterpriseWiFiConfigurationRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidEnterpriseWiFiConfigurationRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidForWorkAppConfigurationSchemaItemDataTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidForWorkAppConfigurationSchemaItemDataTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidForWorkAppConfigurationSchemaItemDataTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidForWorkAppConfigurationSchemaItemDataTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidForWorkAppConfigurationSchemaItemModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidForWorkAppConfigurationSchemaItemModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidForWorkAppConfigurationSchemaItemModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidForWorkAppConfigurationSchemaItemModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidForWorkAppConfigurationSchemaModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidForWorkAppConfigurationSchemaModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidForWorkAppConfigurationSchemaModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidForWorkAppConfigurationSchemaModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidForWorkAppConfigurationSchemaRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidForWorkAppConfigurationSchemaRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidForWorkAppConfigurationSchemaRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidForWorkAppConfigurationSchemaRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidForWorkAppModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidForWorkAppModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidForWorkAppModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidForWorkAppModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidForWorkBindStatusEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidForWorkBindStatusEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidForWorkBindStatusEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidForWorkBindStatusEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidForWorkCertificateProfileBaseModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidForWorkCertificateProfileBaseModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidForWorkCertificateProfileBaseModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidForWorkCertificateProfileBaseModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidForWorkCertificateProfileBaseRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidForWorkCertificateProfileBaseRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidForWorkCertificateProfileBaseRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidForWorkCertificateProfileBaseRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidForWorkCompliancePolicyModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidForWorkCompliancePolicyModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidForWorkCompliancePolicyModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidForWorkCompliancePolicyModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidForWorkCrossProfileDataSharingTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidForWorkCrossProfileDataSharingTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidForWorkCrossProfileDataSharingTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidForWorkCrossProfileDataSharingTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidForWorkCustomConfigurationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidForWorkCustomConfigurationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidForWorkCustomConfigurationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidForWorkCustomConfigurationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidForWorkDefaultAppPermissionPolicyTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidForWorkDefaultAppPermissionPolicyTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidForWorkDefaultAppPermissionPolicyTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidForWorkDefaultAppPermissionPolicyTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidForWorkEasEmailProfileBaseModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidForWorkEasEmailProfileBaseModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidForWorkEasEmailProfileBaseModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidForWorkEasEmailProfileBaseModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidForWorkEasEmailProfileBaseRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidForWorkEasEmailProfileBaseRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidForWorkEasEmailProfileBaseRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidForWorkEasEmailProfileBaseRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidForWorkEnrollmentProfileAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidForWorkEnrollmentProfileAction.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidForWorkEnrollmentProfileAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidForWorkEnrollmentProfileAction.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidForWorkEnrollmentProfileModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidForWorkEnrollmentProfileModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidForWorkEnrollmentProfileModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidForWorkEnrollmentProfileModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidForWorkEnrollmentProfileRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidForWorkEnrollmentProfileRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidForWorkEnrollmentProfileRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidForWorkEnrollmentProfileRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidForWorkEnrollmentTargetEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidForWorkEnrollmentTargetEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidForWorkEnrollmentTargetEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidForWorkEnrollmentTargetEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidForWorkEnterpriseWiFiConfigurationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidForWorkEnterpriseWiFiConfigurationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidForWorkEnterpriseWiFiConfigurationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidForWorkEnterpriseWiFiConfigurationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidForWorkEnterpriseWiFiConfigurationRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidForWorkEnterpriseWiFiConfigurationRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidForWorkEnterpriseWiFiConfigurationRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidForWorkEnterpriseWiFiConfigurationRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidForWorkGeneralDeviceConfigurationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidForWorkGeneralDeviceConfigurationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidForWorkGeneralDeviceConfigurationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidForWorkGeneralDeviceConfigurationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidForWorkGmailEasConfigurationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidForWorkGmailEasConfigurationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidForWorkGmailEasConfigurationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidForWorkGmailEasConfigurationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidForWorkImportedPFXCertificateProfileModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidForWorkImportedPFXCertificateProfileModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidForWorkImportedPFXCertificateProfileModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidForWorkImportedPFXCertificateProfileModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidForWorkImportedPFXCertificateProfileRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidForWorkImportedPFXCertificateProfileRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidForWorkImportedPFXCertificateProfileRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidForWorkImportedPFXCertificateProfileRequest.go index 3419bea9fa..a8edc1aee6 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidForWorkImportedPFXCertificateProfileRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidForWorkImportedPFXCertificateProfileRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // AndroidForWorkImportedPFXCertificateProfileRequestBuilder is request builder for AndroidForWorkImportedPFXCertificateProfile diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidForWorkMobileAppConfigurationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidForWorkMobileAppConfigurationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidForWorkMobileAppConfigurationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidForWorkMobileAppConfigurationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidForWorkNineWorkEasConfigurationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidForWorkNineWorkEasConfigurationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidForWorkNineWorkEasConfigurationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidForWorkNineWorkEasConfigurationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidForWorkPkcsCertificateProfileModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidForWorkPkcsCertificateProfileModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidForWorkPkcsCertificateProfileModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidForWorkPkcsCertificateProfileModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidForWorkPkcsCertificateProfileRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidForWorkPkcsCertificateProfileRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidForWorkPkcsCertificateProfileRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidForWorkPkcsCertificateProfileRequest.go index c75fa1cec4..0fc314205e 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidForWorkPkcsCertificateProfileRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidForWorkPkcsCertificateProfileRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // AndroidForWorkPkcsCertificateProfileRequestBuilder is request builder for AndroidForWorkPkcsCertificateProfile diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidForWorkRequiredPasswordTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidForWorkRequiredPasswordTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidForWorkRequiredPasswordTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidForWorkRequiredPasswordTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidForWorkScepCertificateProfileModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidForWorkScepCertificateProfileModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidForWorkScepCertificateProfileModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidForWorkScepCertificateProfileModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidForWorkScepCertificateProfileRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidForWorkScepCertificateProfileRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidForWorkScepCertificateProfileRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidForWorkScepCertificateProfileRequest.go index 53960c87d6..ab2a366da1 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidForWorkScepCertificateProfileRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidForWorkScepCertificateProfileRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // AndroidForWorkScepCertificateProfileRequestBuilder is request builder for AndroidForWorkScepCertificateProfile diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidForWorkSettingsAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidForWorkSettingsAction.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidForWorkSettingsAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidForWorkSettingsAction.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidForWorkSettingsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidForWorkSettingsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidForWorkSettingsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidForWorkSettingsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidForWorkSettingsRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidForWorkSettingsRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidForWorkSettingsRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidForWorkSettingsRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidForWorkSyncStatusEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidForWorkSyncStatusEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidForWorkSyncStatusEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidForWorkSyncStatusEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidForWorkTrustedRootCertificateModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidForWorkTrustedRootCertificateModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidForWorkTrustedRootCertificateModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidForWorkTrustedRootCertificateModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidForWorkTrustedRootCertificateRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidForWorkTrustedRootCertificateRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidForWorkTrustedRootCertificateRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidForWorkTrustedRootCertificateRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidForWorkVpnConfigurationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidForWorkVpnConfigurationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidForWorkVpnConfigurationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidForWorkVpnConfigurationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidForWorkVpnConfigurationRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidForWorkVpnConfigurationRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidForWorkVpnConfigurationRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidForWorkVpnConfigurationRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidForWorkVpnConnectionTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidForWorkVpnConnectionTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidForWorkVpnConnectionTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidForWorkVpnConnectionTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidForWorkWiFiConfigurationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidForWorkWiFiConfigurationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidForWorkWiFiConfigurationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidForWorkWiFiConfigurationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidGeneralDeviceConfigurationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidGeneralDeviceConfigurationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidGeneralDeviceConfigurationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidGeneralDeviceConfigurationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidImportedPFXCertificateProfileModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidImportedPFXCertificateProfileModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidImportedPFXCertificateProfileModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidImportedPFXCertificateProfileModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidImportedPFXCertificateProfileRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidImportedPFXCertificateProfileRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidImportedPFXCertificateProfileRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidImportedPFXCertificateProfileRequest.go index 85df2015c2..3decf105c7 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidImportedPFXCertificateProfileRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidImportedPFXCertificateProfileRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // AndroidImportedPFXCertificateProfileRequestBuilder is request builder for AndroidImportedPFXCertificateProfile diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidKeyguardFeatureEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidKeyguardFeatureEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidKeyguardFeatureEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidKeyguardFeatureEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidLobAppModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidLobAppModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidLobAppModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidLobAppModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidManagedAppProtectionAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidManagedAppProtectionAction.go similarity index 98% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidManagedAppProtectionAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidManagedAppProtectionAction.go index 6e682f80be..ad2a962ed3 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidManagedAppProtectionAction.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidManagedAppProtectionAction.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // AndroidManagedAppProtectionCollectionHasPayloadLinksRequestParameter undocumented diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidManagedAppProtectionModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidManagedAppProtectionModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidManagedAppProtectionModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidManagedAppProtectionModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidManagedAppProtectionRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidManagedAppProtectionRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidManagedAppProtectionRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidManagedAppProtectionRequest.go index 4968969848..4286183974 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidManagedAppProtectionRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidManagedAppProtectionRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // AndroidManagedAppProtectionRequestBuilder is request builder for AndroidManagedAppProtection diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidManagedAppRegistrationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidManagedAppRegistrationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidManagedAppRegistrationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidManagedAppRegistrationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidManagedAppSafetyNetAppsVerificationTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidManagedAppSafetyNetAppsVerificationTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidManagedAppSafetyNetAppsVerificationTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidManagedAppSafetyNetAppsVerificationTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidManagedAppSafetyNetDeviceAttestationTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidManagedAppSafetyNetDeviceAttestationTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidManagedAppSafetyNetDeviceAttestationTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidManagedAppSafetyNetDeviceAttestationTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidManagedStoreAccountAppSyncStatusEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidManagedStoreAccountAppSyncStatusEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidManagedStoreAccountAppSyncStatusEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidManagedStoreAccountAppSyncStatusEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidManagedStoreAccountBindStatusEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidManagedStoreAccountBindStatusEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidManagedStoreAccountBindStatusEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidManagedStoreAccountBindStatusEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidManagedStoreAccountEnrollmentTargetEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidManagedStoreAccountEnrollmentTargetEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidManagedStoreAccountEnrollmentTargetEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidManagedStoreAccountEnrollmentTargetEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidManagedStoreAccountEnterpriseSettingsAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidManagedStoreAccountEnterpriseSettingsAction.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidManagedStoreAccountEnterpriseSettingsAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidManagedStoreAccountEnterpriseSettingsAction.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidManagedStoreAccountEnterpriseSettingsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidManagedStoreAccountEnterpriseSettingsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidManagedStoreAccountEnterpriseSettingsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidManagedStoreAccountEnterpriseSettingsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidManagedStoreAccountEnterpriseSettingsRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidManagedStoreAccountEnterpriseSettingsRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidManagedStoreAccountEnterpriseSettingsRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidManagedStoreAccountEnterpriseSettingsRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidManagedStoreAppConfigurationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidManagedStoreAppConfigurationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidManagedStoreAppConfigurationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidManagedStoreAppConfigurationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidManagedStoreAppConfigurationSchemaItemDataTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidManagedStoreAppConfigurationSchemaItemDataTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidManagedStoreAppConfigurationSchemaItemDataTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidManagedStoreAppConfigurationSchemaItemDataTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidManagedStoreAppConfigurationSchemaItemModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidManagedStoreAppConfigurationSchemaItemModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidManagedStoreAppConfigurationSchemaItemModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidManagedStoreAppConfigurationSchemaItemModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidManagedStoreAppConfigurationSchemaModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidManagedStoreAppConfigurationSchemaModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidManagedStoreAppConfigurationSchemaModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidManagedStoreAppConfigurationSchemaModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidManagedStoreAppConfigurationSchemaRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidManagedStoreAppConfigurationSchemaRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidManagedStoreAppConfigurationSchemaRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidManagedStoreAppConfigurationSchemaRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidManagedStoreAppModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidManagedStoreAppModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidManagedStoreAppModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidManagedStoreAppModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidManagedStoreWebAppModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidManagedStoreWebAppModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidManagedStoreWebAppModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidManagedStoreWebAppModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidMinimumOperatingSystemModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidMinimumOperatingSystemModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidMinimumOperatingSystemModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidMinimumOperatingSystemModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidMobileAppIdentifierModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidMobileAppIdentifierModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidMobileAppIdentifierModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidMobileAppIdentifierModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidOMACpConfigurationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidOMACpConfigurationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidOMACpConfigurationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidOMACpConfigurationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidPermissionActionModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidPermissionActionModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidPermissionActionModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidPermissionActionModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidPermissionActionTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidPermissionActionTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidPermissionActionTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidPermissionActionTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidPkcsCertificateProfileModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidPkcsCertificateProfileModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidPkcsCertificateProfileModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidPkcsCertificateProfileModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidPkcsCertificateProfileRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidPkcsCertificateProfileRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidPkcsCertificateProfileRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidPkcsCertificateProfileRequest.go index 66429cc77b..f6a6801e6d 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidPkcsCertificateProfileRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidPkcsCertificateProfileRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // AndroidPkcsCertificateProfileRequestBuilder is request builder for AndroidPkcsCertificateProfile diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidRequiredPasswordTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidRequiredPasswordTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidRequiredPasswordTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidRequiredPasswordTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidScepCertificateProfileModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidScepCertificateProfileModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidScepCertificateProfileModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidScepCertificateProfileModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidScepCertificateProfileRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidScepCertificateProfileRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidScepCertificateProfileRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidScepCertificateProfileRequest.go index b84f5ca5a5..bbaec7456b 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidScepCertificateProfileRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidScepCertificateProfileRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // AndroidScepCertificateProfileRequestBuilder is request builder for AndroidScepCertificateProfile diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidStoreAppModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidStoreAppModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidStoreAppModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidStoreAppModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidTrustedRootCertificateModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidTrustedRootCertificateModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidTrustedRootCertificateModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidTrustedRootCertificateModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidTrustedRootCertificateRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidTrustedRootCertificateRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidTrustedRootCertificateRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidTrustedRootCertificateRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidUsernameSourceEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidUsernameSourceEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidUsernameSourceEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidUsernameSourceEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidVpnConfigurationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidVpnConfigurationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidVpnConfigurationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidVpnConfigurationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidVpnConfigurationRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidVpnConfigurationRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidVpnConfigurationRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidVpnConfigurationRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidVpnConnectionTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidVpnConnectionTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidVpnConnectionTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidVpnConnectionTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidWiFiConfigurationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidWiFiConfigurationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidWiFiConfigurationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidWiFiConfigurationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidWiFiSecurityTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidWiFiSecurityTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidWiFiSecurityTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidWiFiSecurityTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidWorkProfileCertificateProfileBaseModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidWorkProfileCertificateProfileBaseModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidWorkProfileCertificateProfileBaseModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidWorkProfileCertificateProfileBaseModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidWorkProfileCertificateProfileBaseRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidWorkProfileCertificateProfileBaseRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidWorkProfileCertificateProfileBaseRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidWorkProfileCertificateProfileBaseRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidWorkProfileCompliancePolicyModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidWorkProfileCompliancePolicyModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidWorkProfileCompliancePolicyModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidWorkProfileCompliancePolicyModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidWorkProfileCrossProfileDataSharingTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidWorkProfileCrossProfileDataSharingTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidWorkProfileCrossProfileDataSharingTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidWorkProfileCrossProfileDataSharingTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidWorkProfileCustomConfigurationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidWorkProfileCustomConfigurationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidWorkProfileCustomConfigurationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidWorkProfileCustomConfigurationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidWorkProfileDefaultAppPermissionPolicyTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidWorkProfileDefaultAppPermissionPolicyTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidWorkProfileDefaultAppPermissionPolicyTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidWorkProfileDefaultAppPermissionPolicyTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidWorkProfileEasEmailProfileBaseModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidWorkProfileEasEmailProfileBaseModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidWorkProfileEasEmailProfileBaseModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidWorkProfileEasEmailProfileBaseModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidWorkProfileEasEmailProfileBaseRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidWorkProfileEasEmailProfileBaseRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidWorkProfileEasEmailProfileBaseRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidWorkProfileEasEmailProfileBaseRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidWorkProfileEnterpriseWiFiConfigurationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidWorkProfileEnterpriseWiFiConfigurationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidWorkProfileEnterpriseWiFiConfigurationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidWorkProfileEnterpriseWiFiConfigurationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidWorkProfileEnterpriseWiFiConfigurationRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidWorkProfileEnterpriseWiFiConfigurationRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidWorkProfileEnterpriseWiFiConfigurationRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidWorkProfileEnterpriseWiFiConfigurationRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidWorkProfileGeneralDeviceConfigurationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidWorkProfileGeneralDeviceConfigurationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidWorkProfileGeneralDeviceConfigurationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidWorkProfileGeneralDeviceConfigurationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidWorkProfileGmailEasConfigurationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidWorkProfileGmailEasConfigurationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidWorkProfileGmailEasConfigurationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidWorkProfileGmailEasConfigurationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidWorkProfileNineWorkEasConfigurationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidWorkProfileNineWorkEasConfigurationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidWorkProfileNineWorkEasConfigurationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidWorkProfileNineWorkEasConfigurationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidWorkProfilePkcsCertificateProfileModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidWorkProfilePkcsCertificateProfileModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidWorkProfilePkcsCertificateProfileModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidWorkProfilePkcsCertificateProfileModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidWorkProfilePkcsCertificateProfileRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidWorkProfilePkcsCertificateProfileRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidWorkProfilePkcsCertificateProfileRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidWorkProfilePkcsCertificateProfileRequest.go index 47ef82b7af..9a949907ff 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidWorkProfilePkcsCertificateProfileRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidWorkProfilePkcsCertificateProfileRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // AndroidWorkProfilePkcsCertificateProfileRequestBuilder is request builder for AndroidWorkProfilePkcsCertificateProfile diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidWorkProfileRequiredPasswordTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidWorkProfileRequiredPasswordTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidWorkProfileRequiredPasswordTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidWorkProfileRequiredPasswordTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidWorkProfileScepCertificateProfileModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidWorkProfileScepCertificateProfileModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidWorkProfileScepCertificateProfileModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidWorkProfileScepCertificateProfileModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidWorkProfileScepCertificateProfileRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidWorkProfileScepCertificateProfileRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidWorkProfileScepCertificateProfileRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidWorkProfileScepCertificateProfileRequest.go index 29777252d0..9504a5663c 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidWorkProfileScepCertificateProfileRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidWorkProfileScepCertificateProfileRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // AndroidWorkProfileScepCertificateProfileRequestBuilder is request builder for AndroidWorkProfileScepCertificateProfile diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidWorkProfileTrustedRootCertificateModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidWorkProfileTrustedRootCertificateModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidWorkProfileTrustedRootCertificateModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidWorkProfileTrustedRootCertificateModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidWorkProfileTrustedRootCertificateRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidWorkProfileTrustedRootCertificateRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidWorkProfileTrustedRootCertificateRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidWorkProfileTrustedRootCertificateRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidWorkProfileVpnConfigurationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidWorkProfileVpnConfigurationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidWorkProfileVpnConfigurationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidWorkProfileVpnConfigurationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidWorkProfileVpnConfigurationRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidWorkProfileVpnConfigurationRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidWorkProfileVpnConfigurationRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidWorkProfileVpnConfigurationRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidWorkProfileVpnConnectionTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidWorkProfileVpnConnectionTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidWorkProfileVpnConnectionTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidWorkProfileVpnConnectionTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AndroidWorkProfileWiFiConfigurationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AndroidWorkProfileWiFiConfigurationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AndroidWorkProfileWiFiConfigurationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AndroidWorkProfileWiFiConfigurationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AnniversaryTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/AnniversaryTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AnniversaryTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AnniversaryTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AnonymousIPRiskEventModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AnonymousIPRiskEventModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AnonymousIPRiskEventModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AnonymousIPRiskEventModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AnonymousIPRiskEventRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/AnonymousIPRiskEventRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AnonymousIPRiskEventRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AnonymousIPRiskEventRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AppCatalogsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AppCatalogsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AppCatalogsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AppCatalogsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AppCatalogsRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/AppCatalogsRequest.go similarity index 98% rename from vendor/github.com/yaegashi/msgraph.go/beta/AppCatalogsRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AppCatalogsRequest.go index cf712eacbd..9661518293 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/AppCatalogsRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/AppCatalogsRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // AppCatalogsRequestBuilder is request builder for AppCatalogs diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AppConfigurationSettingItemModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AppConfigurationSettingItemModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AppConfigurationSettingItemModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AppConfigurationSettingItemModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AppHostedMediaConfigModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AppHostedMediaConfigModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AppHostedMediaConfigModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AppHostedMediaConfigModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AppIdentityModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AppIdentityModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AppIdentityModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AppIdentityModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AppInstallControlTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/AppInstallControlTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AppInstallControlTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AppInstallControlTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AppListItemModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AppListItemModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AppListItemModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AppListItemModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AppListTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/AppListTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AppListTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AppListTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AppLockerApplicationControlTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/AppLockerApplicationControlTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AppLockerApplicationControlTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AppLockerApplicationControlTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AppLogCollectionDownloadDetailsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AppLogCollectionDownloadDetailsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AppLogCollectionDownloadDetailsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AppLogCollectionDownloadDetailsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AppLogCollectionRequestObjectAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/AppLogCollectionRequestObjectAction.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AppLogCollectionRequestObjectAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AppLogCollectionRequestObjectAction.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AppLogCollectionRequestObjectModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AppLogCollectionRequestObjectModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AppLogCollectionRequestObjectModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AppLogCollectionRequestObjectModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AppLogCollectionRequestObjectRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/AppLogCollectionRequestObjectRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AppLogCollectionRequestObjectRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AppLogCollectionRequestObjectRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AppLogDecryptionAlgorithmEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/AppLogDecryptionAlgorithmEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AppLogDecryptionAlgorithmEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AppLogDecryptionAlgorithmEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AppLogUploadStateEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/AppLogUploadStateEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AppLogUploadStateEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AppLogUploadStateEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AppManagementLevelEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/AppManagementLevelEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AppManagementLevelEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AppManagementLevelEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AppRoleAssignmentModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AppRoleAssignmentModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AppRoleAssignmentModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AppRoleAssignmentModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AppRoleAssignmentRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/AppRoleAssignmentRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AppRoleAssignmentRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AppRoleAssignmentRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AppRoleModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AppRoleModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AppRoleModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AppRoleModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AppVulnerabilityManagedDeviceModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AppVulnerabilityManagedDeviceModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AppVulnerabilityManagedDeviceModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AppVulnerabilityManagedDeviceModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AppVulnerabilityManagedDeviceRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/AppVulnerabilityManagedDeviceRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AppVulnerabilityManagedDeviceRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AppVulnerabilityManagedDeviceRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AppVulnerabilityMobileAppModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AppVulnerabilityMobileAppModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AppVulnerabilityMobileAppModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AppVulnerabilityMobileAppModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AppVulnerabilityMobileAppRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/AppVulnerabilityMobileAppRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AppVulnerabilityMobileAppRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AppVulnerabilityMobileAppRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AppVulnerabilityTaskMitigationTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/AppVulnerabilityTaskMitigationTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AppVulnerabilityTaskMitigationTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AppVulnerabilityTaskMitigationTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AppVulnerabilityTaskModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AppVulnerabilityTaskModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AppVulnerabilityTaskModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AppVulnerabilityTaskModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AppVulnerabilityTaskRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/AppVulnerabilityTaskRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/AppVulnerabilityTaskRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AppVulnerabilityTaskRequest.go index 8331e653ec..63c826e451 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/AppVulnerabilityTaskRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/AppVulnerabilityTaskRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // AppVulnerabilityTaskRequestBuilder is request builder for AppVulnerabilityTask diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AppleDeviceFeaturesConfigurationBaseModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AppleDeviceFeaturesConfigurationBaseModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AppleDeviceFeaturesConfigurationBaseModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AppleDeviceFeaturesConfigurationBaseModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AppleEnrollmentProfileAssignmentModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AppleEnrollmentProfileAssignmentModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AppleEnrollmentProfileAssignmentModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AppleEnrollmentProfileAssignmentModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AppleEnrollmentProfileAssignmentRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/AppleEnrollmentProfileAssignmentRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AppleEnrollmentProfileAssignmentRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AppleEnrollmentProfileAssignmentRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AppleOwnerTypeEnrollmentTypeModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AppleOwnerTypeEnrollmentTypeModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AppleOwnerTypeEnrollmentTypeModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AppleOwnerTypeEnrollmentTypeModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ApplePushNotificationCertificateModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ApplePushNotificationCertificateModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ApplePushNotificationCertificateModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ApplePushNotificationCertificateModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ApplePushNotificationCertificateRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/ApplePushNotificationCertificateRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ApplePushNotificationCertificateRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ApplePushNotificationCertificateRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AppleSubjectNameFormatEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/AppleSubjectNameFormatEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AppleSubjectNameFormatEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AppleSubjectNameFormatEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AppleUserInitiatedEnrollmentProfileAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/AppleUserInitiatedEnrollmentProfileAction.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AppleUserInitiatedEnrollmentProfileAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AppleUserInitiatedEnrollmentProfileAction.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AppleUserInitiatedEnrollmentProfileModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AppleUserInitiatedEnrollmentProfileModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AppleUserInitiatedEnrollmentProfileModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AppleUserInitiatedEnrollmentProfileModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AppleUserInitiatedEnrollmentProfileRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/AppleUserInitiatedEnrollmentProfileRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/AppleUserInitiatedEnrollmentProfileRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AppleUserInitiatedEnrollmentProfileRequest.go index a55d432e34..7f3aa642ad 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/AppleUserInitiatedEnrollmentProfileRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/AppleUserInitiatedEnrollmentProfileRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // AppleUserInitiatedEnrollmentProfileRequestBuilder is request builder for AppleUserInitiatedEnrollmentProfile diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AppleUserInitiatedEnrollmentTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/AppleUserInitiatedEnrollmentTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AppleUserInitiatedEnrollmentTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AppleUserInitiatedEnrollmentTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AppleVpnConfigurationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AppleVpnConfigurationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AppleVpnConfigurationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AppleVpnConfigurationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AppleVpnConnectionTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/AppleVpnConnectionTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AppleVpnConnectionTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AppleVpnConnectionTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AppleVppTokenTroubleshootingEventModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AppleVppTokenTroubleshootingEventModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AppleVppTokenTroubleshootingEventModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AppleVppTokenTroubleshootingEventModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ApplicationAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/ApplicationAction.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ApplicationAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ApplicationAction.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ApplicationEnforcedRestrictionsSessionControlModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ApplicationEnforcedRestrictionsSessionControlModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ApplicationEnforcedRestrictionsSessionControlModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ApplicationEnforcedRestrictionsSessionControlModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ApplicationGuardBlockClipboardSharingTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/ApplicationGuardBlockClipboardSharingTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ApplicationGuardBlockClipboardSharingTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ApplicationGuardBlockClipboardSharingTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ApplicationGuardBlockFileTransferTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/ApplicationGuardBlockFileTransferTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ApplicationGuardBlockFileTransferTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ApplicationGuardBlockFileTransferTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ApplicationGuardEnabledOptionsEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/ApplicationGuardEnabledOptionsEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ApplicationGuardEnabledOptionsEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ApplicationGuardEnabledOptionsEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ApplicationIdentityTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/ApplicationIdentityTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ApplicationIdentityTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ApplicationIdentityTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ApplicationModeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/ApplicationModeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ApplicationModeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ApplicationModeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ApplicationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ApplicationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ApplicationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ApplicationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ApplicationPermissionsRequiredEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/ApplicationPermissionsRequiredEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ApplicationPermissionsRequiredEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ApplicationPermissionsRequiredEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ApplicationRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/ApplicationRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/ApplicationRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ApplicationRequest.go index c6741427f0..6aee12a495 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ApplicationRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/ApplicationRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // ApplicationRequestBuilder is request builder for Application diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ApplicationServicePrincipalModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ApplicationServicePrincipalModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ApplicationServicePrincipalModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ApplicationServicePrincipalModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ApplicationSignInDetailedSummaryModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ApplicationSignInDetailedSummaryModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ApplicationSignInDetailedSummaryModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ApplicationSignInDetailedSummaryModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ApplicationSignInDetailedSummaryRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/ApplicationSignInDetailedSummaryRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ApplicationSignInDetailedSummaryRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ApplicationSignInDetailedSummaryRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ApplicationSignInSummaryModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ApplicationSignInSummaryModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ApplicationSignInSummaryModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ApplicationSignInSummaryModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ApplicationTemplateAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/ApplicationTemplateAction.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ApplicationTemplateAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ApplicationTemplateAction.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ApplicationTemplateModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ApplicationTemplateModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ApplicationTemplateModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ApplicationTemplateModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ApplicationTemplateRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/ApplicationTemplateRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ApplicationTemplateRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ApplicationTemplateRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ApplicationTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/ApplicationTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ApplicationTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ApplicationTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AppliedConditionalAccessPolicyModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AppliedConditionalAccessPolicyModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AppliedConditionalAccessPolicyModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AppliedConditionalAccessPolicyModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AppliedConditionalAccessPolicyResultEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/AppliedConditionalAccessPolicyResultEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AppliedConditionalAccessPolicyResultEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AppliedConditionalAccessPolicyResultEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ApplyLabelActionModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ApplyLabelActionModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ApplyLabelActionModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ApplyLabelActionModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ApprovalStateEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/ApprovalStateEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ApprovalStateEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ApprovalStateEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ApprovalWorkflowProviderModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ApprovalWorkflowProviderModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ApprovalWorkflowProviderModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ApprovalWorkflowProviderModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ApprovalWorkflowProviderRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/ApprovalWorkflowProviderRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/ApprovalWorkflowProviderRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ApprovalWorkflowProviderRequest.go index 2192c6ee25..2281608fb8 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ApprovalWorkflowProviderRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/ApprovalWorkflowProviderRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // ApprovalWorkflowProviderRequestBuilder is request builder for ApprovalWorkflowProvider diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AssignedLabelModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AssignedLabelModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AssignedLabelModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AssignedLabelModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AssignedLicenseModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AssignedLicenseModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AssignedLicenseModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AssignedLicenseModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AssignedPlanModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AssignedPlanModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AssignedPlanModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AssignedPlanModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AssignmentMethodEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/AssignmentMethodEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AssignmentMethodEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AssignmentMethodEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AttachmentAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/AttachmentAction.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AttachmentAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AttachmentAction.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AttachmentItemModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AttachmentItemModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AttachmentItemModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AttachmentItemModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AttachmentModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AttachmentModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AttachmentModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AttachmentModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AttachmentRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/AttachmentRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AttachmentRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AttachmentRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AttachmentTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/AttachmentTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AttachmentTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AttachmentTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AttendeeAvailabilityModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AttendeeAvailabilityModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AttendeeAvailabilityModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AttendeeAvailabilityModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AttendeeBaseModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AttendeeBaseModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AttendeeBaseModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AttendeeBaseModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AttendeeModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AttendeeModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AttendeeModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AttendeeModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AttendeeTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/AttendeeTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AttendeeTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AttendeeTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AttributeDefinitionModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AttributeDefinitionModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AttributeDefinitionModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AttributeDefinitionModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AttributeFlowBehaviorEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/AttributeFlowBehaviorEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AttributeFlowBehaviorEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AttributeFlowBehaviorEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AttributeFlowTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/AttributeFlowTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AttributeFlowTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AttributeFlowTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AttributeMappingFunctionSchemaModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AttributeMappingFunctionSchemaModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AttributeMappingFunctionSchemaModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AttributeMappingFunctionSchemaModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AttributeMappingFunctionSchemaRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/AttributeMappingFunctionSchemaRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AttributeMappingFunctionSchemaRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AttributeMappingFunctionSchemaRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AttributeMappingModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AttributeMappingModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AttributeMappingModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AttributeMappingModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AttributeMappingParameterSchemaModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AttributeMappingParameterSchemaModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AttributeMappingParameterSchemaModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AttributeMappingParameterSchemaModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AttributeMappingSourceModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AttributeMappingSourceModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AttributeMappingSourceModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AttributeMappingSourceModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AttributeMappingSourceTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/AttributeMappingSourceTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AttributeMappingSourceTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AttributeMappingSourceTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AttributeTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/AttributeTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AttributeTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AttributeTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AudioConferencingModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AudioConferencingModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AudioConferencingModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AudioConferencingModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AudioModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AudioModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AudioModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AudioModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AudioRoutingGroupModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AudioRoutingGroupModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AudioRoutingGroupModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AudioRoutingGroupModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AudioRoutingGroupRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/AudioRoutingGroupRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AudioRoutingGroupRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AudioRoutingGroupRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AuditActivityInitiatorModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AuditActivityInitiatorModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AuditActivityInitiatorModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AuditActivityInitiatorModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AuditActorModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AuditActorModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AuditActorModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AuditActorModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AuditEventModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AuditEventModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AuditEventModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AuditEventModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AuditEventRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/AuditEventRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AuditEventRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AuditEventRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AuditLogRootModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AuditLogRootModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AuditLogRootModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AuditLogRootModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AuditLogRootRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/AuditLogRootRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/AuditLogRootRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AuditLogRootRequest.go index 7ea5e67cd1..a1d9242834 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/AuditLogRootRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/AuditLogRootRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // AuditLogRootRequestBuilder is request builder for AuditLogRoot diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AuditPropertyModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AuditPropertyModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AuditPropertyModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AuditPropertyModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AuditResourceModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AuditResourceModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AuditResourceModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AuditResourceModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AuthMethodsTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/AuthMethodsTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AuthMethodsTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AuthMethodsTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AuthenticationDetailModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AuthenticationDetailModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AuthenticationDetailModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AuthenticationDetailModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AuthenticationRequirementPolicyModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AuthenticationRequirementPolicyModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AuthenticationRequirementPolicyModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AuthenticationRequirementPolicyModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AutoAdmittedUsersTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/AutoAdmittedUsersTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AutoAdmittedUsersTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AutoAdmittedUsersTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AutoLabelingModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AutoLabelingModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AutoLabelingModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AutoLabelingModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AutoRestartNotificationDismissalMethodEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/AutoRestartNotificationDismissalMethodEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AutoRestartNotificationDismissalMethodEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AutoRestartNotificationDismissalMethodEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AutoReviewSettingsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AutoReviewSettingsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AutoReviewSettingsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AutoReviewSettingsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AutomaticRepliesMailTipsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AutomaticRepliesMailTipsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AutomaticRepliesMailTipsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AutomaticRepliesMailTipsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AutomaticRepliesSettingModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AutomaticRepliesSettingModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AutomaticRepliesSettingModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AutomaticRepliesSettingModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AutomaticRepliesStatusEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/AutomaticRepliesStatusEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AutomaticRepliesStatusEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AutomaticRepliesStatusEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AutomaticUpdateModeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/AutomaticUpdateModeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AutomaticUpdateModeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AutomaticUpdateModeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AverageComparativeScoreModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AverageComparativeScoreModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AverageComparativeScoreModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AverageComparativeScoreModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AzureADFeatureUsageModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AzureADFeatureUsageModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AzureADFeatureUsageModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AzureADFeatureUsageModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AzureADLicenseTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/AzureADLicenseTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AzureADLicenseTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AzureADLicenseTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AzureADLicenseUsageModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AzureADLicenseUsageModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AzureADLicenseUsageModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AzureADLicenseUsageModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AzureADUserFeatureUsageModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AzureADUserFeatureUsageModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AzureADUserFeatureUsageModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AzureADUserFeatureUsageModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AzureADWindowsAutopilotDeploymentProfileModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/AzureADWindowsAutopilotDeploymentProfileModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/AzureADWindowsAutopilotDeploymentProfileModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/AzureADWindowsAutopilotDeploymentProfileModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/BaseItemModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/BaseItemModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/BaseItemModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/BaseItemModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/BaseItemRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/BaseItemRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/BaseItemRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/BaseItemRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/BaseItemVersionModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/BaseItemVersionModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/BaseItemVersionModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/BaseItemVersionModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/BinaryManagementConditionExpressionModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/BinaryManagementConditionExpressionModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/BinaryManagementConditionExpressionModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/BinaryManagementConditionExpressionModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/BinaryManagementConditionExpressionOperatorTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/BinaryManagementConditionExpressionOperatorTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/BinaryManagementConditionExpressionOperatorTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/BinaryManagementConditionExpressionOperatorTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/BitLockerEncryptionMethodEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/BitLockerEncryptionMethodEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/BitLockerEncryptionMethodEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/BitLockerEncryptionMethodEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/BitLockerFixedDrivePolicyModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/BitLockerFixedDrivePolicyModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/BitLockerFixedDrivePolicyModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/BitLockerFixedDrivePolicyModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/BitLockerRecoveryInformationTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/BitLockerRecoveryInformationTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/BitLockerRecoveryInformationTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/BitLockerRecoveryInformationTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/BitLockerRecoveryOptionsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/BitLockerRecoveryOptionsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/BitLockerRecoveryOptionsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/BitLockerRecoveryOptionsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/BitLockerRecoveryPasswordRotationTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/BitLockerRecoveryPasswordRotationTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/BitLockerRecoveryPasswordRotationTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/BitLockerRecoveryPasswordRotationTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/BitLockerRemovableDrivePolicyModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/BitLockerRemovableDrivePolicyModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/BitLockerRemovableDrivePolicyModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/BitLockerRemovableDrivePolicyModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/BitLockerSystemDrivePolicyModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/BitLockerSystemDrivePolicyModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/BitLockerSystemDrivePolicyModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/BitLockerSystemDrivePolicyModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/BlockAccessActionModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/BlockAccessActionModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/BlockAccessActionModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/BlockAccessActionModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/BodyTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/BodyTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/BodyTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/BodyTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/BookingAppointmentAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/BookingAppointmentAction.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/BookingAppointmentAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/BookingAppointmentAction.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/BookingAppointmentModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/BookingAppointmentModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/BookingAppointmentModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/BookingAppointmentModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/BookingAppointmentRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/BookingAppointmentRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/BookingAppointmentRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/BookingAppointmentRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/BookingBusinessAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/BookingBusinessAction.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/BookingBusinessAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/BookingBusinessAction.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/BookingBusinessModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/BookingBusinessModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/BookingBusinessModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/BookingBusinessModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/BookingBusinessRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/BookingBusinessRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/BookingBusinessRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/BookingBusinessRequest.go index 398fa7693e..b5e8667917 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/BookingBusinessRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/BookingBusinessRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // BookingBusinessRequestBuilder is request builder for BookingBusiness diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/BookingCurrencyModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/BookingCurrencyModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/BookingCurrencyModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/BookingCurrencyModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/BookingCurrencyRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/BookingCurrencyRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/BookingCurrencyRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/BookingCurrencyRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/BookingCustomerModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/BookingCustomerModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/BookingCustomerModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/BookingCustomerModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/BookingCustomerRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/BookingCustomerRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/BookingCustomerRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/BookingCustomerRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/BookingInvoiceStatusEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/BookingInvoiceStatusEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/BookingInvoiceStatusEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/BookingInvoiceStatusEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/BookingNamedEntityModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/BookingNamedEntityModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/BookingNamedEntityModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/BookingNamedEntityModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/BookingPersonModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/BookingPersonModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/BookingPersonModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/BookingPersonModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/BookingPriceTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/BookingPriceTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/BookingPriceTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/BookingPriceTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/BookingReminderModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/BookingReminderModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/BookingReminderModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/BookingReminderModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/BookingReminderRecipientsEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/BookingReminderRecipientsEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/BookingReminderRecipientsEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/BookingReminderRecipientsEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/BookingSchedulingPolicyModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/BookingSchedulingPolicyModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/BookingSchedulingPolicyModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/BookingSchedulingPolicyModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/BookingServiceModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/BookingServiceModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/BookingServiceModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/BookingServiceModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/BookingServiceRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/BookingServiceRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/BookingServiceRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/BookingServiceRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/BookingStaffMemberModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/BookingStaffMemberModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/BookingStaffMemberModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/BookingStaffMemberModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/BookingStaffMemberRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/BookingStaffMemberRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/BookingStaffMemberRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/BookingStaffMemberRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/BookingStaffRoleEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/BookingStaffRoleEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/BookingStaffRoleEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/BookingStaffRoleEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/BookingTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/BookingTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/BookingTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/BookingTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/BookingWorkHoursModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/BookingWorkHoursModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/BookingWorkHoursModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/BookingWorkHoursModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/BookingWorkTimeSlotModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/BookingWorkTimeSlotModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/BookingWorkTimeSlotModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/BookingWorkTimeSlotModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/BooleanColumnModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/BooleanColumnModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/BooleanColumnModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/BooleanColumnModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/BrowserSyncSettingEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/BrowserSyncSettingEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/BrowserSyncSettingEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/BrowserSyncSettingEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/BulkManagedDeviceActionResultModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/BulkManagedDeviceActionResultModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/BulkManagedDeviceActionResultModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/BulkManagedDeviceActionResultModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/BundleModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/BundleModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/BundleModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/BundleModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/BusinessFlowAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/BusinessFlowAction.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/BusinessFlowAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/BusinessFlowAction.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/BusinessFlowModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/BusinessFlowModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/BusinessFlowModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/BusinessFlowModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/BusinessFlowRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/BusinessFlowRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/BusinessFlowRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/BusinessFlowRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/BusinessFlowSettingsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/BusinessFlowSettingsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/BusinessFlowSettingsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/BusinessFlowSettingsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/BusinessFlowTemplateModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/BusinessFlowTemplateModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/BusinessFlowTemplateModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/BusinessFlowTemplateModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/BusinessFlowTemplateRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/BusinessFlowTemplateRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/BusinessFlowTemplateRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/BusinessFlowTemplateRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/CalculatedColumnModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/CalculatedColumnModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/CalculatedColumnModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/CalculatedColumnModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/CalendarAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/CalendarAction.go similarity index 98% rename from vendor/github.com/yaegashi/msgraph.go/beta/CalendarAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/CalendarAction.go index a2cdbbba04..a86f3e4ee1 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/CalendarAction.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/CalendarAction.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // CalendarGetScheduleRequestParameter undocumented diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/CalendarColorEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/CalendarColorEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/CalendarColorEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/CalendarColorEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/CalendarGroupModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/CalendarGroupModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/CalendarGroupModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/CalendarGroupModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/CalendarGroupRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/CalendarGroupRequest.go similarity index 98% rename from vendor/github.com/yaegashi/msgraph.go/beta/CalendarGroupRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/CalendarGroupRequest.go index 677c6859cb..c29593cf8b 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/CalendarGroupRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/CalendarGroupRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // CalendarGroupRequestBuilder is request builder for CalendarGroup diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/CalendarModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/CalendarModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/CalendarModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/CalendarModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/CalendarPermissionModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/CalendarPermissionModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/CalendarPermissionModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/CalendarPermissionModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/CalendarPermissionRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/CalendarPermissionRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/CalendarPermissionRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/CalendarPermissionRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/CalendarRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/CalendarRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/CalendarRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/CalendarRequest.go index 15f4d975ac..d3d92121c4 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/CalendarRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/CalendarRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // CalendarRequestBuilder is request builder for Calendar diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/CalendarRoleTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/CalendarRoleTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/CalendarRoleTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/CalendarRoleTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/CalendarSharingActionEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/CalendarSharingActionEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/CalendarSharingActionEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/CalendarSharingActionEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/CalendarSharingActionImportanceEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/CalendarSharingActionImportanceEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/CalendarSharingActionImportanceEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/CalendarSharingActionImportanceEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/CalendarSharingActionTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/CalendarSharingActionTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/CalendarSharingActionTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/CalendarSharingActionTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/CalendarSharingMessageAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/CalendarSharingMessageAction.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/CalendarSharingMessageAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/CalendarSharingMessageAction.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/CalendarSharingMessageActionModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/CalendarSharingMessageActionModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/CalendarSharingMessageActionModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/CalendarSharingMessageActionModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/CalendarSharingMessageModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/CalendarSharingMessageModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/CalendarSharingMessageModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/CalendarSharingMessageModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/CalendarSharingMessageRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/CalendarSharingMessageRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/CalendarSharingMessageRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/CalendarSharingMessageRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/CallAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/CallAction.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/CallAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/CallAction.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/CallActivityStatisticsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/CallActivityStatisticsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/CallActivityStatisticsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/CallActivityStatisticsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/CallDirectionEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/CallDirectionEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/CallDirectionEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/CallDirectionEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/CallDispositionEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/CallDispositionEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/CallDispositionEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/CallDispositionEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/CallMediaStateModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/CallMediaStateModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/CallMediaStateModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/CallMediaStateModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/CallModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/CallModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/CallModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/CallModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/CallOptionsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/CallOptionsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/CallOptionsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/CallOptionsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/CallRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/CallRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/CallRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/CallRequest.go index e05d31b9ac..2296360681 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/CallRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/CallRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // CallRequestBuilder is request builder for Call diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/CallRouteModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/CallRouteModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/CallRouteModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/CallRouteModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/CallStateEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/CallStateEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/CallStateEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/CallStateEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/CancelMediaProcessingOperationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/CancelMediaProcessingOperationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/CancelMediaProcessingOperationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/CancelMediaProcessingOperationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/CartToClassAssociationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/CartToClassAssociationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/CartToClassAssociationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/CartToClassAssociationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/CartToClassAssociationRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/CartToClassAssociationRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/CartToClassAssociationRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/CartToClassAssociationRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/CategoryColorEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/CategoryColorEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/CategoryColorEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/CategoryColorEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/CertificateAuthorityModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/CertificateAuthorityModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/CertificateAuthorityModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/CertificateAuthorityModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/CertificateBasedAuthConfigurationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/CertificateBasedAuthConfigurationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/CertificateBasedAuthConfigurationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/CertificateBasedAuthConfigurationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/CertificateBasedAuthConfigurationRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/CertificateBasedAuthConfigurationRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/CertificateBasedAuthConfigurationRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/CertificateBasedAuthConfigurationRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/CertificateConnectorSettingModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/CertificateConnectorSettingModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/CertificateConnectorSettingModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/CertificateConnectorSettingModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/CertificateDestinationStoreEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/CertificateDestinationStoreEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/CertificateDestinationStoreEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/CertificateDestinationStoreEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/CertificateIssuanceStatesEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/CertificateIssuanceStatesEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/CertificateIssuanceStatesEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/CertificateIssuanceStatesEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/CertificateRevocationStatusEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/CertificateRevocationStatusEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/CertificateRevocationStatusEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/CertificateRevocationStatusEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/CertificateStatusEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/CertificateStatusEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/CertificateStatusEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/CertificateStatusEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/CertificateStoreEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/CertificateStoreEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/CertificateStoreEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/CertificateStoreEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/CertificateValidityPeriodScaleEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/CertificateValidityPeriodScaleEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/CertificateValidityPeriodScaleEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/CertificateValidityPeriodScaleEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/CertificationControlModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/CertificationControlModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/CertificationControlModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/CertificationControlModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ChangeTrackedEntityModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ChangeTrackedEntityModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ChangeTrackedEntityModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ChangeTrackedEntityModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ChangeTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/ChangeTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ChangeTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ChangeTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ChangeUefiSettingsPermissionEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/ChangeUefiSettingsPermissionEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ChangeUefiSettingsPermissionEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ChangeUefiSettingsPermissionEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ChannelMembershipTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/ChannelMembershipTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ChannelMembershipTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ChannelMembershipTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ChannelModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ChannelModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ChannelModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ChannelModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ChannelRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/ChannelRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/ChannelRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ChannelRequest.go index a8b6b5c11c..35ac0ba0cd 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ChannelRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/ChannelRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // ChannelRequestBuilder is request builder for Channel diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ChassisTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/ChassisTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ChassisTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ChassisTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ChatActivityStatisticsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ChatActivityStatisticsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ChatActivityStatisticsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ChatActivityStatisticsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ChatInfoModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ChatInfoModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ChatInfoModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ChatInfoModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ChatMembersNotificationAudienceModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ChatMembersNotificationAudienceModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ChatMembersNotificationAudienceModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ChatMembersNotificationAudienceModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ChatMessageAttachmentModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ChatMessageAttachmentModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ChatMessageAttachmentModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ChatMessageAttachmentModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ChatMessageHostedContentModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ChatMessageHostedContentModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ChatMessageHostedContentModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ChatMessageHostedContentModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ChatMessageHostedContentRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/ChatMessageHostedContentRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ChatMessageHostedContentRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ChatMessageHostedContentRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ChatMessageImportanceEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/ChatMessageImportanceEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ChatMessageImportanceEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ChatMessageImportanceEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ChatMessageMentionModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ChatMessageMentionModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ChatMessageMentionModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ChatMessageMentionModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ChatMessageModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ChatMessageModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ChatMessageModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ChatMessageModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ChatMessagePolicyViolationDlpActionTypesEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/ChatMessagePolicyViolationDlpActionTypesEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ChatMessagePolicyViolationDlpActionTypesEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ChatMessagePolicyViolationDlpActionTypesEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ChatMessagePolicyViolationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ChatMessagePolicyViolationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ChatMessagePolicyViolationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ChatMessagePolicyViolationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ChatMessagePolicyViolationPolicyTipModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ChatMessagePolicyViolationPolicyTipModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ChatMessagePolicyViolationPolicyTipModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ChatMessagePolicyViolationPolicyTipModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ChatMessagePolicyViolationUserActionTypesEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/ChatMessagePolicyViolationUserActionTypesEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ChatMessagePolicyViolationUserActionTypesEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ChatMessagePolicyViolationUserActionTypesEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ChatMessagePolicyViolationVerdictDetailsTypesEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/ChatMessagePolicyViolationVerdictDetailsTypesEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ChatMessagePolicyViolationVerdictDetailsTypesEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ChatMessagePolicyViolationVerdictDetailsTypesEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ChatMessageReactionModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ChatMessageReactionModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ChatMessageReactionModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ChatMessageReactionModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ChatMessageRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/ChatMessageRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/ChatMessageRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ChatMessageRequest.go index 8e22ab5b11..6fbb30d266 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ChatMessageRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/ChatMessageRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // ChatMessageRequestBuilder is request builder for ChatMessage diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ChatMessageTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/ChatMessageTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ChatMessageTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ChatMessageTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ChatModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ChatModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ChatModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ChatModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ChatRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/ChatRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/ChatRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ChatRequest.go index 1e45c6806c..27ea08a141 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ChatRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/ChatRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // ChatRequestBuilder is request builder for Chat diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ChoiceColumnModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ChoiceColumnModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ChoiceColumnModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ChoiceColumnModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/CircularGeofenceManagementConditionModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/CircularGeofenceManagementConditionModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/CircularGeofenceManagementConditionModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/CircularGeofenceManagementConditionModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ClassifcationErrorBaseModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ClassifcationErrorBaseModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ClassifcationErrorBaseModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ClassifcationErrorBaseModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ClassificationErrorModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ClassificationErrorModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ClassificationErrorModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ClassificationErrorModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ClassificationInnerErrorModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ClassificationInnerErrorModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ClassificationInnerErrorModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ClassificationInnerErrorModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ClassificationJobResponseModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ClassificationJobResponseModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ClassificationJobResponseModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ClassificationJobResponseModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ClassificationResultModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ClassificationResultModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ClassificationResultModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ClassificationResultModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ClonableTeamPartsEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/ClonableTeamPartsEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ClonableTeamPartsEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ClonableTeamPartsEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/CloudAppSecurityProfileModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/CloudAppSecurityProfileModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/CloudAppSecurityProfileModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/CloudAppSecurityProfileModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/CloudAppSecurityProfileRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/CloudAppSecurityProfileRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/CloudAppSecurityProfileRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/CloudAppSecurityProfileRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/CloudAppSecuritySessionControlModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/CloudAppSecuritySessionControlModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/CloudAppSecuritySessionControlModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/CloudAppSecuritySessionControlModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/CloudAppSecuritySessionControlTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/CloudAppSecuritySessionControlTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/CloudAppSecuritySessionControlTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/CloudAppSecuritySessionControlTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/CloudAppSecurityStateModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/CloudAppSecurityStateModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/CloudAppSecurityStateModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/CloudAppSecurityStateModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/CloudCommunicationsAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/CloudCommunicationsAction.go similarity index 98% rename from vendor/github.com/yaegashi/msgraph.go/beta/CloudCommunicationsAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/CloudCommunicationsAction.go index c1e8790c24..f70f83c8df 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/CloudCommunicationsAction.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/CloudCommunicationsAction.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // CloudCommunicationsGetPresencesByUserIDRequestParameter undocumented diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/CloudCommunicationsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/CloudCommunicationsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/CloudCommunicationsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/CloudCommunicationsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/CloudCommunicationsRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/CloudCommunicationsRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/CloudCommunicationsRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/CloudCommunicationsRequest.go index e67d412ed1..00299dc98d 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/CloudCommunicationsRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/CloudCommunicationsRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // CloudCommunicationsRequestBuilder is request builder for CloudCommunications diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ColumnDefinitionModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ColumnDefinitionModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ColumnDefinitionModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ColumnDefinitionModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ColumnDefinitionRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/ColumnDefinitionRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ColumnDefinitionRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ColumnDefinitionRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ColumnLinkModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ColumnLinkModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ColumnLinkModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ColumnLinkModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ColumnLinkRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/ColumnLinkRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ColumnLinkRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ColumnLinkRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/CommandModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/CommandModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/CommandModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/CommandModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/CommandRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/CommandRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/CommandRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/CommandRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/CommentActionModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/CommentActionModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/CommentActionModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/CommentActionModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/CommsApplicationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/CommsApplicationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/CommsApplicationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/CommsApplicationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/CommsApplicationRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/CommsApplicationRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/CommsApplicationRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/CommsApplicationRequest.go index a1dbeca7c5..87cea9bd79 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/CommsApplicationRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/CommsApplicationRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // CommsApplicationRequestBuilder is request builder for CommsApplication diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/CommsNotificationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/CommsNotificationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/CommsNotificationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/CommsNotificationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/CommsNotificationsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/CommsNotificationsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/CommsNotificationsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/CommsNotificationsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/CommsOperationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/CommsOperationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/CommsOperationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/CommsOperationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/CommsOperationRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/CommsOperationRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/CommsOperationRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/CommsOperationRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/CompanyDetailModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/CompanyDetailModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/CompanyDetailModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/CompanyDetailModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/CompanyInformationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/CompanyInformationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/CompanyInformationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/CompanyInformationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/CompanyInformationRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/CompanyInformationRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/CompanyInformationRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/CompanyInformationRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/CompanyModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/CompanyModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/CompanyModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/CompanyModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/CompanyPortalActionEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/CompanyPortalActionEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/CompanyPortalActionEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/CompanyPortalActionEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/CompanyPortalBlockedActionModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/CompanyPortalBlockedActionModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/CompanyPortalBlockedActionModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/CompanyPortalBlockedActionModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/CompanyRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/CompanyRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/CompanyRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/CompanyRequest.go index 5c1e0abe39..e09e55db13 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/CompanyRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/CompanyRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // CompanyRequestBuilder is request builder for Company diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ComplexExtensionValueModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ComplexExtensionValueModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ComplexExtensionValueModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ComplexExtensionValueModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ComplianceInformationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ComplianceInformationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ComplianceInformationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ComplianceInformationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ComplianceManagementPartnerAssignmentModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ComplianceManagementPartnerAssignmentModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ComplianceManagementPartnerAssignmentModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ComplianceManagementPartnerAssignmentModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ComplianceManagementPartnerModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ComplianceManagementPartnerModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ComplianceManagementPartnerModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ComplianceManagementPartnerModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ComplianceManagementPartnerRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/ComplianceManagementPartnerRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ComplianceManagementPartnerRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ComplianceManagementPartnerRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ComplianceStateEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/ComplianceStateEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ComplianceStateEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ComplianceStateEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ComplianceStatusEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/ComplianceStatusEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ComplianceStatusEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ComplianceStatusEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ComponentEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/ComponentEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ComponentEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ComponentEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ConditionalAccessApplicationsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ConditionalAccessApplicationsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ConditionalAccessApplicationsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ConditionalAccessApplicationsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ConditionalAccessClientAppEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/ConditionalAccessClientAppEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ConditionalAccessClientAppEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ConditionalAccessClientAppEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ConditionalAccessConditionSetModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ConditionalAccessConditionSetModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ConditionalAccessConditionSetModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ConditionalAccessConditionSetModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ConditionalAccessConditionsEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/ConditionalAccessConditionsEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ConditionalAccessConditionsEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ConditionalAccessConditionsEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ConditionalAccessDevicePlatformEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/ConditionalAccessDevicePlatformEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ConditionalAccessDevicePlatformEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ConditionalAccessDevicePlatformEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ConditionalAccessDeviceStatesModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ConditionalAccessDeviceStatesModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ConditionalAccessDeviceStatesModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ConditionalAccessDeviceStatesModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ConditionalAccessGrantControlEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/ConditionalAccessGrantControlEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ConditionalAccessGrantControlEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ConditionalAccessGrantControlEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ConditionalAccessGrantControlsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ConditionalAccessGrantControlsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ConditionalAccessGrantControlsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ConditionalAccessGrantControlsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ConditionalAccessLocationsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ConditionalAccessLocationsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ConditionalAccessLocationsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ConditionalAccessLocationsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ConditionalAccessPlatformsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ConditionalAccessPlatformsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ConditionalAccessPlatformsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ConditionalAccessPlatformsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ConditionalAccessPolicyModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ConditionalAccessPolicyModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ConditionalAccessPolicyModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ConditionalAccessPolicyModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ConditionalAccessPolicyRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/ConditionalAccessPolicyRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ConditionalAccessPolicyRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ConditionalAccessPolicyRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ConditionalAccessPolicyStateEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/ConditionalAccessPolicyStateEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ConditionalAccessPolicyStateEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ConditionalAccessPolicyStateEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ConditionalAccessRootModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ConditionalAccessRootModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ConditionalAccessRootModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ConditionalAccessRootModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ConditionalAccessRootRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/ConditionalAccessRootRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/ConditionalAccessRootRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ConditionalAccessRootRequest.go index 94d054aaee..3bda23a471 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ConditionalAccessRootRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/ConditionalAccessRootRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // ConditionalAccessRootRequestBuilder is request builder for ConditionalAccessRoot diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ConditionalAccessSessionControlModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ConditionalAccessSessionControlModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ConditionalAccessSessionControlModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ConditionalAccessSessionControlModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ConditionalAccessSessionControlsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ConditionalAccessSessionControlsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ConditionalAccessSessionControlsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ConditionalAccessSessionControlsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ConditionalAccessStatusEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/ConditionalAccessStatusEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ConditionalAccessStatusEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ConditionalAccessStatusEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ConditionalAccessUsersModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ConditionalAccessUsersModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ConditionalAccessUsersModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ConditionalAccessUsersModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ConfigurationManagerActionModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ConfigurationManagerActionModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ConfigurationManagerActionModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ConfigurationManagerActionModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ConfigurationManagerActionTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/ConfigurationManagerActionTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ConfigurationManagerActionTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ConfigurationManagerActionTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ConfigurationManagerClientEnabledFeaturesModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ConfigurationManagerClientEnabledFeaturesModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ConfigurationManagerClientEnabledFeaturesModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ConfigurationManagerClientEnabledFeaturesModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ConfigurationManagerClientHealthStateModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ConfigurationManagerClientHealthStateModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ConfigurationManagerClientHealthStateModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ConfigurationManagerClientHealthStateModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ConfigurationManagerClientInformationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ConfigurationManagerClientInformationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ConfigurationManagerClientInformationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ConfigurationManagerClientInformationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ConfigurationManagerClientStateEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/ConfigurationManagerClientStateEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ConfigurationManagerClientStateEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ConfigurationManagerClientStateEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ConfigurationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ConfigurationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ConfigurationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ConfigurationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ConfigurationUsageEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/ConfigurationUsageEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ConfigurationUsageEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ConfigurationUsageEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ConnectionDirectionEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/ConnectionDirectionEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ConnectionDirectionEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ConnectionDirectionEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ConnectionOperationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ConnectionOperationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ConnectionOperationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ConnectionOperationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ConnectionOperationRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/ConnectionOperationRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ConnectionOperationRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ConnectionOperationRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ConnectionOperationStatusEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/ConnectionOperationStatusEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ConnectionOperationStatusEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ConnectionOperationStatusEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ConnectionStatusEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/ConnectionStatusEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ConnectionStatusEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ConnectionStatusEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ContactFolderModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ContactFolderModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ContactFolderModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ContactFolderModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ContactFolderRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/ContactFolderRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/ContactFolderRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ContactFolderRequest.go index 50ff212e69..e7453529a0 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ContactFolderRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/ContactFolderRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // ContactFolderRequestBuilder is request builder for ContactFolder diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ContactModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ContactModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ContactModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ContactModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ContactRelationshipEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/ContactRelationshipEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ContactRelationshipEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ContactRelationshipEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ContactRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/ContactRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/ContactRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ContactRequest.go index cb96314911..8ffb7dc2cd 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ContactRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/ContactRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // ContactRequestBuilder is request builder for Contact diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ContentAlignmentEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/ContentAlignmentEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ContentAlignmentEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ContentAlignmentEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ContentClassificationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ContentClassificationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ContentClassificationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ContentClassificationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ContentFormatEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/ContentFormatEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ContentFormatEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ContentFormatEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ContentInfoModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ContentInfoModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ContentInfoModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ContentInfoModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ContentMetadataModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ContentMetadataModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ContentMetadataModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ContentMetadataModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ContentPropertiesModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ContentPropertiesModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ContentPropertiesModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ContentPropertiesModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ContentStateEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/ContentStateEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ContentStateEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ContentStateEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ContentTypeInfoModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ContentTypeInfoModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ContentTypeInfoModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ContentTypeInfoModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ContentTypeModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ContentTypeModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ContentTypeModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ContentTypeModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ContentTypeOrderModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ContentTypeOrderModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ContentTypeOrderModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ContentTypeOrderModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ContentTypeRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/ContentTypeRequest.go similarity index 98% rename from vendor/github.com/yaegashi/msgraph.go/beta/ContentTypeRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ContentTypeRequest.go index 739c6b6da8..2380040a49 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ContentTypeRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/ContentTypeRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // ContentTypeRequestBuilder is request builder for ContentType diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ContractModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ContractModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ContractModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ContractModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ContractRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/ContractRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ContractRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ContractRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ControlScoreModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ControlScoreModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ControlScoreModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ControlScoreModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ConversationIdentityTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/ConversationIdentityTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ConversationIdentityTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ConversationIdentityTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ConversationMemberModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ConversationMemberModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ConversationMemberModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ConversationMemberModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ConversationMemberRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/ConversationMemberRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ConversationMemberRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ConversationMemberRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ConversationMemberRolesModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ConversationMemberRolesModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ConversationMemberRolesModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ConversationMemberRolesModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ConversationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ConversationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ConversationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ConversationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ConversationRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/ConversationRequest.go similarity index 98% rename from vendor/github.com/yaegashi/msgraph.go/beta/ConversationRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ConversationRequest.go index d215b48979..6255c04c83 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ConversationRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/ConversationRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // ConversationRequestBuilder is request builder for Conversation diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ConversationThreadAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/ConversationThreadAction.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ConversationThreadAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ConversationThreadAction.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ConversationThreadModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ConversationThreadModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ConversationThreadModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ConversationThreadModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ConversationThreadRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/ConversationThreadRequest.go similarity index 98% rename from vendor/github.com/yaegashi/msgraph.go/beta/ConversationThreadRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ConversationThreadRequest.go index 991329e940..cd1ebdeb8f 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ConversationThreadRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/ConversationThreadRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // ConversationThreadRequestBuilder is request builder for ConversationThread diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ConvertIDResultModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ConvertIDResultModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ConvertIDResultModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ConvertIDResultModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/CopyNotebookModelModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/CopyNotebookModelModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/CopyNotebookModelModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/CopyNotebookModelModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/CountryNamedLocationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/CountryNamedLocationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/CountryNamedLocationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/CountryNamedLocationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/CountryRegionModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/CountryRegionModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/CountryRegionModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/CountryRegionModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/CountryRegionRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/CountryRegionRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/CountryRegionRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/CountryRegionRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/CreateActionModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/CreateActionModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/CreateActionModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/CreateActionModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/CredentialModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/CredentialModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/CredentialModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/CredentialModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/CredentialSingleSignOnExtensionModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/CredentialSingleSignOnExtensionModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/CredentialSingleSignOnExtensionModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/CredentialSingleSignOnExtensionModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/CredentialUsageSummaryModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/CredentialUsageSummaryModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/CredentialUsageSummaryModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/CredentialUsageSummaryModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/CredentialUserRegistrationCountModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/CredentialUserRegistrationCountModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/CredentialUserRegistrationCountModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/CredentialUserRegistrationCountModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/CredentialUserRegistrationDetailsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/CredentialUserRegistrationDetailsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/CredentialUserRegistrationDetailsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/CredentialUserRegistrationDetailsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/CredentialUserRegistrationDetailsRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/CredentialUserRegistrationDetailsRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/CredentialUserRegistrationDetailsRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/CredentialUserRegistrationDetailsRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/CurrencyColumnModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/CurrencyColumnModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/CurrencyColumnModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/CurrencyColumnModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/CurrencyModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/CurrencyModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/CurrencyModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/CurrencyModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/CurrencyRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/CurrencyRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/CurrencyRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/CurrencyRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/CurrentLabelModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/CurrentLabelModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/CurrentLabelModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/CurrentLabelModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/CustomActionModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/CustomActionModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/CustomActionModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/CustomActionModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/CustomSubjectAlternativeNameModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/CustomSubjectAlternativeNameModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/CustomSubjectAlternativeNameModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/CustomSubjectAlternativeNameModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/CustomTimeZoneModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/CustomTimeZoneModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/CustomTimeZoneModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/CustomTimeZoneModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/CustomerModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/CustomerModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/CustomerModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/CustomerModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/CustomerPaymentJournalModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/CustomerPaymentJournalModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/CustomerPaymentJournalModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/CustomerPaymentJournalModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/CustomerPaymentJournalRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/CustomerPaymentJournalRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/CustomerPaymentJournalRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/CustomerPaymentJournalRequest.go index 294d4ccaae..d3c606f0c8 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/CustomerPaymentJournalRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/CustomerPaymentJournalRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // CustomerPaymentJournalRequestBuilder is request builder for CustomerPaymentJournal diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/CustomerPaymentModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/CustomerPaymentModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/CustomerPaymentModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/CustomerPaymentModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/CustomerPaymentRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/CustomerPaymentRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/CustomerPaymentRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/CustomerPaymentRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/CustomerRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/CustomerRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/CustomerRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/CustomerRequest.go index 8f24b146c3..61bc3629cc 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/CustomerRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/CustomerRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // CustomerRequestBuilder is request builder for Customer diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DailyScheduleModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DailyScheduleModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DailyScheduleModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DailyScheduleModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DataClassificationServiceModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DataClassificationServiceModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DataClassificationServiceModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DataClassificationServiceModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DataClassificationServiceRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/DataClassificationServiceRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/DataClassificationServiceRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DataClassificationServiceRequest.go index 5dd5c90ed9..0ff75578e3 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/DataClassificationServiceRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/DataClassificationServiceRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // DataClassificationServiceRequestBuilder is request builder for DataClassificationService diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DataLossPreventionPolicyAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/DataLossPreventionPolicyAction.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DataLossPreventionPolicyAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DataLossPreventionPolicyAction.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DataLossPreventionPolicyModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DataLossPreventionPolicyModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DataLossPreventionPolicyModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DataLossPreventionPolicyModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DataLossPreventionPolicyRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/DataLossPreventionPolicyRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DataLossPreventionPolicyRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DataLossPreventionPolicyRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DataPolicyOperationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DataPolicyOperationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DataPolicyOperationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DataPolicyOperationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DataPolicyOperationRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/DataPolicyOperationRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DataPolicyOperationRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DataPolicyOperationRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DataPolicyOperationStatusEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/DataPolicyOperationStatusEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DataPolicyOperationStatusEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DataPolicyOperationStatusEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DataSharingConsentAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/DataSharingConsentAction.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DataSharingConsentAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DataSharingConsentAction.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DataSharingConsentModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DataSharingConsentModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DataSharingConsentModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DataSharingConsentModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DataSharingConsentRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/DataSharingConsentRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DataSharingConsentRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DataSharingConsentRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DataStoreFieldModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DataStoreFieldModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DataStoreFieldModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DataStoreFieldModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DateTimeColumnModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DateTimeColumnModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DateTimeColumnModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DateTimeColumnModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DateTimeTimeZoneModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DateTimeTimeZoneModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DateTimeTimeZoneModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DateTimeTimeZoneModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DateTimeTimeZoneTypeModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DateTimeTimeZoneTypeModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DateTimeTimeZoneTypeModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DateTimeTimeZoneTypeModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DayOfWeekEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/DayOfWeekEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DayOfWeekEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DayOfWeekEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DaylightTimeZoneOffsetModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DaylightTimeZoneOffsetModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DaylightTimeZoneOffsetModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DaylightTimeZoneOffsetModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DefaultColumnValueModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DefaultColumnValueModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DefaultColumnValueModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DefaultColumnValueModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DefaultDeviceCompliancePolicyModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DefaultDeviceCompliancePolicyModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DefaultDeviceCompliancePolicyModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DefaultDeviceCompliancePolicyModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DefaultManagedAppProtectionModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DefaultManagedAppProtectionModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DefaultManagedAppProtectionModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DefaultManagedAppProtectionModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DefaultManagedAppProtectionRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/DefaultManagedAppProtectionRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/DefaultManagedAppProtectionRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DefaultManagedAppProtectionRequest.go index 850b6fbe3b..103d432093 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/DefaultManagedAppProtectionRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/DefaultManagedAppProtectionRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // DefaultManagedAppProtectionRequestBuilder is request builder for DefaultManagedAppProtection diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DefenderAttackSurfaceTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/DefenderAttackSurfaceTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DefenderAttackSurfaceTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DefenderAttackSurfaceTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DefenderCloudBlockLevelTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/DefenderCloudBlockLevelTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DefenderCloudBlockLevelTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DefenderCloudBlockLevelTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DefenderDetectedMalwareActionsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DefenderDetectedMalwareActionsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DefenderDetectedMalwareActionsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DefenderDetectedMalwareActionsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DefenderMonitorFileActivityEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/DefenderMonitorFileActivityEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DefenderMonitorFileActivityEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DefenderMonitorFileActivityEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DefenderPotentiallyUnwantedAppActionEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/DefenderPotentiallyUnwantedAppActionEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DefenderPotentiallyUnwantedAppActionEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DefenderPotentiallyUnwantedAppActionEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DefenderPromptForSampleSubmissionEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/DefenderPromptForSampleSubmissionEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DefenderPromptForSampleSubmissionEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DefenderPromptForSampleSubmissionEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DefenderProtectionTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/DefenderProtectionTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DefenderProtectionTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DefenderProtectionTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DefenderScanTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/DefenderScanTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DefenderScanTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DefenderScanTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DefenderSecurityCenterITContactDisplayTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/DefenderSecurityCenterITContactDisplayTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DefenderSecurityCenterITContactDisplayTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DefenderSecurityCenterITContactDisplayTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DefenderSecurityCenterNotificationsFromAppTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/DefenderSecurityCenterNotificationsFromAppTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DefenderSecurityCenterNotificationsFromAppTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DefenderSecurityCenterNotificationsFromAppTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DefenderSubmitSamplesConsentTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/DefenderSubmitSamplesConsentTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DefenderSubmitSamplesConsentTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DefenderSubmitSamplesConsentTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DefenderThreatActionEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/DefenderThreatActionEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DefenderThreatActionEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DefenderThreatActionEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DelegateMeetingMessageDeliveryOptionsEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/DelegateMeetingMessageDeliveryOptionsEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DelegateMeetingMessageDeliveryOptionsEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DelegateMeetingMessageDeliveryOptionsEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DelegatedPermissionClassificationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DelegatedPermissionClassificationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DelegatedPermissionClassificationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DelegatedPermissionClassificationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeleteActionModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeleteActionModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeleteActionModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeleteActionModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeleteUserFromSharedAppleDeviceActionResultModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeleteUserFromSharedAppleDeviceActionResultModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeleteUserFromSharedAppleDeviceActionResultModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeleteUserFromSharedAppleDeviceActionResultModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeletedModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeletedModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeletedModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeletedModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeliveryOptimizationBandwidthAbsoluteModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeliveryOptimizationBandwidthAbsoluteModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeliveryOptimizationBandwidthAbsoluteModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeliveryOptimizationBandwidthAbsoluteModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeliveryOptimizationBandwidthBusinessHoursLimitModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeliveryOptimizationBandwidthBusinessHoursLimitModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeliveryOptimizationBandwidthBusinessHoursLimitModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeliveryOptimizationBandwidthBusinessHoursLimitModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeliveryOptimizationBandwidthHoursWithPercentageModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeliveryOptimizationBandwidthHoursWithPercentageModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeliveryOptimizationBandwidthHoursWithPercentageModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeliveryOptimizationBandwidthHoursWithPercentageModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeliveryOptimizationBandwidthModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeliveryOptimizationBandwidthModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeliveryOptimizationBandwidthModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeliveryOptimizationBandwidthModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeliveryOptimizationBandwidthPercentageModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeliveryOptimizationBandwidthPercentageModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeliveryOptimizationBandwidthPercentageModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeliveryOptimizationBandwidthPercentageModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeliveryOptimizationGroupIDCustomModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeliveryOptimizationGroupIDCustomModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeliveryOptimizationGroupIDCustomModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeliveryOptimizationGroupIDCustomModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeliveryOptimizationGroupIDOptionsTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeliveryOptimizationGroupIDOptionsTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeliveryOptimizationGroupIDOptionsTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeliveryOptimizationGroupIDOptionsTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeliveryOptimizationGroupIDSourceModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeliveryOptimizationGroupIDSourceModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeliveryOptimizationGroupIDSourceModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeliveryOptimizationGroupIDSourceModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeliveryOptimizationGroupIDSourceOptionsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeliveryOptimizationGroupIDSourceOptionsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeliveryOptimizationGroupIDSourceOptionsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeliveryOptimizationGroupIDSourceOptionsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeliveryOptimizationMaxCacheSizeAbsoluteModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeliveryOptimizationMaxCacheSizeAbsoluteModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeliveryOptimizationMaxCacheSizeAbsoluteModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeliveryOptimizationMaxCacheSizeAbsoluteModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeliveryOptimizationMaxCacheSizeModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeliveryOptimizationMaxCacheSizeModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeliveryOptimizationMaxCacheSizeModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeliveryOptimizationMaxCacheSizeModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeliveryOptimizationMaxCacheSizePercentageModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeliveryOptimizationMaxCacheSizePercentageModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeliveryOptimizationMaxCacheSizePercentageModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeliveryOptimizationMaxCacheSizePercentageModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeliveryOptimizationRestrictPeerSelectionByOptionsEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeliveryOptimizationRestrictPeerSelectionByOptionsEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeliveryOptimizationRestrictPeerSelectionByOptionsEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeliveryOptimizationRestrictPeerSelectionByOptionsEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DepEnrollmentBaseProfileModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DepEnrollmentBaseProfileModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DepEnrollmentBaseProfileModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DepEnrollmentBaseProfileModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DepEnrollmentProfileModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DepEnrollmentProfileModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DepEnrollmentProfileModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DepEnrollmentProfileModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DepIOSEnrollmentProfileModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DepIOSEnrollmentProfileModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DepIOSEnrollmentProfileModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DepIOSEnrollmentProfileModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DepIOSEnrollmentProfileRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/DepIOSEnrollmentProfileRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DepIOSEnrollmentProfileRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DepIOSEnrollmentProfileRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DepMacOSEnrollmentProfileModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DepMacOSEnrollmentProfileModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DepMacOSEnrollmentProfileModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DepMacOSEnrollmentProfileModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DepMacOSEnrollmentProfileRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/DepMacOSEnrollmentProfileRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DepMacOSEnrollmentProfileRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DepMacOSEnrollmentProfileRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DepOnboardingSettingAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/DepOnboardingSettingAction.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DepOnboardingSettingAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DepOnboardingSettingAction.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DepOnboardingSettingModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DepOnboardingSettingModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DepOnboardingSettingModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DepOnboardingSettingModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DepOnboardingSettingRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/DepOnboardingSettingRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/DepOnboardingSettingRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DepOnboardingSettingRequest.go index f727346899..001a22d5f0 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/DepOnboardingSettingRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/DepOnboardingSettingRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // DepOnboardingSettingRequestBuilder is request builder for DepOnboardingSetting diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DepTokenTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/DepTokenTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DepTokenTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DepTokenTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DerivedCredentialProviderTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/DerivedCredentialProviderTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DerivedCredentialProviderTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DerivedCredentialProviderTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DetailsInfoModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DetailsInfoModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DetailsInfoModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DetailsInfoModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DetectedAppModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DetectedAppModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DetectedAppModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DetectedAppModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DetectedAppRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/DetectedAppRequest.go similarity index 98% rename from vendor/github.com/yaegashi/msgraph.go/beta/DetectedAppRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DetectedAppRequest.go index 28200cf096..60555fc7c8 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/DetectedAppRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/DetectedAppRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // DetectedAppRequestBuilder is request builder for DetectedApp diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DetectedSensitiveContentModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DetectedSensitiveContentModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DetectedSensitiveContentModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DetectedSensitiveContentModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DetectedSensitiveContentWrapperModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DetectedSensitiveContentWrapperModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DetectedSensitiveContentWrapperModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DetectedSensitiveContentWrapperModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceActionResultModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceActionResultModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceActionResultModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceActionResultModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceAndAppManagementAssignedRoleDetailsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceAndAppManagementAssignedRoleDetailsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceAndAppManagementAssignedRoleDetailsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceAndAppManagementAssignedRoleDetailsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceAndAppManagementAssignmentSourceEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceAndAppManagementAssignmentSourceEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceAndAppManagementAssignmentSourceEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceAndAppManagementAssignmentSourceEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceAndAppManagementAssignmentTargetModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceAndAppManagementAssignmentTargetModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceAndAppManagementAssignmentTargetModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceAndAppManagementAssignmentTargetModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceAndAppManagementDataModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceAndAppManagementDataModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceAndAppManagementDataModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceAndAppManagementDataModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceAndAppManagementRoleAssignmentModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceAndAppManagementRoleAssignmentModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceAndAppManagementRoleAssignmentModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceAndAppManagementRoleAssignmentModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceAndAppManagementRoleAssignmentRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceAndAppManagementRoleAssignmentRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceAndAppManagementRoleAssignmentRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceAndAppManagementRoleAssignmentRequest.go index a7c92f7a27..d1f8204133 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceAndAppManagementRoleAssignmentRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceAndAppManagementRoleAssignmentRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // DeviceAndAppManagementRoleAssignmentRequestBuilder is request builder for DeviceAndAppManagementRoleAssignment diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceAndAppManagementRoleDefinitionModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceAndAppManagementRoleDefinitionModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceAndAppManagementRoleDefinitionModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceAndAppManagementRoleDefinitionModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceAppManagementAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceAppManagementAction.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceAppManagementAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceAppManagementAction.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceAppManagementModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceAppManagementModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceAppManagementModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceAppManagementModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceAppManagementRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceAppManagementRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceAppManagementRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceAppManagementRequest.go index 38e6e63e54..24d497adb6 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceAppManagementRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceAppManagementRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // DeviceAppManagementRequestBuilder is request builder for DeviceAppManagement diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceAppManagementTaskAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceAppManagementTaskAction.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceAppManagementTaskAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceAppManagementTaskAction.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceAppManagementTaskCategoryEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceAppManagementTaskCategoryEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceAppManagementTaskCategoryEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceAppManagementTaskCategoryEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceAppManagementTaskModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceAppManagementTaskModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceAppManagementTaskModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceAppManagementTaskModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceAppManagementTaskPriorityEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceAppManagementTaskPriorityEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceAppManagementTaskPriorityEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceAppManagementTaskPriorityEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceAppManagementTaskRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceAppManagementTaskRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceAppManagementTaskRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceAppManagementTaskRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceAppManagementTaskStatusEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceAppManagementTaskStatusEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceAppManagementTaskStatusEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceAppManagementTaskStatusEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceCategoryModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceCategoryModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceCategoryModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceCategoryModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceCategoryRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceCategoryRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceCategoryRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceCategoryRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceComplianceActionItemModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceComplianceActionItemModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceComplianceActionItemModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceComplianceActionItemModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceComplianceActionItemRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceComplianceActionItemRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceComplianceActionItemRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceComplianceActionItemRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceComplianceActionTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceComplianceActionTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceComplianceActionTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceComplianceActionTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceComplianceDeviceOverviewModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceComplianceDeviceOverviewModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceComplianceDeviceOverviewModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceComplianceDeviceOverviewModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceComplianceDeviceOverviewRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceComplianceDeviceOverviewRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceComplianceDeviceOverviewRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceComplianceDeviceOverviewRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceComplianceDeviceStatusModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceComplianceDeviceStatusModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceComplianceDeviceStatusModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceComplianceDeviceStatusModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceComplianceDeviceStatusRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceComplianceDeviceStatusRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceComplianceDeviceStatusRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceComplianceDeviceStatusRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceCompliancePolicyAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceCompliancePolicyAction.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceCompliancePolicyAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceCompliancePolicyAction.go index 7ff05670c5..d3309fd3f1 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceCompliancePolicyAction.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceCompliancePolicyAction.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // DeviceCompliancePolicyCollectionHasPayloadLinksRequestParameter undocumented diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceCompliancePolicyAssignmentModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceCompliancePolicyAssignmentModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceCompliancePolicyAssignmentModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceCompliancePolicyAssignmentModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceCompliancePolicyAssignmentRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceCompliancePolicyAssignmentRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceCompliancePolicyAssignmentRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceCompliancePolicyAssignmentRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceCompliancePolicyDeviceStateSummaryModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceCompliancePolicyDeviceStateSummaryModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceCompliancePolicyDeviceStateSummaryModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceCompliancePolicyDeviceStateSummaryModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceCompliancePolicyDeviceStateSummaryRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceCompliancePolicyDeviceStateSummaryRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceCompliancePolicyDeviceStateSummaryRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceCompliancePolicyDeviceStateSummaryRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceCompliancePolicyGroupAssignmentModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceCompliancePolicyGroupAssignmentModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceCompliancePolicyGroupAssignmentModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceCompliancePolicyGroupAssignmentModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceCompliancePolicyGroupAssignmentRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceCompliancePolicyGroupAssignmentRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceCompliancePolicyGroupAssignmentRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceCompliancePolicyGroupAssignmentRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceCompliancePolicyModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceCompliancePolicyModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceCompliancePolicyModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceCompliancePolicyModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceCompliancePolicyPolicySetItemModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceCompliancePolicyPolicySetItemModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceCompliancePolicyPolicySetItemModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceCompliancePolicyPolicySetItemModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceCompliancePolicyRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceCompliancePolicyRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceCompliancePolicyRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceCompliancePolicyRequest.go index 5e8fa637cc..6197116ebe 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceCompliancePolicyRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceCompliancePolicyRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // DeviceCompliancePolicyRequestBuilder is request builder for DeviceCompliancePolicy diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceCompliancePolicySettingStateModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceCompliancePolicySettingStateModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceCompliancePolicySettingStateModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceCompliancePolicySettingStateModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceCompliancePolicySettingStateSummaryModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceCompliancePolicySettingStateSummaryModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceCompliancePolicySettingStateSummaryModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceCompliancePolicySettingStateSummaryModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceCompliancePolicySettingStateSummaryRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceCompliancePolicySettingStateSummaryRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceCompliancePolicySettingStateSummaryRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceCompliancePolicySettingStateSummaryRequest.go index af5e47c555..2896f5f543 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceCompliancePolicySettingStateSummaryRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceCompliancePolicySettingStateSummaryRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // DeviceCompliancePolicySettingStateSummaryRequestBuilder is request builder for DeviceCompliancePolicySettingStateSummary diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceCompliancePolicyStateModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceCompliancePolicyStateModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceCompliancePolicyStateModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceCompliancePolicyStateModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceCompliancePolicyStateRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceCompliancePolicyStateRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceCompliancePolicyStateRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceCompliancePolicyStateRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceComplianceScheduledActionForRuleModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceComplianceScheduledActionForRuleModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceComplianceScheduledActionForRuleModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceComplianceScheduledActionForRuleModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceComplianceScheduledActionForRuleRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceComplianceScheduledActionForRuleRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceComplianceScheduledActionForRuleRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceComplianceScheduledActionForRuleRequest.go index 53af6456a8..7f3abab7cd 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceComplianceScheduledActionForRuleRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceComplianceScheduledActionForRuleRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // DeviceComplianceScheduledActionForRuleRequestBuilder is request builder for DeviceComplianceScheduledActionForRule diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceComplianceSettingStateModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceComplianceSettingStateModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceComplianceSettingStateModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceComplianceSettingStateModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceComplianceSettingStateRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceComplianceSettingStateRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceComplianceSettingStateRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceComplianceSettingStateRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceComplianceUserOverviewModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceComplianceUserOverviewModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceComplianceUserOverviewModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceComplianceUserOverviewModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceComplianceUserOverviewRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceComplianceUserOverviewRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceComplianceUserOverviewRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceComplianceUserOverviewRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceComplianceUserStatusModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceComplianceUserStatusModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceComplianceUserStatusModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceComplianceUserStatusModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceComplianceUserStatusRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceComplianceUserStatusRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceComplianceUserStatusRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceComplianceUserStatusRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceConfigurationAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceConfigurationAction.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceConfigurationAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceConfigurationAction.go index 95460aa0b2..0c0e788b43 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceConfigurationAction.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceConfigurationAction.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // DeviceConfigurationCollectionHasPayloadLinksRequestParameter undocumented diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceConfigurationAssignmentModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceConfigurationAssignmentModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceConfigurationAssignmentModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceConfigurationAssignmentModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceConfigurationAssignmentRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceConfigurationAssignmentRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceConfigurationAssignmentRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceConfigurationAssignmentRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceConfigurationConflictSummaryModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceConfigurationConflictSummaryModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceConfigurationConflictSummaryModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceConfigurationConflictSummaryModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceConfigurationConflictSummaryRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceConfigurationConflictSummaryRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceConfigurationConflictSummaryRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceConfigurationConflictSummaryRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceConfigurationDeviceOverviewModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceConfigurationDeviceOverviewModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceConfigurationDeviceOverviewModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceConfigurationDeviceOverviewModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceConfigurationDeviceOverviewRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceConfigurationDeviceOverviewRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceConfigurationDeviceOverviewRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceConfigurationDeviceOverviewRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceConfigurationDeviceStateSummaryModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceConfigurationDeviceStateSummaryModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceConfigurationDeviceStateSummaryModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceConfigurationDeviceStateSummaryModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceConfigurationDeviceStateSummaryRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceConfigurationDeviceStateSummaryRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceConfigurationDeviceStateSummaryRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceConfigurationDeviceStateSummaryRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceConfigurationDeviceStatusModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceConfigurationDeviceStatusModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceConfigurationDeviceStatusModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceConfigurationDeviceStatusModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceConfigurationDeviceStatusRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceConfigurationDeviceStatusRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceConfigurationDeviceStatusRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceConfigurationDeviceStatusRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceConfigurationGroupAssignmentModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceConfigurationGroupAssignmentModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceConfigurationGroupAssignmentModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceConfigurationGroupAssignmentModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceConfigurationGroupAssignmentRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceConfigurationGroupAssignmentRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceConfigurationGroupAssignmentRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceConfigurationGroupAssignmentRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceConfigurationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceConfigurationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceConfigurationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceConfigurationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceConfigurationPolicySetItemModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceConfigurationPolicySetItemModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceConfigurationPolicySetItemModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceConfigurationPolicySetItemModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceConfigurationRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceConfigurationRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceConfigurationRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceConfigurationRequest.go index 495b5d762f..c0bf5eccf2 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceConfigurationRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceConfigurationRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // DeviceConfigurationRequestBuilder is request builder for DeviceConfiguration diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceConfigurationSettingStateModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceConfigurationSettingStateModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceConfigurationSettingStateModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceConfigurationSettingStateModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceConfigurationStateModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceConfigurationStateModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceConfigurationStateModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceConfigurationStateModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceConfigurationStateRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceConfigurationStateRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceConfigurationStateRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceConfigurationStateRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceConfigurationTargetedUserAndDeviceModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceConfigurationTargetedUserAndDeviceModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceConfigurationTargetedUserAndDeviceModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceConfigurationTargetedUserAndDeviceModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceConfigurationUserOverviewModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceConfigurationUserOverviewModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceConfigurationUserOverviewModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceConfigurationUserOverviewModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceConfigurationUserOverviewRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceConfigurationUserOverviewRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceConfigurationUserOverviewRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceConfigurationUserOverviewRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceConfigurationUserStateSummaryModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceConfigurationUserStateSummaryModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceConfigurationUserStateSummaryModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceConfigurationUserStateSummaryModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceConfigurationUserStateSummaryRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceConfigurationUserStateSummaryRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceConfigurationUserStateSummaryRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceConfigurationUserStateSummaryRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceConfigurationUserStatusModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceConfigurationUserStatusModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceConfigurationUserStatusModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceConfigurationUserStatusModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceConfigurationUserStatusRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceConfigurationUserStatusRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceConfigurationUserStatusRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceConfigurationUserStatusRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceDetailModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceDetailModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceDetailModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceDetailModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceEnrollmentConfigurationAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceEnrollmentConfigurationAction.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceEnrollmentConfigurationAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceEnrollmentConfigurationAction.go index 239149035a..3e7def8e76 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceEnrollmentConfigurationAction.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceEnrollmentConfigurationAction.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // DeviceEnrollmentConfigurationCollectionHasPayloadLinksRequestParameter undocumented diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceEnrollmentConfigurationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceEnrollmentConfigurationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceEnrollmentConfigurationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceEnrollmentConfigurationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceEnrollmentConfigurationRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceEnrollmentConfigurationRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceEnrollmentConfigurationRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceEnrollmentConfigurationRequest.go index f2b5df56d0..3db357fe07 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceEnrollmentConfigurationRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceEnrollmentConfigurationRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // DeviceEnrollmentConfigurationRequestBuilder is request builder for DeviceEnrollmentConfiguration diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceEnrollmentFailureReasonEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceEnrollmentFailureReasonEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceEnrollmentFailureReasonEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceEnrollmentFailureReasonEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceEnrollmentLimitConfigurationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceEnrollmentLimitConfigurationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceEnrollmentLimitConfigurationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceEnrollmentLimitConfigurationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceEnrollmentPlatformRestrictionModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceEnrollmentPlatformRestrictionModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceEnrollmentPlatformRestrictionModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceEnrollmentPlatformRestrictionModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceEnrollmentPlatformRestrictionsConfigurationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceEnrollmentPlatformRestrictionsConfigurationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceEnrollmentPlatformRestrictionsConfigurationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceEnrollmentPlatformRestrictionsConfigurationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceEnrollmentTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceEnrollmentTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceEnrollmentTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceEnrollmentTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceEnrollmentWindowsHelloForBusinessConfigurationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceEnrollmentWindowsHelloForBusinessConfigurationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceEnrollmentWindowsHelloForBusinessConfigurationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceEnrollmentWindowsHelloForBusinessConfigurationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceExchangeAccessStateSummaryModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceExchangeAccessStateSummaryModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceExchangeAccessStateSummaryModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceExchangeAccessStateSummaryModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceGeoLocationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceGeoLocationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceGeoLocationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceGeoLocationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceGuardLocalSystemAuthorityCredentialGuardStateEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceGuardLocalSystemAuthorityCredentialGuardStateEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceGuardLocalSystemAuthorityCredentialGuardStateEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceGuardLocalSystemAuthorityCredentialGuardStateEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceGuardLocalSystemAuthorityCredentialGuardTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceGuardLocalSystemAuthorityCredentialGuardTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceGuardLocalSystemAuthorityCredentialGuardTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceGuardLocalSystemAuthorityCredentialGuardTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceGuardVirtualizationBasedSecurityHardwareRequirementStateEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceGuardVirtualizationBasedSecurityHardwareRequirementStateEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceGuardVirtualizationBasedSecurityHardwareRequirementStateEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceGuardVirtualizationBasedSecurityHardwareRequirementStateEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceGuardVirtualizationBasedSecurityStateEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceGuardVirtualizationBasedSecurityStateEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceGuardVirtualizationBasedSecurityStateEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceGuardVirtualizationBasedSecurityStateEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceHealthAttestationStateModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceHealthAttestationStateModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceHealthAttestationStateModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceHealthAttestationStateModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceHealthScriptAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceHealthScriptAction.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceHealthScriptAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceHealthScriptAction.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceHealthScriptAssignmentModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceHealthScriptAssignmentModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceHealthScriptAssignmentModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceHealthScriptAssignmentModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceHealthScriptAssignmentRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceHealthScriptAssignmentRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceHealthScriptAssignmentRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceHealthScriptAssignmentRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceHealthScriptDeviceStateModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceHealthScriptDeviceStateModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceHealthScriptDeviceStateModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceHealthScriptDeviceStateModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceHealthScriptDeviceStateRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceHealthScriptDeviceStateRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceHealthScriptDeviceStateRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceHealthScriptDeviceStateRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceHealthScriptModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceHealthScriptModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceHealthScriptModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceHealthScriptModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceHealthScriptRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceHealthScriptRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceHealthScriptRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceHealthScriptRequest.go index 806a377178..d6e4aca1c0 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceHealthScriptRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceHealthScriptRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // DeviceHealthScriptRequestBuilder is request builder for DeviceHealthScript diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceHealthScriptRunSummaryModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceHealthScriptRunSummaryModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceHealthScriptRunSummaryModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceHealthScriptRunSummaryModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceHealthScriptRunSummaryRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceHealthScriptRunSummaryRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceHealthScriptRunSummaryRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceHealthScriptRunSummaryRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceInstallStateModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceInstallStateModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceInstallStateModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceInstallStateModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceInstallStateRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceInstallStateRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceInstallStateRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceInstallStateRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceKeyModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceKeyModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceKeyModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceKeyModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementAbstractComplexSettingDefinitionModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementAbstractComplexSettingDefinitionModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementAbstractComplexSettingDefinitionModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementAbstractComplexSettingDefinitionModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementAbstractComplexSettingInstanceModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementAbstractComplexSettingInstanceModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementAbstractComplexSettingInstanceModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementAbstractComplexSettingInstanceModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementAbstractComplexSettingInstanceRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementAbstractComplexSettingInstanceRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementAbstractComplexSettingInstanceRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementAbstractComplexSettingInstanceRequest.go index b1205360f4..a9a3c1d6d1 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementAbstractComplexSettingInstanceRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementAbstractComplexSettingInstanceRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // DeviceManagementAbstractComplexSettingInstanceRequestBuilder is request builder for DeviceManagementAbstractComplexSettingInstance diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementAction.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementAction.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementApplicabilityRuleDeviceModeModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementApplicabilityRuleDeviceModeModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementApplicabilityRuleDeviceModeModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementApplicabilityRuleDeviceModeModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementApplicabilityRuleOsEditionModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementApplicabilityRuleOsEditionModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementApplicabilityRuleOsEditionModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementApplicabilityRuleOsEditionModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementApplicabilityRuleOsVersionModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementApplicabilityRuleOsVersionModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementApplicabilityRuleOsVersionModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementApplicabilityRuleOsVersionModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementApplicabilityRuleTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementApplicabilityRuleTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementApplicabilityRuleTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementApplicabilityRuleTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementAutopilotEventModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementAutopilotEventModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementAutopilotEventModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementAutopilotEventModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementAutopilotEventRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementAutopilotEventRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementAutopilotEventRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementAutopilotEventRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementBooleanSettingInstanceModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementBooleanSettingInstanceModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementBooleanSettingInstanceModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementBooleanSettingInstanceModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementCachedReportConfigurationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementCachedReportConfigurationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementCachedReportConfigurationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementCachedReportConfigurationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementCachedReportConfigurationRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementCachedReportConfigurationRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementCachedReportConfigurationRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementCachedReportConfigurationRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementCollectionSettingDefinitionModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementCollectionSettingDefinitionModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementCollectionSettingDefinitionModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementCollectionSettingDefinitionModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementCollectionSettingInstanceModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementCollectionSettingInstanceModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementCollectionSettingInstanceModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementCollectionSettingInstanceModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementCollectionSettingInstanceRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementCollectionSettingInstanceRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementCollectionSettingInstanceRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementCollectionSettingInstanceRequest.go index 5ac2d075c9..4ff53978d8 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementCollectionSettingInstanceRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementCollectionSettingInstanceRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // DeviceManagementCollectionSettingInstanceRequestBuilder is request builder for DeviceManagementCollectionSettingInstance diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementComparisonResultEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementComparisonResultEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementComparisonResultEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementComparisonResultEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementComplexSettingDefinitionModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementComplexSettingDefinitionModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementComplexSettingDefinitionModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementComplexSettingDefinitionModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementComplexSettingInstanceModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementComplexSettingInstanceModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementComplexSettingInstanceModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementComplexSettingInstanceModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementComplexSettingInstanceRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementComplexSettingInstanceRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementComplexSettingInstanceRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementComplexSettingInstanceRequest.go index 760b812781..2ba7d82bf6 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementComplexSettingInstanceRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementComplexSettingInstanceRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // DeviceManagementComplexSettingInstanceRequestBuilder is request builder for DeviceManagementComplexSettingInstance diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementConstraintModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementConstraintModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementConstraintModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementConstraintModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementDerivedCredentialIssuerEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementDerivedCredentialIssuerEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementDerivedCredentialIssuerEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementDerivedCredentialIssuerEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementDerivedCredentialNotificationTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementDerivedCredentialNotificationTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementDerivedCredentialNotificationTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementDerivedCredentialNotificationTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementDerivedCredentialSettingsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementDerivedCredentialSettingsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementDerivedCredentialSettingsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementDerivedCredentialSettingsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementDerivedCredentialSettingsRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementDerivedCredentialSettingsRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementDerivedCredentialSettingsRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementDerivedCredentialSettingsRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementDomainJoinConnectorModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementDomainJoinConnectorModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementDomainJoinConnectorModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementDomainJoinConnectorModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementDomainJoinConnectorRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementDomainJoinConnectorRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementDomainJoinConnectorRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementDomainJoinConnectorRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementDomainJoinConnectorStateEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementDomainJoinConnectorStateEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementDomainJoinConnectorStateEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementDomainJoinConnectorStateEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementEnumConstraintModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementEnumConstraintModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementEnumConstraintModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementEnumConstraintModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementEnumValueModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementEnumValueModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementEnumValueModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementEnumValueModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementExchangeAccessLevelEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementExchangeAccessLevelEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementExchangeAccessLevelEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementExchangeAccessLevelEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementExchangeAccessRuleModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementExchangeAccessRuleModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementExchangeAccessRuleModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementExchangeAccessRuleModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementExchangeAccessRuleTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementExchangeAccessRuleTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementExchangeAccessRuleTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementExchangeAccessRuleTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementExchangeAccessStateEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementExchangeAccessStateEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementExchangeAccessStateEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementExchangeAccessStateEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementExchangeAccessStateReasonEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementExchangeAccessStateReasonEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementExchangeAccessStateReasonEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementExchangeAccessStateReasonEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementExchangeConnectorAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementExchangeConnectorAction.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementExchangeConnectorAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementExchangeConnectorAction.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementExchangeConnectorModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementExchangeConnectorModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementExchangeConnectorModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementExchangeConnectorModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementExchangeConnectorRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementExchangeConnectorRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementExchangeConnectorRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementExchangeConnectorRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementExchangeConnectorStatusEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementExchangeConnectorStatusEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementExchangeConnectorStatusEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementExchangeConnectorStatusEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementExchangeConnectorSyncTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementExchangeConnectorSyncTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementExchangeConnectorSyncTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementExchangeConnectorSyncTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementExchangeConnectorTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementExchangeConnectorTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementExchangeConnectorTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementExchangeConnectorTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementExchangeDeviceClassModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementExchangeDeviceClassModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementExchangeDeviceClassModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementExchangeDeviceClassModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementExchangeOnPremisesPolicyModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementExchangeOnPremisesPolicyModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementExchangeOnPremisesPolicyModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementExchangeOnPremisesPolicyModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementExchangeOnPremisesPolicyRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementExchangeOnPremisesPolicyRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementExchangeOnPremisesPolicyRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementExchangeOnPremisesPolicyRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementExportJobModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementExportJobModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementExportJobModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementExportJobModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementExportJobRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementExportJobRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementExportJobRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementExportJobRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementIntegerSettingInstanceModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementIntegerSettingInstanceModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementIntegerSettingInstanceModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementIntegerSettingInstanceModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementIntentAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementIntentAction.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementIntentAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementIntentAction.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementIntentAssignmentModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementIntentAssignmentModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementIntentAssignmentModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementIntentAssignmentModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementIntentAssignmentRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementIntentAssignmentRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementIntentAssignmentRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementIntentAssignmentRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementIntentDeviceSettingStateSummaryModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementIntentDeviceSettingStateSummaryModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementIntentDeviceSettingStateSummaryModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementIntentDeviceSettingStateSummaryModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementIntentDeviceSettingStateSummaryRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementIntentDeviceSettingStateSummaryRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementIntentDeviceSettingStateSummaryRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementIntentDeviceSettingStateSummaryRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementIntentDeviceStateModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementIntentDeviceStateModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementIntentDeviceStateModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementIntentDeviceStateModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementIntentDeviceStateRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementIntentDeviceStateRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementIntentDeviceStateRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementIntentDeviceStateRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementIntentDeviceStateSummaryModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementIntentDeviceStateSummaryModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementIntentDeviceStateSummaryModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementIntentDeviceStateSummaryModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementIntentDeviceStateSummaryRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementIntentDeviceStateSummaryRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementIntentDeviceStateSummaryRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementIntentDeviceStateSummaryRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementIntentModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementIntentModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementIntentModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementIntentModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementIntentRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementIntentRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementIntentRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementIntentRequest.go index 42ef1a582b..e1af279d29 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementIntentRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementIntentRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // DeviceManagementIntentRequestBuilder is request builder for DeviceManagementIntent diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementIntentSettingCategoryModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementIntentSettingCategoryModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementIntentSettingCategoryModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementIntentSettingCategoryModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementIntentSettingCategoryRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementIntentSettingCategoryRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementIntentSettingCategoryRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementIntentSettingCategoryRequest.go index b26cad1a26..7c2f943fa5 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementIntentSettingCategoryRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementIntentSettingCategoryRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // DeviceManagementIntentSettingCategoryRequestBuilder is request builder for DeviceManagementIntentSettingCategory diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementIntentUserStateModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementIntentUserStateModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementIntentUserStateModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementIntentUserStateModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementIntentUserStateRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementIntentUserStateRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementIntentUserStateRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementIntentUserStateRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementIntentUserStateSummaryModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementIntentUserStateSummaryModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementIntentUserStateSummaryModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementIntentUserStateSummaryModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementIntentUserStateSummaryRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementIntentUserStateSummaryRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementIntentUserStateSummaryRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementIntentUserStateSummaryRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementPartnerAppTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementPartnerAppTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementPartnerAppTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementPartnerAppTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementPartnerAssignmentModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementPartnerAssignmentModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementPartnerAssignmentModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementPartnerAssignmentModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementPartnerModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementPartnerModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementPartnerModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementPartnerModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementPartnerRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementPartnerRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementPartnerRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementPartnerRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementPartnerTenantStateEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementPartnerTenantStateEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementPartnerTenantStateEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementPartnerTenantStateEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementReportFileFormatEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementReportFileFormatEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementReportFileFormatEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementReportFileFormatEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementReportScheduleModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementReportScheduleModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementReportScheduleModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementReportScheduleModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementReportScheduleRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementReportScheduleRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementReportScheduleRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementReportScheduleRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementReportStatusEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementReportStatusEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementReportStatusEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementReportStatusEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementReportsAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementReportsAction.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementReportsAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementReportsAction.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementReportsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementReportsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementReportsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementReportsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementReportsRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementReportsRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementReportsRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementReportsRequest.go index 14ab4c4964..b7c8c1442c 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementReportsRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementReportsRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // DeviceManagementReportsRequestBuilder is request builder for DeviceManagementReports diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementRequest.go index 9dcce84e65..ad6265964c 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // DeviceManagementRequestBuilder is request builder for DeviceManagement diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementScheduledReportRecurrenceEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementScheduledReportRecurrenceEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementScheduledReportRecurrenceEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementScheduledReportRecurrenceEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementScriptAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementScriptAction.go similarity index 98% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementScriptAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementScriptAction.go index 2fc9a304b9..27f01a3f08 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementScriptAction.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementScriptAction.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // DeviceManagementScriptCollectionHasPayloadLinksRequestParameter undocumented diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementScriptAssignmentModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementScriptAssignmentModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementScriptAssignmentModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementScriptAssignmentModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementScriptAssignmentRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementScriptAssignmentRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementScriptAssignmentRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementScriptAssignmentRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementScriptDeviceStateModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementScriptDeviceStateModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementScriptDeviceStateModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementScriptDeviceStateModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementScriptDeviceStateRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementScriptDeviceStateRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementScriptDeviceStateRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementScriptDeviceStateRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementScriptGroupAssignmentModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementScriptGroupAssignmentModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementScriptGroupAssignmentModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementScriptGroupAssignmentModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementScriptGroupAssignmentRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementScriptGroupAssignmentRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementScriptGroupAssignmentRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementScriptGroupAssignmentRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementScriptModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementScriptModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementScriptModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementScriptModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementScriptPolicySetItemModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementScriptPolicySetItemModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementScriptPolicySetItemModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementScriptPolicySetItemModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementScriptRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementScriptRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementScriptRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementScriptRequest.go index a946a3e2e0..9949619c84 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementScriptRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementScriptRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // DeviceManagementScriptRequestBuilder is request builder for DeviceManagementScript diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementScriptRunSummaryModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementScriptRunSummaryModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementScriptRunSummaryModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementScriptRunSummaryModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementScriptRunSummaryRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementScriptRunSummaryRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementScriptRunSummaryRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementScriptRunSummaryRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementScriptUserStateModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementScriptUserStateModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementScriptUserStateModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementScriptUserStateModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementScriptUserStateRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementScriptUserStateRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementScriptUserStateRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementScriptUserStateRequest.go index 7ce10d80a5..2cbfee4fe8 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementScriptUserStateRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementScriptUserStateRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // DeviceManagementScriptUserStateRequestBuilder is request builder for DeviceManagementScriptUserState diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementSettingBooleanConstraintModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementSettingBooleanConstraintModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementSettingBooleanConstraintModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementSettingBooleanConstraintModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementSettingCategoryModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementSettingCategoryModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementSettingCategoryModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementSettingCategoryModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementSettingCategoryRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementSettingCategoryRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementSettingCategoryRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementSettingCategoryRequest.go index 1af33b86d6..d4a52abfa0 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementSettingCategoryRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementSettingCategoryRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // DeviceManagementSettingCategoryRequestBuilder is request builder for DeviceManagementSettingCategory diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementSettingComparisonModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementSettingComparisonModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementSettingComparisonModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementSettingComparisonModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementSettingDefinitionModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementSettingDefinitionModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementSettingDefinitionModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementSettingDefinitionModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementSettingDefinitionRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementSettingDefinitionRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementSettingDefinitionRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementSettingDefinitionRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementSettingDependencyModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementSettingDependencyModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementSettingDependencyModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementSettingDependencyModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementSettingInstanceModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementSettingInstanceModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementSettingInstanceModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementSettingInstanceModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementSettingInstanceRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementSettingInstanceRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementSettingInstanceRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementSettingInstanceRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementSettingIntegerConstraintModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementSettingIntegerConstraintModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementSettingIntegerConstraintModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementSettingIntegerConstraintModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementSettingRegexConstraintModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementSettingRegexConstraintModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementSettingRegexConstraintModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementSettingRegexConstraintModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementSettingStringLengthConstraintModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementSettingStringLengthConstraintModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementSettingStringLengthConstraintModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementSettingStringLengthConstraintModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementSettingXMLConstraintModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementSettingXMLConstraintModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementSettingXMLConstraintModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementSettingXMLConstraintModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementSettingsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementSettingsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementSettingsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementSettingsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementStringSettingInstanceModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementStringSettingInstanceModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementStringSettingInstanceModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementStringSettingInstanceModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementSubscriptionStateEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementSubscriptionStateEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementSubscriptionStateEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementSubscriptionStateEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementSubscriptionsEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementSubscriptionsEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementSubscriptionsEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementSubscriptionsEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementTemplateAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementTemplateAction.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementTemplateAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementTemplateAction.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementTemplateModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementTemplateModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementTemplateModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementTemplateModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementTemplateRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementTemplateRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementTemplateRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementTemplateRequest.go index c07398c486..a309c1ff4a 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementTemplateRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementTemplateRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // DeviceManagementTemplateRequestBuilder is request builder for DeviceManagementTemplate diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementTemplateSettingCategoryModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementTemplateSettingCategoryModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementTemplateSettingCategoryModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementTemplateSettingCategoryModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementTemplateSettingCategoryRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementTemplateSettingCategoryRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementTemplateSettingCategoryRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementTemplateSettingCategoryRequest.go index 69cd11c5c1..8857fceffa 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementTemplateSettingCategoryRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementTemplateSettingCategoryRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // DeviceManagementTemplateSettingCategoryRequestBuilder is request builder for DeviceManagementTemplateSettingCategory diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementTemplateTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementTemplateTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementTemplateTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementTemplateTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementTroubleshootingErrorDetailsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementTroubleshootingErrorDetailsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementTroubleshootingErrorDetailsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementTroubleshootingErrorDetailsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementTroubleshootingErrorResourceModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementTroubleshootingErrorResourceModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementTroubleshootingErrorResourceModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementTroubleshootingErrorResourceModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementTroubleshootingEventModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementTroubleshootingEventModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementTroubleshootingEventModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementTroubleshootingEventModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementTroubleshootingEventRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementTroubleshootingEventRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementTroubleshootingEventRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementTroubleshootingEventRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementUserRightsLocalUserOrGroupModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementUserRightsLocalUserOrGroupModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementUserRightsLocalUserOrGroupModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementUserRightsLocalUserOrGroupModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementUserRightsSettingModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementUserRightsSettingModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementUserRightsSettingModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementUserRightsSettingModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManangementIntentValueTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManangementIntentValueTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceManangementIntentValueTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceManangementIntentValueTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceOperatingSystemSummaryModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceOperatingSystemSummaryModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceOperatingSystemSummaryModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceOperatingSystemSummaryModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DevicePlatformTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/DevicePlatformTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DevicePlatformTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DevicePlatformTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceProtectionOverviewModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceProtectionOverviewModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceProtectionOverviewModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceProtectionOverviewModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceRegistrationStateEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceRegistrationStateEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceRegistrationStateEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceRegistrationStateEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceRequest.go index 7ca6e3c008..8b56fbf085 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // DeviceRequestBuilder is request builder for Device diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceRestrictionActionModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceRestrictionActionModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceRestrictionActionModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceRestrictionActionModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceSetupConfigurationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceSetupConfigurationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceSetupConfigurationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceSetupConfigurationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceThreatProtectionLevelEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceThreatProtectionLevelEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceThreatProtectionLevelEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceThreatProtectionLevelEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceTypesEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceTypesEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DeviceTypesEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DeviceTypesEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DiagnosticDataSubmissionModeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/DiagnosticDataSubmissionModeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DiagnosticDataSubmissionModeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DiagnosticDataSubmissionModeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DiagnosticModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DiagnosticModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DiagnosticModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DiagnosticModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DiamondModelEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/DiamondModelEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DiamondModelEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DiamondModelEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DimensionModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DimensionModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DimensionModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DimensionModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DimensionRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/DimensionRequest.go similarity index 98% rename from vendor/github.com/yaegashi/msgraph.go/beta/DimensionRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DimensionRequest.go index 1f0529ad77..c079b571ee 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/DimensionRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/DimensionRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // DimensionRequestBuilder is request builder for Dimension diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DimensionValueModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DimensionValueModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DimensionValueModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DimensionValueModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DimensionValueRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/DimensionValueRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DimensionValueRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DimensionValueRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DirectoryAuditModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DirectoryAuditModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DirectoryAuditModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DirectoryAuditModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DirectoryAuditRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/DirectoryAuditRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DirectoryAuditRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DirectoryAuditRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DirectoryDefinitionAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/DirectoryDefinitionAction.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DirectoryDefinitionAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DirectoryDefinitionAction.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DirectoryDefinitionDiscoverabilitiesEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/DirectoryDefinitionDiscoverabilitiesEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DirectoryDefinitionDiscoverabilitiesEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DirectoryDefinitionDiscoverabilitiesEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DirectoryDefinitionModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DirectoryDefinitionModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DirectoryDefinitionModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DirectoryDefinitionModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DirectoryDefinitionRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/DirectoryDefinitionRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DirectoryDefinitionRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DirectoryDefinitionRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DirectoryModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DirectoryModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DirectoryModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DirectoryModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DirectoryObjectAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/DirectoryObjectAction.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/DirectoryObjectAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DirectoryObjectAction.go index d2b32a95e3..da5e8ebf7b 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/DirectoryObjectAction.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/DirectoryObjectAction.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // DirectoryObjectCollectionGetByIDsRequestParameter undocumented diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DirectoryObjectModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DirectoryObjectModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DirectoryObjectModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DirectoryObjectModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DirectoryObjectPartnerReferenceModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DirectoryObjectPartnerReferenceModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DirectoryObjectPartnerReferenceModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DirectoryObjectPartnerReferenceModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DirectoryObjectRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/DirectoryObjectRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DirectoryObjectRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DirectoryObjectRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DirectoryRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/DirectoryRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/DirectoryRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DirectoryRequest.go index 997288a827..6dc5073a53 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/DirectoryRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/DirectoryRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // DirectoryRequestBuilder is request builder for Directory diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DirectoryRoleModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DirectoryRoleModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DirectoryRoleModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DirectoryRoleModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DirectoryRoleRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/DirectoryRoleRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/DirectoryRoleRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DirectoryRoleRequest.go index a479ed339a..c59d2a1fd1 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/DirectoryRoleRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/DirectoryRoleRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // DirectoryRoleRequestBuilder is request builder for DirectoryRole diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DirectoryRoleTemplateModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DirectoryRoleTemplateModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DirectoryRoleTemplateModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DirectoryRoleTemplateModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DirectoryRoleTemplateRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/DirectoryRoleTemplateRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DirectoryRoleTemplateRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DirectoryRoleTemplateRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DirectorySettingModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DirectorySettingModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DirectorySettingModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DirectorySettingModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DirectorySettingRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/DirectorySettingRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DirectorySettingRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DirectorySettingRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DirectorySettingTemplateModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DirectorySettingTemplateModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DirectorySettingTemplateModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DirectorySettingTemplateModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DirectorySettingTemplateRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/DirectorySettingTemplateRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DirectorySettingTemplateRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DirectorySettingTemplateRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DiscoveredSensitiveTypeModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DiscoveredSensitiveTypeModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DiscoveredSensitiveTypeModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DiscoveredSensitiveTypeModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DiscoverySourceEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/DiscoverySourceEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DiscoverySourceEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DiscoverySourceEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DiskTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/DiskTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DiskTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DiskTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DlpActionEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/DlpActionEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DlpActionEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DlpActionEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DlpActionInfoModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DlpActionInfoModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DlpActionInfoModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DlpActionInfoModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DlpEvaluatePoliciesJobResponseModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DlpEvaluatePoliciesJobResponseModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DlpEvaluatePoliciesJobResponseModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DlpEvaluatePoliciesJobResponseModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DlpEvaluatePoliciesRequestObjectModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DlpEvaluatePoliciesRequestObjectModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DlpEvaluatePoliciesRequestObjectModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DlpEvaluatePoliciesRequestObjectModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DlpEvaluationInputModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DlpEvaluationInputModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DlpEvaluationInputModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DlpEvaluationInputModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DlpEvaluationWindowsDevicesInputModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DlpEvaluationWindowsDevicesInputModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DlpEvaluationWindowsDevicesInputModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DlpEvaluationWindowsDevicesInputModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DlpNotificationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DlpNotificationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DlpNotificationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DlpNotificationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DlpPoliciesJobResultModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DlpPoliciesJobResultModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DlpPoliciesJobResultModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DlpPoliciesJobResultModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DlpWindowsDevicesNotificationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DlpWindowsDevicesNotificationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DlpWindowsDevicesNotificationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DlpWindowsDevicesNotificationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DmaGuardDeviceEnumerationPolicyTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/DmaGuardDeviceEnumerationPolicyTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DmaGuardDeviceEnumerationPolicyTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DmaGuardDeviceEnumerationPolicyTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DocumentCommentModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DocumentCommentModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DocumentCommentModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DocumentCommentModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DocumentCommentReplyModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DocumentCommentReplyModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DocumentCommentReplyModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DocumentCommentReplyModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DocumentCommentReplyRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/DocumentCommentReplyRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DocumentCommentReplyRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DocumentCommentReplyRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DocumentCommentRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/DocumentCommentRequest.go similarity index 98% rename from vendor/github.com/yaegashi/msgraph.go/beta/DocumentCommentRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DocumentCommentRequest.go index 91ee45c3fd..ee96c9b826 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/DocumentCommentRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/DocumentCommentRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // DocumentCommentRequestBuilder is request builder for DocumentComment diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DocumentModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DocumentModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DocumentModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DocumentModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DocumentRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/DocumentRequest.go similarity index 98% rename from vendor/github.com/yaegashi/msgraph.go/beta/DocumentRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DocumentRequest.go index 9ea84b460b..dbcf817afd 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/DocumentRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/DocumentRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // DocumentRequestBuilder is request builder for Document diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DomainAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/DomainAction.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DomainAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DomainAction.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DomainDNSCnameRecordModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DomainDNSCnameRecordModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DomainDNSCnameRecordModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DomainDNSCnameRecordModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DomainDNSMxRecordModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DomainDNSMxRecordModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DomainDNSMxRecordModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DomainDNSMxRecordModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DomainDNSRecordModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DomainDNSRecordModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DomainDNSRecordModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DomainDNSRecordModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DomainDNSRecordRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/DomainDNSRecordRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DomainDNSRecordRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DomainDNSRecordRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DomainDNSSrvRecordModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DomainDNSSrvRecordModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DomainDNSSrvRecordModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DomainDNSSrvRecordModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DomainDNSTxtRecordModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DomainDNSTxtRecordModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DomainDNSTxtRecordModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DomainDNSTxtRecordModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DomainDNSUnavailableRecordModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DomainDNSUnavailableRecordModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DomainDNSUnavailableRecordModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DomainDNSUnavailableRecordModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DomainModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DomainModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DomainModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DomainModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DomainNameSourceEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/DomainNameSourceEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DomainNameSourceEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DomainNameSourceEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DomainRegistrantModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DomainRegistrantModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DomainRegistrantModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DomainRegistrantModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DomainRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/DomainRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/DomainRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DomainRequest.go index f743b16819..2073f92091 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/DomainRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/DomainRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // DomainRequestBuilder is request builder for Domain diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DomainSecurityProfileModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DomainSecurityProfileModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DomainSecurityProfileModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DomainSecurityProfileModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DomainSecurityProfileRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/DomainSecurityProfileRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DomainSecurityProfileRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DomainSecurityProfileRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DomainStateModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DomainStateModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DomainStateModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DomainStateModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DowngradeJustificationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DowngradeJustificationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DowngradeJustificationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DowngradeJustificationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DriveItemAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/DriveItemAction.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/DriveItemAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DriveItemAction.go index 952130a361..3bc2149750 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/DriveItemAction.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/DriveItemAction.go @@ -9,7 +9,7 @@ import ( "net/http" "time" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // DriveItemCheckinRequestParameter undocumented diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DriveItemModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DriveItemModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DriveItemModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DriveItemModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DriveItemRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/DriveItemRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/DriveItemRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DriveItemRequest.go index fd61044eb4..8224630bac 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/DriveItemRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/DriveItemRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // DriveItemRequestBuilder is request builder for DriveItem diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DriveItemUploadablePropertiesModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DriveItemUploadablePropertiesModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DriveItemUploadablePropertiesModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DriveItemUploadablePropertiesModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DriveItemVersionAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/DriveItemVersionAction.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DriveItemVersionAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DriveItemVersionAction.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DriveItemVersionModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DriveItemVersionModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DriveItemVersionModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DriveItemVersionModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DriveItemVersionRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/DriveItemVersionRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DriveItemVersionRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DriveItemVersionRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DriveModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DriveModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DriveModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DriveModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DriveRecipientModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DriveRecipientModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/DriveRecipientModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DriveRecipientModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DriveRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/DriveRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/DriveRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/DriveRequest.go index a9371c7f83..22081d2837 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/DriveRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/DriveRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // DriveRequestBuilder is request builder for Drive diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EBookInstallSummaryModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/EBookInstallSummaryModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EBookInstallSummaryModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EBookInstallSummaryModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EBookInstallSummaryRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/EBookInstallSummaryRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EBookInstallSummaryRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EBookInstallSummaryRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EapFastConfigurationEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/EapFastConfigurationEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EapFastConfigurationEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EapFastConfigurationEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EapTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/EapTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EapTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EapTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EasAuthenticationMethodEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/EasAuthenticationMethodEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EasAuthenticationMethodEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EasAuthenticationMethodEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EasEmailProfileConfigurationBaseModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/EasEmailProfileConfigurationBaseModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EasEmailProfileConfigurationBaseModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EasEmailProfileConfigurationBaseModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EasServicesEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/EasServicesEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EasServicesEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EasServicesEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EdgeCookiePolicyEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/EdgeCookiePolicyEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EdgeCookiePolicyEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EdgeCookiePolicyEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EdgeHomeButtonConfigurationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/EdgeHomeButtonConfigurationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EdgeHomeButtonConfigurationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EdgeHomeButtonConfigurationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EdgeHomeButtonHiddenModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/EdgeHomeButtonHiddenModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EdgeHomeButtonHiddenModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EdgeHomeButtonHiddenModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EdgeHomeButtonLoadsStartPageModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/EdgeHomeButtonLoadsStartPageModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EdgeHomeButtonLoadsStartPageModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EdgeHomeButtonLoadsStartPageModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EdgeHomeButtonOpensCustomURLModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/EdgeHomeButtonOpensCustomURLModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EdgeHomeButtonOpensCustomURLModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EdgeHomeButtonOpensCustomURLModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EdgeHomeButtonOpensNewTabModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/EdgeHomeButtonOpensNewTabModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EdgeHomeButtonOpensNewTabModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EdgeHomeButtonOpensNewTabModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EdgeKioskModeRestrictionTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/EdgeKioskModeRestrictionTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EdgeKioskModeRestrictionTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EdgeKioskModeRestrictionTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EdgeOpenOptionsEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/EdgeOpenOptionsEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EdgeOpenOptionsEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EdgeOpenOptionsEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EdgeSearchEngineBaseModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/EdgeSearchEngineBaseModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EdgeSearchEngineBaseModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EdgeSearchEngineBaseModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EdgeSearchEngineCustomModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/EdgeSearchEngineCustomModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EdgeSearchEngineCustomModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EdgeSearchEngineCustomModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EdgeSearchEngineModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/EdgeSearchEngineModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EdgeSearchEngineModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EdgeSearchEngineModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EdgeSearchEngineTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/EdgeSearchEngineTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EdgeSearchEngineTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EdgeSearchEngineTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EdgeTelemetryModeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/EdgeTelemetryModeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EdgeTelemetryModeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EdgeTelemetryModeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EditActionModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/EditActionModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EditActionModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EditActionModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EditionUpgradeConfigurationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/EditionUpgradeConfigurationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EditionUpgradeConfigurationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EditionUpgradeConfigurationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EditionUpgradeLicenseTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/EditionUpgradeLicenseTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EditionUpgradeLicenseTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EditionUpgradeLicenseTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EducationAssignmentAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/EducationAssignmentAction.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EducationAssignmentAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EducationAssignmentAction.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EducationAssignmentClassRecipientModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/EducationAssignmentClassRecipientModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EducationAssignmentClassRecipientModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EducationAssignmentClassRecipientModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EducationAssignmentGradeModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/EducationAssignmentGradeModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EducationAssignmentGradeModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EducationAssignmentGradeModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EducationAssignmentGradeTypeModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/EducationAssignmentGradeTypeModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EducationAssignmentGradeTypeModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EducationAssignmentGradeTypeModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EducationAssignmentGroupRecipientModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/EducationAssignmentGroupRecipientModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EducationAssignmentGroupRecipientModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EducationAssignmentGroupRecipientModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EducationAssignmentIndividualRecipientModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/EducationAssignmentIndividualRecipientModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EducationAssignmentIndividualRecipientModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EducationAssignmentIndividualRecipientModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EducationAssignmentModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/EducationAssignmentModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EducationAssignmentModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EducationAssignmentModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EducationAssignmentPointsGradeModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/EducationAssignmentPointsGradeModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EducationAssignmentPointsGradeModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EducationAssignmentPointsGradeModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EducationAssignmentPointsGradeTypeModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/EducationAssignmentPointsGradeTypeModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EducationAssignmentPointsGradeTypeModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EducationAssignmentPointsGradeTypeModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EducationAssignmentRecipientModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/EducationAssignmentRecipientModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EducationAssignmentRecipientModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EducationAssignmentRecipientModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EducationAssignmentRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/EducationAssignmentRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/EducationAssignmentRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EducationAssignmentRequest.go index a7fcb8d67a..8d1ad005b5 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EducationAssignmentRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/EducationAssignmentRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // EducationAssignmentRequestBuilder is request builder for EducationAssignment diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EducationAssignmentResourceModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/EducationAssignmentResourceModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EducationAssignmentResourceModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EducationAssignmentResourceModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EducationAssignmentResourceRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/EducationAssignmentResourceRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EducationAssignmentResourceRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EducationAssignmentResourceRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EducationAssignmentStatusEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/EducationAssignmentStatusEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EducationAssignmentStatusEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EducationAssignmentStatusEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EducationCategoryModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/EducationCategoryModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EducationCategoryModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EducationCategoryModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EducationCategoryRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/EducationCategoryRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EducationCategoryRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EducationCategoryRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EducationClassModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/EducationClassModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EducationClassModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EducationClassModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EducationClassRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/EducationClassRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/EducationClassRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EducationClassRequest.go index 219ff4fb5f..8802059eb9 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EducationClassRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/EducationClassRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // EducationClassRequestBuilder is request builder for EducationClass diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EducationCourseModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/EducationCourseModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EducationCourseModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EducationCourseModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EducationCsvDataProviderModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/EducationCsvDataProviderModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EducationCsvDataProviderModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EducationCsvDataProviderModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EducationExcelResourceModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/EducationExcelResourceModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EducationExcelResourceModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EducationExcelResourceModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EducationExternalSourceEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/EducationExternalSourceEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EducationExternalSourceEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EducationExternalSourceEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EducationFeedbackModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/EducationFeedbackModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EducationFeedbackModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EducationFeedbackModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EducationFeedbackOutcomeModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/EducationFeedbackOutcomeModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EducationFeedbackOutcomeModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EducationFeedbackOutcomeModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EducationFileResourceModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/EducationFileResourceModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EducationFileResourceModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EducationFileResourceModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EducationFileSynchronizationVerificationMessageModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/EducationFileSynchronizationVerificationMessageModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EducationFileSynchronizationVerificationMessageModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EducationFileSynchronizationVerificationMessageModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EducationFormResourceModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/EducationFormResourceModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EducationFormResourceModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EducationFormResourceModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EducationGenderEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/EducationGenderEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EducationGenderEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EducationGenderEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EducationIdentityCreationConfigurationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/EducationIdentityCreationConfigurationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EducationIdentityCreationConfigurationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EducationIdentityCreationConfigurationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EducationIdentityDomainModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/EducationIdentityDomainModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EducationIdentityDomainModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EducationIdentityDomainModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EducationIdentityMatchingConfigurationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/EducationIdentityMatchingConfigurationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EducationIdentityMatchingConfigurationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EducationIdentityMatchingConfigurationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EducationIdentityMatchingOptionsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/EducationIdentityMatchingOptionsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EducationIdentityMatchingOptionsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EducationIdentityMatchingOptionsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EducationIdentitySynchronizationConfigurationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/EducationIdentitySynchronizationConfigurationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EducationIdentitySynchronizationConfigurationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EducationIdentitySynchronizationConfigurationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EducationItemBodyModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/EducationItemBodyModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EducationItemBodyModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EducationItemBodyModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EducationLinkResourceModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/EducationLinkResourceModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EducationLinkResourceModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EducationLinkResourceModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EducationMakeCodeResourceModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/EducationMakeCodeResourceModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EducationMakeCodeResourceModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EducationMakeCodeResourceModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EducationOnPremisesInfoModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/EducationOnPremisesInfoModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EducationOnPremisesInfoModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EducationOnPremisesInfoModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EducationOneNoteResourceModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/EducationOneNoteResourceModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EducationOneNoteResourceModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EducationOneNoteResourceModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EducationOneRosterAPIDataProviderModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/EducationOneRosterAPIDataProviderModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EducationOneRosterAPIDataProviderModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EducationOneRosterAPIDataProviderModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EducationOrganizationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/EducationOrganizationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EducationOrganizationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EducationOrganizationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EducationOutcomeModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/EducationOutcomeModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EducationOutcomeModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EducationOutcomeModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EducationOutcomeRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/EducationOutcomeRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EducationOutcomeRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EducationOutcomeRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EducationPointsOutcomeModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/EducationPointsOutcomeModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EducationPointsOutcomeModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EducationPointsOutcomeModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EducationPowerPointResourceModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/EducationPowerPointResourceModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EducationPowerPointResourceModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EducationPowerPointResourceModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EducationPowerSchoolDataProviderModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/EducationPowerSchoolDataProviderModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EducationPowerSchoolDataProviderModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EducationPowerSchoolDataProviderModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EducationResourceModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/EducationResourceModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EducationResourceModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EducationResourceModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EducationRootModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/EducationRootModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EducationRootModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EducationRootModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EducationRootRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/EducationRootRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/EducationRootRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EducationRootRequest.go index 60f61d21b7..1ead70bb46 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EducationRootRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/EducationRootRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // EducationRootRequestBuilder is request builder for EducationRoot diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EducationRubricModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/EducationRubricModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EducationRubricModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EducationRubricModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EducationRubricOutcomeModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/EducationRubricOutcomeModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EducationRubricOutcomeModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EducationRubricOutcomeModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EducationRubricRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/EducationRubricRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EducationRubricRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EducationRubricRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EducationSchoolModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/EducationSchoolModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EducationSchoolModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EducationSchoolModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EducationSchoolRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/EducationSchoolRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/EducationSchoolRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EducationSchoolRequest.go index 8798b52dbd..85501b49a2 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EducationSchoolRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/EducationSchoolRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // EducationSchoolRequestBuilder is request builder for EducationSchool diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EducationStudentModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/EducationStudentModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EducationStudentModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EducationStudentModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EducationSubmissionAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/EducationSubmissionAction.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EducationSubmissionAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EducationSubmissionAction.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EducationSubmissionIndividualRecipientModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/EducationSubmissionIndividualRecipientModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EducationSubmissionIndividualRecipientModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EducationSubmissionIndividualRecipientModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EducationSubmissionModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/EducationSubmissionModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EducationSubmissionModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EducationSubmissionModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EducationSubmissionRecipientModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/EducationSubmissionRecipientModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EducationSubmissionRecipientModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EducationSubmissionRecipientModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EducationSubmissionRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/EducationSubmissionRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/EducationSubmissionRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EducationSubmissionRequest.go index fd45aef894..c728169f0d 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EducationSubmissionRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/EducationSubmissionRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // EducationSubmissionRequestBuilder is request builder for EducationSubmission diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EducationSubmissionResourceModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/EducationSubmissionResourceModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EducationSubmissionResourceModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EducationSubmissionResourceModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EducationSubmissionResourceRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/EducationSubmissionResourceRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EducationSubmissionResourceRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EducationSubmissionResourceRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EducationSubmissionStatusEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/EducationSubmissionStatusEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EducationSubmissionStatusEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EducationSubmissionStatusEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EducationSynchronizationConnectionSettingsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/EducationSynchronizationConnectionSettingsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EducationSynchronizationConnectionSettingsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EducationSynchronizationConnectionSettingsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EducationSynchronizationCustomizationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/EducationSynchronizationCustomizationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EducationSynchronizationCustomizationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EducationSynchronizationCustomizationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EducationSynchronizationCustomizationsBaseModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/EducationSynchronizationCustomizationsBaseModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EducationSynchronizationCustomizationsBaseModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EducationSynchronizationCustomizationsBaseModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EducationSynchronizationCustomizationsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/EducationSynchronizationCustomizationsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EducationSynchronizationCustomizationsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EducationSynchronizationCustomizationsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EducationSynchronizationDataProviderModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/EducationSynchronizationDataProviderModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EducationSynchronizationDataProviderModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EducationSynchronizationDataProviderModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EducationSynchronizationErrorModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/EducationSynchronizationErrorModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EducationSynchronizationErrorModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EducationSynchronizationErrorModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EducationSynchronizationErrorRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/EducationSynchronizationErrorRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EducationSynchronizationErrorRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EducationSynchronizationErrorRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EducationSynchronizationLicenseAssignmentModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/EducationSynchronizationLicenseAssignmentModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EducationSynchronizationLicenseAssignmentModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EducationSynchronizationLicenseAssignmentModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EducationSynchronizationOAuth1ConnectionSettingsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/EducationSynchronizationOAuth1ConnectionSettingsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EducationSynchronizationOAuth1ConnectionSettingsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EducationSynchronizationOAuth1ConnectionSettingsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EducationSynchronizationOAuth2ClientCredentialsConnectionSettingsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/EducationSynchronizationOAuth2ClientCredentialsConnectionSettingsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EducationSynchronizationOAuth2ClientCredentialsConnectionSettingsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EducationSynchronizationOAuth2ClientCredentialsConnectionSettingsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EducationSynchronizationProfileAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/EducationSynchronizationProfileAction.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/EducationSynchronizationProfileAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EducationSynchronizationProfileAction.go index 728d73db7e..eda8c0828b 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EducationSynchronizationProfileAction.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/EducationSynchronizationProfileAction.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // EducationSynchronizationProfileResumeRequestParameter undocumented diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EducationSynchronizationProfileModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/EducationSynchronizationProfileModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EducationSynchronizationProfileModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EducationSynchronizationProfileModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EducationSynchronizationProfileRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/EducationSynchronizationProfileRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/EducationSynchronizationProfileRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EducationSynchronizationProfileRequest.go index 5e7d47a48e..5f636187ad 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EducationSynchronizationProfileRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/EducationSynchronizationProfileRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // EducationSynchronizationProfileRequestBuilder is request builder for EducationSynchronizationProfile diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EducationSynchronizationProfileStateEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/EducationSynchronizationProfileStateEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EducationSynchronizationProfileStateEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EducationSynchronizationProfileStateEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EducationSynchronizationProfileStatusModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/EducationSynchronizationProfileStatusModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EducationSynchronizationProfileStatusModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EducationSynchronizationProfileStatusModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EducationSynchronizationProfileStatusRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/EducationSynchronizationProfileStatusRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EducationSynchronizationProfileStatusRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EducationSynchronizationProfileStatusRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EducationSynchronizationStatusEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/EducationSynchronizationStatusEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EducationSynchronizationStatusEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EducationSynchronizationStatusEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EducationTeacherModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/EducationTeacherModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EducationTeacherModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EducationTeacherModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EducationTermModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/EducationTermModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EducationTermModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EducationTermModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EducationUserModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/EducationUserModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EducationUserModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EducationUserModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EducationUserRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/EducationUserRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/EducationUserRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EducationUserRequest.go index 5ca48d2e35..bf517cfc96 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EducationUserRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/EducationUserRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // EducationUserRequestBuilder is request builder for EducationUser diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EducationUserRoleEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/EducationUserRoleEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EducationUserRoleEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EducationUserRoleEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EducationWordResourceModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/EducationWordResourceModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EducationWordResourceModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EducationWordResourceModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EducationalActivityDetailModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/EducationalActivityDetailModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EducationalActivityDetailModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EducationalActivityDetailModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EducationalActivityModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/EducationalActivityModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EducationalActivityModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EducationalActivityModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EducationalActivityRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/EducationalActivityRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EducationalActivityRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EducationalActivityRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EmailActivityStatisticsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/EmailActivityStatisticsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EmailActivityStatisticsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EmailActivityStatisticsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EmailActivitySummaryModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/EmailActivitySummaryModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EmailActivitySummaryModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EmailActivitySummaryModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EmailActivityUserDetailModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/EmailActivityUserDetailModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EmailActivityUserDetailModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EmailActivityUserDetailModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EmailAddressModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/EmailAddressModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EmailAddressModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EmailAddressModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EmailAppUsageAppsUserCountsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/EmailAppUsageAppsUserCountsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EmailAppUsageAppsUserCountsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EmailAppUsageAppsUserCountsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EmailAppUsageUserCountsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/EmailAppUsageUserCountsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EmailAppUsageUserCountsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EmailAppUsageUserCountsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EmailAppUsageUserDetailModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/EmailAppUsageUserDetailModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EmailAppUsageUserDetailModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EmailAppUsageUserDetailModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EmailAppUsageVersionsUserCountsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/EmailAppUsageVersionsUserCountsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EmailAppUsageVersionsUserCountsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EmailAppUsageVersionsUserCountsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EmailCertificateTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/EmailCertificateTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EmailCertificateTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EmailCertificateTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EmailFileAssessmentRequestObjectModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/EmailFileAssessmentRequestObjectModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EmailFileAssessmentRequestObjectModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EmailFileAssessmentRequestObjectModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EmailRoleEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/EmailRoleEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EmailRoleEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EmailRoleEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EmailSyncDurationEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/EmailSyncDurationEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EmailSyncDurationEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EmailSyncDurationEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EmailSyncScheduleEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/EmailSyncScheduleEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EmailSyncScheduleEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EmailSyncScheduleEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EmailTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/EmailTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EmailTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EmailTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EmbeddedSIMActivationCodeModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/EmbeddedSIMActivationCodeModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EmbeddedSIMActivationCodeModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EmbeddedSIMActivationCodeModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EmbeddedSIMActivationCodePoolAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/EmbeddedSIMActivationCodePoolAction.go similarity index 98% rename from vendor/github.com/yaegashi/msgraph.go/beta/EmbeddedSIMActivationCodePoolAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EmbeddedSIMActivationCodePoolAction.go index e28c0d3aaa..47293873ee 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EmbeddedSIMActivationCodePoolAction.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/EmbeddedSIMActivationCodePoolAction.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // EmbeddedSIMActivationCodePoolAssignRequestParameter undocumented diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EmbeddedSIMActivationCodePoolAssignmentModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/EmbeddedSIMActivationCodePoolAssignmentModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EmbeddedSIMActivationCodePoolAssignmentModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EmbeddedSIMActivationCodePoolAssignmentModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EmbeddedSIMActivationCodePoolAssignmentRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/EmbeddedSIMActivationCodePoolAssignmentRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EmbeddedSIMActivationCodePoolAssignmentRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EmbeddedSIMActivationCodePoolAssignmentRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EmbeddedSIMActivationCodePoolModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/EmbeddedSIMActivationCodePoolModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EmbeddedSIMActivationCodePoolModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EmbeddedSIMActivationCodePoolModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EmbeddedSIMActivationCodePoolRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/EmbeddedSIMActivationCodePoolRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/EmbeddedSIMActivationCodePoolRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EmbeddedSIMActivationCodePoolRequest.go index 808dff7d3b..a88c408401 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EmbeddedSIMActivationCodePoolRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/EmbeddedSIMActivationCodePoolRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // EmbeddedSIMActivationCodePoolRequestBuilder is request builder for EmbeddedSIMActivationCodePool diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EmbeddedSIMDeviceStateModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/EmbeddedSIMDeviceStateModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EmbeddedSIMDeviceStateModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EmbeddedSIMDeviceStateModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EmbeddedSIMDeviceStateRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/EmbeddedSIMDeviceStateRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EmbeddedSIMDeviceStateRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EmbeddedSIMDeviceStateRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EmbeddedSIMDeviceStateValueEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/EmbeddedSIMDeviceStateValueEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EmbeddedSIMDeviceStateValueEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EmbeddedSIMDeviceStateValueEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EmployeeModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/EmployeeModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EmployeeModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EmployeeModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EmployeeRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/EmployeeRequest.go similarity index 98% rename from vendor/github.com/yaegashi/msgraph.go/beta/EmployeeRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EmployeeRequest.go index 0aa203fecf..d6b2b2e9ed 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EmployeeRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/EmployeeRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // EmployeeRequestBuilder is request builder for Employee diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnablementEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/EnablementEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EnablementEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EnablementEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EncryptContentModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/EncryptContentModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EncryptContentModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EncryptContentModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EncryptWithEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/EncryptWithEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EncryptWithEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EncryptWithEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EncryptWithTemplateModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/EncryptWithTemplateModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EncryptWithTemplateModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EncryptWithTemplateModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EncryptWithUserDefinedRightsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/EncryptWithUserDefinedRightsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EncryptWithUserDefinedRightsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EncryptWithUserDefinedRightsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EncryptionReadinessStateEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/EncryptionReadinessStateEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EncryptionReadinessStateEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EncryptionReadinessStateEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EncryptionReportPolicyDetailsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/EncryptionReportPolicyDetailsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EncryptionReportPolicyDetailsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EncryptionReportPolicyDetailsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EncryptionStateEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/EncryptionStateEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EncryptionStateEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EncryptionStateEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EndpointModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/EndpointModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EndpointModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EndpointModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EndpointRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/EndpointRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EndpointRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EndpointRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EndpointTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/EndpointTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EndpointTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EndpointTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnrollmentConfigurationAssignmentModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/EnrollmentConfigurationAssignmentModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EnrollmentConfigurationAssignmentModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EnrollmentConfigurationAssignmentModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnrollmentConfigurationAssignmentRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/EnrollmentConfigurationAssignmentRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EnrollmentConfigurationAssignmentRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EnrollmentConfigurationAssignmentRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnrollmentProfileAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/EnrollmentProfileAction.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EnrollmentProfileAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EnrollmentProfileAction.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnrollmentProfileModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/EnrollmentProfileModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EnrollmentProfileModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EnrollmentProfileModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnrollmentProfileRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/EnrollmentProfileRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EnrollmentProfileRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EnrollmentProfileRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnrollmentRestrictionsConfigurationPolicySetItemModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/EnrollmentRestrictionsConfigurationPolicySetItemModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EnrollmentRestrictionsConfigurationPolicySetItemModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EnrollmentRestrictionsConfigurationPolicySetItemModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnrollmentStateEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/EnrollmentStateEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EnrollmentStateEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EnrollmentStateEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnrollmentTroubleshootingEventModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/EnrollmentTroubleshootingEventModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EnrollmentTroubleshootingEventModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EnrollmentTroubleshootingEventModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnterpriseCodeSigningCertificateModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/EnterpriseCodeSigningCertificateModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EnterpriseCodeSigningCertificateModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EnterpriseCodeSigningCertificateModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnterpriseCodeSigningCertificateRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/EnterpriseCodeSigningCertificateRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EnterpriseCodeSigningCertificateRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EnterpriseCodeSigningCertificateRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EntitlementManagementModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/EntitlementManagementModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EntitlementManagementModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EntitlementManagementModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EntitlementManagementRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/EntitlementManagementRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/EntitlementManagementRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EntitlementManagementRequest.go index 6793450d04..d2601fee3d 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EntitlementManagementRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/EntitlementManagementRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // EntitlementManagementRequestBuilder is request builder for EntitlementManagement diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EntityModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/EntityModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EntityModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EntityModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EntityRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/EntityRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EntityRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EntityRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EntitySetNamesModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/EntitySetNamesModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EntitySetNamesModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EntitySetNamesModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EntityTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/EntityTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EntityTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EntityTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EntryExportStatusEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/EntryExportStatusEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EntryExportStatusEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EntryExportStatusEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EntrySyncOperationEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/EntrySyncOperationEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EntrySyncOperationEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EntrySyncOperationEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ErrorCodeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/ErrorCodeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ErrorCodeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ErrorCodeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ErrorDetailModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ErrorDetailModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ErrorDetailModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ErrorDetailModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EvaluateDynamicMembershipResultModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/EvaluateDynamicMembershipResultModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EvaluateDynamicMembershipResultModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EvaluateDynamicMembershipResultModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EvaluateLabelJobResponseModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/EvaluateLabelJobResponseModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EvaluateLabelJobResponseModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EvaluateLabelJobResponseModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EvaluateLabelJobResultGroupModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/EvaluateLabelJobResultGroupModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EvaluateLabelJobResultGroupModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EvaluateLabelJobResultGroupModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EvaluateLabelJobResultModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/EvaluateLabelJobResultModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EvaluateLabelJobResultModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EvaluateLabelJobResultModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EvaluateLabelsAndPoliciesJobResponseModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/EvaluateLabelsAndPoliciesJobResponseModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EvaluateLabelsAndPoliciesJobResponseModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EvaluateLabelsAndPoliciesJobResponseModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EvaluateLabelsAndPoliciesResultModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/EvaluateLabelsAndPoliciesResultModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EvaluateLabelsAndPoliciesResultModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EvaluateLabelsAndPoliciesResultModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EvaluateSensitivityLabelsRequestObjectModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/EvaluateSensitivityLabelsRequestObjectModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EvaluateSensitivityLabelsRequestObjectModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EvaluateSensitivityLabelsRequestObjectModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EventAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/EventAction.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EventAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EventAction.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EventMessageModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/EventMessageModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EventMessageModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EventMessageModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EventMessageRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/EventMessageRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EventMessageRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EventMessageRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EventMessageRequestObjectAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/EventMessageRequestObjectAction.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EventMessageRequestObjectAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EventMessageRequestObjectAction.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EventMessageRequestObjectModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/EventMessageRequestObjectModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EventMessageRequestObjectModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EventMessageRequestObjectModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EventMessageRequestObjectRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/EventMessageRequestObjectRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EventMessageRequestObjectRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EventMessageRequestObjectRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EventMessageResponseModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/EventMessageResponseModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EventMessageResponseModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EventMessageResponseModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EventModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/EventModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EventModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EventModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EventRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/EventRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/EventRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EventRequest.go index 4994e18956..5b6cd2649e 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EventRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/EventRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // EventRequestBuilder is request builder for Event diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EventTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/EventTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/EventTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/EventTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ExactMatchClassificationRequestObjectModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ExactMatchClassificationRequestObjectModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ExactMatchClassificationRequestObjectModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ExactMatchClassificationRequestObjectModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ExactMatchClassificationResultModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ExactMatchClassificationResultModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ExactMatchClassificationResultModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ExactMatchClassificationResultModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ExactMatchDataStoreAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/ExactMatchDataStoreAction.go similarity index 98% rename from vendor/github.com/yaegashi/msgraph.go/beta/ExactMatchDataStoreAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ExactMatchDataStoreAction.go index c253d9f29a..67bccbe880 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ExactMatchDataStoreAction.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/ExactMatchDataStoreAction.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // ExactMatchDataStoreLookupRequestParameter undocumented diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ExactMatchDataStoreModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ExactMatchDataStoreModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ExactMatchDataStoreModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ExactMatchDataStoreModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ExactMatchDataStoreRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/ExactMatchDataStoreRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/ExactMatchDataStoreRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ExactMatchDataStoreRequest.go index efddb871c2..a05f516a51 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ExactMatchDataStoreRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/ExactMatchDataStoreRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // ExactMatchDataStoreRequestBuilder is request builder for ExactMatchDataStore diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ExactMatchJobBaseModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ExactMatchJobBaseModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ExactMatchJobBaseModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ExactMatchJobBaseModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ExactMatchLookupJobModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ExactMatchLookupJobModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ExactMatchLookupJobModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ExactMatchLookupJobModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ExactMatchLookupJobRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/ExactMatchLookupJobRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/ExactMatchLookupJobRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ExactMatchLookupJobRequest.go index fcb7893030..2b8bba60f7 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ExactMatchLookupJobRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/ExactMatchLookupJobRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // ExactMatchLookupJobRequestBuilder is request builder for ExactMatchLookupJob diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ExactMatchSessionAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/ExactMatchSessionAction.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ExactMatchSessionAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ExactMatchSessionAction.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ExactMatchSessionModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ExactMatchSessionModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ExactMatchSessionModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ExactMatchSessionModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ExactMatchSessionRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/ExactMatchSessionRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ExactMatchSessionRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ExactMatchSessionRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ExactMatchUploadAgentModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ExactMatchUploadAgentModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ExactMatchUploadAgentModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ExactMatchUploadAgentModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ExactMatchUploadAgentRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/ExactMatchUploadAgentRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ExactMatchUploadAgentRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ExactMatchUploadAgentRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ExchangeIDFormatEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/ExchangeIDFormatEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ExchangeIDFormatEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ExchangeIDFormatEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ExcludedAppsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ExcludedAppsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ExcludedAppsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ExcludedAppsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ExclusionGroupAssignmentTargetModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ExclusionGroupAssignmentTargetModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ExclusionGroupAssignmentTargetModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ExclusionGroupAssignmentTargetModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ExpressionEvaluationDetailsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ExpressionEvaluationDetailsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ExpressionEvaluationDetailsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ExpressionEvaluationDetailsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ExpressionInputObjectModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ExpressionInputObjectModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ExpressionInputObjectModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ExpressionInputObjectModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ExtendedKeyUsageModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ExtendedKeyUsageModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ExtendedKeyUsageModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ExtendedKeyUsageModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ExtendedPlacePropertiesModelModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ExtendedPlacePropertiesModelModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ExtendedPlacePropertiesModelModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ExtendedPlacePropertiesModelModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ExtensionModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ExtensionModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ExtensionModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ExtensionModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ExtensionPropertyModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ExtensionPropertyModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ExtensionPropertyModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ExtensionPropertyModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ExtensionPropertyRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/ExtensionPropertyRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ExtensionPropertyRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ExtensionPropertyRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ExtensionRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/ExtensionRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ExtensionRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ExtensionRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ExtensionSchemaPropertyModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ExtensionSchemaPropertyModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ExtensionSchemaPropertyModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ExtensionSchemaPropertyModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ExternalAudienceScopeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/ExternalAudienceScopeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ExternalAudienceScopeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ExternalAudienceScopeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ExternalConnectionModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ExternalConnectionModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ExternalConnectionModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ExternalConnectionModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ExternalConnectionRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/ExternalConnectionRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/ExternalConnectionRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ExternalConnectionRequest.go index fb5fc1e420..9d76e081d4 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ExternalConnectionRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/ExternalConnectionRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // ExternalConnectionRequestBuilder is request builder for ExternalConnection diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ExternalFileModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ExternalFileModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ExternalFileModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ExternalFileModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ExternalItemModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ExternalItemModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ExternalItemModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ExternalItemModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ExternalItemRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/ExternalItemRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ExternalItemRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ExternalItemRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ExternalLinkModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ExternalLinkModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ExternalLinkModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ExternalLinkModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ExternalModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ExternalModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ExternalModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ExternalModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ExternalRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/ExternalRequest.go similarity index 98% rename from vendor/github.com/yaegashi/msgraph.go/beta/ExternalRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ExternalRequest.go index 2fb7643008..5bb6cd4e2b 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ExternalRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/ExternalRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // ExternalRequestBuilder is request builder for External diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/FeatureRolloutPolicyModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/FeatureRolloutPolicyModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/FeatureRolloutPolicyModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/FeatureRolloutPolicyModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/FeatureRolloutPolicyRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/FeatureRolloutPolicyRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/FeatureRolloutPolicyRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/FeatureRolloutPolicyRequest.go index f2005690ab..eb21ba70de 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/FeatureRolloutPolicyRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/FeatureRolloutPolicyRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // FeatureRolloutPolicyRequestBuilder is request builder for FeatureRolloutPolicy diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/FeatureTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/FeatureTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/FeatureTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/FeatureTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/FeatureUsageDetailModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/FeatureUsageDetailModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/FeatureUsageDetailModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/FeatureUsageDetailModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/FieldValueSetModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/FieldValueSetModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/FieldValueSetModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/FieldValueSetModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/FieldValueSetRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/FieldValueSetRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/FieldValueSetRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/FieldValueSetRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/FileAssessmentRequestObjectModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/FileAssessmentRequestObjectModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/FileAssessmentRequestObjectModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/FileAssessmentRequestObjectModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/FileAttachmentModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/FileAttachmentModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/FileAttachmentModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/FileAttachmentModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/FileClassificationRequestObjectModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/FileClassificationRequestObjectModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/FileClassificationRequestObjectModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/FileClassificationRequestObjectModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/FileClassificationRequestObjectRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/FileClassificationRequestObjectRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/FileClassificationRequestObjectRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/FileClassificationRequestObjectRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/FileEncryptionInfoModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/FileEncryptionInfoModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/FileEncryptionInfoModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/FileEncryptionInfoModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/FileHashModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/FileHashModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/FileHashModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/FileHashModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/FileHashTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/FileHashTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/FileHashTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/FileHashTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/FileModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/FileModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/FileModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/FileModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/FileSecurityProfileModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/FileSecurityProfileModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/FileSecurityProfileModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/FileSecurityProfileModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/FileSecurityProfileRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/FileSecurityProfileRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/FileSecurityProfileRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/FileSecurityProfileRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/FileSecurityStateModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/FileSecurityStateModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/FileSecurityStateModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/FileSecurityStateModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/FileSystemInfoModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/FileSystemInfoModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/FileSystemInfoModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/FileSystemInfoModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/FileVaultStateEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/FileVaultStateEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/FileVaultStateEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/FileVaultStateEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/FilterClauseModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/FilterClauseModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/FilterClauseModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/FilterClauseModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/FilterGroupModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/FilterGroupModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/FilterGroupModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/FilterGroupModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/FilterModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/FilterModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/FilterModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/FilterModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/FilterOperandModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/FilterOperandModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/FilterOperandModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/FilterOperandModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/FilterOperatorSchemaModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/FilterOperatorSchemaModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/FilterOperatorSchemaModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/FilterOperatorSchemaModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/FilterOperatorSchemaRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/FilterOperatorSchemaRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/FilterOperatorSchemaRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/FilterOperatorSchemaRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/FinancialsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/FinancialsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/FinancialsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/FinancialsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/FinancialsRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/FinancialsRequest.go similarity index 98% rename from vendor/github.com/yaegashi/msgraph.go/beta/FinancialsRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/FinancialsRequest.go index 7ed2a8d85e..67b0cb83f8 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/FinancialsRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/FinancialsRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // FinancialsRequestBuilder is request builder for Financials diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/FirewallCertificateRevocationListCheckMethodTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/FirewallCertificateRevocationListCheckMethodTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/FirewallCertificateRevocationListCheckMethodTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/FirewallCertificateRevocationListCheckMethodTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/FirewallPacketQueueingMethodTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/FirewallPacketQueueingMethodTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/FirewallPacketQueueingMethodTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/FirewallPacketQueueingMethodTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/FirewallPreSharedKeyEncodingMethodTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/FirewallPreSharedKeyEncodingMethodTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/FirewallPreSharedKeyEncodingMethodTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/FirewallPreSharedKeyEncodingMethodTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/FlexSchemaContainerModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/FlexSchemaContainerModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/FlexSchemaContainerModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/FlexSchemaContainerModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/FocusActivityStatisticsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/FocusActivityStatisticsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/FocusActivityStatisticsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/FocusActivityStatisticsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/FolderModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/FolderModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/FolderModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/FolderModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/FolderProtectionTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/FolderProtectionTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/FolderProtectionTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/FolderProtectionTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/FolderViewModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/FolderViewModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/FolderViewModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/FolderViewModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/FollowupFlagModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/FollowupFlagModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/FollowupFlagModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/FollowupFlagModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/FollowupFlagStatusEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/FollowupFlagStatusEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/FollowupFlagStatusEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/FollowupFlagStatusEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/FreeBusyErrorModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/FreeBusyErrorModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/FreeBusyErrorModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/FreeBusyErrorModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/FreeBusyStatusEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/FreeBusyStatusEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/FreeBusyStatusEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/FreeBusyStatusEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/GeneralLedgerEntryModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/GeneralLedgerEntryModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/GeneralLedgerEntryModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/GeneralLedgerEntryModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/GeneralLedgerEntryRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/GeneralLedgerEntryRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/GeneralLedgerEntryRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/GeneralLedgerEntryRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/GenericErrorModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/GenericErrorModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/GenericErrorModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/GenericErrorModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/GeoCoordinatesModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/GeoCoordinatesModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/GeoCoordinatesModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/GeoCoordinatesModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/GeolocationColumnModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/GeolocationColumnModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/GeolocationColumnModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/GeolocationColumnModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/GiphyRatingTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/GiphyRatingTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/GiphyRatingTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/GiphyRatingTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/GovernanceCriteriaModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/GovernanceCriteriaModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/GovernanceCriteriaModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/GovernanceCriteriaModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/GovernanceNotificationPolicyModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/GovernanceNotificationPolicyModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/GovernanceNotificationPolicyModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/GovernanceNotificationPolicyModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/GovernanceNotificationTemplateModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/GovernanceNotificationTemplateModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/GovernanceNotificationTemplateModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/GovernanceNotificationTemplateModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/GovernancePermissionModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/GovernancePermissionModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/GovernancePermissionModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/GovernancePermissionModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/GovernancePolicyModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/GovernancePolicyModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/GovernancePolicyModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/GovernancePolicyModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/GovernancePolicyTemplateModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/GovernancePolicyTemplateModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/GovernancePolicyTemplateModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/GovernancePolicyTemplateModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/GovernancePolicyTemplateRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/GovernancePolicyTemplateRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/GovernancePolicyTemplateRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/GovernancePolicyTemplateRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/GovernanceResourceAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/GovernanceResourceAction.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/GovernanceResourceAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/GovernanceResourceAction.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/GovernanceResourceModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/GovernanceResourceModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/GovernanceResourceModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/GovernanceResourceModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/GovernanceResourceRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/GovernanceResourceRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/GovernanceResourceRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/GovernanceResourceRequest.go index 0a909170fd..d87f200b1b 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/GovernanceResourceRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/GovernanceResourceRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // GovernanceResourceRequestBuilder is request builder for GovernanceResource diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/GovernanceRoleAssignmentModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/GovernanceRoleAssignmentModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/GovernanceRoleAssignmentModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/GovernanceRoleAssignmentModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/GovernanceRoleAssignmentRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/GovernanceRoleAssignmentRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/GovernanceRoleAssignmentRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/GovernanceRoleAssignmentRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/GovernanceRoleAssignmentRequestObjectAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/GovernanceRoleAssignmentRequestObjectAction.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/GovernanceRoleAssignmentRequestObjectAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/GovernanceRoleAssignmentRequestObjectAction.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/GovernanceRoleAssignmentRequestObjectModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/GovernanceRoleAssignmentRequestObjectModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/GovernanceRoleAssignmentRequestObjectModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/GovernanceRoleAssignmentRequestObjectModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/GovernanceRoleAssignmentRequestObjectRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/GovernanceRoleAssignmentRequestObjectRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/GovernanceRoleAssignmentRequestObjectRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/GovernanceRoleAssignmentRequestObjectRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/GovernanceRoleAssignmentRequestStatusModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/GovernanceRoleAssignmentRequestStatusModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/GovernanceRoleAssignmentRequestStatusModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/GovernanceRoleAssignmentRequestStatusModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/GovernanceRoleDefinitionModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/GovernanceRoleDefinitionModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/GovernanceRoleDefinitionModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/GovernanceRoleDefinitionModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/GovernanceRoleDefinitionRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/GovernanceRoleDefinitionRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/GovernanceRoleDefinitionRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/GovernanceRoleDefinitionRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/GovernanceRoleSettingModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/GovernanceRoleSettingModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/GovernanceRoleSettingModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/GovernanceRoleSettingModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/GovernanceRoleSettingRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/GovernanceRoleSettingRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/GovernanceRoleSettingRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/GovernanceRoleSettingRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/GovernanceRuleSettingModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/GovernanceRuleSettingModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/GovernanceRuleSettingModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/GovernanceRuleSettingModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/GovernanceScheduleModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/GovernanceScheduleModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/GovernanceScheduleModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/GovernanceScheduleModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/GovernanceSubjectModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/GovernanceSubjectModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/GovernanceSubjectModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/GovernanceSubjectModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/GovernanceSubjectRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/GovernanceSubjectRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/GovernanceSubjectRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/GovernanceSubjectRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/GraphServiceRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/GraphServiceRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/GraphServiceRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/GraphServiceRequest.go index f8aeb924f6..2211ce6f22 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/GraphServiceRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/GraphServiceRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // AccessPackageAssignmentPolicies returns request builder for AccessPackageAssignmentPolicy collection diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/GroupAccessTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/GroupAccessTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/GroupAccessTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/GroupAccessTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/GroupAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/GroupAction.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/GroupAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/GroupAction.go index 8618898049..be99171820 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/GroupAction.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/GroupAction.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // GroupCollectionEvaluateDynamicMembershipRequestParameter undocumented diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/GroupAssignmentTargetModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/GroupAssignmentTargetModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/GroupAssignmentTargetModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/GroupAssignmentTargetModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/GroupLifecyclePolicyAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/GroupLifecyclePolicyAction.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/GroupLifecyclePolicyAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/GroupLifecyclePolicyAction.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/GroupLifecyclePolicyModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/GroupLifecyclePolicyModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/GroupLifecyclePolicyModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/GroupLifecyclePolicyModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/GroupLifecyclePolicyRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/GroupLifecyclePolicyRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/GroupLifecyclePolicyRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/GroupLifecyclePolicyRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/GroupMembershipGovernanceCriteriaModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/GroupMembershipGovernanceCriteriaModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/GroupMembershipGovernanceCriteriaModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/GroupMembershipGovernanceCriteriaModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/GroupModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/GroupModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/GroupModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/GroupModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/GroupPolicyConfigurationAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/GroupPolicyConfigurationAction.go similarity index 98% rename from vendor/github.com/yaegashi/msgraph.go/beta/GroupPolicyConfigurationAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/GroupPolicyConfigurationAction.go index 62fb10688e..c1f9f38bf6 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/GroupPolicyConfigurationAction.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/GroupPolicyConfigurationAction.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // GroupPolicyConfigurationAssignRequestParameter undocumented diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/GroupPolicyConfigurationAssignmentModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/GroupPolicyConfigurationAssignmentModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/GroupPolicyConfigurationAssignmentModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/GroupPolicyConfigurationAssignmentModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/GroupPolicyConfigurationAssignmentRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/GroupPolicyConfigurationAssignmentRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/GroupPolicyConfigurationAssignmentRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/GroupPolicyConfigurationAssignmentRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/GroupPolicyConfigurationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/GroupPolicyConfigurationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/GroupPolicyConfigurationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/GroupPolicyConfigurationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/GroupPolicyConfigurationRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/GroupPolicyConfigurationRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/GroupPolicyConfigurationRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/GroupPolicyConfigurationRequest.go index 1935ed3a90..11e916b9c6 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/GroupPolicyConfigurationRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/GroupPolicyConfigurationRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // GroupPolicyConfigurationRequestBuilder is request builder for GroupPolicyConfiguration diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/GroupPolicyConfigurationTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/GroupPolicyConfigurationTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/GroupPolicyConfigurationTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/GroupPolicyConfigurationTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/GroupPolicyDefinitionClassTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/GroupPolicyDefinitionClassTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/GroupPolicyDefinitionClassTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/GroupPolicyDefinitionClassTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/GroupPolicyDefinitionFileModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/GroupPolicyDefinitionFileModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/GroupPolicyDefinitionFileModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/GroupPolicyDefinitionFileModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/GroupPolicyDefinitionFileRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/GroupPolicyDefinitionFileRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/GroupPolicyDefinitionFileRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/GroupPolicyDefinitionFileRequest.go index c1aa1d016d..3085c95585 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/GroupPolicyDefinitionFileRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/GroupPolicyDefinitionFileRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // GroupPolicyDefinitionFileRequestBuilder is request builder for GroupPolicyDefinitionFile diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/GroupPolicyDefinitionModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/GroupPolicyDefinitionModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/GroupPolicyDefinitionModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/GroupPolicyDefinitionModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/GroupPolicyDefinitionRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/GroupPolicyDefinitionRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/GroupPolicyDefinitionRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/GroupPolicyDefinitionRequest.go index 603a9a190c..69d1d59d97 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/GroupPolicyDefinitionRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/GroupPolicyDefinitionRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // GroupPolicyDefinitionRequestBuilder is request builder for GroupPolicyDefinition diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/GroupPolicyDefinitionValueModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/GroupPolicyDefinitionValueModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/GroupPolicyDefinitionValueModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/GroupPolicyDefinitionValueModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/GroupPolicyDefinitionValueRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/GroupPolicyDefinitionValueRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/GroupPolicyDefinitionValueRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/GroupPolicyDefinitionValueRequest.go index 9644e06c45..78539f53e3 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/GroupPolicyDefinitionValueRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/GroupPolicyDefinitionValueRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // GroupPolicyDefinitionValueRequestBuilder is request builder for GroupPolicyDefinitionValue diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/GroupPolicyMigrationReadinessEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/GroupPolicyMigrationReadinessEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/GroupPolicyMigrationReadinessEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/GroupPolicyMigrationReadinessEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/GroupPolicyMigrationReportAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/GroupPolicyMigrationReportAction.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/GroupPolicyMigrationReportAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/GroupPolicyMigrationReportAction.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/GroupPolicyMigrationReportModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/GroupPolicyMigrationReportModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/GroupPolicyMigrationReportModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/GroupPolicyMigrationReportModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/GroupPolicyMigrationReportRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/GroupPolicyMigrationReportRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/GroupPolicyMigrationReportRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/GroupPolicyMigrationReportRequest.go index a5b3505826..707e96b437 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/GroupPolicyMigrationReportRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/GroupPolicyMigrationReportRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // GroupPolicyMigrationReportRequestBuilder is request builder for GroupPolicyMigrationReport diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/GroupPolicyObjectFileModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/GroupPolicyObjectFileModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/GroupPolicyObjectFileModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/GroupPolicyObjectFileModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/GroupPolicyPresentationCheckBoxModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/GroupPolicyPresentationCheckBoxModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/GroupPolicyPresentationCheckBoxModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/GroupPolicyPresentationCheckBoxModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/GroupPolicyPresentationComboBoxModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/GroupPolicyPresentationComboBoxModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/GroupPolicyPresentationComboBoxModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/GroupPolicyPresentationComboBoxModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/GroupPolicyPresentationDecimalTextBoxModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/GroupPolicyPresentationDecimalTextBoxModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/GroupPolicyPresentationDecimalTextBoxModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/GroupPolicyPresentationDecimalTextBoxModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/GroupPolicyPresentationDropdownListItemModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/GroupPolicyPresentationDropdownListItemModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/GroupPolicyPresentationDropdownListItemModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/GroupPolicyPresentationDropdownListItemModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/GroupPolicyPresentationDropdownListModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/GroupPolicyPresentationDropdownListModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/GroupPolicyPresentationDropdownListModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/GroupPolicyPresentationDropdownListModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/GroupPolicyPresentationListBoxModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/GroupPolicyPresentationListBoxModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/GroupPolicyPresentationListBoxModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/GroupPolicyPresentationListBoxModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/GroupPolicyPresentationLongDecimalTextBoxModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/GroupPolicyPresentationLongDecimalTextBoxModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/GroupPolicyPresentationLongDecimalTextBoxModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/GroupPolicyPresentationLongDecimalTextBoxModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/GroupPolicyPresentationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/GroupPolicyPresentationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/GroupPolicyPresentationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/GroupPolicyPresentationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/GroupPolicyPresentationMultiTextBoxModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/GroupPolicyPresentationMultiTextBoxModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/GroupPolicyPresentationMultiTextBoxModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/GroupPolicyPresentationMultiTextBoxModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/GroupPolicyPresentationRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/GroupPolicyPresentationRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/GroupPolicyPresentationRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/GroupPolicyPresentationRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/GroupPolicyPresentationTextBoxModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/GroupPolicyPresentationTextBoxModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/GroupPolicyPresentationTextBoxModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/GroupPolicyPresentationTextBoxModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/GroupPolicyPresentationTextModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/GroupPolicyPresentationTextModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/GroupPolicyPresentationTextModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/GroupPolicyPresentationTextModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/GroupPolicyPresentationValueBooleanModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/GroupPolicyPresentationValueBooleanModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/GroupPolicyPresentationValueBooleanModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/GroupPolicyPresentationValueBooleanModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/GroupPolicyPresentationValueDecimalModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/GroupPolicyPresentationValueDecimalModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/GroupPolicyPresentationValueDecimalModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/GroupPolicyPresentationValueDecimalModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/GroupPolicyPresentationValueListModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/GroupPolicyPresentationValueListModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/GroupPolicyPresentationValueListModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/GroupPolicyPresentationValueListModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/GroupPolicyPresentationValueLongDecimalModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/GroupPolicyPresentationValueLongDecimalModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/GroupPolicyPresentationValueLongDecimalModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/GroupPolicyPresentationValueLongDecimalModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/GroupPolicyPresentationValueModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/GroupPolicyPresentationValueModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/GroupPolicyPresentationValueModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/GroupPolicyPresentationValueModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/GroupPolicyPresentationValueMultiTextModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/GroupPolicyPresentationValueMultiTextModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/GroupPolicyPresentationValueMultiTextModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/GroupPolicyPresentationValueMultiTextModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/GroupPolicyPresentationValueRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/GroupPolicyPresentationValueRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/GroupPolicyPresentationValueRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/GroupPolicyPresentationValueRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/GroupPolicyPresentationValueTextModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/GroupPolicyPresentationValueTextModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/GroupPolicyPresentationValueTextModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/GroupPolicyPresentationValueTextModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/GroupPolicySettingMappingModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/GroupPolicySettingMappingModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/GroupPolicySettingMappingModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/GroupPolicySettingMappingModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/GroupPolicySettingMappingRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/GroupPolicySettingMappingRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/GroupPolicySettingMappingRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/GroupPolicySettingMappingRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/GroupPolicySettingScopeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/GroupPolicySettingScopeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/GroupPolicySettingScopeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/GroupPolicySettingScopeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/GroupPolicySettingTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/GroupPolicySettingTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/GroupPolicySettingTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/GroupPolicySettingTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/GroupPolicyTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/GroupPolicyTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/GroupPolicyTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/GroupPolicyTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/GroupPrivacyEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/GroupPrivacyEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/GroupPrivacyEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/GroupPrivacyEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/GroupRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/GroupRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/GroupRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/GroupRequest.go index 10a6a0a8db..f9aca3c1c3 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/GroupRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/GroupRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // GroupRequestBuilder is request builder for Group diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/GroupTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/GroupTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/GroupTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/GroupTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/HardwareInformationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/HardwareInformationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/HardwareInformationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/HardwareInformationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/HasPayloadLinkResultItemModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/HasPayloadLinkResultItemModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/HasPayloadLinkResultItemModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/HasPayloadLinkResultItemModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/HashAlgorithmsEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/HashAlgorithmsEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/HashAlgorithmsEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/HashAlgorithmsEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/HashesModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/HashesModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/HashesModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/HashesModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/HealthStateEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/HealthStateEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/HealthStateEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/HealthStateEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/HostSecurityProfileModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/HostSecurityProfileModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/HostSecurityProfileModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/HostSecurityProfileModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/HostSecurityProfileRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/HostSecurityProfileRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/HostSecurityProfileRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/HostSecurityProfileRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/HostSecurityStateModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/HostSecurityStateModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/HostSecurityStateModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/HostSecurityStateModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/HourlyScheduleModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/HourlyScheduleModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/HourlyScheduleModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/HourlyScheduleModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/HybridAgentUpdaterConfigurationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/HybridAgentUpdaterConfigurationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/HybridAgentUpdaterConfigurationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/HybridAgentUpdaterConfigurationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/IOSBookmarkModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/IOSBookmarkModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/IOSBookmarkModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/IOSBookmarkModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/IOSCertificateProfileBaseModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/IOSCertificateProfileBaseModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/IOSCertificateProfileBaseModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/IOSCertificateProfileBaseModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/IOSCertificateProfileBaseRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/IOSCertificateProfileBaseRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/IOSCertificateProfileBaseRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/IOSCertificateProfileBaseRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/IOSCertificateProfileModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/IOSCertificateProfileModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/IOSCertificateProfileModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/IOSCertificateProfileModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/IOSCertificateProfileRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/IOSCertificateProfileRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/IOSCertificateProfileRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/IOSCertificateProfileRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/IOSCompliancePolicyModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/IOSCompliancePolicyModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/IOSCompliancePolicyModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/IOSCompliancePolicyModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/IOSCustomConfigurationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/IOSCustomConfigurationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/IOSCustomConfigurationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/IOSCustomConfigurationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/IOSDerivedCredentialAuthenticationConfigurationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/IOSDerivedCredentialAuthenticationConfigurationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/IOSDerivedCredentialAuthenticationConfigurationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/IOSDerivedCredentialAuthenticationConfigurationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/IOSDerivedCredentialAuthenticationConfigurationRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/IOSDerivedCredentialAuthenticationConfigurationRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/IOSDerivedCredentialAuthenticationConfigurationRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/IOSDerivedCredentialAuthenticationConfigurationRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/IOSDeviceFeaturesConfigurationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/IOSDeviceFeaturesConfigurationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/IOSDeviceFeaturesConfigurationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/IOSDeviceFeaturesConfigurationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/IOSDeviceFeaturesConfigurationRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/IOSDeviceFeaturesConfigurationRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/IOSDeviceFeaturesConfigurationRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/IOSDeviceFeaturesConfigurationRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/IOSDeviceTypeModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/IOSDeviceTypeModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/IOSDeviceTypeModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/IOSDeviceTypeModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/IOSEasEmailProfileConfigurationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/IOSEasEmailProfileConfigurationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/IOSEasEmailProfileConfigurationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/IOSEasEmailProfileConfigurationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/IOSEasEmailProfileConfigurationRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/IOSEasEmailProfileConfigurationRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/IOSEasEmailProfileConfigurationRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/IOSEasEmailProfileConfigurationRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/IOSEduCertificateSettingsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/IOSEduCertificateSettingsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/IOSEduCertificateSettingsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/IOSEduCertificateSettingsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/IOSEduDeviceConfigurationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/IOSEduDeviceConfigurationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/IOSEduDeviceConfigurationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/IOSEduDeviceConfigurationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/IOSEducationDeviceConfigurationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/IOSEducationDeviceConfigurationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/IOSEducationDeviceConfigurationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/IOSEducationDeviceConfigurationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/IOSEnterpriseWiFiConfigurationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/IOSEnterpriseWiFiConfigurationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/IOSEnterpriseWiFiConfigurationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/IOSEnterpriseWiFiConfigurationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/IOSEnterpriseWiFiConfigurationRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/IOSEnterpriseWiFiConfigurationRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/IOSEnterpriseWiFiConfigurationRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/IOSEnterpriseWiFiConfigurationRequest.go index f06ade0b41..75072e7e8e 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/IOSEnterpriseWiFiConfigurationRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/IOSEnterpriseWiFiConfigurationRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // IOSEnterpriseWiFiConfigurationRequestBuilder is request builder for IOSEnterpriseWiFiConfiguration diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/IOSGeneralDeviceConfigurationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/IOSGeneralDeviceConfigurationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/IOSGeneralDeviceConfigurationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/IOSGeneralDeviceConfigurationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/IOSHomeScreenAppModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/IOSHomeScreenAppModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/IOSHomeScreenAppModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/IOSHomeScreenAppModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/IOSHomeScreenFolderModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/IOSHomeScreenFolderModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/IOSHomeScreenFolderModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/IOSHomeScreenFolderModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/IOSHomeScreenFolderPageModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/IOSHomeScreenFolderPageModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/IOSHomeScreenFolderPageModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/IOSHomeScreenFolderPageModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/IOSHomeScreenItemModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/IOSHomeScreenItemModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/IOSHomeScreenItemModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/IOSHomeScreenItemModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/IOSHomeScreenPageModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/IOSHomeScreenPageModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/IOSHomeScreenPageModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/IOSHomeScreenPageModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/IOSImportedPFXCertificateProfileModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/IOSImportedPFXCertificateProfileModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/IOSImportedPFXCertificateProfileModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/IOSImportedPFXCertificateProfileModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/IOSImportedPFXCertificateProfileRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/IOSImportedPFXCertificateProfileRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/IOSImportedPFXCertificateProfileRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/IOSImportedPFXCertificateProfileRequest.go index d54e7e226d..7fa295e07f 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/IOSImportedPFXCertificateProfileRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/IOSImportedPFXCertificateProfileRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // IOSImportedPFXCertificateProfileRequestBuilder is request builder for IOSImportedPFXCertificateProfile diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/IOSKerberosSingleSignOnExtensionModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/IOSKerberosSingleSignOnExtensionModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/IOSKerberosSingleSignOnExtensionModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/IOSKerberosSingleSignOnExtensionModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/IOSLobAppAssignmentSettingsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/IOSLobAppAssignmentSettingsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/IOSLobAppAssignmentSettingsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/IOSLobAppAssignmentSettingsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/IOSLobAppModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/IOSLobAppModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/IOSLobAppModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/IOSLobAppModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/IOSLobAppProvisioningConfigurationAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/IOSLobAppProvisioningConfigurationAction.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/IOSLobAppProvisioningConfigurationAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/IOSLobAppProvisioningConfigurationAction.go index 5873af20e9..2640b02c7e 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/IOSLobAppProvisioningConfigurationAction.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/IOSLobAppProvisioningConfigurationAction.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // IOSLobAppProvisioningConfigurationCollectionHasPayloadLinksRequestParameter undocumented diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/IOSLobAppProvisioningConfigurationAssignmentModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/IOSLobAppProvisioningConfigurationAssignmentModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/IOSLobAppProvisioningConfigurationAssignmentModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/IOSLobAppProvisioningConfigurationAssignmentModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/IOSLobAppProvisioningConfigurationAssignmentRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/IOSLobAppProvisioningConfigurationAssignmentRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/IOSLobAppProvisioningConfigurationAssignmentRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/IOSLobAppProvisioningConfigurationAssignmentRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/IOSLobAppProvisioningConfigurationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/IOSLobAppProvisioningConfigurationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/IOSLobAppProvisioningConfigurationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/IOSLobAppProvisioningConfigurationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/IOSLobAppProvisioningConfigurationPolicySetItemModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/IOSLobAppProvisioningConfigurationPolicySetItemModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/IOSLobAppProvisioningConfigurationPolicySetItemModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/IOSLobAppProvisioningConfigurationPolicySetItemModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/IOSLobAppProvisioningConfigurationRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/IOSLobAppProvisioningConfigurationRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/IOSLobAppProvisioningConfigurationRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/IOSLobAppProvisioningConfigurationRequest.go index b18bb21aac..68d80f2273 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/IOSLobAppProvisioningConfigurationRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/IOSLobAppProvisioningConfigurationRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // IOSLobAppProvisioningConfigurationRequestBuilder is request builder for IOSLobAppProvisioningConfiguration diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/IOSManagedAppProtectionAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/IOSManagedAppProtectionAction.go similarity index 98% rename from vendor/github.com/yaegashi/msgraph.go/beta/IOSManagedAppProtectionAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/IOSManagedAppProtectionAction.go index 44cd933f78..1676b17518 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/IOSManagedAppProtectionAction.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/IOSManagedAppProtectionAction.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // IOSManagedAppProtectionCollectionHasPayloadLinksRequestParameter undocumented diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/IOSManagedAppProtectionModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/IOSManagedAppProtectionModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/IOSManagedAppProtectionModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/IOSManagedAppProtectionModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/IOSManagedAppProtectionRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/IOSManagedAppProtectionRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/IOSManagedAppProtectionRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/IOSManagedAppProtectionRequest.go index 38d1f85527..8397985590 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/IOSManagedAppProtectionRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/IOSManagedAppProtectionRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // IOSManagedAppProtectionRequestBuilder is request builder for IOSManagedAppProtection diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/IOSManagedAppRegistrationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/IOSManagedAppRegistrationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/IOSManagedAppRegistrationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/IOSManagedAppRegistrationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/IOSMinimumOperatingSystemModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/IOSMinimumOperatingSystemModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/IOSMinimumOperatingSystemModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/IOSMinimumOperatingSystemModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/IOSMobileAppConfigurationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/IOSMobileAppConfigurationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/IOSMobileAppConfigurationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/IOSMobileAppConfigurationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/IOSMobileAppIdentifierModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/IOSMobileAppIdentifierModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/IOSMobileAppIdentifierModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/IOSMobileAppIdentifierModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/IOSNetworkUsageRuleModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/IOSNetworkUsageRuleModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/IOSNetworkUsageRuleModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/IOSNetworkUsageRuleModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/IOSNotificationAlertTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/IOSNotificationAlertTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/IOSNotificationAlertTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/IOSNotificationAlertTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/IOSNotificationSettingsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/IOSNotificationSettingsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/IOSNotificationSettingsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/IOSNotificationSettingsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/IOSPkcsCertificateProfileModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/IOSPkcsCertificateProfileModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/IOSPkcsCertificateProfileModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/IOSPkcsCertificateProfileModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/IOSPkcsCertificateProfileRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/IOSPkcsCertificateProfileRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/IOSPkcsCertificateProfileRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/IOSPkcsCertificateProfileRequest.go index b8e952e71f..179ea2bb8f 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/IOSPkcsCertificateProfileRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/IOSPkcsCertificateProfileRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // IOSPkcsCertificateProfileRequestBuilder is request builder for IOSPkcsCertificateProfile diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/IOSScepCertificateProfileModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/IOSScepCertificateProfileModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/IOSScepCertificateProfileModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/IOSScepCertificateProfileModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/IOSScepCertificateProfileRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/IOSScepCertificateProfileRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/IOSScepCertificateProfileRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/IOSScepCertificateProfileRequest.go index f82c32ba16..d03f82d4ca 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/IOSScepCertificateProfileRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/IOSScepCertificateProfileRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // IOSScepCertificateProfileRequestBuilder is request builder for IOSScepCertificateProfile diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/IOSSingleSignOnSettingsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/IOSSingleSignOnSettingsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/IOSSingleSignOnSettingsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/IOSSingleSignOnSettingsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/IOSStoreAppAssignmentSettingsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/IOSStoreAppAssignmentSettingsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/IOSStoreAppAssignmentSettingsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/IOSStoreAppAssignmentSettingsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/IOSStoreAppModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/IOSStoreAppModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/IOSStoreAppModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/IOSStoreAppModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/IOSTrustedRootCertificateModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/IOSTrustedRootCertificateModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/IOSTrustedRootCertificateModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/IOSTrustedRootCertificateModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/IOSTrustedRootCertificateRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/IOSTrustedRootCertificateRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/IOSTrustedRootCertificateRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/IOSTrustedRootCertificateRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/IOSUpdateConfigurationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/IOSUpdateConfigurationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/IOSUpdateConfigurationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/IOSUpdateConfigurationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/IOSUpdateDeviceStatusModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/IOSUpdateDeviceStatusModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/IOSUpdateDeviceStatusModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/IOSUpdateDeviceStatusModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/IOSUpdateDeviceStatusRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/IOSUpdateDeviceStatusRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/IOSUpdateDeviceStatusRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/IOSUpdateDeviceStatusRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/IOSUpdatesInstallStatusEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/IOSUpdatesInstallStatusEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/IOSUpdatesInstallStatusEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/IOSUpdatesInstallStatusEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/IOSVpnConfigurationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/IOSVpnConfigurationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/IOSVpnConfigurationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/IOSVpnConfigurationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/IOSVpnConfigurationRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/IOSVpnConfigurationRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/IOSVpnConfigurationRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/IOSVpnConfigurationRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/IOSVpnSecurityAssociationParametersModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/IOSVpnSecurityAssociationParametersModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/IOSVpnSecurityAssociationParametersModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/IOSVpnSecurityAssociationParametersModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/IOSVppAppAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/IOSVppAppAction.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/IOSVppAppAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/IOSVppAppAction.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/IOSVppAppAssignedDeviceLicenseModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/IOSVppAppAssignedDeviceLicenseModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/IOSVppAppAssignedDeviceLicenseModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/IOSVppAppAssignedDeviceLicenseModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/IOSVppAppAssignedLicenseModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/IOSVppAppAssignedLicenseModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/IOSVppAppAssignedLicenseModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/IOSVppAppAssignedLicenseModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/IOSVppAppAssignedLicenseRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/IOSVppAppAssignedLicenseRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/IOSVppAppAssignedLicenseRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/IOSVppAppAssignedLicenseRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/IOSVppAppAssignedUserLicenseModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/IOSVppAppAssignedUserLicenseModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/IOSVppAppAssignedUserLicenseModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/IOSVppAppAssignedUserLicenseModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/IOSVppAppAssignmentSettingsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/IOSVppAppAssignmentSettingsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/IOSVppAppAssignmentSettingsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/IOSVppAppAssignmentSettingsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/IOSVppAppModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/IOSVppAppModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/IOSVppAppModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/IOSVppAppModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/IOSVppAppRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/IOSVppAppRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/IOSVppAppRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/IOSVppAppRequest.go index c74971b405..06a1ac21e1 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/IOSVppAppRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/IOSVppAppRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // IOSVppAppRequestBuilder is request builder for IOSVppApp diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/IOSVppAppRevokeLicensesActionResultModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/IOSVppAppRevokeLicensesActionResultModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/IOSVppAppRevokeLicensesActionResultModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/IOSVppAppRevokeLicensesActionResultModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/IOSVppEBookAssignmentModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/IOSVppEBookAssignmentModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/IOSVppEBookAssignmentModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/IOSVppEBookAssignmentModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/IOSVppEBookModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/IOSVppEBookModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/IOSVppEBookModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/IOSVppEBookModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/IOSWallpaperDisplayLocationEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/IOSWallpaperDisplayLocationEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/IOSWallpaperDisplayLocationEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/IOSWallpaperDisplayLocationEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/IOSWebContentFilterAutoFilterModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/IOSWebContentFilterAutoFilterModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/IOSWebContentFilterAutoFilterModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/IOSWebContentFilterAutoFilterModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/IOSWebContentFilterBaseModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/IOSWebContentFilterBaseModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/IOSWebContentFilterBaseModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/IOSWebContentFilterBaseModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/IOSWebContentFilterSpecificWebsitesAccessModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/IOSWebContentFilterSpecificWebsitesAccessModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/IOSWebContentFilterSpecificWebsitesAccessModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/IOSWebContentFilterSpecificWebsitesAccessModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/IOSWiFiConfigurationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/IOSWiFiConfigurationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/IOSWiFiConfigurationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/IOSWiFiConfigurationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/IPCategoryModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/IPCategoryModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/IPCategoryModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/IPCategoryModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/IPNamedLocationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/IPNamedLocationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/IPNamedLocationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/IPNamedLocationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/IPRangeModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/IPRangeModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/IPRangeModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/IPRangeModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/IPReferenceDataModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/IPReferenceDataModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/IPReferenceDataModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/IPReferenceDataModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/IPSecurityProfileModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/IPSecurityProfileModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/IPSecurityProfileModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/IPSecurityProfileModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/IPSecurityProfileRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/IPSecurityProfileRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/IPSecurityProfileRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/IPSecurityProfileRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/IPv4CidrRangeModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/IPv4CidrRangeModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/IPv4CidrRangeModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/IPv4CidrRangeModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/IPv4RangeModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/IPv4RangeModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/IPv4RangeModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/IPv4RangeModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/IPv6CidrRangeModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/IPv6CidrRangeModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/IPv6CidrRangeModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/IPv6CidrRangeModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/IPv6RangeModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/IPv6RangeModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/IPv6RangeModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/IPv6RangeModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ITunesPairingModeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/ITunesPairingModeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ITunesPairingModeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ITunesPairingModeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/IdentityContainerModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/IdentityContainerModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/IdentityContainerModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/IdentityContainerModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/IdentityContainerRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/IdentityContainerRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/IdentityContainerRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/IdentityContainerRequest.go index a168d7206c..14bda4a4eb 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/IdentityContainerRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/IdentityContainerRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // IdentityContainerRequestBuilder is request builder for IdentityContainer diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/IdentityGovernanceModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/IdentityGovernanceModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/IdentityGovernanceModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/IdentityGovernanceModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/IdentityGovernanceRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/IdentityGovernanceRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/IdentityGovernanceRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/IdentityGovernanceRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/IdentityModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/IdentityModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/IdentityModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/IdentityModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/IdentityProviderModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/IdentityProviderModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/IdentityProviderModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/IdentityProviderModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/IdentityProviderRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/IdentityProviderRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/IdentityProviderRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/IdentityProviderRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/IdentityRiskEventModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/IdentityRiskEventModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/IdentityRiskEventModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/IdentityRiskEventModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/IdentityRiskEventRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/IdentityRiskEventRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/IdentityRiskEventRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/IdentityRiskEventRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/IdentitySetModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/IdentitySetModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/IdentitySetModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/IdentitySetModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/IdentityUserFlowModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/IdentityUserFlowModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/IdentityUserFlowModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/IdentityUserFlowModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/IdentityUserFlowRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/IdentityUserFlowRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/IdentityUserFlowRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/IdentityUserFlowRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/IdentityUserRiskModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/IdentityUserRiskModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/IdentityUserRiskModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/IdentityUserRiskModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ImageInfoModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ImageInfoModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ImageInfoModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ImageInfoModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ImageModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ImageModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ImageModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ImageModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ImplicitGrantSettingsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ImplicitGrantSettingsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ImplicitGrantSettingsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ImplicitGrantSettingsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ImportanceEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/ImportanceEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ImportanceEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ImportanceEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ImportedAppleDeviceIdentityAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/ImportedAppleDeviceIdentityAction.go similarity index 98% rename from vendor/github.com/yaegashi/msgraph.go/beta/ImportedAppleDeviceIdentityAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ImportedAppleDeviceIdentityAction.go index 775cd3e101..ba546f13eb 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ImportedAppleDeviceIdentityAction.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/ImportedAppleDeviceIdentityAction.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // ImportedAppleDeviceIdentityCollectionImportAppleDeviceIdentityListRequestParameter undocumented diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ImportedAppleDeviceIdentityModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ImportedAppleDeviceIdentityModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ImportedAppleDeviceIdentityModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ImportedAppleDeviceIdentityModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ImportedAppleDeviceIdentityRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/ImportedAppleDeviceIdentityRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ImportedAppleDeviceIdentityRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ImportedAppleDeviceIdentityRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ImportedAppleDeviceIdentityResultModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ImportedAppleDeviceIdentityResultModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ImportedAppleDeviceIdentityResultModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ImportedAppleDeviceIdentityResultModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ImportedDeviceIdentityAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/ImportedDeviceIdentityAction.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/ImportedDeviceIdentityAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ImportedDeviceIdentityAction.go index 2b21cb74b4..1a56bcdc61 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ImportedDeviceIdentityAction.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/ImportedDeviceIdentityAction.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // ImportedDeviceIdentityCollectionImportDeviceIdentityListRequestParameter undocumented diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ImportedDeviceIdentityModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ImportedDeviceIdentityModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ImportedDeviceIdentityModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ImportedDeviceIdentityModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ImportedDeviceIdentityRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/ImportedDeviceIdentityRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ImportedDeviceIdentityRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ImportedDeviceIdentityRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ImportedDeviceIdentityResultModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ImportedDeviceIdentityResultModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ImportedDeviceIdentityResultModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ImportedDeviceIdentityResultModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ImportedDeviceIdentityTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/ImportedDeviceIdentityTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ImportedDeviceIdentityTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ImportedDeviceIdentityTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ImportedWindowsAutopilotDeviceIdentityAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/ImportedWindowsAutopilotDeviceIdentityAction.go similarity index 98% rename from vendor/github.com/yaegashi/msgraph.go/beta/ImportedWindowsAutopilotDeviceIdentityAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ImportedWindowsAutopilotDeviceIdentityAction.go index 695597dc95..4689449765 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ImportedWindowsAutopilotDeviceIdentityAction.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/ImportedWindowsAutopilotDeviceIdentityAction.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // ImportedWindowsAutopilotDeviceIdentityCollectionImportRequestParameter undocumented diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ImportedWindowsAutopilotDeviceIdentityImportStatusEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/ImportedWindowsAutopilotDeviceIdentityImportStatusEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ImportedWindowsAutopilotDeviceIdentityImportStatusEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ImportedWindowsAutopilotDeviceIdentityImportStatusEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ImportedWindowsAutopilotDeviceIdentityModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ImportedWindowsAutopilotDeviceIdentityModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ImportedWindowsAutopilotDeviceIdentityModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ImportedWindowsAutopilotDeviceIdentityModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ImportedWindowsAutopilotDeviceIdentityRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/ImportedWindowsAutopilotDeviceIdentityRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ImportedWindowsAutopilotDeviceIdentityRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ImportedWindowsAutopilotDeviceIdentityRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ImportedWindowsAutopilotDeviceIdentityStateModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ImportedWindowsAutopilotDeviceIdentityStateModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ImportedWindowsAutopilotDeviceIdentityStateModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ImportedWindowsAutopilotDeviceIdentityStateModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ImportedWindowsAutopilotDeviceIdentityUploadModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ImportedWindowsAutopilotDeviceIdentityUploadModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ImportedWindowsAutopilotDeviceIdentityUploadModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ImportedWindowsAutopilotDeviceIdentityUploadModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ImportedWindowsAutopilotDeviceIdentityUploadRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/ImportedWindowsAutopilotDeviceIdentityUploadRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/ImportedWindowsAutopilotDeviceIdentityUploadRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ImportedWindowsAutopilotDeviceIdentityUploadRequest.go index a6cc792fe8..5ef9c58b0d 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ImportedWindowsAutopilotDeviceIdentityUploadRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/ImportedWindowsAutopilotDeviceIdentityUploadRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // ImportedWindowsAutopilotDeviceIdentityUploadRequestBuilder is request builder for ImportedWindowsAutopilotDeviceIdentityUpload diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ImportedWindowsAutopilotDeviceIdentityUploadStatusEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/ImportedWindowsAutopilotDeviceIdentityUploadStatusEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ImportedWindowsAutopilotDeviceIdentityUploadStatusEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ImportedWindowsAutopilotDeviceIdentityUploadStatusEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ImpossibleTravelRiskEventModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ImpossibleTravelRiskEventModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ImpossibleTravelRiskEventModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ImpossibleTravelRiskEventModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ImpossibleTravelRiskEventRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/ImpossibleTravelRiskEventRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ImpossibleTravelRiskEventRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ImpossibleTravelRiskEventRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/IncomingContextModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/IncomingContextModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/IncomingContextModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/IncomingContextModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/IncompleteDataModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/IncompleteDataModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/IncompleteDataModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/IncompleteDataModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/InferenceClassificationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/InferenceClassificationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/InferenceClassificationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/InferenceClassificationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/InferenceClassificationOverrideModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/InferenceClassificationOverrideModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/InferenceClassificationOverrideModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/InferenceClassificationOverrideModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/InferenceClassificationOverrideRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/InferenceClassificationOverrideRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/InferenceClassificationOverrideRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/InferenceClassificationOverrideRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/InferenceClassificationRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/InferenceClassificationRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/InferenceClassificationRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/InferenceClassificationRequest.go index a59de3144e..047fe9f579 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/InferenceClassificationRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/InferenceClassificationRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // InferenceClassificationRequestBuilder is request builder for InferenceClassification diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/InferenceClassificationTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/InferenceClassificationTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/InferenceClassificationTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/InferenceClassificationTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/InferenceDataModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/InferenceDataModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/InferenceDataModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/InferenceDataModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/InformationProtectionAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/InformationProtectionAction.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/InformationProtectionAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/InformationProtectionAction.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/InformationProtectionActionModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/InformationProtectionActionModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/InformationProtectionActionModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/InformationProtectionActionModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/InformationProtectionContentLabelModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/InformationProtectionContentLabelModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/InformationProtectionContentLabelModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/InformationProtectionContentLabelModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/InformationProtectionLabelAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/InformationProtectionLabelAction.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/InformationProtectionLabelAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/InformationProtectionLabelAction.go index d71a06c96f..7c06c7cc22 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/InformationProtectionLabelAction.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/InformationProtectionLabelAction.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // InformationProtectionLabelCollectionExtractLabelRequestParameter undocumented diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/InformationProtectionLabelModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/InformationProtectionLabelModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/InformationProtectionLabelModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/InformationProtectionLabelModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/InformationProtectionLabelRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/InformationProtectionLabelRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/InformationProtectionLabelRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/InformationProtectionLabelRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/InformationProtectionModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/InformationProtectionModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/InformationProtectionModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/InformationProtectionModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/InformationProtectionPolicyModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/InformationProtectionPolicyModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/InformationProtectionPolicyModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/InformationProtectionPolicyModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/InformationProtectionPolicyRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/InformationProtectionPolicyRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/InformationProtectionPolicyRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/InformationProtectionPolicyRequest.go index 01a0ca9a27..61f1986518 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/InformationProtectionPolicyRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/InformationProtectionPolicyRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // InformationProtectionPolicyRequestBuilder is request builder for InformationProtectionPolicy diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/InformationProtectionRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/InformationProtectionRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/InformationProtectionRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/InformationProtectionRequest.go index 5940a43adc..92ec92ba81 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/InformationProtectionRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/InformationProtectionRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // InformationProtectionRequestBuilder is request builder for InformationProtection diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/InformationalURLModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/InformationalURLModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/InformationalURLModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/InformationalURLModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/InitiatorModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/InitiatorModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/InitiatorModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/InitiatorModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/InitiatorTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/InitiatorTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/InitiatorTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/InitiatorTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/InkAccessSettingEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/InkAccessSettingEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/InkAccessSettingEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/InkAccessSettingEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/InnerErrorDetailModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/InnerErrorDetailModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/InnerErrorDetailModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/InnerErrorDetailModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/InsightIdentityModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/InsightIdentityModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/InsightIdentityModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/InsightIdentityModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/InsightValueDoubleModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/InsightValueDoubleModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/InsightValueDoubleModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/InsightValueDoubleModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/InsightValueIntModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/InsightValueIntModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/InsightValueIntModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/InsightValueIntModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/InstallIntentEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/InstallIntentEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/InstallIntentEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/InstallIntentEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/InstallStateEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/InstallStateEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/InstallStateEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/InstallStateEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/InstanceResourceAccessModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/InstanceResourceAccessModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/InstanceResourceAccessModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/InstanceResourceAccessModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/InstitutionDataModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/InstitutionDataModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/InstitutionDataModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/InstitutionDataModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/IntendedPurposeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/IntendedPurposeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/IntendedPurposeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/IntendedPurposeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/InternetExplorerMessageSettingEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/InternetExplorerMessageSettingEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/InternetExplorerMessageSettingEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/InternetExplorerMessageSettingEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/InternetMessageHeaderModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/InternetMessageHeaderModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/InternetMessageHeaderModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/InternetMessageHeaderModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/InternetSiteSecurityLevelEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/InternetSiteSecurityLevelEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/InternetSiteSecurityLevelEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/InternetSiteSecurityLevelEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/IntuneBrandModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/IntuneBrandModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/IntuneBrandModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/IntuneBrandModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/IntuneBrandingProfileAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/IntuneBrandingProfileAction.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/IntuneBrandingProfileAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/IntuneBrandingProfileAction.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/IntuneBrandingProfileAssignmentModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/IntuneBrandingProfileAssignmentModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/IntuneBrandingProfileAssignmentModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/IntuneBrandingProfileAssignmentModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/IntuneBrandingProfileAssignmentRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/IntuneBrandingProfileAssignmentRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/IntuneBrandingProfileAssignmentRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/IntuneBrandingProfileAssignmentRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/IntuneBrandingProfileModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/IntuneBrandingProfileModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/IntuneBrandingProfileModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/IntuneBrandingProfileModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/IntuneBrandingProfileRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/IntuneBrandingProfileRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/IntuneBrandingProfileRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/IntuneBrandingProfileRequest.go index 074a2fcf47..92de586ff5 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/IntuneBrandingProfileRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/IntuneBrandingProfileRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // IntuneBrandingProfileRequestBuilder is request builder for IntuneBrandingProfile diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/InvitationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/InvitationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/InvitationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/InvitationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/InvitationParticipantInfoModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/InvitationParticipantInfoModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/InvitationParticipantInfoModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/InvitationParticipantInfoModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/InvitationRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/InvitationRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/InvitationRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/InvitationRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/InviteParticipantsOperationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/InviteParticipantsOperationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/InviteParticipantsOperationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/InviteParticipantsOperationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/InvitedUserMessageInfoModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/InvitedUserMessageInfoModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/InvitedUserMessageInfoModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/InvitedUserMessageInfoModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/IosikEv2VpnConfigurationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/IosikEv2VpnConfigurationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/IosikEv2VpnConfigurationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/IosikEv2VpnConfigurationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ItemActionSetModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ItemActionSetModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ItemActionSetModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ItemActionSetModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ItemActionStatModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ItemActionStatModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ItemActionStatModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ItemActionStatModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ItemActivityModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ItemActivityModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ItemActivityModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ItemActivityModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ItemActivityOLDModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ItemActivityOLDModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ItemActivityOLDModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ItemActivityOLDModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ItemActivityOLDRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/ItemActivityOLDRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ItemActivityOLDRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ItemActivityOLDRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ItemActivityRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/ItemActivityRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ItemActivityRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ItemActivityRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ItemActivityStatModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ItemActivityStatModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ItemActivityStatModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ItemActivityStatModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ItemActivityStatRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/ItemActivityStatRequest.go similarity index 98% rename from vendor/github.com/yaegashi/msgraph.go/beta/ItemActivityStatRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ItemActivityStatRequest.go index b65da370de..2e3595ea69 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ItemActivityStatRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/ItemActivityStatRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // ItemActivityStatRequestBuilder is request builder for ItemActivityStat diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ItemActivityTimeSetModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ItemActivityTimeSetModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ItemActivityTimeSetModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ItemActivityTimeSetModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ItemAnalyticsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ItemAnalyticsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ItemAnalyticsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ItemAnalyticsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ItemAnalyticsRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/ItemAnalyticsRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/ItemAnalyticsRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ItemAnalyticsRequest.go index 0c2ebb36ac..f430f42658 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ItemAnalyticsRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/ItemAnalyticsRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // ItemAnalyticsRequestBuilder is request builder for ItemAnalytics diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ItemAttachmentModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ItemAttachmentModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ItemAttachmentModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ItemAttachmentModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ItemAttachmentRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/ItemAttachmentRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ItemAttachmentRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ItemAttachmentRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ItemBodyModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ItemBodyModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ItemBodyModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ItemBodyModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ItemCategoryModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ItemCategoryModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ItemCategoryModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ItemCategoryModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ItemCategoryRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/ItemCategoryRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ItemCategoryRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ItemCategoryRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ItemEmailModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ItemEmailModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ItemEmailModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ItemEmailModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ItemEmailRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/ItemEmailRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ItemEmailRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ItemEmailRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ItemFacetModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ItemFacetModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ItemFacetModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ItemFacetModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ItemModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ItemModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ItemModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ItemModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ItemPhoneModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ItemPhoneModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ItemPhoneModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ItemPhoneModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ItemPhoneRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/ItemPhoneRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ItemPhoneRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ItemPhoneRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ItemPreviewInfoModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ItemPreviewInfoModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ItemPreviewInfoModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ItemPreviewInfoModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ItemReferenceModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ItemReferenceModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ItemReferenceModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ItemReferenceModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ItemRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/ItemRequest.go similarity index 98% rename from vendor/github.com/yaegashi/msgraph.go/beta/ItemRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ItemRequest.go index 696e5a46e6..996c3dc6b7 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ItemRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/ItemRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // ItemRequestBuilder is request builder for Item diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/JSONModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/JSONModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/JSONModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/JSONModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/JobResponseBaseModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/JobResponseBaseModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/JobResponseBaseModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/JobResponseBaseModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/JobResponseBaseRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/JobResponseBaseRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/JobResponseBaseRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/JobResponseBaseRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/JournalAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/JournalAction.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/JournalAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/JournalAction.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/JournalLineModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/JournalLineModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/JournalLineModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/JournalLineModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/JournalLineRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/JournalLineRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/JournalLineRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/JournalLineRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/JournalModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/JournalModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/JournalModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/JournalModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/JournalRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/JournalRequest.go similarity index 98% rename from vendor/github.com/yaegashi/msgraph.go/beta/JournalRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/JournalRequest.go index 2616dcd219..674f311b86 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/JournalRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/JournalRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // JournalRequestBuilder is request builder for Journal diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/JustifyActionModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/JustifyActionModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/JustifyActionModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/JustifyActionModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/KerberosSingleSignOnExtensionModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/KerberosSingleSignOnExtensionModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/KerberosSingleSignOnExtensionModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/KerberosSingleSignOnExtensionModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/KeyBooleanValuePairModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/KeyBooleanValuePairModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/KeyBooleanValuePairModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/KeyBooleanValuePairModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/KeyCredentialModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/KeyCredentialModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/KeyCredentialModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/KeyCredentialModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/KeyIntegerValuePairModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/KeyIntegerValuePairModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/KeyIntegerValuePairModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/KeyIntegerValuePairModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/KeyRealValuePairModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/KeyRealValuePairModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/KeyRealValuePairModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/KeyRealValuePairModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/KeySizeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/KeySizeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/KeySizeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/KeySizeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/KeyStorageProviderOptionEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/KeyStorageProviderOptionEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/KeyStorageProviderOptionEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/KeyStorageProviderOptionEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/KeyStringValuePairModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/KeyStringValuePairModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/KeyStringValuePairModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/KeyStringValuePairModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/KeyTypedValuePairModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/KeyTypedValuePairModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/KeyTypedValuePairModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/KeyTypedValuePairModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/KeyUsagesEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/KeyUsagesEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/KeyUsagesEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/KeyUsagesEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/KeyValueModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/KeyValueModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/KeyValueModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/KeyValueModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/KeyValuePairModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/KeyValuePairModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/KeyValuePairModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/KeyValuePairModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/LabelActionBaseModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/LabelActionBaseModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/LabelActionBaseModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/LabelActionBaseModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/LabelDetailsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/LabelDetailsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/LabelDetailsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/LabelDetailsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/LabelPolicyModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/LabelPolicyModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/LabelPolicyModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/LabelPolicyModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/LabelingOptionsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/LabelingOptionsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/LabelingOptionsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/LabelingOptionsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/LanManagerAuthenticationLevelEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/LanManagerAuthenticationLevelEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/LanManagerAuthenticationLevelEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/LanManagerAuthenticationLevelEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/LanguageProficiencyLevelEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/LanguageProficiencyLevelEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/LanguageProficiencyLevelEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/LanguageProficiencyLevelEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/LanguageProficiencyModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/LanguageProficiencyModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/LanguageProficiencyModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/LanguageProficiencyModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/LanguageProficiencyRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/LanguageProficiencyRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/LanguageProficiencyRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/LanguageProficiencyRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/LeakedCredentialsRiskEventModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/LeakedCredentialsRiskEventModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/LeakedCredentialsRiskEventModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/LeakedCredentialsRiskEventModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/LeakedCredentialsRiskEventRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/LeakedCredentialsRiskEventRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/LeakedCredentialsRiskEventRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/LeakedCredentialsRiskEventRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/LearnedLocationModelModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/LearnedLocationModelModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/LearnedLocationModelModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/LearnedLocationModelModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/LicenseAssignmentStateModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/LicenseAssignmentStateModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/LicenseAssignmentStateModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/LicenseAssignmentStateModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/LicenseDetailsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/LicenseDetailsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/LicenseDetailsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/LicenseDetailsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/LicenseDetailsRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/LicenseDetailsRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/LicenseDetailsRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/LicenseDetailsRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/LicenseInfoDetailModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/LicenseInfoDetailModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/LicenseInfoDetailModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/LicenseInfoDetailModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/LicenseProcessingStateModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/LicenseProcessingStateModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/LicenseProcessingStateModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/LicenseProcessingStateModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/LicenseUnitsDetailModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/LicenseUnitsDetailModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/LicenseUnitsDetailModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/LicenseUnitsDetailModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ListInfoModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ListInfoModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ListInfoModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ListInfoModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ListItemModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ListItemModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ListItemModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ListItemModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ListItemRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/ListItemRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/ListItemRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ListItemRequest.go index d80d6072db..2523ab2e9f 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ListItemRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/ListItemRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // ListItemRequestBuilder is request builder for ListItem diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ListItemVersionAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/ListItemVersionAction.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ListItemVersionAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ListItemVersionAction.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ListItemVersionModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ListItemVersionModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ListItemVersionModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ListItemVersionModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ListItemVersionRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/ListItemVersionRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ListItemVersionRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ListItemVersionRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ListModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ListModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ListModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ListModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ListRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/ListRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/ListRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ListRequest.go index 28718ecc7e..710c1cae88 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ListRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/ListRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // ListRequestBuilder is request builder for List diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/LocalSecurityOptionsAdministratorElevationPromptBehaviorTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/LocalSecurityOptionsAdministratorElevationPromptBehaviorTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/LocalSecurityOptionsAdministratorElevationPromptBehaviorTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/LocalSecurityOptionsAdministratorElevationPromptBehaviorTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/LocalSecurityOptionsFormatAndEjectOfRemovableMediaAllowedUserTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/LocalSecurityOptionsFormatAndEjectOfRemovableMediaAllowedUserTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/LocalSecurityOptionsFormatAndEjectOfRemovableMediaAllowedUserTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/LocalSecurityOptionsFormatAndEjectOfRemovableMediaAllowedUserTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/LocalSecurityOptionsInformationDisplayedOnLockScreenTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/LocalSecurityOptionsInformationDisplayedOnLockScreenTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/LocalSecurityOptionsInformationDisplayedOnLockScreenTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/LocalSecurityOptionsInformationDisplayedOnLockScreenTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/LocalSecurityOptionsInformationShownOnLockScreenTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/LocalSecurityOptionsInformationShownOnLockScreenTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/LocalSecurityOptionsInformationShownOnLockScreenTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/LocalSecurityOptionsInformationShownOnLockScreenTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/LocalSecurityOptionsMinimumSessionSecurityEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/LocalSecurityOptionsMinimumSessionSecurityEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/LocalSecurityOptionsMinimumSessionSecurityEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/LocalSecurityOptionsMinimumSessionSecurityEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/LocalSecurityOptionsSmartCardRemovalBehaviorTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/LocalSecurityOptionsSmartCardRemovalBehaviorTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/LocalSecurityOptionsSmartCardRemovalBehaviorTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/LocalSecurityOptionsSmartCardRemovalBehaviorTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/LocalSecurityOptionsStandardUserElevationPromptBehaviorTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/LocalSecurityOptionsStandardUserElevationPromptBehaviorTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/LocalSecurityOptionsStandardUserElevationPromptBehaviorTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/LocalSecurityOptionsStandardUserElevationPromptBehaviorTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/LocaleInfoModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/LocaleInfoModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/LocaleInfoModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/LocaleInfoModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/LocalizedNotificationMessageModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/LocalizedNotificationMessageModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/LocalizedNotificationMessageModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/LocalizedNotificationMessageModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/LocalizedNotificationMessageRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/LocalizedNotificationMessageRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/LocalizedNotificationMessageRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/LocalizedNotificationMessageRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/LocateDeviceActionResultModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/LocateDeviceActionResultModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/LocateDeviceActionResultModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/LocateDeviceActionResultModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/LocatedRiskEventModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/LocatedRiskEventModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/LocatedRiskEventModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/LocatedRiskEventModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/LocationConstraintItemModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/LocationConstraintItemModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/LocationConstraintItemModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/LocationConstraintItemModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/LocationConstraintModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/LocationConstraintModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/LocationConstraintModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/LocationConstraintModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/LocationManagementConditionModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/LocationManagementConditionModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/LocationManagementConditionModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/LocationManagementConditionModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/LocationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/LocationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/LocationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/LocationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/LocationTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/LocationTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/LocationTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/LocationTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/LocationUniqueIDTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/LocationUniqueIDTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/LocationUniqueIDTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/LocationUniqueIDTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/LogLevelEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/LogLevelEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/LogLevelEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/LogLevelEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/LoggedOnUserModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/LoggedOnUserModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/LoggedOnUserModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/LoggedOnUserModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/LogonTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/LogonTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/LogonTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/LogonTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/LogonUserModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/LogonUserModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/LogonUserModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/LogonUserModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/LookupColumnModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/LookupColumnModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/LookupColumnModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/LookupColumnModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/LookupResultRowModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/LookupResultRowModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/LookupResultRowModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/LookupResultRowModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/LookupResultRowRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/LookupResultRowRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/LookupResultRowRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/LookupResultRowRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/LostModeStateEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/LostModeStateEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/LostModeStateEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/LostModeStateEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MacManagedAppProtectionAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/MacManagedAppProtectionAction.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MacManagedAppProtectionAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MacManagedAppProtectionAction.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MacManagedAppProtectionModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/MacManagedAppProtectionModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MacManagedAppProtectionModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MacManagedAppProtectionModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MacManagedAppProtectionRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/MacManagedAppProtectionRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MacManagedAppProtectionRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MacManagedAppProtectionRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MacOSCertificateProfileBaseModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/MacOSCertificateProfileBaseModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MacOSCertificateProfileBaseModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MacOSCertificateProfileBaseModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MacOSCertificateProfileBaseRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/MacOSCertificateProfileBaseRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MacOSCertificateProfileBaseRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MacOSCertificateProfileBaseRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MacOSCompliancePolicyModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/MacOSCompliancePolicyModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MacOSCompliancePolicyModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MacOSCompliancePolicyModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MacOSCustomAppConfigurationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/MacOSCustomAppConfigurationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MacOSCustomAppConfigurationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MacOSCustomAppConfigurationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MacOSCustomConfigurationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/MacOSCustomConfigurationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MacOSCustomConfigurationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MacOSCustomConfigurationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MacOSDeviceFeaturesConfigurationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/MacOSDeviceFeaturesConfigurationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MacOSDeviceFeaturesConfigurationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MacOSDeviceFeaturesConfigurationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MacOSDeviceFeaturesConfigurationRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/MacOSDeviceFeaturesConfigurationRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MacOSDeviceFeaturesConfigurationRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MacOSDeviceFeaturesConfigurationRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MacOSEndpointProtectionConfigurationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/MacOSEndpointProtectionConfigurationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MacOSEndpointProtectionConfigurationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MacOSEndpointProtectionConfigurationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MacOSEnterpriseWiFiConfigurationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/MacOSEnterpriseWiFiConfigurationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MacOSEnterpriseWiFiConfigurationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MacOSEnterpriseWiFiConfigurationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MacOSEnterpriseWiFiConfigurationRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/MacOSEnterpriseWiFiConfigurationRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MacOSEnterpriseWiFiConfigurationRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MacOSEnterpriseWiFiConfigurationRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MacOSExtensionsConfigurationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/MacOSExtensionsConfigurationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MacOSExtensionsConfigurationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MacOSExtensionsConfigurationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MacOSFileVaultRecoveryKeyTypesEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/MacOSFileVaultRecoveryKeyTypesEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MacOSFileVaultRecoveryKeyTypesEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MacOSFileVaultRecoveryKeyTypesEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MacOSFirewallApplicationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/MacOSFirewallApplicationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MacOSFirewallApplicationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MacOSFirewallApplicationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MacOSGatekeeperAppSourcesEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/MacOSGatekeeperAppSourcesEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MacOSGatekeeperAppSourcesEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MacOSGatekeeperAppSourcesEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MacOSGeneralDeviceConfigurationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/MacOSGeneralDeviceConfigurationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MacOSGeneralDeviceConfigurationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MacOSGeneralDeviceConfigurationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MacOSImportedPFXCertificateProfileModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/MacOSImportedPFXCertificateProfileModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MacOSImportedPFXCertificateProfileModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MacOSImportedPFXCertificateProfileModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MacOSImportedPFXCertificateProfileRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/MacOSImportedPFXCertificateProfileRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/MacOSImportedPFXCertificateProfileRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MacOSImportedPFXCertificateProfileRequest.go index 2a4867001b..5b0ba0d9a1 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/MacOSImportedPFXCertificateProfileRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/MacOSImportedPFXCertificateProfileRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // MacOSImportedPFXCertificateProfileRequestBuilder is request builder for MacOSImportedPFXCertificateProfile diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MacOSKerberosSingleSignOnExtensionModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/MacOSKerberosSingleSignOnExtensionModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MacOSKerberosSingleSignOnExtensionModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MacOSKerberosSingleSignOnExtensionModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MacOSKernelExtensionModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/MacOSKernelExtensionModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MacOSKernelExtensionModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MacOSKernelExtensionModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MacOSLaunchItemModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/MacOSLaunchItemModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MacOSLaunchItemModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MacOSLaunchItemModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MacOSLobAppModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/MacOSLobAppModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MacOSLobAppModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MacOSLobAppModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MacOSLobChildAppModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/MacOSLobChildAppModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MacOSLobChildAppModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MacOSLobChildAppModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MacOSMicrosoftEdgeAppModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/MacOSMicrosoftEdgeAppModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MacOSMicrosoftEdgeAppModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MacOSMicrosoftEdgeAppModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MacOSMinimumOperatingSystemModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/MacOSMinimumOperatingSystemModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MacOSMinimumOperatingSystemModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MacOSMinimumOperatingSystemModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MacOSOfficeSuiteAppModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/MacOSOfficeSuiteAppModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MacOSOfficeSuiteAppModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MacOSOfficeSuiteAppModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MacOSPkcsCertificateProfileModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/MacOSPkcsCertificateProfileModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MacOSPkcsCertificateProfileModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MacOSPkcsCertificateProfileModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MacOSPkcsCertificateProfileRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/MacOSPkcsCertificateProfileRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/MacOSPkcsCertificateProfileRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MacOSPkcsCertificateProfileRequest.go index d44cf00f7a..3697b02520 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/MacOSPkcsCertificateProfileRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/MacOSPkcsCertificateProfileRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // MacOSPkcsCertificateProfileRequestBuilder is request builder for MacOSPkcsCertificateProfile diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MacOSScepCertificateProfileModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/MacOSScepCertificateProfileModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MacOSScepCertificateProfileModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MacOSScepCertificateProfileModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MacOSScepCertificateProfileRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/MacOSScepCertificateProfileRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/MacOSScepCertificateProfileRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MacOSScepCertificateProfileRequest.go index 8ef1fcc096..cb85630a7e 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/MacOSScepCertificateProfileRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/MacOSScepCertificateProfileRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // MacOSScepCertificateProfileRequestBuilder is request builder for MacOSScepCertificateProfile diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MacOSTrustedRootCertificateModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/MacOSTrustedRootCertificateModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MacOSTrustedRootCertificateModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MacOSTrustedRootCertificateModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MacOSTrustedRootCertificateRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/MacOSTrustedRootCertificateRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MacOSTrustedRootCertificateRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MacOSTrustedRootCertificateRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MacOSVpnConfigurationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/MacOSVpnConfigurationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MacOSVpnConfigurationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MacOSVpnConfigurationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MacOSVpnConfigurationRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/MacOSVpnConfigurationRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MacOSVpnConfigurationRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MacOSVpnConfigurationRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MacOSWiFiConfigurationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/MacOSWiFiConfigurationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MacOSWiFiConfigurationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MacOSWiFiConfigurationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MacOSWiredNetworkConfigurationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/MacOSWiredNetworkConfigurationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MacOSWiredNetworkConfigurationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MacOSWiredNetworkConfigurationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MacOSWiredNetworkConfigurationRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/MacOSWiredNetworkConfigurationRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MacOSWiredNetworkConfigurationRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MacOSWiredNetworkConfigurationRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MacOsVppAppAssignedLicenseModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/MacOsVppAppAssignedLicenseModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MacOsVppAppAssignedLicenseModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MacOsVppAppAssignedLicenseModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MacOsVppAppAssignedLicenseRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/MacOsVppAppAssignedLicenseRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MacOsVppAppAssignedLicenseRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MacOsVppAppAssignedLicenseRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MacOsVppAppAssignmentSettingsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/MacOsVppAppAssignmentSettingsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MacOsVppAppAssignmentSettingsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MacOsVppAppAssignmentSettingsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MacOsVppAppModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/MacOsVppAppModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MacOsVppAppModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MacOsVppAppModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MacOsVppAppRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/MacOsVppAppRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/MacOsVppAppRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MacOsVppAppRequest.go index 4cbf92dd10..0963bac9cd 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/MacOsVppAppRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/MacOsVppAppRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // MacOsVppAppRequestBuilder is request builder for MacOsVppApp diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MacOsVppAppRevokeLicensesActionResultModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/MacOsVppAppRevokeLicensesActionResultModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MacOsVppAppRevokeLicensesActionResultModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MacOsVppAppRevokeLicensesActionResultModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MailAssessmentRequestObjectModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/MailAssessmentRequestObjectModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MailAssessmentRequestObjectModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MailAssessmentRequestObjectModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MailDestinationRoutingReasonEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/MailDestinationRoutingReasonEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MailDestinationRoutingReasonEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MailDestinationRoutingReasonEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MailFolderAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/MailFolderAction.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MailFolderAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MailFolderAction.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MailFolderModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/MailFolderModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MailFolderModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MailFolderModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MailFolderRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/MailFolderRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/MailFolderRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MailFolderRequest.go index 057c466301..5a7c1c800f 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/MailFolderRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/MailFolderRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // MailFolderRequestBuilder is request builder for MailFolder diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MailSearchFolderModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/MailSearchFolderModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MailSearchFolderModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MailSearchFolderModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MailTipsErrorModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/MailTipsErrorModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MailTipsErrorModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MailTipsErrorModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MailTipsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/MailTipsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MailTipsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MailTipsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MailTipsTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/MailTipsTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MailTipsTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MailTipsTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MailboxSettingsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/MailboxSettingsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MailboxSettingsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MailboxSettingsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MailboxUsageDetailModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/MailboxUsageDetailModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MailboxUsageDetailModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MailboxUsageDetailModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MailboxUsageMailboxCountsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/MailboxUsageMailboxCountsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MailboxUsageMailboxCountsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MailboxUsageMailboxCountsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MailboxUsageQuotaStatusMailboxCountsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/MailboxUsageQuotaStatusMailboxCountsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MailboxUsageQuotaStatusMailboxCountsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MailboxUsageQuotaStatusMailboxCountsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MailboxUsageStorageModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/MailboxUsageStorageModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MailboxUsageStorageModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MailboxUsageStorageModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MalwareRiskEventModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/MalwareRiskEventModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MalwareRiskEventModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MalwareRiskEventModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MalwareRiskEventRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/MalwareRiskEventRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MalwareRiskEventRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MalwareRiskEventRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MalwareStateModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/MalwareStateModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MalwareStateModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MalwareStateModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ManagedAllDeviceCertificateStateModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ManagedAllDeviceCertificateStateModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ManagedAllDeviceCertificateStateModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ManagedAllDeviceCertificateStateModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ManagedAllDeviceCertificateStateRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/ManagedAllDeviceCertificateStateRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ManagedAllDeviceCertificateStateRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ManagedAllDeviceCertificateStateRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ManagedAndroidLobAppModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ManagedAndroidLobAppModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ManagedAndroidLobAppModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ManagedAndroidLobAppModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ManagedAndroidStoreAppModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ManagedAndroidStoreAppModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ManagedAndroidStoreAppModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ManagedAndroidStoreAppModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ManagedAppAvailabilityEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/ManagedAppAvailabilityEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ManagedAppAvailabilityEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ManagedAppAvailabilityEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ManagedAppClipboardSharingLevelEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/ManagedAppClipboardSharingLevelEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ManagedAppClipboardSharingLevelEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ManagedAppClipboardSharingLevelEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ManagedAppConfigurationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ManagedAppConfigurationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ManagedAppConfigurationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ManagedAppConfigurationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ManagedAppDataEncryptionTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/ManagedAppDataEncryptionTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ManagedAppDataEncryptionTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ManagedAppDataEncryptionTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ManagedAppDataStorageLocationEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/ManagedAppDataStorageLocationEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ManagedAppDataStorageLocationEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ManagedAppDataStorageLocationEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ManagedAppDataTransferLevelEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/ManagedAppDataTransferLevelEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ManagedAppDataTransferLevelEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ManagedAppDataTransferLevelEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ManagedAppDeviceThreatLevelEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/ManagedAppDeviceThreatLevelEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ManagedAppDeviceThreatLevelEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ManagedAppDeviceThreatLevelEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ManagedAppDiagnosticStatusModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ManagedAppDiagnosticStatusModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ManagedAppDiagnosticStatusModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ManagedAppDiagnosticStatusModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ManagedAppFlaggedReasonEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/ManagedAppFlaggedReasonEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ManagedAppFlaggedReasonEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ManagedAppFlaggedReasonEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ManagedAppModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ManagedAppModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ManagedAppModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ManagedAppModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ManagedAppNotificationRestrictionEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/ManagedAppNotificationRestrictionEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ManagedAppNotificationRestrictionEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ManagedAppNotificationRestrictionEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ManagedAppOperationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ManagedAppOperationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ManagedAppOperationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ManagedAppOperationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ManagedAppOperationRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/ManagedAppOperationRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ManagedAppOperationRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ManagedAppOperationRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ManagedAppPinCharacterSetEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/ManagedAppPinCharacterSetEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ManagedAppPinCharacterSetEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ManagedAppPinCharacterSetEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ManagedAppPolicyAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/ManagedAppPolicyAction.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ManagedAppPolicyAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ManagedAppPolicyAction.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ManagedAppPolicyDeploymentSummaryModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ManagedAppPolicyDeploymentSummaryModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ManagedAppPolicyDeploymentSummaryModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ManagedAppPolicyDeploymentSummaryModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ManagedAppPolicyDeploymentSummaryPerAppModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ManagedAppPolicyDeploymentSummaryPerAppModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ManagedAppPolicyDeploymentSummaryPerAppModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ManagedAppPolicyDeploymentSummaryPerAppModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ManagedAppPolicyDeploymentSummaryRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/ManagedAppPolicyDeploymentSummaryRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ManagedAppPolicyDeploymentSummaryRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ManagedAppPolicyDeploymentSummaryRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ManagedAppPolicyModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ManagedAppPolicyModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ManagedAppPolicyModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ManagedAppPolicyModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ManagedAppPolicyRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/ManagedAppPolicyRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ManagedAppPolicyRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ManagedAppPolicyRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ManagedAppProtectionAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/ManagedAppProtectionAction.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ManagedAppProtectionAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ManagedAppProtectionAction.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ManagedAppProtectionModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ManagedAppProtectionModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ManagedAppProtectionModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ManagedAppProtectionModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ManagedAppProtectionPolicySetItemModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ManagedAppProtectionPolicySetItemModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ManagedAppProtectionPolicySetItemModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ManagedAppProtectionPolicySetItemModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ManagedAppProtectionRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/ManagedAppProtectionRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ManagedAppProtectionRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ManagedAppProtectionRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ManagedAppRegistrationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ManagedAppRegistrationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ManagedAppRegistrationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ManagedAppRegistrationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ManagedAppRegistrationRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/ManagedAppRegistrationRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/ManagedAppRegistrationRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ManagedAppRegistrationRequest.go index 6a7894c6b5..6ac2cef355 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ManagedAppRegistrationRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/ManagedAppRegistrationRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // ManagedAppRegistrationRequestBuilder is request builder for ManagedAppRegistration diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ManagedAppRemediationActionEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/ManagedAppRemediationActionEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ManagedAppRemediationActionEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ManagedAppRemediationActionEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ManagedAppStatusModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ManagedAppStatusModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ManagedAppStatusModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ManagedAppStatusModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ManagedAppStatusRawModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ManagedAppStatusRawModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ManagedAppStatusRawModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ManagedAppStatusRawModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ManagedAppStatusRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/ManagedAppStatusRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ManagedAppStatusRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ManagedAppStatusRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ManagedBrowserTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/ManagedBrowserTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ManagedBrowserTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ManagedBrowserTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ManagedDeviceAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/ManagedDeviceAction.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ManagedDeviceAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ManagedDeviceAction.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ManagedDeviceCertificateStateModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ManagedDeviceCertificateStateModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ManagedDeviceCertificateStateModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ManagedDeviceCertificateStateModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ManagedDeviceCertificateStateRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/ManagedDeviceCertificateStateRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ManagedDeviceCertificateStateRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ManagedDeviceCertificateStateRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ManagedDeviceCleanupSettingsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ManagedDeviceCleanupSettingsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ManagedDeviceCleanupSettingsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ManagedDeviceCleanupSettingsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ManagedDeviceEncryptionStateModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ManagedDeviceEncryptionStateModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ManagedDeviceEncryptionStateModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ManagedDeviceEncryptionStateModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ManagedDeviceEncryptionStateRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/ManagedDeviceEncryptionStateRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ManagedDeviceEncryptionStateRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ManagedDeviceEncryptionStateRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ManagedDeviceMobileAppConfigurationAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/ManagedDeviceMobileAppConfigurationAction.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ManagedDeviceMobileAppConfigurationAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ManagedDeviceMobileAppConfigurationAction.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ManagedDeviceMobileAppConfigurationAssignmentModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ManagedDeviceMobileAppConfigurationAssignmentModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ManagedDeviceMobileAppConfigurationAssignmentModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ManagedDeviceMobileAppConfigurationAssignmentModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ManagedDeviceMobileAppConfigurationAssignmentRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/ManagedDeviceMobileAppConfigurationAssignmentRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ManagedDeviceMobileAppConfigurationAssignmentRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ManagedDeviceMobileAppConfigurationAssignmentRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ManagedDeviceMobileAppConfigurationDeviceStatusModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ManagedDeviceMobileAppConfigurationDeviceStatusModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ManagedDeviceMobileAppConfigurationDeviceStatusModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ManagedDeviceMobileAppConfigurationDeviceStatusModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ManagedDeviceMobileAppConfigurationDeviceStatusRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/ManagedDeviceMobileAppConfigurationDeviceStatusRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ManagedDeviceMobileAppConfigurationDeviceStatusRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ManagedDeviceMobileAppConfigurationDeviceStatusRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ManagedDeviceMobileAppConfigurationDeviceSummaryModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ManagedDeviceMobileAppConfigurationDeviceSummaryModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ManagedDeviceMobileAppConfigurationDeviceSummaryModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ManagedDeviceMobileAppConfigurationDeviceSummaryModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ManagedDeviceMobileAppConfigurationDeviceSummaryRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/ManagedDeviceMobileAppConfigurationDeviceSummaryRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ManagedDeviceMobileAppConfigurationDeviceSummaryRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ManagedDeviceMobileAppConfigurationDeviceSummaryRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ManagedDeviceMobileAppConfigurationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ManagedDeviceMobileAppConfigurationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ManagedDeviceMobileAppConfigurationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ManagedDeviceMobileAppConfigurationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ManagedDeviceMobileAppConfigurationPolicySetItemModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ManagedDeviceMobileAppConfigurationPolicySetItemModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ManagedDeviceMobileAppConfigurationPolicySetItemModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ManagedDeviceMobileAppConfigurationPolicySetItemModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ManagedDeviceMobileAppConfigurationRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/ManagedDeviceMobileAppConfigurationRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/ManagedDeviceMobileAppConfigurationRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ManagedDeviceMobileAppConfigurationRequest.go index 93c594e49c..f4997a9839 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ManagedDeviceMobileAppConfigurationRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/ManagedDeviceMobileAppConfigurationRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // ManagedDeviceMobileAppConfigurationRequestBuilder is request builder for ManagedDeviceMobileAppConfiguration diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ManagedDeviceMobileAppConfigurationStateModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ManagedDeviceMobileAppConfigurationStateModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ManagedDeviceMobileAppConfigurationStateModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ManagedDeviceMobileAppConfigurationStateModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ManagedDeviceMobileAppConfigurationStateRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/ManagedDeviceMobileAppConfigurationStateRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ManagedDeviceMobileAppConfigurationStateRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ManagedDeviceMobileAppConfigurationStateRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ManagedDeviceMobileAppConfigurationUserStatusModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ManagedDeviceMobileAppConfigurationUserStatusModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ManagedDeviceMobileAppConfigurationUserStatusModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ManagedDeviceMobileAppConfigurationUserStatusModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ManagedDeviceMobileAppConfigurationUserStatusRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/ManagedDeviceMobileAppConfigurationUserStatusRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ManagedDeviceMobileAppConfigurationUserStatusRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ManagedDeviceMobileAppConfigurationUserStatusRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ManagedDeviceMobileAppConfigurationUserSummaryModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ManagedDeviceMobileAppConfigurationUserSummaryModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ManagedDeviceMobileAppConfigurationUserSummaryModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ManagedDeviceMobileAppConfigurationUserSummaryModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ManagedDeviceMobileAppConfigurationUserSummaryRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/ManagedDeviceMobileAppConfigurationUserSummaryRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ManagedDeviceMobileAppConfigurationUserSummaryRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ManagedDeviceMobileAppConfigurationUserSummaryRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ManagedDeviceModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ManagedDeviceModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ManagedDeviceModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ManagedDeviceModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ManagedDeviceModelsAndManufacturersModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ManagedDeviceModelsAndManufacturersModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ManagedDeviceModelsAndManufacturersModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ManagedDeviceModelsAndManufacturersModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ManagedDeviceOverviewModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ManagedDeviceOverviewModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ManagedDeviceOverviewModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ManagedDeviceOverviewModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ManagedDeviceOverviewRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/ManagedDeviceOverviewRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ManagedDeviceOverviewRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ManagedDeviceOverviewRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ManagedDeviceOwnerTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/ManagedDeviceOwnerTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ManagedDeviceOwnerTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ManagedDeviceOwnerTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ManagedDevicePartnerReportedHealthStateEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/ManagedDevicePartnerReportedHealthStateEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ManagedDevicePartnerReportedHealthStateEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ManagedDevicePartnerReportedHealthStateEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ManagedDeviceRemoteActionEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/ManagedDeviceRemoteActionEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ManagedDeviceRemoteActionEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ManagedDeviceRemoteActionEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ManagedDeviceReportedAppModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ManagedDeviceReportedAppModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ManagedDeviceReportedAppModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ManagedDeviceReportedAppModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ManagedDeviceRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/ManagedDeviceRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/ManagedDeviceRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ManagedDeviceRequest.go index 6dcc3a86be..216679bdac 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ManagedDeviceRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/ManagedDeviceRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // ManagedDeviceRequestBuilder is request builder for ManagedDevice diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ManagedEBookAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/ManagedEBookAction.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ManagedEBookAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ManagedEBookAction.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ManagedEBookAssignmentModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ManagedEBookAssignmentModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ManagedEBookAssignmentModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ManagedEBookAssignmentModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ManagedEBookAssignmentRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/ManagedEBookAssignmentRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ManagedEBookAssignmentRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ManagedEBookAssignmentRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ManagedEBookCategoryModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ManagedEBookCategoryModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ManagedEBookCategoryModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ManagedEBookCategoryModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ManagedEBookCategoryRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/ManagedEBookCategoryRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ManagedEBookCategoryRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ManagedEBookCategoryRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ManagedEBookModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ManagedEBookModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ManagedEBookModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ManagedEBookModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ManagedEBookRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/ManagedEBookRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/ManagedEBookRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ManagedEBookRequest.go index 440d968c1d..04e5a8f712 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ManagedEBookRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/ManagedEBookRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // ManagedEBookRequestBuilder is request builder for ManagedEBook diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ManagedIOSLobAppModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ManagedIOSLobAppModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ManagedIOSLobAppModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ManagedIOSLobAppModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ManagedIOSStoreAppModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ManagedIOSStoreAppModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ManagedIOSStoreAppModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ManagedIOSStoreAppModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ManagedMobileAppModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ManagedMobileAppModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ManagedMobileAppModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ManagedMobileAppModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ManagedMobileAppRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/ManagedMobileAppRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ManagedMobileAppRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ManagedMobileAppRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ManagedMobileLobAppModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ManagedMobileLobAppModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ManagedMobileLobAppModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ManagedMobileLobAppModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ManagedMobileLobAppRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/ManagedMobileLobAppRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/ManagedMobileLobAppRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ManagedMobileLobAppRequest.go index 9294eb924f..f3def29685 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ManagedMobileLobAppRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/ManagedMobileLobAppRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // ManagedMobileLobAppRequestBuilder is request builder for ManagedMobileLobApp diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ManagementAgentTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/ManagementAgentTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ManagementAgentTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ManagementAgentTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ManagementCertificateWithThumbprintModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ManagementCertificateWithThumbprintModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ManagementCertificateWithThumbprintModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ManagementCertificateWithThumbprintModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ManagementConditionExpressionModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ManagementConditionExpressionModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ManagementConditionExpressionModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ManagementConditionExpressionModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ManagementConditionExpressionModelModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ManagementConditionExpressionModelModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ManagementConditionExpressionModelModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ManagementConditionExpressionModelModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ManagementConditionExpressionStringModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ManagementConditionExpressionStringModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ManagementConditionExpressionStringModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ManagementConditionExpressionStringModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ManagementConditionModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ManagementConditionModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ManagementConditionModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ManagementConditionModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ManagementConditionRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/ManagementConditionRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/ManagementConditionRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ManagementConditionRequest.go index 653a4b19a9..45056a7ce6 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ManagementConditionRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/ManagementConditionRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // ManagementConditionRequestBuilder is request builder for ManagementCondition diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ManagementConditionStatementModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ManagementConditionStatementModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ManagementConditionStatementModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ManagementConditionStatementModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ManagementConditionStatementRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/ManagementConditionStatementRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/ManagementConditionStatementRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ManagementConditionStatementRequest.go index c932549a14..82edde02d3 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ManagementConditionStatementRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/ManagementConditionStatementRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // ManagementConditionStatementRequestBuilder is request builder for ManagementConditionStatement diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ManagementStateEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/ManagementStateEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ManagementStateEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ManagementStateEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MarkContentModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/MarkContentModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MarkContentModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MarkContentModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MatchLocationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/MatchLocationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MatchLocationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MatchLocationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MatchingDlpRuleModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/MatchingDlpRuleModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MatchingDlpRuleModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MatchingDlpRuleModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MatchingLabelModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/MatchingLabelModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MatchingLabelModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MatchingLabelModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MdmAppConfigKeyTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/MdmAppConfigKeyTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MdmAppConfigKeyTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MdmAppConfigKeyTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MdmAuthorityEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/MdmAuthorityEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MdmAuthorityEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MdmAuthorityEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MdmWindowsInformationProtectionPolicyAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/MdmWindowsInformationProtectionPolicyAction.go similarity index 98% rename from vendor/github.com/yaegashi/msgraph.go/beta/MdmWindowsInformationProtectionPolicyAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MdmWindowsInformationProtectionPolicyAction.go index 540c160d14..182fee3234 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/MdmWindowsInformationProtectionPolicyAction.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/MdmWindowsInformationProtectionPolicyAction.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // MdmWindowsInformationProtectionPolicyCollectionHasPayloadLinksRequestParameter undocumented diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MdmWindowsInformationProtectionPolicyModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/MdmWindowsInformationProtectionPolicyModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MdmWindowsInformationProtectionPolicyModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MdmWindowsInformationProtectionPolicyModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MdmWindowsInformationProtectionPolicyPolicySetItemModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/MdmWindowsInformationProtectionPolicyPolicySetItemModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MdmWindowsInformationProtectionPolicyPolicySetItemModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MdmWindowsInformationProtectionPolicyPolicySetItemModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MdmWindowsInformationProtectionPolicyRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/MdmWindowsInformationProtectionPolicyRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MdmWindowsInformationProtectionPolicyRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MdmWindowsInformationProtectionPolicyRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MediaConfigModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/MediaConfigModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MediaConfigModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MediaConfigModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MediaContentRatingAustraliaModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/MediaContentRatingAustraliaModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MediaContentRatingAustraliaModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MediaContentRatingAustraliaModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MediaContentRatingCanadaModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/MediaContentRatingCanadaModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MediaContentRatingCanadaModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MediaContentRatingCanadaModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MediaContentRatingFranceModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/MediaContentRatingFranceModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MediaContentRatingFranceModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MediaContentRatingFranceModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MediaContentRatingGermanyModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/MediaContentRatingGermanyModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MediaContentRatingGermanyModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MediaContentRatingGermanyModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MediaContentRatingIrelandModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/MediaContentRatingIrelandModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MediaContentRatingIrelandModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MediaContentRatingIrelandModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MediaContentRatingJapanModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/MediaContentRatingJapanModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MediaContentRatingJapanModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MediaContentRatingJapanModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MediaContentRatingNewZealandModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/MediaContentRatingNewZealandModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MediaContentRatingNewZealandModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MediaContentRatingNewZealandModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MediaContentRatingUnitedKingdomModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/MediaContentRatingUnitedKingdomModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MediaContentRatingUnitedKingdomModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MediaContentRatingUnitedKingdomModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MediaContentRatingUnitedStatesModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/MediaContentRatingUnitedStatesModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MediaContentRatingUnitedStatesModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MediaContentRatingUnitedStatesModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MediaDirectionEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/MediaDirectionEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MediaDirectionEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MediaDirectionEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MediaInfoModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/MediaInfoModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MediaInfoModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MediaInfoModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MediaPromptModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/MediaPromptModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MediaPromptModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MediaPromptModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MediaStateEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/MediaStateEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MediaStateEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MediaStateEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MediaStreamModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/MediaStreamModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MediaStreamModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MediaStreamModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MeetingActivityStatisticsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/MeetingActivityStatisticsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MeetingActivityStatisticsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MeetingActivityStatisticsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MeetingCapabilitiesEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/MeetingCapabilitiesEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MeetingCapabilitiesEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MeetingCapabilitiesEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MeetingCapabilityModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/MeetingCapabilityModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MeetingCapabilityModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MeetingCapabilityModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MeetingInfoModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/MeetingInfoModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MeetingInfoModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MeetingInfoModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MeetingMessageTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/MeetingMessageTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MeetingMessageTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MeetingMessageTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MeetingParticipantInfoModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/MeetingParticipantInfoModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MeetingParticipantInfoModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MeetingParticipantInfoModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MeetingParticipantsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/MeetingParticipantsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MeetingParticipantsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MeetingParticipantsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MeetingTimeSuggestionModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/MeetingTimeSuggestionModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MeetingTimeSuggestionModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MeetingTimeSuggestionModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MeetingTimeSuggestionsResultModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/MeetingTimeSuggestionsResultModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MeetingTimeSuggestionsResultModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MeetingTimeSuggestionsResultModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MembershipRuleEvaluationDetailsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/MembershipRuleEvaluationDetailsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MembershipRuleEvaluationDetailsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MembershipRuleEvaluationDetailsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MentionActionModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/MentionActionModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MentionActionModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MentionActionModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MentionModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/MentionModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MentionModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MentionModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MentionRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/MentionRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MentionRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MentionRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MentionsPreviewModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/MentionsPreviewModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MentionsPreviewModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MentionsPreviewModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MessageAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/MessageAction.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MessageAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MessageAction.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MessageActionFlagEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/MessageActionFlagEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MessageActionFlagEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MessageActionFlagEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MessageModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/MessageModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MessageModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MessageModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MessageRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/MessageRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/MessageRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MessageRequest.go index 4ff3332c9c..04b19678cd 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/MessageRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/MessageRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // MessageRequestBuilder is request builder for Message diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MessageRuleActionsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/MessageRuleActionsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MessageRuleActionsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MessageRuleActionsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MessageRuleModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/MessageRuleModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MessageRuleModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MessageRuleModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MessageRulePredicatesModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/MessageRulePredicatesModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MessageRulePredicatesModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MessageRulePredicatesModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MessageRuleRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/MessageRuleRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MessageRuleRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MessageRuleRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MetadataActionModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/MetadataActionModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MetadataActionModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MetadataActionModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MetadataEntryModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/MetadataEntryModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MetadataEntryModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MetadataEntryModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MeteredConnectionLimitTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/MeteredConnectionLimitTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MeteredConnectionLimitTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MeteredConnectionLimitTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MfaDetailModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/MfaDetailModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MfaDetailModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MfaDetailModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MicrosoftEdgeChannelEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/MicrosoftEdgeChannelEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MicrosoftEdgeChannelEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MicrosoftEdgeChannelEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MicrosoftStoreForBusinessAppAssignmentSettingsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/MicrosoftStoreForBusinessAppAssignmentSettingsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MicrosoftStoreForBusinessAppAssignmentSettingsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MicrosoftStoreForBusinessAppAssignmentSettingsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MicrosoftStoreForBusinessAppModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/MicrosoftStoreForBusinessAppModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MicrosoftStoreForBusinessAppModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MicrosoftStoreForBusinessAppModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MicrosoftStoreForBusinessAppRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/MicrosoftStoreForBusinessAppRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/MicrosoftStoreForBusinessAppRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MicrosoftStoreForBusinessAppRequest.go index 5a899f0e7c..14e63d3794 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/MicrosoftStoreForBusinessAppRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/MicrosoftStoreForBusinessAppRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // MicrosoftStoreForBusinessAppRequestBuilder is request builder for MicrosoftStoreForBusinessApp diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MicrosoftStoreForBusinessContainedAppModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/MicrosoftStoreForBusinessContainedAppModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MicrosoftStoreForBusinessContainedAppModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MicrosoftStoreForBusinessContainedAppModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MicrosoftStoreForBusinessLicenseTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/MicrosoftStoreForBusinessLicenseTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MicrosoftStoreForBusinessLicenseTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MicrosoftStoreForBusinessLicenseTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MicrosoftStoreForBusinessPortalSelectionOptionsEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/MicrosoftStoreForBusinessPortalSelectionOptionsEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MicrosoftStoreForBusinessPortalSelectionOptionsEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MicrosoftStoreForBusinessPortalSelectionOptionsEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MigrationStatusEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/MigrationStatusEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MigrationStatusEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MigrationStatusEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MimeContentModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/MimeContentModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MimeContentModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MimeContentModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MiracastChannelEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/MiracastChannelEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MiracastChannelEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MiracastChannelEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MobileAppAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/MobileAppAction.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/MobileAppAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MobileAppAction.go index 50dd490f59..fe3fda41df 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/MobileAppAction.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/MobileAppAction.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // MobileAppCollectionHasPayloadLinksRequestParameter undocumented diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MobileAppActionTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/MobileAppActionTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MobileAppActionTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MobileAppActionTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MobileAppAssignmentModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/MobileAppAssignmentModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MobileAppAssignmentModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MobileAppAssignmentModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MobileAppAssignmentRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/MobileAppAssignmentRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MobileAppAssignmentRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MobileAppAssignmentRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MobileAppAssignmentSettingsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/MobileAppAssignmentSettingsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MobileAppAssignmentSettingsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MobileAppAssignmentSettingsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MobileAppCategoryModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/MobileAppCategoryModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MobileAppCategoryModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MobileAppCategoryModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MobileAppCategoryRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/MobileAppCategoryRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MobileAppCategoryRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MobileAppCategoryRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MobileAppContentFileAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/MobileAppContentFileAction.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MobileAppContentFileAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MobileAppContentFileAction.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MobileAppContentFileModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/MobileAppContentFileModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MobileAppContentFileModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MobileAppContentFileModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MobileAppContentFileRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/MobileAppContentFileRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MobileAppContentFileRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MobileAppContentFileRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MobileAppContentFileUploadStateEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/MobileAppContentFileUploadStateEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MobileAppContentFileUploadStateEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MobileAppContentFileUploadStateEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MobileAppContentModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/MobileAppContentModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MobileAppContentModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MobileAppContentModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MobileAppContentRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/MobileAppContentRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/MobileAppContentRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MobileAppContentRequest.go index a8aff6a9f0..972e740032 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/MobileAppContentRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/MobileAppContentRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // MobileAppContentRequestBuilder is request builder for MobileAppContent diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MobileAppDependencyModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/MobileAppDependencyModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MobileAppDependencyModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MobileAppDependencyModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MobileAppDependencyTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/MobileAppDependencyTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MobileAppDependencyTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MobileAppDependencyTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MobileAppIdentifierModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/MobileAppIdentifierModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MobileAppIdentifierModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MobileAppIdentifierModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MobileAppInstallStatusModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/MobileAppInstallStatusModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MobileAppInstallStatusModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MobileAppInstallStatusModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MobileAppInstallStatusRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/MobileAppInstallStatusRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MobileAppInstallStatusRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MobileAppInstallStatusRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MobileAppInstallSummaryModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/MobileAppInstallSummaryModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MobileAppInstallSummaryModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MobileAppInstallSummaryModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MobileAppInstallSummaryRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/MobileAppInstallSummaryRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MobileAppInstallSummaryRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MobileAppInstallSummaryRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MobileAppInstallTimeSettingsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/MobileAppInstallTimeSettingsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MobileAppInstallTimeSettingsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MobileAppInstallTimeSettingsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MobileAppIntentAndStateDetailModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/MobileAppIntentAndStateDetailModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MobileAppIntentAndStateDetailModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MobileAppIntentAndStateDetailModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MobileAppIntentAndStateModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/MobileAppIntentAndStateModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MobileAppIntentAndStateModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MobileAppIntentAndStateModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MobileAppIntentAndStateRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/MobileAppIntentAndStateRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MobileAppIntentAndStateRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MobileAppIntentAndStateRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MobileAppIntentEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/MobileAppIntentEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MobileAppIntentEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MobileAppIntentEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MobileAppModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/MobileAppModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MobileAppModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MobileAppModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MobileAppPolicySetItemModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/MobileAppPolicySetItemModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MobileAppPolicySetItemModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MobileAppPolicySetItemModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MobileAppProvisioningConfigGroupAssignmentModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/MobileAppProvisioningConfigGroupAssignmentModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MobileAppProvisioningConfigGroupAssignmentModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MobileAppProvisioningConfigGroupAssignmentModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MobileAppProvisioningConfigGroupAssignmentRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/MobileAppProvisioningConfigGroupAssignmentRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MobileAppProvisioningConfigGroupAssignmentRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MobileAppProvisioningConfigGroupAssignmentRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MobileAppPublishingStateEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/MobileAppPublishingStateEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MobileAppPublishingStateEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MobileAppPublishingStateEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MobileAppRelationshipModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/MobileAppRelationshipModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MobileAppRelationshipModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MobileAppRelationshipModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MobileAppRelationshipRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/MobileAppRelationshipRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MobileAppRelationshipRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MobileAppRelationshipRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MobileAppRelationshipStateModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/MobileAppRelationshipStateModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MobileAppRelationshipStateModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MobileAppRelationshipStateModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MobileAppRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/MobileAppRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/MobileAppRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MobileAppRequest.go index cb2544c939..da24423803 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/MobileAppRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/MobileAppRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // MobileAppRequestBuilder is request builder for MobileApp diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MobileAppSupportedDeviceTypeModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/MobileAppSupportedDeviceTypeModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MobileAppSupportedDeviceTypeModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MobileAppSupportedDeviceTypeModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MobileAppTroubleshootingAppPolicyCreationHistoryModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/MobileAppTroubleshootingAppPolicyCreationHistoryModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MobileAppTroubleshootingAppPolicyCreationHistoryModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MobileAppTroubleshootingAppPolicyCreationHistoryModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MobileAppTroubleshootingAppStateHistoryModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/MobileAppTroubleshootingAppStateHistoryModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MobileAppTroubleshootingAppStateHistoryModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MobileAppTroubleshootingAppStateHistoryModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MobileAppTroubleshootingAppTargetHistoryModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/MobileAppTroubleshootingAppTargetHistoryModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MobileAppTroubleshootingAppTargetHistoryModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MobileAppTroubleshootingAppTargetHistoryModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MobileAppTroubleshootingAppUpdateHistoryModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/MobileAppTroubleshootingAppUpdateHistoryModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MobileAppTroubleshootingAppUpdateHistoryModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MobileAppTroubleshootingAppUpdateHistoryModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MobileAppTroubleshootingDeviceCheckinHistoryModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/MobileAppTroubleshootingDeviceCheckinHistoryModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MobileAppTroubleshootingDeviceCheckinHistoryModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MobileAppTroubleshootingDeviceCheckinHistoryModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MobileAppTroubleshootingEventModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/MobileAppTroubleshootingEventModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MobileAppTroubleshootingEventModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MobileAppTroubleshootingEventModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MobileAppTroubleshootingEventRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/MobileAppTroubleshootingEventRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/MobileAppTroubleshootingEventRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MobileAppTroubleshootingEventRequest.go index ed4549e7b4..6ed09ca73a 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/MobileAppTroubleshootingEventRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/MobileAppTroubleshootingEventRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // MobileAppTroubleshootingEventRequestBuilder is request builder for MobileAppTroubleshootingEvent diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MobileAppTroubleshootingHistoryItemModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/MobileAppTroubleshootingHistoryItemModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MobileAppTroubleshootingHistoryItemModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MobileAppTroubleshootingHistoryItemModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MobileContainedAppModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/MobileContainedAppModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MobileContainedAppModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MobileContainedAppModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MobileContainedAppRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/MobileContainedAppRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MobileContainedAppRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MobileContainedAppRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MobileLobAppModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/MobileLobAppModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MobileLobAppModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MobileLobAppModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MobileLobAppRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/MobileLobAppRequest.go similarity index 98% rename from vendor/github.com/yaegashi/msgraph.go/beta/MobileLobAppRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MobileLobAppRequest.go index 739a9a9364..378d21ac47 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/MobileLobAppRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/MobileLobAppRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // MobileLobAppRequestBuilder is request builder for MobileLobApp diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MobileThreatDefenseConnectorModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/MobileThreatDefenseConnectorModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MobileThreatDefenseConnectorModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MobileThreatDefenseConnectorModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MobileThreatDefenseConnectorRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/MobileThreatDefenseConnectorRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MobileThreatDefenseConnectorRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MobileThreatDefenseConnectorRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MobileThreatPartnerTenantStateEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/MobileThreatPartnerTenantStateEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MobileThreatPartnerTenantStateEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MobileThreatPartnerTenantStateEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModalityEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/ModalityEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ModalityEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ModalityEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModifiedPropertyModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ModifiedPropertyModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ModifiedPropertyModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ModifiedPropertyModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MoveActionModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/MoveActionModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MoveActionModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MoveActionModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MultiValueLegacyExtendedPropertyModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/MultiValueLegacyExtendedPropertyModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MultiValueLegacyExtendedPropertyModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MultiValueLegacyExtendedPropertyModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MultiValueLegacyExtendedPropertyRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/MultiValueLegacyExtendedPropertyRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MultiValueLegacyExtendedPropertyRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MultiValueLegacyExtendedPropertyRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MutabilityEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/MutabilityEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MutabilityEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MutabilityEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MuteParticipantOperationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/MuteParticipantOperationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MuteParticipantOperationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MuteParticipantOperationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MuteParticipantsOperationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/MuteParticipantsOperationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/MuteParticipantsOperationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/MuteParticipantsOperationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/NamedLocationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/NamedLocationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/NamedLocationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/NamedLocationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/NamedLocationRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/NamedLocationRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/NamedLocationRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/NamedLocationRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/NdesConnectorModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/NdesConnectorModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/NdesConnectorModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/NdesConnectorModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/NdesConnectorRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/NdesConnectorRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/NdesConnectorRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/NdesConnectorRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/NdesConnectorStateEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/NdesConnectorStateEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/NdesConnectorStateEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/NdesConnectorStateEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/NetworkConnectionModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/NetworkConnectionModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/NetworkConnectionModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/NetworkConnectionModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/NetworkIPv4ConfigurationManagementConditionModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/NetworkIPv4ConfigurationManagementConditionModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/NetworkIPv4ConfigurationManagementConditionModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/NetworkIPv4ConfigurationManagementConditionModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/NetworkIPv6ConfigurationManagementConditionModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/NetworkIPv6ConfigurationManagementConditionModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/NetworkIPv6ConfigurationManagementConditionModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/NetworkIPv6ConfigurationManagementConditionModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/NetworkInterfaceModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/NetworkInterfaceModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/NetworkInterfaceModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/NetworkInterfaceModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/NetworkLocationDetailModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/NetworkLocationDetailModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/NetworkLocationDetailModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/NetworkLocationDetailModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/NetworkManagementConditionModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/NetworkManagementConditionModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/NetworkManagementConditionModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/NetworkManagementConditionModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/NetworkSingleSignOnTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/NetworkSingleSignOnTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/NetworkSingleSignOnTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/NetworkSingleSignOnTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/NetworkTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/NetworkTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/NetworkTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/NetworkTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/NonEapAuthenticationMethodForEapTtlsTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/NonEapAuthenticationMethodForEapTtlsTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/NonEapAuthenticationMethodForEapTtlsTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/NonEapAuthenticationMethodForEapTtlsTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/NonEapAuthenticationMethodForPeapEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/NonEapAuthenticationMethodForPeapEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/NonEapAuthenticationMethodForPeapEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/NonEapAuthenticationMethodForPeapEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/NotebookAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/NotebookAction.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/NotebookAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/NotebookAction.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/NotebookLinksModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/NotebookLinksModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/NotebookLinksModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/NotebookLinksModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/NotebookModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/NotebookModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/NotebookModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/NotebookModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/NotebookRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/NotebookRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/NotebookRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/NotebookRequest.go index ab2c6ea9a5..4234ade42c 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/NotebookRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/NotebookRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // NotebookRequestBuilder is request builder for Notebook diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/NotificationMessageTemplateAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/NotificationMessageTemplateAction.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/NotificationMessageTemplateAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/NotificationMessageTemplateAction.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/NotificationMessageTemplateModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/NotificationMessageTemplateModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/NotificationMessageTemplateModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/NotificationMessageTemplateModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/NotificationMessageTemplateRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/NotificationMessageTemplateRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/NotificationMessageTemplateRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/NotificationMessageTemplateRequest.go index 3132ea51dd..ae9a80ab1c 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/NotificationMessageTemplateRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/NotificationMessageTemplateRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // NotificationMessageTemplateRequestBuilder is request builder for NotificationMessageTemplate diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/NotificationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/NotificationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/NotificationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/NotificationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/NotificationRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/NotificationRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/NotificationRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/NotificationRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/NotificationTemplateBrandingOptionsEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/NotificationTemplateBrandingOptionsEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/NotificationTemplateBrandingOptionsEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/NotificationTemplateBrandingOptionsEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/NotifyUserActionModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/NotifyUserActionModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/NotifyUserActionModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/NotifyUserActionModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/NumberColumnModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/NumberColumnModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/NumberColumnModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/NumberColumnModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/NumberRangeModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/NumberRangeModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/NumberRangeModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/NumberRangeModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/OAuth2PermissionGrantModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/OAuth2PermissionGrantModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/OAuth2PermissionGrantModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/OAuth2PermissionGrantModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/OAuth2PermissionGrantRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/OAuth2PermissionGrantRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/OAuth2PermissionGrantRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/OAuth2PermissionGrantRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/OMASettingBase64Model.go b/vendor/github.com/matterbridge/msgraph.go/beta/OMASettingBase64Model.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/OMASettingBase64Model.go rename to vendor/github.com/matterbridge/msgraph.go/beta/OMASettingBase64Model.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/OMASettingBooleanModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/OMASettingBooleanModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/OMASettingBooleanModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/OMASettingBooleanModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/OMASettingDateTimeModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/OMASettingDateTimeModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/OMASettingDateTimeModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/OMASettingDateTimeModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/OMASettingFloatingPointModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/OMASettingFloatingPointModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/OMASettingFloatingPointModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/OMASettingFloatingPointModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/OMASettingIntegerModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/OMASettingIntegerModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/OMASettingIntegerModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/OMASettingIntegerModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/OMASettingModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/OMASettingModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/OMASettingModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/OMASettingModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/OMASettingStringModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/OMASettingStringModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/OMASettingStringModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/OMASettingStringModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/OMASettingStringXMLModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/OMASettingStringXMLModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/OMASettingStringXMLModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/OMASettingStringXMLModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ObjectDefinitionModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ObjectDefinitionModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ObjectDefinitionModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ObjectDefinitionModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ObjectFlowTypesEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/ObjectFlowTypesEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ObjectFlowTypesEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ObjectFlowTypesEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ObjectIdentityModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ObjectIdentityModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ObjectIdentityModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ObjectIdentityModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ObjectMappingModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ObjectMappingModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ObjectMappingModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ObjectMappingModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/Office365ActivationCountsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/Office365ActivationCountsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/Office365ActivationCountsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/Office365ActivationCountsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/Office365ActivationsUserCountsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/Office365ActivationsUserCountsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/Office365ActivationsUserCountsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/Office365ActivationsUserCountsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/Office365ActivationsUserDetailModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/Office365ActivationsUserDetailModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/Office365ActivationsUserDetailModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/Office365ActivationsUserDetailModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/Office365ActiveUserCountsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/Office365ActiveUserCountsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/Office365ActiveUserCountsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/Office365ActiveUserCountsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/Office365ActiveUserDetailModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/Office365ActiveUserDetailModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/Office365ActiveUserDetailModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/Office365ActiveUserDetailModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/Office365GroupsActivityCountsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/Office365GroupsActivityCountsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/Office365GroupsActivityCountsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/Office365GroupsActivityCountsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/Office365GroupsActivityDetailModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/Office365GroupsActivityDetailModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/Office365GroupsActivityDetailModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/Office365GroupsActivityDetailModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/Office365GroupsActivityFileCountsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/Office365GroupsActivityFileCountsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/Office365GroupsActivityFileCountsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/Office365GroupsActivityFileCountsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/Office365GroupsActivityGroupCountsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/Office365GroupsActivityGroupCountsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/Office365GroupsActivityGroupCountsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/Office365GroupsActivityGroupCountsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/Office365GroupsActivityStorageModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/Office365GroupsActivityStorageModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/Office365GroupsActivityStorageModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/Office365GroupsActivityStorageModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/Office365ServicesUserCountsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/Office365ServicesUserCountsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/Office365ServicesUserCountsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/Office365ServicesUserCountsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/OfficeClientCheckinStatusModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/OfficeClientCheckinStatusModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/OfficeClientCheckinStatusModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/OfficeClientCheckinStatusModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/OfficeClientConfigurationAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/OfficeClientConfigurationAction.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/OfficeClientConfigurationAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/OfficeClientConfigurationAction.go index e156c4b97b..e1707c3c95 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/OfficeClientConfigurationAction.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/OfficeClientConfigurationAction.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // OfficeClientConfigurationCollectionUpdatePrioritiesRequestParameter undocumented diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/OfficeClientConfigurationAssignmentModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/OfficeClientConfigurationAssignmentModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/OfficeClientConfigurationAssignmentModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/OfficeClientConfigurationAssignmentModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/OfficeClientConfigurationAssignmentRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/OfficeClientConfigurationAssignmentRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/OfficeClientConfigurationAssignmentRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/OfficeClientConfigurationAssignmentRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/OfficeClientConfigurationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/OfficeClientConfigurationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/OfficeClientConfigurationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/OfficeClientConfigurationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/OfficeClientConfigurationRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/OfficeClientConfigurationRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/OfficeClientConfigurationRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/OfficeClientConfigurationRequest.go index 339a87ca95..c4b6f6d59a 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/OfficeClientConfigurationRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/OfficeClientConfigurationRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // OfficeClientConfigurationRequestBuilder is request builder for OfficeClientConfiguration diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/OfficeConfigurationAssignmentTargetModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/OfficeConfigurationAssignmentTargetModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/OfficeConfigurationAssignmentTargetModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/OfficeConfigurationAssignmentTargetModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/OfficeConfigurationGroupAssignmentTargetModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/OfficeConfigurationGroupAssignmentTargetModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/OfficeConfigurationGroupAssignmentTargetModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/OfficeConfigurationGroupAssignmentTargetModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/OfficeConfigurationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/OfficeConfigurationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/OfficeConfigurationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/OfficeConfigurationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/OfficeConfigurationRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/OfficeConfigurationRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/OfficeConfigurationRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/OfficeConfigurationRequest.go index deffe47b27..cc6b5d4aca 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/OfficeConfigurationRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/OfficeConfigurationRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // OfficeConfigurationRequestBuilder is request builder for OfficeConfiguration diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/OfficeGraphInsightsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/OfficeGraphInsightsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/OfficeGraphInsightsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/OfficeGraphInsightsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/OfficeGraphInsightsRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/OfficeGraphInsightsRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/OfficeGraphInsightsRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/OfficeGraphInsightsRequest.go index ac9310aa2c..4363ad4a56 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/OfficeGraphInsightsRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/OfficeGraphInsightsRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // OfficeGraphInsightsRequestBuilder is request builder for OfficeGraphInsights diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/OfficeProductIDEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/OfficeProductIDEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/OfficeProductIDEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/OfficeProductIDEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/OfficeSuiteAppModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/OfficeSuiteAppModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/OfficeSuiteAppModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/OfficeSuiteAppModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/OfficeSuiteInstallProgressDisplayLevelEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/OfficeSuiteInstallProgressDisplayLevelEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/OfficeSuiteInstallProgressDisplayLevelEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/OfficeSuiteInstallProgressDisplayLevelEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/OfficeUpdateChannelEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/OfficeUpdateChannelEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/OfficeUpdateChannelEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/OfficeUpdateChannelEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/OfficeUserCheckinSummaryModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/OfficeUserCheckinSummaryModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/OfficeUserCheckinSummaryModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/OfficeUserCheckinSummaryModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/OnPremisesAgentGroupModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/OnPremisesAgentGroupModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/OnPremisesAgentGroupModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/OnPremisesAgentGroupModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/OnPremisesAgentGroupRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/OnPremisesAgentGroupRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/OnPremisesAgentGroupRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/OnPremisesAgentGroupRequest.go index 2a7cce8677..214557859b 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/OnPremisesAgentGroupRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/OnPremisesAgentGroupRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // OnPremisesAgentGroupRequestBuilder is request builder for OnPremisesAgentGroup diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/OnPremisesAgentModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/OnPremisesAgentModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/OnPremisesAgentModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/OnPremisesAgentModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/OnPremisesAgentRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/OnPremisesAgentRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/OnPremisesAgentRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/OnPremisesAgentRequest.go index d7b42645ae..f2a672095b 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/OnPremisesAgentRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/OnPremisesAgentRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // OnPremisesAgentRequestBuilder is request builder for OnPremisesAgent diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/OnPremisesConditionalAccessSettingsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/OnPremisesConditionalAccessSettingsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/OnPremisesConditionalAccessSettingsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/OnPremisesConditionalAccessSettingsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/OnPremisesConditionalAccessSettingsRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/OnPremisesConditionalAccessSettingsRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/OnPremisesConditionalAccessSettingsRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/OnPremisesConditionalAccessSettingsRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/OnPremisesExtensionAttributesModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/OnPremisesExtensionAttributesModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/OnPremisesExtensionAttributesModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/OnPremisesExtensionAttributesModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/OnPremisesProvisioningErrorModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/OnPremisesProvisioningErrorModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/OnPremisesProvisioningErrorModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/OnPremisesProvisioningErrorModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/OnPremisesPublishingProfileModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/OnPremisesPublishingProfileModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/OnPremisesPublishingProfileModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/OnPremisesPublishingProfileModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/OnPremisesPublishingProfileRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/OnPremisesPublishingProfileRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/OnPremisesPublishingProfileRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/OnPremisesPublishingProfileRequest.go index a7818ba7c0..bbcb2b7228 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/OnPremisesPublishingProfileRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/OnPremisesPublishingProfileRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // OnPremisesPublishingProfileRequestBuilder is request builder for OnPremisesPublishingProfile diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/OnPremisesPublishingTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/OnPremisesPublishingTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/OnPremisesPublishingTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/OnPremisesPublishingTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/OneDriveActivityUserDetailModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/OneDriveActivityUserDetailModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/OneDriveActivityUserDetailModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/OneDriveActivityUserDetailModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/OneDriveUsageAccountCountsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/OneDriveUsageAccountCountsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/OneDriveUsageAccountCountsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/OneDriveUsageAccountCountsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/OneDriveUsageAccountDetailModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/OneDriveUsageAccountDetailModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/OneDriveUsageAccountDetailModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/OneDriveUsageAccountDetailModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/OneDriveUsageFileCountsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/OneDriveUsageFileCountsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/OneDriveUsageFileCountsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/OneDriveUsageFileCountsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/OnenoteEntityBaseModelModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/OnenoteEntityBaseModelModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/OnenoteEntityBaseModelModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/OnenoteEntityBaseModelModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/OnenoteEntityHierarchyModelModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/OnenoteEntityHierarchyModelModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/OnenoteEntityHierarchyModelModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/OnenoteEntityHierarchyModelModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/OnenoteEntitySchemaObjectModelModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/OnenoteEntitySchemaObjectModelModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/OnenoteEntitySchemaObjectModelModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/OnenoteEntitySchemaObjectModelModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/OnenoteModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/OnenoteModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/OnenoteModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/OnenoteModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/OnenoteOperationErrorModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/OnenoteOperationErrorModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/OnenoteOperationErrorModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/OnenoteOperationErrorModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/OnenoteOperationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/OnenoteOperationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/OnenoteOperationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/OnenoteOperationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/OnenoteOperationRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/OnenoteOperationRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/OnenoteOperationRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/OnenoteOperationRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/OnenotePageAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/OnenotePageAction.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/OnenotePageAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/OnenotePageAction.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/OnenotePageModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/OnenotePageModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/OnenotePageModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/OnenotePageModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/OnenotePagePreviewLinksModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/OnenotePagePreviewLinksModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/OnenotePagePreviewLinksModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/OnenotePagePreviewLinksModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/OnenotePagePreviewModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/OnenotePagePreviewModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/OnenotePagePreviewModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/OnenotePagePreviewModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/OnenotePageRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/OnenotePageRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/OnenotePageRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/OnenotePageRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/OnenotePatchActionTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/OnenotePatchActionTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/OnenotePatchActionTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/OnenotePatchActionTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/OnenotePatchContentCommandModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/OnenotePatchContentCommandModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/OnenotePatchContentCommandModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/OnenotePatchContentCommandModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/OnenotePatchInsertPositionEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/OnenotePatchInsertPositionEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/OnenotePatchInsertPositionEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/OnenotePatchInsertPositionEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/OnenoteRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/OnenoteRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/OnenoteRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/OnenoteRequest.go index 5100612ce0..6fac4f8d73 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/OnenoteRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/OnenoteRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // OnenoteRequestBuilder is request builder for Onenote diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/OnenoteResourceModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/OnenoteResourceModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/OnenoteResourceModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/OnenoteResourceModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/OnenoteResourceRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/OnenoteResourceRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/OnenoteResourceRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/OnenoteResourceRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/OnenoteSectionAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/OnenoteSectionAction.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/OnenoteSectionAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/OnenoteSectionAction.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/OnenoteSectionModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/OnenoteSectionModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/OnenoteSectionModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/OnenoteSectionModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/OnenoteSectionRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/OnenoteSectionRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/OnenoteSectionRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/OnenoteSectionRequest.go index e533b59024..56838ad6a7 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/OnenoteSectionRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/OnenoteSectionRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // OnenoteSectionRequestBuilder is request builder for OnenoteSection diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/OnenoteSourceServiceEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/OnenoteSourceServiceEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/OnenoteSourceServiceEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/OnenoteSourceServiceEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/OnenoteUserRoleEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/OnenoteUserRoleEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/OnenoteUserRoleEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/OnenoteUserRoleEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/OnlineMeetingInfoModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/OnlineMeetingInfoModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/OnlineMeetingInfoModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/OnlineMeetingInfoModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/OnlineMeetingModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/OnlineMeetingModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/OnlineMeetingModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/OnlineMeetingModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/OnlineMeetingProviderTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/OnlineMeetingProviderTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/OnlineMeetingProviderTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/OnlineMeetingProviderTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/OnlineMeetingRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/OnlineMeetingRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/OnlineMeetingRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/OnlineMeetingRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/OpenShiftChangeRequestObjectModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/OpenShiftChangeRequestObjectModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/OpenShiftChangeRequestObjectModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/OpenShiftChangeRequestObjectModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/OpenShiftChangeRequestObjectRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/OpenShiftChangeRequestObjectRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/OpenShiftChangeRequestObjectRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/OpenShiftChangeRequestObjectRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/OpenShiftItemModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/OpenShiftItemModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/OpenShiftItemModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/OpenShiftItemModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/OpenShiftModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/OpenShiftModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/OpenShiftModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/OpenShiftModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/OpenShiftRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/OpenShiftRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/OpenShiftRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/OpenShiftRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/OpenTypeExtensionModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/OpenTypeExtensionModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/OpenTypeExtensionModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/OpenTypeExtensionModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/OpeningHoursSpecificationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/OpeningHoursSpecificationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/OpeningHoursSpecificationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/OpeningHoursSpecificationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/OperatingSystemVersionRangeModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/OperatingSystemVersionRangeModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/OperatingSystemVersionRangeModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/OperatingSystemVersionRangeModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/OperationErrorModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/OperationErrorModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/OperationErrorModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/OperationErrorModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/OperationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/OperationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/OperationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/OperationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/OperationResultEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/OperationResultEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/OperationResultEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/OperationResultEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/OperationStatusEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/OperationStatusEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/OperationStatusEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/OperationStatusEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/OptionalClaimModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/OptionalClaimModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/OptionalClaimModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/OptionalClaimModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/OptionalClaimsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/OptionalClaimsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/OptionalClaimsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/OptionalClaimsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/OrgContactModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/OrgContactModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/OrgContactModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/OrgContactModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/OrgContactRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/OrgContactRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/OrgContactRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/OrgContactRequest.go index 8e27eefd44..2f1f40f9c6 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/OrgContactRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/OrgContactRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // OrgContactRequestBuilder is request builder for OrgContact diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/OrganizationAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/OrganizationAction.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/OrganizationAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/OrganizationAction.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/OrganizationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/OrganizationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/OrganizationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/OrganizationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/OrganizationRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/OrganizationRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/OrganizationRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/OrganizationRequest.go index d342e5b5bf..bdac6b2d77 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/OrganizationRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/OrganizationRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // OrganizationRequestBuilder is request builder for Organization diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/OrganizationalBrandingModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/OrganizationalBrandingModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/OrganizationalBrandingModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/OrganizationalBrandingModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/OrganizationalBrandingRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/OrganizationalBrandingRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/OrganizationalBrandingRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/OrganizationalBrandingRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/OrganizerMeetingInfoModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/OrganizerMeetingInfoModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/OrganizerMeetingInfoModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/OrganizerMeetingInfoModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/OsVersionCountModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/OsVersionCountModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/OsVersionCountModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/OsVersionCountModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/OutOfBoxExperienceSettingsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/OutOfBoxExperienceSettingsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/OutOfBoxExperienceSettingsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/OutOfBoxExperienceSettingsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/OutgoingCallOptionsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/OutgoingCallOptionsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/OutgoingCallOptionsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/OutgoingCallOptionsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/OutlookCategoryModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/OutlookCategoryModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/OutlookCategoryModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/OutlookCategoryModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/OutlookCategoryRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/OutlookCategoryRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/OutlookCategoryRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/OutlookCategoryRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/OutlookGeoCoordinatesModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/OutlookGeoCoordinatesModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/OutlookGeoCoordinatesModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/OutlookGeoCoordinatesModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/OutlookItemModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/OutlookItemModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/OutlookItemModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/OutlookItemModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/OutlookItemRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/OutlookItemRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/OutlookItemRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/OutlookItemRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/OutlookTaskAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/OutlookTaskAction.go similarity index 98% rename from vendor/github.com/yaegashi/msgraph.go/beta/OutlookTaskAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/OutlookTaskAction.go index f004a6a517..e55b650b5d 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/OutlookTaskAction.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/OutlookTaskAction.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // OutlookTaskCompleteRequestParameter undocumented diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/OutlookTaskFolderModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/OutlookTaskFolderModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/OutlookTaskFolderModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/OutlookTaskFolderModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/OutlookTaskFolderRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/OutlookTaskFolderRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/OutlookTaskFolderRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/OutlookTaskFolderRequest.go index dc1151a6d8..c82110774a 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/OutlookTaskFolderRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/OutlookTaskFolderRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // OutlookTaskFolderRequestBuilder is request builder for OutlookTaskFolder diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/OutlookTaskGroupModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/OutlookTaskGroupModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/OutlookTaskGroupModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/OutlookTaskGroupModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/OutlookTaskGroupRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/OutlookTaskGroupRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/OutlookTaskGroupRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/OutlookTaskGroupRequest.go index dcd0c17f83..64eff5b215 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/OutlookTaskGroupRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/OutlookTaskGroupRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // OutlookTaskGroupRequestBuilder is request builder for OutlookTaskGroup diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/OutlookTaskModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/OutlookTaskModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/OutlookTaskModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/OutlookTaskModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/OutlookTaskRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/OutlookTaskRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/OutlookTaskRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/OutlookTaskRequest.go index f077cd6a09..9386f41546 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/OutlookTaskRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/OutlookTaskRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // OutlookTaskRequestBuilder is request builder for OutlookTask diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/OutlookUserModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/OutlookUserModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/OutlookUserModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/OutlookUserModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/OutlookUserRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/OutlookUserRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/OutlookUserRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/OutlookUserRequest.go index 44ee538f3e..755c67550f 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/OutlookUserRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/OutlookUserRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // OutlookUserRequestBuilder is request builder for OutlookUser diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/OverrideOptionEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/OverrideOptionEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/OverrideOptionEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/OverrideOptionEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/OwnerTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/OwnerTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/OwnerTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/OwnerTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PackageModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/PackageModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PackageModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PackageModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PageLinksModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/PageLinksModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PageLinksModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PageLinksModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PageOrientationEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/PageOrientationEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PageOrientationEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PageOrientationEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ParentalControlSettingsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ParentalControlSettingsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ParentalControlSettingsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ParentalControlSettingsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ParseExpressionResponseModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ParseExpressionResponseModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ParseExpressionResponseModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ParseExpressionResponseModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ParticipantAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/ParticipantAction.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ParticipantAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ParticipantAction.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ParticipantInfoModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ParticipantInfoModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ParticipantInfoModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ParticipantInfoModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ParticipantModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ParticipantModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ParticipantModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ParticipantModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ParticipantRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/ParticipantRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ParticipantRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ParticipantRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PasswordCredentialModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/PasswordCredentialModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PasswordCredentialModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PasswordCredentialModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PasswordProfileModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/PasswordProfileModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PasswordProfileModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PasswordProfileModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PasswordSingleSignOnCredentialSetModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/PasswordSingleSignOnCredentialSetModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PasswordSingleSignOnCredentialSetModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PasswordSingleSignOnCredentialSetModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PatternedRecurrenceModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/PatternedRecurrenceModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PatternedRecurrenceModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PatternedRecurrenceModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PayloadRequestObjectModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/PayloadRequestObjectModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PayloadRequestObjectModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PayloadRequestObjectModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PayloadResponseModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/PayloadResponseModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PayloadResponseModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PayloadResponseModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PayloadResponseRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/PayloadResponseRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PayloadResponseRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PayloadResponseRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PayloadTypesModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/PayloadTypesModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PayloadTypesModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PayloadTypesModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PaymentMethodModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/PaymentMethodModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PaymentMethodModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PaymentMethodModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PaymentMethodRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/PaymentMethodRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PaymentMethodRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PaymentMethodRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PaymentTermModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/PaymentTermModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PaymentTermModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PaymentTermModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PaymentTermRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/PaymentTermRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PaymentTermRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PaymentTermRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PendingContentUpdateModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/PendingContentUpdateModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PendingContentUpdateModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PendingContentUpdateModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PendingOperationsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/PendingOperationsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PendingOperationsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PendingOperationsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PermissionAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/PermissionAction.go similarity index 98% rename from vendor/github.com/yaegashi/msgraph.go/beta/PermissionAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PermissionAction.go index c65d4c6abc..f0f383c2fa 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/PermissionAction.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/PermissionAction.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // PermissionGrantRequestParameter undocumented diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PermissionClassificationTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/PermissionClassificationTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PermissionClassificationTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PermissionClassificationTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PermissionModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/PermissionModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PermissionModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PermissionModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PermissionRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/PermissionRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PermissionRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PermissionRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PermissionScopeModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/PermissionScopeModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PermissionScopeModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PermissionScopeModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PersistentBrowserSessionControlModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/PersistentBrowserSessionControlModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PersistentBrowserSessionControlModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PersistentBrowserSessionControlModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PersistentBrowserSessionModeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/PersistentBrowserSessionModeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PersistentBrowserSessionModeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PersistentBrowserSessionModeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PersonAnniversaryModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/PersonAnniversaryModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PersonAnniversaryModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PersonAnniversaryModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PersonAnniversaryRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/PersonAnniversaryRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PersonAnniversaryRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PersonAnniversaryRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PersonDataSourceModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/PersonDataSourceModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PersonDataSourceModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PersonDataSourceModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PersonInterestModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/PersonInterestModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PersonInterestModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PersonInterestModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PersonInterestRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/PersonInterestRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PersonInterestRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PersonInterestRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PersonModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/PersonModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PersonModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PersonModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PersonNameModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/PersonNameModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PersonNameModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PersonNameModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PersonNameRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/PersonNameRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PersonNameRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PersonNameRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PersonOrGroupColumnModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/PersonOrGroupColumnModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PersonOrGroupColumnModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PersonOrGroupColumnModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PersonRelationshipEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/PersonRelationshipEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PersonRelationshipEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PersonRelationshipEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PersonRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/PersonRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PersonRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PersonRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PersonWebsiteModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/PersonWebsiteModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PersonWebsiteModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PersonWebsiteModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PersonWebsiteRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/PersonWebsiteRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PersonWebsiteRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PersonWebsiteRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PhoneModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/PhoneModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PhoneModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PhoneModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PhoneTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/PhoneTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PhoneTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PhoneTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PhotoModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/PhotoModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PhotoModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PhotoModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PhysicalAddressModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/PhysicalAddressModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PhysicalAddressModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PhysicalAddressModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PhysicalAddressTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/PhysicalAddressTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PhysicalAddressTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PhysicalAddressTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PhysicalOfficeAddressModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/PhysicalOfficeAddressModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PhysicalOfficeAddressModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PhysicalOfficeAddressModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PictureModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/PictureModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PictureModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PictureModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PictureRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/PictureRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PictureRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PictureRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PlaceModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/PlaceModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PlaceModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PlaceModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PlaceRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/PlaceRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PlaceRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PlaceRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PlaceTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/PlaceTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PlaceTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PlaceTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PlannerAppliedCategoriesModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/PlannerAppliedCategoriesModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PlannerAppliedCategoriesModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PlannerAppliedCategoriesModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PlannerAssignedToTaskBoardTaskFormatModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/PlannerAssignedToTaskBoardTaskFormatModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PlannerAssignedToTaskBoardTaskFormatModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PlannerAssignedToTaskBoardTaskFormatModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PlannerAssignedToTaskBoardTaskFormatRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/PlannerAssignedToTaskBoardTaskFormatRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PlannerAssignedToTaskBoardTaskFormatRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PlannerAssignedToTaskBoardTaskFormatRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PlannerAssignmentModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/PlannerAssignmentModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PlannerAssignmentModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PlannerAssignmentModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PlannerAssignmentsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/PlannerAssignmentsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PlannerAssignmentsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PlannerAssignmentsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PlannerBucketModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/PlannerBucketModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PlannerBucketModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PlannerBucketModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PlannerBucketRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/PlannerBucketRequest.go similarity index 98% rename from vendor/github.com/yaegashi/msgraph.go/beta/PlannerBucketRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PlannerBucketRequest.go index b922e4b75c..2ad2e3d796 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/PlannerBucketRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/PlannerBucketRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // PlannerBucketRequestBuilder is request builder for PlannerBucket diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PlannerBucketTaskBoardTaskFormatModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/PlannerBucketTaskBoardTaskFormatModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PlannerBucketTaskBoardTaskFormatModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PlannerBucketTaskBoardTaskFormatModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PlannerBucketTaskBoardTaskFormatRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/PlannerBucketTaskBoardTaskFormatRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PlannerBucketTaskBoardTaskFormatRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PlannerBucketTaskBoardTaskFormatRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PlannerCategoryDescriptionsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/PlannerCategoryDescriptionsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PlannerCategoryDescriptionsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PlannerCategoryDescriptionsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PlannerChecklistItemModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/PlannerChecklistItemModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PlannerChecklistItemModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PlannerChecklistItemModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PlannerChecklistItemsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/PlannerChecklistItemsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PlannerChecklistItemsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PlannerChecklistItemsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PlannerDeltaModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/PlannerDeltaModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PlannerDeltaModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PlannerDeltaModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PlannerDeltaRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/PlannerDeltaRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PlannerDeltaRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PlannerDeltaRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PlannerExternalReferenceModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/PlannerExternalReferenceModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PlannerExternalReferenceModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PlannerExternalReferenceModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PlannerExternalReferencesModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/PlannerExternalReferencesModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PlannerExternalReferencesModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PlannerExternalReferencesModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PlannerFavoritePlanReferenceCollectionModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/PlannerFavoritePlanReferenceCollectionModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PlannerFavoritePlanReferenceCollectionModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PlannerFavoritePlanReferenceCollectionModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PlannerFavoritePlanReferenceModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/PlannerFavoritePlanReferenceModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PlannerFavoritePlanReferenceModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PlannerFavoritePlanReferenceModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PlannerGroupModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/PlannerGroupModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PlannerGroupModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PlannerGroupModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PlannerGroupRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/PlannerGroupRequest.go similarity index 98% rename from vendor/github.com/yaegashi/msgraph.go/beta/PlannerGroupRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PlannerGroupRequest.go index 14e939c591..6b26f8e29c 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/PlannerGroupRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/PlannerGroupRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // PlannerGroupRequestBuilder is request builder for PlannerGroup diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PlannerModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/PlannerModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PlannerModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PlannerModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PlannerOrderHintsByAssigneeModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/PlannerOrderHintsByAssigneeModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PlannerOrderHintsByAssigneeModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PlannerOrderHintsByAssigneeModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PlannerPlanContextCollectionModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/PlannerPlanContextCollectionModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PlannerPlanContextCollectionModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PlannerPlanContextCollectionModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PlannerPlanContextDetailsCollectionModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/PlannerPlanContextDetailsCollectionModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PlannerPlanContextDetailsCollectionModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PlannerPlanContextDetailsCollectionModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PlannerPlanContextDetailsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/PlannerPlanContextDetailsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PlannerPlanContextDetailsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PlannerPlanContextDetailsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PlannerPlanContextModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/PlannerPlanContextModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PlannerPlanContextModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PlannerPlanContextModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PlannerPlanDetailsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/PlannerPlanDetailsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PlannerPlanDetailsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PlannerPlanDetailsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PlannerPlanDetailsRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/PlannerPlanDetailsRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PlannerPlanDetailsRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PlannerPlanDetailsRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PlannerPlanModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/PlannerPlanModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PlannerPlanModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PlannerPlanModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PlannerPlanRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/PlannerPlanRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/PlannerPlanRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PlannerPlanRequest.go index d174200eef..8a0d52a1b9 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/PlannerPlanRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/PlannerPlanRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // PlannerPlanRequestBuilder is request builder for PlannerPlan diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PlannerPreviewTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/PlannerPreviewTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PlannerPreviewTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PlannerPreviewTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PlannerProgressTaskBoardTaskFormatModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/PlannerProgressTaskBoardTaskFormatModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PlannerProgressTaskBoardTaskFormatModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PlannerProgressTaskBoardTaskFormatModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PlannerProgressTaskBoardTaskFormatRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/PlannerProgressTaskBoardTaskFormatRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PlannerProgressTaskBoardTaskFormatRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PlannerProgressTaskBoardTaskFormatRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PlannerRecentPlanReferenceCollectionModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/PlannerRecentPlanReferenceCollectionModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PlannerRecentPlanReferenceCollectionModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PlannerRecentPlanReferenceCollectionModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PlannerRecentPlanReferenceModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/PlannerRecentPlanReferenceModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PlannerRecentPlanReferenceModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PlannerRecentPlanReferenceModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PlannerRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/PlannerRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/PlannerRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PlannerRequest.go index dd697fb75f..1d666b2fdd 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/PlannerRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/PlannerRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // PlannerRequestBuilder is request builder for Planner diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PlannerTaskDetailsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/PlannerTaskDetailsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PlannerTaskDetailsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PlannerTaskDetailsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PlannerTaskDetailsRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/PlannerTaskDetailsRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PlannerTaskDetailsRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PlannerTaskDetailsRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PlannerTaskModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/PlannerTaskModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PlannerTaskModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PlannerTaskModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PlannerTaskRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/PlannerTaskRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PlannerTaskRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PlannerTaskRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PlannerUserIDsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/PlannerUserIDsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PlannerUserIDsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PlannerUserIDsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PlannerUserModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/PlannerUserModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PlannerUserModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PlannerUserModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PlannerUserRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/PlannerUserRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/PlannerUserRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PlannerUserRequest.go index afe9165b5e..17a765a9a3 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/PlannerUserRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/PlannerUserRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // PlannerUserRequestBuilder is request builder for PlannerUser diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PlatformEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/PlatformEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PlatformEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PlatformEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PlayPromptCompletionReasonEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/PlayPromptCompletionReasonEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PlayPromptCompletionReasonEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PlayPromptCompletionReasonEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PlayPromptOperationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/PlayPromptOperationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PlayPromptOperationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PlayPromptOperationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PolicyModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/PolicyModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PolicyModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PolicyModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PolicyPlatformTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/PolicyPlatformTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PolicyPlatformTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PolicyPlatformTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PolicyRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/PolicyRequest.go similarity index 98% rename from vendor/github.com/yaegashi/msgraph.go/beta/PolicyRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PolicyRequest.go index eb0b2e3f67..fe336da71b 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/PolicyRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/PolicyRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // PolicyRequestBuilder is request builder for Policy diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PolicySetAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/PolicySetAction.go similarity index 98% rename from vendor/github.com/yaegashi/msgraph.go/beta/PolicySetAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PolicySetAction.go index dc1b09886f..8f0e9145d5 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/PolicySetAction.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/PolicySetAction.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // PolicySetCollectionGetPolicySetsRequestParameter undocumented diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PolicySetAssignmentModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/PolicySetAssignmentModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PolicySetAssignmentModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PolicySetAssignmentModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PolicySetAssignmentRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/PolicySetAssignmentRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PolicySetAssignmentRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PolicySetAssignmentRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PolicySetItemModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/PolicySetItemModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PolicySetItemModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PolicySetItemModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PolicySetItemRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/PolicySetItemRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PolicySetItemRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PolicySetItemRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PolicySetModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/PolicySetModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PolicySetModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PolicySetModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PolicySetRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/PolicySetRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/PolicySetRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PolicySetRequest.go index 8b7d084dcf..d4f9adc923 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/PolicySetRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/PolicySetRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // PolicySetRequestBuilder is request builder for PolicySet diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PolicySetStatusEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/PolicySetStatusEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PolicySetStatusEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PolicySetStatusEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PositionDetailModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/PositionDetailModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PositionDetailModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PositionDetailModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PostAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/PostAction.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PostAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PostAction.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PostModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/PostModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PostModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PostModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PostRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/PostRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/PostRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PostRequest.go index 1a8e815ecf..b2de345513 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/PostRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/PostRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // PostRequestBuilder is request builder for Post diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PostalAddressTypeModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/PostalAddressTypeModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PostalAddressTypeModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PostalAddressTypeModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PowerActionTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/PowerActionTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PowerActionTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PowerActionTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PreAuthorizedApplicationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/PreAuthorizedApplicationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PreAuthorizedApplicationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PreAuthorizedApplicationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PrereleaseFeaturesEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/PrereleaseFeaturesEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PrereleaseFeaturesEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PrereleaseFeaturesEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PresenceModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/PresenceModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PresenceModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PresenceModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PresenceRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/PresenceRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PresenceRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PresenceRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PriorityEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/PriorityEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PriorityEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PriorityEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PrivacyProfileModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/PrivacyProfileModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PrivacyProfileModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PrivacyProfileModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PrivilegedAccessModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/PrivilegedAccessModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PrivilegedAccessModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PrivilegedAccessModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PrivilegedAccessRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/PrivilegedAccessRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/PrivilegedAccessRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PrivilegedAccessRequest.go index c83cab110c..cdea628cd6 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/PrivilegedAccessRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/PrivilegedAccessRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // PrivilegedAccessRequestBuilder is request builder for PrivilegedAccess diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PrivilegedApprovalModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/PrivilegedApprovalModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PrivilegedApprovalModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PrivilegedApprovalModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PrivilegedApprovalRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/PrivilegedApprovalRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PrivilegedApprovalRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PrivilegedApprovalRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PrivilegedOperationEventModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/PrivilegedOperationEventModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PrivilegedOperationEventModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PrivilegedOperationEventModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PrivilegedOperationEventRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/PrivilegedOperationEventRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PrivilegedOperationEventRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PrivilegedOperationEventRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PrivilegedRoleAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/PrivilegedRoleAction.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PrivilegedRoleAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PrivilegedRoleAction.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PrivilegedRoleAssignmentAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/PrivilegedRoleAssignmentAction.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PrivilegedRoleAssignmentAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PrivilegedRoleAssignmentAction.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PrivilegedRoleAssignmentModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/PrivilegedRoleAssignmentModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PrivilegedRoleAssignmentModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PrivilegedRoleAssignmentModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PrivilegedRoleAssignmentRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/PrivilegedRoleAssignmentRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PrivilegedRoleAssignmentRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PrivilegedRoleAssignmentRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PrivilegedRoleAssignmentRequestObjectAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/PrivilegedRoleAssignmentRequestObjectAction.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PrivilegedRoleAssignmentRequestObjectAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PrivilegedRoleAssignmentRequestObjectAction.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PrivilegedRoleAssignmentRequestObjectModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/PrivilegedRoleAssignmentRequestObjectModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PrivilegedRoleAssignmentRequestObjectModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PrivilegedRoleAssignmentRequestObjectModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PrivilegedRoleAssignmentRequestObjectRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/PrivilegedRoleAssignmentRequestObjectRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PrivilegedRoleAssignmentRequestObjectRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PrivilegedRoleAssignmentRequestObjectRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PrivilegedRoleModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/PrivilegedRoleModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PrivilegedRoleModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PrivilegedRoleModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PrivilegedRoleRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/PrivilegedRoleRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/PrivilegedRoleRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PrivilegedRoleRequest.go index 714e2b6e0a..51fe960fdb 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/PrivilegedRoleRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/PrivilegedRoleRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // PrivilegedRoleRequestBuilder is request builder for PrivilegedRole diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PrivilegedRoleSettingsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/PrivilegedRoleSettingsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PrivilegedRoleSettingsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PrivilegedRoleSettingsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PrivilegedRoleSettingsRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/PrivilegedRoleSettingsRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PrivilegedRoleSettingsRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PrivilegedRoleSettingsRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PrivilegedRoleSummaryModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/PrivilegedRoleSummaryModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PrivilegedRoleSummaryModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PrivilegedRoleSummaryModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PrivilegedRoleSummaryRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/PrivilegedRoleSummaryRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PrivilegedRoleSummaryRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PrivilegedRoleSummaryRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PrivilegedSignupStatusAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/PrivilegedSignupStatusAction.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PrivilegedSignupStatusAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PrivilegedSignupStatusAction.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PrivilegedSignupStatusModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/PrivilegedSignupStatusModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PrivilegedSignupStatusModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PrivilegedSignupStatusModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PrivilegedSignupStatusRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/PrivilegedSignupStatusRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PrivilegedSignupStatusRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PrivilegedSignupStatusRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ProcessIntegrityLevelEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/ProcessIntegrityLevelEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ProcessIntegrityLevelEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ProcessIntegrityLevelEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ProcessModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ProcessModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ProcessModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ProcessModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ProfileModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ProfileModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ProfileModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ProfileModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ProfilePhotoModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ProfilePhotoModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ProfilePhotoModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ProfilePhotoModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ProfilePhotoRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/ProfilePhotoRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ProfilePhotoRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ProfilePhotoRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ProfileRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/ProfileRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/ProfileRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ProfileRequest.go index 6a92ad6a46..ee6e8e8517 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ProfileRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/ProfileRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // ProfileRequestBuilder is request builder for Profile diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ProgramControlModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ProgramControlModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ProgramControlModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ProgramControlModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ProgramControlRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/ProgramControlRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ProgramControlRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ProgramControlRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ProgramControlTypeModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ProgramControlTypeModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ProgramControlTypeModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ProgramControlTypeModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ProgramControlTypeRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/ProgramControlTypeRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ProgramControlTypeRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ProgramControlTypeRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ProgramModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ProgramModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ProgramModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ProgramModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ProgramRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/ProgramRequest.go similarity index 98% rename from vendor/github.com/yaegashi/msgraph.go/beta/ProgramRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ProgramRequest.go index 8dd16de83f..2ebd9fd6fe 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ProgramRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/ProgramRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // ProgramRequestBuilder is request builder for Program diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ProgramResourceModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ProgramResourceModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ProgramResourceModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ProgramResourceModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ProjectParticipationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ProjectParticipationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ProjectParticipationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ProjectParticipationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ProjectParticipationRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/ProjectParticipationRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ProjectParticipationRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ProjectParticipationRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PromptModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/PromptModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PromptModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PromptModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PropertiesModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/PropertiesModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PropertiesModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PropertiesModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PropertyModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/PropertyModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PropertyModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PropertyModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PropertyToEvaluateModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/PropertyToEvaluateModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PropertyToEvaluateModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PropertyToEvaluateModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PropertyTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/PropertyTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PropertyTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PropertyTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ProtectAdhocActionModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ProtectAdhocActionModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ProtectAdhocActionModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ProtectAdhocActionModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ProtectByTemplateActionModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ProtectByTemplateActionModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ProtectByTemplateActionModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ProtectByTemplateActionModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ProtectDoNotForwardActionModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ProtectDoNotForwardActionModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ProtectDoNotForwardActionModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ProtectDoNotForwardActionModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ProtectGroupModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ProtectGroupModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ProtectGroupModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ProtectGroupModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ProtectSiteModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ProtectSiteModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ProtectSiteModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ProtectSiteModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ProviderTenantSettingModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ProviderTenantSettingModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ProviderTenantSettingModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ProviderTenantSettingModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ProviderTenantSettingRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/ProviderTenantSettingRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ProviderTenantSettingRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ProviderTenantSettingRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ProvisionedIdentityModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ProvisionedIdentityModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ProvisionedIdentityModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ProvisionedIdentityModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ProvisionedPlanModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ProvisionedPlanModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ProvisionedPlanModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ProvisionedPlanModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ProvisioningObjectSummaryModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ProvisioningObjectSummaryModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ProvisioningObjectSummaryModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ProvisioningObjectSummaryModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ProvisioningObjectSummaryRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/ProvisioningObjectSummaryRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ProvisioningObjectSummaryRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ProvisioningObjectSummaryRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ProvisioningResultEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/ProvisioningResultEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ProvisioningResultEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ProvisioningResultEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ProvisioningStepModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ProvisioningStepModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ProvisioningStepModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ProvisioningStepModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ProvisioningStepTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/ProvisioningStepTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ProvisioningStepTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ProvisioningStepTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ProvisioningSystemDetailsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ProvisioningSystemDetailsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ProvisioningSystemDetailsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ProvisioningSystemDetailsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ProxiedDomainModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ProxiedDomainModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ProxiedDomainModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ProxiedDomainModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PublicClientApplicationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/PublicClientApplicationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PublicClientApplicationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PublicClientApplicationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PublicErrorDetailModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/PublicErrorDetailModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PublicErrorDetailModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PublicErrorDetailModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PublicErrorModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/PublicErrorModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PublicErrorModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PublicErrorModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PublicErrorResponseModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/PublicErrorResponseModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PublicErrorResponseModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PublicErrorResponseModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PublicInnerErrorModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/PublicInnerErrorModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PublicInnerErrorModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PublicInnerErrorModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PublicationFacetModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/PublicationFacetModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PublicationFacetModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PublicationFacetModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PublishedResourceModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/PublishedResourceModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PublishedResourceModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PublishedResourceModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PublishedResourceRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/PublishedResourceRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/PublishedResourceRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PublishedResourceRequest.go index 6c7c8a8550..43723a60b5 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/PublishedResourceRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/PublishedResourceRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // PublishedResourceRequestBuilder is request builder for PublishedResource diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PurchaseInvoiceAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/PurchaseInvoiceAction.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PurchaseInvoiceAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PurchaseInvoiceAction.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PurchaseInvoiceLineModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/PurchaseInvoiceLineModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PurchaseInvoiceLineModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PurchaseInvoiceLineModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PurchaseInvoiceLineRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/PurchaseInvoiceLineRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PurchaseInvoiceLineRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PurchaseInvoiceLineRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PurchaseInvoiceModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/PurchaseInvoiceModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/PurchaseInvoiceModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PurchaseInvoiceModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/PurchaseInvoiceRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/PurchaseInvoiceRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/PurchaseInvoiceRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/PurchaseInvoiceRequest.go index f4dcef2638..3c21bb3a6c 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/PurchaseInvoiceRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/PurchaseInvoiceRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // PurchaseInvoiceRequestBuilder is request builder for PurchaseInvoice diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/QuarantineReasonEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/QuarantineReasonEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/QuarantineReasonEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/QuarantineReasonEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/QuotaModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/QuotaModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/QuotaModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/QuotaModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RankedEmailAddressModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/RankedEmailAddressModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/RankedEmailAddressModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/RankedEmailAddressModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RatingAppsTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/RatingAppsTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/RatingAppsTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/RatingAppsTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RatingAustraliaMoviesTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/RatingAustraliaMoviesTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/RatingAustraliaMoviesTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/RatingAustraliaMoviesTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RatingAustraliaTelevisionTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/RatingAustraliaTelevisionTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/RatingAustraliaTelevisionTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/RatingAustraliaTelevisionTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RatingCanadaMoviesTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/RatingCanadaMoviesTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/RatingCanadaMoviesTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/RatingCanadaMoviesTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RatingCanadaTelevisionTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/RatingCanadaTelevisionTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/RatingCanadaTelevisionTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/RatingCanadaTelevisionTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RatingFranceMoviesTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/RatingFranceMoviesTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/RatingFranceMoviesTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/RatingFranceMoviesTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RatingFranceTelevisionTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/RatingFranceTelevisionTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/RatingFranceTelevisionTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/RatingFranceTelevisionTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RatingGermanyMoviesTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/RatingGermanyMoviesTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/RatingGermanyMoviesTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/RatingGermanyMoviesTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RatingGermanyTelevisionTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/RatingGermanyTelevisionTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/RatingGermanyTelevisionTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/RatingGermanyTelevisionTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RatingIrelandMoviesTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/RatingIrelandMoviesTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/RatingIrelandMoviesTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/RatingIrelandMoviesTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RatingIrelandTelevisionTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/RatingIrelandTelevisionTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/RatingIrelandTelevisionTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/RatingIrelandTelevisionTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RatingJapanMoviesTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/RatingJapanMoviesTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/RatingJapanMoviesTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/RatingJapanMoviesTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RatingJapanTelevisionTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/RatingJapanTelevisionTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/RatingJapanTelevisionTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/RatingJapanTelevisionTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RatingNewZealandMoviesTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/RatingNewZealandMoviesTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/RatingNewZealandMoviesTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/RatingNewZealandMoviesTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RatingNewZealandTelevisionTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/RatingNewZealandTelevisionTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/RatingNewZealandTelevisionTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/RatingNewZealandTelevisionTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RatingUnitedKingdomMoviesTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/RatingUnitedKingdomMoviesTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/RatingUnitedKingdomMoviesTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/RatingUnitedKingdomMoviesTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RatingUnitedKingdomTelevisionTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/RatingUnitedKingdomTelevisionTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/RatingUnitedKingdomTelevisionTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/RatingUnitedKingdomTelevisionTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RatingUnitedStatesMoviesTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/RatingUnitedStatesMoviesTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/RatingUnitedStatesMoviesTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/RatingUnitedStatesMoviesTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RatingUnitedStatesTelevisionTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/RatingUnitedStatesTelevisionTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/RatingUnitedStatesTelevisionTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/RatingUnitedStatesTelevisionTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RbacApplicationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/RbacApplicationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/RbacApplicationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/RbacApplicationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RbacApplicationRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/RbacApplicationRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/RbacApplicationRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/RbacApplicationRequest.go index 6513ecc87c..692fbc7edb 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RbacApplicationRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/RbacApplicationRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // RbacApplicationRequestBuilder is request builder for RbacApplication diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RecentNotebookLinksModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/RecentNotebookLinksModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/RecentNotebookLinksModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/RecentNotebookLinksModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RecentNotebookModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/RecentNotebookModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/RecentNotebookModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/RecentNotebookModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RecipientModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/RecipientModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/RecipientModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/RecipientModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RecipientScopeTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/RecipientScopeTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/RecipientScopeTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/RecipientScopeTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RecommendLabelActionModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/RecommendLabelActionModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/RecommendLabelActionModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/RecommendLabelActionModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RecordCompletionReasonEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/RecordCompletionReasonEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/RecordCompletionReasonEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/RecordCompletionReasonEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RecordOperationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/RecordOperationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/RecordOperationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/RecordOperationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RecordingInfoModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/RecordingInfoModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/RecordingInfoModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/RecordingInfoModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RecordingStatusEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/RecordingStatusEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/RecordingStatusEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/RecordingStatusEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RecurrencePatternModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/RecurrencePatternModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/RecurrencePatternModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/RecurrencePatternModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RecurrencePatternTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/RecurrencePatternTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/RecurrencePatternTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/RecurrencePatternTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RecurrenceRangeModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/RecurrenceRangeModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/RecurrenceRangeModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/RecurrenceRangeModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RecurrenceRangeTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/RecurrenceRangeTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/RecurrenceRangeTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/RecurrenceRangeTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ReferenceAttachmentModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ReferenceAttachmentModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ReferenceAttachmentModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ReferenceAttachmentModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ReferenceAttachmentPermissionEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/ReferenceAttachmentPermissionEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ReferenceAttachmentPermissionEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ReferenceAttachmentPermissionEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ReferenceAttachmentProviderEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/ReferenceAttachmentProviderEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ReferenceAttachmentProviderEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ReferenceAttachmentProviderEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ReferencedObjectModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ReferencedObjectModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ReferencedObjectModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ReferencedObjectModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RegistrationAuthMethodEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/RegistrationAuthMethodEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/RegistrationAuthMethodEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/RegistrationAuthMethodEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RegistrationStatusTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/RegistrationStatusTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/RegistrationStatusTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/RegistrationStatusTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RegistryHiveEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/RegistryHiveEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/RegistryHiveEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/RegistryHiveEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RegistryKeyStateModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/RegistryKeyStateModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/RegistryKeyStateModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/RegistryKeyStateModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RegistryOperationEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/RegistryOperationEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/RegistryOperationEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/RegistryOperationEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RegistryValueTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/RegistryValueTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/RegistryValueTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/RegistryValueTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RejectReasonEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/RejectReasonEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/RejectReasonEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/RejectReasonEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RelatedContactModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/RelatedContactModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/RelatedContactModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/RelatedContactModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RelatedPersonModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/RelatedPersonModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/RelatedPersonModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/RelatedPersonModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RelyingPartyDetailedSummaryModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/RelyingPartyDetailedSummaryModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/RelyingPartyDetailedSummaryModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/RelyingPartyDetailedSummaryModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RemediationStateEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/RemediationStateEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/RemediationStateEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/RemediationStateEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ReminderModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ReminderModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ReminderModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ReminderModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RemoteActionAuditModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/RemoteActionAuditModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/RemoteActionAuditModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/RemoteActionAuditModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RemoteActionAuditRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/RemoteActionAuditRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/RemoteActionAuditRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/RemoteActionAuditRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RemoteActionEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/RemoteActionEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/RemoteActionEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/RemoteActionEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RemoteAssistanceOnboardingStatusEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/RemoteAssistanceOnboardingStatusEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/RemoteAssistanceOnboardingStatusEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/RemoteAssistanceOnboardingStatusEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RemoteAssistancePartnerAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/RemoteAssistancePartnerAction.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/RemoteAssistancePartnerAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/RemoteAssistancePartnerAction.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RemoteAssistancePartnerModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/RemoteAssistancePartnerModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/RemoteAssistancePartnerModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/RemoteAssistancePartnerModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RemoteAssistancePartnerRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/RemoteAssistancePartnerRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/RemoteAssistancePartnerRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/RemoteAssistancePartnerRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RemoteItemModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/RemoteItemModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/RemoteItemModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/RemoteItemModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RemoteLockActionResultModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/RemoteLockActionResultModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/RemoteLockActionResultModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/RemoteLockActionResultModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RemoveContentFooterActionModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/RemoveContentFooterActionModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/RemoveContentFooterActionModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/RemoveContentFooterActionModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RemoveContentHeaderActionModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/RemoveContentHeaderActionModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/RemoveContentHeaderActionModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/RemoveContentHeaderActionModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RemoveProtectionActionModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/RemoveProtectionActionModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/RemoveProtectionActionModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/RemoveProtectionActionModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RemoveWatermarkActionModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/RemoveWatermarkActionModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/RemoveWatermarkActionModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/RemoveWatermarkActionModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RenameActionModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/RenameActionModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/RenameActionModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/RenameActionModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ReportModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ReportModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ReportModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ReportModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ReportRootModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ReportRootModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ReportRootModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ReportRootModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ReportRootRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/ReportRootRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/ReportRootRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ReportRootRequest.go index a5490320c9..e0ce089079 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ReportRootRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/ReportRootRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // ReportRootRequestBuilder is request builder for ReportRoot diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ReputationCategoryModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ReputationCategoryModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ReputationCategoryModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ReputationCategoryModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestObjectAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/RequestObjectAction.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/RequestObjectAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/RequestObjectAction.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestObjectModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/RequestObjectModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/RequestObjectModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/RequestObjectModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestObjectRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/RequestObjectRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/RequestObjectRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/RequestObjectRequest.go index 84bf7208cb..4183b94616 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestObjectRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/RequestObjectRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // RequestObjectRequestBuilder is request builder for RequestObject diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequiredPasswordTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/RequiredPasswordTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/RequiredPasswordTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/RequiredPasswordTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequiredResourceAccessModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/RequiredResourceAccessModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/RequiredResourceAccessModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/RequiredResourceAccessModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequirementProviderEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/RequirementProviderEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/RequirementProviderEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/RequirementProviderEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ResetPasscodeActionResultModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ResetPasscodeActionResultModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ResetPasscodeActionResultModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ResetPasscodeActionResultModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ResourceAccessModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ResourceAccessModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ResourceAccessModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ResourceAccessModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ResourceActionModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ResourceActionModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ResourceActionModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ResourceActionModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ResourceOperationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ResourceOperationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ResourceOperationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ResourceOperationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ResourceOperationRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/ResourceOperationRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ResourceOperationRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ResourceOperationRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ResourcePermissionModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ResourcePermissionModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ResourcePermissionModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ResourcePermissionModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ResourcePropertiesModelModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ResourcePropertiesModelModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ResourcePropertiesModelModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ResourcePropertiesModelModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ResourceReferenceModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ResourceReferenceModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ResourceReferenceModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ResourceReferenceModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ResourceSpecificPermissionGrantModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ResourceSpecificPermissionGrantModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ResourceSpecificPermissionGrantModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ResourceSpecificPermissionGrantModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ResourceSpecificPermissionGrantRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/ResourceSpecificPermissionGrantRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ResourceSpecificPermissionGrantRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ResourceSpecificPermissionGrantRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ResourceSpecificPermissionModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ResourceSpecificPermissionModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ResourceSpecificPermissionModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ResourceSpecificPermissionModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ResourceVisualizationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ResourceVisualizationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ResourceVisualizationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ResourceVisualizationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ResponseStatusModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ResponseStatusModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ResponseStatusModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ResponseStatusModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ResponseTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/ResponseTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ResponseTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ResponseTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ResponsiblePolicyModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ResponsiblePolicyModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ResponsiblePolicyModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ResponsiblePolicyModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ResponsibleSensitiveTypeModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ResponsibleSensitiveTypeModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ResponsibleSensitiveTypeModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ResponsibleSensitiveTypeModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RestoreActionModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/RestoreActionModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/RestoreActionModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/RestoreActionModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RestrictedAppsStateEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/RestrictedAppsStateEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/RestrictedAppsStateEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/RestrictedAppsStateEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RestrictedAppsViolationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/RestrictedAppsViolationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/RestrictedAppsViolationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/RestrictedAppsViolationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RestrictedAppsViolationRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/RestrictedAppsViolationRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/RestrictedAppsViolationRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/RestrictedAppsViolationRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RestrictedSignInModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/RestrictedSignInModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/RestrictedSignInModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/RestrictedSignInModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RestrictedSignInRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/RestrictedSignInRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/RestrictedSignInRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/RestrictedSignInRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RestrictionActionEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/RestrictionActionEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/RestrictionActionEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/RestrictionActionEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RestrictionTriggerEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/RestrictionTriggerEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/RestrictionTriggerEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/RestrictionTriggerEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ResultInfoModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ResultInfoModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ResultInfoModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ResultInfoModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ResultantAppStateDetailEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/ResultantAppStateDetailEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ResultantAppStateDetailEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ResultantAppStateDetailEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ResultantAppStateEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/ResultantAppStateEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ResultantAppStateEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ResultantAppStateEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RevokeAppleVppLicensesActionResultModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/RevokeAppleVppLicensesActionResultModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/RevokeAppleVppLicensesActionResultModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/RevokeAppleVppLicensesActionResultModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RgbColorModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/RgbColorModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/RgbColorModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/RgbColorModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RiskDetailEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/RiskDetailEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/RiskDetailEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/RiskDetailEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RiskDetectionModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/RiskDetectionModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/RiskDetectionModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/RiskDetectionModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RiskDetectionRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/RiskDetectionRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/RiskDetectionRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/RiskDetectionRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RiskDetectionTimingTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/RiskDetectionTimingTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/RiskDetectionTimingTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/RiskDetectionTimingTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RiskEventStatusEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/RiskEventStatusEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/RiskEventStatusEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/RiskEventStatusEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RiskEventTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/RiskEventTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/RiskEventTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/RiskEventTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RiskLevelEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/RiskLevelEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/RiskLevelEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/RiskLevelEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RiskStateEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/RiskStateEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/RiskStateEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/RiskStateEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RiskUserActivityModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/RiskUserActivityModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/RiskUserActivityModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/RiskUserActivityModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RiskyUserAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/RiskyUserAction.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/RiskyUserAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/RiskyUserAction.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RiskyUserHistoryItemModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/RiskyUserHistoryItemModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/RiskyUserHistoryItemModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/RiskyUserHistoryItemModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RiskyUserHistoryItemRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/RiskyUserHistoryItemRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/RiskyUserHistoryItemRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/RiskyUserHistoryItemRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RiskyUserModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/RiskyUserModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/RiskyUserModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/RiskyUserModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RiskyUserRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/RiskyUserRequest.go similarity index 98% rename from vendor/github.com/yaegashi/msgraph.go/beta/RiskyUserRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/RiskyUserRequest.go index 6e873d1776..1a5e2831dd 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RiskyUserRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/RiskyUserRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // RiskyUserRequestBuilder is request builder for RiskyUser diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RoleAssignmentModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/RoleAssignmentModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/RoleAssignmentModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/RoleAssignmentModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RoleAssignmentRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/RoleAssignmentRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/RoleAssignmentRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/RoleAssignmentRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RoleAssignmentScopeTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/RoleAssignmentScopeTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/RoleAssignmentScopeTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/RoleAssignmentScopeTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RoleDefinitionModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/RoleDefinitionModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/RoleDefinitionModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/RoleDefinitionModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RoleDefinitionRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/RoleDefinitionRequest.go similarity index 98% rename from vendor/github.com/yaegashi/msgraph.go/beta/RoleDefinitionRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/RoleDefinitionRequest.go index a2bfd57721..faecc59c17 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RoleDefinitionRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/RoleDefinitionRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // RoleDefinitionRequestBuilder is request builder for RoleDefinition diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RoleManagementModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/RoleManagementModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/RoleManagementModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/RoleManagementModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RoleManagementRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/RoleManagementRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/RoleManagementRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/RoleManagementRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RoleMembershipGovernanceCriteriaModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/RoleMembershipGovernanceCriteriaModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/RoleMembershipGovernanceCriteriaModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/RoleMembershipGovernanceCriteriaModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RolePermissionModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/RolePermissionModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/RolePermissionModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/RolePermissionModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RoleScopeTagAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/RoleScopeTagAction.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/RoleScopeTagAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/RoleScopeTagAction.go index 5a9ef86a7d..78863bfca3 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RoleScopeTagAction.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/RoleScopeTagAction.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // RoleScopeTagCollectionGetRoleScopeTagsByIDRequestParameter undocumented diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RoleScopeTagAutoAssignmentModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/RoleScopeTagAutoAssignmentModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/RoleScopeTagAutoAssignmentModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/RoleScopeTagAutoAssignmentModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RoleScopeTagAutoAssignmentRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/RoleScopeTagAutoAssignmentRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/RoleScopeTagAutoAssignmentRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/RoleScopeTagAutoAssignmentRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RoleScopeTagInfoModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/RoleScopeTagInfoModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/RoleScopeTagInfoModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/RoleScopeTagInfoModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RoleScopeTagModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/RoleScopeTagModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/RoleScopeTagModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/RoleScopeTagModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RoleScopeTagRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/RoleScopeTagRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/RoleScopeTagRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/RoleScopeTagRequest.go index b8ca9719e6..93b7de8bfb 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RoleScopeTagRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/RoleScopeTagRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // RoleScopeTagRequestBuilder is request builder for RoleScopeTag diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RoleSuccessStatisticsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/RoleSuccessStatisticsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/RoleSuccessStatisticsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/RoleSuccessStatisticsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RoleSummaryStatusEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/RoleSummaryStatusEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/RoleSummaryStatusEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/RoleSummaryStatusEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RoomListModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/RoomListModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/RoomListModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/RoomListModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RoomListRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/RoomListRequest.go similarity index 98% rename from vendor/github.com/yaegashi/msgraph.go/beta/RoomListRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/RoomListRequest.go index 8d663e1a30..f9acb281dc 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RoomListRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/RoomListRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // RoomListRequestBuilder is request builder for RoomList diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RoomModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/RoomModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/RoomModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/RoomModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RoomRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/RoomRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/RoomRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/RoomRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RootModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/RootModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/RootModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/RootModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RotateBitLockerKeysDeviceActionResultModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/RotateBitLockerKeysDeviceActionResultModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/RotateBitLockerKeysDeviceActionResultModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/RotateBitLockerKeysDeviceActionResultModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RoutingModeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/RoutingModeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/RoutingModeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/RoutingModeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RoutingPolicyEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/RoutingPolicyEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/RoutingPolicyEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/RoutingPolicyEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RoutingTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/RoutingTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/RoutingTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/RoutingTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RubricCriterionModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/RubricCriterionModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/RubricCriterionModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/RubricCriterionModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RubricLevelModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/RubricLevelModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/RubricLevelModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/RubricLevelModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RubricQualityFeedbackModelModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/RubricQualityFeedbackModelModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/RubricQualityFeedbackModelModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/RubricQualityFeedbackModelModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RubricQualityModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/RubricQualityModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/RubricQualityModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/RubricQualityModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RubricQualitySelectedColumnModelModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/RubricQualitySelectedColumnModelModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/RubricQualitySelectedColumnModelModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/RubricQualitySelectedColumnModelModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RuleModeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/RuleModeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/RuleModeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/RuleModeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RunAsAccountTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/RunAsAccountTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/RunAsAccountTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/RunAsAccountTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RunScheduleModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/RunScheduleModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/RunScheduleModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/RunScheduleModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RunStateEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/RunStateEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/RunStateEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/RunStateEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SafeSearchFilterTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/SafeSearchFilterTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SafeSearchFilterTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SafeSearchFilterTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SalesCreditMemoLineModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/SalesCreditMemoLineModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SalesCreditMemoLineModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SalesCreditMemoLineModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SalesCreditMemoLineRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/SalesCreditMemoLineRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SalesCreditMemoLineRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SalesCreditMemoLineRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SalesCreditMemoModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/SalesCreditMemoModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SalesCreditMemoModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SalesCreditMemoModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SalesCreditMemoRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/SalesCreditMemoRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/SalesCreditMemoRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SalesCreditMemoRequest.go index e97973f769..26a1b14540 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/SalesCreditMemoRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/SalesCreditMemoRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // SalesCreditMemoRequestBuilder is request builder for SalesCreditMemo diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SalesInvoiceAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/SalesInvoiceAction.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SalesInvoiceAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SalesInvoiceAction.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SalesInvoiceLineModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/SalesInvoiceLineModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SalesInvoiceLineModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SalesInvoiceLineModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SalesInvoiceLineRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/SalesInvoiceLineRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SalesInvoiceLineRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SalesInvoiceLineRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SalesInvoiceModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/SalesInvoiceModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SalesInvoiceModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SalesInvoiceModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SalesInvoiceRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/SalesInvoiceRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/SalesInvoiceRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SalesInvoiceRequest.go index 34b556b3df..d8bc7a5065 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/SalesInvoiceRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/SalesInvoiceRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // SalesInvoiceRequestBuilder is request builder for SalesInvoice diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SalesOrderLineModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/SalesOrderLineModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SalesOrderLineModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SalesOrderLineModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SalesOrderLineRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/SalesOrderLineRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SalesOrderLineRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SalesOrderLineRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SalesOrderModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/SalesOrderModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SalesOrderModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SalesOrderModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SalesOrderRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/SalesOrderRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/SalesOrderRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SalesOrderRequest.go index 1f9349d731..8cc16a421c 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/SalesOrderRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/SalesOrderRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // SalesOrderRequestBuilder is request builder for SalesOrder diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SalesQuoteAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/SalesQuoteAction.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SalesQuoteAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SalesQuoteAction.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SalesQuoteLineModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/SalesQuoteLineModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SalesQuoteLineModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SalesQuoteLineModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SalesQuoteLineRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/SalesQuoteLineRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SalesQuoteLineRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SalesQuoteLineRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SalesQuoteModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/SalesQuoteModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SalesQuoteModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SalesQuoteModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SalesQuoteRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/SalesQuoteRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/SalesQuoteRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SalesQuoteRequest.go index cbe25eeec6..212cc4a521 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/SalesQuoteRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/SalesQuoteRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // SalesQuoteRequestBuilder is request builder for SalesQuote diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ScheduleAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/ScheduleAction.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ScheduleAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ScheduleAction.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ScheduleChangeRequestActorEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/ScheduleChangeRequestActorEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ScheduleChangeRequestActorEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ScheduleChangeRequestActorEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ScheduleChangeRequestObjectAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/ScheduleChangeRequestObjectAction.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ScheduleChangeRequestObjectAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ScheduleChangeRequestObjectAction.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ScheduleChangeRequestObjectModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ScheduleChangeRequestObjectModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ScheduleChangeRequestObjectModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ScheduleChangeRequestObjectModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ScheduleChangeRequestObjectRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/ScheduleChangeRequestObjectRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ScheduleChangeRequestObjectRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ScheduleChangeRequestObjectRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ScheduleChangeStateEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/ScheduleChangeStateEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ScheduleChangeStateEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ScheduleChangeStateEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ScheduleEntityModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ScheduleEntityModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ScheduleEntityModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ScheduleEntityModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ScheduleEntityThemeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/ScheduleEntityThemeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ScheduleEntityThemeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ScheduleEntityThemeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ScheduleInformationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ScheduleInformationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ScheduleInformationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ScheduleInformationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ScheduleItemModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ScheduleItemModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ScheduleItemModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ScheduleItemModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ScheduleModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ScheduleModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ScheduleModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ScheduleModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ScheduleRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/ScheduleRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/ScheduleRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ScheduleRequest.go index b59653ae6c..41e02c25c3 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ScheduleRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/ScheduleRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // ScheduleRequestBuilder is request builder for Schedule diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SchedulingGroupModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/SchedulingGroupModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SchedulingGroupModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SchedulingGroupModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SchedulingGroupRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/SchedulingGroupRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SchedulingGroupRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SchedulingGroupRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SchemaExtensionModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/SchemaExtensionModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SchemaExtensionModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SchemaExtensionModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SchemaExtensionRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/SchemaExtensionRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SchemaExtensionRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SchemaExtensionRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SchemaModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/SchemaModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SchemaModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SchemaModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SchemaRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/SchemaRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SchemaRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SchemaRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ScopeOperatorMultiValuedComparisonTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/ScopeOperatorMultiValuedComparisonTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ScopeOperatorMultiValuedComparisonTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ScopeOperatorMultiValuedComparisonTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ScopeOperatorTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/ScopeOperatorTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ScopeOperatorTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ScopeOperatorTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ScopedRoleMembershipModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ScopedRoleMembershipModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ScopedRoleMembershipModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ScopedRoleMembershipModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ScopedRoleMembershipRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/ScopedRoleMembershipRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ScopedRoleMembershipRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ScopedRoleMembershipRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ScreenSharingRoleEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/ScreenSharingRoleEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ScreenSharingRoleEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ScreenSharingRoleEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SearchAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/SearchAction.go similarity index 98% rename from vendor/github.com/yaegashi/msgraph.go/beta/SearchAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SearchAction.go index a86924c78b..9cfafbfe2d 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/SearchAction.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/SearchAction.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // SearchQueryRequestParameter undocumented diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SearchHitModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/SearchHitModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SearchHitModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SearchHitModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SearchHitsContainerModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/SearchHitsContainerModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SearchHitsContainerModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SearchHitsContainerModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SearchModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/SearchModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SearchModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SearchModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SearchQueryModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/SearchQueryModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SearchQueryModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SearchQueryModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SearchQueryStringModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/SearchQueryStringModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SearchQueryStringModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SearchQueryStringModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SearchRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/SearchRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SearchRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SearchRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SearchRequestObjectModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/SearchRequestObjectModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SearchRequestObjectModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SearchRequestObjectModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SearchResponseModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/SearchResponseModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SearchResponseModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SearchResponseModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SearchResultModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/SearchResultModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SearchResultModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SearchResultModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SectionGroupModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/SectionGroupModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SectionGroupModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SectionGroupModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SectionGroupRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/SectionGroupRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/SectionGroupRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SectionGroupRequest.go index 4c930e1fd8..6ea95afc98 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/SectionGroupRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/SectionGroupRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // SectionGroupRequestBuilder is request builder for SectionGroup diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SectionLinksModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/SectionLinksModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SectionLinksModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SectionLinksModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SecureAssessmentAccountTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/SecureAssessmentAccountTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SecureAssessmentAccountTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SecureAssessmentAccountTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SecureBootWithDMATypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/SecureBootWithDMATypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SecureBootWithDMATypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SecureBootWithDMATypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SecureScoreControlProfileModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/SecureScoreControlProfileModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SecureScoreControlProfileModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SecureScoreControlProfileModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SecureScoreControlProfileRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/SecureScoreControlProfileRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SecureScoreControlProfileRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SecureScoreControlProfileRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SecureScoreControlStateUpdateModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/SecureScoreControlStateUpdateModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SecureScoreControlStateUpdateModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SecureScoreControlStateUpdateModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SecureScoreModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/SecureScoreModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SecureScoreModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SecureScoreModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SecureScoreRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/SecureScoreRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SecureScoreRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SecureScoreRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SecurityActionAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/SecurityActionAction.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SecurityActionAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SecurityActionAction.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SecurityActionModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/SecurityActionModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SecurityActionModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SecurityActionModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SecurityActionRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/SecurityActionRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SecurityActionRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SecurityActionRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SecurityActionStateModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/SecurityActionStateModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SecurityActionStateModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SecurityActionStateModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SecurityBaselineCategoryStateSummaryModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/SecurityBaselineCategoryStateSummaryModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SecurityBaselineCategoryStateSummaryModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SecurityBaselineCategoryStateSummaryModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SecurityBaselineCategoryStateSummaryRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/SecurityBaselineCategoryStateSummaryRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SecurityBaselineCategoryStateSummaryRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SecurityBaselineCategoryStateSummaryRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SecurityBaselineComplianceStateEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/SecurityBaselineComplianceStateEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SecurityBaselineComplianceStateEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SecurityBaselineComplianceStateEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SecurityBaselineDeviceStateModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/SecurityBaselineDeviceStateModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SecurityBaselineDeviceStateModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SecurityBaselineDeviceStateModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SecurityBaselineDeviceStateRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/SecurityBaselineDeviceStateRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SecurityBaselineDeviceStateRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SecurityBaselineDeviceStateRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SecurityBaselineSettingStateModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/SecurityBaselineSettingStateModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SecurityBaselineSettingStateModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SecurityBaselineSettingStateModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SecurityBaselineSettingStateRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/SecurityBaselineSettingStateRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SecurityBaselineSettingStateRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SecurityBaselineSettingStateRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SecurityBaselineStateModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/SecurityBaselineStateModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SecurityBaselineStateModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SecurityBaselineStateModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SecurityBaselineStateRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/SecurityBaselineStateRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/SecurityBaselineStateRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SecurityBaselineStateRequest.go index de79884f5a..640e9bd737 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/SecurityBaselineStateRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/SecurityBaselineStateRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // SecurityBaselineStateRequestBuilder is request builder for SecurityBaselineState diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SecurityBaselineStateSummaryModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/SecurityBaselineStateSummaryModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SecurityBaselineStateSummaryModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SecurityBaselineStateSummaryModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SecurityBaselineStateSummaryRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/SecurityBaselineStateSummaryRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SecurityBaselineStateSummaryRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SecurityBaselineStateSummaryRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SecurityBaselineTemplateModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/SecurityBaselineTemplateModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SecurityBaselineTemplateModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SecurityBaselineTemplateModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SecurityBaselineTemplateRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/SecurityBaselineTemplateRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/SecurityBaselineTemplateRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SecurityBaselineTemplateRequest.go index 46ffd991a4..84cbe17605 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/SecurityBaselineTemplateRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/SecurityBaselineTemplateRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // SecurityBaselineTemplateRequestBuilder is request builder for SecurityBaselineTemplate diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SecurityModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/SecurityModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SecurityModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SecurityModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SecurityNetworkProtocolEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/SecurityNetworkProtocolEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SecurityNetworkProtocolEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SecurityNetworkProtocolEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SecurityProviderStatusModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/SecurityProviderStatusModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SecurityProviderStatusModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SecurityProviderStatusModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SecurityRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/SecurityRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/SecurityRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SecurityRequest.go index 98cc9b4ebd..73d336f4dc 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/SecurityRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/SecurityRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // SecurityRequestBuilder is request builder for Security diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SecurityVendorInformationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/SecurityVendorInformationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SecurityVendorInformationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SecurityVendorInformationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SensitiveContentEvidenceModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/SensitiveContentEvidenceModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SensitiveContentEvidenceModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SensitiveContentEvidenceModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SensitiveContentLocationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/SensitiveContentLocationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SensitiveContentLocationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SensitiveContentLocationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SensitiveTypeModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/SensitiveTypeModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SensitiveTypeModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SensitiveTypeModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SensitiveTypeRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/SensitiveTypeRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SensitiveTypeRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SensitiveTypeRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SensitivityEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/SensitivityEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SensitivityEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SensitivityEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SensitivityLabelAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/SensitivityLabelAction.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SensitivityLabelAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SensitivityLabelAction.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SensitivityLabelModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/SensitivityLabelModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SensitivityLabelModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SensitivityLabelModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SensitivityLabelRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/SensitivityLabelRequest.go similarity index 98% rename from vendor/github.com/yaegashi/msgraph.go/beta/SensitivityLabelRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SensitivityLabelRequest.go index 17c3b997a3..3b0120d810 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/SensitivityLabelRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/SensitivityLabelRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // SensitivityLabelRequestBuilder is request builder for SensitivityLabel diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SensitivityPolicySettingsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/SensitivityPolicySettingsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SensitivityPolicySettingsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SensitivityPolicySettingsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SensitivityPolicySettingsRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/SensitivityPolicySettingsRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SensitivityPolicySettingsRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SensitivityPolicySettingsRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ServiceHostedMediaConfigModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ServiceHostedMediaConfigModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ServiceHostedMediaConfigModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ServiceHostedMediaConfigModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ServiceInformationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ServiceInformationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ServiceInformationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ServiceInformationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ServicePlanInfoModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ServicePlanInfoModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ServicePlanInfoModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ServicePlanInfoModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ServicePrincipalAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/ServicePrincipalAction.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ServicePrincipalAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ServicePrincipalAction.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ServicePrincipalModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ServicePrincipalModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ServicePrincipalModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ServicePrincipalModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ServicePrincipalRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/ServicePrincipalRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/ServicePrincipalRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ServicePrincipalRequest.go index 6ee476af65..948319c89c 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ServicePrincipalRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/ServicePrincipalRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // ServicePrincipalRequestBuilder is request builder for ServicePrincipal diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ServiceStartTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/ServiceStartTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ServiceStartTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ServiceStartTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SettingSourceModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/SettingSourceModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SettingSourceModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SettingSourceModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SettingStateDeviceSummaryModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/SettingStateDeviceSummaryModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SettingStateDeviceSummaryModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SettingStateDeviceSummaryModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SettingStateDeviceSummaryRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/SettingStateDeviceSummaryRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SettingStateDeviceSummaryRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SettingStateDeviceSummaryRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SettingTemplateValueModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/SettingTemplateValueModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SettingTemplateValueModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SettingTemplateValueModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SettingValueModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/SettingValueModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SettingValueModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SettingValueModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SettingsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/SettingsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SettingsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SettingsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SetupStatusEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/SetupStatusEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SetupStatusEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SetupStatusEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ShareActionModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ShareActionModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ShareActionModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ShareActionModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SharePointActivityPagesModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/SharePointActivityPagesModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SharePointActivityPagesModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SharePointActivityPagesModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SharePointActivityUserCountsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/SharePointActivityUserCountsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SharePointActivityUserCountsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SharePointActivityUserCountsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SharePointActivityUserDetailModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/SharePointActivityUserDetailModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SharePointActivityUserDetailModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SharePointActivityUserDetailModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SharePointSiteUsageDetailModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/SharePointSiteUsageDetailModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SharePointSiteUsageDetailModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SharePointSiteUsageDetailModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SharePointSiteUsageFileCountsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/SharePointSiteUsageFileCountsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SharePointSiteUsageFileCountsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SharePointSiteUsageFileCountsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SharePointSiteUsagePagesModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/SharePointSiteUsagePagesModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SharePointSiteUsagePagesModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SharePointSiteUsagePagesModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SharePointSiteUsageSiteCountsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/SharePointSiteUsageSiteCountsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SharePointSiteUsageSiteCountsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SharePointSiteUsageSiteCountsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SharedAppleDeviceUserModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/SharedAppleDeviceUserModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SharedAppleDeviceUserModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SharedAppleDeviceUserModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SharedDriveItemModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/SharedDriveItemModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SharedDriveItemModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SharedDriveItemModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SharedDriveItemRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/SharedDriveItemRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/SharedDriveItemRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SharedDriveItemRequest.go index 644b620a34..23efd9f4d5 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/SharedDriveItemRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/SharedDriveItemRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // SharedDriveItemRequestBuilder is request builder for SharedDriveItem diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SharedInsightModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/SharedInsightModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SharedInsightModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SharedInsightModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SharedInsightRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/SharedInsightRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SharedInsightRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SharedInsightRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SharedModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/SharedModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SharedModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SharedModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SharedPCAccountDeletionPolicyTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/SharedPCAccountDeletionPolicyTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SharedPCAccountDeletionPolicyTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SharedPCAccountDeletionPolicyTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SharedPCAccountManagerPolicyModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/SharedPCAccountManagerPolicyModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SharedPCAccountManagerPolicyModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SharedPCAccountManagerPolicyModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SharedPCAllowedAccountTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/SharedPCAllowedAccountTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SharedPCAllowedAccountTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SharedPCAllowedAccountTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SharedPCConfigurationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/SharedPCConfigurationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SharedPCConfigurationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SharedPCConfigurationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SharepointIDsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/SharepointIDsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SharepointIDsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SharepointIDsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SharingDetailModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/SharingDetailModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SharingDetailModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SharingDetailModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SharingInvitationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/SharingInvitationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SharingInvitationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SharingInvitationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SharingLinkModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/SharingLinkModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SharingLinkModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SharingLinkModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ShiftActivityModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ShiftActivityModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ShiftActivityModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ShiftActivityModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ShiftChangeRequestObjectModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ShiftChangeRequestObjectModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ShiftChangeRequestObjectModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ShiftChangeRequestObjectModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ShiftItemModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ShiftItemModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ShiftItemModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ShiftItemModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ShiftModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ShiftModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ShiftModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ShiftModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ShiftRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/ShiftRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ShiftRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ShiftRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ShipmentMethodModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ShipmentMethodModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ShipmentMethodModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ShipmentMethodModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ShipmentMethodRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/ShipmentMethodRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ShipmentMethodRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ShipmentMethodRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SideLoadingKeyModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/SideLoadingKeyModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SideLoadingKeyModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SideLoadingKeyModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SideLoadingKeyRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/SideLoadingKeyRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SideLoadingKeyRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SideLoadingKeyRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SignInActivityModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/SignInActivityModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SignInActivityModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SignInActivityModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SignInAssistantOptionsEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/SignInAssistantOptionsEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SignInAssistantOptionsEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SignInAssistantOptionsEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SignInFrequencySessionControlModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/SignInFrequencySessionControlModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SignInFrequencySessionControlModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SignInFrequencySessionControlModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SignInLocationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/SignInLocationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SignInLocationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SignInLocationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SignInModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/SignInModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SignInModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SignInModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SignInRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/SignInRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SignInRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SignInRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SignInStatusModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/SignInStatusModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SignInStatusModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SignInStatusModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SigninFrequencyTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/SigninFrequencyTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SigninFrequencyTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SigninFrequencyTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SingleSignOnExtensionModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/SingleSignOnExtensionModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SingleSignOnExtensionModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SingleSignOnExtensionModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SingleValueLegacyExtendedPropertyModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/SingleValueLegacyExtendedPropertyModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SingleValueLegacyExtendedPropertyModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SingleValueLegacyExtendedPropertyModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SingleValueLegacyExtendedPropertyRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/SingleValueLegacyExtendedPropertyRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SingleValueLegacyExtendedPropertyRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SingleValueLegacyExtendedPropertyRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SiteAccessTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/SiteAccessTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SiteAccessTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SiteAccessTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SiteAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/SiteAction.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/SiteAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SiteAction.go index ee558369e6..e7384b13d4 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/SiteAction.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/SiteAction.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // SiteCollectionAddRequestParameter undocumented diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SiteActivitySummaryModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/SiteActivitySummaryModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SiteActivitySummaryModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SiteActivitySummaryModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SiteCollectionModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/SiteCollectionModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SiteCollectionModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SiteCollectionModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SiteModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/SiteModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SiteModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SiteModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SitePageAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/SitePageAction.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SitePageAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SitePageAction.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SitePageDataModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/SitePageDataModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SitePageDataModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SitePageDataModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SitePageModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/SitePageModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SitePageModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SitePageModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SitePageRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/SitePageRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SitePageRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SitePageRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SiteRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/SiteRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/SiteRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SiteRequest.go index ef5005a0da..903c7c16c9 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/SiteRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/SiteRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // SiteRequestBuilder is request builder for Site diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SiteSecurityLevelEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/SiteSecurityLevelEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SiteSecurityLevelEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SiteSecurityLevelEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SiteUsageStorageModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/SiteUsageStorageModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SiteUsageStorageModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SiteUsageStorageModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SizeRangeModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/SizeRangeModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SizeRangeModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SizeRangeModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SkillProficiencyLevelEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/SkillProficiencyLevelEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SkillProficiencyLevelEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SkillProficiencyLevelEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SkillProficiencyModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/SkillProficiencyModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SkillProficiencyModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SkillProficiencyModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SkillProficiencyRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/SkillProficiencyRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SkillProficiencyRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SkillProficiencyRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SkypeForBusinessActivityCountsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/SkypeForBusinessActivityCountsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SkypeForBusinessActivityCountsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SkypeForBusinessActivityCountsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SkypeForBusinessActivityUserCountsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/SkypeForBusinessActivityUserCountsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SkypeForBusinessActivityUserCountsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SkypeForBusinessActivityUserCountsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SkypeForBusinessActivityUserDetailModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/SkypeForBusinessActivityUserDetailModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SkypeForBusinessActivityUserDetailModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SkypeForBusinessActivityUserDetailModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SkypeForBusinessDeviceUsageDistributionUserCountsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/SkypeForBusinessDeviceUsageDistributionUserCountsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SkypeForBusinessDeviceUsageDistributionUserCountsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SkypeForBusinessDeviceUsageDistributionUserCountsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SkypeForBusinessDeviceUsageUserCountsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/SkypeForBusinessDeviceUsageUserCountsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SkypeForBusinessDeviceUsageUserCountsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SkypeForBusinessDeviceUsageUserCountsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SkypeForBusinessDeviceUsageUserDetailModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/SkypeForBusinessDeviceUsageUserDetailModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SkypeForBusinessDeviceUsageUserDetailModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SkypeForBusinessDeviceUsageUserDetailModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SkypeForBusinessOrganizerActivityCountsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/SkypeForBusinessOrganizerActivityCountsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SkypeForBusinessOrganizerActivityCountsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SkypeForBusinessOrganizerActivityCountsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SkypeForBusinessOrganizerActivityMinuteCountsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/SkypeForBusinessOrganizerActivityMinuteCountsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SkypeForBusinessOrganizerActivityMinuteCountsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SkypeForBusinessOrganizerActivityMinuteCountsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SkypeForBusinessOrganizerActivityUserCountsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/SkypeForBusinessOrganizerActivityUserCountsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SkypeForBusinessOrganizerActivityUserCountsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SkypeForBusinessOrganizerActivityUserCountsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SkypeForBusinessParticipantActivityCountsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/SkypeForBusinessParticipantActivityCountsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SkypeForBusinessParticipantActivityCountsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SkypeForBusinessParticipantActivityCountsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SkypeForBusinessParticipantActivityMinuteCountsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/SkypeForBusinessParticipantActivityMinuteCountsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SkypeForBusinessParticipantActivityMinuteCountsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SkypeForBusinessParticipantActivityMinuteCountsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SkypeForBusinessParticipantActivityUserCountsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/SkypeForBusinessParticipantActivityUserCountsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SkypeForBusinessParticipantActivityUserCountsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SkypeForBusinessParticipantActivityUserCountsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SkypeForBusinessPeerToPeerActivityCountsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/SkypeForBusinessPeerToPeerActivityCountsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SkypeForBusinessPeerToPeerActivityCountsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SkypeForBusinessPeerToPeerActivityCountsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SkypeForBusinessPeerToPeerActivityMinuteCountsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/SkypeForBusinessPeerToPeerActivityMinuteCountsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SkypeForBusinessPeerToPeerActivityMinuteCountsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SkypeForBusinessPeerToPeerActivityMinuteCountsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SkypeForBusinessPeerToPeerActivityUserCountsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/SkypeForBusinessPeerToPeerActivityUserCountsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SkypeForBusinessPeerToPeerActivityUserCountsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SkypeForBusinessPeerToPeerActivityUserCountsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SoftwareUpdateStatusSummaryModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/SoftwareUpdateStatusSummaryModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SoftwareUpdateStatusSummaryModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SoftwareUpdateStatusSummaryModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SoftwareUpdateStatusSummaryRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/SoftwareUpdateStatusSummaryRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SoftwareUpdateStatusSummaryRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SoftwareUpdateStatusSummaryRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SpecialFolderModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/SpecialFolderModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SpecialFolderModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SpecialFolderModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/StagedFeatureNameEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/StagedFeatureNameEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/StagedFeatureNameEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/StagedFeatureNameEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/StandardTimeZoneOffsetModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/StandardTimeZoneOffsetModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/StandardTimeZoneOffsetModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/StandardTimeZoneOffsetModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/StateManagementSettingEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/StateManagementSettingEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/StateManagementSettingEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/StateManagementSettingEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/StatusBaseModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/StatusBaseModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/StatusBaseModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/StatusBaseModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/StatusDetailsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/StatusDetailsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/StatusDetailsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/StatusDetailsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/StatusEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/StatusEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/StatusEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/StatusEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/StoragePlanInformationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/StoragePlanInformationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/StoragePlanInformationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/StoragePlanInformationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/StringKeyAttributeMappingSourceValuePairModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/StringKeyAttributeMappingSourceValuePairModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/StringKeyAttributeMappingSourceValuePairModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/StringKeyAttributeMappingSourceValuePairModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/StringKeyLongValuePairModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/StringKeyLongValuePairModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/StringKeyLongValuePairModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/StringKeyLongValuePairModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/StringKeyObjectValuePairModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/StringKeyObjectValuePairModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/StringKeyObjectValuePairModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/StringKeyObjectValuePairModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/StringKeyStringValuePairModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/StringKeyStringValuePairModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/StringKeyStringValuePairModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/StringKeyStringValuePairModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SubjectAlternativeNameTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/SubjectAlternativeNameTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SubjectAlternativeNameTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SubjectAlternativeNameTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SubjectNameFormatEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/SubjectNameFormatEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SubjectNameFormatEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SubjectNameFormatEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SubscribeToToneOperationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/SubscribeToToneOperationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SubscribeToToneOperationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SubscribeToToneOperationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SubscribedSKUModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/SubscribedSKUModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SubscribedSKUModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SubscribedSKUModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SubscribedSKURequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/SubscribedSKURequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SubscribedSKURequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SubscribedSKURequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SubscriptionModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/SubscriptionModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SubscriptionModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SubscriptionModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SubscriptionRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/SubscriptionRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SubscriptionRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SubscriptionRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SuspiciousIPRiskEventModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/SuspiciousIPRiskEventModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SuspiciousIPRiskEventModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SuspiciousIPRiskEventModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SuspiciousIPRiskEventRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/SuspiciousIPRiskEventRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SuspiciousIPRiskEventRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SuspiciousIPRiskEventRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SwapShiftsChangeRequestObjectModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/SwapShiftsChangeRequestObjectModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SwapShiftsChangeRequestObjectModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SwapShiftsChangeRequestObjectModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SwapShiftsChangeRequestObjectRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/SwapShiftsChangeRequestObjectRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SwapShiftsChangeRequestObjectRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SwapShiftsChangeRequestObjectRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SymantecCodeSigningCertificateModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/SymantecCodeSigningCertificateModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SymantecCodeSigningCertificateModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SymantecCodeSigningCertificateModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SymantecCodeSigningCertificateRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/SymantecCodeSigningCertificateRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SymantecCodeSigningCertificateRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SymantecCodeSigningCertificateRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SynchronizationErrorModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/SynchronizationErrorModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SynchronizationErrorModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SynchronizationErrorModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SynchronizationJobAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/SynchronizationJobAction.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SynchronizationJobAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SynchronizationJobAction.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SynchronizationJobModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/SynchronizationJobModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SynchronizationJobModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SynchronizationJobModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SynchronizationJobRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/SynchronizationJobRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SynchronizationJobRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SynchronizationJobRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SynchronizationJobRestartCriteriaModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/SynchronizationJobRestartCriteriaModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SynchronizationJobRestartCriteriaModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SynchronizationJobRestartCriteriaModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SynchronizationJobRestartScopeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/SynchronizationJobRestartScopeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SynchronizationJobRestartScopeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SynchronizationJobRestartScopeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SynchronizationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/SynchronizationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SynchronizationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SynchronizationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SynchronizationProgressModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/SynchronizationProgressModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SynchronizationProgressModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SynchronizationProgressModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SynchronizationQuarantineModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/SynchronizationQuarantineModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SynchronizationQuarantineModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SynchronizationQuarantineModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SynchronizationRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/SynchronizationRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/SynchronizationRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SynchronizationRequest.go index 6fa8ed0216..f60d9d84da 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/SynchronizationRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/SynchronizationRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // SynchronizationRequestBuilder is request builder for Synchronization diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SynchronizationRuleModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/SynchronizationRuleModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SynchronizationRuleModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SynchronizationRuleModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SynchronizationScheduleModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/SynchronizationScheduleModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SynchronizationScheduleModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SynchronizationScheduleModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SynchronizationScheduleStateEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/SynchronizationScheduleStateEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SynchronizationScheduleStateEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SynchronizationScheduleStateEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SynchronizationSchemaAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/SynchronizationSchemaAction.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SynchronizationSchemaAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SynchronizationSchemaAction.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SynchronizationSchemaModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/SynchronizationSchemaModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SynchronizationSchemaModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SynchronizationSchemaModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SynchronizationSchemaRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/SynchronizationSchemaRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/SynchronizationSchemaRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SynchronizationSchemaRequest.go index 303a9edebb..5c2eb54106 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/SynchronizationSchemaRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/SynchronizationSchemaRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // SynchronizationSchemaRequestBuilder is request builder for SynchronizationSchema diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SynchronizationSecretEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/SynchronizationSecretEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SynchronizationSecretEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SynchronizationSecretEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SynchronizationSecretKeyStringValuePairModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/SynchronizationSecretKeyStringValuePairModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SynchronizationSecretKeyStringValuePairModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SynchronizationSecretKeyStringValuePairModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SynchronizationStatusCodeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/SynchronizationStatusCodeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SynchronizationStatusCodeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SynchronizationStatusCodeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SynchronizationStatusModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/SynchronizationStatusModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SynchronizationStatusModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SynchronizationStatusModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SynchronizationTaskExecutionModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/SynchronizationTaskExecutionModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SynchronizationTaskExecutionModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SynchronizationTaskExecutionModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SynchronizationTaskExecutionResultEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/SynchronizationTaskExecutionResultEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SynchronizationTaskExecutionResultEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SynchronizationTaskExecutionResultEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SynchronizationTemplateModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/SynchronizationTemplateModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SynchronizationTemplateModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SynchronizationTemplateModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SynchronizationTemplateRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/SynchronizationTemplateRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SynchronizationTemplateRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SynchronizationTemplateRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SystemFacetModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/SystemFacetModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/SystemFacetModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/SystemFacetModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/TargetPolicyEndpointsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/TargetPolicyEndpointsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/TargetPolicyEndpointsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/TargetPolicyEndpointsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/TargetResourceModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/TargetResourceModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/TargetResourceModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/TargetResourceModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/TargetedManagedAppConfigurationAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/TargetedManagedAppConfigurationAction.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/TargetedManagedAppConfigurationAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/TargetedManagedAppConfigurationAction.go index 7b81167d5d..5ce26e54f2 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/TargetedManagedAppConfigurationAction.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/TargetedManagedAppConfigurationAction.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // TargetedManagedAppConfigurationCollectionHasPayloadLinksRequestParameter undocumented diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/TargetedManagedAppConfigurationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/TargetedManagedAppConfigurationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/TargetedManagedAppConfigurationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/TargetedManagedAppConfigurationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/TargetedManagedAppConfigurationPolicySetItemModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/TargetedManagedAppConfigurationPolicySetItemModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/TargetedManagedAppConfigurationPolicySetItemModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/TargetedManagedAppConfigurationPolicySetItemModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/TargetedManagedAppConfigurationRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/TargetedManagedAppConfigurationRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/TargetedManagedAppConfigurationRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/TargetedManagedAppConfigurationRequest.go index fe832827a4..f0c68b10be 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/TargetedManagedAppConfigurationRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/TargetedManagedAppConfigurationRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // TargetedManagedAppConfigurationRequestBuilder is request builder for TargetedManagedAppConfiguration diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/TargetedManagedAppPolicyAssignmentModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/TargetedManagedAppPolicyAssignmentModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/TargetedManagedAppPolicyAssignmentModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/TargetedManagedAppPolicyAssignmentModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/TargetedManagedAppPolicyAssignmentRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/TargetedManagedAppPolicyAssignmentRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/TargetedManagedAppPolicyAssignmentRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/TargetedManagedAppPolicyAssignmentRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/TargetedManagedAppProtectionAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/TargetedManagedAppProtectionAction.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/TargetedManagedAppProtectionAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/TargetedManagedAppProtectionAction.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/TargetedManagedAppProtectionModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/TargetedManagedAppProtectionModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/TargetedManagedAppProtectionModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/TargetedManagedAppProtectionModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/TargetedManagedAppProtectionRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/TargetedManagedAppProtectionRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/TargetedManagedAppProtectionRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/TargetedManagedAppProtectionRequest.go index fdc2574cf7..801071613e 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/TargetedManagedAppProtectionRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/TargetedManagedAppProtectionRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // TargetedManagedAppProtectionRequestBuilder is request builder for TargetedManagedAppProtection diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/TaskStatusEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/TaskStatusEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/TaskStatusEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/TaskStatusEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/TaxAreaModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/TaxAreaModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/TaxAreaModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/TaxAreaModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/TaxAreaRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/TaxAreaRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/TaxAreaRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/TaxAreaRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/TaxGroupModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/TaxGroupModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/TaxGroupModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/TaxGroupModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/TaxGroupRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/TaxGroupRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/TaxGroupRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/TaxGroupRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/TeamAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/TeamAction.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/TeamAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/TeamAction.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/TeamClassSettingsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/TeamClassSettingsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/TeamClassSettingsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/TeamClassSettingsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/TeamDiscoverySettingsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/TeamDiscoverySettingsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/TeamDiscoverySettingsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/TeamDiscoverySettingsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/TeamFunSettingsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/TeamFunSettingsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/TeamFunSettingsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/TeamFunSettingsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/TeamGuestSettingsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/TeamGuestSettingsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/TeamGuestSettingsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/TeamGuestSettingsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/TeamMemberSettingsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/TeamMemberSettingsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/TeamMemberSettingsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/TeamMemberSettingsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/TeamMessagingSettingsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/TeamMessagingSettingsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/TeamMessagingSettingsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/TeamMessagingSettingsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/TeamModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/TeamModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/TeamModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/TeamModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/TeamRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/TeamRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/TeamRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/TeamRequest.go index 38b07592db..515aa18765 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/TeamRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/TeamRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // TeamRequestBuilder is request builder for Team diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/TeamSpecializationEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/TeamSpecializationEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/TeamSpecializationEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/TeamSpecializationEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/TeamVisibilityTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/TeamVisibilityTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/TeamVisibilityTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/TeamVisibilityTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/TeamsAppDefinitionModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/TeamsAppDefinitionModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/TeamsAppDefinitionModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/TeamsAppDefinitionModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/TeamsAppDefinitionRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/TeamsAppDefinitionRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/TeamsAppDefinitionRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/TeamsAppDefinitionRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/TeamsAppDistributionMethodEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/TeamsAppDistributionMethodEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/TeamsAppDistributionMethodEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/TeamsAppDistributionMethodEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/TeamsAppInstallationAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/TeamsAppInstallationAction.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/TeamsAppInstallationAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/TeamsAppInstallationAction.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/TeamsAppInstallationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/TeamsAppInstallationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/TeamsAppInstallationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/TeamsAppInstallationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/TeamsAppInstallationRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/TeamsAppInstallationRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/TeamsAppInstallationRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/TeamsAppInstallationRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/TeamsAppModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/TeamsAppModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/TeamsAppModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/TeamsAppModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/TeamsAppRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/TeamsAppRequest.go similarity index 98% rename from vendor/github.com/yaegashi/msgraph.go/beta/TeamsAppRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/TeamsAppRequest.go index 06393b1ee2..1684764ce0 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/TeamsAppRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/TeamsAppRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // TeamsAppRequestBuilder is request builder for TeamsApp diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/TeamsAsyncOperationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/TeamsAsyncOperationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/TeamsAsyncOperationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/TeamsAsyncOperationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/TeamsAsyncOperationRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/TeamsAsyncOperationRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/TeamsAsyncOperationRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/TeamsAsyncOperationRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/TeamsAsyncOperationStatusEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/TeamsAsyncOperationStatusEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/TeamsAsyncOperationStatusEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/TeamsAsyncOperationStatusEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/TeamsAsyncOperationTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/TeamsAsyncOperationTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/TeamsAsyncOperationTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/TeamsAsyncOperationTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/TeamsCatalogAppModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/TeamsCatalogAppModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/TeamsCatalogAppModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/TeamsCatalogAppModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/TeamsCatalogAppRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/TeamsCatalogAppRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/TeamsCatalogAppRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/TeamsCatalogAppRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/TeamsDeviceUsageDistributionUserCountsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/TeamsDeviceUsageDistributionUserCountsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/TeamsDeviceUsageDistributionUserCountsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/TeamsDeviceUsageDistributionUserCountsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/TeamsDeviceUsageUserCountsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/TeamsDeviceUsageUserCountsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/TeamsDeviceUsageUserCountsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/TeamsDeviceUsageUserCountsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/TeamsDeviceUsageUserDetailModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/TeamsDeviceUsageUserDetailModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/TeamsDeviceUsageUserDetailModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/TeamsDeviceUsageUserDetailModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/TeamsTabConfigurationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/TeamsTabConfigurationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/TeamsTabConfigurationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/TeamsTabConfigurationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/TeamsTabModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/TeamsTabModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/TeamsTabModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/TeamsTabModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/TeamsTabRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/TeamsTabRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/TeamsTabRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/TeamsTabRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/TeamsTemplateModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/TeamsTemplateModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/TeamsTemplateModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/TeamsTemplateModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/TeamsTemplateRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/TeamsTemplateRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/TeamsTemplateRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/TeamsTemplateRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/TeamsUserActivityCountsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/TeamsUserActivityCountsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/TeamsUserActivityCountsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/TeamsUserActivityCountsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/TeamsUserActivityUserCountsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/TeamsUserActivityUserCountsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/TeamsUserActivityUserCountsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/TeamsUserActivityUserCountsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/TeamsUserActivityUserDetailModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/TeamsUserActivityUserDetailModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/TeamsUserActivityUserDetailModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/TeamsUserActivityUserDetailModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/TeamworkModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/TeamworkModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/TeamworkModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/TeamworkModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/TeamworkRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/TeamworkRequest.go similarity index 98% rename from vendor/github.com/yaegashi/msgraph.go/beta/TeamworkRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/TeamworkRequest.go index e223181eb8..810bd6cf9f 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/TeamworkRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/TeamworkRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // TeamworkRequestBuilder is request builder for Teamwork diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/TelecomExpenseManagementPartnerModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/TelecomExpenseManagementPartnerModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/TelecomExpenseManagementPartnerModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/TelecomExpenseManagementPartnerModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/TelecomExpenseManagementPartnerRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/TelecomExpenseManagementPartnerRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/TelecomExpenseManagementPartnerRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/TelecomExpenseManagementPartnerRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/TenantSetupInfoModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/TenantSetupInfoModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/TenantSetupInfoModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/TenantSetupInfoModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/TenantSetupInfoRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/TenantSetupInfoRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/TenantSetupInfoRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/TenantSetupInfoRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/TermsAndConditionsAcceptanceStatusModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/TermsAndConditionsAcceptanceStatusModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/TermsAndConditionsAcceptanceStatusModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/TermsAndConditionsAcceptanceStatusModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/TermsAndConditionsAcceptanceStatusRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/TermsAndConditionsAcceptanceStatusRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/TermsAndConditionsAcceptanceStatusRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/TermsAndConditionsAcceptanceStatusRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/TermsAndConditionsAssignmentModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/TermsAndConditionsAssignmentModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/TermsAndConditionsAssignmentModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/TermsAndConditionsAssignmentModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/TermsAndConditionsAssignmentRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/TermsAndConditionsAssignmentRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/TermsAndConditionsAssignmentRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/TermsAndConditionsAssignmentRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/TermsAndConditionsGroupAssignmentModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/TermsAndConditionsGroupAssignmentModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/TermsAndConditionsGroupAssignmentModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/TermsAndConditionsGroupAssignmentModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/TermsAndConditionsGroupAssignmentRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/TermsAndConditionsGroupAssignmentRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/TermsAndConditionsGroupAssignmentRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/TermsAndConditionsGroupAssignmentRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/TermsAndConditionsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/TermsAndConditionsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/TermsAndConditionsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/TermsAndConditionsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/TermsAndConditionsRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/TermsAndConditionsRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/TermsAndConditionsRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/TermsAndConditionsRequest.go index 77939caa9b..8299c04448 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/TermsAndConditionsRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/TermsAndConditionsRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // TermsAndConditionsRequestBuilder is request builder for TermsAndConditions diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/TextClassificationRequestObjectModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/TextClassificationRequestObjectModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/TextClassificationRequestObjectModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/TextClassificationRequestObjectModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/TextClassificationRequestObjectRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/TextClassificationRequestObjectRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/TextClassificationRequestObjectRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/TextClassificationRequestObjectRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/TextColumnModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/TextColumnModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/TextColumnModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/TextColumnModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ThreatAssessmentContentTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/ThreatAssessmentContentTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ThreatAssessmentContentTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ThreatAssessmentContentTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ThreatAssessmentRequestObjectModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ThreatAssessmentRequestObjectModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ThreatAssessmentRequestObjectModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ThreatAssessmentRequestObjectModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ThreatAssessmentRequestObjectRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/ThreatAssessmentRequestObjectRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/ThreatAssessmentRequestObjectRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ThreatAssessmentRequestObjectRequest.go index 679c884d58..3e5f9058a7 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ThreatAssessmentRequestObjectRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/ThreatAssessmentRequestObjectRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // ThreatAssessmentRequestObjectRequestBuilder is request builder for ThreatAssessmentRequestObject diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ThreatAssessmentRequestPivotPropertyEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/ThreatAssessmentRequestPivotPropertyEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ThreatAssessmentRequestPivotPropertyEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ThreatAssessmentRequestPivotPropertyEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ThreatAssessmentRequestSourceEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/ThreatAssessmentRequestSourceEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ThreatAssessmentRequestSourceEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ThreatAssessmentRequestSourceEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ThreatAssessmentRequestsCountModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ThreatAssessmentRequestsCountModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ThreatAssessmentRequestsCountModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ThreatAssessmentRequestsCountModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ThreatAssessmentResultModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ThreatAssessmentResultModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ThreatAssessmentResultModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ThreatAssessmentResultModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ThreatAssessmentResultRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/ThreatAssessmentResultRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ThreatAssessmentResultRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ThreatAssessmentResultRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ThreatAssessmentResultTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/ThreatAssessmentResultTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ThreatAssessmentResultTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ThreatAssessmentResultTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ThreatAssessmentStatusEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/ThreatAssessmentStatusEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ThreatAssessmentStatusEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ThreatAssessmentStatusEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ThreatCategoryEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/ThreatCategoryEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ThreatCategoryEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ThreatCategoryEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ThreatExpectedAssessmentEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/ThreatExpectedAssessmentEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ThreatExpectedAssessmentEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ThreatExpectedAssessmentEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ThumbnailModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ThumbnailModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ThumbnailModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ThumbnailModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ThumbnailSetModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ThumbnailSetModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ThumbnailSetModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ThumbnailSetModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ThumbnailSetRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/ThumbnailSetRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ThumbnailSetRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ThumbnailSetRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/TiActionEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/TiActionEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/TiActionEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/TiActionEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/TiIndicatorAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/TiIndicatorAction.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/TiIndicatorAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/TiIndicatorAction.go index c65fe9523f..337dc6ea6c 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/TiIndicatorAction.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/TiIndicatorAction.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // TiIndicatorCollectionSubmitTiIndicatorsRequestParameter undocumented diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/TiIndicatorModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/TiIndicatorModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/TiIndicatorModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/TiIndicatorModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/TiIndicatorRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/TiIndicatorRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/TiIndicatorRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/TiIndicatorRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/TimeConstraintModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/TimeConstraintModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/TimeConstraintModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/TimeConstraintModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/TimeOffItemModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/TimeOffItemModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/TimeOffItemModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/TimeOffItemModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/TimeOffModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/TimeOffModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/TimeOffModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/TimeOffModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/TimeOffReasonIconTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/TimeOffReasonIconTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/TimeOffReasonIconTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/TimeOffReasonIconTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/TimeOffReasonModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/TimeOffReasonModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/TimeOffReasonModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/TimeOffReasonModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/TimeOffReasonRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/TimeOffReasonRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/TimeOffReasonRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/TimeOffReasonRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/TimeOffRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/TimeOffRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/TimeOffRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/TimeOffRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/TimeOffRequestObjectModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/TimeOffRequestObjectModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/TimeOffRequestObjectModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/TimeOffRequestObjectModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/TimeOffRequestObjectRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/TimeOffRequestObjectRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/TimeOffRequestObjectRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/TimeOffRequestObjectRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/TimeSlotModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/TimeSlotModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/TimeSlotModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/TimeSlotModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/TimeZoneBaseModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/TimeZoneBaseModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/TimeZoneBaseModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/TimeZoneBaseModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/TimeZoneInformationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/TimeZoneInformationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/TimeZoneInformationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/TimeZoneInformationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/TimeZoneStandardEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/TimeZoneStandardEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/TimeZoneStandardEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/TimeZoneStandardEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/TlpLevelEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/TlpLevelEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/TlpLevelEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/TlpLevelEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/TokenIssuerTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/TokenIssuerTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/TokenIssuerTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/TokenIssuerTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/TokenMeetingInfoModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/TokenMeetingInfoModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/TokenMeetingInfoModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/TokenMeetingInfoModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ToneEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/ToneEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ToneEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ToneEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ToneInfoModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/ToneInfoModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/ToneInfoModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/ToneInfoModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/TrendingModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/TrendingModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/TrendingModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/TrendingModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/TrendingRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/TrendingRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/TrendingRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/TrendingRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/TrustFrameworkKeyModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/TrustFrameworkKeyModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/TrustFrameworkKeyModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/TrustFrameworkKeyModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/TrustFrameworkKeySetAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/TrustFrameworkKeySetAction.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/TrustFrameworkKeySetAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/TrustFrameworkKeySetAction.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/TrustFrameworkKeySetModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/TrustFrameworkKeySetModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/TrustFrameworkKeySetModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/TrustFrameworkKeySetModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/TrustFrameworkKeySetRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/TrustFrameworkKeySetRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/TrustFrameworkKeySetRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/TrustFrameworkKeySetRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/TrustFrameworkModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/TrustFrameworkModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/TrustFrameworkModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/TrustFrameworkModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/TrustFrameworkPolicyModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/TrustFrameworkPolicyModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/TrustFrameworkPolicyModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/TrustFrameworkPolicyModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/TrustFrameworkPolicyRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/TrustFrameworkPolicyRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/TrustFrameworkPolicyRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/TrustFrameworkPolicyRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/TrustFrameworkRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/TrustFrameworkRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/TrustFrameworkRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/TrustFrameworkRequest.go index 7f9c1226d0..e8104c2fbf 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/TrustFrameworkRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/TrustFrameworkRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // TrustFrameworkRequestBuilder is request builder for TrustFramework diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/TypedEmailAddressModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/TypedEmailAddressModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/TypedEmailAddressModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/TypedEmailAddressModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/URLAssessmentRequestObjectModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/URLAssessmentRequestObjectModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/URLAssessmentRequestObjectModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/URLAssessmentRequestObjectModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/UnaryManagementConditionExpressionModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/UnaryManagementConditionExpressionModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/UnaryManagementConditionExpressionModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/UnaryManagementConditionExpressionModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/UnaryManagementConditionExpressionOperatorTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/UnaryManagementConditionExpressionOperatorTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/UnaryManagementConditionExpressionOperatorTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/UnaryManagementConditionExpressionOperatorTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/UnfamiliarLocationRiskEventModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/UnfamiliarLocationRiskEventModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/UnfamiliarLocationRiskEventModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/UnfamiliarLocationRiskEventModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/UnfamiliarLocationRiskEventRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/UnfamiliarLocationRiskEventRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/UnfamiliarLocationRiskEventRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/UnfamiliarLocationRiskEventRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/UnifiedRoleAssignmentModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/UnifiedRoleAssignmentModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/UnifiedRoleAssignmentModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/UnifiedRoleAssignmentModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/UnifiedRoleAssignmentRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/UnifiedRoleAssignmentRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/UnifiedRoleAssignmentRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/UnifiedRoleAssignmentRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/UnifiedRoleDefinitionModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/UnifiedRoleDefinitionModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/UnifiedRoleDefinitionModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/UnifiedRoleDefinitionModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/UnifiedRoleDefinitionRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/UnifiedRoleDefinitionRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/UnifiedRoleDefinitionRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/UnifiedRoleDefinitionRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/UnifiedRolePermissionModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/UnifiedRolePermissionModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/UnifiedRolePermissionModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/UnifiedRolePermissionModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/UnitOfMeasureModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/UnitOfMeasureModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/UnitOfMeasureModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/UnitOfMeasureModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/UnitOfMeasureRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/UnitOfMeasureRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/UnitOfMeasureRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/UnitOfMeasureRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/UnmuteParticipantOperationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/UnmuteParticipantOperationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/UnmuteParticipantOperationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/UnmuteParticipantOperationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/UnsupportedDeviceConfigurationDetailModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/UnsupportedDeviceConfigurationDetailModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/UnsupportedDeviceConfigurationDetailModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/UnsupportedDeviceConfigurationDetailModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/UnsupportedDeviceConfigurationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/UnsupportedDeviceConfigurationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/UnsupportedDeviceConfigurationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/UnsupportedDeviceConfigurationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/UpdateClassificationEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/UpdateClassificationEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/UpdateClassificationEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/UpdateClassificationEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/UpdateRecordingStatusOperationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/UpdateRecordingStatusOperationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/UpdateRecordingStatusOperationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/UpdateRecordingStatusOperationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/UpdateWindowModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/UpdateWindowModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/UpdateWindowModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/UpdateWindowModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/UpdateWindowsDeviceAccountActionParameterModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/UpdateWindowsDeviceAccountActionParameterModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/UpdateWindowsDeviceAccountActionParameterModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/UpdateWindowsDeviceAccountActionParameterModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/UploadSessionModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/UploadSessionModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/UploadSessionModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/UploadSessionModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/UsageAuthMethodEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/UsageAuthMethodEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/UsageAuthMethodEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/UsageAuthMethodEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/UsageDetailsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/UsageDetailsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/UsageDetailsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/UsageDetailsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/UsedInsightModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/UsedInsightModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/UsedInsightModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/UsedInsightModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/UsedInsightRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/UsedInsightRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/UsedInsightRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/UsedInsightRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/UserAccountInformationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/UserAccountInformationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/UserAccountInformationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/UserAccountInformationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/UserAccountInformationRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/UserAccountInformationRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/UserAccountInformationRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/UserAccountInformationRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/UserAccountModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/UserAccountModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/UserAccountModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/UserAccountModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/UserAccountSecurityTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/UserAccountSecurityTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/UserAccountSecurityTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/UserAccountSecurityTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/UserAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/UserAction.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/UserAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/UserAction.go index e298aa2571..be2e806849 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/UserAction.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/UserAction.go @@ -9,7 +9,7 @@ import ( "net/http" "time" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // UserAssignLicenseRequestParameter undocumented diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/UserActivationCountsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/UserActivationCountsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/UserActivationCountsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/UserActivationCountsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/UserActivityModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/UserActivityModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/UserActivityModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/UserActivityModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/UserActivityRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/UserActivityRequest.go similarity index 98% rename from vendor/github.com/yaegashi/msgraph.go/beta/UserActivityRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/UserActivityRequest.go index 9e8623981e..771800511b 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/UserActivityRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/UserActivityRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // UserActivityRequestBuilder is request builder for UserActivity diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/UserAnalyticsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/UserAnalyticsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/UserAnalyticsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/UserAnalyticsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/UserAnalyticsRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/UserAnalyticsRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/UserAnalyticsRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/UserAnalyticsRequest.go index 001394ab90..f51176505d 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/UserAnalyticsRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/UserAnalyticsRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // UserAnalyticsRequestBuilder is request builder for UserAnalytics diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/UserAppInstallStatusModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/UserAppInstallStatusModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/UserAppInstallStatusModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/UserAppInstallStatusModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/UserAppInstallStatusRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/UserAppInstallStatusRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/UserAppInstallStatusRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/UserAppInstallStatusRequest.go index db85029720..95827d096c 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/UserAppInstallStatusRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/UserAppInstallStatusRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // UserAppInstallStatusRequestBuilder is request builder for UserAppInstallStatus diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/UserConfigurationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/UserConfigurationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/UserConfigurationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/UserConfigurationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/UserConfigurationRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/UserConfigurationRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/UserConfigurationRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/UserConfigurationRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/UserCredentialUsageDetailsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/UserCredentialUsageDetailsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/UserCredentialUsageDetailsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/UserCredentialUsageDetailsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/UserCredentialUsageDetailsRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/UserCredentialUsageDetailsRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/UserCredentialUsageDetailsRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/UserCredentialUsageDetailsRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/UserEmailSourceEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/UserEmailSourceEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/UserEmailSourceEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/UserEmailSourceEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/UserExperienceAnalyticsBaselineModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/UserExperienceAnalyticsBaselineModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/UserExperienceAnalyticsBaselineModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/UserExperienceAnalyticsBaselineModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/UserExperienceAnalyticsBaselineRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/UserExperienceAnalyticsBaselineRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/UserExperienceAnalyticsBaselineRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/UserExperienceAnalyticsBaselineRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/UserExperienceAnalyticsCategoryModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/UserExperienceAnalyticsCategoryModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/UserExperienceAnalyticsCategoryModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/UserExperienceAnalyticsCategoryModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/UserExperienceAnalyticsCategoryRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/UserExperienceAnalyticsCategoryRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/UserExperienceAnalyticsCategoryRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/UserExperienceAnalyticsCategoryRequest.go index e8604f9b02..c66f2dfd71 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/UserExperienceAnalyticsCategoryRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/UserExperienceAnalyticsCategoryRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // UserExperienceAnalyticsCategoryRequestBuilder is request builder for UserExperienceAnalyticsCategory diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/UserExperienceAnalyticsDevicePerformanceModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/UserExperienceAnalyticsDevicePerformanceModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/UserExperienceAnalyticsDevicePerformanceModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/UserExperienceAnalyticsDevicePerformanceModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/UserExperienceAnalyticsDevicePerformanceRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/UserExperienceAnalyticsDevicePerformanceRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/UserExperienceAnalyticsDevicePerformanceRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/UserExperienceAnalyticsDevicePerformanceRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/UserExperienceAnalyticsDeviceStartupHistoryModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/UserExperienceAnalyticsDeviceStartupHistoryModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/UserExperienceAnalyticsDeviceStartupHistoryModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/UserExperienceAnalyticsDeviceStartupHistoryModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/UserExperienceAnalyticsDeviceStartupHistoryRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/UserExperienceAnalyticsDeviceStartupHistoryRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/UserExperienceAnalyticsDeviceStartupHistoryRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/UserExperienceAnalyticsDeviceStartupHistoryRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/UserExperienceAnalyticsHealthStateEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/UserExperienceAnalyticsHealthStateEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/UserExperienceAnalyticsHealthStateEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/UserExperienceAnalyticsHealthStateEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/UserExperienceAnalyticsInsightModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/UserExperienceAnalyticsInsightModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/UserExperienceAnalyticsInsightModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/UserExperienceAnalyticsInsightModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/UserExperienceAnalyticsInsightSeverityEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/UserExperienceAnalyticsInsightSeverityEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/UserExperienceAnalyticsInsightSeverityEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/UserExperienceAnalyticsInsightSeverityEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/UserExperienceAnalyticsInsightValueModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/UserExperienceAnalyticsInsightValueModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/UserExperienceAnalyticsInsightValueModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/UserExperienceAnalyticsInsightValueModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/UserExperienceAnalyticsMetricModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/UserExperienceAnalyticsMetricModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/UserExperienceAnalyticsMetricModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/UserExperienceAnalyticsMetricModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/UserExperienceAnalyticsMetricRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/UserExperienceAnalyticsMetricRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/UserExperienceAnalyticsMetricRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/UserExperienceAnalyticsMetricRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/UserExperienceAnalyticsOverviewModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/UserExperienceAnalyticsOverviewModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/UserExperienceAnalyticsOverviewModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/UserExperienceAnalyticsOverviewModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/UserExperienceAnalyticsOverviewRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/UserExperienceAnalyticsOverviewRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/UserExperienceAnalyticsOverviewRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/UserExperienceAnalyticsOverviewRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/UserExperienceAnalyticsRegressionSummaryModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/UserExperienceAnalyticsRegressionSummaryModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/UserExperienceAnalyticsRegressionSummaryModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/UserExperienceAnalyticsRegressionSummaryModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/UserExperienceAnalyticsRegressionSummaryRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/UserExperienceAnalyticsRegressionSummaryRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/UserExperienceAnalyticsRegressionSummaryRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/UserExperienceAnalyticsRegressionSummaryRequest.go index 06e43df907..a0f1423748 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/UserExperienceAnalyticsRegressionSummaryRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/UserExperienceAnalyticsRegressionSummaryRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // UserExperienceAnalyticsRegressionSummaryRequestBuilder is request builder for UserExperienceAnalyticsRegressionSummary diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/UserExperienceAnalyticsSummarizedByEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/UserExperienceAnalyticsSummarizedByEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/UserExperienceAnalyticsSummarizedByEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/UserExperienceAnalyticsSummarizedByEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/UserFlowTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/UserFlowTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/UserFlowTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/UserFlowTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/UserGovernanceCriteriaModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/UserGovernanceCriteriaModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/UserGovernanceCriteriaModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/UserGovernanceCriteriaModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/UserIdentityModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/UserIdentityModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/UserIdentityModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/UserIdentityModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/UserIdentityTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/UserIdentityTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/UserIdentityTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/UserIdentityTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/UserInstallStateSummaryModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/UserInstallStateSummaryModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/UserInstallStateSummaryModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/UserInstallStateSummaryModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/UserInstallStateSummaryRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/UserInstallStateSummaryRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/UserInstallStateSummaryRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/UserInstallStateSummaryRequest.go index f384ee6907..15a9f36f4c 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/UserInstallStateSummaryRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/UserInstallStateSummaryRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // UserInstallStateSummaryRequestBuilder is request builder for UserInstallStateSummary diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/UserModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/UserModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/UserModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/UserModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/UserPFXCertificateModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/UserPFXCertificateModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/UserPFXCertificateModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/UserPFXCertificateModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/UserPFXCertificateRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/UserPFXCertificateRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/UserPFXCertificateRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/UserPFXCertificateRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/UserPfxIntendedPurposeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/UserPfxIntendedPurposeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/UserPfxIntendedPurposeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/UserPfxIntendedPurposeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/UserPfxPaddingSchemeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/UserPfxPaddingSchemeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/UserPfxPaddingSchemeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/UserPfxPaddingSchemeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/UserRegistrationCountModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/UserRegistrationCountModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/UserRegistrationCountModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/UserRegistrationCountModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/UserRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/UserRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/UserRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/UserRequest.go index ba990a44dd..55de896d87 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/UserRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/UserRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // UserRequestBuilder is request builder for User diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/UserRiskLevelEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/UserRiskLevelEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/UserRiskLevelEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/UserRiskLevelEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/UserSecurityProfileModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/UserSecurityProfileModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/UserSecurityProfileModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/UserSecurityProfileModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/UserSecurityProfileRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/UserSecurityProfileRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/UserSecurityProfileRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/UserSecurityProfileRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/UserSecurityStateModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/UserSecurityStateModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/UserSecurityStateModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/UserSecurityStateModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/UserSettingsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/UserSettingsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/UserSettingsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/UserSettingsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/UserSettingsRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/UserSettingsRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/UserSettingsRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/UserSettingsRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/UserTeamworkModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/UserTeamworkModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/UserTeamworkModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/UserTeamworkModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/UserTeamworkRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/UserTeamworkRequest.go similarity index 98% rename from vendor/github.com/yaegashi/msgraph.go/beta/UserTeamworkRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/UserTeamworkRequest.go index fa919386c8..5f8f748804 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/UserTeamworkRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/UserTeamworkRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // UserTeamworkRequestBuilder is request builder for UserTeamwork diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/UsernameSourceEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/UsernameSourceEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/UsernameSourceEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/UsernameSourceEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/VariableManagementConditionExpressionModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/VariableManagementConditionExpressionModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/VariableManagementConditionExpressionModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/VariableManagementConditionExpressionModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/VendorModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/VendorModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/VendorModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/VendorModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/VendorRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/VendorRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/VendorRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/VendorRequest.go index 3c5564851b..ca83e934d0 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/VendorRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/VendorRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // VendorRequestBuilder is request builder for Vendor diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/VerifiedDomainModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/VerifiedDomainModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/VerifiedDomainModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/VerifiedDomainModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/VersionActionModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/VersionActionModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/VersionActionModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/VersionActionModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/VideoModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/VideoModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/VideoModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/VideoModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/VisibilitySettingEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/VisibilitySettingEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/VisibilitySettingEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/VisibilitySettingEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/VisualInfoModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/VisualInfoModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/VisualInfoModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/VisualInfoModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/VisualPropertiesModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/VisualPropertiesModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/VisualPropertiesModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/VisualPropertiesModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/VpnAuthenticationMethodEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/VpnAuthenticationMethodEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/VpnAuthenticationMethodEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/VpnAuthenticationMethodEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/VpnClientAuthenticationTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/VpnClientAuthenticationTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/VpnClientAuthenticationTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/VpnClientAuthenticationTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/VpnConfigurationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/VpnConfigurationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/VpnConfigurationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/VpnConfigurationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/VpnDNSRuleModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/VpnDNSRuleModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/VpnDNSRuleModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/VpnDNSRuleModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/VpnDeadPeerDetectionRateEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/VpnDeadPeerDetectionRateEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/VpnDeadPeerDetectionRateEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/VpnDeadPeerDetectionRateEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/VpnEncryptionAlgorithmTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/VpnEncryptionAlgorithmTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/VpnEncryptionAlgorithmTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/VpnEncryptionAlgorithmTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/VpnIntegrityAlgorithmTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/VpnIntegrityAlgorithmTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/VpnIntegrityAlgorithmTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/VpnIntegrityAlgorithmTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/VpnLocalIdentifierEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/VpnLocalIdentifierEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/VpnLocalIdentifierEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/VpnLocalIdentifierEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/VpnOnDemandRuleConnectionActionEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/VpnOnDemandRuleConnectionActionEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/VpnOnDemandRuleConnectionActionEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/VpnOnDemandRuleConnectionActionEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/VpnOnDemandRuleConnectionDomainActionEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/VpnOnDemandRuleConnectionDomainActionEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/VpnOnDemandRuleConnectionDomainActionEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/VpnOnDemandRuleConnectionDomainActionEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/VpnOnDemandRuleModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/VpnOnDemandRuleModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/VpnOnDemandRuleModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/VpnOnDemandRuleModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/VpnProviderTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/VpnProviderTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/VpnProviderTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/VpnProviderTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/VpnProxyServerModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/VpnProxyServerModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/VpnProxyServerModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/VpnProxyServerModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/VpnRouteModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/VpnRouteModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/VpnRouteModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/VpnRouteModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/VpnServerCertificateTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/VpnServerCertificateTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/VpnServerCertificateTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/VpnServerCertificateTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/VpnServerModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/VpnServerModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/VpnServerModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/VpnServerModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/VpnTrafficRuleAppTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/VpnTrafficRuleAppTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/VpnTrafficRuleAppTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/VpnTrafficRuleAppTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/VpnTrafficRuleModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/VpnTrafficRuleModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/VpnTrafficRuleModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/VpnTrafficRuleModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/VpnTrafficRuleRoutingPolicyTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/VpnTrafficRuleRoutingPolicyTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/VpnTrafficRuleRoutingPolicyTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/VpnTrafficRuleRoutingPolicyTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/VppLicensingTypeModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/VppLicensingTypeModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/VppLicensingTypeModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/VppLicensingTypeModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/VppTokenAccountTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/VppTokenAccountTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/VppTokenAccountTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/VppTokenAccountTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/VppTokenAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/VppTokenAction.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/VppTokenAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/VppTokenAction.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/VppTokenActionFailureReasonEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/VppTokenActionFailureReasonEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/VppTokenActionFailureReasonEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/VppTokenActionFailureReasonEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/VppTokenActionResultModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/VppTokenActionResultModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/VppTokenActionResultModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/VppTokenActionResultModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/VppTokenLicenseSummaryModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/VppTokenLicenseSummaryModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/VppTokenLicenseSummaryModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/VppTokenLicenseSummaryModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/VppTokenModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/VppTokenModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/VppTokenModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/VppTokenModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/VppTokenRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/VppTokenRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/VppTokenRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/VppTokenRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/VppTokenRevokeLicensesActionResultModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/VppTokenRevokeLicensesActionResultModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/VppTokenRevokeLicensesActionResultModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/VppTokenRevokeLicensesActionResultModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/VppTokenStateEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/VppTokenStateEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/VppTokenStateEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/VppTokenStateEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/VppTokenSyncStatusEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/VppTokenSyncStatusEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/VppTokenSyncStatusEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/VppTokenSyncStatusEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/VulnerabilityStateModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/VulnerabilityStateModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/VulnerabilityStateModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/VulnerabilityStateModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WatermarkLayoutEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/WatermarkLayoutEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WatermarkLayoutEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WatermarkLayoutEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WebAccountModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WebAccountModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WebAccountModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WebAccountModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WebAccountRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/WebAccountRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WebAccountRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WebAccountRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WebAppModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WebAppModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WebAppModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WebAppModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WebApplicationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WebApplicationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WebApplicationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WebApplicationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WebBrowserCookieSettingsEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/WebBrowserCookieSettingsEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WebBrowserCookieSettingsEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WebBrowserCookieSettingsEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WebPartModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WebPartModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WebPartModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WebPartModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WebsiteModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WebsiteModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WebsiteModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WebsiteModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WebsiteTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/WebsiteTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WebsiteTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WebsiteTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WeekIndexEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/WeekIndexEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WeekIndexEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WeekIndexEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WeeklyScheduleEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/WeeklyScheduleEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WeeklyScheduleEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WeeklyScheduleEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WelcomeScreenMeetingInformationEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/WelcomeScreenMeetingInformationEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WelcomeScreenMeetingInformationEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WelcomeScreenMeetingInformationEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WiFiAuthenticationMethodEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/WiFiAuthenticationMethodEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WiFiAuthenticationMethodEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WiFiAuthenticationMethodEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WiFiProxySettingEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/WiFiProxySettingEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WiFiProxySettingEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WiFiProxySettingEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WiFiSecurityTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/WiFiSecurityTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WiFiSecurityTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WiFiSecurityTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/Win32LobAppAssignmentSettingsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/Win32LobAppAssignmentSettingsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/Win32LobAppAssignmentSettingsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/Win32LobAppAssignmentSettingsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/Win32LobAppDetectionModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/Win32LobAppDetectionModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/Win32LobAppDetectionModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/Win32LobAppDetectionModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/Win32LobAppDetectionOperatorEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/Win32LobAppDetectionOperatorEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/Win32LobAppDetectionOperatorEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/Win32LobAppDetectionOperatorEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/Win32LobAppFileSystemDetectionModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/Win32LobAppFileSystemDetectionModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/Win32LobAppFileSystemDetectionModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/Win32LobAppFileSystemDetectionModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/Win32LobAppFileSystemDetectionTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/Win32LobAppFileSystemDetectionTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/Win32LobAppFileSystemDetectionTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/Win32LobAppFileSystemDetectionTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/Win32LobAppFileSystemRequirementModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/Win32LobAppFileSystemRequirementModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/Win32LobAppFileSystemRequirementModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/Win32LobAppFileSystemRequirementModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/Win32LobAppInstallExperienceModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/Win32LobAppInstallExperienceModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/Win32LobAppInstallExperienceModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/Win32LobAppInstallExperienceModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/Win32LobAppModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/Win32LobAppModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/Win32LobAppModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/Win32LobAppModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/Win32LobAppMsiInformationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/Win32LobAppMsiInformationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/Win32LobAppMsiInformationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/Win32LobAppMsiInformationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/Win32LobAppMsiPackageTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/Win32LobAppMsiPackageTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/Win32LobAppMsiPackageTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/Win32LobAppMsiPackageTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/Win32LobAppNotificationEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/Win32LobAppNotificationEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/Win32LobAppNotificationEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/Win32LobAppNotificationEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/Win32LobAppPowerShellScriptDetectionModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/Win32LobAppPowerShellScriptDetectionModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/Win32LobAppPowerShellScriptDetectionModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/Win32LobAppPowerShellScriptDetectionModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/Win32LobAppPowerShellScriptDetectionTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/Win32LobAppPowerShellScriptDetectionTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/Win32LobAppPowerShellScriptDetectionTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/Win32LobAppPowerShellScriptDetectionTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/Win32LobAppPowerShellScriptRequirementModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/Win32LobAppPowerShellScriptRequirementModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/Win32LobAppPowerShellScriptRequirementModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/Win32LobAppPowerShellScriptRequirementModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/Win32LobAppProductCodeDetectionModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/Win32LobAppProductCodeDetectionModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/Win32LobAppProductCodeDetectionModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/Win32LobAppProductCodeDetectionModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/Win32LobAppRegistryDetectionModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/Win32LobAppRegistryDetectionModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/Win32LobAppRegistryDetectionModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/Win32LobAppRegistryDetectionModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/Win32LobAppRegistryDetectionTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/Win32LobAppRegistryDetectionTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/Win32LobAppRegistryDetectionTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/Win32LobAppRegistryDetectionTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/Win32LobAppRegistryRequirementModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/Win32LobAppRegistryRequirementModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/Win32LobAppRegistryRequirementModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/Win32LobAppRegistryRequirementModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/Win32LobAppRequirementModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/Win32LobAppRequirementModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/Win32LobAppRequirementModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/Win32LobAppRequirementModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/Win32LobAppRestartBehaviorEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/Win32LobAppRestartBehaviorEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/Win32LobAppRestartBehaviorEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/Win32LobAppRestartBehaviorEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/Win32LobAppRestartSettingsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/Win32LobAppRestartSettingsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/Win32LobAppRestartSettingsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/Win32LobAppRestartSettingsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/Win32LobAppReturnCodeModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/Win32LobAppReturnCodeModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/Win32LobAppReturnCodeModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/Win32LobAppReturnCodeModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/Win32LobAppReturnCodeTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/Win32LobAppReturnCodeTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/Win32LobAppReturnCodeTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/Win32LobAppReturnCodeTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/Windows10AppTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/Windows10AppTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/Windows10AppTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/Windows10AppTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/Windows10AppsForceUpdateScheduleModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/Windows10AppsForceUpdateScheduleModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/Windows10AppsForceUpdateScheduleModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/Windows10AppsForceUpdateScheduleModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/Windows10AppsUpdateRecurrenceEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/Windows10AppsUpdateRecurrenceEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/Windows10AppsUpdateRecurrenceEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/Windows10AppsUpdateRecurrenceEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/Windows10AssociatedAppsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/Windows10AssociatedAppsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/Windows10AssociatedAppsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/Windows10AssociatedAppsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/Windows10CertificateProfileBaseModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/Windows10CertificateProfileBaseModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/Windows10CertificateProfileBaseModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/Windows10CertificateProfileBaseModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/Windows10CompliancePolicyModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/Windows10CompliancePolicyModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/Windows10CompliancePolicyModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/Windows10CompliancePolicyModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/Windows10CustomConfigurationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/Windows10CustomConfigurationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/Windows10CustomConfigurationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/Windows10CustomConfigurationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/Windows10DeviceFirmwareConfigurationInterfaceModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/Windows10DeviceFirmwareConfigurationInterfaceModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/Windows10DeviceFirmwareConfigurationInterfaceModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/Windows10DeviceFirmwareConfigurationInterfaceModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/Windows10DeviceModeTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/Windows10DeviceModeTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/Windows10DeviceModeTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/Windows10DeviceModeTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/Windows10EasEmailProfileConfigurationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/Windows10EasEmailProfileConfigurationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/Windows10EasEmailProfileConfigurationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/Windows10EasEmailProfileConfigurationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/Windows10EditionTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/Windows10EditionTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/Windows10EditionTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/Windows10EditionTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/Windows10EndpointProtectionConfigurationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/Windows10EndpointProtectionConfigurationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/Windows10EndpointProtectionConfigurationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/Windows10EndpointProtectionConfigurationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/Windows10EnrollmentCompletionPageConfigurationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/Windows10EnrollmentCompletionPageConfigurationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/Windows10EnrollmentCompletionPageConfigurationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/Windows10EnrollmentCompletionPageConfigurationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/Windows10EnrollmentCompletionPageConfigurationPolicySetItemModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/Windows10EnrollmentCompletionPageConfigurationPolicySetItemModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/Windows10EnrollmentCompletionPageConfigurationPolicySetItemModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/Windows10EnrollmentCompletionPageConfigurationPolicySetItemModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/Windows10EnterpriseModernAppManagementConfigurationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/Windows10EnterpriseModernAppManagementConfigurationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/Windows10EnterpriseModernAppManagementConfigurationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/Windows10EnterpriseModernAppManagementConfigurationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/Windows10GeneralConfigurationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/Windows10GeneralConfigurationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/Windows10GeneralConfigurationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/Windows10GeneralConfigurationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/Windows10GeneralConfigurationRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/Windows10GeneralConfigurationRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/Windows10GeneralConfigurationRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/Windows10GeneralConfigurationRequest.go index ea127ce9df..9734f0fad6 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/Windows10GeneralConfigurationRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/Windows10GeneralConfigurationRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // Windows10GeneralConfigurationRequestBuilder is request builder for Windows10GeneralConfiguration diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/Windows10ImportedPFXCertificateProfileModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/Windows10ImportedPFXCertificateProfileModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/Windows10ImportedPFXCertificateProfileModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/Windows10ImportedPFXCertificateProfileModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/Windows10ImportedPFXCertificateProfileRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/Windows10ImportedPFXCertificateProfileRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/Windows10ImportedPFXCertificateProfileRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/Windows10ImportedPFXCertificateProfileRequest.go index e147476d1a..74b63097f6 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/Windows10ImportedPFXCertificateProfileRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/Windows10ImportedPFXCertificateProfileRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // Windows10ImportedPFXCertificateProfileRequestBuilder is request builder for Windows10ImportedPFXCertificateProfile diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/Windows10MobileCompliancePolicyModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/Windows10MobileCompliancePolicyModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/Windows10MobileCompliancePolicyModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/Windows10MobileCompliancePolicyModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/Windows10NetworkBoundaryConfigurationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/Windows10NetworkBoundaryConfigurationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/Windows10NetworkBoundaryConfigurationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/Windows10NetworkBoundaryConfigurationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/Windows10NetworkProxyServerModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/Windows10NetworkProxyServerModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/Windows10NetworkProxyServerModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/Windows10NetworkProxyServerModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/Windows10PFXImportCertificateProfileModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/Windows10PFXImportCertificateProfileModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/Windows10PFXImportCertificateProfileModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/Windows10PFXImportCertificateProfileModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/Windows10PkcsCertificateProfileModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/Windows10PkcsCertificateProfileModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/Windows10PkcsCertificateProfileModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/Windows10PkcsCertificateProfileModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/Windows10PkcsCertificateProfileRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/Windows10PkcsCertificateProfileRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/Windows10PkcsCertificateProfileRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/Windows10PkcsCertificateProfileRequest.go index 2cfb9fef5f..d7e6df6689 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/Windows10PkcsCertificateProfileRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/Windows10PkcsCertificateProfileRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // Windows10PkcsCertificateProfileRequestBuilder is request builder for Windows10PkcsCertificateProfile diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/Windows10SecureAssessmentConfigurationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/Windows10SecureAssessmentConfigurationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/Windows10SecureAssessmentConfigurationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/Windows10SecureAssessmentConfigurationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/Windows10TeamGeneralConfigurationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/Windows10TeamGeneralConfigurationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/Windows10TeamGeneralConfigurationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/Windows10TeamGeneralConfigurationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/Windows10VpnAuthenticationMethodEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/Windows10VpnAuthenticationMethodEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/Windows10VpnAuthenticationMethodEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/Windows10VpnAuthenticationMethodEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/Windows10VpnConfigurationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/Windows10VpnConfigurationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/Windows10VpnConfigurationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/Windows10VpnConfigurationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/Windows10VpnConfigurationRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/Windows10VpnConfigurationRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/Windows10VpnConfigurationRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/Windows10VpnConfigurationRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/Windows10VpnConnectionTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/Windows10VpnConnectionTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/Windows10VpnConnectionTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/Windows10VpnConnectionTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/Windows10VpnProfileTargetEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/Windows10VpnProfileTargetEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/Windows10VpnProfileTargetEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/Windows10VpnProfileTargetEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/Windows10VpnProxyServerModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/Windows10VpnProxyServerModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/Windows10VpnProxyServerModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/Windows10VpnProxyServerModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/Windows81CertificateProfileBaseModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/Windows81CertificateProfileBaseModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/Windows81CertificateProfileBaseModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/Windows81CertificateProfileBaseModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/Windows81CompliancePolicyModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/Windows81CompliancePolicyModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/Windows81CompliancePolicyModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/Windows81CompliancePolicyModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/Windows81GeneralConfigurationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/Windows81GeneralConfigurationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/Windows81GeneralConfigurationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/Windows81GeneralConfigurationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/Windows81SCEPCertificateProfileModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/Windows81SCEPCertificateProfileModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/Windows81SCEPCertificateProfileModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/Windows81SCEPCertificateProfileModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/Windows81SCEPCertificateProfileRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/Windows81SCEPCertificateProfileRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/Windows81SCEPCertificateProfileRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/Windows81SCEPCertificateProfileRequest.go index 966b28bd9c..1d5146118c 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/Windows81SCEPCertificateProfileRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/Windows81SCEPCertificateProfileRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // Windows81SCEPCertificateProfileRequestBuilder is request builder for Windows81SCEPCertificateProfile diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/Windows81TrustedRootCertificateModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/Windows81TrustedRootCertificateModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/Windows81TrustedRootCertificateModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/Windows81TrustedRootCertificateModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/Windows81TrustedRootCertificateRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/Windows81TrustedRootCertificateRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/Windows81TrustedRootCertificateRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/Windows81TrustedRootCertificateRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/Windows81VpnConfigurationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/Windows81VpnConfigurationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/Windows81VpnConfigurationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/Windows81VpnConfigurationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/Windows81VpnProxyServerModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/Windows81VpnProxyServerModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/Windows81VpnProxyServerModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/Windows81VpnProxyServerModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/Windows81WifiImportConfigurationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/Windows81WifiImportConfigurationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/Windows81WifiImportConfigurationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/Windows81WifiImportConfigurationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsAppStartLayoutTileSizeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsAppStartLayoutTileSizeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsAppStartLayoutTileSizeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsAppStartLayoutTileSizeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsAppXAppAssignmentSettingsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsAppXAppAssignmentSettingsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsAppXAppAssignmentSettingsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsAppXAppAssignmentSettingsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsAppXModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsAppXModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsAppXModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsAppXModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsArchitectureEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsArchitectureEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsArchitectureEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsArchitectureEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsAssignedAccessProfileModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsAssignedAccessProfileModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsAssignedAccessProfileModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsAssignedAccessProfileModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsAutopilotDeploymentProfileAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsAutopilotDeploymentProfileAction.go similarity index 98% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsAutopilotDeploymentProfileAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsAutopilotDeploymentProfileAction.go index 01cde7365b..813c5923c6 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsAutopilotDeploymentProfileAction.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsAutopilotDeploymentProfileAction.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // WindowsAutopilotDeploymentProfileCollectionHasPayloadLinksRequestParameter undocumented diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsAutopilotDeploymentProfileAssignmentModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsAutopilotDeploymentProfileAssignmentModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsAutopilotDeploymentProfileAssignmentModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsAutopilotDeploymentProfileAssignmentModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsAutopilotDeploymentProfileAssignmentRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsAutopilotDeploymentProfileAssignmentRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsAutopilotDeploymentProfileAssignmentRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsAutopilotDeploymentProfileAssignmentRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsAutopilotDeploymentProfileModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsAutopilotDeploymentProfileModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsAutopilotDeploymentProfileModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsAutopilotDeploymentProfileModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsAutopilotDeploymentProfilePolicySetItemModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsAutopilotDeploymentProfilePolicySetItemModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsAutopilotDeploymentProfilePolicySetItemModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsAutopilotDeploymentProfilePolicySetItemModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsAutopilotDeploymentProfileRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsAutopilotDeploymentProfileRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsAutopilotDeploymentProfileRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsAutopilotDeploymentProfileRequest.go index 20ae3e487e..3148395ea1 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsAutopilotDeploymentProfileRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsAutopilotDeploymentProfileRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // WindowsAutopilotDeploymentProfileRequestBuilder is request builder for WindowsAutopilotDeploymentProfile diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsAutopilotDeploymentStateEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsAutopilotDeploymentStateEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsAutopilotDeploymentStateEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsAutopilotDeploymentStateEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsAutopilotDeviceIdentityAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsAutopilotDeviceIdentityAction.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsAutopilotDeviceIdentityAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsAutopilotDeviceIdentityAction.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsAutopilotDeviceIdentityModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsAutopilotDeviceIdentityModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsAutopilotDeviceIdentityModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsAutopilotDeviceIdentityModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsAutopilotDeviceIdentityRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsAutopilotDeviceIdentityRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsAutopilotDeviceIdentityRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsAutopilotDeviceIdentityRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsAutopilotDeviceTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsAutopilotDeviceTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsAutopilotDeviceTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsAutopilotDeviceTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsAutopilotEnrollmentTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsAutopilotEnrollmentTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsAutopilotEnrollmentTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsAutopilotEnrollmentTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsAutopilotProfileAssignmentDetailedStatusEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsAutopilotProfileAssignmentDetailedStatusEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsAutopilotProfileAssignmentDetailedStatusEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsAutopilotProfileAssignmentDetailedStatusEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsAutopilotProfileAssignmentStatusEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsAutopilotProfileAssignmentStatusEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsAutopilotProfileAssignmentStatusEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsAutopilotProfileAssignmentStatusEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsAutopilotSettingsAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsAutopilotSettingsAction.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsAutopilotSettingsAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsAutopilotSettingsAction.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsAutopilotSettingsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsAutopilotSettingsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsAutopilotSettingsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsAutopilotSettingsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsAutopilotSettingsRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsAutopilotSettingsRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsAutopilotSettingsRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsAutopilotSettingsRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsAutopilotSyncStatusEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsAutopilotSyncStatusEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsAutopilotSyncStatusEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsAutopilotSyncStatusEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsCertificateProfileBaseModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsCertificateProfileBaseModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsCertificateProfileBaseModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsCertificateProfileBaseModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsCertificateProfileBaseRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsCertificateProfileBaseRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsCertificateProfileBaseRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsCertificateProfileBaseRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsDefenderAdvancedThreatProtectionConfigurationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsDefenderAdvancedThreatProtectionConfigurationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsDefenderAdvancedThreatProtectionConfigurationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsDefenderAdvancedThreatProtectionConfigurationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsDefenderApplicationControlSupplementalPolicyAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsDefenderApplicationControlSupplementalPolicyAction.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsDefenderApplicationControlSupplementalPolicyAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsDefenderApplicationControlSupplementalPolicyAction.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsDefenderApplicationControlSupplementalPolicyAssignmentModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsDefenderApplicationControlSupplementalPolicyAssignmentModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsDefenderApplicationControlSupplementalPolicyAssignmentModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsDefenderApplicationControlSupplementalPolicyAssignmentModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsDefenderApplicationControlSupplementalPolicyAssignmentRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsDefenderApplicationControlSupplementalPolicyAssignmentRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsDefenderApplicationControlSupplementalPolicyAssignmentRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsDefenderApplicationControlSupplementalPolicyAssignmentRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsDefenderApplicationControlSupplementalPolicyDeploymentStatusModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsDefenderApplicationControlSupplementalPolicyDeploymentStatusModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsDefenderApplicationControlSupplementalPolicyDeploymentStatusModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsDefenderApplicationControlSupplementalPolicyDeploymentStatusModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsDefenderApplicationControlSupplementalPolicyDeploymentStatusRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsDefenderApplicationControlSupplementalPolicyDeploymentStatusRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsDefenderApplicationControlSupplementalPolicyDeploymentStatusRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsDefenderApplicationControlSupplementalPolicyDeploymentStatusRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsDefenderApplicationControlSupplementalPolicyDeploymentSummaryModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsDefenderApplicationControlSupplementalPolicyDeploymentSummaryModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsDefenderApplicationControlSupplementalPolicyDeploymentSummaryModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsDefenderApplicationControlSupplementalPolicyDeploymentSummaryModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsDefenderApplicationControlSupplementalPolicyDeploymentSummaryRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsDefenderApplicationControlSupplementalPolicyDeploymentSummaryRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsDefenderApplicationControlSupplementalPolicyDeploymentSummaryRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsDefenderApplicationControlSupplementalPolicyDeploymentSummaryRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsDefenderApplicationControlSupplementalPolicyModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsDefenderApplicationControlSupplementalPolicyModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsDefenderApplicationControlSupplementalPolicyModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsDefenderApplicationControlSupplementalPolicyModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsDefenderApplicationControlSupplementalPolicyRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsDefenderApplicationControlSupplementalPolicyRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsDefenderApplicationControlSupplementalPolicyRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsDefenderApplicationControlSupplementalPolicyRequest.go index 708ed80d81..7d428e4f57 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsDefenderApplicationControlSupplementalPolicyRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsDefenderApplicationControlSupplementalPolicyRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // WindowsDefenderApplicationControlSupplementalPolicyRequestBuilder is request builder for WindowsDefenderApplicationControlSupplementalPolicy diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsDefenderApplicationControlSupplementalPolicyStatusesEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsDefenderApplicationControlSupplementalPolicyStatusesEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsDefenderApplicationControlSupplementalPolicyStatusesEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsDefenderApplicationControlSupplementalPolicyStatusesEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsDefenderScanActionResultModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsDefenderScanActionResultModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsDefenderScanActionResultModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsDefenderScanActionResultModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsDefenderTamperProtectionOptionsEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsDefenderTamperProtectionOptionsEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsDefenderTamperProtectionOptionsEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsDefenderTamperProtectionOptionsEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsDeliveryOptimizationConfigurationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsDeliveryOptimizationConfigurationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsDeliveryOptimizationConfigurationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsDeliveryOptimizationConfigurationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsDeliveryOptimizationModeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsDeliveryOptimizationModeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsDeliveryOptimizationModeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsDeliveryOptimizationModeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsDeviceADAccountModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsDeviceADAccountModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsDeviceADAccountModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsDeviceADAccountModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsDeviceAccountModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsDeviceAccountModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsDeviceAccountModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsDeviceAccountModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsDeviceAzureADAccountModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsDeviceAzureADAccountModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsDeviceAzureADAccountModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsDeviceAzureADAccountModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsDeviceHealthStateEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsDeviceHealthStateEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsDeviceHealthStateEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsDeviceHealthStateEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsDeviceMalwareStateModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsDeviceMalwareStateModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsDeviceMalwareStateModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsDeviceMalwareStateModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsDeviceMalwareStateRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsDeviceMalwareStateRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsDeviceMalwareStateRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsDeviceMalwareStateRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsDeviceTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsDeviceTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsDeviceTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsDeviceTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsDeviceUsageTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsDeviceUsageTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsDeviceUsageTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsDeviceUsageTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsDomainJoinConfigurationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsDomainJoinConfigurationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsDomainJoinConfigurationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsDomainJoinConfigurationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsDomainJoinConfigurationRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsDomainJoinConfigurationRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsDomainJoinConfigurationRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsDomainJoinConfigurationRequest.go index b8d38f314e..f00c1a72b5 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsDomainJoinConfigurationRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsDomainJoinConfigurationRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // WindowsDomainJoinConfigurationRequestBuilder is request builder for WindowsDomainJoinConfiguration diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsEnrollmentStatusScreenSettingsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsEnrollmentStatusScreenSettingsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsEnrollmentStatusScreenSettingsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsEnrollmentStatusScreenSettingsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsFeatureUpdateProfileAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsFeatureUpdateProfileAction.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsFeatureUpdateProfileAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsFeatureUpdateProfileAction.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsFeatureUpdateProfileAssignmentModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsFeatureUpdateProfileAssignmentModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsFeatureUpdateProfileAssignmentModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsFeatureUpdateProfileAssignmentModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsFeatureUpdateProfileAssignmentRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsFeatureUpdateProfileAssignmentRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsFeatureUpdateProfileAssignmentRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsFeatureUpdateProfileAssignmentRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsFeatureUpdateProfileModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsFeatureUpdateProfileModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsFeatureUpdateProfileModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsFeatureUpdateProfileModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsFeatureUpdateProfileRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsFeatureUpdateProfileRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsFeatureUpdateProfileRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsFeatureUpdateProfileRequest.go index 4fd83e359d..ce9463cab7 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsFeatureUpdateProfileRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsFeatureUpdateProfileRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // WindowsFeatureUpdateProfileRequestBuilder is request builder for WindowsFeatureUpdateProfile diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsFirewallNetworkProfileModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsFirewallNetworkProfileModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsFirewallNetworkProfileModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsFirewallNetworkProfileModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsFirewallRuleInterfaceTypesEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsFirewallRuleInterfaceTypesEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsFirewallRuleInterfaceTypesEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsFirewallRuleInterfaceTypesEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsFirewallRuleModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsFirewallRuleModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsFirewallRuleModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsFirewallRuleModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsFirewallRuleNetworkProfileTypesEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsFirewallRuleNetworkProfileTypesEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsFirewallRuleNetworkProfileTypesEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsFirewallRuleNetworkProfileTypesEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsFirewallRuleTrafficDirectionTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsFirewallRuleTrafficDirectionTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsFirewallRuleTrafficDirectionTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsFirewallRuleTrafficDirectionTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsHealthMonitoringConfigurationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsHealthMonitoringConfigurationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsHealthMonitoringConfigurationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsHealthMonitoringConfigurationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsHealthMonitoringScopeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsHealthMonitoringScopeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsHealthMonitoringScopeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsHealthMonitoringScopeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsHelloForBusinessPinUsageEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsHelloForBusinessPinUsageEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsHelloForBusinessPinUsageEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsHelloForBusinessPinUsageEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsIdentityProtectionConfigurationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsIdentityProtectionConfigurationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsIdentityProtectionConfigurationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsIdentityProtectionConfigurationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsInformationProtectionAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsInformationProtectionAction.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsInformationProtectionAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsInformationProtectionAction.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsInformationProtectionAppLearningSummaryModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsInformationProtectionAppLearningSummaryModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsInformationProtectionAppLearningSummaryModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsInformationProtectionAppLearningSummaryModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsInformationProtectionAppLearningSummaryRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsInformationProtectionAppLearningSummaryRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsInformationProtectionAppLearningSummaryRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsInformationProtectionAppLearningSummaryRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsInformationProtectionAppLockerFileModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsInformationProtectionAppLockerFileModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsInformationProtectionAppLockerFileModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsInformationProtectionAppLockerFileModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsInformationProtectionAppLockerFileRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsInformationProtectionAppLockerFileRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsInformationProtectionAppLockerFileRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsInformationProtectionAppLockerFileRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsInformationProtectionAppModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsInformationProtectionAppModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsInformationProtectionAppModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsInformationProtectionAppModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsInformationProtectionDataRecoveryCertificateModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsInformationProtectionDataRecoveryCertificateModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsInformationProtectionDataRecoveryCertificateModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsInformationProtectionDataRecoveryCertificateModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsInformationProtectionDesktopAppModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsInformationProtectionDesktopAppModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsInformationProtectionDesktopAppModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsInformationProtectionDesktopAppModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsInformationProtectionDeviceRegistrationAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsInformationProtectionDeviceRegistrationAction.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsInformationProtectionDeviceRegistrationAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsInformationProtectionDeviceRegistrationAction.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsInformationProtectionDeviceRegistrationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsInformationProtectionDeviceRegistrationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsInformationProtectionDeviceRegistrationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsInformationProtectionDeviceRegistrationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsInformationProtectionDeviceRegistrationRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsInformationProtectionDeviceRegistrationRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsInformationProtectionDeviceRegistrationRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsInformationProtectionDeviceRegistrationRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsInformationProtectionEnforcementLevelEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsInformationProtectionEnforcementLevelEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsInformationProtectionEnforcementLevelEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsInformationProtectionEnforcementLevelEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsInformationProtectionIPRangeCollectionModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsInformationProtectionIPRangeCollectionModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsInformationProtectionIPRangeCollectionModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsInformationProtectionIPRangeCollectionModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsInformationProtectionModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsInformationProtectionModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsInformationProtectionModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsInformationProtectionModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsInformationProtectionNetworkLearningSummaryModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsInformationProtectionNetworkLearningSummaryModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsInformationProtectionNetworkLearningSummaryModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsInformationProtectionNetworkLearningSummaryModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsInformationProtectionNetworkLearningSummaryRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsInformationProtectionNetworkLearningSummaryRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsInformationProtectionNetworkLearningSummaryRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsInformationProtectionNetworkLearningSummaryRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsInformationProtectionPinCharacterRequirementsEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsInformationProtectionPinCharacterRequirementsEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsInformationProtectionPinCharacterRequirementsEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsInformationProtectionPinCharacterRequirementsEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsInformationProtectionPolicyModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsInformationProtectionPolicyModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsInformationProtectionPolicyModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsInformationProtectionPolicyModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsInformationProtectionPolicyRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsInformationProtectionPolicyRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsInformationProtectionPolicyRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsInformationProtectionPolicyRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsInformationProtectionProxiedDomainCollectionModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsInformationProtectionProxiedDomainCollectionModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsInformationProtectionProxiedDomainCollectionModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsInformationProtectionProxiedDomainCollectionModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsInformationProtectionRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsInformationProtectionRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsInformationProtectionRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsInformationProtectionRequest.go index f4e75e5904..f4505689e8 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsInformationProtectionRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsInformationProtectionRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // WindowsInformationProtectionRequestBuilder is request builder for WindowsInformationProtection diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsInformationProtectionResourceCollectionModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsInformationProtectionResourceCollectionModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsInformationProtectionResourceCollectionModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsInformationProtectionResourceCollectionModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsInformationProtectionStoreAppModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsInformationProtectionStoreAppModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsInformationProtectionStoreAppModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsInformationProtectionStoreAppModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsInformationProtectionWipeActionModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsInformationProtectionWipeActionModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsInformationProtectionWipeActionModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsInformationProtectionWipeActionModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsInformationProtectionWipeActionRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsInformationProtectionWipeActionRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsInformationProtectionWipeActionRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsInformationProtectionWipeActionRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsKioskActiveDirectoryGroupModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsKioskActiveDirectoryGroupModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsKioskActiveDirectoryGroupModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsKioskActiveDirectoryGroupModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsKioskAppBaseModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsKioskAppBaseModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsKioskAppBaseModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsKioskAppBaseModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsKioskAppConfigurationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsKioskAppConfigurationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsKioskAppConfigurationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsKioskAppConfigurationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsKioskAppTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsKioskAppTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsKioskAppTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsKioskAppTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsKioskAutologonModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsKioskAutologonModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsKioskAutologonModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsKioskAutologonModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsKioskAzureADGroupModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsKioskAzureADGroupModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsKioskAzureADGroupModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsKioskAzureADGroupModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsKioskAzureADUserModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsKioskAzureADUserModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsKioskAzureADUserModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsKioskAzureADUserModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsKioskConfigurationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsKioskConfigurationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsKioskConfigurationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsKioskConfigurationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsKioskDesktopAppModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsKioskDesktopAppModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsKioskDesktopAppModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsKioskDesktopAppModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsKioskForceUpdateScheduleModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsKioskForceUpdateScheduleModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsKioskForceUpdateScheduleModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsKioskForceUpdateScheduleModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsKioskLocalGroupModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsKioskLocalGroupModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsKioskLocalGroupModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsKioskLocalGroupModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsKioskLocalUserModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsKioskLocalUserModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsKioskLocalUserModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsKioskLocalUserModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsKioskMultipleAppsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsKioskMultipleAppsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsKioskMultipleAppsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsKioskMultipleAppsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsKioskProfileModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsKioskProfileModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsKioskProfileModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsKioskProfileModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsKioskSingleUWPAppModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsKioskSingleUWPAppModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsKioskSingleUWPAppModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsKioskSingleUWPAppModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsKioskUWPAppModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsKioskUWPAppModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsKioskUWPAppModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsKioskUWPAppModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsKioskUserModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsKioskUserModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsKioskUserModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsKioskUserModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsKioskVisitorModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsKioskVisitorModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsKioskVisitorModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsKioskVisitorModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsMalwareCategoryCountModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsMalwareCategoryCountModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsMalwareCategoryCountModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsMalwareCategoryCountModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsMalwareCategoryEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsMalwareCategoryEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsMalwareCategoryEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsMalwareCategoryEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsMalwareExecutionStateCountModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsMalwareExecutionStateCountModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsMalwareExecutionStateCountModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsMalwareExecutionStateCountModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsMalwareExecutionStateEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsMalwareExecutionStateEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsMalwareExecutionStateEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsMalwareExecutionStateEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsMalwareInformationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsMalwareInformationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsMalwareInformationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsMalwareInformationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsMalwareInformationRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsMalwareInformationRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsMalwareInformationRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsMalwareInformationRequest.go index 9ae04664f0..23d9275a88 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsMalwareInformationRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsMalwareInformationRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // WindowsMalwareInformationRequestBuilder is request builder for WindowsMalwareInformation diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsMalwareNameCountModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsMalwareNameCountModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsMalwareNameCountModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsMalwareNameCountModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsMalwareOverviewModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsMalwareOverviewModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsMalwareOverviewModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsMalwareOverviewModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsMalwareSeverityEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsMalwareSeverityEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsMalwareSeverityEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsMalwareSeverityEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsMalwareStateCountModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsMalwareStateCountModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsMalwareStateCountModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsMalwareStateCountModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsMalwareStateEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsMalwareStateEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsMalwareStateEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsMalwareStateEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsMalwareThreatStateEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsMalwareThreatStateEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsMalwareThreatStateEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsMalwareThreatStateEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsManagedDeviceModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsManagedDeviceModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsManagedDeviceModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsManagedDeviceModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsManagementAppHealthStateModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsManagementAppHealthStateModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsManagementAppHealthStateModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsManagementAppHealthStateModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsManagementAppHealthStateRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsManagementAppHealthStateRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsManagementAppHealthStateRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsManagementAppHealthStateRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsManagementAppHealthSummaryModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsManagementAppHealthSummaryModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsManagementAppHealthSummaryModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsManagementAppHealthSummaryModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsManagementAppModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsManagementAppModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsManagementAppModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsManagementAppModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsManagementAppRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsManagementAppRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsManagementAppRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsManagementAppRequest.go index bde7ae936a..bc12f74584 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsManagementAppRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsManagementAppRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // WindowsManagementAppRequestBuilder is request builder for WindowsManagementApp diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsMicrosoftEdgeAppModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsMicrosoftEdgeAppModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsMicrosoftEdgeAppModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsMicrosoftEdgeAppModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsMinimumOperatingSystemModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsMinimumOperatingSystemModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsMinimumOperatingSystemModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsMinimumOperatingSystemModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsMobileMSIModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsMobileMSIModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsMobileMSIModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsMobileMSIModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsNetworkIsolationPolicyModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsNetworkIsolationPolicyModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsNetworkIsolationPolicyModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsNetworkIsolationPolicyModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsOfficeClientConfigurationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsOfficeClientConfigurationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsOfficeClientConfigurationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsOfficeClientConfigurationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsOfficeClientSecurityConfigurationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsOfficeClientSecurityConfigurationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsOfficeClientSecurityConfigurationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsOfficeClientSecurityConfigurationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsPackageInformationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsPackageInformationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsPackageInformationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsPackageInformationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsPhone81AppXBundleModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsPhone81AppXBundleModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsPhone81AppXBundleModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsPhone81AppXBundleModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsPhone81AppXModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsPhone81AppXModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsPhone81AppXModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsPhone81AppXModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsPhone81CertificateProfileBaseModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsPhone81CertificateProfileBaseModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsPhone81CertificateProfileBaseModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsPhone81CertificateProfileBaseModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsPhone81CertificateProfileBaseRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsPhone81CertificateProfileBaseRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsPhone81CertificateProfileBaseRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsPhone81CertificateProfileBaseRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsPhone81CompliancePolicyModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsPhone81CompliancePolicyModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsPhone81CompliancePolicyModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsPhone81CompliancePolicyModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsPhone81CustomConfigurationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsPhone81CustomConfigurationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsPhone81CustomConfigurationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsPhone81CustomConfigurationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsPhone81GeneralConfigurationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsPhone81GeneralConfigurationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsPhone81GeneralConfigurationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsPhone81GeneralConfigurationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsPhone81ImportedPFXCertificateProfileModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsPhone81ImportedPFXCertificateProfileModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsPhone81ImportedPFXCertificateProfileModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsPhone81ImportedPFXCertificateProfileModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsPhone81ImportedPFXCertificateProfileRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsPhone81ImportedPFXCertificateProfileRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsPhone81ImportedPFXCertificateProfileRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsPhone81ImportedPFXCertificateProfileRequest.go index d3296c036d..cb51ac4df4 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsPhone81ImportedPFXCertificateProfileRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsPhone81ImportedPFXCertificateProfileRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // WindowsPhone81ImportedPFXCertificateProfileRequestBuilder is request builder for WindowsPhone81ImportedPFXCertificateProfile diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsPhone81SCEPCertificateProfileModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsPhone81SCEPCertificateProfileModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsPhone81SCEPCertificateProfileModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsPhone81SCEPCertificateProfileModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsPhone81SCEPCertificateProfileRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsPhone81SCEPCertificateProfileRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsPhone81SCEPCertificateProfileRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsPhone81SCEPCertificateProfileRequest.go index f9748248dd..7d16cd113d 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsPhone81SCEPCertificateProfileRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsPhone81SCEPCertificateProfileRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // WindowsPhone81SCEPCertificateProfileRequestBuilder is request builder for WindowsPhone81SCEPCertificateProfile diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsPhone81StoreAppModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsPhone81StoreAppModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsPhone81StoreAppModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsPhone81StoreAppModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsPhone81TrustedRootCertificateModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsPhone81TrustedRootCertificateModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsPhone81TrustedRootCertificateModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsPhone81TrustedRootCertificateModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsPhone81TrustedRootCertificateRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsPhone81TrustedRootCertificateRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsPhone81TrustedRootCertificateRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsPhone81TrustedRootCertificateRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsPhone81VpnConfigurationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsPhone81VpnConfigurationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsPhone81VpnConfigurationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsPhone81VpnConfigurationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsPhone81VpnConfigurationRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsPhone81VpnConfigurationRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsPhone81VpnConfigurationRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsPhone81VpnConfigurationRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsPhoneEASEmailProfileConfigurationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsPhoneEASEmailProfileConfigurationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsPhoneEASEmailProfileConfigurationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsPhoneEASEmailProfileConfigurationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsPhoneXAPModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsPhoneXAPModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsPhoneXAPModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsPhoneXAPModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsPrivacyDataAccessControlItemModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsPrivacyDataAccessControlItemModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsPrivacyDataAccessControlItemModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsPrivacyDataAccessControlItemModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsPrivacyDataAccessControlItemRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsPrivacyDataAccessControlItemRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsPrivacyDataAccessControlItemRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsPrivacyDataAccessControlItemRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsPrivacyDataAccessLevelEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsPrivacyDataAccessLevelEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsPrivacyDataAccessLevelEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsPrivacyDataAccessLevelEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsPrivacyDataCategoryEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsPrivacyDataCategoryEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsPrivacyDataCategoryEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsPrivacyDataCategoryEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsProtectionStateModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsProtectionStateModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsProtectionStateModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsProtectionStateModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsProtectionStateRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsProtectionStateRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsProtectionStateRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsProtectionStateRequest.go index 4e5a960918..4f0be4f936 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsProtectionStateRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsProtectionStateRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // WindowsProtectionStateRequestBuilder is request builder for WindowsProtectionState diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsSModeConfigurationEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsSModeConfigurationEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsSModeConfigurationEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsSModeConfigurationEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsSpotlightEnablementSettingsEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsSpotlightEnablementSettingsEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsSpotlightEnablementSettingsEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsSpotlightEnablementSettingsEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsStartMenuAppListVisibilityTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsStartMenuAppListVisibilityTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsStartMenuAppListVisibilityTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsStartMenuAppListVisibilityTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsStartMenuModeTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsStartMenuModeTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsStartMenuModeTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsStartMenuModeTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsStoreAppModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsStoreAppModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsStoreAppModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsStoreAppModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsUniversalAppXAppAssignmentSettingsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsUniversalAppXAppAssignmentSettingsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsUniversalAppXAppAssignmentSettingsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsUniversalAppXAppAssignmentSettingsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsUniversalAppXContainedAppModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsUniversalAppXContainedAppModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsUniversalAppXContainedAppModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsUniversalAppXContainedAppModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsUniversalAppXModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsUniversalAppXModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsUniversalAppXModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsUniversalAppXModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsUniversalAppXRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsUniversalAppXRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsUniversalAppXRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsUniversalAppXRequest.go index 0aabd71249..1c0a821c3a 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsUniversalAppXRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsUniversalAppXRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // WindowsUniversalAppXRequestBuilder is request builder for WindowsUniversalAppX diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsUpdateActiveHoursInstallModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsUpdateActiveHoursInstallModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsUpdateActiveHoursInstallModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsUpdateActiveHoursInstallModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsUpdateForBusinessConfigurationAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsUpdateForBusinessConfigurationAction.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsUpdateForBusinessConfigurationAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsUpdateForBusinessConfigurationAction.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsUpdateForBusinessConfigurationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsUpdateForBusinessConfigurationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsUpdateForBusinessConfigurationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsUpdateForBusinessConfigurationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsUpdateForBusinessConfigurationRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsUpdateForBusinessConfigurationRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsUpdateForBusinessConfigurationRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsUpdateForBusinessConfigurationRequest.go index be2529d9aa..6816c95128 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsUpdateForBusinessConfigurationRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsUpdateForBusinessConfigurationRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // WindowsUpdateForBusinessConfigurationRequestBuilder is request builder for WindowsUpdateForBusinessConfiguration diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsUpdateForBusinessUpdateWeeksEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsUpdateForBusinessUpdateWeeksEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsUpdateForBusinessUpdateWeeksEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsUpdateForBusinessUpdateWeeksEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsUpdateInstallScheduleTypeModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsUpdateInstallScheduleTypeModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsUpdateInstallScheduleTypeModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsUpdateInstallScheduleTypeModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsUpdateNotificationDisplayOptionEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsUpdateNotificationDisplayOptionEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsUpdateNotificationDisplayOptionEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsUpdateNotificationDisplayOptionEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsUpdateScheduledInstallModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsUpdateScheduledInstallModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsUpdateScheduledInstallModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsUpdateScheduledInstallModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsUpdateStateModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsUpdateStateModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsUpdateStateModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsUpdateStateModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsUpdateStateRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsUpdateStateRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsUpdateStateRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsUpdateStateRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsUpdateStatusEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsUpdateStatusEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsUpdateStatusEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsUpdateStatusEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsUpdateTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsUpdateTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsUpdateTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsUpdateTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsUserAccountControlSettingsEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsUserAccountControlSettingsEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsUserAccountControlSettingsEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsUserAccountControlSettingsEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsUserTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsUserTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsUserTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsUserTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsVpnConfigurationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsVpnConfigurationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsVpnConfigurationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsVpnConfigurationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsVpnConnectionTypeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsVpnConnectionTypeEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsVpnConnectionTypeEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsVpnConnectionTypeEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsWifiConfigurationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsWifiConfigurationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsWifiConfigurationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsWifiConfigurationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsWifiEnterpriseEAPConfigurationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsWifiEnterpriseEAPConfigurationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsWifiEnterpriseEAPConfigurationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsWifiEnterpriseEAPConfigurationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsWifiEnterpriseEAPConfigurationRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsWifiEnterpriseEAPConfigurationRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/WindowsWifiEnterpriseEAPConfigurationRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WindowsWifiEnterpriseEAPConfigurationRequest.go index d1380ebc23..206ad28582 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsWifiEnterpriseEAPConfigurationRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/WindowsWifiEnterpriseEAPConfigurationRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // WindowsWifiEnterpriseEAPConfigurationRequestBuilder is request builder for WindowsWifiEnterpriseEAPConfiguration diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WiredNetworkInterfaceEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/WiredNetworkInterfaceEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WiredNetworkInterfaceEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WiredNetworkInterfaceEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkPositionModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WorkPositionModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WorkPositionModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WorkPositionModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkPositionRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/WorkPositionRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WorkPositionRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WorkPositionRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/WorkbookAction.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WorkbookAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WorkbookAction.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookApplicationAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/WorkbookApplicationAction.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WorkbookApplicationAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WorkbookApplicationAction.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookApplicationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WorkbookApplicationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WorkbookApplicationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WorkbookApplicationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookApplicationRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/WorkbookApplicationRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WorkbookApplicationRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WorkbookApplicationRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookChartAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/WorkbookChartAction.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WorkbookChartAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WorkbookChartAction.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookChartAreaFormatModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WorkbookChartAreaFormatModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WorkbookChartAreaFormatModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WorkbookChartAreaFormatModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookChartAreaFormatRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/WorkbookChartAreaFormatRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WorkbookChartAreaFormatRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WorkbookChartAreaFormatRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookChartAxesModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WorkbookChartAxesModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WorkbookChartAxesModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WorkbookChartAxesModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookChartAxesRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/WorkbookChartAxesRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WorkbookChartAxesRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WorkbookChartAxesRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookChartAxisFormatModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WorkbookChartAxisFormatModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WorkbookChartAxisFormatModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WorkbookChartAxisFormatModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookChartAxisFormatRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/WorkbookChartAxisFormatRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WorkbookChartAxisFormatRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WorkbookChartAxisFormatRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookChartAxisModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WorkbookChartAxisModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WorkbookChartAxisModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WorkbookChartAxisModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookChartAxisRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/WorkbookChartAxisRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WorkbookChartAxisRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WorkbookChartAxisRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookChartAxisTitleFormatModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WorkbookChartAxisTitleFormatModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WorkbookChartAxisTitleFormatModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WorkbookChartAxisTitleFormatModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookChartAxisTitleFormatRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/WorkbookChartAxisTitleFormatRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WorkbookChartAxisTitleFormatRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WorkbookChartAxisTitleFormatRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookChartAxisTitleModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WorkbookChartAxisTitleModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WorkbookChartAxisTitleModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WorkbookChartAxisTitleModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookChartAxisTitleRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/WorkbookChartAxisTitleRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WorkbookChartAxisTitleRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WorkbookChartAxisTitleRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookChartDataLabelFormatModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WorkbookChartDataLabelFormatModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WorkbookChartDataLabelFormatModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WorkbookChartDataLabelFormatModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookChartDataLabelFormatRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/WorkbookChartDataLabelFormatRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WorkbookChartDataLabelFormatRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WorkbookChartDataLabelFormatRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookChartDataLabelsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WorkbookChartDataLabelsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WorkbookChartDataLabelsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WorkbookChartDataLabelsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookChartDataLabelsRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/WorkbookChartDataLabelsRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WorkbookChartDataLabelsRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WorkbookChartDataLabelsRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookChartFillAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/WorkbookChartFillAction.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WorkbookChartFillAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WorkbookChartFillAction.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookChartFillModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WorkbookChartFillModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WorkbookChartFillModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WorkbookChartFillModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookChartFillRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/WorkbookChartFillRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WorkbookChartFillRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WorkbookChartFillRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookChartFontModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WorkbookChartFontModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WorkbookChartFontModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WorkbookChartFontModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookChartFontRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/WorkbookChartFontRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WorkbookChartFontRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WorkbookChartFontRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookChartGridlinesFormatModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WorkbookChartGridlinesFormatModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WorkbookChartGridlinesFormatModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WorkbookChartGridlinesFormatModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookChartGridlinesFormatRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/WorkbookChartGridlinesFormatRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WorkbookChartGridlinesFormatRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WorkbookChartGridlinesFormatRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookChartGridlinesModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WorkbookChartGridlinesModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WorkbookChartGridlinesModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WorkbookChartGridlinesModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookChartGridlinesRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/WorkbookChartGridlinesRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WorkbookChartGridlinesRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WorkbookChartGridlinesRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookChartLegendFormatModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WorkbookChartLegendFormatModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WorkbookChartLegendFormatModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WorkbookChartLegendFormatModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookChartLegendFormatRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/WorkbookChartLegendFormatRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WorkbookChartLegendFormatRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WorkbookChartLegendFormatRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookChartLegendModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WorkbookChartLegendModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WorkbookChartLegendModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WorkbookChartLegendModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookChartLegendRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/WorkbookChartLegendRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WorkbookChartLegendRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WorkbookChartLegendRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookChartLineFormatAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/WorkbookChartLineFormatAction.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WorkbookChartLineFormatAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WorkbookChartLineFormatAction.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookChartLineFormatModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WorkbookChartLineFormatModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WorkbookChartLineFormatModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WorkbookChartLineFormatModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookChartLineFormatRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/WorkbookChartLineFormatRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WorkbookChartLineFormatRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WorkbookChartLineFormatRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookChartModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WorkbookChartModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WorkbookChartModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WorkbookChartModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookChartPointFormatModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WorkbookChartPointFormatModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WorkbookChartPointFormatModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WorkbookChartPointFormatModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookChartPointFormatRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/WorkbookChartPointFormatRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WorkbookChartPointFormatRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WorkbookChartPointFormatRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookChartPointModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WorkbookChartPointModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WorkbookChartPointModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WorkbookChartPointModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookChartPointRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/WorkbookChartPointRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WorkbookChartPointRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WorkbookChartPointRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookChartRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/WorkbookChartRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/WorkbookChartRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WorkbookChartRequest.go index fd4ff7465a..b4db72e5ea 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookChartRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/WorkbookChartRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // WorkbookChartRequestBuilder is request builder for WorkbookChart diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookChartSeriesFormatModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WorkbookChartSeriesFormatModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WorkbookChartSeriesFormatModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WorkbookChartSeriesFormatModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookChartSeriesFormatRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/WorkbookChartSeriesFormatRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WorkbookChartSeriesFormatRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WorkbookChartSeriesFormatRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookChartSeriesModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WorkbookChartSeriesModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WorkbookChartSeriesModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WorkbookChartSeriesModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookChartSeriesRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/WorkbookChartSeriesRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/WorkbookChartSeriesRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WorkbookChartSeriesRequest.go index 98161da4a5..30057e1235 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookChartSeriesRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/WorkbookChartSeriesRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // WorkbookChartSeriesRequestBuilder is request builder for WorkbookChartSeries diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookChartTitleFormatModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WorkbookChartTitleFormatModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WorkbookChartTitleFormatModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WorkbookChartTitleFormatModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookChartTitleFormatRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/WorkbookChartTitleFormatRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WorkbookChartTitleFormatRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WorkbookChartTitleFormatRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookChartTitleModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WorkbookChartTitleModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WorkbookChartTitleModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WorkbookChartTitleModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookChartTitleRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/WorkbookChartTitleRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WorkbookChartTitleRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WorkbookChartTitleRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookCommentModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WorkbookCommentModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WorkbookCommentModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WorkbookCommentModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookCommentReplyModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WorkbookCommentReplyModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WorkbookCommentReplyModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WorkbookCommentReplyModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookCommentReplyRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/WorkbookCommentReplyRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WorkbookCommentReplyRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WorkbookCommentReplyRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookCommentRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/WorkbookCommentRequest.go similarity index 98% rename from vendor/github.com/yaegashi/msgraph.go/beta/WorkbookCommentRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WorkbookCommentRequest.go index 54abba568f..208e08162e 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookCommentRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/WorkbookCommentRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // WorkbookCommentRequestBuilder is request builder for WorkbookComment diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookFilterAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/WorkbookFilterAction.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WorkbookFilterAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WorkbookFilterAction.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookFilterCriteriaModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WorkbookFilterCriteriaModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WorkbookFilterCriteriaModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WorkbookFilterCriteriaModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookFilterDatetimeModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WorkbookFilterDatetimeModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WorkbookFilterDatetimeModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WorkbookFilterDatetimeModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookFilterModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WorkbookFilterModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WorkbookFilterModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WorkbookFilterModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookFilterRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/WorkbookFilterRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WorkbookFilterRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WorkbookFilterRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookFormatProtectionModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WorkbookFormatProtectionModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WorkbookFormatProtectionModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WorkbookFormatProtectionModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookFormatProtectionRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/WorkbookFormatProtectionRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WorkbookFormatProtectionRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WorkbookFormatProtectionRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookFunctionResultModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WorkbookFunctionResultModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WorkbookFunctionResultModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WorkbookFunctionResultModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookFunctionsAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/WorkbookFunctionsAction.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WorkbookFunctionsAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WorkbookFunctionsAction.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookFunctionsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WorkbookFunctionsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WorkbookFunctionsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WorkbookFunctionsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookFunctionsRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/WorkbookFunctionsRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WorkbookFunctionsRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WorkbookFunctionsRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookIconModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WorkbookIconModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WorkbookIconModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WorkbookIconModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WorkbookModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WorkbookModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WorkbookModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookNamedItemAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/WorkbookNamedItemAction.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WorkbookNamedItemAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WorkbookNamedItemAction.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookNamedItemModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WorkbookNamedItemModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WorkbookNamedItemModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WorkbookNamedItemModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookNamedItemRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/WorkbookNamedItemRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WorkbookNamedItemRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WorkbookNamedItemRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookPivotTableAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/WorkbookPivotTableAction.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WorkbookPivotTableAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WorkbookPivotTableAction.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookPivotTableModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WorkbookPivotTableModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WorkbookPivotTableModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WorkbookPivotTableModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookPivotTableRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/WorkbookPivotTableRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WorkbookPivotTableRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WorkbookPivotTableRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookRangeAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/WorkbookRangeAction.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WorkbookRangeAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WorkbookRangeAction.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookRangeBorderModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WorkbookRangeBorderModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WorkbookRangeBorderModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WorkbookRangeBorderModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookRangeBorderRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/WorkbookRangeBorderRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WorkbookRangeBorderRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WorkbookRangeBorderRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookRangeFillAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/WorkbookRangeFillAction.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WorkbookRangeFillAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WorkbookRangeFillAction.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookRangeFillModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WorkbookRangeFillModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WorkbookRangeFillModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WorkbookRangeFillModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookRangeFillRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/WorkbookRangeFillRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WorkbookRangeFillRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WorkbookRangeFillRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookRangeFontModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WorkbookRangeFontModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WorkbookRangeFontModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WorkbookRangeFontModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookRangeFontRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/WorkbookRangeFontRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WorkbookRangeFontRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WorkbookRangeFontRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookRangeFormatAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/WorkbookRangeFormatAction.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WorkbookRangeFormatAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WorkbookRangeFormatAction.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookRangeFormatModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WorkbookRangeFormatModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WorkbookRangeFormatModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WorkbookRangeFormatModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookRangeFormatRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/WorkbookRangeFormatRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/WorkbookRangeFormatRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WorkbookRangeFormatRequest.go index d4118ef87b..482483a183 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookRangeFormatRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/WorkbookRangeFormatRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // WorkbookRangeFormatRequestBuilder is request builder for WorkbookRangeFormat diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookRangeModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WorkbookRangeModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WorkbookRangeModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WorkbookRangeModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookRangeReferenceModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WorkbookRangeReferenceModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WorkbookRangeReferenceModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WorkbookRangeReferenceModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookRangeRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/WorkbookRangeRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WorkbookRangeRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WorkbookRangeRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookRangeSortAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/WorkbookRangeSortAction.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WorkbookRangeSortAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WorkbookRangeSortAction.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookRangeSortModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WorkbookRangeSortModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WorkbookRangeSortModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WorkbookRangeSortModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookRangeSortRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/WorkbookRangeSortRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WorkbookRangeSortRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WorkbookRangeSortRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookRangeViewModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WorkbookRangeViewModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WorkbookRangeViewModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WorkbookRangeViewModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookRangeViewRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/WorkbookRangeViewRequest.go similarity index 98% rename from vendor/github.com/yaegashi/msgraph.go/beta/WorkbookRangeViewRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WorkbookRangeViewRequest.go index 8a6edf3fbe..64ad3d459a 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookRangeViewRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/WorkbookRangeViewRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // WorkbookRangeViewRequestBuilder is request builder for WorkbookRangeView diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/WorkbookRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/WorkbookRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WorkbookRequest.go index 6853c09921..10c1563e7b 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/WorkbookRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // WorkbookRequestBuilder is request builder for Workbook diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookSessionInfoModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WorkbookSessionInfoModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WorkbookSessionInfoModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WorkbookSessionInfoModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookSortFieldModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WorkbookSortFieldModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WorkbookSortFieldModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WorkbookSortFieldModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookTableAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/WorkbookTableAction.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WorkbookTableAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WorkbookTableAction.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookTableColumnAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/WorkbookTableColumnAction.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WorkbookTableColumnAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WorkbookTableColumnAction.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookTableColumnModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WorkbookTableColumnModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WorkbookTableColumnModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WorkbookTableColumnModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookTableColumnRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/WorkbookTableColumnRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WorkbookTableColumnRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WorkbookTableColumnRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookTableModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WorkbookTableModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WorkbookTableModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WorkbookTableModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookTableRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/WorkbookTableRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/WorkbookTableRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WorkbookTableRequest.go index b99efe76ad..ddf04cd47e 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookTableRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/WorkbookTableRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // WorkbookTableRequestBuilder is request builder for WorkbookTable diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookTableRowAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/WorkbookTableRowAction.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WorkbookTableRowAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WorkbookTableRowAction.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookTableRowModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WorkbookTableRowModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WorkbookTableRowModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WorkbookTableRowModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookTableRowRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/WorkbookTableRowRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WorkbookTableRowRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WorkbookTableRowRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookTableSortAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/WorkbookTableSortAction.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WorkbookTableSortAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WorkbookTableSortAction.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookTableSortModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WorkbookTableSortModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WorkbookTableSortModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WorkbookTableSortModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookTableSortRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/WorkbookTableSortRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WorkbookTableSortRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WorkbookTableSortRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookWorksheetAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/WorkbookWorksheetAction.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WorkbookWorksheetAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WorkbookWorksheetAction.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookWorksheetModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WorkbookWorksheetModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WorkbookWorksheetModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WorkbookWorksheetModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookWorksheetProtectionAction.go b/vendor/github.com/matterbridge/msgraph.go/beta/WorkbookWorksheetProtectionAction.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WorkbookWorksheetProtectionAction.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WorkbookWorksheetProtectionAction.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookWorksheetProtectionModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WorkbookWorksheetProtectionModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WorkbookWorksheetProtectionModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WorkbookWorksheetProtectionModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookWorksheetProtectionOptionsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WorkbookWorksheetProtectionOptionsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WorkbookWorksheetProtectionOptionsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WorkbookWorksheetProtectionOptionsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookWorksheetProtectionRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/WorkbookWorksheetProtectionRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WorkbookWorksheetProtectionRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WorkbookWorksheetProtectionRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookWorksheetRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/WorkbookWorksheetRequest.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/WorkbookWorksheetRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WorkbookWorksheetRequest.go index 630da1374f..4e7f848e32 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookWorksheetRequest.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/WorkbookWorksheetRequest.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) // WorkbookWorksheetRequestBuilder is request builder for WorkbookWorksheet diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkforceIntegrationEncryptionModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WorkforceIntegrationEncryptionModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WorkforceIntegrationEncryptionModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WorkforceIntegrationEncryptionModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkforceIntegrationEncryptionProtocolEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/WorkforceIntegrationEncryptionProtocolEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WorkforceIntegrationEncryptionProtocolEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WorkforceIntegrationEncryptionProtocolEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkforceIntegrationModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WorkforceIntegrationModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WorkforceIntegrationModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WorkforceIntegrationModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkforceIntegrationRequest.go b/vendor/github.com/matterbridge/msgraph.go/beta/WorkforceIntegrationRequest.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WorkforceIntegrationRequest.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WorkforceIntegrationRequest.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkforceIntegrationSupportedEntitiesEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/WorkforceIntegrationSupportedEntitiesEnum.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WorkforceIntegrationSupportedEntitiesEnum.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WorkforceIntegrationSupportedEntitiesEnum.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WorkingHoursModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/WorkingHoursModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/WorkingHoursModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/WorkingHoursModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/YammerActivitySummaryModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/YammerActivitySummaryModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/YammerActivitySummaryModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/YammerActivitySummaryModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/YammerActivityUserDetailModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/YammerActivityUserDetailModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/YammerActivityUserDetailModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/YammerActivityUserDetailModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/YammerDeviceUsageDistributionUserCountsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/YammerDeviceUsageDistributionUserCountsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/YammerDeviceUsageDistributionUserCountsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/YammerDeviceUsageDistributionUserCountsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/YammerDeviceUsageUserCountsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/YammerDeviceUsageUserCountsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/YammerDeviceUsageUserCountsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/YammerDeviceUsageUserCountsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/YammerDeviceUsageUserDetailModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/YammerDeviceUsageUserDetailModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/YammerDeviceUsageUserDetailModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/YammerDeviceUsageUserDetailModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/YammerGroupsActivityCountsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/YammerGroupsActivityCountsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/YammerGroupsActivityCountsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/YammerGroupsActivityCountsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/YammerGroupsActivityDetailModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/YammerGroupsActivityDetailModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/YammerGroupsActivityDetailModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/YammerGroupsActivityDetailModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/YammerGroupsActivityGroupCountsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/YammerGroupsActivityGroupCountsModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/YammerGroupsActivityGroupCountsModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/YammerGroupsActivityGroupCountsModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/YomiPersonNameModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/YomiPersonNameModel.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/YomiPersonNameModel.go rename to vendor/github.com/matterbridge/msgraph.go/beta/YomiPersonNameModel.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/extensions.go b/vendor/github.com/matterbridge/msgraph.go/beta/extensions.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/beta/extensions.go rename to vendor/github.com/matterbridge/msgraph.go/beta/extensions.go diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/msgraph.go b/vendor/github.com/matterbridge/msgraph.go/beta/msgraph.go similarity index 99% rename from vendor/github.com/yaegashi/msgraph.go/beta/msgraph.go rename to vendor/github.com/matterbridge/msgraph.go/beta/msgraph.go index 9182d86579..a215f45648 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/msgraph.go +++ b/vendor/github.com/matterbridge/msgraph.go/beta/msgraph.go @@ -13,7 +13,7 @@ import ( "net/url" "strconv" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) const ( diff --git a/vendor/github.com/yaegashi/msgraph.go/jsonx/README.md b/vendor/github.com/matterbridge/msgraph.go/jsonx/README.md similarity index 97% rename from vendor/github.com/yaegashi/msgraph.go/jsonx/README.md rename to vendor/github.com/matterbridge/msgraph.go/jsonx/README.md index 575ce78137..949df33952 100644 --- a/vendor/github.com/yaegashi/msgraph.go/jsonx/README.md +++ b/vendor/github.com/matterbridge/msgraph.go/jsonx/README.md @@ -14,7 +14,7 @@ import ( "encoding/json" "fmt" - "github.com/yaegashi/msgraph.go/jsonx" + "github.com/matterbridge/msgraph.go/jsonx" ) type Extra struct { diff --git a/vendor/github.com/yaegashi/msgraph.go/jsonx/decode.go b/vendor/github.com/matterbridge/msgraph.go/jsonx/decode.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/jsonx/decode.go rename to vendor/github.com/matterbridge/msgraph.go/jsonx/decode.go diff --git a/vendor/github.com/yaegashi/msgraph.go/jsonx/encode.go b/vendor/github.com/matterbridge/msgraph.go/jsonx/encode.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/jsonx/encode.go rename to vendor/github.com/matterbridge/msgraph.go/jsonx/encode.go diff --git a/vendor/github.com/yaegashi/msgraph.go/jsonx/fold.go b/vendor/github.com/matterbridge/msgraph.go/jsonx/fold.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/jsonx/fold.go rename to vendor/github.com/matterbridge/msgraph.go/jsonx/fold.go diff --git a/vendor/github.com/yaegashi/msgraph.go/jsonx/indent.go b/vendor/github.com/matterbridge/msgraph.go/jsonx/indent.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/jsonx/indent.go rename to vendor/github.com/matterbridge/msgraph.go/jsonx/indent.go diff --git a/vendor/github.com/yaegashi/msgraph.go/jsonx/scanner.go b/vendor/github.com/matterbridge/msgraph.go/jsonx/scanner.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/jsonx/scanner.go rename to vendor/github.com/matterbridge/msgraph.go/jsonx/scanner.go diff --git a/vendor/github.com/yaegashi/msgraph.go/jsonx/stream.go b/vendor/github.com/matterbridge/msgraph.go/jsonx/stream.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/jsonx/stream.go rename to vendor/github.com/matterbridge/msgraph.go/jsonx/stream.go diff --git a/vendor/github.com/yaegashi/msgraph.go/jsonx/tables.go b/vendor/github.com/matterbridge/msgraph.go/jsonx/tables.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/jsonx/tables.go rename to vendor/github.com/matterbridge/msgraph.go/jsonx/tables.go diff --git a/vendor/github.com/yaegashi/msgraph.go/jsonx/tags.go b/vendor/github.com/matterbridge/msgraph.go/jsonx/tags.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/jsonx/tags.go rename to vendor/github.com/matterbridge/msgraph.go/jsonx/tags.go diff --git a/vendor/github.com/yaegashi/msgraph.go/msauth/README.md b/vendor/github.com/matterbridge/msgraph.go/msauth/README.md similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/msauth/README.md rename to vendor/github.com/matterbridge/msgraph.go/msauth/README.md diff --git a/vendor/github.com/yaegashi/msgraph.go/msauth/client_credentials_grant.go b/vendor/github.com/matterbridge/msgraph.go/msauth/client_credentials_grant.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/msauth/client_credentials_grant.go rename to vendor/github.com/matterbridge/msgraph.go/msauth/client_credentials_grant.go diff --git a/vendor/github.com/yaegashi/msgraph.go/msauth/device_authorization_grant.go b/vendor/github.com/matterbridge/msgraph.go/msauth/device_authorization_grant.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/msauth/device_authorization_grant.go rename to vendor/github.com/matterbridge/msgraph.go/msauth/device_authorization_grant.go diff --git a/vendor/github.com/yaegashi/msgraph.go/msauth/msauth.go b/vendor/github.com/matterbridge/msgraph.go/msauth/msauth.go similarity index 100% rename from vendor/github.com/yaegashi/msgraph.go/msauth/msauth.go rename to vendor/github.com/matterbridge/msgraph.go/msauth/msauth.go diff --git a/vendor/modules.txt b/vendor/modules.txt index a1048b9c65..028eb9720e 100644 --- a/vendor/modules.txt +++ b/vendor/modules.txt @@ -23,8 +23,6 @@ github.com/Rhymen/go-whatsapp/binary/token github.com/Rhymen/go-whatsapp/crypto/cbc github.com/Rhymen/go-whatsapp/crypto/curve25519 github.com/Rhymen/go-whatsapp/crypto/hkdf -# github.com/bwmarrin/discordgo v0.20.2 => github.com/matterbridge/discordgo v0.18.1-0.20200109173909-ed873362fa43 -github.com/bwmarrin/discordgo # github.com/d5/tengo/v2 v2.0.2 github.com/d5/tengo/v2 github.com/d5/tengo/v2/parser @@ -101,6 +99,8 @@ github.com/magiconair/properties github.com/matterbridge/Rocket.Chat.Go.SDK/models github.com/matterbridge/Rocket.Chat.Go.SDK/realtime github.com/matterbridge/Rocket.Chat.Go.SDK/rest +# github.com/matterbridge/discordgo v0.18.1-0.20200308151012-aa40f01cbcc3 +github.com/matterbridge/discordgo # github.com/matterbridge/emoji v2.1.1-0.20191117213217-af507f6b02db+incompatible github.com/matterbridge/emoji # github.com/matterbridge/go-xmpp v0.0.0-20180529212104-cd19799fba91 @@ -111,6 +111,10 @@ github.com/matterbridge/gomatrix github.com/matterbridge/gozulipbot # github.com/matterbridge/logrus-prefixed-formatter v0.0.0-20180806162718-01618749af61 github.com/matterbridge/logrus-prefixed-formatter +# github.com/matterbridge/msgraph.go v0.0.0-20200308150230-9e043fe9dbaa +github.com/matterbridge/msgraph.go/beta +github.com/matterbridge/msgraph.go/jsonx +github.com/matterbridge/msgraph.go/msauth # github.com/mattermost/mattermost-server v5.5.0+incompatible github.com/mattermost/mattermost-server/mlog github.com/mattermost/mattermost-server/model @@ -196,10 +200,6 @@ github.com/technoweenie/multipartstreamer github.com/valyala/bytebufferpool # github.com/valyala/fasttemplate v1.1.0 github.com/valyala/fasttemplate -# github.com/yaegashi/msgraph.go v0.0.0-00010101000000-000000000000 => github.com/matterbridge/msgraph.go v0.0.0-20191226214848-9e5d9c08a4e1 -github.com/yaegashi/msgraph.go/beta -github.com/yaegashi/msgraph.go/jsonx -github.com/yaegashi/msgraph.go/msauth # github.com/zfjagann/golang-ring v0.0.0-20190106091943-a88bb6aef447 github.com/zfjagann/golang-ring # go.uber.org/atomic v1.4.0