@pexip-engage-public/graphql 1.1.15-canary-20251009092247 → 1.1.15-canary-20251009131405
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 +49 -0
- package/dist/graphql-env.d.ts.map +1 -1
- package/dist/graphql-env.js +56 -0
- package/dist/graphql-env.js.map +1 -1
- package/dist/schema.d.ts +8 -0
- package/dist/schema.d.ts.map +1 -1
- package/package.json +3 -3
- package/src/graphql-env.ts +56 -0
- package/src/schema.ts +10 -0
package/dist/schema.d.ts
CHANGED
|
@@ -2024,6 +2024,7 @@ export type Listing = {
|
|
|
2024
2024
|
description?: Maybe<TranslationObject>;
|
|
2025
2025
|
externalId?: Maybe<Scalars['String']['output']>;
|
|
2026
2026
|
id: Scalars['ID']['output'];
|
|
2027
|
+
internalNotes?: Maybe<Scalars['String']['output']>;
|
|
2027
2028
|
listingTimeSlots: Array<ListingTimeSlot>;
|
|
2028
2029
|
location?: Maybe<Location>;
|
|
2029
2030
|
name?: Maybe<TranslationObject>;
|
|
@@ -2053,6 +2054,7 @@ export type ListingConnection = {
|
|
|
2053
2054
|
export type ListingCreateInput = {
|
|
2054
2055
|
active?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2055
2056
|
externalId?: InputMaybe<Scalars['String']['input']>;
|
|
2057
|
+
internalNotes?: InputMaybe<Scalars['String']['input']>;
|
|
2056
2058
|
location?: InputMaybe<LocationInput>;
|
|
2057
2059
|
tags?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
2058
2060
|
timeZone?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -2065,6 +2067,7 @@ export type ListingEdge = {
|
|
|
2065
2067
|
export type ListingPatchInput = {
|
|
2066
2068
|
active?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2067
2069
|
externalId?: InputMaybe<Scalars['String']['input']>;
|
|
2070
|
+
internalNotes?: InputMaybe<Scalars['String']['input']>;
|
|
2068
2071
|
location?: InputMaybe<LocationInput>;
|
|
2069
2072
|
tags?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
2070
2073
|
timeZone?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -2543,6 +2546,7 @@ export type Mutation = {
|
|
|
2543
2546
|
createDownloadAppointmentFileLink: Scalars['String']['output'];
|
|
2544
2547
|
createDownloadCallbackRequestFileLink: Scalars['String']['output'];
|
|
2545
2548
|
createDownloadFileLink: Scalars['String']['output'];
|
|
2549
|
+
createDownloadUnavailabilityFileLink: Scalars['String']['output'];
|
|
2546
2550
|
createEmployee: Employee;
|
|
2547
2551
|
createExternalCalendarAccountConnectUrl: Scalars['String']['output'];
|
|
2548
2552
|
createExternalProviderTenantAdminConsentUrl: Scalars['String']['output'];
|
|
@@ -2790,6 +2794,10 @@ export type MutationCreateDownloadCallbackRequestFileLinkArgs = {
|
|
|
2790
2794
|
export type MutationCreateDownloadFileLinkArgs = {
|
|
2791
2795
|
id: Scalars['String']['input'];
|
|
2792
2796
|
};
|
|
2797
|
+
export type MutationCreateDownloadUnavailabilityFileLinkArgs = {
|
|
2798
|
+
fileId: Scalars['String']['input'];
|
|
2799
|
+
id: Scalars['ID']['input'];
|
|
2800
|
+
};
|
|
2793
2801
|
export type MutationCreateEmployeeArgs = {
|
|
2794
2802
|
employeeCreateInput: EmployeeCreateInput;
|
|
2795
2803
|
};
|