@pexip-engage-public/graphql 1.0.62-canary-20250217104854 → 1.0.62-canary-20250218155837
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 -2
- package/dist/graphql-env.d.ts +78 -105
- package/dist/graphql-env.d.ts.map +1 -1
- package/dist/graphql-env.js +85 -116
- package/dist/graphql-env.js.map +1 -1
- package/dist/schema.d.ts +9 -12
- package/dist/schema.d.ts.map +1 -1
- package/package.json +2 -2
- package/src/graphql-env.ts +85 -116
- package/src/schema.ts +11 -12
package/dist/schema.d.ts
CHANGED
|
@@ -3406,6 +3406,7 @@ export type Query = {
|
|
|
3406
3406
|
textMessageTemplates: Array<TextMessageTemplate>;
|
|
3407
3407
|
timeRangeAvailabilitySettings: Array<TimeRangeAvailabilitySetting>;
|
|
3408
3408
|
timetable: Timetable;
|
|
3409
|
+
treeListRegions: Array<Region>;
|
|
3409
3410
|
unavailability: UnavailabilityConnection;
|
|
3410
3411
|
validateTimetableSlot: ValidatedTimetableSlot;
|
|
3411
3412
|
validator: Validator;
|
|
@@ -4014,12 +4015,8 @@ export type QuerySchedulableSubjectsArgs = {
|
|
|
4014
4015
|
subjectIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
4015
4016
|
};
|
|
4016
4017
|
export type QuerySearchRegionsArgs = {
|
|
4017
|
-
code?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
4018
4018
|
countryCode: Scalars['String']['input'];
|
|
4019
|
-
|
|
4020
|
-
level?: InputMaybe<Array<Scalars['Int']['input']>>;
|
|
4021
|
-
parentId?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
4022
|
-
query?: InputMaybe<Scalars['String']['input']>;
|
|
4019
|
+
query: Scalars['String']['input'];
|
|
4023
4020
|
};
|
|
4024
4021
|
export type QueryStaticTranslationOverridesArgs = {
|
|
4025
4022
|
key?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
@@ -4092,6 +4089,13 @@ export type QueryTimetableArgs = {
|
|
|
4092
4089
|
subjectId: Scalars['ID']['input'];
|
|
4093
4090
|
to: Scalars['ISO8601']['input'];
|
|
4094
4091
|
};
|
|
4092
|
+
export type QueryTreeListRegionsArgs = {
|
|
4093
|
+
code?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
4094
|
+
countryCode: Scalars['String']['input'];
|
|
4095
|
+
id?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
4096
|
+
level?: InputMaybe<Array<Scalars['Int']['input']>>;
|
|
4097
|
+
parentId?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
4098
|
+
};
|
|
4095
4099
|
export type QueryUnavailabilityArgs = {
|
|
4096
4100
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
4097
4101
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -4233,19 +4237,12 @@ export type ReceiverInput = {
|
|
|
4233
4237
|
type: TemplateReceiverType;
|
|
4234
4238
|
};
|
|
4235
4239
|
export type Region = {
|
|
4236
|
-
boundsEast?: Maybe<Scalars['Float']['output']>;
|
|
4237
|
-
boundsNorth?: Maybe<Scalars['Float']['output']>;
|
|
4238
|
-
boundsSouth?: Maybe<Scalars['Float']['output']>;
|
|
4239
|
-
boundsWest?: Maybe<Scalars['Float']['output']>;
|
|
4240
|
-
centerLat?: Maybe<Scalars['Float']['output']>;
|
|
4241
|
-
centerLong?: Maybe<Scalars['Float']['output']>;
|
|
4242
4240
|
code?: Maybe<Scalars['String']['output']>;
|
|
4243
4241
|
countryCode: Scalars['String']['output'];
|
|
4244
4242
|
id: Scalars['ID']['output'];
|
|
4245
4243
|
level: Scalars['Int']['output'];
|
|
4246
4244
|
name: Scalars['String']['output'];
|
|
4247
4245
|
parentId?: Maybe<Scalars['ID']['output']>;
|
|
4248
|
-
region?: Maybe<Scalars['JSONObject']['output']>;
|
|
4249
4246
|
};
|
|
4250
4247
|
export type RegionConnection = {
|
|
4251
4248
|
edges: Array<RegionEdge>;
|