@pexip-engage-public/graphql 1.1.13 → 1.1.14
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 +138 -0
- package/dist/graphql-env.d.ts.map +1 -1
- package/dist/graphql-env.js +153 -0
- package/dist/graphql-env.js.map +1 -1
- package/dist/graphql.d.ts +1 -1
- package/dist/graphql.d.ts.map +1 -1
- package/dist/schema.d.ts +16 -0
- package/dist/schema.d.ts.map +1 -1
- package/package.json +4 -4
- package/src/graphql-env.ts +153 -0
- package/src/graphql.ts +1 -1
- package/src/schema.ts +20 -0
package/dist/graphql.d.ts
CHANGED
|
@@ -21,7 +21,7 @@ export declare const graphql: initGraphQLTada<{
|
|
|
21
21
|
*
|
|
22
22
|
* 2022-02-03T12:24:45-08:00[America/Los_Angeles] */
|
|
23
23
|
ZonedDateTime: ZonedDateTimeString;
|
|
24
|
-
JSONObject:
|
|
24
|
+
JSONObject: Record<string, unknown>;
|
|
25
25
|
};
|
|
26
26
|
}>;
|
|
27
27
|
export type { FragmentOf, ResultOf, TadaDocumentNode, VariablesOf } from "gql.tada";
|
package/dist/graphql.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"graphql.d.ts","sourceRoot":"","sources":["../src/graphql.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,UAAU,CAAC;AAE3C,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;AAEtD,eAAO,MAAM,OAAO;mBACH,OAAO,aAAa;aAC1B;QACP,EAAE,EAAE,MAAM,CAAC;QACX;;WAEG;QACH,YAAY,EAAE,kBAAkB,CAAC;QACjC;;;WAGG;QACH,IAAI,EAAE,UAAU,CAAC;QACjB;;sCAE8B;QAC9B,OAAO,EAAE,aAAa,CAAC;QACvB;;4DAEoD;QACpD,aAAa,EAAE,mBAAmB,CAAC;QACnC,UAAU,EAAE,MAAM,CAAC;
|
|
1
|
+
{"version":3,"file":"graphql.d.ts","sourceRoot":"","sources":["../src/graphql.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,UAAU,CAAC;AAE3C,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;AAEtD,eAAO,MAAM,OAAO;mBACH,OAAO,aAAa;aAC1B;QACP,EAAE,EAAE,MAAM,CAAC;QACX;;WAEG;QACH,YAAY,EAAE,kBAAkB,CAAC;QACjC;;;WAGG;QACH,IAAI,EAAE,UAAU,CAAC;QACjB;;sCAE8B;QAC9B,OAAO,EAAE,aAAa,CAAC;QACvB;;4DAEoD;QACpD,aAAa,EAAE,mBAAmB,CAAC;QACnC,UAAU,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;KACrC;EACC,CAAC;AAEL,YAAY,EAAE,UAAU,EAAE,QAAQ,EAAE,gBAAgB,EAAE,WAAW,EAAE,MAAM,UAAU,CAAC;AACpF,OAAO,EAAE,YAAY,EAAE,MAAM,UAAU,CAAC"}
|
package/dist/schema.d.ts
CHANGED
|
@@ -3593,6 +3593,7 @@ export type Query = {
|
|
|
3593
3593
|
webhookConfigurations: Array<WebhookConfiguration>;
|
|
3594
3594
|
webhookDeliveries: WebhookDeliveryConnection;
|
|
3595
3595
|
webhookDelivery: WebhookDelivery;
|
|
3596
|
+
workLocations: Array<WorkLocationEntry>;
|
|
3596
3597
|
};
|
|
3597
3598
|
export type QueryAggregatedEmployeeAppointmentInsightsArgs = {
|
|
3598
3599
|
employeeId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -4385,6 +4386,11 @@ export type QueryWebhookDeliveriesArgs = {
|
|
|
4385
4386
|
export type QueryWebhookDeliveryArgs = {
|
|
4386
4387
|
webhookId: Scalars['String']['input'];
|
|
4387
4388
|
};
|
|
4389
|
+
export type QueryWorkLocationsArgs = {
|
|
4390
|
+
employeeIds: Array<Scalars['ID']['input']>;
|
|
4391
|
+
from: Scalars['ISO8601']['input'];
|
|
4392
|
+
to: Scalars['ISO8601']['input'];
|
|
4393
|
+
};
|
|
4388
4394
|
export type Question = {
|
|
4389
4395
|
answerOptions: Array<AnswerOption>;
|
|
4390
4396
|
createdAt: Scalars['ISO8601']['output'];
|
|
@@ -5325,6 +5331,16 @@ export type WebhookDeliveryEdge = {
|
|
|
5325
5331
|
node: WebhookDelivery;
|
|
5326
5332
|
};
|
|
5327
5333
|
export type WebhookEventType = 'appointment_create' | 'appointment_update' | 'callback_request_create' | 'callback_request_update' | 'communication_send';
|
|
5334
|
+
export type WorkLocation = {
|
|
5335
|
+
employee: Employee;
|
|
5336
|
+
meetingTypes: Array<MeetingType>;
|
|
5337
|
+
office: Office;
|
|
5338
|
+
};
|
|
5339
|
+
export type WorkLocationEntry = {
|
|
5340
|
+
end: Scalars['ISO8601']['output'];
|
|
5341
|
+
start: Scalars['ISO8601']['output'];
|
|
5342
|
+
workLocations: Array<WorkLocation>;
|
|
5343
|
+
};
|
|
5328
5344
|
export type ActiveLanguagesInput = {
|
|
5329
5345
|
manageable?: InputMaybe<Scalars['Boolean']['input']>;
|
|
5330
5346
|
/** The languages supported by the enterprise. */
|