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