reach-api-sdk 1.0.176 → 1.0.178

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.
@@ -2319,7 +2319,8 @@ type CancellationPolicy = {
2319
2319
  */
2320
2320
  declare enum CheckoutPlatform {
2321
2321
  PLAYED = "Played",
2322
- EXTERNAL = "External"
2322
+ EXTERNAL = "External",
2323
+ EMAIL_PHONE = "EmailPhone"
2323
2324
  }
2324
2325
 
2325
2326
  /**
@@ -3804,6 +3805,18 @@ type Session = {
3804
3805
  * Gets or sets the contact email.
3805
3806
  */
3806
3807
  contactEmail: string;
3808
+ /**
3809
+ * Gets or sets the admin contact name.
3810
+ */
3811
+ adminContactName?: string | null;
3812
+ /**
3813
+ * Gets or sets the admin contact phone.
3814
+ */
3815
+ adminContactPhone?: string | null;
3816
+ /**
3817
+ * Gets or sets the admin contact email.
3818
+ */
3819
+ adminContactEmail?: string | null;
3807
3820
  /**
3808
3821
  * Gets or sets the reminder hours before start.
3809
3822
  */
@@ -4976,6 +4989,18 @@ type Course = {
4976
4989
  * Gets or sets the contact email.
4977
4990
  */
4978
4991
  contactEmail: string;
4992
+ /**
4993
+ * Gets or sets the admin contact name.
4994
+ */
4995
+ adminContactName?: string | null;
4996
+ /**
4997
+ * Gets or sets the admin contact phone.
4998
+ */
4999
+ adminContactPhone?: string | null;
5000
+ /**
5001
+ * Gets or sets the admin contact email.
5002
+ */
5003
+ adminContactEmail?: string | null;
4979
5004
  /**
4980
5005
  * Gets or sets the reminder hours before start.
4981
5006
  */
@@ -7493,6 +7518,18 @@ type CourseCreate = {
7493
7518
  * Gets or sets the contact email.
7494
7519
  */
7495
7520
  contactEmail?: string | null;
7521
+ /**
7522
+ * Gets or sets the admin contact name.
7523
+ */
7524
+ adminContactName?: string | null;
7525
+ /**
7526
+ * Gets or sets the admin contact phone.
7527
+ */
7528
+ adminContactPhone?: string | null;
7529
+ /**
7530
+ * Gets or sets the admin contact email.
7531
+ */
7532
+ adminContactEmail?: string | null;
7496
7533
  /**
7497
7534
  * Gets or sets the booking link override if checkout will occur externally.
7498
7535
  */
@@ -7689,6 +7726,18 @@ type CoursePatch = {
7689
7726
  * Gets or sets the contact email.
7690
7727
  */
7691
7728
  contactEmail?: string | null;
7729
+ /**
7730
+ * Gets or sets the admin contact name.
7731
+ */
7732
+ adminContactName?: string | null;
7733
+ /**
7734
+ * Gets or sets the admin contact phone.
7735
+ */
7736
+ adminContactPhone?: string | null;
7737
+ /**
7738
+ * Gets or sets the admin contact email.
7739
+ */
7740
+ adminContactEmail?: string | null;
7692
7741
  checkoutPlatform?: CheckoutPlatform;
7693
7742
  /**
7694
7743
  * Gets or sets the booking link override if checkout will occur externally.
@@ -31158,6 +31207,18 @@ type SessionPatch = {
31158
31207
  * Gets or sets the contact email.
31159
31208
  */
31160
31209
  contactEmail?: string | null;
31210
+ /**
31211
+ * Gets or sets the admin contact name.
31212
+ */
31213
+ adminContactName?: string | null;
31214
+ /**
31215
+ * Gets or sets the admin contact phone.
31216
+ */
31217
+ adminContactPhone?: string | null;
31218
+ /**
31219
+ * Gets or sets the admin contact email.
31220
+ */
31221
+ adminContactEmail?: string | null;
31161
31222
  checkoutPlatform?: CheckoutPlatform;
31162
31223
  /**
31163
31224
  * Gets or sets the booking link override if checkout will occur externally.
@@ -38121,6 +38182,18 @@ type SessionCreate = {
38121
38182
  * Gets or sets the contact email.
38122
38183
  */
38123
38184
  contactEmail?: string | null;
38185
+ /**
38186
+ * Gets or sets the admin contact name.
38187
+ */
38188
+ adminContactName?: string | null;
38189
+ /**
38190
+ * Gets or sets the admin contact phone.
38191
+ */
38192
+ adminContactPhone?: string | null;
38193
+ /**
38194
+ * Gets or sets the admin contact email.
38195
+ */
38196
+ adminContactEmail?: string | null;
38124
38197
  /**
38125
38198
  * Gets or sets the booking link override if checkout will occur externally.
38126
38199
  */
@@ -43915,6 +43988,9 @@ type TemplateFieldPermission = {
43915
43988
  contactName?: FieldPermission;
43916
43989
  contactPhone?: FieldPermission;
43917
43990
  contactEmail?: FieldPermission;
43991
+ adminContactName?: FieldPermission;
43992
+ adminContactPhone?: FieldPermission;
43993
+ adminContactEmail?: FieldPermission;
43918
43994
  orderConfimationText?: FieldPermission;
43919
43995
  postCompletionSubject?: FieldPermission;
43920
43996
  postCompletionText?: FieldPermission;
@@ -44106,6 +44182,18 @@ type TemplateDetail = {
44106
44182
  * Gets or sets the templates contact email.
44107
44183
  */
44108
44184
  contactEmail?: string | null;
44185
+ /**
44186
+ * Gets or sets the templates admin contact name.
44187
+ */
44188
+ adminContactName?: string | null;
44189
+ /**
44190
+ * Gets or sets the templates admin contact phone.
44191
+ */
44192
+ adminContactPhone?: string | null;
44193
+ /**
44194
+ * Gets or sets the templates admin contact email.
44195
+ */
44196
+ adminContactEmail?: string | null;
44109
44197
  /**
44110
44198
  * Gets or sets the order confirmation text.
44111
44199
  */
@@ -44127,6 +44215,7 @@ type TemplateDetail = {
44127
44215
  */
44128
44216
  reminderHoursBeforeStart?: number | null;
44129
44217
  bookingCutoff?: CourseBookingCutoff;
44218
+ checkoutPlatform?: CheckoutPlatform;
44130
44219
  /**
44131
44220
  * Gets or sets the booking link override if checkout will occur externally.
44132
44221
  */
@@ -44286,6 +44375,18 @@ type TemplateDetailPatch = {
44286
44375
  * Gets or sets the templates contact email.
44287
44376
  */
44288
44377
  contactEmail?: string | null;
44378
+ /**
44379
+ * Gets or sets the templates admin contact name.
44380
+ */
44381
+ adminContactName?: string | null;
44382
+ /**
44383
+ * Gets or sets the templates admin contact phone.
44384
+ */
44385
+ adminContactPhone?: string | null;
44386
+ /**
44387
+ * Gets or sets the templates admin contact email.
44388
+ */
44389
+ adminContactEmail?: string | null;
44289
44390
  /**
44290
44391
  * Gets or sets the order confirmation text.
44291
44392
  */
@@ -44697,6 +44798,9 @@ type TemplateFieldPermissionPatch = {
44697
44798
  contactName?: FieldPermission;
44698
44799
  contactPhone?: FieldPermission;
44699
44800
  contactEmail?: FieldPermission;
44801
+ adminContactName?: FieldPermission;
44802
+ adminContactPhone?: FieldPermission;
44803
+ adminContactEmail?: FieldPermission;
44700
44804
  orderConfimationText?: FieldPermission;
44701
44805
  postCompletionSubject?: FieldPermission;
44702
44806
  postCompletionText?: FieldPermission;
@@ -45473,6 +45577,9 @@ type CreateTemplateFieldPermission = {
45473
45577
  contactName?: FieldPermission;
45474
45578
  contactPhone?: FieldPermission;
45475
45579
  contactEmail?: FieldPermission;
45580
+ adminContactName?: FieldPermission;
45581
+ adminContactPhone?: FieldPermission;
45582
+ adminContactEmail?: FieldPermission;
45476
45583
  orderConfimationText?: FieldPermission;
45477
45584
  postCompletionSubject?: FieldPermission;
45478
45585
  postCompletionText?: FieldPermission;
package/dist/reach-sdk.js CHANGED
@@ -40384,6 +40384,7 @@ const request = (config, options, axiosClient = axios) => {
40384
40384
  })(BookingStatus || {});var CheckoutPlatform = /* @__PURE__ */ ((CheckoutPlatform2) => {
40385
40385
  CheckoutPlatform2["PLAYED"] = "Played";
40386
40386
  CheckoutPlatform2["EXTERNAL"] = "External";
40387
+ CheckoutPlatform2["EMAIL_PHONE"] = "EmailPhone";
40387
40388
  return CheckoutPlatform2;
40388
40389
  })(CheckoutPlatform || {});var ContactOnConfirmation = /* @__PURE__ */ ((ContactOnConfirmation2) => {
40389
40390
  ContactOnConfirmation2["ORGANISATION"] = "Organisation";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "reach-api-sdk",
3
- "version": "1.0.176",
3
+ "version": "1.0.178",
4
4
  "description": "sdk for reach api",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -119019,6 +119019,7 @@ components:
119019
119019
  enum:
119020
119020
  - Played
119021
119021
  - External
119022
+ - EmailPhone
119022
119023
  type: string
119023
119024
  description: The Checkout platform.
119024
119025
  ChoiceMessage:
@@ -119252,6 +119253,18 @@ components:
119252
119253
  minLength: 1
119253
119254
  type: string
119254
119255
  description: Gets or sets the contact email.
119256
+ adminContactName:
119257
+ type: string
119258
+ description: Gets or sets the admin contact name.
119259
+ nullable: true
119260
+ adminContactPhone:
119261
+ type: string
119262
+ description: Gets or sets the admin contact phone.
119263
+ nullable: true
119264
+ adminContactEmail:
119265
+ type: string
119266
+ description: Gets or sets the admin contact email.
119267
+ nullable: true
119255
119268
  reminderHoursBeforeStart:
119256
119269
  type: integer
119257
119270
  description: Gets or sets the reminder hours before start.
@@ -119593,6 +119606,18 @@ components:
119593
119606
  type: string
119594
119607
  description: Gets or sets the contact email.
119595
119608
  nullable: true
119609
+ adminContactName:
119610
+ type: string
119611
+ description: Gets or sets the admin contact name.
119612
+ nullable: true
119613
+ adminContactPhone:
119614
+ type: string
119615
+ description: Gets or sets the admin contact phone.
119616
+ nullable: true
119617
+ adminContactEmail:
119618
+ type: string
119619
+ description: Gets or sets the admin contact email.
119620
+ nullable: true
119596
119621
  bookingLinkOverride:
119597
119622
  type: string
119598
119623
  description: Gets or sets the booking link override if checkout will occur externally.
@@ -119790,6 +119815,18 @@ components:
119790
119815
  type: string
119791
119816
  description: Gets or sets the contact email.
119792
119817
  nullable: true
119818
+ adminContactName:
119819
+ type: string
119820
+ description: Gets or sets the admin contact name.
119821
+ nullable: true
119822
+ adminContactPhone:
119823
+ type: string
119824
+ description: Gets or sets the admin contact phone.
119825
+ nullable: true
119826
+ adminContactEmail:
119827
+ type: string
119828
+ description: Gets or sets the admin contact email.
119829
+ nullable: true
119793
119830
  checkoutPlatform:
119794
119831
  $ref: '#/components/schemas/CheckoutPlatform'
119795
119832
  bookingLinkOverride:
@@ -120603,6 +120640,12 @@ components:
120603
120640
  $ref: '#/components/schemas/FieldPermission'
120604
120641
  contactEmail:
120605
120642
  $ref: '#/components/schemas/FieldPermission'
120643
+ adminContactName:
120644
+ $ref: '#/components/schemas/FieldPermission'
120645
+ adminContactPhone:
120646
+ $ref: '#/components/schemas/FieldPermission'
120647
+ adminContactEmail:
120648
+ $ref: '#/components/schemas/FieldPermission'
120606
120649
  orderConfimationText:
120607
120650
  $ref: '#/components/schemas/FieldPermission'
120608
120651
  postCompletionSubject:
@@ -127751,6 +127794,18 @@ components:
127751
127794
  minLength: 1
127752
127795
  type: string
127753
127796
  description: Gets or sets the contact email.
127797
+ adminContactName:
127798
+ type: string
127799
+ description: Gets or sets the admin contact name.
127800
+ nullable: true
127801
+ adminContactPhone:
127802
+ type: string
127803
+ description: Gets or sets the admin contact phone.
127804
+ nullable: true
127805
+ adminContactEmail:
127806
+ type: string
127807
+ description: Gets or sets the admin contact email.
127808
+ nullable: true
127754
127809
  reminderHoursBeforeStart:
127755
127810
  type: integer
127756
127811
  description: Gets or sets the reminder hours before start.
@@ -127998,6 +128053,18 @@ components:
127998
128053
  type: string
127999
128054
  description: Gets or sets the contact email.
128000
128055
  nullable: true
128056
+ adminContactName:
128057
+ type: string
128058
+ description: Gets or sets the admin contact name.
128059
+ nullable: true
128060
+ adminContactPhone:
128061
+ type: string
128062
+ description: Gets or sets the admin contact phone.
128063
+ nullable: true
128064
+ adminContactEmail:
128065
+ type: string
128066
+ description: Gets or sets the admin contact email.
128067
+ nullable: true
128001
128068
  bookingLinkOverride:
128002
128069
  type: string
128003
128070
  description: Gets or sets the booking link override if checkout will occur externally.
@@ -128175,6 +128242,18 @@ components:
128175
128242
  type: string
128176
128243
  description: Gets or sets the contact email.
128177
128244
  nullable: true
128245
+ adminContactName:
128246
+ type: string
128247
+ description: Gets or sets the admin contact name.
128248
+ nullable: true
128249
+ adminContactPhone:
128250
+ type: string
128251
+ description: Gets or sets the admin contact phone.
128252
+ nullable: true
128253
+ adminContactEmail:
128254
+ type: string
128255
+ description: Gets or sets the admin contact email.
128256
+ nullable: true
128178
128257
  checkoutPlatform:
128179
128258
  $ref: '#/components/schemas/CheckoutPlatform'
128180
128259
  bookingLinkOverride:
@@ -130238,6 +130317,18 @@ components:
130238
130317
  type: string
130239
130318
  description: Gets or sets the templates contact email.
130240
130319
  nullable: true
130320
+ adminContactName:
130321
+ type: string
130322
+ description: Gets or sets the templates admin contact name.
130323
+ nullable: true
130324
+ adminContactPhone:
130325
+ type: string
130326
+ description: Gets or sets the templates admin contact phone.
130327
+ nullable: true
130328
+ adminContactEmail:
130329
+ type: string
130330
+ description: Gets or sets the templates admin contact email.
130331
+ nullable: true
130241
130332
  orderConfimationText:
130242
130333
  type: string
130243
130334
  description: Gets or sets the order confirmation text.
@@ -130261,6 +130352,8 @@ components:
130261
130352
  nullable: true
130262
130353
  bookingCutoff:
130263
130354
  $ref: '#/components/schemas/CourseBookingCutoff'
130355
+ checkoutPlatform:
130356
+ $ref: '#/components/schemas/CheckoutPlatform'
130264
130357
  bookingLinkOverride:
130265
130358
  type: string
130266
130359
  description: Gets or sets the booking link override if checkout will occur externally.
@@ -130411,6 +130504,18 @@ components:
130411
130504
  type: string
130412
130505
  description: Gets or sets the templates contact email.
130413
130506
  nullable: true
130507
+ adminContactName:
130508
+ type: string
130509
+ description: Gets or sets the templates admin contact name.
130510
+ nullable: true
130511
+ adminContactPhone:
130512
+ type: string
130513
+ description: Gets or sets the templates admin contact phone.
130514
+ nullable: true
130515
+ adminContactEmail:
130516
+ type: string
130517
+ description: Gets or sets the templates admin contact email.
130518
+ nullable: true
130414
130519
  orderConfimationText:
130415
130520
  type: string
130416
130521
  description: Gets or sets the order confirmation text.
@@ -130579,6 +130684,12 @@ components:
130579
130684
  $ref: '#/components/schemas/FieldPermission'
130580
130685
  contactEmail:
130581
130686
  $ref: '#/components/schemas/FieldPermission'
130687
+ adminContactName:
130688
+ $ref: '#/components/schemas/FieldPermission'
130689
+ adminContactPhone:
130690
+ $ref: '#/components/schemas/FieldPermission'
130691
+ adminContactEmail:
130692
+ $ref: '#/components/schemas/FieldPermission'
130582
130693
  orderConfimationText:
130583
130694
  $ref: '#/components/schemas/FieldPermission'
130584
130695
  postCompletionSubject:
@@ -130675,6 +130786,12 @@ components:
130675
130786
  $ref: '#/components/schemas/FieldPermission'
130676
130787
  contactEmail:
130677
130788
  $ref: '#/components/schemas/FieldPermission'
130789
+ adminContactName:
130790
+ $ref: '#/components/schemas/FieldPermission'
130791
+ adminContactPhone:
130792
+ $ref: '#/components/schemas/FieldPermission'
130793
+ adminContactEmail:
130794
+ $ref: '#/components/schemas/FieldPermission'
130678
130795
  orderConfimationText:
130679
130796
  $ref: '#/components/schemas/FieldPermission'
130680
130797
  postCompletionSubject:
@@ -9,4 +9,5 @@
9
9
  export enum CheckoutPlatform {
10
10
  PLAYED = 'Played',
11
11
  EXTERNAL = 'External',
12
+ EMAIL_PHONE = 'EmailPhone',
12
13
  }
@@ -156,6 +156,18 @@ export type Course = {
156
156
  * Gets or sets the contact email.
157
157
  */
158
158
  contactEmail: string;
159
+ /**
160
+ * Gets or sets the admin contact name.
161
+ */
162
+ adminContactName?: string | null;
163
+ /**
164
+ * Gets or sets the admin contact phone.
165
+ */
166
+ adminContactPhone?: string | null;
167
+ /**
168
+ * Gets or sets the admin contact email.
169
+ */
170
+ adminContactEmail?: string | null;
159
171
  /**
160
172
  * Gets or sets the reminder hours before start.
161
173
  */
@@ -106,6 +106,18 @@ export type CourseCreate = {
106
106
  * Gets or sets the contact email.
107
107
  */
108
108
  contactEmail?: string | null;
109
+ /**
110
+ * Gets or sets the admin contact name.
111
+ */
112
+ adminContactName?: string | null;
113
+ /**
114
+ * Gets or sets the admin contact phone.
115
+ */
116
+ adminContactPhone?: string | null;
117
+ /**
118
+ * Gets or sets the admin contact email.
119
+ */
120
+ adminContactEmail?: string | null;
109
121
  /**
110
122
  * Gets or sets the booking link override if checkout will occur externally.
111
123
  */
@@ -110,6 +110,18 @@ export type CoursePatch = {
110
110
  * Gets or sets the contact email.
111
111
  */
112
112
  contactEmail?: string | null;
113
+ /**
114
+ * Gets or sets the admin contact name.
115
+ */
116
+ adminContactName?: string | null;
117
+ /**
118
+ * Gets or sets the admin contact phone.
119
+ */
120
+ adminContactPhone?: string | null;
121
+ /**
122
+ * Gets or sets the admin contact email.
123
+ */
124
+ adminContactEmail?: string | null;
113
125
  checkoutPlatform?: CheckoutPlatform;
114
126
  /**
115
127
  * Gets or sets the booking link override if checkout will occur externally.
@@ -60,6 +60,9 @@ export type CreateTemplateFieldPermission = {
60
60
  contactName?: FieldPermission;
61
61
  contactPhone?: FieldPermission;
62
62
  contactEmail?: FieldPermission;
63
+ adminContactName?: FieldPermission;
64
+ adminContactPhone?: FieldPermission;
65
+ adminContactEmail?: FieldPermission;
63
66
  orderConfimationText?: FieldPermission;
64
67
  postCompletionSubject?: FieldPermission;
65
68
  postCompletionText?: FieldPermission;
@@ -149,6 +149,18 @@ export type Session = {
149
149
  * Gets or sets the contact email.
150
150
  */
151
151
  contactEmail: string;
152
+ /**
153
+ * Gets or sets the admin contact name.
154
+ */
155
+ adminContactName?: string | null;
156
+ /**
157
+ * Gets or sets the admin contact phone.
158
+ */
159
+ adminContactPhone?: string | null;
160
+ /**
161
+ * Gets or sets the admin contact email.
162
+ */
163
+ adminContactEmail?: string | null;
152
164
  /**
153
165
  * Gets or sets the reminder hours before start.
154
166
  */
@@ -106,6 +106,18 @@ export type SessionCreate = {
106
106
  * Gets or sets the contact email.
107
107
  */
108
108
  contactEmail?: string | null;
109
+ /**
110
+ * Gets or sets the admin contact name.
111
+ */
112
+ adminContactName?: string | null;
113
+ /**
114
+ * Gets or sets the admin contact phone.
115
+ */
116
+ adminContactPhone?: string | null;
117
+ /**
118
+ * Gets or sets the admin contact email.
119
+ */
120
+ adminContactEmail?: string | null;
109
121
  /**
110
122
  * Gets or sets the booking link override if checkout will occur externally.
111
123
  */
@@ -109,6 +109,18 @@ export type SessionPatch = {
109
109
  * Gets or sets the contact email.
110
110
  */
111
111
  contactEmail?: string | null;
112
+ /**
113
+ * Gets or sets the admin contact name.
114
+ */
115
+ adminContactName?: string | null;
116
+ /**
117
+ * Gets or sets the admin contact phone.
118
+ */
119
+ adminContactPhone?: string | null;
120
+ /**
121
+ * Gets or sets the admin contact email.
122
+ */
123
+ adminContactEmail?: string | null;
112
124
  checkoutPlatform?: CheckoutPlatform;
113
125
  /**
114
126
  * Gets or sets the booking link override if checkout will occur externally.
@@ -3,6 +3,7 @@
3
3
  /* tslint:disable */
4
4
  /* eslint-disable */
5
5
 
6
+ import type { CheckoutPlatform } from './CheckoutPlatform';
6
7
  import type { CourseBookingCutoff } from './CourseBookingCutoff';
7
8
  import type { Deal } from './Deal';
8
9
  import type { Gender } from './Gender';
@@ -130,6 +131,18 @@ export type TemplateDetail = {
130
131
  * Gets or sets the templates contact email.
131
132
  */
132
133
  contactEmail?: string | null;
134
+ /**
135
+ * Gets or sets the templates admin contact name.
136
+ */
137
+ adminContactName?: string | null;
138
+ /**
139
+ * Gets or sets the templates admin contact phone.
140
+ */
141
+ adminContactPhone?: string | null;
142
+ /**
143
+ * Gets or sets the templates admin contact email.
144
+ */
145
+ adminContactEmail?: string | null;
133
146
  /**
134
147
  * Gets or sets the order confirmation text.
135
148
  */
@@ -151,6 +164,7 @@ export type TemplateDetail = {
151
164
  */
152
165
  reminderHoursBeforeStart?: number | null;
153
166
  bookingCutoff?: CourseBookingCutoff;
167
+ checkoutPlatform?: CheckoutPlatform;
154
168
  /**
155
169
  * Gets or sets the booking link override if checkout will occur externally.
156
170
  */
@@ -110,6 +110,18 @@ export type TemplateDetailPatch = {
110
110
  * Gets or sets the templates contact email.
111
111
  */
112
112
  contactEmail?: string | null;
113
+ /**
114
+ * Gets or sets the templates admin contact name.
115
+ */
116
+ adminContactName?: string | null;
117
+ /**
118
+ * Gets or sets the templates admin contact phone.
119
+ */
120
+ adminContactPhone?: string | null;
121
+ /**
122
+ * Gets or sets the templates admin contact email.
123
+ */
124
+ adminContactEmail?: string | null;
113
125
  /**
114
126
  * Gets or sets the order confirmation text.
115
127
  */
@@ -60,6 +60,9 @@ export type TemplateFieldPermission = {
60
60
  contactName?: FieldPermission;
61
61
  contactPhone?: FieldPermission;
62
62
  contactEmail?: FieldPermission;
63
+ adminContactName?: FieldPermission;
64
+ adminContactPhone?: FieldPermission;
65
+ adminContactEmail?: FieldPermission;
63
66
  orderConfimationText?: FieldPermission;
64
67
  postCompletionSubject?: FieldPermission;
65
68
  postCompletionText?: FieldPermission;
@@ -40,6 +40,9 @@ export type TemplateFieldPermissionPatch = {
40
40
  contactName?: FieldPermission;
41
41
  contactPhone?: FieldPermission;
42
42
  contactEmail?: FieldPermission;
43
+ adminContactName?: FieldPermission;
44
+ adminContactPhone?: FieldPermission;
45
+ adminContactEmail?: FieldPermission;
43
46
  orderConfimationText?: FieldPermission;
44
47
  postCompletionSubject?: FieldPermission;
45
48
  postCompletionText?: FieldPermission;