Skip to content

Commit

Permalink
BETA release of Version 10.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
toddcornett committed Nov 17, 2021
1 parent e87a100 commit 893760a
Show file tree
Hide file tree
Showing 2 changed files with 98 additions and 0 deletions.
37 changes: 37 additions & 0 deletions api/domaintype/Invitation.go
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@ type InviteSourceType struct {
IsOutsidePurchase bool
IsPublicInterface bool
IsTransferred bool
IsWalkIn bool
}

type WebhookType struct {
Expand Down Expand Up @@ -738,6 +739,7 @@ func (f *Invitation) ListInviteSourceTypes() []InviteSourceType {
IsOutsidePurchase: false,
IsPublicInterface: false,
IsTransferred: false,
IsWalkIn: false,
},
{
Slug: `api-addition`,
Expand All @@ -758,6 +760,7 @@ func (f *Invitation) ListInviteSourceTypes() []InviteSourceType {
IsOutsidePurchase: false,
IsPublicInterface: false,
IsTransferred: false,
IsWalkIn: false,
},
{
Slug: `distribution`,
Expand All @@ -778,6 +781,7 @@ func (f *Invitation) ListInviteSourceTypes() []InviteSourceType {
IsOutsidePurchase: false,
IsPublicInterface: false,
IsTransferred: false,
IsWalkIn: false,
},
{
Slug: `event-invite`,
Expand All @@ -798,6 +802,7 @@ func (f *Invitation) ListInviteSourceTypes() []InviteSourceType {
IsOutsidePurchase: false,
IsPublicInterface: false,
IsTransferred: false,
IsWalkIn: false,
},
{
Slug: `group-invite`,
Expand All @@ -818,6 +823,7 @@ func (f *Invitation) ListInviteSourceTypes() []InviteSourceType {
IsOutsidePurchase: false,
IsPublicInterface: false,
IsTransferred: false,
IsWalkIn: false,
},
{
Slug: `import`,
Expand All @@ -838,6 +844,7 @@ func (f *Invitation) ListInviteSourceTypes() []InviteSourceType {
IsOutsidePurchase: false,
IsPublicInterface: false,
IsTransferred: false,
IsWalkIn: false,
},
{
Slug: `ios-leave-behind`,
Expand All @@ -858,6 +865,7 @@ func (f *Invitation) ListInviteSourceTypes() []InviteSourceType {
IsOutsidePurchase: false,
IsPublicInterface: false,
IsTransferred: false,
IsWalkIn: false,
},
{
Slug: `leave-behind`,
Expand All @@ -878,6 +886,7 @@ func (f *Invitation) ListInviteSourceTypes() []InviteSourceType {
IsOutsidePurchase: false,
IsPublicInterface: false,
IsTransferred: false,
IsWalkIn: false,
},
{
Slug: `mobile-leave-behind`,
Expand All @@ -898,6 +907,7 @@ func (f *Invitation) ListInviteSourceTypes() []InviteSourceType {
IsOutsidePurchase: false,
IsPublicInterface: false,
IsTransferred: false,
IsWalkIn: false,
},
{
Slug: `mobile-purchase`,
Expand All @@ -918,6 +928,7 @@ func (f *Invitation) ListInviteSourceTypes() []InviteSourceType {
IsOutsidePurchase: false,
IsPublicInterface: false,
IsTransferred: false,
IsWalkIn: false,
},
{
Slug: `outside-purchase`,
Expand All @@ -938,6 +949,7 @@ func (f *Invitation) ListInviteSourceTypes() []InviteSourceType {
IsOutsidePurchase: true,
IsPublicInterface: false,
IsTransferred: false,
IsWalkIn: false,
},
{
Slug: `public-interface`,
Expand All @@ -958,6 +970,7 @@ func (f *Invitation) ListInviteSourceTypes() []InviteSourceType {
IsOutsidePurchase: false,
IsPublicInterface: true,
IsTransferred: false,
IsWalkIn: false,
},
{
Slug: `transferred`,
Expand All @@ -978,6 +991,7 @@ func (f *Invitation) ListInviteSourceTypes() []InviteSourceType {
IsOutsidePurchase: false,
IsPublicInterface: false,
IsTransferred: true,
IsWalkIn: false,
},
{
Slug: `import-salesforce`,
Expand All @@ -998,6 +1012,7 @@ func (f *Invitation) ListInviteSourceTypes() []InviteSourceType {
IsOutsidePurchase: false,
IsPublicInterface: false,
IsTransferred: false,
IsWalkIn: false,
},
{
Slug: `import-marketo`,
Expand All @@ -1018,6 +1033,28 @@ func (f *Invitation) ListInviteSourceTypes() []InviteSourceType {
IsOutsidePurchase: false,
IsPublicInterface: false,
IsTransferred: false,
IsWalkIn: false,
},
{
Slug: `walk-in`,
Name: `Walk In Addition`,
Description: ``,
IsDirectInvite: false,
IsApiAddition: false,
IsDistribution: false,
IsEventInvite: false,
IsGroupInvite: false,
IsImport: false,
IsImportMarketo: false,
IsImportSalesforce: false,
IsIosLeaveBehind: false,
IsLeaveBehind: false,
IsMobileLeaveBehind: false,
IsMobilePurchase: false,
IsOutsidePurchase: false,
IsPublicInterface: false,
IsTransferred: false,
IsWalkIn: true,
},
}
}
Expand Down
Loading

0 comments on commit 893760a

Please sign in to comment.