Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix enum values not having consistent types (GEA-12685) #188

Merged
merged 1 commit into from
Feb 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

### Fixed

- All enums now have consistent types across their values.

## [3.7.0] - 2024-02-26

### Added
Expand All @@ -15,7 +21,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Rewrote `README.md`.


## [3.6.0] - 2024-01-16

### Added
Expand Down
4 changes: 2 additions & 2 deletions pangea-sdk/v3/internal/pangeatesting/pangeatesting.go
Original file line number Diff line number Diff line change
Expand Up @@ -114,8 +114,8 @@ type TestEnvironment string

const (
Live TestEnvironment = "LVE"
Develop = "DEV"
Staging = "STG"
Develop TestEnvironment = "DEV"
Staging TestEnvironment = "STG"
)

func GetTestDomain(t *testing.T, env TestEnvironment) string {
Expand Down
6 changes: 3 additions & 3 deletions pangea-sdk/v3/pangea/pangea.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@ type TransferMethod string

const (
TMmultipart TransferMethod = "multipart"
TMpostURL = "post-url"
TMputURL = "put-url"
TMsourceURL = "source-url"
TMpostURL TransferMethod = "post-url"
TMputURL TransferMethod = "put-url"
TMsourceURL TransferMethod = "source-url"
)

type ConfigIDer interface {
Expand Down
2 changes: 1 addition & 1 deletion pangea-sdk/v3/service/audit/service.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ type LogSigningMode int

const (
Unsigned LogSigningMode = 0
LocalSign = 1
LocalSign LogSigningMode = 1
)

type audit struct {
Expand Down
84 changes: 42 additions & 42 deletions pangea-sdk/v3/service/authn/api.go
Original file line number Diff line number Diff line change
Expand Up @@ -128,25 +128,25 @@ type IDProvider string

const (
IDPFacebook IDProvider = "facebook"
IDPGithub = "github"
IDPGoogle = "google"
IDPMicrosoftOnline = "microsoftonline"
IDPPassword = "password"
IDPGithub IDProvider = "github"
IDPGoogle IDProvider = "google"
IDPMicrosoftOnline IDProvider = "microsoftonline"
IDPPassword IDProvider = "password"
)

type MFAProvider string

const (
MFAPTOTP MFAProvider = "totp"
MFAPEmailOTP = "email_otp"
IDPSMSOTP = "sms_otp"
MFAPEmailOTP MFAProvider = "email_otp"
IDPSMSOTP MFAProvider = "sms_otp"
)

type FlowType string

const (
FTsignin FlowType = "signin"
FTsignup = "signup"
FTsignup FlowType = "signup"
)

type ProfileData map[string]string
Expand Down Expand Up @@ -310,23 +310,23 @@ type UserListOrderBy string

const (
ULOBid UserListOrderBy = "id"
ULOBcreatedAt = "created_at"
ULOBlastLoginAt = "last_login_at"
ULOBemail = "email"
ULOBcreatedAt UserListOrderBy = "created_at"
ULOBlastLoginAt UserListOrderBy = "last_login_at"
ULOBemail UserListOrderBy = "email"
)

type UserInviteListOrderBy string

const (
UILOBid UserListOrderBy = "id"
UILOBcreatedAt = "created_at"
UILOBtype = "type"
UILOBexpire = "expire"
UILOBcallback = "callback"
UILOBstate = "state"
UILOBemail = "email"
UILOBinviter = "inviter"
UILOBinviteOrg = "invite_org"
UILOBcreatedAt UserListOrderBy = "created_at"
UILOBtype UserListOrderBy = "type"
UILOBexpire UserListOrderBy = "expire"
UILOBcallback UserListOrderBy = "callback"
UILOBstate UserListOrderBy = "state"
UILOBemail UserListOrderBy = "email"
UILOBinviter UserListOrderBy = "inviter"
UILOBinviteOrg UserListOrderBy = "invite_org"
)

type FilterUserList struct {
Expand Down Expand Up @@ -847,19 +847,19 @@ type FlowChoice string

const (
FCAgreements FlowChoice = "agreements"
FCCaptcha = "captcha"
FCEmailOTP = "email_otp"
FCMagiclink = "magiclink"
FCPassword = "password"
FCProfile = "profile"
FCProvisionalEnrollment = "provisional_enrollment"
FCResetPassword = "reset_password"
FCSetEmail = "set_mail"
FCSetPassword = "set_password"
FCSMSOTP = "sms_otp"
FCSocial = "social"
FCTOTP = "totp"
FCVerifyEmail = "verify_email"
FCCaptcha FlowChoice = "captcha"
FCEmailOTP FlowChoice = "email_otp"
FCMagiclink FlowChoice = "magiclink"
FCPassword FlowChoice = "password"
FCProfile FlowChoice = "profile"
FCProvisionalEnrollment FlowChoice = "provisional_enrollment"
FCResetPassword FlowChoice = "reset_password"
FCSetEmail FlowChoice = "set_mail"
FCSetPassword FlowChoice = "set_password"
FCSMSOTP FlowChoice = "sms_otp"
FCSocial FlowChoice = "social"
FCTOTP FlowChoice = "totp"
FCVerifyEmail FlowChoice = "verify_email"
)

type FlowUpdateRequest struct {
Expand Down Expand Up @@ -1031,19 +1031,19 @@ type SessionListOrderBy string

const (
SLOBid SessionListOrderBy = "id"
SLOBcreatedAt = "created_at"
SLOBtype = "type"
SLOBidentity = "identity"
SLOBemail = "email"
SLOBexpire = "expire"
SLOBactiveTokenID = "active_token_id"
SLOBcreatedAt SessionListOrderBy = "created_at"
SLOBtype SessionListOrderBy = "type"
SLOBidentity SessionListOrderBy = "identity"
SLOBemail SessionListOrderBy = "email"
SLOBexpire SessionListOrderBy = "expire"
SLOBactiveTokenID SessionListOrderBy = "active_token_id"
)

type ItemOrder string

const (
IOasc ItemOrder = "asc"
IOdesc = "desc"
IOdesc ItemOrder = "desc"
)

type FilterSessionList struct {
Expand Down Expand Up @@ -1300,7 +1300,7 @@ type AgreementType string

const (
ATeula AgreementType = "eula"
ATprivacyPolicy = "privacy_policy"
ATprivacyPolicy AgreementType = "privacy_policy"
)

type AgreementCreateRequest struct {
Expand Down Expand Up @@ -1375,9 +1375,9 @@ type AgreementListOrderBy string

const (
ALOBid AgreementListOrderBy = "id"
ALOBcreatedAt = "created_at"
ALOBname = "name"
ALOBtext = "text"
ALOBcreatedAt AgreementListOrderBy = "created_at"
ALOBname AgreementListOrderBy = "name"
ALOBtext AgreementListOrderBy = "text"
)

type FilterAgreementList struct {
Expand Down
4 changes: 2 additions & 2 deletions pangea-sdk/v3/service/user_intel/utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ type PasswordStatus int

const (
PSbreached PasswordStatus = 0
PSunbreached = 1
PSinconclusive = 2
PSunbreached PasswordStatus = 1
PSinconclusive PasswordStatus = 2
)

func IsPasswordBreached(r *pangea.PangeaResponse[UserPasswordBreachedResult], h string) (PasswordStatus, error) {
Expand Down