@adminide-stack/core 3.1.4-alpha.54 → 3.1.4-alpha.64
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1275,6 +1275,7 @@ export declare enum IMailTemplateId {
|
|
1275
1275
|
BillingNotificationId = "BillingNotificationId",
|
1276
1276
|
/** Prefix with Db to make sure it look into the database */
|
1277
1277
|
DbTeamInivitationId = "DbTeamInivitationId",
|
1278
|
+
DbTeamInvitationInvitee = "DbTeamInvitationInvitee",
|
1278
1279
|
/** Prefix with Db to make sure it look into the database */
|
1279
1280
|
EmailVerificationOtp = "EMAIL_VERIFICATION_OTP",
|
1280
1281
|
JoinNotifyMember = "JOIN_NOTIFY_MEMBER",
|
@@ -1895,6 +1896,7 @@ export type IOrganizationInvitationDecode = {
|
|
1895
1896
|
};
|
1896
1897
|
export type IOrganizationInvitationInput = {
|
1897
1898
|
email?: Maybe<Scalars['String']>;
|
1899
|
+
phoneNumber?: Maybe<IPhoneNumberInput>;
|
1898
1900
|
teamId?: Maybe<Scalars['String']>;
|
1899
1901
|
role?: Maybe<IApplicationRoles>;
|
1900
1902
|
active?: Maybe<Scalars['Boolean']>;
|
@@ -1908,10 +1910,14 @@ export type IOrganizationInvitationInput = {
|
|
1908
1910
|
};
|
1909
1911
|
export type IOrganizationInvitationRequest = {
|
1910
1912
|
teamId?: Maybe<Scalars['String']>;
|
1913
|
+
phoneNumber?: Maybe<IPhoneNumberInput>;
|
1911
1914
|
emails?: Maybe<Array<Maybe<Scalars['String']>>>;
|
1912
1915
|
invitedBy?: Maybe<Scalars['String']>;
|
1913
1916
|
orgName?: Maybe<Scalars['String']>;
|
1914
1917
|
role?: Maybe<Scalars['String']>;
|
1918
|
+
sentInvitee?: Maybe<Scalars['Boolean']>;
|
1919
|
+
invitee?: Maybe<Scalars['String']>;
|
1920
|
+
details?: Maybe<Scalars['AnyObject']>;
|
1915
1921
|
};
|
1916
1922
|
export type IOrganizationMember = {
|
1917
1923
|
__typename?: 'OrganizationMember';
|
@@ -242,6 +242,7 @@ var IMailTemplateId;
|
|
242
242
|
IMailTemplateId["BillingNotificationId"] = "BillingNotificationId";
|
243
243
|
/** Prefix with Db to make sure it look into the database */
|
244
244
|
IMailTemplateId["DbTeamInivitationId"] = "DbTeamInivitationId";
|
245
|
+
IMailTemplateId["DbTeamInvitationInvitee"] = "DbTeamInvitationInvitee";
|
245
246
|
/** Prefix with Db to make sure it look into the database */
|
246
247
|
IMailTemplateId["EmailVerificationOtp"] = "EMAIL_VERIFICATION_OTP";
|
247
248
|
IMailTemplateId["JoinNotifyMember"] = "JOIN_NOTIFY_MEMBER";
|