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 ( import (
"fmt" "fmt"
"github.com/microsoftgraph/msgraph-sdk-go/models" "github.com/microsoftgraph/msgraph-beta-sdk-go/models"
) )
type attendee struct { type attendee struct {

View File

@ -6,7 +6,7 @@ import (
"strings" "strings"
multierror "github.com/hashicorp/go-multierror" 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/pkg/errors"
"github.com/alcionai/corso/src/internal/common" "github.com/alcionai/corso/src/internal/common"

View File

@ -3,7 +3,7 @@ package support
import ( import (
absser "github.com/microsoft/kiota-abstractions-go/serialization" absser "github.com/microsoft/kiota-abstractions-go/serialization"
js "github.com/microsoft/kiota-serialization-json-go" 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" "github.com/pkg/errors"
) )

View File

@ -3,7 +3,7 @@ package support
import ( import (
"strings" "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. // CloneMessageableFields places data from original data into new message object.

View File

@ -3,7 +3,7 @@ package support
import ( import (
"testing" "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/assert"
"github.com/stretchr/testify/require" "github.com/stretchr/testify/require"
"github.com/stretchr/testify/suite" "github.com/stretchr/testify/suite"