@pexip-engage-public/graphql 1.3.2 → 1.3.3-canary-20251127171339

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.3.2",
3
+ "version": "1.3.3-canary-20251127171339",
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"
@@ -33,20 +33,20 @@
33
33
  "CHANGELOG.md"
34
34
  ],
35
35
  "dependencies": {
36
- "gql.tada": "^1.8.13",
36
+ "gql.tada": "^1.9.0",
37
37
  "graphql": "16.11.0",
38
- "graphql-request": "^7.3.1",
38
+ "graphql-request": "^7.3.4",
39
39
  "lz-string": "^1.5.0",
40
40
  "zod": "^3.25.76",
41
- "@pexip-engage-public/utils": "0.1.48"
41
+ "@pexip-engage-public/utils": "0.1.49-canary-20251127171339"
42
42
  },
43
43
  "devDependencies": {
44
- "@graphql-codegen/cli": "^6.0.1",
45
- "@graphql-codegen/typescript": "^5.0.2",
44
+ "@graphql-codegen/cli": "^6.1.0",
45
+ "@graphql-codegen/typescript": "^5.0.5",
46
46
  "@graphql-inspector/cli": "^6.0.3",
47
47
  "typescript": "^5.9.3",
48
48
  "@pexip-engage/tsconfig": "0.1.1",
49
- "eslint-config-pexip-engage": "1.2.0"
49
+ "eslint-config-pexip-engage": "1.2.1-canary-20251127171339"
50
50
  },
51
51
  "volta": {
52
52
  "extends": "../../package.json"
@@ -3176,6 +3176,44 @@ const introspection = {
3176
3176
  ],
3177
3177
  "interfaces": []
3178
3178
  },
3179
+ {
3180
+ "kind": "INPUT_OBJECT",
3181
+ "name": "AppointmentMeetingTypeUpdateInput",
3182
+ "inputFields": [
3183
+ {
3184
+ "name": "location",
3185
+ "type": {
3186
+ "kind": "INPUT_OBJECT",
3187
+ "name": "LocationInput"
3188
+ }
3189
+ },
3190
+ {
3191
+ "name": "meetingType",
3192
+ "type": {
3193
+ "kind": "NON_NULL",
3194
+ "ofType": {
3195
+ "kind": "ENUM",
3196
+ "name": "MeetingType"
3197
+ }
3198
+ }
3199
+ },
3200
+ {
3201
+ "name": "messageForCustomer",
3202
+ "type": {
3203
+ "kind": "SCALAR",
3204
+ "name": "String"
3205
+ }
3206
+ },
3207
+ {
3208
+ "name": "userCommunication",
3209
+ "type": {
3210
+ "kind": "INPUT_OBJECT",
3211
+ "name": "AppointmentUserCommunicationInput"
3212
+ }
3213
+ }
3214
+ ],
3215
+ "isOneOf": false
3216
+ },
3179
3217
  {
3180
3218
  "kind": "OBJECT",
3181
3219
  "name": "AppointmentParticipant",
@@ -26201,6 +26239,39 @@ const introspection = {
26201
26239
  ],
26202
26240
  "isDeprecated": false
26203
26241
  },
26242
+ {
26243
+ "name": "updateAppointmentMeetingType",
26244
+ "type": {
26245
+ "kind": "NON_NULL",
26246
+ "ofType": {
26247
+ "kind": "OBJECT",
26248
+ "name": "Appointment"
26249
+ }
26250
+ },
26251
+ "args": [
26252
+ {
26253
+ "name": "id",
26254
+ "type": {
26255
+ "kind": "NON_NULL",
26256
+ "ofType": {
26257
+ "kind": "SCALAR",
26258
+ "name": "ID"
26259
+ }
26260
+ }
26261
+ },
26262
+ {
26263
+ "name": "input",
26264
+ "type": {
26265
+ "kind": "NON_NULL",
26266
+ "ofType": {
26267
+ "kind": "INPUT_OBJECT",
26268
+ "name": "AppointmentMeetingTypeUpdateInput"
26269
+ }
26270
+ }
26271
+ }
26272
+ ],
26273
+ "isDeprecated": false
26274
+ },
26204
26275
  {
26205
26276
  "name": "uploadSamlIdentityProviderMetadataByFile",
26206
26277
  "type": {
package/src/schema.ts CHANGED
@@ -464,6 +464,13 @@ export type AppointmentLatestPossibleEnterpriseSetting = {
464
464
  value: Scalars['Int']['output'];
465
465
  };
466
466
 
467
+ export type AppointmentMeetingTypeUpdateInput = {
468
+ location?: InputMaybe<LocationInput>;
469
+ meetingType: MeetingType;
470
+ messageForCustomer?: InputMaybe<Scalars['String']['input']>;
471
+ userCommunication?: InputMaybe<AppointmentUserCommunicationInput>;
472
+ };
473
+
467
474
  export type AppointmentParticipant = {
468
475
  appointment: Appointment;
469
476
  appointmentId: Scalars['ID']['output'];
@@ -3294,6 +3301,7 @@ export type Mutation = {
3294
3301
  syncMicrosoftDynamicsIntegrationCustomAttributes: Scalars['Boolean']['output'];
3295
3302
  testWebhookConfiguration: WebhookDelivery;
3296
3303
  toggleRedirectToSaml: Scalars['Boolean']['output'];
3304
+ updateAppointmentMeetingType: Appointment;
3297
3305
  uploadSamlIdentityProviderMetadataByFile: SamlIntegration;
3298
3306
  uploadSamlIdentityProviderMetadataByUrl: SamlIntegration;
3299
3307
  upsertMicrosoftGraphAPIEmailConfiguration: MicrosoftGraphApiEmailProviderConfiguration;
@@ -4232,6 +4240,12 @@ export type MutationToggleRedirectToSamlArgs = {
4232
4240
  };
4233
4241
 
4234
4242
 
4243
+ export type MutationUpdateAppointmentMeetingTypeArgs = {
4244
+ id: Scalars['ID']['input'];
4245
+ input: AppointmentMeetingTypeUpdateInput;
4246
+ };
4247
+
4248
+
4235
4249
  export type MutationUploadSamlIdentityProviderMetadataByFileArgs = {
4236
4250
  metadataXml: Scalars['String']['input'];
4237
4251
  };