@pexip-engage-public/graphql 1.7.9 → 1.8.0
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 +14 -0
- package/dist/graphql-env.d.ts +102 -16
- package/dist/graphql-env.d.ts.map +1 -1
- package/dist/graphql-env.js +120 -16
- package/dist/graphql-env.js.map +1 -1
- package/dist/schema.d.ts +23 -16
- package/dist/schema.d.ts.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +4 -4
- package/src/graphql-env.ts +120 -16
- package/src/schema.ts +37 -19
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @pexip-engage-public/graphql
|
|
2
2
|
|
|
3
|
+
## 1.8.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- dbdd326: Add ignoreAppointment to timetable query
|
|
8
|
+
- fa22158: Implement new agent prioritization strategy setting
|
|
9
|
+
|
|
10
|
+
## 1.7.10
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- 1529307: feature/granular-secondary-notifications: Add support for new notification events
|
|
15
|
+
- 729a71a: Update all non-major dependencies
|
|
16
|
+
|
|
3
17
|
## 1.7.9
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
package/dist/graphql-env.d.ts
CHANGED
|
@@ -496,9 +496,22 @@ declare const introspection: {
|
|
|
496
496
|
readonly name: "STRICT";
|
|
497
497
|
readonly isDeprecated: false;
|
|
498
498
|
}];
|
|
499
|
+
}, {
|
|
500
|
+
readonly kind: "ENUM";
|
|
501
|
+
readonly name: "AgentPrioritizationStrategy";
|
|
502
|
+
readonly enumValues: readonly [{
|
|
503
|
+
readonly name: "DISABLED";
|
|
504
|
+
readonly isDeprecated: false;
|
|
505
|
+
}, {
|
|
506
|
+
readonly name: "RANK_OFFSET_PRIORITY";
|
|
507
|
+
readonly isDeprecated: false;
|
|
508
|
+
}, {
|
|
509
|
+
readonly name: "SLOT_LEVEL_PRIORITY";
|
|
510
|
+
readonly isDeprecated: false;
|
|
511
|
+
}];
|
|
499
512
|
}, {
|
|
500
513
|
readonly kind: "OBJECT";
|
|
501
|
-
readonly name: "
|
|
514
|
+
readonly name: "AgentPrioritizationStrategyEnterpriseSetting";
|
|
502
515
|
readonly fields: readonly [{
|
|
503
516
|
readonly name: "createdAt";
|
|
504
517
|
readonly type: {
|
|
@@ -537,8 +550,8 @@ declare const introspection: {
|
|
|
537
550
|
readonly type: {
|
|
538
551
|
readonly kind: "NON_NULL";
|
|
539
552
|
readonly ofType: {
|
|
540
|
-
readonly kind: "
|
|
541
|
-
readonly name: "
|
|
553
|
+
readonly kind: "ENUM";
|
|
554
|
+
readonly name: "AgentPrioritizationStrategy";
|
|
542
555
|
};
|
|
543
556
|
};
|
|
544
557
|
readonly args: readonly [];
|
|
@@ -3030,13 +3043,22 @@ declare const introspection: {
|
|
|
3030
3043
|
readonly name: "RESCHEDULED_BY_EMPLOYEE";
|
|
3031
3044
|
readonly isDeprecated: false;
|
|
3032
3045
|
}, {
|
|
3033
|
-
readonly name: "
|
|
3046
|
+
readonly name: "SECONDARY_CUSTOMERS_UPDATED";
|
|
3047
|
+
readonly isDeprecated: false;
|
|
3048
|
+
}, {
|
|
3049
|
+
readonly name: "SECONDARY_CUSTOMER_ADDED";
|
|
3050
|
+
readonly isDeprecated: false;
|
|
3051
|
+
}, {
|
|
3052
|
+
readonly name: "SECONDARY_CUSTOMER_REMOVED";
|
|
3053
|
+
readonly isDeprecated: false;
|
|
3054
|
+
}, {
|
|
3055
|
+
readonly name: "SECONDARY_EMPLOYEES_UPDATED";
|
|
3034
3056
|
readonly isDeprecated: false;
|
|
3035
3057
|
}, {
|
|
3036
|
-
readonly name: "
|
|
3058
|
+
readonly name: "SECONDARY_EMPLOYEE_ADDED";
|
|
3037
3059
|
readonly isDeprecated: false;
|
|
3038
3060
|
}, {
|
|
3039
|
-
readonly name: "
|
|
3061
|
+
readonly name: "SECONDARY_EMPLOYEE_REMOVED";
|
|
3040
3062
|
readonly isDeprecated: false;
|
|
3041
3063
|
}, {
|
|
3042
3064
|
readonly name: "UPDATE_APPOINTMENT_DETAILS";
|
|
@@ -4017,13 +4039,25 @@ declare const introspection: {
|
|
|
4017
4039
|
readonly name: "RESCHEDULED_BY_EMPLOYEE";
|
|
4018
4040
|
readonly isDeprecated: false;
|
|
4019
4041
|
}, {
|
|
4020
|
-
readonly name: "
|
|
4042
|
+
readonly name: "SECONDARY_CUSTOMERS_UPDATED";
|
|
4043
|
+
readonly isDeprecated: false;
|
|
4044
|
+
}, {
|
|
4045
|
+
readonly name: "SECONDARY_CUSTOMER_ADDED";
|
|
4046
|
+
readonly isDeprecated: false;
|
|
4047
|
+
}, {
|
|
4048
|
+
readonly name: "SECONDARY_CUSTOMER_REMOVED";
|
|
4021
4049
|
readonly isDeprecated: false;
|
|
4022
4050
|
}, {
|
|
4023
|
-
readonly name: "
|
|
4051
|
+
readonly name: "SECONDARY_EMPLOYEES_UPDATED";
|
|
4024
4052
|
readonly isDeprecated: false;
|
|
4025
4053
|
}, {
|
|
4026
|
-
readonly name: "
|
|
4054
|
+
readonly name: "SECONDARY_EMPLOYEE_ADDED";
|
|
4055
|
+
readonly isDeprecated: false;
|
|
4056
|
+
}, {
|
|
4057
|
+
readonly name: "SECONDARY_EMPLOYEE_REMOVED";
|
|
4058
|
+
readonly isDeprecated: false;
|
|
4059
|
+
}, {
|
|
4060
|
+
readonly name: "SECONDARY_PARTICIPANTS_UPDATED";
|
|
4027
4061
|
readonly isDeprecated: false;
|
|
4028
4062
|
}, {
|
|
4029
4063
|
readonly name: "UPDATE_APPOINTMENT_DETAILS";
|
|
@@ -12012,12 +12046,12 @@ declare const introspection: {
|
|
|
12012
12046
|
readonly args: readonly [];
|
|
12013
12047
|
readonly isDeprecated: false;
|
|
12014
12048
|
}, {
|
|
12015
|
-
readonly name: "
|
|
12049
|
+
readonly name: "agentPrioritizationStrategy";
|
|
12016
12050
|
readonly type: {
|
|
12017
12051
|
readonly kind: "NON_NULL";
|
|
12018
12052
|
readonly ofType: {
|
|
12019
12053
|
readonly kind: "OBJECT";
|
|
12020
|
-
readonly name: "
|
|
12054
|
+
readonly name: "AgentPrioritizationStrategyEnterpriseSetting";
|
|
12021
12055
|
};
|
|
12022
12056
|
};
|
|
12023
12057
|
readonly args: readonly [];
|
|
@@ -12669,10 +12703,10 @@ declare const introspection: {
|
|
|
12669
12703
|
readonly name: "agentLanguageExpertiseInput";
|
|
12670
12704
|
};
|
|
12671
12705
|
}, {
|
|
12672
|
-
readonly name: "
|
|
12706
|
+
readonly name: "agentPrioritizationStrategy";
|
|
12673
12707
|
readonly type: {
|
|
12674
12708
|
readonly kind: "INPUT_OBJECT";
|
|
12675
|
-
readonly name: "
|
|
12709
|
+
readonly name: "agentPrioritizationStrategyInput";
|
|
12676
12710
|
};
|
|
12677
12711
|
}, {
|
|
12678
12712
|
readonly name: "allowedExternalCalendarAccountProviders";
|
|
@@ -13998,6 +14032,15 @@ declare const introspection: {
|
|
|
13998
14032
|
readonly kind: "INPUT_OBJECT";
|
|
13999
14033
|
readonly name: "ExternalCustomerFieldSettingEnterpriseSettingInput";
|
|
14000
14034
|
readonly inputFields: readonly [{
|
|
14035
|
+
readonly name: "editable";
|
|
14036
|
+
readonly type: {
|
|
14037
|
+
readonly kind: "NON_NULL";
|
|
14038
|
+
readonly ofType: {
|
|
14039
|
+
readonly kind: "SCALAR";
|
|
14040
|
+
readonly name: "Boolean";
|
|
14041
|
+
};
|
|
14042
|
+
};
|
|
14043
|
+
}, {
|
|
14001
14044
|
readonly name: "field";
|
|
14002
14045
|
readonly type: {
|
|
14003
14046
|
readonly kind: "NON_NULL";
|
|
@@ -14039,6 +14082,17 @@ declare const introspection: {
|
|
|
14039
14082
|
readonly kind: "OBJECT";
|
|
14040
14083
|
readonly name: "ExternalCustomerFieldSettingEnterpriseSettingValue";
|
|
14041
14084
|
readonly fields: readonly [{
|
|
14085
|
+
readonly name: "editable";
|
|
14086
|
+
readonly type: {
|
|
14087
|
+
readonly kind: "NON_NULL";
|
|
14088
|
+
readonly ofType: {
|
|
14089
|
+
readonly kind: "SCALAR";
|
|
14090
|
+
readonly name: "Boolean";
|
|
14091
|
+
};
|
|
14092
|
+
};
|
|
14093
|
+
readonly args: readonly [];
|
|
14094
|
+
readonly isDeprecated: false;
|
|
14095
|
+
}, {
|
|
14042
14096
|
readonly name: "field";
|
|
14043
14097
|
readonly type: {
|
|
14044
14098
|
readonly kind: "NON_NULL";
|
|
@@ -15732,6 +15786,15 @@ declare const introspection: {
|
|
|
15732
15786
|
readonly kind: "INPUT_OBJECT";
|
|
15733
15787
|
readonly name: "InternalCustomerFieldSettingEnterpriseSettingInput";
|
|
15734
15788
|
readonly inputFields: readonly [{
|
|
15789
|
+
readonly name: "editable";
|
|
15790
|
+
readonly type: {
|
|
15791
|
+
readonly kind: "NON_NULL";
|
|
15792
|
+
readonly ofType: {
|
|
15793
|
+
readonly kind: "SCALAR";
|
|
15794
|
+
readonly name: "Boolean";
|
|
15795
|
+
};
|
|
15796
|
+
};
|
|
15797
|
+
}, {
|
|
15735
15798
|
readonly name: "field";
|
|
15736
15799
|
readonly type: {
|
|
15737
15800
|
readonly kind: "NON_NULL";
|
|
@@ -15782,6 +15845,17 @@ declare const introspection: {
|
|
|
15782
15845
|
readonly kind: "OBJECT";
|
|
15783
15846
|
readonly name: "InternalCustomerFieldSettingEnterpriseSettingValue";
|
|
15784
15847
|
readonly fields: readonly [{
|
|
15848
|
+
readonly name: "editable";
|
|
15849
|
+
readonly type: {
|
|
15850
|
+
readonly kind: "NON_NULL";
|
|
15851
|
+
readonly ofType: {
|
|
15852
|
+
readonly kind: "SCALAR";
|
|
15853
|
+
readonly name: "Boolean";
|
|
15854
|
+
};
|
|
15855
|
+
};
|
|
15856
|
+
readonly args: readonly [];
|
|
15857
|
+
readonly isDeprecated: false;
|
|
15858
|
+
}, {
|
|
15785
15859
|
readonly name: "field";
|
|
15786
15860
|
readonly type: {
|
|
15787
15861
|
readonly kind: "NON_NULL";
|
|
@@ -34606,6 +34680,12 @@ declare const introspection: {
|
|
|
34606
34680
|
readonly name: "ISO8601";
|
|
34607
34681
|
};
|
|
34608
34682
|
};
|
|
34683
|
+
}, {
|
|
34684
|
+
readonly name: "ignoreAppointment";
|
|
34685
|
+
readonly type: {
|
|
34686
|
+
readonly kind: "SCALAR";
|
|
34687
|
+
readonly name: "ID";
|
|
34688
|
+
};
|
|
34609
34689
|
}, {
|
|
34610
34690
|
readonly name: "ignoreCoverageRegions";
|
|
34611
34691
|
readonly type: {
|
|
@@ -34811,6 +34891,12 @@ declare const introspection: {
|
|
|
34811
34891
|
readonly name: "ISO8601";
|
|
34812
34892
|
};
|
|
34813
34893
|
};
|
|
34894
|
+
}, {
|
|
34895
|
+
readonly name: "ignoreAppointment";
|
|
34896
|
+
readonly type: {
|
|
34897
|
+
readonly kind: "SCALAR";
|
|
34898
|
+
readonly name: "ID";
|
|
34899
|
+
};
|
|
34814
34900
|
}, {
|
|
34815
34901
|
readonly name: "ignoreCoverageRegions";
|
|
34816
34902
|
readonly type: {
|
|
@@ -43053,7 +43139,7 @@ declare const introspection: {
|
|
|
43053
43139
|
readonly isOneOf: false;
|
|
43054
43140
|
}, {
|
|
43055
43141
|
readonly kind: "INPUT_OBJECT";
|
|
43056
|
-
readonly name: "
|
|
43142
|
+
readonly name: "agentPrioritizationStrategyInput";
|
|
43057
43143
|
readonly inputFields: readonly [{
|
|
43058
43144
|
readonly name: "manageable";
|
|
43059
43145
|
readonly type: {
|
|
@@ -43063,8 +43149,8 @@ declare const introspection: {
|
|
|
43063
43149
|
}, {
|
|
43064
43150
|
readonly name: "value";
|
|
43065
43151
|
readonly type: {
|
|
43066
|
-
readonly kind: "
|
|
43067
|
-
readonly name: "
|
|
43152
|
+
readonly kind: "ENUM";
|
|
43153
|
+
readonly name: "AgentPrioritizationStrategy";
|
|
43068
43154
|
};
|
|
43069
43155
|
}];
|
|
43070
43156
|
readonly isOneOf: false;
|