@pexip-engage-public/graphql 1.6.7 → 1.6.8

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
@@ -2737,7 +2737,6 @@ export type Mutation = {
2737
2737
  createUnavailability: Unavailability;
2738
2738
  createUnavailabilityEvent: Unavailability;
2739
2739
  createUploadFileLink: FileCreateUploadLinkResult;
2740
- createVPaaSMeeting: PexipVPaaSParticipant;
2741
2740
  createWebhookConfiguration: WebhookConfiguration;
2742
2741
  createWebhookConfigurationHeaders: Array<WebhookConfigurationHeader>;
2743
2742
  deleteAppliedTemplate: AppliedTemplate;
@@ -2871,7 +2870,6 @@ export type Mutation = {
2871
2870
  */
2872
2871
  revertUnavailability: Array<Unavailability>;
2873
2872
  sendAIMessage: AiMessage;
2874
- startAvailabilityInsights: Scalars['Boolean']['output'];
2875
2873
  syncFutureEventsToExternalCalendar: Scalars['Boolean']['output'];
2876
2874
  syncMeetingRooms: Scalars['Boolean']['output'];
2877
2875
  syncMicrosoftDynamicsIntegrationCustomAttributes: Scalars['Boolean']['output'];
@@ -3063,9 +3061,6 @@ export type MutationCreateUnavailabilityEventArgs = {
3063
3061
  export type MutationCreateUploadFileLinkArgs = {
3064
3062
  input: FileCreateUploadLinkInput;
3065
3063
  };
3066
- export type MutationCreateVPaaSMeetingArgs = {
3067
- token: Scalars['String']['input'];
3068
- };
3069
3064
  export type MutationCreateWebhookConfigurationArgs = {
3070
3065
  input: WebhookConfigurationCreateInput;
3071
3066
  };
@@ -3747,12 +3742,6 @@ export type PexipInfinityCall = {
3747
3742
  vmrId: Scalars['Int']['output'];
3748
3743
  vmrName: Scalars['String']['output'];
3749
3744
  };
3750
- export type PexipVPaaSParticipant = {
3751
- pexipVPaaSApiAddress: Scalars['String']['output'];
3752
- pexipVPaaSMeetingId: Scalars['String']['output'];
3753
- pexipVPaaSParticipantId: Scalars['String']['output'];
3754
- pexipVPaaSParticipantSecret: Scalars['String']['output'];
3755
- };
3756
3745
  export type PrimaryBrandColorEnterpriseSetting = {
3757
3746
  createdAt: Scalars['ISO8601']['output'];
3758
3747
  /** Indicates if the enterprise setting can be managed by an administrator of the enterprise. Non-manageable settings can only be modified by Pexip Engage Support. */
@@ -4937,15 +4926,13 @@ export type RenderedTemplateMeta = {
4937
4926
  receiver: Receiver;
4938
4927
  timeZone: Scalars['String']['output'];
4939
4928
  };
4940
- export type ResourceType = 'API_CLIENT' | 'APPOINTMENT' | 'CUSTOMER' | 'EMPLOYEE' | 'ENTERPRISE_SETTING' | 'EXTERNAL_CALENDAR_ACCOUNT' | 'LEAD_SEGMENT' | 'LISTING' | 'MEETING_TYPE' | 'OFFICE' | 'OFFICE_RELATION' | 'SCIM_TOKEN' | 'SUBJECT' | 'SUBJECT_GROUP';
4929
+ export type ResourceType = 'API_CLIENT' | 'APPOINTMENT' | 'CUSTOMER' | 'EMPLOYEE' | 'ENTERPRISE_SETTING' | 'EXTERNAL_CALENDAR_ACCOUNT' | 'LEAD_SEGMENT' | 'LISTING' | 'MEETING_TYPE' | 'OFFICE' | 'OFFICE_RELATION' | 'SAML_INTEGRATION' | 'SAML_KEY_PROVIDER' | 'SCIM_TOKEN' | 'SUBJECT' | 'SUBJECT_GROUP';
4941
4930
  export type SamlIntegration = {
4942
4931
  active: Scalars['Boolean']['output'];
4943
4932
  forceAuthentication: Scalars['Boolean']['output'];
4944
4933
  identityProviderMetadataUrl?: Maybe<Scalars['String']['output']>;
4945
- identityProviderSignatureKey?: Maybe<SamlIntegrationIdentityProviderKey>;
4946
- serviceProviderEncryptionKeys: Array<SamlIntegrationServiceProviderKey>;
4934
+ identityProviderSignatureKeys: Array<SamlIntegrationIdentityProviderKey>;
4947
4935
  serviceProviderMetadataUrl: Scalars['String']['output'];
4948
- serviceProviderSignatureKeys: Array<SamlIntegrationServiceProviderKey>;
4949
4936
  signServiceProviderMetadata: Scalars['Boolean']['output'];
4950
4937
  singleLogoutServiceUrl?: Maybe<Scalars['String']['output']>;
4951
4938
  singleSignOnServiceUrl?: Maybe<Scalars['String']['output']>;
@@ -4958,7 +4945,6 @@ export type SamlIntegrationIdentityProviderKey = {
4958
4945
  certificate: Scalars['String']['output'];
4959
4946
  expiresAt: Scalars['ISO8601']['output'];
4960
4947
  };
4961
- export type SamlIntegrationKeyStatus = 'ACTIVE' | 'DISABLED' | 'PASSIVE';
4962
4948
  export type SamlIntegrationPatchInput = {
4963
4949
  active?: InputMaybe<Scalars['Boolean']['input']>;
4964
4950
  forceAuthentication?: InputMaybe<Scalars['Boolean']['input']>;
@@ -4969,24 +4955,19 @@ export type SamlIntegrationPatchInput = {
4969
4955
  wantAssertionsSigned?: InputMaybe<Scalars['Boolean']['input']>;
4970
4956
  wantAuthnRequestsSigned?: InputMaybe<Scalars['Boolean']['input']>;
4971
4957
  };
4972
- export type SamlIntegrationServiceProviderKey = {
4973
- algorithm: Scalars['String']['output'];
4974
- certificate: Scalars['String']['output'];
4975
- expiresAt: Scalars['ISO8601']['output'];
4976
- id: Scalars['String']['output'];
4977
- publicKey: Scalars['String']['output'];
4978
- status: SamlIntegrationKeyStatus;
4979
- };
4980
4958
  export type SamlKeyProvider = {
4981
4959
  active: Scalars['Boolean']['output'];
4982
4960
  algorithm: Scalars['String']['output'];
4961
+ certificate?: Maybe<Scalars['String']['output']>;
4983
4962
  enabled: Scalars['Boolean']['output'];
4963
+ expiresAt?: Maybe<Scalars['ISO8601']['output']>;
4984
4964
  id: Scalars['String']['output'];
4985
4965
  keySize: Scalars['Int']['output'];
4986
4966
  name: Scalars['String']['output'];
4987
4967
  priority: Scalars['Int']['output'];
4988
4968
  };
4989
4969
  export type SamlKeyProviderPatchInput = {
4970
+ active?: InputMaybe<Scalars['Boolean']['input']>;
4990
4971
  enabled?: InputMaybe<Scalars['Boolean']['input']>;
4991
4972
  priority?: InputMaybe<Scalars['Int']['input']>;
4992
4973
  };
@@ -5777,15 +5758,19 @@ export type WebhookDelivery = {
5777
5758
  attempts: Scalars['Int']['output'];
5778
5759
  correlationId: Scalars['String']['output'];
5779
5760
  createdAt: Scalars['ISO8601']['output'];
5761
+ /** The unique identifier of the delivery attempt. */
5762
+ deliveryId: Scalars['String']['output'];
5780
5763
  /** Return the duration in milliseconds. */
5781
5764
  duration?: Maybe<Scalars['Int']['output']>;
5782
5765
  error?: Maybe<Scalars['String']['output']>;
5783
5766
  event: Scalars['String']['output'];
5767
+ redelivery: Scalars['Boolean']['output'];
5784
5768
  resourceId: Scalars['String']['output'];
5785
5769
  statusCode?: Maybe<Scalars['Float']['output']>;
5786
5770
  success: Scalars['Boolean']['output'];
5787
5771
  updatedAt: Scalars['ISO8601']['output'];
5788
5772
  webhookConfiguration: WebhookConfiguration;
5773
+ /** The unique identifier for the webhook delivery. This identifier will remain consistent across retries and redeliveries. */
5789
5774
  webhookId: Scalars['String']['output'];
5790
5775
  };
5791
5776
  export type WebhookDeliveryConnection = {