@pexip-engage-public/graphql 1.1.10-canary-20250806091052 → 1.1.11
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 +10 -2
- package/dist/graphql-env.d.ts +158 -0
- package/dist/graphql-env.d.ts.map +1 -1
- package/dist/graphql-env.js +191 -0
- package/dist/graphql-env.js.map +1 -1
- package/dist/schema.d.ts +18 -0
- package/dist/schema.d.ts.map +1 -1
- package/package.json +4 -4
- package/src/graphql-env.ts +191 -0
- package/src/schema.ts +40 -0
package/dist/schema.d.ts
CHANGED
|
@@ -813,10 +813,12 @@ 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;
|
|
820
822
|
};
|
|
821
823
|
export type CommunicationChannel = 'EMAIL' | 'TEXT_MESSAGE';
|
|
822
824
|
export type CommunicationEmailEnterpriseSetting = {
|
|
@@ -827,6 +829,7 @@ export type CommunicationEmailEnterpriseSetting = {
|
|
|
827
829
|
/** The default (non-localized) email address that receives callback requests when there is no office or employee email address. */
|
|
828
830
|
value?: Maybe<Scalars['String']['output']>;
|
|
829
831
|
};
|
|
832
|
+
export type CommunicationProvider = 'MANDRILL' | 'MICROSOFT_GRAPH_API' | 'PRETEND' | 'SEND_GRID' | 'SMTP' | 'SPRYNG' | 'TWILIO' | 'UNKNOWN' | 'WEBHOOK';
|
|
830
833
|
export type CommunicationReceiver = Customer | Employee | Enterprise | Office | {
|
|
831
834
|
__typename?: "%other";
|
|
832
835
|
};
|
|
@@ -835,6 +838,7 @@ export type CommunicationSort = {
|
|
|
835
838
|
direction: SortDirection;
|
|
836
839
|
field: SortableCommunicationFields;
|
|
837
840
|
};
|
|
841
|
+
export type CommunicationStatus = 'DELIVERED' | 'DISABLED' | 'INVALID_RECEIVER' | 'NO_RECEIVER' | 'SEND' | 'UNKNOWN';
|
|
838
842
|
export type CommunicationType = 'NOTIFICATION' | 'REMINDER';
|
|
839
843
|
export type Customer = {
|
|
840
844
|
anonymizedAt?: Maybe<Scalars['ISO8601']['output']>;
|
|
@@ -2498,6 +2502,7 @@ export type Mutation = {
|
|
|
2498
2502
|
* that user will be reverted (as if you called revertUnavailability first, see its description).
|
|
2499
2503
|
*/
|
|
2500
2504
|
createUnavailability: Unavailability;
|
|
2505
|
+
createUnavailabilityEvent: Unavailability;
|
|
2501
2506
|
createUploadFileLink: FileCreateUploadLinkResult;
|
|
2502
2507
|
createVPaaSMeeting: PexipVPaaSParticipant;
|
|
2503
2508
|
createWebhookConfiguration: WebhookConfiguration;
|
|
@@ -2525,6 +2530,7 @@ export type Mutation = {
|
|
|
2525
2530
|
deleteSubject: Subject;
|
|
2526
2531
|
deleteSubjectGroup: SubjectGroup;
|
|
2527
2532
|
deleteUnavailability: Unavailability;
|
|
2533
|
+
deleteUnavailabilityEvent: Unavailability;
|
|
2528
2534
|
deleteWebhookConfiguration: WebhookConfiguration;
|
|
2529
2535
|
deleteWebhookConfigurationHeaders: Array<WebhookConfigurationHeader>;
|
|
2530
2536
|
disconnectExternalCalendarAccount: ExternalCalendarAccount;
|
|
@@ -2791,6 +2797,9 @@ export type MutationCreateUnavailabilityArgs = {
|
|
|
2791
2797
|
input: UnavailabilityCreateInput;
|
|
2792
2798
|
revertOverlap?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2793
2799
|
};
|
|
2800
|
+
export type MutationCreateUnavailabilityEventArgs = {
|
|
2801
|
+
input: UnavailabilityEventCreateInput;
|
|
2802
|
+
};
|
|
2794
2803
|
export type MutationCreateUploadFileLinkArgs = {
|
|
2795
2804
|
input: FileCreateUploadLinkInput;
|
|
2796
2805
|
};
|
|
@@ -2869,6 +2878,9 @@ export type MutationDeleteSubjectGroupArgs = {
|
|
|
2869
2878
|
export type MutationDeleteUnavailabilityArgs = {
|
|
2870
2879
|
id: Scalars['ID']['input'];
|
|
2871
2880
|
};
|
|
2881
|
+
export type MutationDeleteUnavailabilityEventArgs = {
|
|
2882
|
+
id: Scalars['ID']['input'];
|
|
2883
|
+
};
|
|
2872
2884
|
export type MutationDeleteWebhookConfigurationArgs = {
|
|
2873
2885
|
id: Scalars['ID']['input'];
|
|
2874
2886
|
};
|
|
@@ -5118,6 +5130,7 @@ export type UiFeatureTogglesEnterpriseSetting = {
|
|
|
5118
5130
|
value: Array<UiFeatureToggleEnterpriseSettingValue>;
|
|
5119
5131
|
};
|
|
5120
5132
|
export type Unavailability = {
|
|
5133
|
+
allDay: Scalars['Boolean']['output'];
|
|
5121
5134
|
createdAt: Scalars['ISO8601']['output'];
|
|
5122
5135
|
employee: Employee;
|
|
5123
5136
|
/** End time of unavailability. */
|
|
@@ -5149,6 +5162,11 @@ export type UnavailabilityEdge = {
|
|
|
5149
5162
|
cursor: Scalars['String']['output'];
|
|
5150
5163
|
node: Unavailability;
|
|
5151
5164
|
};
|
|
5165
|
+
export type UnavailabilityEventCreateInput = {
|
|
5166
|
+
employeeId: Scalars['ID']['input'];
|
|
5167
|
+
end: Scalars['ISO8601']['input'];
|
|
5168
|
+
start: Scalars['ISO8601']['input'];
|
|
5169
|
+
};
|
|
5152
5170
|
export type UnavailabilityRevertInput = {
|
|
5153
5171
|
employeeId: Scalars['ID']['input'];
|
|
5154
5172
|
/** Is inclusive. */
|