reach-api-sdk 1.0.206 → 1.0.208
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 +16293 -14979
- package/dist/reach-sdk.js +1373 -417
- package/package.json +1 -1
- package/src/apiClient.ts +6 -0
- package/src/definition/swagger.yaml +3611 -267
- package/src/index.ts +18 -0
- package/src/models/Attendee.ts +9 -4
- package/src/models/AttendeePatch.ts +13 -0
- package/src/models/AttendeePost.ts +14 -1
- package/src/models/AttendeeWalletDeductionPreview.ts +51 -0
- package/src/models/CoursePatch.ts +2 -0
- package/src/models/CoursePost.ts +2 -0
- package/src/models/Customer.ts +6 -6
- package/src/models/CustomerAccountInvitePatch.ts +26 -0
- package/src/models/CustomerPatch.ts +2 -2
- package/src/models/CustomerPost.ts +2 -2
- package/src/models/CustomerWalletDeductionPreview.ts +36 -0
- package/src/models/EndUserIdentity.ts +4 -0
- package/src/models/Order.ts +6 -0
- package/src/models/RecentOrderActivityReport.ts +4 -0
- package/src/models/SessionPatch.ts +2 -0
- package/src/models/SessionPost.ts +2 -0
- package/src/models/SurveySubmitAttendee.ts +4 -0
- package/src/models/TenantSetting.ts +8 -0
- package/src/models/TotalRevenueReport.ts +4 -0
- package/src/models/VenuePatch.ts +2 -0
- package/src/models/VenuePost.ts +3 -0
- package/src/models/Wallet.ts +60 -0
- package/src/models/WalletDeductionPreview.ts +44 -0
- package/src/models/WalletPage.ts +12 -0
- package/src/models/WalletPatch.ts +23 -0
- package/src/models/WalletPost.ts +29 -0
- package/src/models/WalletRemoveCreditPost.ts +19 -0
- package/src/models/WalletTopUpPost.ts +19 -0
- package/src/models/WalletTrackingLevel.ts +12 -0
- package/src/models/WalletTransaction.ts +61 -0
- package/src/models/WalletTransactionPage.ts +12 -0
- package/src/models/WalletTransactionPatch.ts +22 -0
- package/src/models/WalletTransactionPost.ts +33 -0
- package/src/models/WalletTransactionType.ts +14 -0
- package/src/services/AttendeesService.ts +0 -30
- package/src/services/CustomersService.ts +35 -0
- package/src/services/WalletTransactionsService.ts +755 -0
- package/src/services/WalletsService.ts +901 -0
package/package.json
CHANGED
package/src/apiClient.ts
CHANGED
|
@@ -126,6 +126,8 @@ import { WaitlistActivityService } from './services/WaitlistActivityService';
|
|
|
126
126
|
import { WaitlistActivityReportService } from './services/WaitlistActivityReportService';
|
|
127
127
|
import { WaitlistOpportunityService } from './services/WaitlistOpportunityService';
|
|
128
128
|
import { WaitlistOpportunityReportService } from './services/WaitlistOpportunityReportService';
|
|
129
|
+
import { WalletsService } from './services/WalletsService';
|
|
130
|
+
import { WalletTransactionsService } from './services/WalletTransactionsService';
|
|
129
131
|
|
|
130
132
|
type HttpRequestConstructor = new (config: OpenAPIConfig) => BaseHttpRequest;
|
|
131
133
|
|
|
@@ -250,6 +252,8 @@ export class ApiClient {
|
|
|
250
252
|
public readonly waitlistActivityReport: WaitlistActivityReportService;
|
|
251
253
|
public readonly waitlistOpportunity: WaitlistOpportunityService;
|
|
252
254
|
public readonly waitlistOpportunityReport: WaitlistOpportunityReportService;
|
|
255
|
+
public readonly wallets: WalletsService;
|
|
256
|
+
public readonly walletTransactions: WalletTransactionsService;
|
|
253
257
|
|
|
254
258
|
public readonly request: BaseHttpRequest;
|
|
255
259
|
|
|
@@ -389,5 +393,7 @@ export class ApiClient {
|
|
|
389
393
|
this.waitlistActivityReport = new WaitlistActivityReportService(this.request);
|
|
390
394
|
this.waitlistOpportunity = new WaitlistOpportunityService(this.request);
|
|
391
395
|
this.waitlistOpportunityReport = new WaitlistOpportunityReportService(this.request);
|
|
396
|
+
this.wallets = new WalletsService(this.request);
|
|
397
|
+
this.walletTransactions = new WalletTransactionsService(this.request);
|
|
392
398
|
}
|
|
393
399
|
}
|