@ayasofyazilim/saas 0.0.167 → 0.0.168

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.
@@ -3,27 +3,35 @@ import type { OpenAPIConfig } from './core/OpenAPI';
3
3
  import { Interceptors } from './core/OpenAPI';
4
4
  import { FetchHttpRequest } from './core/FetchHttpRequest';
5
5
 
6
- import { AffiliationCodeService } from './sdk.gen';
7
- import { CustomsService } from './sdk.gen';
6
+ import { AdminAreaLevel1Service } from './sdk.gen';
7
+ import { AdminAreaLevel2Service } from './sdk.gen';
8
+ import { CountryService } from './sdk.gen';
9
+ import { CustomService } from './sdk.gen';
8
10
  import { IndividualService } from './sdk.gen';
9
11
  import { MerchantService } from './sdk.gen';
10
- import { OrganizationService } from './sdk.gen';
12
+ import { NeighborhoodService } from './sdk.gen';
11
13
  import { RefundPointService } from './sdk.gen';
14
+ import { RegionService } from './sdk.gen';
12
15
  import { TaxFreeService } from './sdk.gen';
13
16
  import { TaxOfficeService } from './sdk.gen';
17
+ import { UserAffiliationService } from './sdk.gen';
14
18
 
15
19
  type HttpRequestConstructor = new (config: OpenAPIConfig) => BaseHttpRequest;
16
20
 
17
21
  export class CRMServiceClient {
18
22
 
19
- public readonly affiliationCode: AffiliationCodeService;
20
- public readonly customs: CustomsService;
23
+ public readonly adminAreaLevel1: AdminAreaLevel1Service;
24
+ public readonly adminAreaLevel2: AdminAreaLevel2Service;
25
+ public readonly country: CountryService;
26
+ public readonly custom: CustomService;
21
27
  public readonly individual: IndividualService;
22
28
  public readonly merchant: MerchantService;
23
- public readonly organization: OrganizationService;
29
+ public readonly neighborhood: NeighborhoodService;
24
30
  public readonly refundPoint: RefundPointService;
31
+ public readonly region: RegionService;
25
32
  public readonly taxFree: TaxFreeService;
26
33
  public readonly taxOffice: TaxOfficeService;
34
+ public readonly userAffiliation: UserAffiliationService;
27
35
 
28
36
  public readonly request: BaseHttpRequest;
29
37
 
@@ -44,13 +52,17 @@ export class CRMServiceClient {
44
52
  },
45
53
  });
46
54
 
47
- this.affiliationCode = new AffiliationCodeService(this.request);
48
- this.customs = new CustomsService(this.request);
55
+ this.adminAreaLevel1 = new AdminAreaLevel1Service(this.request);
56
+ this.adminAreaLevel2 = new AdminAreaLevel2Service(this.request);
57
+ this.country = new CountryService(this.request);
58
+ this.custom = new CustomService(this.request);
49
59
  this.individual = new IndividualService(this.request);
50
60
  this.merchant = new MerchantService(this.request);
51
- this.organization = new OrganizationService(this.request);
61
+ this.neighborhood = new NeighborhoodService(this.request);
52
62
  this.refundPoint = new RefundPointService(this.request);
63
+ this.region = new RegionService(this.request);
53
64
  this.taxFree = new TaxFreeService(this.request);
54
65
  this.taxOffice = new TaxOfficeService(this.request);
66
+ this.userAffiliation = new UserAffiliationService(this.request);
55
67
  }
56
68
  }