@pexip-engage-public/graphql 1.5.2 → 1.6.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 +6 -0
- package/dist/graphql-env.d.ts +49 -11
- package/dist/graphql-env.d.ts.map +1 -1
- package/dist/graphql-env.js +57 -12
- package/dist/graphql-env.js.map +1 -1
- package/dist/graphql.d.ts +49 -11
- package/dist/graphql.d.ts.map +1 -1
- package/dist/schema.d.ts +9 -1
- package/dist/schema.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/graphql-env.ts +57 -12
- package/src/schema.ts +12 -1
package/package.json
CHANGED
package/src/graphql-env.ts
CHANGED
|
@@ -37749,6 +37749,26 @@ const introspection = {
|
|
|
37749
37749
|
],
|
|
37750
37750
|
"isDeprecated": false
|
|
37751
37751
|
},
|
|
37752
|
+
{
|
|
37753
|
+
"name": "webhookDeliveryPayload",
|
|
37754
|
+
"type": {
|
|
37755
|
+
"kind": "OBJECT",
|
|
37756
|
+
"name": "WebhookDeliveryPayload"
|
|
37757
|
+
},
|
|
37758
|
+
"args": [
|
|
37759
|
+
{
|
|
37760
|
+
"name": "webhookId",
|
|
37761
|
+
"type": {
|
|
37762
|
+
"kind": "NON_NULL",
|
|
37763
|
+
"ofType": {
|
|
37764
|
+
"kind": "SCALAR",
|
|
37765
|
+
"name": "String"
|
|
37766
|
+
}
|
|
37767
|
+
}
|
|
37768
|
+
}
|
|
37769
|
+
],
|
|
37770
|
+
"isDeprecated": false
|
|
37771
|
+
},
|
|
37752
37772
|
{
|
|
37753
37773
|
"name": "workLocations",
|
|
37754
37774
|
"type": {
|
|
@@ -46300,18 +46320,6 @@ const introspection = {
|
|
|
46300
46320
|
"args": [],
|
|
46301
46321
|
"isDeprecated": false
|
|
46302
46322
|
},
|
|
46303
|
-
{
|
|
46304
|
-
"name": "requestData",
|
|
46305
|
-
"type": {
|
|
46306
|
-
"kind": "NON_NULL",
|
|
46307
|
-
"ofType": {
|
|
46308
|
-
"kind": "SCALAR",
|
|
46309
|
-
"name": "String"
|
|
46310
|
-
}
|
|
46311
|
-
},
|
|
46312
|
-
"args": [],
|
|
46313
|
-
"isDeprecated": false
|
|
46314
|
-
},
|
|
46315
46323
|
{
|
|
46316
46324
|
"name": "resourceId",
|
|
46317
46325
|
"type": {
|
|
@@ -46482,6 +46490,43 @@ const introspection = {
|
|
|
46482
46490
|
],
|
|
46483
46491
|
"interfaces": []
|
|
46484
46492
|
},
|
|
46493
|
+
{
|
|
46494
|
+
"kind": "OBJECT",
|
|
46495
|
+
"name": "WebhookDeliveryPayload",
|
|
46496
|
+
"fields": [
|
|
46497
|
+
{
|
|
46498
|
+
"name": "requestData",
|
|
46499
|
+
"type": {
|
|
46500
|
+
"kind": "NON_NULL",
|
|
46501
|
+
"ofType": {
|
|
46502
|
+
"kind": "SCALAR",
|
|
46503
|
+
"name": "String"
|
|
46504
|
+
}
|
|
46505
|
+
},
|
|
46506
|
+
"args": [],
|
|
46507
|
+
"isDeprecated": false
|
|
46508
|
+
},
|
|
46509
|
+
{
|
|
46510
|
+
"name": "responseData",
|
|
46511
|
+
"type": {
|
|
46512
|
+
"kind": "SCALAR",
|
|
46513
|
+
"name": "String"
|
|
46514
|
+
},
|
|
46515
|
+
"args": [],
|
|
46516
|
+
"isDeprecated": false
|
|
46517
|
+
},
|
|
46518
|
+
{
|
|
46519
|
+
"name": "responseHeaders",
|
|
46520
|
+
"type": {
|
|
46521
|
+
"kind": "SCALAR",
|
|
46522
|
+
"name": "String"
|
|
46523
|
+
},
|
|
46524
|
+
"args": [],
|
|
46525
|
+
"isDeprecated": false
|
|
46526
|
+
}
|
|
46527
|
+
],
|
|
46528
|
+
"interfaces": []
|
|
46529
|
+
},
|
|
46485
46530
|
{
|
|
46486
46531
|
"kind": "ENUM",
|
|
46487
46532
|
"name": "WebhookEventType",
|
package/src/schema.ts
CHANGED
|
@@ -4859,6 +4859,7 @@ export type Query = {
|
|
|
4859
4859
|
webhookConfigurations: Array<WebhookConfiguration>;
|
|
4860
4860
|
webhookDeliveries: WebhookDeliveryConnection;
|
|
4861
4861
|
webhookDelivery: WebhookDelivery;
|
|
4862
|
+
webhookDeliveryPayload?: Maybe<WebhookDeliveryPayload>;
|
|
4862
4863
|
workLocations: Array<WorkLocationEntry>;
|
|
4863
4864
|
};
|
|
4864
4865
|
|
|
@@ -6011,6 +6012,11 @@ export type QueryWebhookDeliveryArgs = {
|
|
|
6011
6012
|
};
|
|
6012
6013
|
|
|
6013
6014
|
|
|
6015
|
+
export type QueryWebhookDeliveryPayloadArgs = {
|
|
6016
|
+
webhookId: Scalars['String']['input'];
|
|
6017
|
+
};
|
|
6018
|
+
|
|
6019
|
+
|
|
6014
6020
|
export type QueryWorkLocationsArgs = {
|
|
6015
6021
|
employeeIds: Array<Scalars['ID']['input']>;
|
|
6016
6022
|
from: Scalars['ISO8601']['input'];
|
|
@@ -7370,7 +7376,6 @@ export type WebhookDelivery = {
|
|
|
7370
7376
|
duration?: Maybe<Scalars['Int']['output']>;
|
|
7371
7377
|
error?: Maybe<Scalars['String']['output']>;
|
|
7372
7378
|
event: Scalars['String']['output'];
|
|
7373
|
-
requestData: Scalars['String']['output'];
|
|
7374
7379
|
resourceId: Scalars['String']['output'];
|
|
7375
7380
|
responseData?: Maybe<Scalars['String']['output']>;
|
|
7376
7381
|
responseHeaders?: Maybe<Scalars['String']['output']>;
|
|
@@ -7392,6 +7397,12 @@ export type WebhookDeliveryEdge = {
|
|
|
7392
7397
|
node: WebhookDelivery;
|
|
7393
7398
|
};
|
|
7394
7399
|
|
|
7400
|
+
export type WebhookDeliveryPayload = {
|
|
7401
|
+
requestData: Scalars['String']['output'];
|
|
7402
|
+
responseData?: Maybe<Scalars['String']['output']>;
|
|
7403
|
+
responseHeaders?: Maybe<Scalars['String']['output']>;
|
|
7404
|
+
};
|
|
7405
|
+
|
|
7395
7406
|
export type WebhookEventType =
|
|
7396
7407
|
| 'appointment_create'
|
|
7397
7408
|
| 'appointment_update'
|