@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.
- package/CRMService/CRMServiceClient.ts +21 -9
- package/CRMService/schemas.gen.ts +3246 -14201
- package/CRMService/sdk.gen.ts +1202 -1495
- package/CRMService/types.gen.ts +908 -1278
- package/package.json +1 -1
|
@@ -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 {
|
|
7
|
-
import {
|
|
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 {
|
|
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
|
|
20
|
-
public readonly
|
|
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
|
|
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.
|
|
48
|
-
this.
|
|
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.
|
|
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
|
}
|