Generate relay code
Signed-off-by: Sacha Al Himdani <sacha@getprobo.com>
This commit is contained in:
@@ -1,5 +1,5 @@
|
|||||||
/**
|
/**
|
||||||
* @generated SignedSource<<8efbb638045cb24913b04b4de2033357>>
|
* @generated SignedSource<<617ea2708c8402c706671dc1a63b1316>>
|
||||||
* @lightSyntaxTransform
|
* @lightSyntaxTransform
|
||||||
* @nogrep
|
* @nogrep
|
||||||
*/
|
*/
|
||||||
@@ -9,6 +9,7 @@
|
|||||||
// @ts-nocheck
|
// @ts-nocheck
|
||||||
|
|
||||||
import { ConcreteRequest } from 'relay-runtime';
|
import { ConcreteRequest } from 'relay-runtime';
|
||||||
|
export type Role = "ADMIN" | "MEMBER" | "OWNER" | "VIEWER";
|
||||||
export type InviteUserInput = {
|
export type InviteUserInput = {
|
||||||
createPeople: boolean;
|
createPeople: boolean;
|
||||||
email: string;
|
email: string;
|
||||||
@@ -29,7 +30,7 @@ export type InviteUserDialogMutation$data = {
|
|||||||
readonly expiresAt: any;
|
readonly expiresAt: any;
|
||||||
readonly fullName: string;
|
readonly fullName: string;
|
||||||
readonly id: string;
|
readonly id: string;
|
||||||
readonly role: string;
|
readonly role: Role;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/**
|
/**
|
||||||
* @generated SignedSource<<1077fac0cf9631664adf53347f21a5b0>>
|
* @generated SignedSource<<8df0455e495843c9db156c36f38c97d6>>
|
||||||
* @lightSyntaxTransform
|
* @lightSyntaxTransform
|
||||||
* @nogrep
|
* @nogrep
|
||||||
*/
|
*/
|
||||||
@@ -10,6 +10,7 @@
|
|||||||
|
|
||||||
import { ReaderFragment } from 'relay-runtime';
|
import { ReaderFragment } from 'relay-runtime';
|
||||||
export type InvitationStatus = "ACCEPTED" | "EXPIRED" | "PENDING";
|
export type InvitationStatus = "ACCEPTED" | "EXPIRED" | "PENDING";
|
||||||
|
export type Role = "ADMIN" | "MEMBER" | "OWNER" | "VIEWER";
|
||||||
import { FragmentRefs } from "relay-runtime";
|
import { FragmentRefs } from "relay-runtime";
|
||||||
export type MembersSettingsTabInvitationsFragment$data = {
|
export type MembersSettingsTabInvitationsFragment$data = {
|
||||||
readonly id: string;
|
readonly id: string;
|
||||||
@@ -23,7 +24,7 @@ export type MembersSettingsTabInvitationsFragment$data = {
|
|||||||
readonly expiresAt: any;
|
readonly expiresAt: any;
|
||||||
readonly fullName: string;
|
readonly fullName: string;
|
||||||
readonly id: string;
|
readonly id: string;
|
||||||
readonly role: string;
|
readonly role: Role;
|
||||||
readonly status: InvitationStatus;
|
readonly status: InvitationStatus;
|
||||||
};
|
};
|
||||||
}>;
|
}>;
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/**
|
/**
|
||||||
* @generated SignedSource<<f4c0ddd2099746a005858cecc39d2a23>>
|
* @generated SignedSource<<ff12447635b4a42587b7d7de6ea1b4e1>>
|
||||||
* @lightSyntaxTransform
|
* @lightSyntaxTransform
|
||||||
* @nogrep
|
* @nogrep
|
||||||
*/
|
*/
|
||||||
@@ -9,6 +9,7 @@
|
|||||||
// @ts-nocheck
|
// @ts-nocheck
|
||||||
|
|
||||||
import { ReaderFragment } from 'relay-runtime';
|
import { ReaderFragment } from 'relay-runtime';
|
||||||
|
export type Role = "ADMIN" | "MEMBER" | "OWNER" | "VIEWER";
|
||||||
export type UserAuthMethod = "PASSWORD" | "SAML";
|
export type UserAuthMethod = "PASSWORD" | "SAML";
|
||||||
import { FragmentRefs } from "relay-runtime";
|
import { FragmentRefs } from "relay-runtime";
|
||||||
export type MembersSettingsTabMembershipsFragment$data = {
|
export type MembersSettingsTabMembershipsFragment$data = {
|
||||||
@@ -22,7 +23,7 @@ export type MembersSettingsTabMembershipsFragment$data = {
|
|||||||
readonly emailAddress: string;
|
readonly emailAddress: string;
|
||||||
readonly fullName: string;
|
readonly fullName: string;
|
||||||
readonly id: string;
|
readonly id: string;
|
||||||
readonly role: string;
|
readonly role: Role;
|
||||||
};
|
};
|
||||||
}>;
|
}>;
|
||||||
readonly totalCount: number;
|
readonly totalCount: number;
|
||||||
|
|||||||
Reference in New Issue
Block a user