reach-api-sdk 1.0.204 → 1.0.206

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": "reach-api-sdk",
3
- "version": "1.0.204",
3
+ "version": "1.0.206",
4
4
  "description": "sdk for reach api",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/src/apiClient.ts CHANGED
@@ -19,6 +19,7 @@ import { CoursesService } from './services/CoursesService';
19
19
  import { CourseSessionsService } from './services/CourseSessionsService';
20
20
  import { CourseSessionSchedulesService } from './services/CourseSessionSchedulesService';
21
21
  import { CustomersService } from './services/CustomersService';
22
+ import { CustomFieldsService } from './services/CustomFieldsService';
22
23
  import { DealActivitiesService } from './services/DealActivitiesService';
23
24
  import { DealsService } from './services/DealsService';
24
25
  import { DiscountCodeUsesService } from './services/DiscountCodeUsesService';
@@ -142,6 +143,7 @@ export class ApiClient {
142
143
  public readonly courseSessions: CourseSessionsService;
143
144
  public readonly courseSessionSchedules: CourseSessionSchedulesService;
144
145
  public readonly customers: CustomersService;
146
+ public readonly customFields: CustomFieldsService;
145
147
  public readonly dealActivities: DealActivitiesService;
146
148
  public readonly deals: DealsService;
147
149
  public readonly discountCodeUses: DiscountCodeUsesService;
@@ -280,6 +282,7 @@ export class ApiClient {
280
282
  this.courseSessions = new CourseSessionsService(this.request);
281
283
  this.courseSessionSchedules = new CourseSessionSchedulesService(this.request);
282
284
  this.customers = new CustomersService(this.request);
285
+ this.customFields = new CustomFieldsService(this.request);
283
286
  this.dealActivities = new DealActivitiesService(this.request);
284
287
  this.deals = new DealsService(this.request);
285
288
  this.discountCodeUses = new DiscountCodeUsesService(this.request);