@pexip-engage-public/graphql 1.0.76 → 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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pexip-engage-public/graphql",
3
- "version": "1.0.76",
3
+ "version": "1.1.0",
4
4
  "homepage": "https://github.com/skedify/frontend-mono/tree/develop/packages/graphql#readme",
5
5
  "bugs": {
6
6
  "url": "https://github.com/skedify/frontend-mono/issues"
@@ -37,8 +37,8 @@
37
37
  "graphql": "^16.11.0",
38
38
  "graphql-request": "^7.2.0",
39
39
  "lz-string": "^1.5.0",
40
- "zod": "^3.25.57",
41
- "@pexip-engage/utils": "0.1.41"
40
+ "zod": "^3.25.64",
41
+ "@pexip-engage/utils": "0.1.43"
42
42
  },
43
43
  "devDependencies": {
44
44
  "@graphql-codegen/cli": "^5.0.7",
@@ -46,7 +46,7 @@
46
46
  "@graphql-inspector/cli": "^5.0.8",
47
47
  "typescript": "^5.8.3",
48
48
  "@pexip-engage/tsconfig": "0.1.1",
49
- "eslint-config-pexip-engage": "1.1.19"
49
+ "eslint-config-pexip-engage": "1.1.21"
50
50
  },
51
51
  "volta": {
52
52
  "extends": "../../package.json"
@@ -13977,6 +13977,15 @@ const introspection = {
13977
13977
  "args": [],
13978
13978
  "isDeprecated": false
13979
13979
  },
13980
+ {
13981
+ "name": "externalId",
13982
+ "type": {
13983
+ "kind": "SCALAR",
13984
+ "name": "String"
13985
+ },
13986
+ "args": [],
13987
+ "isDeprecated": false
13988
+ },
13980
13989
  {
13981
13990
  "name": "id",
13982
13991
  "type": {
@@ -14107,6 +14116,13 @@ const introspection = {
14107
14116
  "kind": "INPUT_OBJECT",
14108
14117
  "name": "FormCreateInput",
14109
14118
  "inputFields": [
14119
+ {
14120
+ "name": "externalId",
14121
+ "type": {
14122
+ "kind": "SCALAR",
14123
+ "name": "String"
14124
+ }
14125
+ },
14110
14126
  {
14111
14127
  "name": "name",
14112
14128
  "type": {
@@ -14178,6 +14194,13 @@ const introspection = {
14178
14194
  "kind": "INPUT_OBJECT",
14179
14195
  "name": "FormPatchInput",
14180
14196
  "inputFields": [
14197
+ {
14198
+ "name": "externalId",
14199
+ "type": {
14200
+ "kind": "SCALAR",
14201
+ "name": "String"
14202
+ }
14203
+ },
14181
14204
  {
14182
14205
  "name": "name",
14183
14206
  "type": {
@@ -30041,6 +30064,19 @@ const introspection = {
30041
30064
  "name": "String"
30042
30065
  }
30043
30066
  },
30067
+ {
30068
+ "name": "externalId",
30069
+ "type": {
30070
+ "kind": "LIST",
30071
+ "ofType": {
30072
+ "kind": "NON_NULL",
30073
+ "ofType": {
30074
+ "kind": "SCALAR",
30075
+ "name": "String"
30076
+ }
30077
+ }
30078
+ }
30079
+ },
30044
30080
  {
30045
30081
  "name": "first",
30046
30082
  "type": {
package/src/schema.ts CHANGED
@@ -2106,6 +2106,7 @@ export type FileSort = {
2106
2106
  export type Form = {
2107
2107
  createdAt: Scalars['ISO8601']['output'];
2108
2108
  deletedAt?: Maybe<Scalars['ISO8601']['output']>;
2109
+ externalId?: Maybe<Scalars['String']['output']>;
2109
2110
  id: Scalars['ID']['output'];
2110
2111
  name: Scalars['String']['output'];
2111
2112
  questions: Array<Question>;
@@ -2125,6 +2126,7 @@ export type FormConnection = {
2125
2126
  };
2126
2127
 
2127
2128
  export type FormCreateInput = {
2129
+ externalId?: InputMaybe<Scalars['String']['input']>;
2128
2130
  name: Scalars['String']['input'];
2129
2131
  questions?: InputMaybe<Array<QuestionPutInput>>;
2130
2132
  type: FormType;
@@ -2136,6 +2138,7 @@ export type FormEdge = {
2136
2138
  };
2137
2139
 
2138
2140
  export type FormPatchInput = {
2141
+ externalId?: InputMaybe<Scalars['String']['input']>;
2139
2142
  name?: InputMaybe<Scalars['String']['input']>;
2140
2143
  questions?: InputMaybe<Array<QuestionPutInput>>;
2141
2144
  type?: InputMaybe<FormType>;
@@ -4898,6 +4901,7 @@ export type QueryFormArgs = {
4898
4901
  export type QueryFormsArgs = {
4899
4902
  after?: InputMaybe<Scalars['String']['input']>;
4900
4903
  before?: InputMaybe<Scalars['String']['input']>;
4904
+ externalId?: InputMaybe<Array<Scalars['String']['input']>>;
4901
4905
  first?: InputMaybe<Scalars['Int']['input']>;
4902
4906
  id?: InputMaybe<Array<Scalars['ID']['input']>>;
4903
4907
  last?: InputMaybe<Scalars['Int']['input']>;