@pexip-engage-public/graphql 1.1.11 → 1.1.12
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 +7 -0
- package/dist/graphql-env.d.ts +27 -1
- package/dist/graphql-env.d.ts.map +1 -1
- package/dist/graphql-env.js +30 -1
- package/dist/graphql-env.js.map +1 -1
- package/dist/schema.d.ts +3 -1
- package/dist/schema.d.ts.map +1 -1
- package/package.json +2 -2
- package/src/graphql-env.ts +30 -1
- package/src/schema.ts +4 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pexip-engage-public/graphql",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.12",
|
|
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"
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"@graphql-inspector/cli": "^5.0.8",
|
|
47
47
|
"typescript": "^5.9.2",
|
|
48
48
|
"@pexip-engage/tsconfig": "0.1.1",
|
|
49
|
-
"eslint-config-pexip-engage": "1.1.
|
|
49
|
+
"eslint-config-pexip-engage": "1.1.30"
|
|
50
50
|
},
|
|
51
51
|
"volta": {
|
|
52
52
|
"extends": "../../package.json"
|
package/src/graphql-env.ts
CHANGED
|
@@ -6749,6 +6749,18 @@ const introspection = {
|
|
|
6749
6749
|
},
|
|
6750
6750
|
"args": [],
|
|
6751
6751
|
"isDeprecated": false
|
|
6752
|
+
},
|
|
6753
|
+
{
|
|
6754
|
+
"name": "uuid",
|
|
6755
|
+
"type": {
|
|
6756
|
+
"kind": "NON_NULL",
|
|
6757
|
+
"ofType": {
|
|
6758
|
+
"kind": "SCALAR",
|
|
6759
|
+
"name": "String"
|
|
6760
|
+
}
|
|
6761
|
+
},
|
|
6762
|
+
"args": [],
|
|
6763
|
+
"isDeprecated": false
|
|
6752
6764
|
}
|
|
6753
6765
|
],
|
|
6754
6766
|
"interfaces": []
|
|
@@ -6936,6 +6948,10 @@ const introspection = {
|
|
|
6936
6948
|
"name": "DISABLED",
|
|
6937
6949
|
"isDeprecated": false
|
|
6938
6950
|
},
|
|
6951
|
+
{
|
|
6952
|
+
"name": "FAILED",
|
|
6953
|
+
"isDeprecated": false
|
|
6954
|
+
},
|
|
6939
6955
|
{
|
|
6940
6956
|
"name": "INVALID_RECEIVER",
|
|
6941
6957
|
"isDeprecated": false
|
|
@@ -6945,7 +6961,7 @@ const introspection = {
|
|
|
6945
6961
|
"isDeprecated": false
|
|
6946
6962
|
},
|
|
6947
6963
|
{
|
|
6948
|
-
"name": "
|
|
6964
|
+
"name": "SENT",
|
|
6949
6965
|
"isDeprecated": false
|
|
6950
6966
|
},
|
|
6951
6967
|
{
|
|
@@ -34477,6 +34493,19 @@ const introspection = {
|
|
|
34477
34493
|
}
|
|
34478
34494
|
}
|
|
34479
34495
|
},
|
|
34496
|
+
{
|
|
34497
|
+
"name": "event",
|
|
34498
|
+
"type": {
|
|
34499
|
+
"kind": "LIST",
|
|
34500
|
+
"ofType": {
|
|
34501
|
+
"kind": "NON_NULL",
|
|
34502
|
+
"ofType": {
|
|
34503
|
+
"kind": "SCALAR",
|
|
34504
|
+
"name": "String"
|
|
34505
|
+
}
|
|
34506
|
+
}
|
|
34507
|
+
}
|
|
34508
|
+
},
|
|
34480
34509
|
{
|
|
34481
34510
|
"name": "first",
|
|
34482
34511
|
"type": {
|
package/src/schema.ts
CHANGED
|
@@ -965,6 +965,7 @@ export type Communication = {
|
|
|
965
965
|
resourceVersion?: Maybe<Scalars['Int']['output']>;
|
|
966
966
|
scheduledAt: Scalars['ISO8601']['output'];
|
|
967
967
|
status: CommunicationStatus;
|
|
968
|
+
uuid: Scalars['String']['output'];
|
|
968
969
|
};
|
|
969
970
|
|
|
970
971
|
export type CommunicationChannel =
|
|
@@ -1005,9 +1006,10 @@ export type CommunicationSort = {
|
|
|
1005
1006
|
export type CommunicationStatus =
|
|
1006
1007
|
| 'DELIVERED'
|
|
1007
1008
|
| 'DISABLED'
|
|
1009
|
+
| 'FAILED'
|
|
1008
1010
|
| 'INVALID_RECEIVER'
|
|
1009
1011
|
| 'NO_RECEIVER'
|
|
1010
|
-
| '
|
|
1012
|
+
| 'SENT'
|
|
1011
1013
|
| 'UNKNOWN';
|
|
1012
1014
|
|
|
1013
1015
|
export type CommunicationType =
|
|
@@ -5491,6 +5493,7 @@ export type QueryWebhookDeliveriesArgs = {
|
|
|
5491
5493
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
5492
5494
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
5493
5495
|
correlationId?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
5496
|
+
event?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
5494
5497
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
5495
5498
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
5496
5499
|
resourceId?: InputMaybe<Array<Scalars['String']['input']>>;
|