reach-api-sdk 1.0.210 → 1.0.211

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.
Files changed (42) hide show
  1. package/dist/reach-sdk.d.ts +2228 -169
  2. package/dist/reach-sdk.js +2618 -935
  3. package/package.json +1 -1
  4. package/src/apiClient.ts +15 -0
  5. package/src/definition/swagger.yaml +6733 -1147
  6. package/src/index.ts +28 -0
  7. package/src/models/AddressBookItem.ts +26 -0
  8. package/src/models/AddressBooksRequest.ts +22 -0
  9. package/src/models/DotdigitalCanonicalField.ts +17 -0
  10. package/src/models/DotdigitalSourceType.ts +15 -0
  11. package/src/models/IntegrationDotdigitalFieldMap.ts +55 -0
  12. package/src/models/IntegrationDotdigitalFieldMapPage.ts +12 -0
  13. package/src/models/IntegrationDotdigitalFieldMapPatch.ts +18 -0
  14. package/src/models/IntegrationDotdigitalFieldMapPost.ts +14 -0
  15. package/src/models/IntegrationDotdigitalLog.ts +65 -0
  16. package/src/models/IntegrationDotdigitalLogPage.ts +12 -0
  17. package/src/models/IntegrationDotdigitalLogPatch.ts +18 -0
  18. package/src/models/IntegrationDotdigitalLogPost.ts +14 -0
  19. package/src/models/IntegrationDotdigitalLogStatus.ts +13 -0
  20. package/src/models/IntegrationDotdigitalSettings.ts +66 -0
  21. package/src/models/IntegrationDotdigitalSettingsCreate.ts +38 -0
  22. package/src/models/IntegrationDotdigitalSettingsPage.ts +12 -0
  23. package/src/models/IntegrationDotdigitalSettingsPatch.ts +18 -0
  24. package/src/models/IntegrationDotdigitalSettingsPost.ts +14 -0
  25. package/src/models/IntegrationQueue.ts +57 -0
  26. package/src/models/IntegrationQueuePage.ts +12 -0
  27. package/src/models/IntegrationQueuePatch.ts +18 -0
  28. package/src/models/IntegrationQueuePost.ts +14 -0
  29. package/src/models/IntegrationType.ts +11 -0
  30. package/src/models/OrderItemReport.ts +4 -0
  31. package/src/services/CourseSessionsService.ts +30 -0
  32. package/src/services/DotdigitalService.ts +39 -0
  33. package/src/services/IntegrationDotDigitalSettingsService.ts +708 -0
  34. package/src/services/IntegrationDotdigitalFieldMapService.ts +662 -0
  35. package/src/services/IntegrationDotdigitalLogService.ts +662 -0
  36. package/src/services/IntegrationQueueService.ts +739 -0
  37. package/src/services/PublicCalendarService.ts +6 -0
  38. package/src/services/PublicScheduledSessionsService.ts +12 -0
  39. package/src/services/PublicSessionsService.ts +6 -0
  40. package/src/services/PublicVenuesService.ts +48 -0
  41. package/src/services/ScheduledSessionsService.ts +30 -0
  42. package/src/services/VenuesService.ts +60 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "reach-api-sdk",
3
- "version": "1.0.210",
3
+ "version": "1.0.211",
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
@@ -23,6 +23,7 @@ import { CustomFieldsService } from './services/CustomFieldsService';
23
23
  import { DealActivitiesService } from './services/DealActivitiesService';
24
24
  import { DealsService } from './services/DealsService';
25
25
  import { DiscountCodeUsesService } from './services/DiscountCodeUsesService';
26
+ import { DotdigitalService } from './services/DotdigitalService';
26
27
  import { EmailReminderSchedulesService } from './services/EmailReminderSchedulesService';
27
28
  import { EmailSettingsService } from './services/EmailSettingsService';
