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/dist/reach-sdk.d.ts +1264 -258
- package/dist/reach-sdk.js +867 -213
- package/package.json +1 -1
- package/src/apiClient.ts +3 -0
- package/src/definition/swagger.yaml +4085 -1614
- package/src/index.ts +14 -0
- package/src/models/CustomFieldDataType.ts +22 -0
- package/src/models/CustomFieldDefinition.ts +100 -0
- package/src/models/CustomFieldDefinitionPage.ts +12 -0
- package/src/models/CustomFieldDefinitionPatch.ts +84 -0
- package/src/models/CustomFieldDefinitionPost.ts +80 -0
- package/src/models/CustomFieldDefinitionWithValue.ts +82 -0
- package/src/models/CustomFieldOption.ts +50 -0
- package/src/models/CustomFieldOptionDto.ts +14 -0
- package/src/models/CustomFieldOptionPost.ts +18 -0
- package/src/models/CustomFieldValueEntityType.ts +13 -0
- package/src/models/CustomFieldValueUpdate.ts +18 -0
- package/src/models/CustomFieldsBulkUpdate.ts +16 -0
- package/src/models/UpdateCustomFieldOption.ts +26 -0
- package/src/services/CoursesService.ts +63 -0
- package/src/services/CustomFieldsService.ts +780 -0
- package/src/services/PublicCoursesService.ts +36 -0
- package/src/services/PublicSessionsService.ts +36 -0
- package/src/services/PublicVenuesService.ts +36 -0
- package/src/services/SessionsService.ts +63 -0
- package/src/services/VenuesService.ts +63 -0
package/package.json
CHANGED
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);
|