@pexip-engage-public/graphql 1.7.7 → 1.7.9
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 +14 -0
- package/dist/graphql-env.d.ts +31059 -30976
- package/dist/graphql-env.d.ts.map +1 -1
- package/dist/graphql-env.js +95 -0
- package/dist/graphql-env.js.map +1 -1
- package/dist/schema.d.ts +17 -0
- package/dist/schema.d.ts.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -0
- package/package.json +6 -6
- package/src/graphql-env.ts +95 -0
- package/src/schema.ts +19 -0
package/dist/schema.d.ts
CHANGED
|
@@ -1172,6 +1172,14 @@ export type DataExport = {
|
|
|
1172
1172
|
type: DataExportType;
|
|
1173
1173
|
updatedAt: Scalars['ISO8601']['output'];
|
|
1174
1174
|
};
|
|
1175
|
+
export type DataExportEnabledEnterpriseSetting = {
|
|
1176
|
+
createdAt: Scalars['ISO8601']['output'];
|
|
1177
|
+
/** 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. */
|
|
1178
|
+
manageable: Scalars['Boolean']['output'];
|
|
1179
|
+
updatedAt: Scalars['ISO8601']['output'];
|
|
1180
|
+
/** Whether data export is enabled. */
|
|
1181
|
+
value: Scalars['Boolean']['output'];
|
|
1182
|
+
};
|
|
1175
1183
|
export type DataExportFile = {
|
|
1176
1184
|
/** Size of the file in bytes */
|
|
1177
1185
|
contentLength?: Maybe<Scalars['Float']['output']>;
|
|
@@ -1620,6 +1628,8 @@ export type EnterpriseSettings = {
|
|
|
1620
1628
|
customerNotificationSettings: CustomerNotificationSettingsEnterpriseSetting;
|
|
1621
1629
|
/** The settings used to calculate which reminders should be sent to the customer. */
|
|
1622
1630
|
customerReminderSettings: CustomerReminderSettingsEnterpriseSetting;
|
|
1631
|
+
/** Whether data export is enabled. */
|
|
1632
|
+
dataExportEnabled: DataExportEnabledEnterpriseSetting;
|
|
1623
1633
|
/** The duration in minutes stale data is retained before it is anonymized. */
|
|
1624
1634
|
dataRetentionDuration: DataRetentionDurationEnterpriseSetting;
|
|
1625
1635
|
/** List of entities that should be considered for anonymization. */
|
|
@@ -1739,6 +1749,8 @@ export type EnterpriseSettingsPatchInput = {
|
|
|
1739
1749
|
customerNotificationSettings?: InputMaybe<CustomerNotificationSettingsInput>;
|
|
1740
1750
|
/** The settings used to calculate which reminders should be sent to the customer. */
|
|
1741
1751
|
customerReminderSettings?: InputMaybe<CustomerReminderSettingsInput>;
|
|
1752
|
+
/** Whether data export is enabled. */
|
|
1753
|
+
dataExportEnabled?: InputMaybe<DataExportEnabledInput>;
|
|
1742
1754
|
/** The duration in minutes stale data is retained before it is anonymized. */
|
|
1743
1755
|
dataRetentionDuration?: InputMaybe<DataRetentionDurationInput>;
|
|
1744
1756
|
/** List of entities that should be considered for anonymization. */
|
|
@@ -6116,6 +6128,11 @@ export type CustomerReminderSettingsInput = {
|
|
|
6116
6128
|
/** The settings used to calculate which reminders should be sent to the customer. */
|
|
6117
6129
|
value?: InputMaybe<Array<CustomerReminderSettingsEnterpriseSettingInput>>;
|
|
6118
6130
|
};
|
|
6131
|
+
export type DataExportEnabledInput = {
|
|
6132
|
+
manageable?: InputMaybe<Scalars['Boolean']['input']>;
|
|
6133
|
+
/** Whether data export is enabled. */
|
|
6134
|
+
value?: InputMaybe<Scalars['Boolean']['input']>;
|
|
6135
|
+
};
|
|
6119
6136
|
export type DataRetentionDurationInput = {
|
|
6120
6137
|
manageable?: InputMaybe<Scalars['Boolean']['input']>;
|
|
6121
6138
|
/** The duration in minutes stale data is retained before it is anonymized. */
|