@pexip-engage-public/graphql 1.0.73-canary-20250527085440 → 1.0.73
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 +1 -1
- package/dist/graphql-env.d.ts +859 -1
- package/dist/graphql-env.d.ts.map +1 -1
- package/dist/graphql-env.js +1107 -129
- package/dist/graphql-env.js.map +1 -1
- package/dist/schema.d.ts +127 -2
- package/dist/schema.d.ts.map +1 -1
- package/package.json +2 -2
- package/src/graphql-env.ts +1107 -129
- package/src/schema.ts +160 -1
package/src/schema.ts
CHANGED
|
@@ -125,6 +125,15 @@ export type AllowedExternalCalendarAccountProvidersEnterpriseSetting = {
|
|
|
125
125
|
value: Array<ExternalCalendarProvider>;
|
|
126
126
|
};
|
|
127
127
|
|
|
128
|
+
export type AllowedMeetingRoomProvidersEnterpriseSetting = {
|
|
129
|
+
createdAt: Scalars['ISO8601']['output'];
|
|
130
|
+
/** 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. */
|
|
131
|
+
manageable: Scalars['Boolean']['output'];
|
|
132
|
+
updatedAt: Scalars['ISO8601']['output'];
|
|
133
|
+
/** The allowed providers for meeting rooms. */
|
|
134
|
+
value: Array<MeetingRoomProvider>;
|
|
135
|
+
};
|
|
136
|
+
|
|
128
137
|
export type AllowedPluginDomainsEnterpriseSetting = {
|
|
129
138
|
createdAt: Scalars['ISO8601']['output'];
|
|
130
139
|
/** 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. */
|
|
@@ -1567,6 +1576,8 @@ export type EnterpriseSettings = {
|
|
|
1567
1576
|
agentPrioritizationEnabled: AgentPrioritizationEnabledEnterpriseSetting;
|
|
1568
1577
|
/** The providers from which an employee can choose to connect an external calendar account. */
|
|
1569
1578
|
allowedExternalCalendarAccountProviders: AllowedExternalCalendarAccountProvidersEnterpriseSetting;
|
|
1579
|
+
/** The allowed providers for meeting rooms. */
|
|
1580
|
+
allowedMeetingRoomProviders: AllowedMeetingRoomProvidersEnterpriseSetting;
|
|
1570
1581
|
/** The domains on which the plugin can be integrated. */
|
|
1571
1582
|
allowedPluginDomains: AllowedPluginDomainsEnterpriseSetting;
|
|
1572
1583
|
/** Manage the default auto accept setting value or disable manual manual accept. */
|
|
@@ -1680,6 +1691,8 @@ export type EnterpriseSettingsPatchInput = {
|
|
|
1680
1691
|
agentPrioritizationEnabled?: InputMaybe<AgentPrioritizationEnabledInput>;
|
|
1681
1692
|
/** The providers from which an employee can choose to connect an external calendar account. */
|
|
1682
1693
|
allowedExternalCalendarAccountProviders?: InputMaybe<AllowedExternalCalendarAccountProvidersInput>;
|
|
1694
|
+
/** The allowed providers for meeting rooms. */
|
|
1695
|
+
allowedMeetingRoomProviders?: InputMaybe<AllowedMeetingRoomProvidersInput>;
|
|
1683
1696
|
/** The domains on which the plugin can be integrated. */
|
|
1684
1697
|
allowedPluginDomains?: InputMaybe<AllowedPluginDomainsInput>;
|
|
1685
1698
|
/** Manage the default auto accept setting value or disable manual manual accept. */
|
|
@@ -2519,6 +2532,26 @@ export type ListingTranslationsPatchInput = {
|
|
|
2519
2532
|
name?: InputMaybe<Array<TranslationObjectInput>>;
|
|
2520
2533
|
};
|
|
2521
2534
|
|
|
2535
|
+
export type LocalMeetingRoomCreateInput = {
|
|
2536
|
+
active: Scalars['Boolean']['input'];
|
|
2537
|
+
capacity: Scalars['Int']['input'];
|
|
2538
|
+
email?: InputMaybe<Scalars['String']['input']>;
|
|
2539
|
+
externalId?: InputMaybe<Scalars['String']['input']>;
|
|
2540
|
+
isWheelChairAccessible: Scalars['Boolean']['input'];
|
|
2541
|
+
name: Scalars['String']['input'];
|
|
2542
|
+
timeZone?: InputMaybe<Scalars['String']['input']>;
|
|
2543
|
+
};
|
|
2544
|
+
|
|
2545
|
+
export type LocalMeetingRoomPatchInput = {
|
|
2546
|
+
active?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2547
|
+
capacity?: InputMaybe<Scalars['Int']['input']>;
|
|
2548
|
+
email?: InputMaybe<Scalars['String']['input']>;
|
|
2549
|
+
externalId?: InputMaybe<Scalars['String']['input']>;
|
|
2550
|
+
isWheelChairAccessible?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2551
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
2552
|
+
timeZone?: InputMaybe<Scalars['String']['input']>;
|
|
2553
|
+
};
|
|
2554
|
+
|
|
2522
2555
|
export type LocalizedNamesEnterpriseSetting = {
|
|
2523
2556
|
createdAt: Scalars['ISO8601']['output'];
|
|
2524
2557
|
/** 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. */
|
|
@@ -2781,7 +2814,7 @@ export type MeetingRoom = {
|
|
|
2781
2814
|
lastSyncedAt?: Maybe<Scalars['ISO8601']['output']>;
|
|
2782
2815
|
name: Scalars['String']['output'];
|
|
2783
2816
|
offices: Array<Office>;
|
|
2784
|
-
provider:
|
|
2817
|
+
provider: MeetingRoomProvider;
|
|
2785
2818
|
schedulingSettings: Array<MeetingRoomSchedulingSetting>;
|
|
2786
2819
|
timeZone: Scalars['String']['output'];
|
|
2787
2820
|
updatedAt: Scalars['ISO8601']['output'];
|
|
@@ -2847,6 +2880,10 @@ export type MeetingRoomPatchInput = {
|
|
|
2847
2880
|
active?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2848
2881
|
};
|
|
2849
2882
|
|
|
2883
|
+
export type MeetingRoomProvider =
|
|
2884
|
+
| 'LOCAL'
|
|
2885
|
+
| 'OFFICE365';
|
|
2886
|
+
|
|
2850
2887
|
export type MeetingRoomSchedulingSetting = {
|
|
2851
2888
|
meetingRoom: MeetingRoom;
|
|
2852
2889
|
meetingType: MeetingType;
|
|
@@ -2965,12 +3002,15 @@ export type Mutation = {
|
|
|
2965
3002
|
createLeadSegment: LeadSegment;
|
|
2966
3003
|
createListing: Listing;
|
|
2967
3004
|
createListingTimeSlot: ListingTimeSlot;
|
|
3005
|
+
createLocalMeetingRoom: MeetingRoom;
|
|
2968
3006
|
createManagedExternalCalendarEvent: ManagedExternalCalendarEvent;
|
|
2969
3007
|
createManagedExternalOnlineMeeting: ManagedExternalOnlineMeeting;
|
|
2970
3008
|
createMicrosoftDynamicsIntegrationConnectUrl: Scalars['String']['output'];
|
|
2971
3009
|
createOffice: Office;
|
|
2972
3010
|
createOfficeRelation: OfficeRelation;
|
|
2973
3011
|
createQuestion: Question;
|
|
3012
|
+
createSamlIntegration: SamlIntegration;
|
|
3013
|
+
createScimToken: Scalars['String']['output'];
|
|
2974
3014
|
createSessionConfigSessionEvent: Scalars['Boolean']['output'];
|
|
2975
3015
|
createSessionDataSessionEvent: Scalars['Boolean']['output'];
|
|
2976
3016
|
createStepShownSessionEvent: Scalars['Boolean']['output'];
|
|
@@ -2984,6 +3024,7 @@ export type Mutation = {
|
|
|
2984
3024
|
* that user will be reverted (as if you called revertUnavailability first, see its description).
|
|
2985
3025
|
*/
|
|
2986
3026
|
createUnavailability: Unavailability;
|
|
3027
|
+
createUnavailabilityEvent: Unavailability;
|
|
2987
3028
|
createUploadFileLink: FileCreateUploadLinkResult;
|
|
2988
3029
|
createVPaaSMeeting: PexipVPaaSParticipant;
|
|
2989
3030
|
createWebhookConfiguration: WebhookConfiguration;
|
|
@@ -3000,11 +3041,13 @@ export type Mutation = {
|
|
|
3000
3041
|
deleteLeadSegment: LeadSegment;
|
|
3001
3042
|
deleteListing: Listing;
|
|
3002
3043
|
deleteListingTimeSlot: ListingTimeSlot;
|
|
3044
|
+
deleteLocalMeetingRoom: MeetingRoom;
|
|
3003
3045
|
deleteManagedExternalCalendarEvent: ManagedExternalCalendarEvent;
|
|
3004
3046
|
deleteManagedExternalOnlineMeeting: ManagedExternalOnlineMeeting;
|
|
3005
3047
|
deleteOffice: Office;
|
|
3006
3048
|
deleteOfficeRelation: OfficeRelation;
|
|
3007
3049
|
deleteQuestion: Question;
|
|
3050
|
+
deleteSamlIntegration: SamlIntegration;
|
|
3008
3051
|
deleteStorageAccountConfig: StorageAccountConfig;
|
|
3009
3052
|
deleteSubject: Subject;
|
|
3010
3053
|
deleteSubjectGroup: SubjectGroup;
|
|
@@ -3035,6 +3078,7 @@ export type Mutation = {
|
|
|
3035
3078
|
patchLeadSegment: LeadSegment;
|
|
3036
3079
|
patchLeadSegmentCallbackRequestSetting: LeadSegmentCallbackRequestSetting;
|
|
3037
3080
|
patchListing: Listing;
|
|
3081
|
+
patchLocalMeetingRoom: MeetingRoom;
|
|
3038
3082
|
patchManagedExternalCalendarEvent: ManagedExternalCalendarEvent;
|
|
3039
3083
|
patchManagedExternalOnlineMeeting: ManagedExternalOnlineMeeting;
|
|
3040
3084
|
patchMeetingRoom: MeetingRoom;
|
|
@@ -3043,6 +3087,7 @@ export type Mutation = {
|
|
|
3043
3087
|
patchOffice: Office;
|
|
3044
3088
|
patchOfficeCallbackRequestSetting: OfficeCallbackRequestSetting;
|
|
3045
3089
|
patchQuestion: Question;
|
|
3090
|
+
patchSamlIntegration: SamlIntegration;
|
|
3046
3091
|
patchStaticTranslationOverrides: Array<StaticTranslationOverride>;
|
|
3047
3092
|
patchStorageAccountConfig: StorageAccountConfig;
|
|
3048
3093
|
patchSubject: Subject;
|
|
@@ -3112,6 +3157,9 @@ export type Mutation = {
|
|
|
3112
3157
|
syncMeetingRooms: Scalars['Boolean']['output'];
|
|
3113
3158
|
syncMicrosoftDynamicsIntegrationCustomAttributes: Scalars['Boolean']['output'];
|
|
3114
3159
|
testWebhookConfiguration: WebhookDelivery;
|
|
3160
|
+
toggleRedirectToSaml: Scalars['Boolean']['output'];
|
|
3161
|
+
uploadSamlIdentityProviderMetadataByFile: SamlIntegration;
|
|
3162
|
+
uploadSamlIdentityProviderMetadataByUrl: SamlIntegration;
|
|
3115
3163
|
upsertMicrosoftGraphAPIEmailConfiguration: MicrosoftGraphApiEmailProviderConfiguration;
|
|
3116
3164
|
upsertOfficeRelation: GroupedOfficeRelation;
|
|
3117
3165
|
};
|
|
@@ -3279,6 +3327,11 @@ export type MutationCreateListingTimeSlotArgs = {
|
|
|
3279
3327
|
};
|
|
3280
3328
|
|
|
3281
3329
|
|
|
3330
|
+
export type MutationCreateLocalMeetingRoomArgs = {
|
|
3331
|
+
input: LocalMeetingRoomCreateInput;
|
|
3332
|
+
};
|
|
3333
|
+
|
|
3334
|
+
|
|
3282
3335
|
export type MutationCreateManagedExternalCalendarEventArgs = {
|
|
3283
3336
|
input: ManagedExternalCalendarEventCreateInput;
|
|
3284
3337
|
};
|
|
@@ -3355,6 +3408,11 @@ export type MutationCreateUnavailabilityArgs = {
|
|
|
3355
3408
|
};
|
|
3356
3409
|
|
|
3357
3410
|
|
|
3411
|
+
export type MutationCreateUnavailabilityEventArgs = {
|
|
3412
|
+
input: UnavailabilityEventCreateInput;
|
|
3413
|
+
};
|
|
3414
|
+
|
|
3415
|
+
|
|
3358
3416
|
export type MutationCreateUploadFileLinkArgs = {
|
|
3359
3417
|
input: FileCreateUploadLinkInput;
|
|
3360
3418
|
};
|
|
@@ -3436,6 +3494,11 @@ export type MutationDeleteListingTimeSlotArgs = {
|
|
|
3436
3494
|
};
|
|
3437
3495
|
|
|
3438
3496
|
|
|
3497
|
+
export type MutationDeleteLocalMeetingRoomArgs = {
|
|
3498
|
+
id: Scalars['ID']['input'];
|
|
3499
|
+
};
|
|
3500
|
+
|
|
3501
|
+
|
|
3439
3502
|
export type MutationDeleteManagedExternalCalendarEventArgs = {
|
|
3440
3503
|
id: Scalars['String']['input'];
|
|
3441
3504
|
};
|
|
@@ -3621,6 +3684,12 @@ export type MutationPatchListingArgs = {
|
|
|
3621
3684
|
};
|
|
3622
3685
|
|
|
3623
3686
|
|
|
3687
|
+
export type MutationPatchLocalMeetingRoomArgs = {
|
|
3688
|
+
id: Scalars['ID']['input'];
|
|
3689
|
+
input: LocalMeetingRoomPatchInput;
|
|
3690
|
+
};
|
|
3691
|
+
|
|
3692
|
+
|
|
3624
3693
|
export type MutationPatchManagedExternalCalendarEventArgs = {
|
|
3625
3694
|
id: Scalars['String']['input'];
|
|
3626
3695
|
input: ManagedExternalCalendarEventPatchInput;
|
|
@@ -3668,6 +3737,11 @@ export type MutationPatchQuestionArgs = {
|
|
|
3668
3737
|
};
|
|
3669
3738
|
|
|
3670
3739
|
|
|
3740
|
+
export type MutationPatchSamlIntegrationArgs = {
|
|
3741
|
+
input: SamlIntegrationPatchInput;
|
|
3742
|
+
};
|
|
3743
|
+
|
|
3744
|
+
|
|
3671
3745
|
export type MutationPatchStaticTranslationOverridesArgs = {
|
|
3672
3746
|
staticTranslationOverridesPatchInput: Array<StaticTranslationOverridePatchInput>;
|
|
3673
3747
|
};
|
|
@@ -3996,6 +4070,21 @@ export type MutationTestWebhookConfigurationArgs = {
|
|
|
3996
4070
|
};
|
|
3997
4071
|
|
|
3998
4072
|
|
|
4073
|
+
export type MutationToggleRedirectToSamlArgs = {
|
|
4074
|
+
shouldRedirectToSaml: Scalars['Boolean']['input'];
|
|
4075
|
+
};
|
|
4076
|
+
|
|
4077
|
+
|
|
4078
|
+
export type MutationUploadSamlIdentityProviderMetadataByFileArgs = {
|
|
4079
|
+
metadataXml: Scalars['String']['input'];
|
|
4080
|
+
};
|
|
4081
|
+
|
|
4082
|
+
|
|
4083
|
+
export type MutationUploadSamlIdentityProviderMetadataByUrlArgs = {
|
|
4084
|
+
metadataUrl: Scalars['String']['input'];
|
|
4085
|
+
};
|
|
4086
|
+
|
|
4087
|
+
|
|
3999
4088
|
export type MutationUpsertMicrosoftGraphApiEmailConfigurationArgs = {
|
|
4000
4089
|
input: MicrosoftGraphApiEmailProviderConfigurationInput;
|
|
4001
4090
|
};
|
|
@@ -4359,12 +4448,15 @@ export type Query = {
|
|
|
4359
4448
|
question: Question;
|
|
4360
4449
|
questions: Array<Question>;
|
|
4361
4450
|
regions: RegionConnection;
|
|
4451
|
+
samlIntegration?: Maybe<SamlIntegration>;
|
|
4362
4452
|
schedulableEmployees: Array<Employee>;
|
|
4363
4453
|
schedulableMeetingRooms: Array<MeetingRoom>;
|
|
4364
4454
|
schedulableMeetingTypes: Array<MeetingType>;
|
|
4365
4455
|
schedulableOffices: Array<Office>;
|
|
4366
4456
|
schedulableSubjects: Array<Subject>;
|
|
4367
4457
|
scheduledAppointmentCommunications: Array<ScheduledCommunication>;
|
|
4458
|
+
scimEndpoint: Scalars['String']['output'];
|
|
4459
|
+
scimTokens: Array<ScimToken>;
|
|
4368
4460
|
searchRegions: Array<Region>;
|
|
4369
4461
|
staticTranslationOverrides: Array<StaticTranslationOverride>;
|
|
4370
4462
|
staticTranslations: Scalars['JSONObject']['output'];
|
|
@@ -5536,9 +5628,56 @@ export type ResourceType =
|
|
|
5536
5628
|
| 'MEETING_TYPE'
|
|
5537
5629
|
| 'OFFICE'
|
|
5538
5630
|
| 'OFFICE_RELATION'
|
|
5631
|
+
| 'SCIM_TOKEN'
|
|
5539
5632
|
| 'SUBJECT'
|
|
5540
5633
|
| 'SUBJECT_GROUP';
|
|
5541
5634
|
|
|
5635
|
+
export type SamlIntegration = {
|
|
5636
|
+
active: Scalars['Boolean']['output'];
|
|
5637
|
+
forceAuthentication: Scalars['Boolean']['output'];
|
|
5638
|
+
identityProviderMetadataUrl?: Maybe<Scalars['String']['output']>;
|
|
5639
|
+
identityProviderSignatureKey?: Maybe<SamlIntegrationIdentityProviderKey>;
|
|
5640
|
+
serviceProviderEncryptionKeys: Array<SamlIntegrationServiceProviderKey>;
|
|
5641
|
+
serviceProviderMetadataUrl: Scalars['String']['output'];
|
|
5642
|
+
serviceProviderSignatureKeys: Array<SamlIntegrationServiceProviderKey>;
|
|
5643
|
+
signServiceProviderMetadata: Scalars['Boolean']['output'];
|
|
5644
|
+
singleLogoutServiceUrl?: Maybe<Scalars['String']['output']>;
|
|
5645
|
+
singleSignOnServiceUrl?: Maybe<Scalars['String']['output']>;
|
|
5646
|
+
validateSignature: Scalars['Boolean']['output'];
|
|
5647
|
+
wantAssertionsEncrypted: Scalars['Boolean']['output'];
|
|
5648
|
+
wantAssertionsSigned: Scalars['Boolean']['output'];
|
|
5649
|
+
wantAuthnRequestsSigned: Scalars['Boolean']['output'];
|
|
5650
|
+
};
|
|
5651
|
+
|
|
5652
|
+
export type SamlIntegrationIdentityProviderKey = {
|
|
5653
|
+
certificate: Scalars['String']['output'];
|
|
5654
|
+
expiresAt: Scalars['ISO8601']['output'];
|
|
5655
|
+
};
|
|
5656
|
+
|
|
5657
|
+
export type SamlIntegrationKeyStatus =
|
|
5658
|
+
| 'ACTIVE'
|
|
5659
|
+
| 'DISABLED'
|
|
5660
|
+
| 'PASSIVE';
|
|
5661
|
+
|
|
5662
|
+
export type SamlIntegrationPatchInput = {
|
|
5663
|
+
active?: InputMaybe<Scalars['Boolean']['input']>;
|
|
5664
|
+
forceAuthentication?: InputMaybe<Scalars['Boolean']['input']>;
|
|
5665
|
+
signServiceProviderMetadata?: InputMaybe<Scalars['Boolean']['input']>;
|
|
5666
|
+
validateSignature?: InputMaybe<Scalars['Boolean']['input']>;
|
|
5667
|
+
wantAssertionsEncrypted?: InputMaybe<Scalars['Boolean']['input']>;
|
|
5668
|
+
wantAssertionsSigned?: InputMaybe<Scalars['Boolean']['input']>;
|
|
5669
|
+
wantAuthnRequestsSigned?: InputMaybe<Scalars['Boolean']['input']>;
|
|
5670
|
+
};
|
|
5671
|
+
|
|
5672
|
+
export type SamlIntegrationServiceProviderKey = {
|
|
5673
|
+
algorithm: Scalars['String']['output'];
|
|
5674
|
+
certificate: Scalars['String']['output'];
|
|
5675
|
+
expiresAt: Scalars['ISO8601']['output'];
|
|
5676
|
+
id: Scalars['String']['output'];
|
|
5677
|
+
publicKey: Scalars['String']['output'];
|
|
5678
|
+
status: SamlIntegrationKeyStatus;
|
|
5679
|
+
};
|
|
5680
|
+
|
|
5542
5681
|
export type ScheduledCommunication = {
|
|
5543
5682
|
channel: CommunicationChannel;
|
|
5544
5683
|
communicationReceiver: CommunicationReceiver;
|
|
@@ -5565,6 +5704,14 @@ export type ScimIntegration = BaseIntegration & {
|
|
|
5565
5704
|
name: Scalars['String']['output'];
|
|
5566
5705
|
};
|
|
5567
5706
|
|
|
5707
|
+
export type ScimToken = {
|
|
5708
|
+
createdAt: Scalars['ISO8601']['output'];
|
|
5709
|
+
deletedAt?: Maybe<Scalars['ISO8601']['output']>;
|
|
5710
|
+
expiresAt: Scalars['ISO8601']['output'];
|
|
5711
|
+
id: Scalars['ID']['output'];
|
|
5712
|
+
updatedAt: Scalars['ISO8601']['output'];
|
|
5713
|
+
};
|
|
5714
|
+
|
|
5568
5715
|
export type SecondaryParticipantInput = {
|
|
5569
5716
|
participantId: Scalars['ID']['input'];
|
|
5570
5717
|
type: ParticipantType;
|
|
@@ -6457,6 +6604,12 @@ export type UnavailabilityEdge = {
|
|
|
6457
6604
|
node: Unavailability;
|
|
6458
6605
|
};
|
|
6459
6606
|
|
|
6607
|
+
export type UnavailabilityEventCreateInput = {
|
|
6608
|
+
employeeId: Scalars['ID']['input'];
|
|
6609
|
+
end: Scalars['ISO8601']['input'];
|
|
6610
|
+
start: Scalars['ISO8601']['input'];
|
|
6611
|
+
};
|
|
6612
|
+
|
|
6460
6613
|
export type UnavailabilityRevertInput = {
|
|
6461
6614
|
employeeId: Scalars['ID']['input'];
|
|
6462
6615
|
/** Is inclusive. */
|
|
@@ -6672,6 +6825,12 @@ export type AllowedExternalCalendarAccountProvidersInput = {
|
|
|
6672
6825
|
value?: InputMaybe<Array<ExternalCalendarProvider>>;
|
|
6673
6826
|
};
|
|
6674
6827
|
|
|
6828
|
+
export type AllowedMeetingRoomProvidersInput = {
|
|
6829
|
+
manageable?: InputMaybe<Scalars['Boolean']['input']>;
|
|
6830
|
+
/** The allowed providers for meeting rooms. */
|
|
6831
|
+
value?: InputMaybe<Array<MeetingRoomProvider>>;
|
|
6832
|
+
};
|
|
6833
|
+
|
|
6675
6834
|
export type AllowedPluginDomainsInput = {
|
|
6676
6835
|
manageable?: InputMaybe<Scalars['Boolean']['input']>;
|
|
6677
6836
|
/** The domains on which the plugin can be integrated. */
|