Update /connector/support package

Beta Library replaces msgraph v1.0
This commit is contained in:
Danny Adams 2023-01-20 09:24:11 -05:00
parent 2929c9f25e
commit 4687b134ef
5 changed files with 5 additions and 5 deletions

View File

@ -3,7 +3,7 @@ package support
import (
"fmt"
"github.com/microsoftgraph/msgraph-sdk-go/models"
"github.com/microsoftgraph/msgraph-beta-sdk-go/models"
)
type attendee struct {

View File

@ -6,7 +6,7 @@ import (
"strings"
multierror "github.com/hashicorp/go-multierror"
msgraph_errors "github.com/microsoftgraph/msgraph-sdk-go/models/odataerrors"
msgraph_errors "github.com/microsoftgraph/msgraph-beta-sdk-go/models/odataerrors"
"github.com/pkg/errors"
"github.com/alcionai/corso/src/internal/common"

View File

@ -3,7 +3,7 @@ package support
import (
absser "github.com/microsoft/kiota-abstractions-go/serialization"
js "github.com/microsoft/kiota-serialization-json-go"
"github.com/microsoftgraph/msgraph-sdk-go/models"
"github.com/microsoftgraph/msgraph-beta-sdk-go/models"
"github.com/pkg/errors"
)

View File

@ -3,7 +3,7 @@ package support
import (
"strings"
"github.com/microsoftgraph/msgraph-sdk-go/models"
"github.com/microsoftgraph/msgraph-beta-sdk-go/models"
)
// CloneMessageableFields places data from original data into new message object.

View File

@ -3,7 +3,7 @@ package support
import (
"testing"
"github.com/microsoftgraph/msgraph-sdk-go/models"
"github.com/microsoftgraph/msgraph-beta-sdk-go/models"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"github.com/stretchr/testify/suite"