@pexip-engage-public/graphql 1.6.6 → 1.6.7

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.6.6",
3
+ "version": "1.6.7",
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"
@@ -22452,6 +22452,13 @@ const introspection = {
22452
22452
  "name": "AppointmentCreateInput"
22453
22453
  }
22454
22454
  }
22455
+ },
22456
+ {
22457
+ "name": "forceTimeSlotValidation",
22458
+ "type": {
22459
+ "kind": "SCALAR",
22460
+ "name": "Boolean"
22461
+ }
22455
22462
  }
22456
22463
  ],
22457
22464
  "isDeprecated": false
@@ -26579,6 +26586,13 @@ const introspection = {
26579
26586
  }
26580
26587
  }
26581
26588
  },
26589
+ {
26590
+ "name": "forceTimeSlotValidation",
26591
+ "type": {
26592
+ "kind": "SCALAR",
26593
+ "name": "Boolean"
26594
+ }
26595
+ },
26582
26596
  {
26583
26597
  "name": "id",
26584
26598
  "type": {
@@ -27231,6 +27245,13 @@ const introspection = {
27231
27245
  }
27232
27246
  }
27233
27247
  },
27248
+ {
27249
+ "name": "forceTimeSlotValidation",
27250
+ "type": {
27251
+ "kind": "SCALAR",
27252
+ "name": "Boolean"
27253
+ }
27254
+ },
27234
27255
  {
27235
27256
  "name": "id",
27236
27257
  "type": {
@@ -27348,62 +27369,6 @@ const introspection = {
27348
27369
  ],
27349
27370
  "isDeprecated": false
27350
27371
  },
27351
- {
27352
- "name": "scheduleAppointment",
27353
- "type": {
27354
- "kind": "NON_NULL",
27355
- "ofType": {
27356
- "kind": "OBJECT",
27357
- "name": "Appointment"
27358
- }
27359
- },
27360
- "args": [
27361
- {
27362
- "name": "appointmentCreateInput",
27363
- "type": {
27364
- "kind": "NON_NULL",
27365
- "ofType": {
27366
- "kind": "INPUT_OBJECT",
27367
- "name": "AppointmentCreateInput"
27368
- }
27369
- }
27370
- }
27371
- ],
27372
- "isDeprecated": false
27373
- },
27374
- {
27375
- "name": "scheduleRescheduleAppointment",
27376
- "type": {
27377
- "kind": "NON_NULL",
27378
- "ofType": {
27379
- "kind": "OBJECT",
27380
- "name": "Appointment"
27381
- }
27382
- },
27383
- "args": [
27384
- {
27385
- "name": "appointmentRescheduleInput",
27386
- "type": {
27387
- "kind": "NON_NULL",
27388
- "ofType": {
27389
- "kind": "INPUT_OBJECT",
27390
- "name": "AppointmentRescheduleInput"
27391
- }
27392
- }
27393
- },
27394
- {
27395
- "name": "id",
27396
- "type": {
27397
- "kind": "NON_NULL",
27398
- "ofType": {
27399
- "kind": "SCALAR",
27400
- "name": "ID"
27401
- }
27402
- }
27403
- }
27404
- ],
27405
- "isDeprecated": false
27406
- },
27407
27372
  {
27408
27373
  "name": "sendAIMessage",
27409
27374
  "type": {
package/src/schema.ts CHANGED
@@ -3446,8 +3446,6 @@ export type Mutation = {
3446
3446
  * - The mutation returns the deleted original unavailability
3447
3447
  */
3448
3448
  revertUnavailability: Array<Unavailability>;
3449
- scheduleAppointment: Appointment;
3450
- scheduleRescheduleAppointment: Appointment;
3451
3449
  sendAIMessage: AiMessage;
3452
3450
  startAvailabilityInsights: Scalars['Boolean']['output'];
3453
3451
  syncFutureEventsToExternalCalendar: Scalars['Boolean']['output'];
@@ -3515,6 +3513,7 @@ export type MutationCreateAppliedTemplateArgs = {
3515
3513
 
3516
3514
  export type MutationCreateAppointmentArgs = {
3517
3515
  appointmentCreateInput: AppointmentCreateInput;
3516
+ forceTimeSlotValidation?: InputMaybe<Scalars['Boolean']['input']>;
3518
3517
  };
3519
3518
 
3520
3519
 
@@ -4269,6 +4268,7 @@ export type MutationPutSubjectSchedulingSettingsArgs = {
4269
4268
 
4270
4269
  export type MutationReassignAppointmentArgs = {
4271
4270
  appointmentReassignInput: AppointmentReassignInput;
4271
+ forceTimeSlotValidation?: InputMaybe<Scalars['Boolean']['input']>;
4272
4272
  id: Scalars['ID']['input'];
4273
4273
  };
4274
4274
 
@@ -4390,6 +4390,7 @@ export type MutationRequestRescheduleAppointmentArgs = {
4390
4390
 
4391
4391
  export type MutationRescheduleAppointmentArgs = {
4392
4392
  appointmentRescheduleInput: AppointmentRescheduleInput;
4393
+ forceTimeSlotValidation?: InputMaybe<Scalars['Boolean']['input']>;
4393
4394
  id: Scalars['ID']['input'];
4394
4395
  };
4395
4396
 
@@ -4414,17 +4415,6 @@ export type MutationRevertUnavailabilityArgs = {
4414
4415
  };
4415
4416
 
4416
4417
 
4417
- export type MutationScheduleAppointmentArgs = {
4418
- appointmentCreateInput: AppointmentCreateInput;
4419
- };
4420
-
4421
-
4422
- export type MutationScheduleRescheduleAppointmentArgs = {
4423
- appointmentRescheduleInput: AppointmentRescheduleInput;
4424
- id: Scalars['ID']['input'];
4425
- };
4426
-
4427
-
4428
4418
  export type MutationSendAiMessageArgs = {
4429
4419
  aiThreadId?: InputMaybe<Scalars['String']['input']>;
4430
4420
  input: AiMessageSendInput;