@reposit/api-client 6.36.0 → 6.38.0

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/api.d.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  /// <reference path="../src/custom.d.ts" />
2
- import { Configuration } from './configuration';
3
- import { AxiosPromise, AxiosInstance } from 'axios';
4
- import { RequestArgs, BaseAPI } from './base';
2
+ import { Configuration } from "./configuration";
3
+ import { AxiosPromise, AxiosInstance } from "axios";
4
+ import { RequestArgs, BaseAPI } from "./base";
5
5
  export interface AddItemsDTO {
6
6
  items: Array<CreateInsuredItemDTO>;
7
7
  }
@@ -203,6 +203,7 @@ export interface ClaimDTO {
203
203
  insuranceSentAt?: string;
204
204
  insuranceOutcomeExpectedAt?: string;
205
205
  evidenceChasers?: Array<EvidenceChaserDTO>;
206
+ resolvedForSupplierAt?: string;
206
207
  }
207
208
  export declare enum ClaimDTOStatusEnum {
208
209
  DRAFT = "DRAFT",
@@ -382,6 +383,7 @@ export interface ClaimWithCheckoutRelationsDTO {
382
383
  insuranceSentAt?: string;
383
384
  insuranceOutcomeExpectedAt?: string;
384
385
  evidenceChasers?: Array<EvidenceChaserDTO>;
386
+ resolvedForSupplierAt?: string;
385
387
  checkout: CheckoutWithTenancyDTO;
386
388
  }
387
389
  export declare enum ClaimWithCheckoutRelationsDTOStatusEnum {
@@ -1341,6 +1343,7 @@ export interface OrderDTO {
1341
1343
  integratorId?: string;
1342
1344
  integrator?: IntegratorDTO;
1343
1345
  manualPayments?: Array<OrderManualPaymentDTO>;
1346
+ refundHandling?: OrderDTORefundHandlingEnum;
1344
1347
  }
1345
1348
  export declare enum OrderDTOProductIdEnum {
1346
1349
  REPOSIT = "REPOSIT",
@@ -1357,6 +1360,10 @@ export declare enum OrderDTOStatusIdEnum {
1357
1360
  CANCELLED = "CANCELLED",
1358
1361
  REFUNDED = "REFUNDED"
1359
1362
  }
1363
+ export declare enum OrderDTORefundHandlingEnum {
1364
+ MANUAL = "MANUAL",
1365
+ AUTOMATIC = "AUTOMATIC"
1366
+ }
1360
1367
  export interface OrderManualPaymentDTO {
1361
1368
  id: string;
1362
1369
  orderId: string;
@@ -1376,6 +1383,7 @@ export interface OrderWithOrderCustomersDTO {
1376
1383
  integratorId?: string;
1377
1384
  integrator?: IntegratorDTO;
1378
1385
  manualPayments?: Array<OrderManualPaymentDTO>;
1386
+ refundHandling?: OrderWithOrderCustomersDTORefundHandlingEnum;
1379
1387
  orderCustomers: Array<OrderCustomerDTO>;
1380
1388
  }
1381
1389
  export declare enum OrderWithOrderCustomersDTOProductIdEnum {
@@ -1393,6 +1401,10 @@ export declare enum OrderWithOrderCustomersDTOStatusIdEnum {
1393
1401
  CANCELLED = "CANCELLED",
1394
1402
  REFUNDED = "REFUNDED"
1395
1403
  }
1404
+ export declare enum OrderWithOrderCustomersDTORefundHandlingEnum {
1405
+ MANUAL = "MANUAL",
1406
+ AUTOMATIC = "AUTOMATIC"
1407
+ }
1396
1408
  export interface OrganizationAttributesDTO {
1397
1409
  vatRegistered?: boolean;
1398
1410
  vatNumber?: string;
@@ -1830,6 +1842,7 @@ export declare enum QueueMessageDTOTypeEnum {
1830
1842
  PROCESSSTRIPECHARGEEXPIRED = "PROCESS_STRIPE_CHARGE_EXPIRED",
1831
1843
  PROCESSEXPIRINGCUSTOMERSOURCE = "PROCESS_EXPIRING_CUSTOMER_SOURCE",
1832
1844
  PROCESSSENDSLACKMESSAGE = "PROCESS_SEND_SLACK_MESSAGE",
1845
+ PROCESSSTRIPEREFUNDCREATED = "PROCESS_STRIPE_REFUND_CREATED",
1833
1846
  PAYMENTMETHODCARDAUTOMATICALLYUPDATED = "PAYMENT_METHOD_CARD_AUTOMATICALLY_UPDATED",
1834
1847
  MONTHLYDIRECTCOMMISSIONFORORGANIZATION = "MONTHLY_DIRECT_COMMISSION_FOR_ORGANIZATION",
1835
1848
  LANDLORDTRANSFERREMINDER = "LANDLORD_TRANSFER_REMINDER",
@@ -3199,7 +3212,7 @@ export interface ClaimsApiInterface {
3199
3212
  updateTenantDisputeMessage(claimId: string, updateTenantDisputeMessageDTO: UpdateTenantDisputeMessageDTO, options?: any): AxiosPromise<ClaimDTO>;
3200
3213
  verifyClaim(claimId: string, options?: any): AxiosPromise<ClaimDTO>;
3201
3214
  waiveDisputeFee(claimId: string, options?: any): AxiosPromise<ClaimDTO>;
3202
- zipDocuments(type: 'ADR' | 'INSURER', claimId: string, options?: any): AxiosPromise<object>;
3215
+ zipDocuments(type: "ADR" | "INSURER", claimId: string, options?: any): AxiosPromise<object>;
3203
3216
  }
3204
3217
  export declare class ClaimsApi extends BaseAPI implements ClaimsApiInterface {
3205
3218
  acknowledgeCaseSentToInsurer(claimId: string, options?: any): AxiosPromise<ClaimDTO>;
@@ -3224,7 +3237,7 @@ export declare class ClaimsApi extends BaseAPI implements ClaimsApiInterface {
3224
3237
  updateTenantDisputeMessage(claimId: string, updateTenantDisputeMessageDTO: UpdateTenantDisputeMessageDTO, options?: any): AxiosPromise<ClaimDTO>;
3225
3238
  verifyClaim(claimId: string, options?: any): AxiosPromise<ClaimDTO>;
3226
3239
  waiveDisputeFee(claimId: string, options?: any): AxiosPromise<ClaimDTO>;
3227
- zipDocuments(type: 'ADR' | 'INSURER', claimId: string, options?: any): AxiosPromise<object>;
3240
+ zipDocuments(type: "ADR" | "INSURER", claimId: string, options?: any): AxiosPromise<object>;
3228
3241
  }
3229
3242
  export declare const CommissionApiAxiosParamCreator: (configuration?: Configuration) => {
3230
3243
  generateCommissionCsvForPeriod(period: string, options?: any): RequestArgs;
@@ -3908,7 +3921,7 @@ export interface OrganizationsApiInterface {
3908
3921
  confirmBankAccounts(id: string, options?: any): AxiosPromise<OrganizationDTO>;
3909
3922
  createOrganization(createOrganizationDTO: CreateOrganizationDTO, options?: any): AxiosPromise<OrganizationDTO>;
3910
3923
  disableProductCreation(id: string, options?: any): AxiosPromise<OrganizationDTO>;
3911
- dismissOrganizationMessage(messageId: 'featureBankAccounts' | 'warningBankAccounts', id: string, options?: any): AxiosPromise<OrganizationDTO>;
3924
+ dismissOrganizationMessage(messageId: "featureBankAccounts" | "warningBankAccounts", id: string, options?: any): AxiosPromise<OrganizationDTO>;
3912
3925
  enableProductCreation(id: string, options?: any): AxiosPromise<OrganizationDTO>;
3913
3926
  fetchAddressesByOrganizationId(id: string, options?: any): AxiosPromise<Array<AddressDTO>>;
3914
3927
  fetchLandlordsByOrganizationId(id: string, options?: any): AxiosPromise<Array<LandlordDTO>>;
@@ -3934,7 +3947,7 @@ export declare class OrganizationsApi extends BaseAPI implements OrganizationsAp
3934
3947
  confirmBankAccounts(id: string, options?: any): AxiosPromise<OrganizationDTO>;
3935
3948
  createOrganization(createOrganizationDTO: CreateOrganizationDTO, options?: any): AxiosPromise<OrganizationDTO>;
3936
3949
  disableProductCreation(id: string, options?: any): AxiosPromise<OrganizationDTO>;
3937
- dismissOrganizationMessage(messageId: 'featureBankAccounts' | 'warningBankAccounts', id: string, options?: any): AxiosPromise<OrganizationDTO>;
3950
+ dismissOrganizationMessage(messageId: "featureBankAccounts" | "warningBankAccounts", id: string, options?: any): AxiosPromise<OrganizationDTO>;
3938
3951
  enableProductCreation(id: string, options?: any): AxiosPromise<OrganizationDTO>;
3939
3952
  fetchAddressesByOrganizationId(id: string, options?: any): AxiosPromise<AddressDTO[]>;
3940
3953
  fetchLandlordsByOrganizationId(id: string, options?: any): AxiosPromise<LandlordDTO[]>;
@@ -4264,7 +4277,7 @@ export interface ReferencesApiInterface {
4264
4277
  getChecks(id: string, options?: any): AxiosPromise<Array<CheckDTO>>;
4265
4278
  getReferenceDocuments(id: string, options?: any): AxiosPromise<Array<ReferenceDocumentDTO>>;
4266
4279
  readyForReview(id: string, options?: any): AxiosPromise<ReferenceDTO>;
4267
- searchReferences(status: string, page: number, size: number, sortBy?: 'CREATED_AT', options?: any): AxiosPromise<SearchReferencesResultsDTO>;
4280
+ searchReferences(status: string, page: number, size: number, sortBy?: "CREATED_AT", options?: any): AxiosPromise<SearchReferencesResultsDTO>;
4268
4281
  submitChecks(id: string, options?: any): AxiosPromise<Array<CheckDTO>>;
4269
4282
  }
4270
4283
  export declare class ReferencesApi extends BaseAPI implements ReferencesApiInterface {
@@ -4273,7 +4286,7 @@ export declare class ReferencesApi extends BaseAPI implements ReferencesApiInter
4273
4286
  getChecks(id: string, options?: any): AxiosPromise<CheckDTO[]>;
4274
4287
  getReferenceDocuments(id: string, options?: any): AxiosPromise<ReferenceDocumentDTO[]>;
4275
4288
  readyForReview(id: string, options?: any): AxiosPromise<ReferenceDTO>;
4276
- searchReferences(status: string, page: number, size: number, sortBy?: 'CREATED_AT', options?: any): AxiosPromise<SearchReferencesResultsDTO>;
4289
+ searchReferences(status: string, page: number, size: number, sortBy?: "CREATED_AT", options?: any): AxiosPromise<SearchReferencesResultsDTO>;
4277
4290
  submitChecks(id: string, options?: any): AxiosPromise<CheckDTO[]>;
4278
4291
  }
4279
4292
  export declare const RepositOffersApiAxiosParamCreator: (configuration?: Configuration) => {
@@ -4308,8 +4321,8 @@ export interface RepositOffersApiInterface {
4308
4321
  createOffer(offerToTenantRequestDTO: OfferToTenantRequestDTO, options?: any): AxiosPromise<object>;
4309
4322
  deleteOffer(id: string, options?: any): AxiosPromise<object>;
4310
4323
  getRepositOffer(id: string, token: string, options?: any): AxiosPromise<RepositOfferWithRecipientDTO>;
4311
- respondToOffer(id: string, choice: 'REPOSIT' | 'CASH_DEPOSIT', token: string, options?: any): AxiosPromise<object>;
4312
- searchOffers(page: number, size: number, organizationId: string, query?: string, status?: 'PENDING' | 'REPOSIT_CHOSEN' | 'CASH_DEPOSIT_CHOSEN', orderStatus?: 'DRAFT' | 'PENDING' | 'COMPLETE' | 'CANCELLED' | 'REFUNDED', options?: any): AxiosPromise<SearchRepositOfferResultsDTO>;
4324
+ respondToOffer(id: string, choice: "REPOSIT" | "CASH_DEPOSIT", token: string, options?: any): AxiosPromise<object>;
4325
+ searchOffers(page: number, size: number, organizationId: string, query?: string, status?: "PENDING" | "REPOSIT_CHOSEN" | "CASH_DEPOSIT_CHOSEN", orderStatus?: "DRAFT" | "PENDING" | "COMPLETE" | "CANCELLED" | "REFUNDED", options?: any): AxiosPromise<SearchRepositOfferResultsDTO>;
4313
4326
  sendReminder(id: string, options?: any): AxiosPromise<object>;
4314
4327
  }
4315
4328
  export declare class RepositOffersApi extends BaseAPI implements RepositOffersApiInterface {
@@ -4317,8 +4330,8 @@ export declare class RepositOffersApi extends BaseAPI implements RepositOffersAp
4317
4330
  createOffer(offerToTenantRequestDTO: OfferToTenantRequestDTO, options?: any): AxiosPromise<object>;
4318
4331
  deleteOffer(id: string, options?: any): AxiosPromise<object>;
4319
4332
  getRepositOffer(id: string, token: string, options?: any): AxiosPromise<RepositOfferWithRecipientDTO>;
4320
- respondToOffer(id: string, choice: 'REPOSIT' | 'CASH_DEPOSIT', token: string, options?: any): AxiosPromise<object>;
4321
- searchOffers(page: number, size: number, organizationId: string, query?: string, status?: 'PENDING' | 'REPOSIT_CHOSEN' | 'CASH_DEPOSIT_CHOSEN', orderStatus?: 'DRAFT' | 'PENDING' | 'COMPLETE' | 'CANCELLED' | 'REFUNDED', options?: any): AxiosPromise<SearchRepositOfferResultsDTO>;
4333
+ respondToOffer(id: string, choice: "REPOSIT" | "CASH_DEPOSIT", token: string, options?: any): AxiosPromise<object>;
4334
+ searchOffers(page: number, size: number, organizationId: string, query?: string, status?: "PENDING" | "REPOSIT_CHOSEN" | "CASH_DEPOSIT_CHOSEN", orderStatus?: "DRAFT" | "PENDING" | "COMPLETE" | "CANCELLED" | "REFUNDED", options?: any): AxiosPromise<SearchRepositOfferResultsDTO>;
4322
4335
  sendReminder(id: string, options?: any): AxiosPromise<object>;
4323
4336
  }
4324
4337
  export declare const RepositsApiAxiosParamCreator: (configuration?: Configuration) => {
@@ -4545,11 +4558,11 @@ export declare const TenancyInventoriesApiFactory: (configuration?: Configuratio
4545
4558
  };
4546
4559
  export interface TenancyInventoriesApiInterface {
4547
4560
  disableWarnings(id: string, tenancyId: string, options?: any): AxiosPromise<TenancyInventoryDTO>;
4548
- tenantConfirmation(token: string, response: 'CONFIRMED' | 'UNCONFIRMED', tenancyId: string, options?: any): AxiosPromise<object>;
4561
+ tenantConfirmation(token: string, response: "CONFIRMED" | "UNCONFIRMED", tenancyId: string, options?: any): AxiosPromise<object>;
4549
4562
  }
4550
4563
  export declare class TenancyInventoriesApi extends BaseAPI implements TenancyInventoriesApiInterface {
4551
4564
  disableWarnings(id: string, tenancyId: string, options?: any): AxiosPromise<TenancyInventoryDTO>;
4552
- tenantConfirmation(token: string, response: 'CONFIRMED' | 'UNCONFIRMED', tenancyId: string, options?: any): AxiosPromise<object>;
4565
+ tenantConfirmation(token: string, response: "CONFIRMED" | "UNCONFIRMED", tenancyId: string, options?: any): AxiosPromise<object>;
4553
4566
  }
4554
4567
  export declare const TenancyInvitesApiAxiosParamCreator: (configuration?: Configuration) => {
4555
4568
  acceptTenancyInvite(token: string, clearSession: boolean, tenancyId: string, options?: any): RequestArgs;
@@ -4640,19 +4653,19 @@ export declare const TenancyOrdersApiFactory: (configuration?: Configuration, ba
4640
4653
  };
4641
4654
  export interface TenancyOrdersApiInterface {
4642
4655
  getTenancyOrderById(id: string, includeDeleted?: boolean, options?: any): AxiosPromise<TenancyOrderWithTenancyAndOrderCustomersDTO>;
4643
- optimisedSearch(organizationId: string, page: number, size: number, includeDeleted: boolean, onlyDeleted: boolean, query?: string, orderStatus?: 'DRAFT' | 'PENDING' | 'COMPLETE' | 'CANCELLED' | 'REFUNDED', tenancyStatus?: 'ACTIVE' | 'CHECKED_OUT' | 'OVERDUE' | 'ENDING_SOON' | 'CLOSING_SOON', sortBy?: 'CREATED_AT' | 'START_DATE' | 'END_DATE', sortDirection?: 'ASC' | 'DESC', letOnly?: boolean, options?: any): AxiosPromise<SearchTenancyOrderResultsDTO>;
4656
+ optimisedSearch(organizationId: string, page: number, size: number, includeDeleted: boolean, onlyDeleted: boolean, query?: string, orderStatus?: "DRAFT" | "PENDING" | "COMPLETE" | "CANCELLED" | "REFUNDED", tenancyStatus?: "ACTIVE" | "CHECKED_OUT" | "OVERDUE" | "ENDING_SOON" | "CLOSING_SOON", sortBy?: "CREATED_AT" | "START_DATE" | "END_DATE", sortDirection?: "ASC" | "DESC", letOnly?: boolean, options?: any): AxiosPromise<SearchTenancyOrderResultsDTO>;
4644
4657
  removeTenancyOrderById(id: string, removeTenancyOrderDTO: RemoveTenancyOrderDTO, options?: any): AxiosPromise<TenancyOrderWithTenancyAndOrderCustomersDTO>;
4645
4658
  reopenTenancyOrder(id: string, reopenRepositDTO: ReopenRepositDTO, options?: any): AxiosPromise<TenancyOrderWithTenancyAndOrderCustomersDTO>;
4646
- search(productId: string, organizationId: string, page: number, size: number, includeDeleted: boolean, onlyDeleted: boolean, query?: string, orderStatus?: 'DRAFT' | 'PENDING' | 'COMPLETE' | 'CANCELLED' | 'REFUNDED', tenancyStatus?: 'ACTIVE' | 'CHECKED_OUT' | 'OVERDUE' | 'ENDING_SOON' | 'CLOSING_SOON', sortBy?: 'CREATED_AT' | 'START_DATE' | 'END_DATE', sortDirection?: 'ASC' | 'DESC', letOnly?: boolean, options?: any): AxiosPromise<SearchTenancyOrderResultsDTO>;
4659
+ search(productId: string, organizationId: string, page: number, size: number, includeDeleted: boolean, onlyDeleted: boolean, query?: string, orderStatus?: "DRAFT" | "PENDING" | "COMPLETE" | "CANCELLED" | "REFUNDED", tenancyStatus?: "ACTIVE" | "CHECKED_OUT" | "OVERDUE" | "ENDING_SOON" | "CLOSING_SOON", sortBy?: "CREATED_AT" | "START_DATE" | "END_DATE", sortDirection?: "ASC" | "DESC", letOnly?: boolean, options?: any): AxiosPromise<SearchTenancyOrderResultsDTO>;
4647
4660
  sendOverdueChasers(id: string, options?: any): AxiosPromise<{}>;
4648
4661
  transferTenancyOrderToOrganization(id: string, transferTenancyOrderDTO: TransferTenancyOrderDTO, options?: any): AxiosPromise<TenancyOrderWithTenancyAndOrderCustomersDTO>;
4649
4662
  }
4650
4663
  export declare class TenancyOrdersApi extends BaseAPI implements TenancyOrdersApiInterface {
4651
4664
  getTenancyOrderById(id: string, includeDeleted?: boolean, options?: any): AxiosPromise<TenancyOrderWithTenancyAndOrderCustomersDTO>;
4652
- optimisedSearch(organizationId: string, page: number, size: number, includeDeleted: boolean, onlyDeleted: boolean, query?: string, orderStatus?: 'DRAFT' | 'PENDING' | 'COMPLETE' | 'CANCELLED' | 'REFUNDED', tenancyStatus?: 'ACTIVE' | 'CHECKED_OUT' | 'OVERDUE' | 'ENDING_SOON' | 'CLOSING_SOON', sortBy?: 'CREATED_AT' | 'START_DATE' | 'END_DATE', sortDirection?: 'ASC' | 'DESC', letOnly?: boolean, options?: any): AxiosPromise<SearchTenancyOrderResultsDTO>;
4665
+ optimisedSearch(organizationId: string, page: number, size: number, includeDeleted: boolean, onlyDeleted: boolean, query?: string, orderStatus?: "DRAFT" | "PENDING" | "COMPLETE" | "CANCELLED" | "REFUNDED", tenancyStatus?: "ACTIVE" | "CHECKED_OUT" | "OVERDUE" | "ENDING_SOON" | "CLOSING_SOON", sortBy?: "CREATED_AT" | "START_DATE" | "END_DATE", sortDirection?: "ASC" | "DESC", letOnly?: boolean, options?: any): AxiosPromise<SearchTenancyOrderResultsDTO>;
4653
4666
  removeTenancyOrderById(id: string, removeTenancyOrderDTO: RemoveTenancyOrderDTO, options?: any): AxiosPromise<TenancyOrderWithTenancyAndOrderCustomersDTO>;
4654
4667
  reopenTenancyOrder(id: string, reopenRepositDTO: ReopenRepositDTO, options?: any): AxiosPromise<TenancyOrderWithTenancyAndOrderCustomersDTO>;
4655
- search(productId: string, organizationId: string, page: number, size: number, includeDeleted: boolean, onlyDeleted: boolean, query?: string, orderStatus?: 'DRAFT' | 'PENDING' | 'COMPLETE' | 'CANCELLED' | 'REFUNDED', tenancyStatus?: 'ACTIVE' | 'CHECKED_OUT' | 'OVERDUE' | 'ENDING_SOON' | 'CLOSING_SOON', sortBy?: 'CREATED_AT' | 'START_DATE' | 'END_DATE', sortDirection?: 'ASC' | 'DESC', letOnly?: boolean, options?: any): AxiosPromise<SearchTenancyOrderResultsDTO>;
4668
+ search(productId: string, organizationId: string, page: number, size: number, includeDeleted: boolean, onlyDeleted: boolean, query?: string, orderStatus?: "DRAFT" | "PENDING" | "COMPLETE" | "CANCELLED" | "REFUNDED", tenancyStatus?: "ACTIVE" | "CHECKED_OUT" | "OVERDUE" | "ENDING_SOON" | "CLOSING_SOON", sortBy?: "CREATED_AT" | "START_DATE" | "END_DATE", sortDirection?: "ASC" | "DESC", letOnly?: boolean, options?: any): AxiosPromise<SearchTenancyOrderResultsDTO>;
4656
4669
  sendOverdueChasers(id: string, options?: any): AxiosPromise<Response>;
4657
4670
  transferTenancyOrderToOrganization(id: string, transferTenancyOrderDTO: TransferTenancyOrderDTO, options?: any): AxiosPromise<TenancyOrderWithTenancyAndOrderCustomersDTO>;
4658
4671
  }
@@ -4730,7 +4743,7 @@ export declare const UsersApiAxiosParamCreator: (configuration?: Configuration)
4730
4743
  completeOnboardingIntroduction(options?: any): RequestArgs;
4731
4744
  createOneTimeSessionToken(options?: any): RequestArgs;
4732
4745
  dismissNewProductUpdates(options?: any): RequestArgs;
4733
- dismissUserMessage(messageId: "featureClaimUploads" | "marketingMessageSwitchApril2023" | "minimumRepositPricingMarch2024" | "partnerDashboardBetaWelcome", options?: any): RequestArgs;
4746
+ dismissUserMessage(messageId: "featureClaimUploads" | "marketingMessageSwitchApril2023" | "minimumRepositPricingMarch2024" | "partnerDashboardBetaWelcome" | "partnerEOTChasersWelcome", options?: any): RequestArgs;
4734
4747
  findOneByID(id: string, options?: any): RequestArgs;
4735
4748
  getCustomer(options?: any): RequestArgs;
4736
4749
  getOrganizationUsers(id: string, options?: any): RequestArgs;
@@ -4750,7 +4763,7 @@ export declare const UsersApiFp: (configuration?: Configuration) => {
4750
4763
  completeOnboardingIntroduction(options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserDTO>;
4751
4764
  createOneTimeSessionToken(options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<OneTimeSessionTokenDTO>;
4752
4765
  dismissNewProductUpdates(options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserDTO>;
4753
- dismissUserMessage(messageId: "featureClaimUploads" | "marketingMessageSwitchApril2023" | "minimumRepositPricingMarch2024" | "partnerDashboardBetaWelcome", options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserDTO>;
4766
+ dismissUserMessage(messageId: "featureClaimUploads" | "marketingMessageSwitchApril2023" | "minimumRepositPricingMarch2024" | "partnerDashboardBetaWelcome" | "partnerEOTChasersWelcome", options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserDTO>;
4754
4767
  findOneByID(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserDTO>;
4755
4768
  getCustomer(options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<CustomerDTO>;
4756
4769
  getOrganizationUsers(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<OrganizationUserDTO[]>;
@@ -4770,7 +4783,7 @@ export declare const UsersApiFactory: (configuration?: Configuration, basePath?:
4770
4783
  completeOnboardingIntroduction(options?: any): AxiosPromise<UserDTO>;
4771
4784
  createOneTimeSessionToken(options?: any): AxiosPromise<OneTimeSessionTokenDTO>;
4772
4785
  dismissNewProductUpdates(options?: any): AxiosPromise<UserDTO>;
4773
- dismissUserMessage(messageId: "featureClaimUploads" | "marketingMessageSwitchApril2023" | "minimumRepositPricingMarch2024" | "partnerDashboardBetaWelcome", options?: any): AxiosPromise<UserDTO>;
4786
+ dismissUserMessage(messageId: "featureClaimUploads" | "marketingMessageSwitchApril2023" | "minimumRepositPricingMarch2024" | "partnerDashboardBetaWelcome" | "partnerEOTChasersWelcome", options?: any): AxiosPromise<UserDTO>;
4774
4787
  findOneByID(id: string, options?: any): AxiosPromise<UserDTO>;
4775
4788
  getCustomer(options?: any): AxiosPromise<CustomerDTO>;
4776
4789
  getOrganizationUsers(id: string, options?: any): AxiosPromise<OrganizationUserDTO[]>;
@@ -4790,7 +4803,7 @@ export interface UsersApiInterface {
4790
4803
  completeOnboardingIntroduction(options?: any): AxiosPromise<UserDTO>;
4791
4804
  createOneTimeSessionToken(options?: any): AxiosPromise<OneTimeSessionTokenDTO>;
4792
4805
  dismissNewProductUpdates(options?: any): AxiosPromise<UserDTO>;
4793
- dismissUserMessage(messageId: 'featureClaimUploads' | 'marketingMessageSwitchApril2023' | 'minimumRepositPricingMarch2024' | 'partnerDashboardBetaWelcome', options?: any): AxiosPromise<UserDTO>;
4806
+ dismissUserMessage(messageId: "featureClaimUploads" | "marketingMessageSwitchApril2023" | "minimumRepositPricingMarch2024" | "partnerDashboardBetaWelcome" | "partnerEOTChasersWelcome", options?: any): AxiosPromise<UserDTO>;
4794
4807
  findOneByID(id: string, options?: any): AxiosPromise<UserDTO>;
4795
4808
  getCustomer(options?: any): AxiosPromise<CustomerDTO>;
4796
4809
  getOrganizationUsers(id: string, options?: any): AxiosPromise<Array<OrganizationUserDTO>>;
@@ -4810,7 +4823,7 @@ export declare class UsersApi extends BaseAPI implements UsersApiInterface {
4810
4823
  completeOnboardingIntroduction(options?: any): AxiosPromise<UserDTO>;
4811
4824
  createOneTimeSessionToken(options?: any): AxiosPromise<OneTimeSessionTokenDTO>;
4812
4825
  dismissNewProductUpdates(options?: any): AxiosPromise<UserDTO>;
4813
- dismissUserMessage(messageId: 'featureClaimUploads' | 'marketingMessageSwitchApril2023' | 'minimumRepositPricingMarch2024' | 'partnerDashboardBetaWelcome', options?: any): AxiosPromise<UserDTO>;
4826
+ dismissUserMessage(messageId: "featureClaimUploads" | "marketingMessageSwitchApril2023" | "minimumRepositPricingMarch2024" | "partnerDashboardBetaWelcome" | "partnerEOTChasersWelcome", options?: any): AxiosPromise<UserDTO>;
4814
4827
  findOneByID(id: string, options?: any): AxiosPromise<UserDTO>;
4815
4828
  getCustomer(options?: any): AxiosPromise<CustomerDTO>;
4816
4829
  getOrganizationUsers(id: string, options?: any): AxiosPromise<OrganizationUserDTO[]>;