@pexip-engage-public/graphql 1.0.57 → 1.0.58
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 +7 -0
- package/dist/graphql-env.d.ts +44 -0
- package/dist/graphql-env.d.ts.map +1 -1
- package/dist/graphql-env.js +52 -0
- package/dist/graphql-env.js.map +1 -1
- package/dist/schema.d.ts +5 -0
- package/dist/schema.d.ts.map +1 -1
- package/dist/type-guards.d.ts +1 -1
- package/package.json +2 -2
- package/src/graphql-env.ts +52 -0
- package/src/schema.ts +8 -0
package/dist/schema.d.ts
CHANGED
|
@@ -2320,16 +2320,21 @@ export type MeetingTypeInput = {
|
|
|
2320
2320
|
};
|
|
2321
2321
|
export type MicrosoftDynamicsIntegration = BaseIntegration & {
|
|
2322
2322
|
active: Scalars['Boolean']['output'];
|
|
2323
|
+
apiVersion: MicrosoftDynamicsIntegrationApiVersion;
|
|
2323
2324
|
environmentUrl: Scalars['String']['output'];
|
|
2324
2325
|
id: Scalars['ID']['output'];
|
|
2325
2326
|
integrationType: IntegrationType;
|
|
2327
|
+
isOnPremises: Scalars['Boolean']['output'];
|
|
2326
2328
|
name: Scalars['String']['output'];
|
|
2327
2329
|
tenantId: Scalars['String']['output'];
|
|
2328
2330
|
};
|
|
2331
|
+
export type MicrosoftDynamicsIntegrationApiVersion = 'V9_1' | 'V9_2';
|
|
2329
2332
|
export type MicrosoftDynamicsIntegrationPatchInput = {
|
|
2330
2333
|
active?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2334
|
+
apiVersion?: InputMaybe<MicrosoftDynamicsIntegrationApiVersion>;
|
|
2331
2335
|
/** For example: https://enterprise.api.crm4.dynamics.com */
|
|
2332
2336
|
environmentUrl?: InputMaybe<Scalars['String']['input']>;
|
|
2337
|
+
isOnPremises?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2333
2338
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
2334
2339
|
};
|
|
2335
2340
|
export type MicrosoftGraphApiEmailProviderConfiguration = {
|