@pexip-engage-public/graphql 1.1.10 → 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/dist/schema.d.ts CHANGED
@@ -813,10 +813,13 @@ export type Communication = {
813
813
  eventType: Scalars['String']['output'];
814
814
  id: Scalars['ID']['output'];
815
815
  processedAt: Scalars['ISO8601']['output'];
816
+ provider: CommunicationProvider;
816
817
  resourceId: Scalars['Int']['output'];
817
818
  resourceType: CommunicationResourceType;
818
819
  resourceVersion?: Maybe<Scalars['Int']['output']>;
819
820
  scheduledAt: Scalars['ISO8601']['output'];
821
+ status: CommunicationStatus;
822
+ uuid: Scalars['String']['output'];
820
823
  };
821
824
  export type CommunicationChannel = 'EMAIL' | 'TEXT_MESSAGE';
822
825
  export type CommunicationEmailEnterpriseSetting = {
@@ -827,6 +830,7 @@ export type CommunicationEmailEnterpriseSetting = {
827
830
  /** The default (non-localized) email address that receives callback requests when there is no office or employee email address. */
828
831
  value?: Maybe<Scalars['String']['output']>;
829
832
  };
833
+ export type CommunicationProvider = 'MANDRILL' | 'MICROSOFT_GRAPH_API' | 'PRETEND' | 'SEND_GRID' | 'SMTP' | 'SPRYNG' | 'TWILIO' | 'UNKNOWN' | 'WEBHOOK';
830
834
  export type CommunicationReceiver = Customer | Employee | Enterprise | Office | {
831
835
  __typename?: "%other";
832
836
  };
@@ -835,6 +839,7 @@ export type CommunicationSort = {
835
839
  direction: SortDirection;
836
840
  field: SortableCommunicationFields;
837
841
  };
842
+ export type CommunicationStatus = 'DELIVERED' | 'DISABLED' | 'FAILED' | 'INVALID_RECEIVER' | 'NO_RECEIVER' | 'SENT' | 'UNKNOWN';
838
843
  export type CommunicationType = 'NOTIFICATION' | 'REMINDER';
839
844
  export type Customer = {
840
845
  anonymizedAt?: Maybe<Scalars['ISO8601']['output']>;
@@ -2498,6 +2503,7 @@ export type Mutation = {
2498
2503
  * that user will be reverted (as if you called revertUnavailability first, see its description).
2499
2504
  */
2500
2505
  createUnavailability: Unavailability;
2506
+ createUnavailabilityEvent: Unavailability;
2501
2507
  createUploadFileLink: FileCreateUploadLinkResult;
2502
2508
  createVPaaSMeeting: PexipVPaaSParticipant;
2503
2509
  createWebhookConfiguration: WebhookConfiguration;
@@ -2525,6 +2531,7 @@ export type Mutation = {
2525
2531
  deleteSubject: Subject;
2526
2532
  deleteSubjectGroup: SubjectGroup;
2527
2533
  deleteUnavailability: Unavailability;
2534
+ deleteUnavailabilityEvent: Unavailability;
2528
2535
  deleteWebhookConfiguration: WebhookConfiguration;
2529
2536
  deleteWebhookConfigurationHeaders: Array<WebhookConfigurationHeader>;
2530
2537
  disconnectExternalCalendarAccount: ExternalCalendarAccount;
@@ -2791,6 +2798,9 @@ export type MutationCreateUnavailabilityArgs = {
2791
2798
  input: UnavailabilityCreateInput;
2792
2799
  revertOverlap?: InputMaybe<Scalars['Boolean']['input']>;
2793
2800
  };
2801
+ export type MutationCreateUnavailabilityEventArgs = {
2802
+ input: UnavailabilityEventCreateInput;
2803
+ };
2794
2804
  export type MutationCreateUploadFileLinkArgs = {
2795
2805
  input: FileCreateUploadLinkInput;
2796
2806
  };
@@ -2869,6 +2879,9 @@ export type MutationDeleteSubjectGroupArgs = {
2869
2879
  export type MutationDeleteUnavailabilityArgs = {
2870
2880
  id: Scalars['ID']['input'];
2871
2881
  };
2882
+ export type MutationDeleteUnavailabilityEventArgs = {
2883
+ id: Scalars['ID']['input'];
2884
+ };
2872
2885
  export type MutationDeleteWebhookConfigurationArgs = {
2873
2886
  id: Scalars['ID']['input'];
2874
2887
  };
@@ -4355,6 +4368,7 @@ export type QueryWebhookDeliveriesArgs = {
4355
4368
  after?: InputMaybe<Scalars['String']['input']>;
4356
4369
  before?: InputMaybe<Scalars['String']['input']>;
4357
4370
  correlationId?: InputMaybe<Array<Scalars['String']['input']>>;
4371
+ event?: InputMaybe<Array<Scalars['String']['input']>>;
4358
4372
  first?: InputMaybe<Scalars['Int']['input']>;
4359
4373
  last?: InputMaybe<Scalars['Int']['input']>;
4360
4374
  resourceId?: InputMaybe<Array<Scalars['String']['input']>>;
@@ -5118,6 +5132,7 @@ export type UiFeatureTogglesEnterpriseSetting = {
5118
5132
  value: Array<UiFeatureToggleEnterpriseSettingValue>;
5119
5133
  };
5120
5134
  export type Unavailability = {
5135
+ allDay: Scalars['Boolean']['output'];
5121
5136
  createdAt: Scalars['ISO8601']['output'];
5122
5137
  employee: Employee;
5123
5138
  /** End time of unavailability. */
@@ -5149,6 +5164,11 @@ export type UnavailabilityEdge = {
5149
5164
  cursor: Scalars['String']['output'];
5150
5165
  node: Unavailability;
5151
5166
  };
5167
+ export type UnavailabilityEventCreateInput = {
5168
+ employeeId: Scalars['ID']['input'];
5169
+ end: Scalars['ISO8601']['input'];
5170
+ start: Scalars['ISO8601']['input'];
5171
+ };
5152
5172
  export type UnavailabilityRevertInput = {
5153
5173
  employeeId: Scalars['ID']['input'];
5154
5174
  /** Is inclusive. */