28
29
  import { EndUserIdentitySecureTokenService } from './services/EndUserIdentitySecureTokenService';
@@ -38,6 +39,10 @@ import { ImageLibraryCategoryService } from './services/ImageLibraryCategoryServ
38
39
  import { ImageLibraryImageService } from './services/ImageLibraryImageService';
39
40
  import { ImagesService } from './services/ImagesService';
40
41
  import { ImageUploadHistoryService } from './services/ImageUploadHistoryService';
42
+ import { IntegrationDotdigitalFieldMapService } from './services/IntegrationDotdigitalFieldMapService';
43
+ import { IntegrationDotdigitalLogService } from './services/IntegrationDotdigitalLogService';
44
+ import { IntegrationDotDigitalSettingsService } from './services/IntegrationDotDigitalSettingsService';
45
+ import { IntegrationQueueService } from './services/IntegrationQueueService';
41
46
  import { LeasingService } from './services/LeasingService';
42
47
  import { LocationsReportService } from './services/LocationsReportService';
43
48
  import { LoqatePlacesService } from './services/LoqatePlacesService';
@@ -149,6 +154,7 @@ export class ApiClient {
149
154
  public readonly dealActivities: DealActivitiesService;
150
155
  public readonly deals: DealsService;
151
156
  public readonly discountCodeUses: DiscountCodeUsesService;
157
+ public readonly dotdigital: DotdigitalService;
152
158
  public readonly emailReminderSchedules: EmailReminderSchedulesService;
153
159
  public readonly emailSettings: EmailSettingsService;
154
160
  public readonly endUserIdentitySecureToken: EndUserIdentitySecureTokenService;
@@ -164,6 +170,10 @@ export class ApiClient {
164
170
  public readonly imageLibraryImage: ImageLibraryImageService;
165
171
  public readonly images: ImagesService;
166
172
  public readonly imageUploadHistory: ImageUploadHistoryService;
173
+ public readonly integrationDotdigitalFieldMap: IntegrationDotdigitalFieldMapService;
174
+ public readonly integrationDotdigitalLog: IntegrationDotdigitalLogService;
175
+ public readonly integrationDotDigitalSettings: IntegrationDotDigitalSettingsService;
176
+ public readonly integrationQueue: IntegrationQueueService;
167
177
  public readonly leasing: LeasingService;
168
178
  public readonly locationsReport: LocationsReportService;
169
179
  public readonly loqatePlaces: LoqatePlacesService;
@@ -290,6 +300,7 @@ export class ApiClient {
290
300
  this.dealActivities = new DealActivitiesService(this.request);
291
301
  this.deals = new DealsService(this.request);
292
302
  this.discountCodeUses = new DiscountCodeUsesService(this.request);
303
+ this.dotdigital = new DotdigitalService(this.request);
293
304
  this.emailReminderSchedules = new EmailReminderSchedulesService(this.request);
294
305
  this.emailSettings = new EmailSettingsService(this.request);
295
306
  this.endUserIdentitySecureToken = new EndUserIdentitySecureTokenService(this.request);
@@ -305,6 +316,10 @@ export class ApiClient {
305
316
  this.imageLibraryImage = new ImageLibraryImageService(this.request);
306
317
  this.images = new ImagesService(this.request);
307
318
  this.imageUploadHistory = new ImageUploadHistoryService(this.request);
319
+ this.integrationDotdigitalFieldMap = new IntegrationDotdigitalFieldMapService(this.request);
320
+ this.integrationDotdigitalLog = new IntegrationDotdigitalLogService(this.request);
321
+ this.integrationDotDigitalSettings = new IntegrationDotDigitalSettingsService(this.request);
322
+ this.integrationQueue = new IntegrationQueueService(this.request);
308
323
  this.leasing = new LeasingService(this.request);
309
324
  this.locationsReport = new LocationsReportService(this.request);
310
325
  this.loqatePlaces = new LoqatePlacesService(this.request);