@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pexip-engage-public/graphql",
3
- "version": "1.1.15-canary-20251009092247",
3
+ "version": "1.1.15-canary-20251009131405",
4
4
  "homepage": "https://github.com/skedify/frontend-mono/tree/develop/packages/graphql#readme",
5
5
  "bugs": {
6
6
  "url": "https://github.com/skedify/frontend-mono/issues"
@@ -45,8 +45,8 @@
45
45
  "@graphql-codegen/typescript": "^5.0.1",
46
46
  "@graphql-inspector/cli": "^5.0.8",
47
47
  "typescript": "^5.9.3",
48
- "@pexip-engage/tsconfig": "0.1.1",
49
- "eslint-config-pexip-engage": "1.1.36"
48
+ "eslint-config-pexip-engage": "1.1.36",
49
+ "@pexip-engage/tsconfig": "0.1.1"
50
50
  },
51
51
  "volta": {
52
52
  "extends": "../../package.json"
@@ -16491,6 +16491,15 @@ const introspection = {
16491
16491
  "args": [],
16492
16492
  "isDeprecated": false
16493
16493
  },
16494
+ {
16495
+ "name": "internalNotes",
16496
+ "type": {
16497
+ "kind": "SCALAR",
16498
+ "name": "String"
16499
+ },
16500
+ "args": [],
16501
+ "isDeprecated": false
16502
+ },
16494
16503
  {
16495
16504
  "name": "listingTimeSlots",
16496
16505
  "type": {
@@ -16743,6 +16752,13 @@ const introspection = {
16743
16752
  "name": "String"
16744
16753
  }
16745
16754
  },
16755
+ {
16756
+ "name": "internalNotes",
16757
+ "type": {
16758
+ "kind": "SCALAR",
16759
+ "name": "String"
16760
+ }
16761
+ },
16746
16762
  {
16747
16763
  "name": "location",
16748
16764
  "type": {
@@ -16832,6 +16848,13 @@ const introspection = {
16832
16848
  "name": "String"
16833
16849
  }
16834
16850
  },
16851
+ {
16852
+ "name": "internalNotes",
16853
+ "type": {
16854
+ "kind": "SCALAR",
16855
+ "name": "String"
16856
+ }
16857
+ },
16835
16858
  {
16836
16859
  "name": "location",
16837
16860
  "type": {
@@ -21421,6 +21444,39 @@ const introspection = {
21421
21444
  ],
21422
21445
  "isDeprecated": false
21423
21446
  },
21447
+ {
21448
+ "name": "createDownloadUnavailabilityFileLink",
21449
+ "type": {
21450
+ "kind": "NON_NULL",
21451
+ "ofType": {
21452
+ "kind": "SCALAR",
21453
+ "name": "String"
21454
+ }
21455
+ },
21456
+ "args": [
21457
+ {
21458
+ "name": "fileId",
21459
+ "type": {
21460
+ "kind": "NON_NULL",
21461
+ "ofType": {
21462
+ "kind": "SCALAR",
21463
+ "name": "String"
21464
+ }
21465
+ }
21466
+ },
21467
+ {
21468
+ "name": "id",
21469
+ "type": {
21470
+ "kind": "NON_NULL",
21471
+ "ofType": {
21472
+ "kind": "SCALAR",
21473
+ "name": "ID"
21474
+ }
21475
+ }
21476
+ }
21477
+ ],
21478
+ "isDeprecated": false
21479
+ },
21424
21480
  {
21425
21481
  "name": "createEmployee",
21426
21482
  "type": {
package/src/schema.ts CHANGED
@@ -2477,6 +2477,7 @@ export type Listing = {
2477
2477
  description?: Maybe<TranslationObject>;
2478
2478
  externalId?: Maybe<Scalars['String']['output']>;
2479
2479
  id: Scalars['ID']['output'];
2480
+ internalNotes?: Maybe<Scalars['String']['output']>;
2480
2481
  listingTimeSlots: Array<ListingTimeSlot>;
2481
2482
  location?: Maybe<Location>;
2482
2483
  name?: Maybe<TranslationObject>;
@@ -2512,6 +2513,7 @@ export type ListingConnection = {
2512
2513
  export type ListingCreateInput = {
2513
2514
  active?: InputMaybe<Scalars['Boolean']['input']>;
2514
2515
  externalId?: InputMaybe<Scalars['String']['input']>;
2516
+ internalNotes?: InputMaybe<Scalars['String']['input']>;
2515
2517
  location?: InputMaybe<LocationInput>;
2516
2518
  tags?: InputMaybe<Array<Scalars['String']['input']>>;
2517
2519
  timeZone?: InputMaybe<Scalars['String']['input']>;
@@ -2526,6 +2528,7 @@ export type ListingEdge = {
2526
2528
  export type ListingPatchInput = {
2527
2529
  active?: InputMaybe<Scalars['Boolean']['input']>;
2528
2530
  externalId?: InputMaybe<Scalars['String']['input']>;
2531
+ internalNotes?: InputMaybe<Scalars['String']['input']>;
2529
2532
  location?: InputMaybe<LocationInput>;
2530
2533
  tags?: InputMaybe<Array<Scalars['String']['input']>>;
2531
2534
  timeZone?: InputMaybe<Scalars['String']['input']>;
@@ -3083,6 +3086,7 @@ export type Mutation = {
3083
3086
  createDownloadAppointmentFileLink: Scalars['String']['output'];
3084
3087
  createDownloadCallbackRequestFileLink: Scalars['String']['output'];
3085
3088
  createDownloadFileLink: Scalars['String']['output'];
3089
+ createDownloadUnavailabilityFileLink: Scalars['String']['output'];
3086
3090
  createEmployee: Employee;
3087
3091
  createExternalCalendarAccountConnectUrl: Scalars['String']['output'];
3088
3092
  createExternalProviderTenantAdminConsentUrl: Scalars['String']['output'];
@@ -3374,6 +3378,12 @@ export type MutationCreateDownloadFileLinkArgs = {
3374
3378
  };
3375
3379
 
3376
3380
 
3381
+ export type MutationCreateDownloadUnavailabilityFileLinkArgs = {
3382
+ fileId: Scalars['String']['input'];
3383
+ id: Scalars['ID']['input'];
3384
+ };
3385
+
3386
+
3377
3387
  export type MutationCreateEmployeeArgs = {
3378
3388
  employeeCreateInput: EmployeeCreateInput;
3379
3389
  };