@pexip-engage-public/graphql 1.0.77 → 1.1.0
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.
- package/CHANGELOG.md +12 -0
- package/dist/graphql-env.d.ts +32 -0
- package/dist/graphql-env.d.ts.map +1 -1
- package/dist/graphql-env.js +36 -0
- package/dist/graphql-env.js.map +1 -1
- package/dist/schema.d.ts +4 -0
- package/dist/schema.d.ts.map +1 -1
- package/package.json +5 -5
- package/src/graphql-env.ts +36 -0
- package/src/schema.ts +4 -0
package/dist/schema.d.ts
CHANGED
|
@@ -1780,6 +1780,7 @@ export type FileSort = {
|
|
|
1780
1780
|
export type Form = {
|
|
1781
1781
|
createdAt: Scalars['ISO8601']['output'];
|
|
1782
1782
|
deletedAt?: Maybe<Scalars['ISO8601']['output']>;
|
|
1783
|
+
externalId?: Maybe<Scalars['String']['output']>;
|
|
1783
1784
|
id: Scalars['ID']['output'];
|
|
1784
1785
|
name: Scalars['String']['output'];
|
|
1785
1786
|
questions: Array<Question>;
|
|
@@ -1795,6 +1796,7 @@ export type FormConnection = {
|
|
|
1795
1796
|
totalCount: Scalars['Int']['output'];
|
|
1796
1797
|
};
|
|
1797
1798
|
export type FormCreateInput = {
|
|
1799
|
+
externalId?: InputMaybe<Scalars['String']['input']>;
|
|
1798
1800
|
name: Scalars['String']['input'];
|
|
1799
1801
|
questions?: InputMaybe<Array<QuestionPutInput>>;
|
|
1800
1802
|
type: FormType;
|
|
@@ -1804,6 +1806,7 @@ export type FormEdge = {
|
|
|
1804
1806
|
node: Form;
|
|
1805
1807
|
};
|
|
1806
1808
|
export type FormPatchInput = {
|
|
1809
|
+
externalId?: InputMaybe<Scalars['String']['input']>;
|
|
1807
1810
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
1808
1811
|
questions?: InputMaybe<Array<QuestionPutInput>>;
|
|
1809
1812
|
type?: InputMaybe<FormType>;
|
|
@@ -3908,6 +3911,7 @@ export type QueryFormArgs = {
|
|
|
3908
3911
|
export type QueryFormsArgs = {
|
|
3909
3912
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
3910
3913
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
3914
|
+
externalId?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
3911
3915
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
3912
3916
|
id?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
3913
3917
|
last?: InputMaybe<Scalars['Int']['input']>;
|