@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/CHANGELOG.md +8 -0
- package/dist/graphql-env.d.ts +61 -0
- package/dist/graphql-env.d.ts.map +1 -1
- package/dist/graphql-env.js +71 -0
- package/dist/graphql-env.js.map +1 -1
- package/dist/schema.d.ts +11 -0
- package/dist/schema.d.ts.map +1 -1
- package/package.json +7 -7
- package/src/graphql-env.ts +71 -0
- package/src/schema.ts +14 -0
package/dist/schema.d.ts
CHANGED
|
@@ -426,6 +426,12 @@ export type AppointmentLatestPossibleEnterpriseSetting = {
|
|
|
426
426
|
/** The latest possible time from now an appointment can be booked. */
|
|
427
427
|
value: Scalars['Int']['output'];
|
|
428
428
|
};
|
|
429
|
+
export type AppointmentMeetingTypeUpdateInput = {
|
|
430
|
+
location?: InputMaybe<LocationInput>;
|
|
431
|
+
meetingType: MeetingType;
|
|
432
|
+
messageForCustomer?: InputMaybe<Scalars['String']['input']>;
|
|
433
|
+
userCommunication?: InputMaybe<AppointmentUserCommunicationInput>;
|
|
434
|
+
};
|
|
429
435
|
export type AppointmentParticipant = {
|
|
430
436
|
appointment: Appointment;
|
|
431
437
|
appointmentId: Scalars['ID']['output'];
|
|
@@ -2738,6 +2744,7 @@ export type Mutation = {
|
|
|
2738
2744
|
syncMicrosoftDynamicsIntegrationCustomAttributes: Scalars['Boolean']['output'];
|
|
2739
2745
|
testWebhookConfiguration: WebhookDelivery;
|
|
2740
2746
|
toggleRedirectToSaml: Scalars['Boolean']['output'];
|
|
2747
|
+
updateAppointmentMeetingType: Appointment;
|
|
2741
2748
|
uploadSamlIdentityProviderMetadataByFile: SamlIntegration;
|
|
2742
2749
|
uploadSamlIdentityProviderMetadataByUrl: SamlIntegration;
|
|
2743
2750
|
upsertMicrosoftGraphAPIEmailConfiguration: MicrosoftGraphApiEmailProviderConfiguration;
|
|
@@ -3342,6 +3349,10 @@ export type MutationTestWebhookConfigurationArgs = {
|
|
|
3342
3349
|
export type MutationToggleRedirectToSamlArgs = {
|
|
3343
3350
|
shouldRedirectToSaml: Scalars['Boolean']['input'];
|
|
3344
3351
|
};
|
|
3352
|
+
export type MutationUpdateAppointmentMeetingTypeArgs = {
|
|
3353
|
+
id: Scalars['ID']['input'];
|
|
3354
|
+
input: AppointmentMeetingTypeUpdateInput;
|
|
3355
|
+
};
|
|
3345
3356
|
export type MutationUploadSamlIdentityProviderMetadataByFileArgs = {
|
|
3346
3357
|
metadataXml: Scalars['String']['input'];
|
|
3347
3358
|
};
|